diff --git a/corpus/declarations.txt b/corpus/declarations.txt index ec1baf5b7..105bf4f7a 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -656,27 +656,44 @@ auto [a] = B{}; int main() { auto &&[b, c] = std::make_tuple(c); const auto [x, y] {1, 2}; + + for (const auto &[a, b] : c) {} } --- (translation_unit - (structured_binding_declaration (auto) (structured_binding_declarator (identifier)) (compound_literal_expression (type_identifier) (initializer_list))) + (declaration + (auto) + (init_declarator + (structured_binding_declarator (identifier)) + (compound_literal_expression (type_identifier) (initializer_list)))) (function_definition (primitive_type) (function_declarator (identifier) (parameter_list)) (compound_statement - (structured_binding_declaration + (declaration (auto) - (reference_declarator (structured_binding_declarator (identifier) (identifier))) - (call_expression - (scoped_identifier (namespace_identifier) (identifier)) - (argument_list (identifier)))) - (structured_binding_declaration + (init_declarator + (reference_declarator (structured_binding_declarator (identifier) (identifier))) + (call_expression + (scoped_identifier (namespace_identifier) (identifier)) + (argument_list (identifier))))) + (declaration (type_qualifier) (auto) - (structured_binding_declarator (identifier) (identifier)) - (initializer_list (number_literal) (number_literal)))))) + (init_declarator + (structured_binding_declarator (identifier) (identifier)) + (initializer_list (number_literal) (number_literal)))) + (for_range_loop + (for_range_declaration + (type_qualifier) + (auto) + (reference_declarator (structured_binding_declarator + (identifier) + (identifier)))) + (identifier) + (compound_statement))))) ========================== Constexpr declarations diff --git a/grammar.js b/grammar.js index b2926c420..f0b71838d 100644 --- a/grammar.js +++ b/grammar.js @@ -22,8 +22,9 @@ module.exports = grammar(C, { [$.scoped_type_identifier, $.scoped_field_identifier], [$.comma_expression, $.initializer_list], [$._type_specifier, $.optional_type_parameter_declaration], - [$._type_specifier, $._declarator, $._expression], - [$._declarator, $._expression], + [$._expression, $._declarator], + [$._expression, $.structured_binding_declarator], + [$._expression, $._declarator, $._type_specifier], [$.parameter_list, $.argument_list], ]), @@ -40,7 +41,7 @@ module.exports = grammar(C, { $.alias_declaration, $.template_declaration, $.template_instantiation, - $.structured_binding_declaration, + // $.structured_binding_declaration, alias($.constructor_or_destructor_definition, $.function_definition) ), @@ -149,19 +150,19 @@ module.exports = grammar(C, { original ), - structured_binding_declaration: $ => seq( - $._declaration_specifiers, - choice( - alias($.structured_binding_reference_declarator, $.reference_declarator), - $.structured_binding_declarator, - ), - choice( - seq('=', choice($.initializer_list, $._expression)), - $.initializer_list, - $.argument_list - ), - ';' - ), + // structured_binding_declaration: $ => seq( + // $._declaration_specifiers, + // choice( + // alias($.structured_binding_reference_declarator, $.reference_declarator), + // $.structured_binding_declarator, + // ), + // choice( + // seq('=', choice($.initializer_list, $._expression)), + // $.initializer_list, + // $.argument_list + // ), + // ';' + // ), template_declaration: $ => seq( 'template', @@ -361,9 +362,16 @@ module.exports = grammar(C, { $.scoped_identifier, $.template_function, $.operator_name, - $.destructor_name + $.destructor_name, + $.structured_binding_declarator ), + // structured_declarator: $ => seq( + // '[', + // commaSep1($.identifier), + // ']' + // ), + _field_declarator: ($, original) => choice( original, alias($.reference_field_declarator, $.reference_declarator), @@ -380,7 +388,7 @@ module.exports = grammar(C, { reference_field_declarator: $ => prec.dynamic(1, prec.right(seq(choice('&', '&&'), $._field_declarator))), abstract_reference_declarator: $ => prec.right(seq(choice('&', '&&'), optional($._abstract_declarator))), - structured_binding_reference_declarator: $ => seq(choice('&', '&&'), $.structured_binding_declarator), + // structured_binding_reference_declarator: $ => seq(choice('&', '&&'), $.structured_binding_declarator), structured_binding_declarator: $ => seq('[', commaSep1($.identifier), ']'), function_declarator: ($, original) => seq( diff --git a/src/grammar.json b/src/grammar.json index 7590a9666..f0006ad09 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -85,10 +85,6 @@ "type": "SYMBOL", "name": "template_instantiation" }, - { - "type": "SYMBOL", - "name": "structured_binding_declaration" - }, { "type": "ALIAS", "content": { @@ -1022,6 +1018,10 @@ { "type": "SYMBOL", "name": "destructor_name" + }, + { + "type": "SYMBOL", + "name": "structured_binding_declarator" } ] }, @@ -5316,72 +5316,6 @@ ] } }, - "structured_binding_declaration": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_declaration_specifiers" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "structured_binding_reference_declarator" - }, - "named": true, - "value": "reference_declarator" - }, - { - "type": "SYMBOL", - "name": "structured_binding_declarator" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "initializer_list" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "initializer_list" - }, - { - "type": "SYMBOL", - "name": "argument_list" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, "template_declaration": { "type": "SEQ", "members": [ @@ -6088,28 +6022,6 @@ ] } }, - "structured_binding_reference_declarator": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "&&" - } - ] - }, - { - "type": "SYMBOL", - "name": "structured_binding_declarator" - } - ] - }, "structured_binding_declarator": { "type": "SEQ", "members": [ @@ -7239,13 +7151,17 @@ "optional_type_parameter_declaration" ], [ - "_type_specifier", - "_declarator", - "_expression" + "_expression", + "_declarator" + ], + [ + "_expression", + "structured_binding_declarator" ], [ + "_expression", "_declarator", - "_expression" + "_type_specifier" ], [ "parameter_list", diff --git a/src/parser.c b/src/parser.c index db92c82d6..0b91d5603 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,8 +14,8 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 5137 -#define SYMBOL_COUNT 305 +#define STATE_COUNT 5108 +#define SYMBOL_COUNT 303 #define ALIAS_COUNT 4 #define TOKEN_COUNT 129 #define EXTERNAL_TOKEN_COUNT 1 @@ -249,87 +249,85 @@ enum { sym_virtual_specifier = 225, sym_base_class_clause = 226, sym_dependent_type = 227, - sym_structured_binding_declaration = 228, - sym_template_declaration = 229, - sym_template_instantiation = 230, - sym_template_parameter_list = 231, - sym_type_parameter_declaration = 232, - sym_variadic_type_parameter_declaration = 233, - sym_optional_type_parameter_declaration = 234, - sym_optional_parameter_declaration = 235, - sym_variadic_parameter_declaration = 236, - sym_variadic_declarator = 237, - sym_variadic_reference_declarator = 238, - sym_field_initializer_list = 239, - sym_field_initializer = 240, - sym_inline_method_definition = 241, - sym_constructor_or_destructor_definition = 242, - sym_constructor_or_destructor_declaration = 243, - sym_default_method_clause = 244, - sym_delete_method_clause = 245, - sym_friend_declaration = 246, - sym_access_specifier = 247, - sym_reference_declarator = 248, - sym_reference_field_declarator = 249, - sym_abstract_reference_declarator = 250, - sym_structured_binding_reference_declarator = 251, - sym_structured_binding_declarator = 252, - sym_trailing_return_type = 253, - sym_template_type = 254, - sym_template_method = 255, - sym_template_function = 256, - sym_template_argument_list = 257, - sym_namespace_definition = 258, - sym_using_declaration = 259, - sym_alias_declaration = 260, - sym_for_range_loop = 261, - sym_for_range_declaration = 262, - sym_try_statement = 263, - sym_catch_clause = 264, - sym_attribute = 265, - sym_new_expression = 266, - sym_new_declarator = 267, - sym_delete_expression = 268, - sym_lambda_expression = 269, - sym_lambda_capture_specifier = 270, - sym_lambda_default_capture = 271, - sym_destructor_name = 272, - sym_scoped_field_identifier = 273, - sym_scoped_identifier = 274, - sym_scoped_type_identifier = 275, - sym_scoped_namespace_identifier = 276, - aux_sym_translation_unit_repeat1 = 277, - aux_sym_preproc_params_repeat1 = 278, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 279, - aux_sym_function_definition_repeat1 = 280, - aux_sym_declaration_repeat1 = 281, - aux_sym_type_definition_repeat1 = 282, - aux_sym_type_definition_repeat2 = 283, - aux_sym__declaration_specifiers_repeat1 = 284, - aux_sym_function_declarator_repeat1 = 285, - aux_sym_abstract_function_declarator_repeat1 = 286, - aux_sym_sized_type_specifier_repeat1 = 287, - aux_sym_enumerator_list_repeat1 = 288, - aux_sym_field_declaration_repeat1 = 289, - aux_sym_parameter_list_repeat1 = 290, - aux_sym_switch_body_repeat1 = 291, - aux_sym_case_statement_repeat1 = 292, - aux_sym_for_statement_repeat1 = 293, - aux_sym_argument_list_repeat1 = 294, - aux_sym_initializer_list_repeat1 = 295, - aux_sym_initializer_pair_repeat1 = 296, - aux_sym_concatenated_string_repeat1 = 297, - aux_sym_string_literal_repeat1 = 298, - aux_sym_base_class_clause_repeat1 = 299, - aux_sym_template_parameter_list_repeat1 = 300, - aux_sym_field_initializer_list_repeat1 = 301, - aux_sym_structured_binding_declarator_repeat1 = 302, - aux_sym_template_argument_list_repeat1 = 303, - aux_sym_try_statement_repeat1 = 304, - alias_sym_namespace_identifier = 305, - alias_sym_field_identifier = 306, - alias_sym_statement_identifier = 307, - alias_sym_type_identifier = 308, + sym_template_declaration = 228, + sym_template_instantiation = 229, + sym_template_parameter_list = 230, + sym_type_parameter_declaration = 231, + sym_variadic_type_parameter_declaration = 232, + sym_optional_type_parameter_declaration = 233, + sym_optional_parameter_declaration = 234, + sym_variadic_parameter_declaration = 235, + sym_variadic_declarator = 236, + sym_variadic_reference_declarator = 237, + sym_field_initializer_list = 238, + sym_field_initializer = 239, + sym_inline_method_definition = 240, + sym_constructor_or_destructor_definition = 241, + sym_constructor_or_destructor_declaration = 242, + sym_default_method_clause = 243, + sym_delete_method_clause = 244, + sym_friend_declaration = 245, + sym_access_specifier = 246, + sym_reference_declarator = 247, + sym_reference_field_declarator = 248, + sym_abstract_reference_declarator = 249, + sym_structured_binding_declarator = 250, + sym_trailing_return_type = 251, + sym_template_type = 252, + sym_template_method = 253, + sym_template_function = 254, + sym_template_argument_list = 255, + sym_namespace_definition = 256, + sym_using_declaration = 257, + sym_alias_declaration = 258, + sym_for_range_loop = 259, + sym_for_range_declaration = 260, + sym_try_statement = 261, + sym_catch_clause = 262, + sym_attribute = 263, + sym_new_expression = 264, + sym_new_declarator = 265, + sym_delete_expression = 266, + sym_lambda_expression = 267, + sym_lambda_capture_specifier = 268, + sym_lambda_default_capture = 269, + sym_destructor_name = 270, + sym_scoped_field_identifier = 271, + sym_scoped_identifier = 272, + sym_scoped_type_identifier = 273, + sym_scoped_namespace_identifier = 274, + aux_sym_translation_unit_repeat1 = 275, + aux_sym_preproc_params_repeat1 = 276, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 277, + aux_sym_function_definition_repeat1 = 278, + aux_sym_declaration_repeat1 = 279, + aux_sym_type_definition_repeat1 = 280, + aux_sym_type_definition_repeat2 = 281, + aux_sym__declaration_specifiers_repeat1 = 282, + aux_sym_function_declarator_repeat1 = 283, + aux_sym_abstract_function_declarator_repeat1 = 284, + aux_sym_sized_type_specifier_repeat1 = 285, + aux_sym_enumerator_list_repeat1 = 286, + aux_sym_field_declaration_repeat1 = 287, + aux_sym_parameter_list_repeat1 = 288, + aux_sym_switch_body_repeat1 = 289, + aux_sym_case_statement_repeat1 = 290, + aux_sym_for_statement_repeat1 = 291, + aux_sym_argument_list_repeat1 = 292, + aux_sym_initializer_list_repeat1 = 293, + aux_sym_initializer_pair_repeat1 = 294, + aux_sym_concatenated_string_repeat1 = 295, + aux_sym_string_literal_repeat1 = 296, + aux_sym_base_class_clause_repeat1 = 297, + aux_sym_template_parameter_list_repeat1 = 298, + aux_sym_field_initializer_list_repeat1 = 299, + aux_sym_structured_binding_declarator_repeat1 = 300, + aux_sym_template_argument_list_repeat1 = 301, + aux_sym_try_statement_repeat1 = 302, + alias_sym_namespace_identifier = 303, + alias_sym_field_identifier = 304, + alias_sym_statement_identifier = 305, + alias_sym_type_identifier = 306, }; static const char *ts_symbol_names[] = { @@ -561,7 +559,6 @@ static const char *ts_symbol_names[] = { [sym_virtual_specifier] = "virtual_specifier", [sym_base_class_clause] = "base_class_clause", [sym_dependent_type] = "dependent_type", - [sym_structured_binding_declaration] = "structured_binding_declaration", [sym_template_declaration] = "template_declaration", [sym_template_instantiation] = "template_instantiation", [sym_template_parameter_list] = "template_parameter_list", @@ -584,7 +581,6 @@ static const char *ts_symbol_names[] = { [sym_reference_declarator] = "reference_declarator", [sym_reference_field_declarator] = "reference_declarator", [sym_abstract_reference_declarator] = "abstract_reference_declarator", - [sym_structured_binding_reference_declarator] = "reference_declarator", [sym_structured_binding_declarator] = "structured_binding_declarator", [sym_trailing_return_type] = "trailing_return_type", [sym_template_type] = "template_type", @@ -1557,10 +1553,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_structured_binding_declaration] = { - .visible = true, - .named = true, - }, [sym_template_declaration] = { .visible = true, .named = true, @@ -1649,10 +1641,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_structured_binding_reference_declarator] = { - .visible = true, - .named = true, - }, [sym_structured_binding_declarator] = { .visible = true, .named = true, @@ -4801,8 +4789,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 235: if (lookahead == '!') ADVANCE(190); - if (lookahead == '"') - ADVANCE(3); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') @@ -4820,11 +4806,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(238); if (lookahead == '.') - ADVANCE(193); - if (lookahead == '/') ADVANCE(239); - if (lookahead == ':') + if (lookahead == '/') ADVANCE(240); + if (lookahead == ':') + ADVANCE(17); if (lookahead == ';') ADVANCE(18); if (lookahead == '<') @@ -4839,12 +4825,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(187); if (lookahead == '^') ADVANCE(243); + if (lookahead == 'o') + ADVANCE(27); if (lookahead == '{') ADVANCE(28); if (lookahead == '|') ADVANCE(244); - if (lookahead == '}') - ADVANCE(30); + if (lookahead == '~') + ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4871,15 +4859,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(49); END_STATE(); case 239: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') + ADVANCE(50); + END_STATE(); + case 240: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(52); if (lookahead == '/') ADVANCE(53); END_STATE(); - case 240: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); case 241: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') @@ -4930,9 +4920,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == ':') - ADVANCE(17); + ADVANCE(248); if (lookahead == ';') ADVANCE(18); if (lookahead == '<') @@ -4947,16 +4937,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(187); if (lookahead == '^') ADVANCE(243); - if (lookahead == 'o') - ADVANCE(27); if (lookahead == '{') ADVANCE(28); if (lookahead == '|') ADVANCE(244); if (lookahead == '}') ADVANCE(30); - if (lookahead == '~') - ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4968,6 +4954,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(34); END_STATE(); case 248: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 249: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -4980,8 +4969,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(7); if (lookahead == '(') ADVANCE(75); - if (lookahead == ')') - ADVANCE(9); if (lookahead == '*') ADVANCE(176); if (lookahead == '+') @@ -4993,7 +4980,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(179); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == '0') ADVANCE(16); if (lookahead == ':') @@ -5018,245 +5005,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(28); if (lookahead == '|') ADVANCE(244); - if (lookahead == '~') - ADVANCE(31); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(248); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(33); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(34); - END_STATE(); - case 249: - if (lookahead == '&') - ADVANCE(175); - if (lookahead == '(') - ADVANCE(75); - if (lookahead == ')') - ADVANCE(9); - if (lookahead == '*') - ADVANCE(176); - if (lookahead == ',') - ADVANCE(12); - if (lookahead == '-') - ADVANCE(250); - if (lookahead == '.') - ADVANCE(251); - if (lookahead == '/') - ADVANCE(180); - if (lookahead == ':') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(185); - if (lookahead == '=') - ADVANCE(186); - if (lookahead == '[') - ADVANCE(187); - if (lookahead == 'o') - ADVANCE(27); - if (lookahead == '{') - ADVANCE(28); - if (lookahead == '~') - ADVANCE(31); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(249); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(34); - END_STATE(); - case 250: - if (lookahead == '>') - ADVANCE(49); - END_STATE(); - case 251: - if (lookahead == '.') - ADVANCE(50); - END_STATE(); - case 252: - if (lookahead == '!') - ADVANCE(190); - if (lookahead == '"') - ADVANCE(3); - if (lookahead == '%') - ADVANCE(236); - if (lookahead == '&') - ADVANCE(175); - if (lookahead == '(') - ADVANCE(75); - if (lookahead == ')') - ADVANCE(9); - if (lookahead == '*') - ADVANCE(176); - if (lookahead == '+') - ADVANCE(237); - if (lookahead == ',') - ADVANCE(12); - if (lookahead == '-') - ADVANCE(238); - if (lookahead == '.') - ADVANCE(193); - if (lookahead == '/') - ADVANCE(239); - if (lookahead == ':') - ADVANCE(240); - if (lookahead == ';') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '=') - ADVANCE(20); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '?') - ADVANCE(22); - if (lookahead == '[') - ADVANCE(187); - if (lookahead == ']') - ADVANCE(253); - if (lookahead == '^') - ADVANCE(243); - if (lookahead == '{') - ADVANCE(28); - if (lookahead == '|') - ADVANCE(244); if (lookahead == '}') ADVANCE(30); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(252); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(34); - END_STATE(); - case 253: - if (lookahead == ']') - ADVANCE(254); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); - END_STATE(); - case 255: - if (lookahead == '!') - ADVANCE(190); - if (lookahead == '%') - ADVANCE(236); - if (lookahead == '&') - ADVANCE(175); - if (lookahead == '(') - ADVANCE(75); - if (lookahead == ')') - ADVANCE(9); - if (lookahead == '*') - ADVANCE(176); - if (lookahead == '+') - ADVANCE(237); - if (lookahead == ',') - ADVANCE(12); - if (lookahead == '-') - ADVANCE(238); - if (lookahead == '.') - ADVANCE(256); - if (lookahead == '/') - ADVANCE(239); - if (lookahead == ':') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '=') - ADVANCE(20); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '?') - ADVANCE(22); - if (lookahead == '[') - ADVANCE(187); - if (lookahead == ']') - ADVANCE(253); - if (lookahead == '^') - ADVANCE(243); - if (lookahead == 'o') - ADVANCE(27); - if (lookahead == '{') - ADVANCE(28); - if (lookahead == '|') - ADVANCE(244); - if (lookahead == '}') - ADVANCE(30); - if (lookahead == '~') - ADVANCE(31); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(255); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(34); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') - ADVANCE(50); - END_STATE(); - case 257: - if (lookahead == '!') - ADVANCE(173); - if (lookahead == '"') - ADVANCE(3); - if (lookahead == '&') - ADVANCE(183); - if (lookahead == '\'') - ADVANCE(7); - if (lookahead == '(') - ADVANCE(75); - if (lookahead == '*') - ADVANCE(176); - if (lookahead == '+') - ADVANCE(177); - if (lookahead == ',') - ADVANCE(12); - if (lookahead == '-') - ADVANCE(184); - if (lookahead == '.') - ADVANCE(45); - if (lookahead == '/') - ADVANCE(180); - if (lookahead == '0') - ADVANCE(16); - if (lookahead == ':') - ADVANCE(181); - if (lookahead == '<') - ADVANCE(185); - if (lookahead == '=') - ADVANCE(186); - if (lookahead == '>') - ADVANCE(21); - if (lookahead == '[') - ADVANCE(187); if (lookahead == '~') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(257); + SKIP(249); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5264,7 +5021,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 258: + case 250: if (lookahead == '!') ADVANCE(190); if (lookahead == '%') @@ -5286,7 +5043,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == ':') ADVANCE(181); if (lookahead == ';') @@ -5294,7 +5051,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(241); if (lookahead == '=') - ADVANCE(259); + ADVANCE(251); if (lookahead == '>') ADVANCE(242); if (lookahead == '?') @@ -5317,17 +5074,232 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(258); + SKIP(250); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 259: + case 251: if (lookahead == '=') ADVANCE(64); END_STATE(); - case 260: + case 252: + if (lookahead == '&') + ADVANCE(175); + if (lookahead == '(') + ADVANCE(75); + if (lookahead == ')') + ADVANCE(9); + if (lookahead == '*') + ADVANCE(176); + if (lookahead == ',') + ADVANCE(12); + if (lookahead == '/') + ADVANCE(180); + if (lookahead == ':') + ADVANCE(17); + if (lookahead == ';') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(185); + if (lookahead == '=') + ADVANCE(186); + if (lookahead == '[') + ADVANCE(187); + if (lookahead == 'o') + ADVANCE(27); + if (lookahead == '{') + ADVANCE(28); + if (lookahead == '~') + ADVANCE(31); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(252); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(34); + END_STATE(); + case 253: + if (lookahead == '!') + ADVANCE(190); + if (lookahead == '"') + ADVANCE(3); + if (lookahead == '%') + ADVANCE(236); + if (lookahead == '&') + ADVANCE(175); + if (lookahead == '(') + ADVANCE(75); + if (lookahead == ')') + ADVANCE(9); + if (lookahead == '*') + ADVANCE(176); + if (lookahead == '+') + ADVANCE(237); + if (lookahead == ',') + ADVANCE(12); + if (lookahead == '-') + ADVANCE(238); + if (lookahead == '.') + ADVANCE(193); + if (lookahead == '/') + ADVANCE(240); + if (lookahead == ':') + ADVANCE(248); + if (lookahead == ';') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(241); + if (lookahead == '=') + ADVANCE(20); + if (lookahead == '>') + ADVANCE(242); + if (lookahead == '?') + ADVANCE(22); + if (lookahead == '[') + ADVANCE(187); + if (lookahead == ']') + ADVANCE(254); + if (lookahead == '^') + ADVANCE(243); + if (lookahead == '{') + ADVANCE(28); + if (lookahead == '|') + ADVANCE(244); + if (lookahead == '}') + ADVANCE(30); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(253); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(34); + END_STATE(); + case 254: + if (lookahead == ']') + ADVANCE(255); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + END_STATE(); + case 256: + if (lookahead == '!') + ADVANCE(190); + if (lookahead == '%') + ADVANCE(236); + if (lookahead == '&') + ADVANCE(175); + if (lookahead == '(') + ADVANCE(75); + if (lookahead == ')') + ADVANCE(9); + if (lookahead == '*') + ADVANCE(176); + if (lookahead == '+') + ADVANCE(237); + if (lookahead == ',') + ADVANCE(12); + if (lookahead == '-') + ADVANCE(238); + if (lookahead == '.') + ADVANCE(239); + if (lookahead == '/') + ADVANCE(240); + if (lookahead == ':') + ADVANCE(17); + if (lookahead == ';') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(241); + if (lookahead == '=') + ADVANCE(20); + if (lookahead == '>') + ADVANCE(242); + if (lookahead == '?') + ADVANCE(22); + if (lookahead == '[') + ADVANCE(187); + if (lookahead == ']') + ADVANCE(254); + if (lookahead == '^') + ADVANCE(243); + if (lookahead == 'o') + ADVANCE(27); + if (lookahead == '{') + ADVANCE(28); + if (lookahead == '|') + ADVANCE(244); + if (lookahead == '}') + ADVANCE(30); + if (lookahead == '~') + ADVANCE(31); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(256); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(34); + END_STATE(); + case 257: + if (lookahead == '!') + ADVANCE(173); + if (lookahead == '"') + ADVANCE(3); + if (lookahead == '&') + ADVANCE(183); + if (lookahead == '\'') + ADVANCE(7); + if (lookahead == '(') + ADVANCE(75); + if (lookahead == '*') + ADVANCE(176); + if (lookahead == '+') + ADVANCE(177); + if (lookahead == ',') + ADVANCE(12); + if (lookahead == '-') + ADVANCE(184); + if (lookahead == '.') + ADVANCE(45); + if (lookahead == '/') + ADVANCE(180); + if (lookahead == '0') + ADVANCE(16); + if (lookahead == ':') + ADVANCE(181); + if (lookahead == '<') + ADVANCE(185); + if (lookahead == '=') + ADVANCE(186); + if (lookahead == '>') + ADVANCE(21); + if (lookahead == '[') + ADVANCE(187); + if (lookahead == '~') + ADVANCE(31); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(257); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(33); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(34); + END_STATE(); + case 258: if (lookahead == '!') ADVANCE(173); if (lookahead == '"') @@ -5370,7 +5342,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(260); + SKIP(258); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5378,7 +5350,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 261: + case 259: if (lookahead == '!') ADVANCE(190); if (lookahead == '"') @@ -5414,7 +5386,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(187); if (lookahead == ']') - ADVANCE(253); + ADVANCE(254); if (lookahead == '^') ADVANCE(26); if (lookahead == '{') @@ -5425,13 +5397,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(261); + SKIP(259); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 262: + case 260: if (lookahead == '!') ADVANCE(190); if (lookahead == '"') @@ -5453,11 +5425,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == '<') ADVANCE(241); if (lookahead == '=') - ADVANCE(259); + ADVANCE(251); if (lookahead == '>') ADVANCE(242); if (lookahead == '?') @@ -5465,7 +5437,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(187); if (lookahead == ']') - ADVANCE(253); + ADVANCE(254); if (lookahead == '^') ADVANCE(243); if (lookahead == '{') @@ -5476,13 +5448,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(262); + SKIP(260); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 263: + case 261: if (lookahead == '!') ADVANCE(190); if (lookahead == '"') @@ -5504,7 +5476,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(192); if (lookahead == '.') - ADVANCE(256); + ADVANCE(239); if (lookahead == '/') ADVANCE(15); if (lookahead == ':') @@ -5533,13 +5505,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(263); + SKIP(261); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 264: + case 262: if (lookahead == '!') ADVANCE(190); if (lookahead == '"') @@ -5561,9 +5533,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(238); if (lookahead == '.') - ADVANCE(256); - if (lookahead == '/') ADVANCE(239); + if (lookahead == '/') + ADVANCE(240); if (lookahead == ':') ADVANCE(181); if (lookahead == '<') @@ -5590,13 +5562,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(264); + SKIP(262); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 265: + case 263: if (lookahead == '(') ADVANCE(75); if (lookahead == ')') @@ -5604,11 +5576,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(12); if (lookahead == '-') - ADVANCE(250); + ADVANCE(264); if (lookahead == '/') ADVANCE(180); if (lookahead == ':') - ADVANCE(240); + ADVANCE(248); if (lookahead == ';') ADVANCE(18); if (lookahead == '=') @@ -5623,15 +5595,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(265); + SKIP(263); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 266: + case 264: + if (lookahead == '>') + ADVANCE(49); + END_STATE(); + case 265: if (lookahead == '#') - ADVANCE(267); + ADVANCE(266); if (lookahead == '&') ADVANCE(175); if (lookahead == '(') @@ -5647,7 +5623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(18); if (lookahead == '[') - ADVANCE(268); + ADVANCE(23); if (lookahead == 'o') ADVANCE(27); if (lookahead == '}') @@ -5658,29 +5634,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(266); + SKIP(265); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 267: + case 266: if (lookahead == 'd') ADVANCE(36); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(267); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(267); + ADVANCE(266); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(39); END_STATE(); - case 268: - if (lookahead == '[') - ADVANCE(65); - END_STATE(); - case 269: + case 267: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'f') ADVANCE(79); @@ -5690,22 +5662,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(39); END_STATE(); - case 270: + case 268: if (lookahead == '\n') - ADVANCE(271); + ADVANCE(269); if (lookahead == '/') ADVANCE(180); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(270); + SKIP(268); END_STATE(); - case 271: + case 269: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') - ADVANCE(271); + ADVANCE(269); END_STATE(); - case 272: + case 270: if (lookahead == '!') ADVANCE(190); if (lookahead == '%') @@ -5754,9 +5726,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(272); + SKIP(270); END_STATE(); - case 273: + case 271: if (lookahead == '!') ADVANCE(190); if (lookahead == '"') @@ -5782,7 +5754,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(15); if (lookahead == ':') - ADVANCE(240); + ADVANCE(248); if (lookahead == ';') ADVANCE(18); if (lookahead == '<') @@ -5796,7 +5768,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(187); if (lookahead == ']') - ADVANCE(253); + ADVANCE(254); if (lookahead == '^') ADVANCE(26); if (lookahead == '{') @@ -5809,13 +5781,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(273); + SKIP(271); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 274: + case 272: if (lookahead == '!') ADVANCE(173); if (lookahead == '"') @@ -5852,7 +5824,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(274); + SKIP(272); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5860,7 +5832,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 275: + case 273: if (lookahead == '!') ADVANCE(190); if (lookahead == '%') @@ -5882,7 +5854,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == ':') ADVANCE(17); if (lookahead == ';') @@ -5898,7 +5870,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(187); if (lookahead == ']') - ADVANCE(253); + ADVANCE(254); if (lookahead == '^') ADVANCE(243); if (lookahead == '{') @@ -5911,15 +5883,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(275); + SKIP(273); END_STATE(); - case 276: + case 274: if (lookahead == '!') ADVANCE(173); if (lookahead == '"') ADVANCE(3); if (lookahead == '#') - ADVANCE(277); + ADVANCE(275); if (lookahead == '&') ADVANCE(183); if (lookahead == '\'') @@ -5950,7 +5922,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(276); + SKIP(274); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5958,33 +5930,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 277: + case 275: if (lookahead == 'e') - ADVANCE(278); + ADVANCE(276); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(277); + ADVANCE(275); END_STATE(); - case 278: + case 276: if (lookahead == 'n') - ADVANCE(279); + ADVANCE(277); END_STATE(); - case 279: + case 277: if (lookahead == 'd') - ADVANCE(280); + ADVANCE(278); END_STATE(); - case 280: + case 278: if (lookahead == 'i') - ADVANCE(281); + ADVANCE(279); END_STATE(); - case 281: + case 279: if (lookahead == 'f') - ADVANCE(282); + ADVANCE(280); END_STATE(); - case 282: + case 280: ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); - case 283: + case 281: if (lookahead == '!') ADVANCE(190); if (lookahead == '"') @@ -6031,13 +6003,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(283); + SKIP(281); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 284: + case 282: if (lookahead == '!') ADVANCE(190); if (lookahead == '"') @@ -6059,13 +6031,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == ':') ADVANCE(17); if (lookahead == '<') ADVANCE(241); if (lookahead == '=') - ADVANCE(259); + ADVANCE(251); if (lookahead == '>') ADVANCE(242); if (lookahead == '?') @@ -6084,13 +6056,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(284); + SKIP(282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 285: + case 283: if (lookahead == '/') ADVANCE(180); if (lookahead == ':') @@ -6098,18 +6070,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(21); if (lookahead == '[') - ADVANCE(268); + ADVANCE(284); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(285); + SKIP(283); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 286: + case 284: + if (lookahead == '[') + ADVANCE(65); + END_STATE(); + case 285: if (lookahead == '\n') ADVANCE(204); if (lookahead == '(') @@ -6125,7 +6101,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(208); END_STATE(); - case 287: + case 286: if (lookahead == '&') ADVANCE(175); if (lookahead == '(') @@ -6135,7 +6111,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(176); if (lookahead == '.') - ADVANCE(251); + ADVANCE(287); if (lookahead == '/') ADVANCE(180); if (lookahead == ':') @@ -6150,12 +6126,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(287); + SKIP(286); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); + case 287: + if (lookahead == '.') + ADVANCE(50); + END_STATE(); case 288: if (lookahead == '!') ADVANCE(190); @@ -6194,7 +6174,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(187); if (lookahead == ']') - ADVANCE(253); + ADVANCE(254); if (lookahead == '^') ADVANCE(26); if (lookahead == '{') @@ -6286,7 +6266,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == ':') ADVANCE(17); if (lookahead == '<') @@ -6395,57 +6375,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(39); END_STATE(); case 294: - if (lookahead == '!') - ADVANCE(190); - if (lookahead == '%') - ADVANCE(236); - if (lookahead == '&') - ADVANCE(175); - if (lookahead == '(') - ADVANCE(75); - if (lookahead == '*') - ADVANCE(176); - if (lookahead == '+') - ADVANCE(237); - if (lookahead == ',') - ADVANCE(12); - if (lookahead == '-') - ADVANCE(238); - if (lookahead == '.') - ADVANCE(193); - if (lookahead == '/') - ADVANCE(239); - if (lookahead == ':') - ADVANCE(240); - if (lookahead == ';') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '=') - ADVANCE(20); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '?') - ADVANCE(22); - if (lookahead == '[') - ADVANCE(187); - if (lookahead == '^') - ADVANCE(243); - if (lookahead == '{') - ADVANCE(28); - if (lookahead == '|') - ADVANCE(244); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(294); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(34); - END_STATE(); - case 295: if (lookahead == '!') ADVANCE(190); if (lookahead == '%') @@ -6467,7 +6396,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == ':') ADVANCE(17); if (lookahead == ';') @@ -6483,7 +6412,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(187); if (lookahead == ']') - ADVANCE(253); + ADVANCE(254); if (lookahead == '^') ADVANCE(243); if (lookahead == 'o') @@ -6498,13 +6427,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(295); + SKIP(294); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 296: + case 295: if (lookahead == '(') ADVANCE(75); if (lookahead == ')') @@ -6531,9 +6460,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(296); + SKIP(295); END_STATE(); - case 297: + case 296: if (lookahead == '(') ADVANCE(75); if (lookahead == ',') @@ -6556,9 +6485,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(297); + SKIP(296); END_STATE(); - case 298: + case 297: if (lookahead == '!') ADVANCE(173); if (lookahead == '"') @@ -6578,7 +6507,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(178); if (lookahead == '.') - ADVANCE(299); + ADVANCE(298); if (lookahead == '/') ADVANCE(180); if (lookahead == '0') @@ -6595,7 +6524,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(298); + SKIP(297); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -6603,76 +6532,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 299: + case 298: if (lookahead == '.') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(51); END_STATE(); - case 300: - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '"') - ADVANCE(3); - if (lookahead == '%') - ADVANCE(236); - if (lookahead == '&') - ADVANCE(175); - if (lookahead == '\'') - ADVANCE(7); - if (lookahead == '(') - ADVANCE(75); - if (lookahead == '*') - ADVANCE(176); - if (lookahead == '+') - ADVANCE(177); - if (lookahead == ',') - ADVANCE(12); - if (lookahead == '-') - ADVANCE(184); - if (lookahead == '.') - ADVANCE(179); - if (lookahead == '/') - ADVANCE(239); - if (lookahead == '0') - ADVANCE(16); - if (lookahead == ':') - ADVANCE(181); - if (lookahead == ';') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(241); - if (lookahead == '=') - ADVANCE(259); - if (lookahead == '>') - ADVANCE(242); - if (lookahead == '?') - ADVANCE(22); - if (lookahead == '[') - ADVANCE(187); - if (lookahead == '^') - ADVANCE(243); - if (lookahead == '{') - ADVANCE(28); - if (lookahead == '|') - ADVANCE(244); - if (lookahead == '}') - ADVANCE(30); - if (lookahead == '~') - ADVANCE(31); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(300); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(33); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(34); - END_STATE(); - case 301: + case 299: if (lookahead == '!') ADVANCE(190); if (lookahead == '%') @@ -6692,9 +6558,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); - if (lookahead == ':') ADVANCE(240); + if (lookahead == ':') + ADVANCE(248); if (lookahead == '<') ADVANCE(241); if (lookahead == '=') @@ -6715,15 +6581,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(301); + SKIP(299); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 302: + case 300: if (lookahead == '#') - ADVANCE(303); + ADVANCE(301); if (lookahead == '&') ADVANCE(175); if (lookahead == '(') @@ -6739,7 +6605,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(18); if (lookahead == '[') - ADVANCE(268); + ADVANCE(23); if (lookahead == 'o') ADVANCE(27); if (lookahead == '~') @@ -6748,27 +6614,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(302); + SKIP(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 303: + case 301: if (lookahead == 'd') ADVANCE(36); if (lookahead == 'e') ADVANCE(37); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(267); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(303); + ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(39); END_STATE(); - case 304: + case 302: if (lookahead == '!') ADVANCE(190); if (lookahead == '%') @@ -6788,15 +6654,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); - if (lookahead == ':') ADVANCE(240); - if (lookahead == ';') - ADVANCE(18); + if (lookahead == ':') + ADVANCE(248); if (lookahead == '<') ADVANCE(241); if (lookahead == '=') - ADVANCE(20); + ADVANCE(251); if (lookahead == '>') ADVANCE(242); if (lookahead == '?') @@ -6815,13 +6679,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(304); + SKIP(302); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 305: + case 303: if (lookahead == '!') ADVANCE(190); if (lookahead == '%') @@ -6841,13 +6705,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(193); if (lookahead == '/') - ADVANCE(239); - if (lookahead == ':') ADVANCE(240); + if (lookahead == ':') + ADVANCE(248); + if (lookahead == ';') + ADVANCE(18); if (lookahead == '<') ADVANCE(241); if (lookahead == '=') - ADVANCE(259); + ADVANCE(20); if (lookahead == '>') ADVANCE(242); if (lookahead == '?') @@ -6866,13 +6732,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(305); + SKIP(303); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 306: + case 304: if (lookahead == '!') ADVANCE(190); if (lookahead == '%') @@ -6894,7 +6760,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(15); if (lookahead == ':') - ADVANCE(240); + ADVANCE(248); if (lookahead == '<') ADVANCE(19); if (lookahead == '=') @@ -6917,13 +6783,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(306); + SKIP(304); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 307: + case 305: if (lookahead == '!') ADVANCE(173); if (lookahead == '"') @@ -6962,7 +6828,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(307); + SKIP(305); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -6970,7 +6836,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 308: + case 306: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -6994,7 +6860,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(179); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == '0') ADVANCE(16); if (lookahead == ':') @@ -7002,7 +6868,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(241); if (lookahead == '=') - ADVANCE(259); + ADVANCE(251); if (lookahead == '>') ADVANCE(242); if (lookahead == '?') @@ -7010,7 +6876,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(187); if (lookahead == ']') - ADVANCE(253); + ADVANCE(254); if (lookahead == '^') ADVANCE(243); if (lookahead == '{') @@ -7023,7 +6889,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(308); + SKIP(306); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7031,7 +6897,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 309: + case 307: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -7057,7 +6923,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(179); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == '0') ADVANCE(16); if (lookahead == ':') @@ -7065,7 +6931,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(241); if (lookahead == '=') - ADVANCE(259); + ADVANCE(251); if (lookahead == '>') ADVANCE(242); if (lookahead == '?') @@ -7084,7 +6950,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(309); + SKIP(307); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7092,9 +6958,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 310: + case 308: if (lookahead == '#') - ADVANCE(311); + ADVANCE(309); if (lookahead == '&') ADVANCE(175); if (lookahead == '(') @@ -7110,7 +6976,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(18); if (lookahead == '[') - ADVANCE(268); + ADVANCE(23); if (lookahead == 'o') ADVANCE(27); if (lookahead == '~') @@ -7119,27 +6985,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(310); + SKIP(308); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 311: + case 309: if (lookahead == 'd') ADVANCE(36); if (lookahead == 'e') ADVANCE(293); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(267); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(311); + ADVANCE(309); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(39); END_STATE(); - case 312: + case 310: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -7194,7 +7060,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(312); + SKIP(310); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7202,7 +7068,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 313: + case 311: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -7226,7 +7092,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(179); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == '0') ADVANCE(16); if (lookahead == ':') @@ -7234,7 +7100,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(241); if (lookahead == '=') - ADVANCE(259); + ADVANCE(251); if (lookahead == '>') ADVANCE(242); if (lookahead == '?') @@ -7255,7 +7121,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(313); + SKIP(311); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7263,7 +7129,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 314: + case 312: + if (lookahead == '!') + ADVANCE(190); + if (lookahead == '%') + ADVANCE(236); + if (lookahead == '&') + ADVANCE(175); + if (lookahead == '(') + ADVANCE(75); + if (lookahead == '*') + ADVANCE(176); + if (lookahead == '+') + ADVANCE(237); + if (lookahead == ',') + ADVANCE(12); + if (lookahead == '-') + ADVANCE(238); + if (lookahead == '.') + ADVANCE(193); + if (lookahead == '/') + ADVANCE(240); + if (lookahead == ':') + ADVANCE(17); + if (lookahead == ';') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(241); + if (lookahead == '=') + ADVANCE(20); + if (lookahead == '>') + ADVANCE(242); + if (lookahead == '?') + ADVANCE(22); + if (lookahead == '[') + ADVANCE(187); + if (lookahead == '^') + ADVANCE(243); + if (lookahead == 'o') + ADVANCE(27); + if (lookahead == '{') + ADVANCE(28); + if (lookahead == '|') + ADVANCE(244); + if (lookahead == '~') + ADVANCE(31); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(312); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(34); + END_STATE(); + case 313: if (lookahead == '!') ADVANCE(190); if (lookahead == '%') @@ -7285,7 +7206,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(15); if (lookahead == ':') - ADVANCE(240); + ADVANCE(248); if (lookahead == '<') ADVANCE(19); if (lookahead == '=') @@ -7306,13 +7227,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(314); + SKIP(313); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 315: + case 314: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -7336,7 +7257,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(179); if (lookahead == '/') - ADVANCE(239); + ADVANCE(240); if (lookahead == '0') ADVANCE(16); if (lookahead == ':') @@ -7344,7 +7265,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(241); if (lookahead == '=') - ADVANCE(259); + ADVANCE(251); if (lookahead == '>') ADVANCE(21); if (lookahead == '?') @@ -7363,7 +7284,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(315); + SKIP(314); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7371,7 +7292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 316: + case 315: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -7411,7 +7332,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(187); if (lookahead == ']') - ADVANCE(253); + ADVANCE(254); if (lookahead == '^') ADVANCE(26); if (lookahead == '{') @@ -7424,7 +7345,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(316); + SKIP(315); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7432,7 +7353,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 317: + case 316: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -7485,7 +7406,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(317); + SKIP(316); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7493,7 +7414,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 318: + case 317: if (lookahead == '(') ADVANCE(75); if (lookahead == ')') @@ -7503,7 +7424,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(180); if (lookahead == ':') - ADVANCE(240); + ADVANCE(248); if (lookahead == ';') ADVANCE(18); if (lookahead == '=') @@ -7516,9 +7437,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(318); + SKIP(317); END_STATE(); - case 319: + case 318: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -7571,7 +7492,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(319); + SKIP(318); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7579,7 +7500,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); END_STATE(); - case 320: + case 319: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -7630,7 +7551,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(320); + SKIP(319); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || @@ -9133,7 +9054,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [10] = {.lex_state = 182, .external_lex_state = 1}, [11] = {.lex_state = 172}, [12] = {.lex_state = 172}, - [13] = {.lex_state = 172}, + [13] = {.lex_state = 188}, [14] = {.lex_state = 172}, [15] = {.lex_state = 182, .external_lex_state = 1}, [16] = {.lex_state = 172}, @@ -9166,529 +9087,529 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 182, .external_lex_state = 1}, [44] = {.lex_state = 172, .external_lex_state = 1}, [45] = {.lex_state = 172}, - [46] = {.lex_state = 172}, + [46] = {.lex_state = 188}, [47] = {.lex_state = 189}, - [48] = {.lex_state = 172}, - [49] = {.lex_state = 235}, - [50] = {.lex_state = 235}, - [51] = {.lex_state = 235}, + [48] = {.lex_state = 235}, + [49] = {.lex_state = 172}, + [50] = {.lex_state = 188}, + [51] = {.lex_state = 172}, [52] = {.lex_state = 247}, [53] = {.lex_state = 247}, - [54] = {.lex_state = 248}, - [55] = {.lex_state = 247}, - [56] = {.lex_state = 182}, - [57] = {.lex_state = 172, .external_lex_state = 1}, - [58] = {.lex_state = 0}, - [59] = {.lex_state = 172}, - [60] = {.lex_state = 247}, - [61] = {.lex_state = 249}, + [54] = {.lex_state = 249}, + [55] = {.lex_state = 249}, + [56] = {.lex_state = 188}, + [57] = {.lex_state = 250}, + [58] = {.lex_state = 247}, + [59] = {.lex_state = 250}, + [60] = {.lex_state = 182}, + [61] = {.lex_state = 0}, [62] = {.lex_state = 172}, - [63] = {.lex_state = 188}, - [64] = {.lex_state = 172}, - [65] = {.lex_state = 247}, + [63] = {.lex_state = 249}, + [64] = {.lex_state = 252}, + [65] = {.lex_state = 172, .external_lex_state = 1}, [66] = {.lex_state = 182, .external_lex_state = 1}, [67] = {.lex_state = 172}, [68] = {.lex_state = 182, .external_lex_state = 1}, [69] = {.lex_state = 182, .external_lex_state = 1}, - [70] = {.lex_state = 189}, - [71] = {.lex_state = 172}, - [72] = {.lex_state = 252}, - [73] = {.lex_state = 252}, + [70] = {.lex_state = 182, .external_lex_state = 1}, + [71] = {.lex_state = 189}, + [72] = {.lex_state = 253}, + [73] = {.lex_state = 253}, [74] = {.lex_state = 182}, [75] = {.lex_state = 172}, - [76] = {.lex_state = 172, .external_lex_state = 1}, - [77] = {.lex_state = 252}, - [78] = {.lex_state = 182, .external_lex_state = 1}, - [79] = {.lex_state = 247}, - [80] = {.lex_state = 182}, - [81] = {.lex_state = 172}, - [82] = {.lex_state = 182}, + [76] = {.lex_state = 172}, + [77] = {.lex_state = 172, .external_lex_state = 1}, + [78] = {.lex_state = 253}, + [79] = {.lex_state = 182, .external_lex_state = 1}, + [80] = {.lex_state = 247}, + [81] = {.lex_state = 182}, + [82] = {.lex_state = 172}, [83] = {.lex_state = 182}, - [84] = {.lex_state = 172}, - [85] = {.lex_state = 249}, - [86] = {.lex_state = 255}, - [87] = {.lex_state = 249}, + [84] = {.lex_state = 182}, + [85] = {.lex_state = 172}, + [86] = {.lex_state = 235}, + [87] = {.lex_state = 172}, [88] = {.lex_state = 172}, [89] = {.lex_state = 172}, - [90] = {.lex_state = 172}, - [91] = {.lex_state = 172}, - [92] = {.lex_state = 182, .external_lex_state = 1}, - [93] = {.lex_state = 172}, - [94] = {.lex_state = 182, .external_lex_state = 1}, - [95] = {.lex_state = 172}, - [96] = {.lex_state = 257, .external_lex_state = 1}, - [97] = {.lex_state = 234, .external_lex_state = 1}, + [90] = {.lex_state = 235}, + [91] = {.lex_state = 256}, + [92] = {.lex_state = 172}, + [93] = {.lex_state = 182, .external_lex_state = 1}, + [94] = {.lex_state = 172}, + [95] = {.lex_state = 182, .external_lex_state = 1}, + [96] = {.lex_state = 172}, + [97] = {.lex_state = 257, .external_lex_state = 1}, [98] = {.lex_state = 234, .external_lex_state = 1}, - [99] = {.lex_state = 258}, - [100] = {.lex_state = 252}, - [101] = {.lex_state = 182, .external_lex_state = 1}, - [102] = {.lex_state = 247}, - [103] = {.lex_state = 172, .external_lex_state = 1}, - [104] = {.lex_state = 260, .external_lex_state = 1}, - [105] = {.lex_state = 226}, - [106] = {.lex_state = 172}, + [99] = {.lex_state = 234, .external_lex_state = 1}, + [100] = {.lex_state = 253}, + [101] = {.lex_state = 250}, + [102] = {.lex_state = 182, .external_lex_state = 1}, + [103] = {.lex_state = 247}, + [104] = {.lex_state = 172, .external_lex_state = 1}, + [105] = {.lex_state = 258, .external_lex_state = 1}, + [106] = {.lex_state = 226}, [107] = {.lex_state = 172}, - [108] = {.lex_state = 249}, - [109] = {.lex_state = 255}, - [110] = {.lex_state = 182, .external_lex_state = 1}, + [108] = {.lex_state = 172}, + [109] = {.lex_state = 235}, + [110] = {.lex_state = 256}, [111] = {.lex_state = 182, .external_lex_state = 1}, - [112] = {.lex_state = 172}, - [113] = {.lex_state = 182, .external_lex_state = 1}, + [112] = {.lex_state = 182, .external_lex_state = 1}, + [113] = {.lex_state = 172}, [114] = {.lex_state = 182, .external_lex_state = 1}, [115] = {.lex_state = 182, .external_lex_state = 1}, [116] = {.lex_state = 182, .external_lex_state = 1}, - [117] = {.lex_state = 261}, - [118] = {.lex_state = 172}, - [119] = {.lex_state = 182, .external_lex_state = 1}, - [120] = {.lex_state = 262}, - [121] = {.lex_state = 261}, - [122] = {.lex_state = 262}, - [123] = {.lex_state = 172, .external_lex_state = 1}, - [124] = {.lex_state = 172}, - [125] = {.lex_state = 172, .external_lex_state = 1}, - [126] = {.lex_state = 172}, - [127] = {.lex_state = 189}, - [128] = {.lex_state = 172, .external_lex_state = 1}, - [129] = {.lex_state = 172}, + [117] = {.lex_state = 182, .external_lex_state = 1}, + [118] = {.lex_state = 259}, + [119] = {.lex_state = 172}, + [120] = {.lex_state = 182, .external_lex_state = 1}, + [121] = {.lex_state = 260}, + [122] = {.lex_state = 259}, + [123] = {.lex_state = 260}, + [124] = {.lex_state = 172, .external_lex_state = 1}, + [125] = {.lex_state = 172}, + [126] = {.lex_state = 172, .external_lex_state = 1}, + [127] = {.lex_state = 172}, + [128] = {.lex_state = 189}, + [129] = {.lex_state = 172, .external_lex_state = 1}, [130] = {.lex_state = 172}, [131] = {.lex_state = 172}, [132] = {.lex_state = 172}, - [133] = {.lex_state = 172, .external_lex_state = 1}, - [134] = {.lex_state = 188, .external_lex_state = 1}, - [135] = {.lex_state = 182, .external_lex_state = 1}, - [136] = {.lex_state = 172}, - [137] = {.lex_state = 182, .external_lex_state = 1}, - [138] = {.lex_state = 188, .external_lex_state = 1}, - [139] = {.lex_state = 182, .external_lex_state = 1}, - [140] = {.lex_state = 188, .external_lex_state = 1}, - [141] = {.lex_state = 172}, - [142] = {.lex_state = 263}, - [143] = {.lex_state = 172}, - [144] = {.lex_state = 182, .external_lex_state = 1}, + [133] = {.lex_state = 172}, + [134] = {.lex_state = 172, .external_lex_state = 1}, + [135] = {.lex_state = 188, .external_lex_state = 1}, + [136] = {.lex_state = 182, .external_lex_state = 1}, + [137] = {.lex_state = 172}, + [138] = {.lex_state = 182, .external_lex_state = 1}, + [139] = {.lex_state = 188, .external_lex_state = 1}, + [140] = {.lex_state = 182, .external_lex_state = 1}, + [141] = {.lex_state = 188, .external_lex_state = 1}, + [142] = {.lex_state = 172}, + [143] = {.lex_state = 261}, + [144] = {.lex_state = 172}, [145] = {.lex_state = 182, .external_lex_state = 1}, - [146] = {.lex_state = 172}, - [147] = {.lex_state = 264}, - [148] = {.lex_state = 263}, - [149] = {.lex_state = 263}, - [150] = {.lex_state = 263}, - [151] = {.lex_state = 264}, - [152] = {.lex_state = 264}, - [153] = {.lex_state = 263}, - [154] = {.lex_state = 172}, - [155] = {.lex_state = 264}, + [146] = {.lex_state = 182, .external_lex_state = 1}, + [147] = {.lex_state = 188}, + [148] = {.lex_state = 262}, + [149] = {.lex_state = 261}, + [150] = {.lex_state = 261}, + [151] = {.lex_state = 261}, + [152] = {.lex_state = 261}, + [153] = {.lex_state = 262}, + [154] = {.lex_state = 262}, + [155] = {.lex_state = 262}, [156] = {.lex_state = 172}, - [157] = {.lex_state = 265}, - [158] = {.lex_state = 255}, - [159] = {.lex_state = 266}, - [160] = {.lex_state = 235}, - [161] = {.lex_state = 255}, - [162] = {.lex_state = 255}, - [163] = {.lex_state = 249}, - [164] = {.lex_state = 172}, - [165] = {.lex_state = 258}, - [166] = {.lex_state = 252}, - [167] = {.lex_state = 172}, - [168] = {.lex_state = 182, .external_lex_state = 1}, - [169] = {.lex_state = 172}, + [157] = {.lex_state = 172}, + [158] = {.lex_state = 263}, + [159] = {.lex_state = 256}, + [160] = {.lex_state = 265}, + [161] = {.lex_state = 235}, + [162] = {.lex_state = 247}, + [163] = {.lex_state = 256}, + [164] = {.lex_state = 256}, + [165] = {.lex_state = 172}, + [166] = {.lex_state = 250}, + [167] = {.lex_state = 253}, + [168] = {.lex_state = 172}, + [169] = {.lex_state = 182, .external_lex_state = 1}, [170] = {.lex_state = 172}, - [171] = {.lex_state = 189}, - [172] = {.lex_state = 172}, - [173] = {.lex_state = 172}, - [174] = {.lex_state = 182}, - [175] = {.lex_state = 172, .external_lex_state = 1}, - [176] = {.lex_state = 270}, - [177] = {.lex_state = 260, .external_lex_state = 1}, - [178] = {.lex_state = 188, .external_lex_state = 1}, - [179] = {.lex_state = 182, .external_lex_state = 1}, - [180] = {.lex_state = 172}, - [181] = {.lex_state = 182, .external_lex_state = 1}, - [182] = {.lex_state = 226}, - [183] = {.lex_state = 172}, - [184] = {.lex_state = 182, .external_lex_state = 1}, + [171] = {.lex_state = 172}, + [172] = {.lex_state = 189}, + [173] = {.lex_state = 182}, + [174] = {.lex_state = 172}, + [175] = {.lex_state = 172}, + [176] = {.lex_state = 172, .external_lex_state = 1}, + [177] = {.lex_state = 268}, + [178] = {.lex_state = 258, .external_lex_state = 1}, + [179] = {.lex_state = 188, .external_lex_state = 1}, + [180] = {.lex_state = 182, .external_lex_state = 1}, + [181] = {.lex_state = 172}, + [182] = {.lex_state = 182, .external_lex_state = 1}, + [183] = {.lex_state = 226}, + [184] = {.lex_state = 172}, [185] = {.lex_state = 182, .external_lex_state = 1}, [186] = {.lex_state = 182, .external_lex_state = 1}, - [187] = {.lex_state = 272}, - [188] = {.lex_state = 198}, - [189] = {.lex_state = 172}, - [190] = {.lex_state = 273}, - [191] = {.lex_state = 182}, - [192] = {.lex_state = 272}, - [193] = {.lex_state = 272}, - [194] = {.lex_state = 189}, - [195] = {.lex_state = 182}, - [196] = {.lex_state = 188}, + [187] = {.lex_state = 182, .external_lex_state = 1}, + [188] = {.lex_state = 270}, + [189] = {.lex_state = 198}, + [190] = {.lex_state = 270}, + [191] = {.lex_state = 271}, + [192] = {.lex_state = 270}, + [193] = {.lex_state = 182}, + [194] = {.lex_state = 182}, + [195] = {.lex_state = 188}, + [196] = {.lex_state = 189}, [197] = {.lex_state = 172}, [198] = {.lex_state = 172}, - [199] = {.lex_state = 255}, - [200] = {.lex_state = 235}, - [201] = {.lex_state = 255}, - [202] = {.lex_state = 255}, - [203] = {.lex_state = 249}, - [204] = {.lex_state = 172}, - [205] = {.lex_state = 255}, - [206] = {.lex_state = 274, .external_lex_state = 1}, - [207] = {.lex_state = 172}, - [208] = {.lex_state = 275}, - [209] = {.lex_state = 172}, - [210] = {.lex_state = 252}, + [199] = {.lex_state = 188}, + [200] = {.lex_state = 256}, + [201] = {.lex_state = 235}, + [202] = {.lex_state = 247}, + [203] = {.lex_state = 256}, + [204] = {.lex_state = 256}, + [205] = {.lex_state = 172}, + [206] = {.lex_state = 256}, + [207] = {.lex_state = 272, .external_lex_state = 1}, + [208] = {.lex_state = 172}, + [209] = {.lex_state = 273}, + [210] = {.lex_state = 172}, [211] = {.lex_state = 247}, [212] = {.lex_state = 247}, [213] = {.lex_state = 172}, - [214] = {.lex_state = 172}, - [215] = {.lex_state = 182, .external_lex_state = 1}, - [216] = {.lex_state = 234, .external_lex_state = 1}, - [217] = {.lex_state = 172, .external_lex_state = 1}, - [218] = {.lex_state = 172}, - [219] = {.lex_state = 276, .external_lex_state = 1}, - [220] = {.lex_state = 172, .external_lex_state = 1}, - [221] = {.lex_state = 226}, - [222] = {.lex_state = 252}, - [223] = {.lex_state = 226}, - [224] = {.lex_state = 182, .external_lex_state = 1}, + [214] = {.lex_state = 253}, + [215] = {.lex_state = 172}, + [216] = {.lex_state = 182, .external_lex_state = 1}, + [217] = {.lex_state = 234, .external_lex_state = 1}, + [218] = {.lex_state = 172, .external_lex_state = 1}, + [219] = {.lex_state = 172}, + [220] = {.lex_state = 274, .external_lex_state = 1}, + [221] = {.lex_state = 172, .external_lex_state = 1}, + [222] = {.lex_state = 226}, + [223] = {.lex_state = 253}, + [224] = {.lex_state = 226}, [225] = {.lex_state = 182, .external_lex_state = 1}, - [226] = {.lex_state = 182}, - [227] = {.lex_state = 188}, - [228] = {.lex_state = 226}, - [229] = {.lex_state = 172}, - [230] = {.lex_state = 182, .external_lex_state = 1}, + [226] = {.lex_state = 182, .external_lex_state = 1}, + [227] = {.lex_state = 182}, + [228] = {.lex_state = 188}, + [229] = {.lex_state = 226}, + [230] = {.lex_state = 172}, [231] = {.lex_state = 182, .external_lex_state = 1}, [232] = {.lex_state = 182, .external_lex_state = 1}, [233] = {.lex_state = 182, .external_lex_state = 1}, [234] = {.lex_state = 182, .external_lex_state = 1}, - [235] = {.lex_state = 283}, - [236] = {.lex_state = 172}, - [237] = {.lex_state = 198}, - [238] = {.lex_state = 182, .external_lex_state = 1}, - [239] = {.lex_state = 172}, - [240] = {.lex_state = 284}, - [241] = {.lex_state = 283}, - [242] = {.lex_state = 284}, + [235] = {.lex_state = 182, .external_lex_state = 1}, + [236] = {.lex_state = 281}, + [237] = {.lex_state = 172}, + [238] = {.lex_state = 198}, + [239] = {.lex_state = 182, .external_lex_state = 1}, + [240] = {.lex_state = 282}, + [241] = {.lex_state = 281}, + [242] = {.lex_state = 282}, [243] = {.lex_state = 182}, - [244] = {.lex_state = 284}, - [245] = {.lex_state = 188}, + [244] = {.lex_state = 188}, + [245] = {.lex_state = 282}, [246] = {.lex_state = 172}, [247] = {.lex_state = 182}, - [248] = {.lex_state = 255}, - [249] = {.lex_state = 235}, - [250] = {.lex_state = 255}, - [251] = {.lex_state = 255}, - [252] = {.lex_state = 249}, - [253] = {.lex_state = 172}, - [254] = {.lex_state = 182, .external_lex_state = 1}, - [255] = {.lex_state = 172}, + [248] = {.lex_state = 172}, + [249] = {.lex_state = 256}, + [250] = {.lex_state = 235}, + [251] = {.lex_state = 247}, + [252] = {.lex_state = 256}, + [253] = {.lex_state = 256}, + [254] = {.lex_state = 172}, + [255] = {.lex_state = 182, .external_lex_state = 1}, [256] = {.lex_state = 172}, [257] = {.lex_state = 172}, - [258] = {.lex_state = 189}, - [259] = {.lex_state = 172}, + [258] = {.lex_state = 172}, + [259] = {.lex_state = 189}, [260] = {.lex_state = 172}, [261] = {.lex_state = 172}, [262] = {.lex_state = 172}, [263] = {.lex_state = 172}, [264] = {.lex_state = 172}, - [265] = {.lex_state = 234, .external_lex_state = 1}, + [265] = {.lex_state = 172}, [266] = {.lex_state = 234, .external_lex_state = 1}, - [267] = {.lex_state = 172}, + [267] = {.lex_state = 234, .external_lex_state = 1}, [268] = {.lex_state = 172}, - [269] = {.lex_state = 247}, - [270] = {.lex_state = 172}, + [269] = {.lex_state = 172}, + [270] = {.lex_state = 247}, [271] = {.lex_state = 172}, - [272] = {.lex_state = 172}, - [273] = {.lex_state = 285}, - [274] = {.lex_state = 172}, - [275] = {.lex_state = 172}, - [276] = {.lex_state = 172}, - [277] = {.lex_state = 247}, - [278] = {.lex_state = 172}, + [272] = {.lex_state = 188}, + [273] = {.lex_state = 172}, + [274] = {.lex_state = 283}, + [275] = {.lex_state = 188}, + [276] = {.lex_state = 188}, + [277] = {.lex_state = 172}, + [278] = {.lex_state = 249}, [279] = {.lex_state = 172}, - [280] = {.lex_state = 189}, - [281] = {.lex_state = 172}, - [282] = {.lex_state = 172}, - [283] = {.lex_state = 172}, - [284] = {.lex_state = 172}, + [280] = {.lex_state = 188}, + [281] = {.lex_state = 188}, + [282] = {.lex_state = 252}, + [283] = {.lex_state = 189}, + [284] = {.lex_state = 188}, [285] = {.lex_state = 172}, - [286] = {.lex_state = 248}, - [287] = {.lex_state = 182, .external_lex_state = 1}, - [288] = {.lex_state = 182, .external_lex_state = 1}, + [286] = {.lex_state = 172}, + [287] = {.lex_state = 188}, + [288] = {.lex_state = 172}, [289] = {.lex_state = 182, .external_lex_state = 1}, - [290] = {.lex_state = 172}, + [290] = {.lex_state = 182, .external_lex_state = 1}, [291] = {.lex_state = 182, .external_lex_state = 1}, - [292] = {.lex_state = 182, .external_lex_state = 1}, + [292] = {.lex_state = 172}, [293] = {.lex_state = 182, .external_lex_state = 1}, [294] = {.lex_state = 182, .external_lex_state = 1}, - [295] = {.lex_state = 172, .external_lex_state = 1}, - [296] = {.lex_state = 189}, - [297] = {.lex_state = 172}, - [298] = {.lex_state = 247}, - [299] = {.lex_state = 189}, + [295] = {.lex_state = 182, .external_lex_state = 1}, + [296] = {.lex_state = 182, .external_lex_state = 1}, + [297] = {.lex_state = 172, .external_lex_state = 1}, + [298] = {.lex_state = 189}, + [299] = {.lex_state = 172}, [300] = {.lex_state = 247}, - [301] = {.lex_state = 172}, - [302] = {.lex_state = 189}, - [303] = {.lex_state = 252}, - [304] = {.lex_state = 286}, - [305] = {.lex_state = 172}, - [306] = {.lex_state = 172}, - [307] = {.lex_state = 248}, + [301] = {.lex_state = 189}, + [302] = {.lex_state = 247}, + [303] = {.lex_state = 172}, + [304] = {.lex_state = 189}, + [305] = {.lex_state = 253}, + [306] = {.lex_state = 285}, + [307] = {.lex_state = 188}, [308] = {.lex_state = 172}, - [309] = {.lex_state = 172}, - [310] = {.lex_state = 249}, - [311] = {.lex_state = 249}, - [312] = {.lex_state = 247}, + [309] = {.lex_state = 252}, + [310] = {.lex_state = 172}, + [311] = {.lex_state = 253}, + [312] = {.lex_state = 256}, [313] = {.lex_state = 172}, - [314] = {.lex_state = 172}, - [315] = {.lex_state = 235}, - [316] = {.lex_state = 252}, - [317] = {.lex_state = 172}, - [318] = {.lex_state = 172}, - [319] = {.lex_state = 172, .external_lex_state = 1}, + [314] = {.lex_state = 188}, + [315] = {.lex_state = 286}, + [316] = {.lex_state = 188}, + [317] = {.lex_state = 182, .external_lex_state = 1}, + [318] = {.lex_state = 188}, + [319] = {.lex_state = 182}, [320] = {.lex_state = 182}, - [321] = {.lex_state = 247}, - [322] = {.lex_state = 247}, + [321] = {.lex_state = 182}, + [322] = {.lex_state = 172}, [323] = {.lex_state = 172}, - [324] = {.lex_state = 252}, - [325] = {.lex_state = 182, .external_lex_state = 1}, - [326] = {.lex_state = 182, .external_lex_state = 1}, - [327] = {.lex_state = 182, .external_lex_state = 1}, - [328] = {.lex_state = 182, .external_lex_state = 1}, - [329] = {.lex_state = 182, .external_lex_state = 1}, - [330] = {.lex_state = 172}, - [331] = {.lex_state = 182, .external_lex_state = 1}, - [332] = {.lex_state = 182, .external_lex_state = 1}, - [333] = {.lex_state = 182, .external_lex_state = 1}, - [334] = {.lex_state = 182, .external_lex_state = 1}, - [335] = {.lex_state = 182, .external_lex_state = 1}, - [336] = {.lex_state = 182, .external_lex_state = 1}, - [337] = {.lex_state = 182, .external_lex_state = 1}, - [338] = {.lex_state = 172, .external_lex_state = 1}, + [324] = {.lex_state = 172}, + [325] = {.lex_state = 172, .external_lex_state = 1}, + [326] = {.lex_state = 182}, + [327] = {.lex_state = 247}, + [328] = {.lex_state = 256}, + [329] = {.lex_state = 256}, + [330] = {.lex_state = 249}, + [331] = {.lex_state = 249}, + [332] = {.lex_state = 172}, + [333] = {.lex_state = 235}, + [334] = {.lex_state = 249}, + [335] = {.lex_state = 235}, + [336] = {.lex_state = 188}, + [337] = {.lex_state = 172}, + [338] = {.lex_state = 247}, [339] = {.lex_state = 182, .external_lex_state = 1}, - [340] = {.lex_state = 252}, - [341] = {.lex_state = 273}, - [342] = {.lex_state = 287}, + [340] = {.lex_state = 182, .external_lex_state = 1}, + [341] = {.lex_state = 182, .external_lex_state = 1}, + [342] = {.lex_state = 182, .external_lex_state = 1}, [343] = {.lex_state = 182, .external_lex_state = 1}, - [344] = {.lex_state = 235}, - [345] = {.lex_state = 172, .external_lex_state = 1}, - [346] = {.lex_state = 188}, - [347] = {.lex_state = 172}, - [348] = {.lex_state = 172, .external_lex_state = 1}, - [349] = {.lex_state = 189}, - [350] = {.lex_state = 172}, - [351] = {.lex_state = 182}, - [352] = {.lex_state = 189}, - [353] = {.lex_state = 172}, - [354] = {.lex_state = 255}, - [355] = {.lex_state = 172}, - [356] = {.lex_state = 172}, - [357] = {.lex_state = 287}, - [358] = {.lex_state = 188}, - [359] = {.lex_state = 182, .external_lex_state = 1}, + [344] = {.lex_state = 172}, + [345] = {.lex_state = 182, .external_lex_state = 1}, + [346] = {.lex_state = 182, .external_lex_state = 1}, + [347] = {.lex_state = 182, .external_lex_state = 1}, + [348] = {.lex_state = 182, .external_lex_state = 1}, + [349] = {.lex_state = 182, .external_lex_state = 1}, + [350] = {.lex_state = 182, .external_lex_state = 1}, + [351] = {.lex_state = 182, .external_lex_state = 1}, + [352] = {.lex_state = 172, .external_lex_state = 1}, + [353] = {.lex_state = 182, .external_lex_state = 1}, + [354] = {.lex_state = 253}, + [355] = {.lex_state = 271}, + [356] = {.lex_state = 253}, + [357] = {.lex_state = 286}, + [358] = {.lex_state = 182, .external_lex_state = 1}, + [359] = {.lex_state = 247}, [360] = {.lex_state = 188}, - [361] = {.lex_state = 182}, - [362] = {.lex_state = 182}, - [363] = {.lex_state = 182}, - [364] = {.lex_state = 255}, - [365] = {.lex_state = 255}, - [366] = {.lex_state = 247}, + [361] = {.lex_state = 188}, + [362] = {.lex_state = 172, .external_lex_state = 1}, + [363] = {.lex_state = 189}, + [364] = {.lex_state = 189}, + [365] = {.lex_state = 172}, + [366] = {.lex_state = 172, .external_lex_state = 1}, [367] = {.lex_state = 182, .external_lex_state = 1}, [368] = {.lex_state = 182, .external_lex_state = 1}, - [369] = {.lex_state = 263}, + [369] = {.lex_state = 261}, [370] = {.lex_state = 182, .external_lex_state = 1}, - [371] = {.lex_state = 275}, - [372] = {.lex_state = 182, .external_lex_state = 1}, + [371] = {.lex_state = 273}, + [372] = {.lex_state = 281}, [373] = {.lex_state = 182, .external_lex_state = 1}, - [374] = {.lex_state = 288}, - [375] = {.lex_state = 273}, - [376] = {.lex_state = 172}, - [377] = {.lex_state = 275}, - [378] = {.lex_state = 172}, - [379] = {.lex_state = 263}, - [380] = {.lex_state = 252}, - [381] = {.lex_state = 255}, - [382] = {.lex_state = 252}, - [383] = {.lex_state = 252}, - [384] = {.lex_state = 172}, - [385] = {.lex_state = 255}, - [386] = {.lex_state = 172}, + [374] = {.lex_state = 182, .external_lex_state = 1}, + [375] = {.lex_state = 288}, + [376] = {.lex_state = 271}, + [377] = {.lex_state = 172}, + [378] = {.lex_state = 273}, + [379] = {.lex_state = 172}, + [380] = {.lex_state = 261}, + [381] = {.lex_state = 253}, + [382] = {.lex_state = 256}, + [383] = {.lex_state = 253}, + [384] = {.lex_state = 253}, + [385] = {.lex_state = 172}, + [386] = {.lex_state = 256}, [387] = {.lex_state = 172}, [388] = {.lex_state = 172}, [389] = {.lex_state = 172}, [390] = {.lex_state = 172}, [391] = {.lex_state = 172}, - [392] = {.lex_state = 248}, + [392] = {.lex_state = 252}, [393] = {.lex_state = 189}, [394] = {.lex_state = 172}, - [395] = {.lex_state = 263}, - [396] = {.lex_state = 234, .external_lex_state = 1}, - [397] = {.lex_state = 172, .external_lex_state = 1}, - [398] = {.lex_state = 247}, - [399] = {.lex_state = 252}, - [400] = {.lex_state = 258}, - [401] = {.lex_state = 182}, - [402] = {.lex_state = 182, .external_lex_state = 1}, + [395] = {.lex_state = 172}, + [396] = {.lex_state = 261}, + [397] = {.lex_state = 234, .external_lex_state = 1}, + [398] = {.lex_state = 172, .external_lex_state = 1}, + [399] = {.lex_state = 247}, + [400] = {.lex_state = 253}, + [401] = {.lex_state = 250}, + [402] = {.lex_state = 182}, [403] = {.lex_state = 182, .external_lex_state = 1}, - [404] = {.lex_state = 172}, - [405] = {.lex_state = 255}, - [406] = {.lex_state = 182, .external_lex_state = 1}, + [404] = {.lex_state = 182, .external_lex_state = 1}, + [405] = {.lex_state = 172}, + [406] = {.lex_state = 256}, [407] = {.lex_state = 182, .external_lex_state = 1}, [408] = {.lex_state = 182, .external_lex_state = 1}, - [409] = {.lex_state = 182}, - [410] = {.lex_state = 172}, - [411] = {.lex_state = 289}, - [412] = {.lex_state = 172}, - [413] = {.lex_state = 182, .external_lex_state = 1}, - [414] = {.lex_state = 226}, - [415] = {.lex_state = 172}, - [416] = {.lex_state = 182}, - [417] = {.lex_state = 182, .external_lex_state = 1}, - [418] = {.lex_state = 198}, - [419] = {.lex_state = 290}, + [409] = {.lex_state = 182, .external_lex_state = 1}, + [410] = {.lex_state = 182}, + [411] = {.lex_state = 172}, + [412] = {.lex_state = 289}, + [413] = {.lex_state = 172}, + [414] = {.lex_state = 182, .external_lex_state = 1}, + [415] = {.lex_state = 226}, + [416] = {.lex_state = 172}, + [417] = {.lex_state = 182}, + [418] = {.lex_state = 182, .external_lex_state = 1}, + [419] = {.lex_state = 198}, [420] = {.lex_state = 290}, [421] = {.lex_state = 289}, - [422] = {.lex_state = 257}, + [422] = {.lex_state = 290}, [423] = {.lex_state = 290}, - [424] = {.lex_state = 290}, - [425] = {.lex_state = 290}, + [424] = {.lex_state = 257}, + [425] = {.lex_state = 188}, [426] = {.lex_state = 290}, - [427] = {.lex_state = 188}, - [428] = {.lex_state = 172}, + [427] = {.lex_state = 290}, + [428] = {.lex_state = 290}, [429] = {.lex_state = 172}, - [430] = {.lex_state = 290}, - [431] = {.lex_state = 189}, - [432] = {.lex_state = 172, .external_lex_state = 1}, - [433] = {.lex_state = 182, .external_lex_state = 1}, + [430] = {.lex_state = 172}, + [431] = {.lex_state = 290}, + [432] = {.lex_state = 189}, + [433] = {.lex_state = 172, .external_lex_state = 1}, [434] = {.lex_state = 182, .external_lex_state = 1}, [435] = {.lex_state = 182, .external_lex_state = 1}, - [436] = {.lex_state = 172}, + [436] = {.lex_state = 182, .external_lex_state = 1}, [437] = {.lex_state = 172}, - [438] = {.lex_state = 182, .external_lex_state = 1}, - [439] = {.lex_state = 172}, - [440] = {.lex_state = 182, .external_lex_state = 1}, + [438] = {.lex_state = 172}, + [439] = {.lex_state = 182, .external_lex_state = 1}, + [440] = {.lex_state = 172}, [441] = {.lex_state = 182, .external_lex_state = 1}, [442] = {.lex_state = 182, .external_lex_state = 1}, [443] = {.lex_state = 182, .external_lex_state = 1}, - [444] = {.lex_state = 252}, - [445] = {.lex_state = 189}, - [446] = {.lex_state = 172}, - [447] = {.lex_state = 247}, - [448] = {.lex_state = 189}, - [449] = {.lex_state = 182}, + [444] = {.lex_state = 182, .external_lex_state = 1}, + [445] = {.lex_state = 253}, + [446] = {.lex_state = 189}, + [447] = {.lex_state = 172}, + [448] = {.lex_state = 247}, + [449] = {.lex_state = 189}, [450] = {.lex_state = 247}, [451] = {.lex_state = 172}, - [452] = {.lex_state = 188, .external_lex_state = 1}, - [453] = {.lex_state = 172}, - [454] = {.lex_state = 172, .external_lex_state = 1}, - [455] = {.lex_state = 172}, + [452] = {.lex_state = 182}, + [453] = {.lex_state = 188, .external_lex_state = 1}, + [454] = {.lex_state = 172}, + [455] = {.lex_state = 172, .external_lex_state = 1}, [456] = {.lex_state = 172}, - [457] = {.lex_state = 189}, - [458] = {.lex_state = 172}, + [457] = {.lex_state = 172}, + [458] = {.lex_state = 189}, [459] = {.lex_state = 172}, [460] = {.lex_state = 172}, - [461] = {.lex_state = 172}, - [462] = {.lex_state = 219}, - [463] = {.lex_state = 172, .external_lex_state = 1}, - [464] = {.lex_state = 172}, - [465] = {.lex_state = 291, .external_lex_state = 1}, - [466] = {.lex_state = 203}, - [467] = {.lex_state = 219}, - [468] = {.lex_state = 172}, + [461] = {.lex_state = 188}, + [462] = {.lex_state = 172}, + [463] = {.lex_state = 219}, + [464] = {.lex_state = 172, .external_lex_state = 1}, + [465] = {.lex_state = 172}, + [466] = {.lex_state = 291, .external_lex_state = 1}, + [467] = {.lex_state = 203}, + [468] = {.lex_state = 219}, [469] = {.lex_state = 172}, [470] = {.lex_state = 172}, [471] = {.lex_state = 172}, - [472] = {.lex_state = 221}, - [473] = {.lex_state = 172}, - [474] = {.lex_state = 234, .external_lex_state = 1}, - [475] = {.lex_state = 188}, - [476] = {.lex_state = 234, .external_lex_state = 1}, - [477] = {.lex_state = 260, .external_lex_state = 1}, - [478] = {.lex_state = 172}, - [479] = {.lex_state = 276}, + [472] = {.lex_state = 172}, + [473] = {.lex_state = 221}, + [474] = {.lex_state = 172}, + [475] = {.lex_state = 234, .external_lex_state = 1}, + [476] = {.lex_state = 188}, + [477] = {.lex_state = 234, .external_lex_state = 1}, + [478] = {.lex_state = 258, .external_lex_state = 1}, + [479] = {.lex_state = 172}, [480] = {.lex_state = 172}, - [481] = {.lex_state = 235}, + [481] = {.lex_state = 274}, [482] = {.lex_state = 247}, - [483] = {.lex_state = 260, .external_lex_state = 1}, - [484] = {.lex_state = 172}, - [485] = {.lex_state = 247}, - [486] = {.lex_state = 172}, - [487] = {.lex_state = 172}, - [488] = {.lex_state = 226}, - [489] = {.lex_state = 172, .external_lex_state = 1}, - [490] = {.lex_state = 172}, - [491] = {.lex_state = 172}, - [492] = {.lex_state = 189}, - [493] = {.lex_state = 255}, - [494] = {.lex_state = 172}, - [495] = {.lex_state = 255}, - [496] = {.lex_state = 263}, - [497] = {.lex_state = 182, .external_lex_state = 1}, + [483] = {.lex_state = 188}, + [484] = {.lex_state = 247}, + [485] = {.lex_state = 172}, + [486] = {.lex_state = 249}, + [487] = {.lex_state = 258, .external_lex_state = 1}, + [488] = {.lex_state = 172}, + [489] = {.lex_state = 226}, + [490] = {.lex_state = 172, .external_lex_state = 1}, + [491] = {.lex_state = 188}, + [492] = {.lex_state = 172}, + [493] = {.lex_state = 189}, + [494] = {.lex_state = 256}, + [495] = {.lex_state = 172}, + [496] = {.lex_state = 256}, + [497] = {.lex_state = 261}, [498] = {.lex_state = 182, .external_lex_state = 1}, [499] = {.lex_state = 182, .external_lex_state = 1}, - [500] = {.lex_state = 172}, - [501] = {.lex_state = 182, .external_lex_state = 1}, + [500] = {.lex_state = 182, .external_lex_state = 1}, + [501] = {.lex_state = 172}, [502] = {.lex_state = 182, .external_lex_state = 1}, [503] = {.lex_state = 182, .external_lex_state = 1}, - [504] = {.lex_state = 172}, - [505] = {.lex_state = 182, .external_lex_state = 1}, - [506] = {.lex_state = 261}, - [507] = {.lex_state = 182, .external_lex_state = 1}, - [508] = {.lex_state = 262}, - [509] = {.lex_state = 182, .external_lex_state = 1}, - [510] = {.lex_state = 172}, - [511] = {.lex_state = 262}, - [512] = {.lex_state = 262}, - [513] = {.lex_state = 172}, - [514] = {.lex_state = 182, .external_lex_state = 1}, - [515] = {.lex_state = 262}, - [516] = {.lex_state = 182, .external_lex_state = 1}, + [504] = {.lex_state = 182, .external_lex_state = 1}, + [505] = {.lex_state = 172}, + [506] = {.lex_state = 182, .external_lex_state = 1}, + [507] = {.lex_state = 259}, + [508] = {.lex_state = 182, .external_lex_state = 1}, + [509] = {.lex_state = 260}, + [510] = {.lex_state = 182, .external_lex_state = 1}, + [511] = {.lex_state = 172}, + [512] = {.lex_state = 260}, + [513] = {.lex_state = 260}, + [514] = {.lex_state = 172}, + [515] = {.lex_state = 182, .external_lex_state = 1}, + [516] = {.lex_state = 260}, [517] = {.lex_state = 182, .external_lex_state = 1}, [518] = {.lex_state = 182, .external_lex_state = 1}, [519] = {.lex_state = 182, .external_lex_state = 1}, [520] = {.lex_state = 182, .external_lex_state = 1}, - [521] = {.lex_state = 172}, - [522] = {.lex_state = 182, .external_lex_state = 1}, + [521] = {.lex_state = 182, .external_lex_state = 1}, + [522] = {.lex_state = 172}, [523] = {.lex_state = 182, .external_lex_state = 1}, [524] = {.lex_state = 182, .external_lex_state = 1}, [525] = {.lex_state = 182, .external_lex_state = 1}, [526] = {.lex_state = 182, .external_lex_state = 1}, [527] = {.lex_state = 182, .external_lex_state = 1}, [528] = {.lex_state = 182, .external_lex_state = 1}, - [529] = {.lex_state = 261}, - [530] = {.lex_state = 262}, - [531] = {.lex_state = 172, .external_lex_state = 1}, + [529] = {.lex_state = 182, .external_lex_state = 1}, + [530] = {.lex_state = 259}, + [531] = {.lex_state = 260}, [532] = {.lex_state = 172, .external_lex_state = 1}, [533] = {.lex_state = 172, .external_lex_state = 1}, - [534] = {.lex_state = 252}, - [535] = {.lex_state = 234, .external_lex_state = 1}, + [534] = {.lex_state = 172, .external_lex_state = 1}, + [535] = {.lex_state = 253}, [536] = {.lex_state = 234, .external_lex_state = 1}, - [537] = {.lex_state = 172}, - [538] = {.lex_state = 276, .external_lex_state = 1}, - [539] = {.lex_state = 182, .external_lex_state = 1}, - [540] = {.lex_state = 172}, - [541] = {.lex_state = 172, .external_lex_state = 1}, + [537] = {.lex_state = 234, .external_lex_state = 1}, + [538] = {.lex_state = 172}, + [539] = {.lex_state = 274, .external_lex_state = 1}, + [540] = {.lex_state = 182, .external_lex_state = 1}, + [541] = {.lex_state = 172}, [542] = {.lex_state = 172, .external_lex_state = 1}, - [543] = {.lex_state = 263}, - [544] = {.lex_state = 182, .external_lex_state = 1}, - [545] = {.lex_state = 188, .external_lex_state = 1}, - [546] = {.lex_state = 182, .external_lex_state = 1}, - [547] = {.lex_state = 172}, - [548] = {.lex_state = 182, .external_lex_state = 1}, - [549] = {.lex_state = 172}, - [550] = {.lex_state = 182, .external_lex_state = 1}, + [543] = {.lex_state = 172, .external_lex_state = 1}, + [544] = {.lex_state = 261}, + [545] = {.lex_state = 182, .external_lex_state = 1}, + [546] = {.lex_state = 188, .external_lex_state = 1}, + [547] = {.lex_state = 182, .external_lex_state = 1}, + [548] = {.lex_state = 172}, + [549] = {.lex_state = 182, .external_lex_state = 1}, + [550] = {.lex_state = 172}, [551] = {.lex_state = 182, .external_lex_state = 1}, [552] = {.lex_state = 182, .external_lex_state = 1}, - [553] = {.lex_state = 263}, - [554] = {.lex_state = 263}, - [555] = {.lex_state = 182, .external_lex_state = 1}, - [556] = {.lex_state = 264}, - [557] = {.lex_state = 263}, - [558] = {.lex_state = 172}, - [559] = {.lex_state = 182, .external_lex_state = 1}, - [560] = {.lex_state = 172}, - [561] = {.lex_state = 264}, - [562] = {.lex_state = 264}, - [563] = {.lex_state = 172}, - [564] = {.lex_state = 182, .external_lex_state = 1}, - [565] = {.lex_state = 264}, - [566] = {.lex_state = 263}, - [567] = {.lex_state = 172}, - [568] = {.lex_state = 182, .external_lex_state = 1}, + [553] = {.lex_state = 182, .external_lex_state = 1}, + [554] = {.lex_state = 261}, + [555] = {.lex_state = 261}, + [556] = {.lex_state = 182, .external_lex_state = 1}, + [557] = {.lex_state = 262}, + [558] = {.lex_state = 261}, + [559] = {.lex_state = 188}, + [560] = {.lex_state = 182, .external_lex_state = 1}, + [561] = {.lex_state = 172}, + [562] = {.lex_state = 262}, + [563] = {.lex_state = 262}, + [564] = {.lex_state = 172}, + [565] = {.lex_state = 182, .external_lex_state = 1}, + [566] = {.lex_state = 262}, + [567] = {.lex_state = 261}, + [568] = {.lex_state = 188}, [569] = {.lex_state = 182, .external_lex_state = 1}, [570] = {.lex_state = 182, .external_lex_state = 1}, [571] = {.lex_state = 182, .external_lex_state = 1}, @@ -9700,104 +9621,104 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [577] = {.lex_state = 182, .external_lex_state = 1}, [578] = {.lex_state = 182, .external_lex_state = 1}, [579] = {.lex_state = 182, .external_lex_state = 1}, - [580] = {.lex_state = 252}, - [581] = {.lex_state = 265}, + [580] = {.lex_state = 182, .external_lex_state = 1}, + [581] = {.lex_state = 253}, [582] = {.lex_state = 263}, - [583] = {.lex_state = 182, .external_lex_state = 1}, - [584] = {.lex_state = 264}, - [585] = {.lex_state = 264}, - [586] = {.lex_state = 264}, - [587] = {.lex_state = 263}, - [588] = {.lex_state = 264}, - [589] = {.lex_state = 263}, - [590] = {.lex_state = 264}, - [591] = {.lex_state = 264}, - [592] = {.lex_state = 172}, - [593] = {.lex_state = 182}, - [594] = {.lex_state = 172}, + [583] = {.lex_state = 261}, + [584] = {.lex_state = 182, .external_lex_state = 1}, + [585] = {.lex_state = 262}, + [586] = {.lex_state = 262}, + [587] = {.lex_state = 262}, + [588] = {.lex_state = 262}, + [589] = {.lex_state = 262}, + [590] = {.lex_state = 261}, + [591] = {.lex_state = 261}, + [592] = {.lex_state = 262}, + [593] = {.lex_state = 172}, + [594] = {.lex_state = 182}, [595] = {.lex_state = 182}, - [596] = {.lex_state = 235}, - [597] = {.lex_state = 255}, - [598] = {.lex_state = 172}, + [596] = {.lex_state = 172}, + [597] = {.lex_state = 247}, + [598] = {.lex_state = 256}, [599] = {.lex_state = 172}, [600] = {.lex_state = 172}, - [601] = {.lex_state = 203}, - [602] = {.lex_state = 219}, - [603] = {.lex_state = 255}, - [604] = {.lex_state = 172}, + [601] = {.lex_state = 172}, + [602] = {.lex_state = 203}, + [603] = {.lex_state = 219}, + [604] = {.lex_state = 256}, [605] = {.lex_state = 172}, - [606] = {.lex_state = 235}, + [606] = {.lex_state = 172}, [607] = {.lex_state = 247}, - [608] = {.lex_state = 172}, + [608] = {.lex_state = 249}, [609] = {.lex_state = 172}, - [610] = {.lex_state = 172}, - [611] = {.lex_state = 182}, - [612] = {.lex_state = 172}, - [613] = {.lex_state = 247}, + [610] = {.lex_state = 188}, + [611] = {.lex_state = 172}, + [612] = {.lex_state = 182}, + [613] = {.lex_state = 172}, [614] = {.lex_state = 182}, [615] = {.lex_state = 172}, - [616] = {.lex_state = 247}, - [617] = {.lex_state = 294}, + [616] = {.lex_state = 265}, + [617] = {.lex_state = 249}, [618] = {.lex_state = 172}, [619] = {.lex_state = 247}, - [620] = {.lex_state = 266}, - [621] = {.lex_state = 172}, - [622] = {.lex_state = 247}, - [623] = {.lex_state = 255}, - [624] = {.lex_state = 172}, - [625] = {.lex_state = 235}, - [626] = {.lex_state = 252}, - [627] = {.lex_state = 182, .external_lex_state = 1}, - [628] = {.lex_state = 247}, - [629] = {.lex_state = 189}, + [620] = {.lex_state = 249}, + [621] = {.lex_state = 249}, + [622] = {.lex_state = 249}, + [623] = {.lex_state = 188}, + [624] = {.lex_state = 247}, + [625] = {.lex_state = 256}, + [626] = {.lex_state = 172}, + [627] = {.lex_state = 253}, + [628] = {.lex_state = 182, .external_lex_state = 1}, + [629] = {.lex_state = 247}, [630] = {.lex_state = 189}, - [631] = {.lex_state = 172}, + [631] = {.lex_state = 189}, [632] = {.lex_state = 172}, [633] = {.lex_state = 172}, - [634] = {.lex_state = 172, .external_lex_state = 1}, - [635] = {.lex_state = 172}, - [636] = {.lex_state = 172, .external_lex_state = 1}, + [634] = {.lex_state = 172}, + [635] = {.lex_state = 172, .external_lex_state = 1}, + [636] = {.lex_state = 172}, [637] = {.lex_state = 172, .external_lex_state = 1}, - [638] = {.lex_state = 276}, - [639] = {.lex_state = 260, .external_lex_state = 1}, - [640] = {.lex_state = 264}, - [641] = {.lex_state = 263}, - [642] = {.lex_state = 263}, - [643] = {.lex_state = 273}, - [644] = {.lex_state = 182}, + [638] = {.lex_state = 172, .external_lex_state = 1}, + [639] = {.lex_state = 274}, + [640] = {.lex_state = 258, .external_lex_state = 1}, + [641] = {.lex_state = 262}, + [642] = {.lex_state = 261}, + [643] = {.lex_state = 261}, + [644] = {.lex_state = 271}, [645] = {.lex_state = 182}, - [646] = {.lex_state = 172}, + [646] = {.lex_state = 182}, [647] = {.lex_state = 172}, - [648] = {.lex_state = 288}, - [649] = {.lex_state = 172}, - [650] = {.lex_state = 182}, - [651] = {.lex_state = 288}, - [652] = {.lex_state = 273}, - [653] = {.lex_state = 172}, - [654] = {.lex_state = 189}, - [655] = {.lex_state = 189}, - [656] = {.lex_state = 172}, - [657] = {.lex_state = 182, .external_lex_state = 1}, - [658] = {.lex_state = 189}, - [659] = {.lex_state = 273}, - [660] = {.lex_state = 226}, - [661] = {.lex_state = 288}, - [662] = {.lex_state = 273}, - [663] = {.lex_state = 172}, - [664] = {.lex_state = 182, .external_lex_state = 1}, - [665] = {.lex_state = 273}, - [666] = {.lex_state = 182, .external_lex_state = 1}, - [667] = {.lex_state = 189}, - [668] = {.lex_state = 272}, - [669] = {.lex_state = 273}, - [670] = {.lex_state = 172}, - [671] = {.lex_state = 257, .external_lex_state = 1}, - [672] = {.lex_state = 234, .external_lex_state = 1}, - [673] = {.lex_state = 288}, - [674] = {.lex_state = 273}, - [675] = {.lex_state = 172}, + [648] = {.lex_state = 172}, + [649] = {.lex_state = 288}, + [650] = {.lex_state = 172}, + [651] = {.lex_state = 182}, + [652] = {.lex_state = 189}, + [653] = {.lex_state = 189}, + [654] = {.lex_state = 172}, + [655] = {.lex_state = 271}, + [656] = {.lex_state = 288}, + [657] = {.lex_state = 172}, + [658] = {.lex_state = 182, .external_lex_state = 1}, + [659] = {.lex_state = 189}, + [660] = {.lex_state = 271}, + [661] = {.lex_state = 226}, + [662] = {.lex_state = 288}, + [663] = {.lex_state = 271}, + [664] = {.lex_state = 172}, + [665] = {.lex_state = 182, .external_lex_state = 1}, + [666] = {.lex_state = 271}, + [667] = {.lex_state = 182, .external_lex_state = 1}, + [668] = {.lex_state = 189}, + [669] = {.lex_state = 270}, + [670] = {.lex_state = 271}, + [671] = {.lex_state = 172}, + [672] = {.lex_state = 257, .external_lex_state = 1}, + [673] = {.lex_state = 234, .external_lex_state = 1}, + [674] = {.lex_state = 271}, + [675] = {.lex_state = 288}, [676] = {.lex_state = 172}, - [677] = {.lex_state = 273}, + [677] = {.lex_state = 182, .external_lex_state = 1}, [678] = {.lex_state = 182, .external_lex_state = 1}, [679] = {.lex_state = 182, .external_lex_state = 1}, [680] = {.lex_state = 182, .external_lex_state = 1}, @@ -9808,221 +9729,221 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [685] = {.lex_state = 182, .external_lex_state = 1}, [686] = {.lex_state = 182, .external_lex_state = 1}, [687] = {.lex_state = 182, .external_lex_state = 1}, - [688] = {.lex_state = 182, .external_lex_state = 1}, - [689] = {.lex_state = 273}, + [688] = {.lex_state = 271}, + [689] = {.lex_state = 271}, [690] = {.lex_state = 182}, - [691] = {.lex_state = 273}, - [692] = {.lex_state = 189}, - [693] = {.lex_state = 182}, + [691] = {.lex_state = 271}, + [692] = {.lex_state = 182}, + [693] = {.lex_state = 189}, [694] = {.lex_state = 172}, - [695] = {.lex_state = 235}, - [696] = {.lex_state = 255}, - [697] = {.lex_state = 172}, - [698] = {.lex_state = 255}, - [699] = {.lex_state = 172}, - [700] = {.lex_state = 235}, - [701] = {.lex_state = 288}, - [702] = {.lex_state = 264}, - [703] = {.lex_state = 263}, - [704] = {.lex_state = 295}, - [705] = {.lex_state = 247}, - [706] = {.lex_state = 274, .external_lex_state = 1}, - [707] = {.lex_state = 182, .external_lex_state = 1}, - [708] = {.lex_state = 252}, - [709] = {.lex_state = 252}, - [710] = {.lex_state = 247}, - [711] = {.lex_state = 172, .external_lex_state = 1}, - [712] = {.lex_state = 264}, - [713] = {.lex_state = 263}, - [714] = {.lex_state = 172, .external_lex_state = 1}, - [715] = {.lex_state = 252}, - [716] = {.lex_state = 172, .external_lex_state = 1}, - [717] = {.lex_state = 172}, - [718] = {.lex_state = 172, .external_lex_state = 1}, - [719] = {.lex_state = 172}, - [720] = {.lex_state = 189}, - [721] = {.lex_state = 234, .external_lex_state = 1}, - [722] = {.lex_state = 172}, + [695] = {.lex_state = 188}, + [696] = {.lex_state = 247}, + [697] = {.lex_state = 256}, + [698] = {.lex_state = 172}, + [699] = {.lex_state = 247}, + [700] = {.lex_state = 256}, + [701] = {.lex_state = 172}, + [702] = {.lex_state = 288}, + [703] = {.lex_state = 262}, + [704] = {.lex_state = 261}, + [705] = {.lex_state = 294}, + [706] = {.lex_state = 247}, + [707] = {.lex_state = 272, .external_lex_state = 1}, + [708] = {.lex_state = 182, .external_lex_state = 1}, + [709] = {.lex_state = 253}, + [710] = {.lex_state = 253}, + [711] = {.lex_state = 247}, + [712] = {.lex_state = 172, .external_lex_state = 1}, + [713] = {.lex_state = 262}, + [714] = {.lex_state = 261}, + [715] = {.lex_state = 172, .external_lex_state = 1}, + [716] = {.lex_state = 253}, + [717] = {.lex_state = 172, .external_lex_state = 1}, + [718] = {.lex_state = 172}, + [719] = {.lex_state = 172, .external_lex_state = 1}, + [720] = {.lex_state = 172}, + [721] = {.lex_state = 189}, + [722] = {.lex_state = 234, .external_lex_state = 1}, [723] = {.lex_state = 247}, [724] = {.lex_state = 172}, - [725] = {.lex_state = 172}, - [726] = {.lex_state = 235}, + [725] = {.lex_state = 247}, + [726] = {.lex_state = 188}, [727] = {.lex_state = 172}, - [728] = {.lex_state = 172, .external_lex_state = 1}, - [729] = {.lex_state = 226}, - [730] = {.lex_state = 252}, - [731] = {.lex_state = 226}, - [732] = {.lex_state = 284}, - [733] = {.lex_state = 264}, - [734] = {.lex_state = 263}, - [735] = {.lex_state = 263}, - [736] = {.lex_state = 284}, - [737] = {.lex_state = 226}, - [738] = {.lex_state = 284}, - [739] = {.lex_state = 284}, - [740] = {.lex_state = 172}, - [741] = {.lex_state = 182, .external_lex_state = 1}, - [742] = {.lex_state = 284}, - [743] = {.lex_state = 182, .external_lex_state = 1}, + [728] = {.lex_state = 262}, + [729] = {.lex_state = 172, .external_lex_state = 1}, + [730] = {.lex_state = 226}, + [731] = {.lex_state = 253}, + [732] = {.lex_state = 226}, + [733] = {.lex_state = 282}, + [734] = {.lex_state = 262}, + [735] = {.lex_state = 261}, + [736] = {.lex_state = 261}, + [737] = {.lex_state = 282}, + [738] = {.lex_state = 226}, + [739] = {.lex_state = 282}, + [740] = {.lex_state = 282}, + [741] = {.lex_state = 172}, + [742] = {.lex_state = 182, .external_lex_state = 1}, + [743] = {.lex_state = 282}, [744] = {.lex_state = 182, .external_lex_state = 1}, - [745] = {.lex_state = 226}, - [746] = {.lex_state = 172}, - [747] = {.lex_state = 182, .external_lex_state = 1}, + [745] = {.lex_state = 182, .external_lex_state = 1}, + [746] = {.lex_state = 226}, + [747] = {.lex_state = 172}, [748] = {.lex_state = 182, .external_lex_state = 1}, [749] = {.lex_state = 182, .external_lex_state = 1}, - [750] = {.lex_state = 283}, - [751] = {.lex_state = 172}, - [752] = {.lex_state = 198}, - [753] = {.lex_state = 182, .external_lex_state = 1}, - [754] = {.lex_state = 172}, - [755] = {.lex_state = 283}, - [756] = {.lex_state = 283}, + [750] = {.lex_state = 182, .external_lex_state = 1}, + [751] = {.lex_state = 281}, + [752] = {.lex_state = 172}, + [753] = {.lex_state = 198}, + [754] = {.lex_state = 182, .external_lex_state = 1}, + [755] = {.lex_state = 281}, + [756] = {.lex_state = 281}, [757] = {.lex_state = 182}, - [758] = {.lex_state = 283}, - [759] = {.lex_state = 188}, + [758] = {.lex_state = 188}, + [759] = {.lex_state = 281}, [760] = {.lex_state = 172}, - [761] = {.lex_state = 182, .external_lex_state = 1}, - [762] = {.lex_state = 284}, - [763] = {.lex_state = 284}, - [764] = {.lex_state = 182, .external_lex_state = 1}, - [765] = {.lex_state = 172}, - [766] = {.lex_state = 257, .external_lex_state = 1}, - [767] = {.lex_state = 234, .external_lex_state = 1}, - [768] = {.lex_state = 284}, - [769] = {.lex_state = 284}, - [770] = {.lex_state = 182}, + [761] = {.lex_state = 172}, + [762] = {.lex_state = 182, .external_lex_state = 1}, + [763] = {.lex_state = 282}, + [764] = {.lex_state = 282}, + [765] = {.lex_state = 182, .external_lex_state = 1}, + [766] = {.lex_state = 172}, + [767] = {.lex_state = 172}, + [768] = {.lex_state = 257, .external_lex_state = 1}, + [769] = {.lex_state = 234, .external_lex_state = 1}, + [770] = {.lex_state = 263}, [771] = {.lex_state = 182}, - [772] = {.lex_state = 172}, - [773] = {.lex_state = 172}, - [774] = {.lex_state = 284}, - [775] = {.lex_state = 172}, - [776] = {.lex_state = 182}, - [777] = {.lex_state = 284}, - [778] = {.lex_state = 284}, + [772] = {.lex_state = 282}, + [773] = {.lex_state = 282}, + [774] = {.lex_state = 182}, + [775] = {.lex_state = 182}, + [776] = {.lex_state = 172}, + [777] = {.lex_state = 172}, + [778] = {.lex_state = 282}, [779] = {.lex_state = 172}, - [780] = {.lex_state = 284}, - [781] = {.lex_state = 284}, - [782] = {.lex_state = 172}, + [780] = {.lex_state = 182}, + [781] = {.lex_state = 282}, + [782] = {.lex_state = 282}, [783] = {.lex_state = 172}, - [784] = {.lex_state = 182, .external_lex_state = 1}, - [785] = {.lex_state = 284}, + [784] = {.lex_state = 282}, + [785] = {.lex_state = 282}, [786] = {.lex_state = 172}, - [787] = {.lex_state = 284}, - [788] = {.lex_state = 274, .external_lex_state = 1}, - [789] = {.lex_state = 182, .external_lex_state = 1}, - [790] = {.lex_state = 182, .external_lex_state = 1}, + [787] = {.lex_state = 172}, + [788] = {.lex_state = 182, .external_lex_state = 1}, + [789] = {.lex_state = 282}, + [790] = {.lex_state = 272, .external_lex_state = 1}, [791] = {.lex_state = 182, .external_lex_state = 1}, - [792] = {.lex_state = 188}, + [792] = {.lex_state = 182, .external_lex_state = 1}, [793] = {.lex_state = 182, .external_lex_state = 1}, - [794] = {.lex_state = 182, .external_lex_state = 1}, - [795] = {.lex_state = 172}, + [794] = {.lex_state = 188}, + [795] = {.lex_state = 182, .external_lex_state = 1}, [796] = {.lex_state = 182, .external_lex_state = 1}, - [797] = {.lex_state = 182, .external_lex_state = 1}, + [797] = {.lex_state = 172}, [798] = {.lex_state = 182, .external_lex_state = 1}, [799] = {.lex_state = 182, .external_lex_state = 1}, [800] = {.lex_state = 182, .external_lex_state = 1}, [801] = {.lex_state = 182, .external_lex_state = 1}, [802] = {.lex_state = 182, .external_lex_state = 1}, [803] = {.lex_state = 182, .external_lex_state = 1}, - [804] = {.lex_state = 284}, - [805] = {.lex_state = 182}, - [806] = {.lex_state = 283}, - [807] = {.lex_state = 284}, - [808] = {.lex_state = 284}, - [809] = {.lex_state = 182}, - [810] = {.lex_state = 235}, - [811] = {.lex_state = 255}, - [812] = {.lex_state = 172}, - [813] = {.lex_state = 255}, - [814] = {.lex_state = 172}, - [815] = {.lex_state = 235}, - [816] = {.lex_state = 182, .external_lex_state = 1}, - [817] = {.lex_state = 182, .external_lex_state = 1}, - [818] = {.lex_state = 172}, - [819] = {.lex_state = 182, .external_lex_state = 1}, + [804] = {.lex_state = 182, .external_lex_state = 1}, + [805] = {.lex_state = 182, .external_lex_state = 1}, + [806] = {.lex_state = 282}, + [807] = {.lex_state = 281}, + [808] = {.lex_state = 182}, + [809] = {.lex_state = 282}, + [810] = {.lex_state = 282}, + [811] = {.lex_state = 182}, + [812] = {.lex_state = 282}, + [813] = {.lex_state = 172}, + [814] = {.lex_state = 247}, + [815] = {.lex_state = 256}, + [816] = {.lex_state = 172}, + [817] = {.lex_state = 247}, + [818] = {.lex_state = 256}, + [819] = {.lex_state = 172}, [820] = {.lex_state = 182, .external_lex_state = 1}, [821] = {.lex_state = 182, .external_lex_state = 1}, - [822] = {.lex_state = 182, .external_lex_state = 1}, - [823] = {.lex_state = 263}, - [824] = {.lex_state = 172}, + [822] = {.lex_state = 172}, + [823] = {.lex_state = 182, .external_lex_state = 1}, + [824] = {.lex_state = 182, .external_lex_state = 1}, [825] = {.lex_state = 182, .external_lex_state = 1}, - [826] = {.lex_state = 264}, - [827] = {.lex_state = 263}, - [828] = {.lex_state = 264}, + [826] = {.lex_state = 182, .external_lex_state = 1}, + [827] = {.lex_state = 261}, + [828] = {.lex_state = 172}, [829] = {.lex_state = 182, .external_lex_state = 1}, - [830] = {.lex_state = 172}, - [831] = {.lex_state = 172}, - [832] = {.lex_state = 234, .external_lex_state = 1}, - [833] = {.lex_state = 172}, - [834] = {.lex_state = 234, .external_lex_state = 1}, + [830] = {.lex_state = 262}, + [831] = {.lex_state = 261}, + [832] = {.lex_state = 262}, + [833] = {.lex_state = 182, .external_lex_state = 1}, + [834] = {.lex_state = 172}, [835] = {.lex_state = 172}, - [836] = {.lex_state = 276, .external_lex_state = 1}, + [836] = {.lex_state = 234, .external_lex_state = 1}, [837] = {.lex_state = 172}, - [838] = {.lex_state = 182, .external_lex_state = 1}, + [838] = {.lex_state = 234, .external_lex_state = 1}, [839] = {.lex_state = 172}, - [840] = {.lex_state = 172}, + [840] = {.lex_state = 274, .external_lex_state = 1}, [841] = {.lex_state = 172}, - [842] = {.lex_state = 247}, + [842] = {.lex_state = 182, .external_lex_state = 1}, [843] = {.lex_state = 172}, [844] = {.lex_state = 172}, [845] = {.lex_state = 172}, [846] = {.lex_state = 247}, - [847] = {.lex_state = 182}, + [847] = {.lex_state = 172}, [848] = {.lex_state = 172}, [849] = {.lex_state = 172}, - [850] = {.lex_state = 263}, + [850] = {.lex_state = 249}, [851] = {.lex_state = 182}, - [852] = {.lex_state = 263}, - [853] = {.lex_state = 290}, - [854] = {.lex_state = 172}, - [855] = {.lex_state = 290}, - [856] = {.lex_state = 290}, - [857] = {.lex_state = 257}, - [858] = {.lex_state = 172}, - [859] = {.lex_state = 172}, - [860] = {.lex_state = 290}, + [852] = {.lex_state = 172}, + [853] = {.lex_state = 172}, + [854] = {.lex_state = 261}, + [855] = {.lex_state = 182}, + [856] = {.lex_state = 261}, + [857] = {.lex_state = 290}, + [858] = {.lex_state = 290}, + [859] = {.lex_state = 290}, + [860] = {.lex_state = 257}, [861] = {.lex_state = 290}, - [862] = {.lex_state = 290}, - [863] = {.lex_state = 189}, + [862] = {.lex_state = 172}, + [863] = {.lex_state = 290}, [864] = {.lex_state = 172}, - [865] = {.lex_state = 189}, + [865] = {.lex_state = 290}, [866] = {.lex_state = 172}, - [867] = {.lex_state = 247}, - [868] = {.lex_state = 172}, - [869] = {.lex_state = 172}, - [870] = {.lex_state = 172, .external_lex_state = 1}, - [871] = {.lex_state = 189}, - [872] = {.lex_state = 172}, - [873] = {.lex_state = 172}, - [874] = {.lex_state = 172}, - [875] = {.lex_state = 172}, - [876] = {.lex_state = 172}, - [877] = {.lex_state = 172, .external_lex_state = 1}, - [878] = {.lex_state = 172}, + [867] = {.lex_state = 189}, + [868] = {.lex_state = 188}, + [869] = {.lex_state = 189}, + [870] = {.lex_state = 172}, + [871] = {.lex_state = 249}, + [872] = {.lex_state = 182}, + [873] = {.lex_state = 188}, + [874] = {.lex_state = 188}, + [875] = {.lex_state = 172, .external_lex_state = 1}, + [876] = {.lex_state = 189}, + [877] = {.lex_state = 172}, + [878] = {.lex_state = 188}, [879] = {.lex_state = 172}, - [880] = {.lex_state = 172}, - [881] = {.lex_state = 189}, - [882] = {.lex_state = 263}, - [883] = {.lex_state = 182, .external_lex_state = 1}, - [884] = {.lex_state = 247}, - [885] = {.lex_state = 182, .external_lex_state = 1}, + [880] = {.lex_state = 172, .external_lex_state = 1}, + [881] = {.lex_state = 172}, + [882] = {.lex_state = 189}, + [883] = {.lex_state = 261}, + [884] = {.lex_state = 182, .external_lex_state = 1}, + [885] = {.lex_state = 247}, [886] = {.lex_state = 182, .external_lex_state = 1}, [887] = {.lex_state = 182, .external_lex_state = 1}, - [888] = {.lex_state = 172}, - [889] = {.lex_state = 182, .external_lex_state = 1}, + [888] = {.lex_state = 182, .external_lex_state = 1}, + [889] = {.lex_state = 172}, [890] = {.lex_state = 182, .external_lex_state = 1}, [891] = {.lex_state = 182, .external_lex_state = 1}, - [892] = {.lex_state = 172}, - [893] = {.lex_state = 182, .external_lex_state = 1}, - [894] = {.lex_state = 189}, - [895] = {.lex_state = 182, .external_lex_state = 1}, - [896] = {.lex_state = 247}, - [897] = {.lex_state = 182, .external_lex_state = 1}, - [898] = {.lex_state = 172}, - [899] = {.lex_state = 247}, + [892] = {.lex_state = 182, .external_lex_state = 1}, + [893] = {.lex_state = 172}, + [894] = {.lex_state = 182, .external_lex_state = 1}, + [895] = {.lex_state = 189}, + [896] = {.lex_state = 182, .external_lex_state = 1}, + [897] = {.lex_state = 247}, + [898] = {.lex_state = 182, .external_lex_state = 1}, + [899] = {.lex_state = 172}, [900] = {.lex_state = 247}, - [901] = {.lex_state = 172}, - [902] = {.lex_state = 182, .external_lex_state = 1}, + [901] = {.lex_state = 247}, + [902] = {.lex_state = 172}, [903] = {.lex_state = 182, .external_lex_state = 1}, [904] = {.lex_state = 182, .external_lex_state = 1}, [905] = {.lex_state = 182, .external_lex_state = 1}, @@ -10032,842 +9953,842 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [909] = {.lex_state = 182, .external_lex_state = 1}, [910] = {.lex_state = 182, .external_lex_state = 1}, [911] = {.lex_state = 182, .external_lex_state = 1}, - [912] = {.lex_state = 172, .external_lex_state = 1}, - [913] = {.lex_state = 182, .external_lex_state = 1}, - [914] = {.lex_state = 247}, - [915] = {.lex_state = 270}, - [916] = {.lex_state = 172, .external_lex_state = 1}, - [917] = {.lex_state = 263}, - [918] = {.lex_state = 203}, - [919] = {.lex_state = 296}, - [920] = {.lex_state = 172}, + [912] = {.lex_state = 182, .external_lex_state = 1}, + [913] = {.lex_state = 172, .external_lex_state = 1}, + [914] = {.lex_state = 182, .external_lex_state = 1}, + [915] = {.lex_state = 247}, + [916] = {.lex_state = 268}, + [917] = {.lex_state = 172, .external_lex_state = 1}, + [918] = {.lex_state = 261}, + [919] = {.lex_state = 203}, + [920] = {.lex_state = 295}, [921] = {.lex_state = 172}, - [922] = {.lex_state = 249}, - [923] = {.lex_state = 172}, - [924] = {.lex_state = 249}, - [925] = {.lex_state = 172}, - [926] = {.lex_state = 247}, - [927] = {.lex_state = 172, .external_lex_state = 1}, - [928] = {.lex_state = 182}, - [929] = {.lex_state = 172}, - [930] = {.lex_state = 182}, + [922] = {.lex_state = 172}, + [923] = {.lex_state = 189}, + [924] = {.lex_state = 172}, + [925] = {.lex_state = 261}, + [926] = {.lex_state = 172}, + [927] = {.lex_state = 263}, + [928] = {.lex_state = 262}, + [929] = {.lex_state = 262}, + [930] = {.lex_state = 172}, [931] = {.lex_state = 172}, - [932] = {.lex_state = 172}, - [933] = {.lex_state = 182}, - [934] = {.lex_state = 172}, - [935] = {.lex_state = 172}, - [936] = {.lex_state = 247}, - [937] = {.lex_state = 247}, - [938] = {.lex_state = 252}, - [939] = {.lex_state = 258}, - [940] = {.lex_state = 247}, - [941] = {.lex_state = 247}, - [942] = {.lex_state = 247}, - [943] = {.lex_state = 247}, - [944] = {.lex_state = 248}, - [945] = {.lex_state = 247}, + [932] = {.lex_state = 262}, + [933] = {.lex_state = 261}, + [934] = {.lex_state = 182}, + [935] = {.lex_state = 182}, + [936] = {.lex_state = 182, .external_lex_state = 1}, + [937] = {.lex_state = 182, .external_lex_state = 1}, + [938] = {.lex_state = 182, .external_lex_state = 1}, + [939] = {.lex_state = 263}, + [940] = {.lex_state = 172}, + [941] = {.lex_state = 182, .external_lex_state = 1}, + [942] = {.lex_state = 182, .external_lex_state = 1}, + [943] = {.lex_state = 182, .external_lex_state = 1}, + [944] = {.lex_state = 182, .external_lex_state = 1}, + [945] = {.lex_state = 281}, [946] = {.lex_state = 172}, - [947] = {.lex_state = 288}, - [948] = {.lex_state = 182}, - [949] = {.lex_state = 172}, - [950] = {.lex_state = 273}, - [951] = {.lex_state = 247}, - [952] = {.lex_state = 252}, - [953] = {.lex_state = 247}, - [954] = {.lex_state = 247}, - [955] = {.lex_state = 182, .external_lex_state = 1}, - [956] = {.lex_state = 182, .external_lex_state = 1}, - [957] = {.lex_state = 172}, + [947] = {.lex_state = 182, .external_lex_state = 1}, + [948] = {.lex_state = 182, .external_lex_state = 1}, + [949] = {.lex_state = 282}, + [950] = {.lex_state = 281}, + [951] = {.lex_state = 282}, + [952] = {.lex_state = 182, .external_lex_state = 1}, + [953] = {.lex_state = 188}, + [954] = {.lex_state = 172}, + [955] = {.lex_state = 182}, + [956] = {.lex_state = 263}, + [957] = {.lex_state = 253}, [958] = {.lex_state = 182, .external_lex_state = 1}, - [959] = {.lex_state = 182, .external_lex_state = 1}, - [960] = {.lex_state = 182, .external_lex_state = 1}, - [961] = {.lex_state = 182, .external_lex_state = 1}, - [962] = {.lex_state = 283}, - [963] = {.lex_state = 172}, - [964] = {.lex_state = 182, .external_lex_state = 1}, - [965] = {.lex_state = 284}, - [966] = {.lex_state = 283}, - [967] = {.lex_state = 284}, - [968] = {.lex_state = 247}, - [969] = {.lex_state = 182, .external_lex_state = 1}, - [970] = {.lex_state = 182, .external_lex_state = 1}, - [971] = {.lex_state = 172}, - [972] = {.lex_state = 182, .external_lex_state = 1}, - [973] = {.lex_state = 182, .external_lex_state = 1}, - [974] = {.lex_state = 182, .external_lex_state = 1}, - [975] = {.lex_state = 182, .external_lex_state = 1}, - [976] = {.lex_state = 189}, - [977] = {.lex_state = 172}, - [978] = {.lex_state = 182, .external_lex_state = 1}, - [979] = {.lex_state = 235}, - [980] = {.lex_state = 273}, - [981] = {.lex_state = 235}, - [982] = {.lex_state = 235}, + [959] = {.lex_state = 182}, + [960] = {.lex_state = 253}, + [961] = {.lex_state = 250}, + [962] = {.lex_state = 172}, + [963] = {.lex_state = 182}, + [964] = {.lex_state = 172}, + [965] = {.lex_state = 172}, + [966] = {.lex_state = 182}, + [967] = {.lex_state = 172}, + [968] = {.lex_state = 172}, + [969] = {.lex_state = 172, .external_lex_state = 1}, + [970] = {.lex_state = 247}, + [971] = {.lex_state = 249}, + [972] = {.lex_state = 235}, + [973] = {.lex_state = 172}, + [974] = {.lex_state = 235}, + [975] = {.lex_state = 249}, + [976] = {.lex_state = 172}, + [977] = {.lex_state = 182}, + [978] = {.lex_state = 247}, + [979] = {.lex_state = 247}, + [980] = {.lex_state = 247}, + [981] = {.lex_state = 247}, + [982] = {.lex_state = 252}, [983] = {.lex_state = 247}, - [984] = {.lex_state = 263}, - [985] = {.lex_state = 172}, - [986] = {.lex_state = 265}, - [987] = {.lex_state = 172}, - [988] = {.lex_state = 264}, - [989] = {.lex_state = 172}, - [990] = {.lex_state = 264}, - [991] = {.lex_state = 264}, - [992] = {.lex_state = 182, .external_lex_state = 1}, - [993] = {.lex_state = 265}, - [994] = {.lex_state = 182, .external_lex_state = 1}, - [995] = {.lex_state = 284}, + [984] = {.lex_state = 172}, + [985] = {.lex_state = 288}, + [986] = {.lex_state = 271}, + [987] = {.lex_state = 182}, + [988] = {.lex_state = 172}, + [989] = {.lex_state = 247}, + [990] = {.lex_state = 253}, + [991] = {.lex_state = 247}, + [992] = {.lex_state = 247}, + [993] = {.lex_state = 282}, + [994] = {.lex_state = 247}, + [995] = {.lex_state = 182, .external_lex_state = 1}, [996] = {.lex_state = 182, .external_lex_state = 1}, - [997] = {.lex_state = 294}, - [998] = {.lex_state = 172}, - [999] = {.lex_state = 235}, - [1000] = {.lex_state = 172}, - [1001] = {.lex_state = 189}, - [1002] = {.lex_state = 182}, + [997] = {.lex_state = 172}, + [998] = {.lex_state = 182, .external_lex_state = 1}, + [999] = {.lex_state = 182, .external_lex_state = 1}, + [1000] = {.lex_state = 182, .external_lex_state = 1}, + [1001] = {.lex_state = 182, .external_lex_state = 1}, + [1002] = {.lex_state = 189}, [1003] = {.lex_state = 172}, - [1004] = {.lex_state = 189}, - [1005] = {.lex_state = 297}, - [1006] = {.lex_state = 182}, - [1007] = {.lex_state = 182, .external_lex_state = 1}, - [1008] = {.lex_state = 172}, - [1009] = {.lex_state = 298, .external_lex_state = 1}, - [1010] = {.lex_state = 182, .external_lex_state = 1}, - [1011] = {.lex_state = 172}, - [1012] = {.lex_state = 172, .external_lex_state = 1}, - [1013] = {.lex_state = 172, .external_lex_state = 1}, - [1014] = {.lex_state = 172, .external_lex_state = 1}, - [1015] = {.lex_state = 189}, - [1016] = {.lex_state = 172}, - [1017] = {.lex_state = 172}, - [1018] = {.lex_state = 189}, - [1019] = {.lex_state = 172}, - [1020] = {.lex_state = 263}, - [1021] = {.lex_state = 182}, - [1022] = {.lex_state = 182}, - [1023] = {.lex_state = 265}, - [1024] = {.lex_state = 182, .external_lex_state = 1}, - [1025] = {.lex_state = 284}, - [1026] = {.lex_state = 182, .external_lex_state = 1}, - [1027] = {.lex_state = 188}, - [1028] = {.lex_state = 172}, - [1029] = {.lex_state = 265}, - [1030] = {.lex_state = 182}, - [1031] = {.lex_state = 252}, - [1032] = {.lex_state = 182, .external_lex_state = 1}, - [1033] = {.lex_state = 182}, - [1034] = {.lex_state = 182, .external_lex_state = 1}, - [1035] = {.lex_state = 182, .external_lex_state = 1}, - [1036] = {.lex_state = 275}, - [1037] = {.lex_state = 275}, - [1038] = {.lex_state = 300, .external_lex_state = 1}, - [1039] = {.lex_state = 255}, - [1040] = {.lex_state = 255}, - [1041] = {.lex_state = 189}, + [1004] = {.lex_state = 182, .external_lex_state = 1}, + [1005] = {.lex_state = 247}, + [1006] = {.lex_state = 271}, + [1007] = {.lex_state = 247}, + [1008] = {.lex_state = 247}, + [1009] = {.lex_state = 247}, + [1010] = {.lex_state = 263}, + [1011] = {.lex_state = 182, .external_lex_state = 1}, + [1012] = {.lex_state = 282}, + [1013] = {.lex_state = 182, .external_lex_state = 1}, + [1014] = {.lex_state = 247}, + [1015] = {.lex_state = 172}, + [1016] = {.lex_state = 247}, + [1017] = {.lex_state = 189}, + [1018] = {.lex_state = 188}, + [1019] = {.lex_state = 189}, + [1020] = {.lex_state = 296}, + [1021] = {.lex_state = 297, .external_lex_state = 1}, + [1022] = {.lex_state = 182, .external_lex_state = 1}, + [1023] = {.lex_state = 188}, + [1024] = {.lex_state = 172, .external_lex_state = 1}, + [1025] = {.lex_state = 172, .external_lex_state = 1}, + [1026] = {.lex_state = 172, .external_lex_state = 1}, + [1027] = {.lex_state = 172}, + [1028] = {.lex_state = 189}, + [1029] = {.lex_state = 172}, + [1030] = {.lex_state = 182, .external_lex_state = 1}, + [1031] = {.lex_state = 182, .external_lex_state = 1}, + [1032] = {.lex_state = 273}, + [1033] = {.lex_state = 273}, + [1034] = {.lex_state = 249, .external_lex_state = 1}, + [1035] = {.lex_state = 256}, + [1036] = {.lex_state = 189}, + [1037] = {.lex_state = 172}, + [1038] = {.lex_state = 261}, + [1039] = {.lex_state = 172}, + [1040] = {.lex_state = 252}, + [1041] = {.lex_state = 182, .external_lex_state = 1}, [1042] = {.lex_state = 172}, - [1043] = {.lex_state = 263}, + [1043] = {.lex_state = 172, .external_lex_state = 1}, [1044] = {.lex_state = 172}, - [1045] = {.lex_state = 248}, - [1046] = {.lex_state = 182, .external_lex_state = 1}, - [1047] = {.lex_state = 172}, - [1048] = {.lex_state = 172, .external_lex_state = 1}, - [1049] = {.lex_state = 248}, + [1045] = {.lex_state = 252}, + [1046] = {.lex_state = 256}, + [1047] = {.lex_state = 247}, + [1048] = {.lex_state = 172}, + [1049] = {.lex_state = 172, .external_lex_state = 1}, [1050] = {.lex_state = 172}, - [1051] = {.lex_state = 235}, + [1051] = {.lex_state = 189}, [1052] = {.lex_state = 172}, - [1053] = {.lex_state = 172, .external_lex_state = 1}, + [1053] = {.lex_state = 172}, [1054] = {.lex_state = 172}, - [1055] = {.lex_state = 189}, + [1055] = {.lex_state = 172}, [1056] = {.lex_state = 172}, [1057] = {.lex_state = 172}, - [1058] = {.lex_state = 172}, - [1059] = {.lex_state = 172}, - [1060] = {.lex_state = 172}, - [1061] = {.lex_state = 172}, - [1062] = {.lex_state = 234, .external_lex_state = 1}, - [1063] = {.lex_state = 182, .external_lex_state = 1}, + [1058] = {.lex_state = 234, .external_lex_state = 1}, + [1059] = {.lex_state = 182, .external_lex_state = 1}, + [1060] = {.lex_state = 234, .external_lex_state = 1}, + [1061] = {.lex_state = 234, .external_lex_state = 1}, + [1062] = {.lex_state = 172, .external_lex_state = 1}, + [1063] = {.lex_state = 247}, [1064] = {.lex_state = 234, .external_lex_state = 1}, - [1065] = {.lex_state = 234, .external_lex_state = 1}, - [1066] = {.lex_state = 172, .external_lex_state = 1}, - [1067] = {.lex_state = 247}, - [1068] = {.lex_state = 172}, - [1069] = {.lex_state = 234, .external_lex_state = 1}, + [1065] = {.lex_state = 172}, + [1066] = {.lex_state = 290}, + [1067] = {.lex_state = 265}, + [1068] = {.lex_state = 299}, + [1069] = {.lex_state = 247}, [1070] = {.lex_state = 290}, - [1071] = {.lex_state = 266}, - [1072] = {.lex_state = 235}, - [1073] = {.lex_state = 290}, - [1074] = {.lex_state = 290}, - [1075] = {.lex_state = 301}, - [1076] = {.lex_state = 172}, + [1071] = {.lex_state = 290}, + [1072] = {.lex_state = 172}, + [1073] = {.lex_state = 172}, + [1074] = {.lex_state = 289}, + [1075] = {.lex_state = 290}, + [1076] = {.lex_state = 182}, [1077] = {.lex_state = 172}, - [1078] = {.lex_state = 289}, - [1079] = {.lex_state = 172}, - [1080] = {.lex_state = 290}, - [1081] = {.lex_state = 182}, - [1082] = {.lex_state = 172}, - [1083] = {.lex_state = 264}, - [1084] = {.lex_state = 263}, - [1085] = {.lex_state = 263}, + [1078] = {.lex_state = 172}, + [1079] = {.lex_state = 262}, + [1080] = {.lex_state = 261}, + [1081] = {.lex_state = 261}, + [1082] = {.lex_state = 290}, + [1083] = {.lex_state = 290}, + [1084] = {.lex_state = 172}, + [1085] = {.lex_state = 182, .external_lex_state = 1}, [1086] = {.lex_state = 290}, - [1087] = {.lex_state = 290}, - [1088] = {.lex_state = 172}, - [1089] = {.lex_state = 182, .external_lex_state = 1}, - [1090] = {.lex_state = 290}, + [1087] = {.lex_state = 182, .external_lex_state = 1}, + [1088] = {.lex_state = 182, .external_lex_state = 1}, + [1089] = {.lex_state = 226}, + [1090] = {.lex_state = 172}, [1091] = {.lex_state = 182, .external_lex_state = 1}, [1092] = {.lex_state = 182, .external_lex_state = 1}, - [1093] = {.lex_state = 226}, - [1094] = {.lex_state = 172}, - [1095] = {.lex_state = 182, .external_lex_state = 1}, - [1096] = {.lex_state = 182, .external_lex_state = 1}, + [1093] = {.lex_state = 182, .external_lex_state = 1}, + [1094] = {.lex_state = 289}, + [1095] = {.lex_state = 172}, + [1096] = {.lex_state = 198}, [1097] = {.lex_state = 182, .external_lex_state = 1}, [1098] = {.lex_state = 289}, - [1099] = {.lex_state = 172}, - [1100] = {.lex_state = 198}, - [1101] = {.lex_state = 182, .external_lex_state = 1}, - [1102] = {.lex_state = 172}, - [1103] = {.lex_state = 289}, - [1104] = {.lex_state = 289}, - [1105] = {.lex_state = 182}, - [1106] = {.lex_state = 289}, - [1107] = {.lex_state = 188}, - [1108] = {.lex_state = 172}, - [1109] = {.lex_state = 182, .external_lex_state = 1}, + [1099] = {.lex_state = 289}, + [1100] = {.lex_state = 182}, + [1101] = {.lex_state = 188}, + [1102] = {.lex_state = 289}, + [1103] = {.lex_state = 172}, + [1104] = {.lex_state = 172}, + [1105] = {.lex_state = 182, .external_lex_state = 1}, + [1106] = {.lex_state = 290}, + [1107] = {.lex_state = 290}, + [1108] = {.lex_state = 299}, + [1109] = {.lex_state = 247}, [1110] = {.lex_state = 290}, [1111] = {.lex_state = 290}, - [1112] = {.lex_state = 235}, + [1112] = {.lex_state = 172}, [1113] = {.lex_state = 290}, - [1114] = {.lex_state = 290}, - [1115] = {.lex_state = 301}, - [1116] = {.lex_state = 172}, - [1117] = {.lex_state = 290}, - [1118] = {.lex_state = 182, .external_lex_state = 1}, - [1119] = {.lex_state = 172}, - [1120] = {.lex_state = 257, .external_lex_state = 1}, - [1121] = {.lex_state = 234, .external_lex_state = 1}, - [1122] = {.lex_state = 290}, + [1114] = {.lex_state = 182, .external_lex_state = 1}, + [1115] = {.lex_state = 172}, + [1116] = {.lex_state = 257, .external_lex_state = 1}, + [1117] = {.lex_state = 234, .external_lex_state = 1}, + [1118] = {.lex_state = 290}, + [1119] = {.lex_state = 290}, + [1120] = {.lex_state = 172}, + [1121] = {.lex_state = 290}, + [1122] = {.lex_state = 172}, [1123] = {.lex_state = 290}, - [1124] = {.lex_state = 172}, - [1125] = {.lex_state = 290}, - [1126] = {.lex_state = 172}, - [1127] = {.lex_state = 290}, + [1124] = {.lex_state = 290}, + [1125] = {.lex_state = 172}, + [1126] = {.lex_state = 290}, + [1127] = {.lex_state = 182, .external_lex_state = 1}, [1128] = {.lex_state = 290}, [1129] = {.lex_state = 290}, - [1130] = {.lex_state = 172}, - [1131] = {.lex_state = 182, .external_lex_state = 1}, + [1130] = {.lex_state = 226}, + [1131] = {.lex_state = 172}, [1132] = {.lex_state = 290}, [1133] = {.lex_state = 290}, - [1134] = {.lex_state = 226}, - [1135] = {.lex_state = 172}, - [1136] = {.lex_state = 290}, + [1134] = {.lex_state = 290}, + [1135] = {.lex_state = 299}, + [1136] = {.lex_state = 247}, [1137] = {.lex_state = 290}, [1138] = {.lex_state = 290}, - [1139] = {.lex_state = 235}, + [1139] = {.lex_state = 172}, [1140] = {.lex_state = 290}, - [1141] = {.lex_state = 290}, - [1142] = {.lex_state = 301}, - [1143] = {.lex_state = 172}, - [1144] = {.lex_state = 290}, - [1145] = {.lex_state = 172}, - [1146] = {.lex_state = 172}, - [1147] = {.lex_state = 290}, - [1148] = {.lex_state = 274, .external_lex_state = 1}, + [1141] = {.lex_state = 172}, + [1142] = {.lex_state = 272, .external_lex_state = 1}, + [1143] = {.lex_state = 182, .external_lex_state = 1}, + [1144] = {.lex_state = 182, .external_lex_state = 1}, + [1145] = {.lex_state = 182, .external_lex_state = 1}, + [1146] = {.lex_state = 182, .external_lex_state = 1}, + [1147] = {.lex_state = 182, .external_lex_state = 1}, + [1148] = {.lex_state = 172}, [1149] = {.lex_state = 182, .external_lex_state = 1}, [1150] = {.lex_state = 182, .external_lex_state = 1}, [1151] = {.lex_state = 182, .external_lex_state = 1}, [1152] = {.lex_state = 182, .external_lex_state = 1}, [1153] = {.lex_state = 182, .external_lex_state = 1}, - [1154] = {.lex_state = 172}, + [1154] = {.lex_state = 256}, [1155] = {.lex_state = 182, .external_lex_state = 1}, [1156] = {.lex_state = 182, .external_lex_state = 1}, [1157] = {.lex_state = 182, .external_lex_state = 1}, - [1158] = {.lex_state = 182, .external_lex_state = 1}, - [1159] = {.lex_state = 182, .external_lex_state = 1}, - [1160] = {.lex_state = 255}, - [1161] = {.lex_state = 182, .external_lex_state = 1}, - [1162] = {.lex_state = 182, .external_lex_state = 1}, - [1163] = {.lex_state = 182, .external_lex_state = 1}, - [1164] = {.lex_state = 290}, - [1165] = {.lex_state = 289}, - [1166] = {.lex_state = 257}, - [1167] = {.lex_state = 255}, - [1168] = {.lex_state = 257}, + [1158] = {.lex_state = 290}, + [1159] = {.lex_state = 257}, + [1160] = {.lex_state = 289}, + [1161] = {.lex_state = 290}, + [1162] = {.lex_state = 290}, + [1163] = {.lex_state = 290}, + [1164] = {.lex_state = 256}, + [1165] = {.lex_state = 257}, + [1166] = {.lex_state = 182}, + [1167] = {.lex_state = 290}, + [1168] = {.lex_state = 290}, [1169] = {.lex_state = 290}, [1170] = {.lex_state = 290}, [1171] = {.lex_state = 290}, [1172] = {.lex_state = 290}, [1173] = {.lex_state = 290}, [1174] = {.lex_state = 257}, - [1175] = {.lex_state = 290}, - [1176] = {.lex_state = 257}, - [1177] = {.lex_state = 182}, - [1178] = {.lex_state = 290}, - [1179] = {.lex_state = 290}, - [1180] = {.lex_state = 290}, - [1181] = {.lex_state = 290}, - [1182] = {.lex_state = 263}, - [1183] = {.lex_state = 182, .external_lex_state = 1}, - [1184] = {.lex_state = 247}, - [1185] = {.lex_state = 182}, + [1175] = {.lex_state = 257}, + [1176] = {.lex_state = 290}, + [1177] = {.lex_state = 172}, + [1178] = {.lex_state = 261}, + [1179] = {.lex_state = 182, .external_lex_state = 1}, + [1180] = {.lex_state = 247}, + [1181] = {.lex_state = 182}, + [1182] = {.lex_state = 182, .external_lex_state = 1}, + [1183] = {.lex_state = 282}, + [1184] = {.lex_state = 253}, + [1185] = {.lex_state = 182, .external_lex_state = 1}, [1186] = {.lex_state = 182, .external_lex_state = 1}, - [1187] = {.lex_state = 284}, - [1188] = {.lex_state = 252}, + [1187] = {.lex_state = 172}, + [1188] = {.lex_state = 182, .external_lex_state = 1}, [1189] = {.lex_state = 182, .external_lex_state = 1}, [1190] = {.lex_state = 182, .external_lex_state = 1}, [1191] = {.lex_state = 172}, [1192] = {.lex_state = 182, .external_lex_state = 1}, - [1193] = {.lex_state = 182, .external_lex_state = 1}, + [1193] = {.lex_state = 189}, [1194] = {.lex_state = 182, .external_lex_state = 1}, - [1195] = {.lex_state = 172}, + [1195] = {.lex_state = 247}, [1196] = {.lex_state = 182, .external_lex_state = 1}, - [1197] = {.lex_state = 189}, - [1198] = {.lex_state = 182, .external_lex_state = 1}, + [1197] = {.lex_state = 172}, + [1198] = {.lex_state = 247}, [1199] = {.lex_state = 247}, - [1200] = {.lex_state = 182, .external_lex_state = 1}, - [1201] = {.lex_state = 172}, - [1202] = {.lex_state = 247}, - [1203] = {.lex_state = 247}, - [1204] = {.lex_state = 172}, + [1200] = {.lex_state = 172}, + [1201] = {.lex_state = 182, .external_lex_state = 1}, + [1202] = {.lex_state = 182, .external_lex_state = 1}, + [1203] = {.lex_state = 182, .external_lex_state = 1}, + [1204] = {.lex_state = 234, .external_lex_state = 1}, [1205] = {.lex_state = 182, .external_lex_state = 1}, [1206] = {.lex_state = 182, .external_lex_state = 1}, [1207] = {.lex_state = 182, .external_lex_state = 1}, - [1208] = {.lex_state = 234, .external_lex_state = 1}, + [1208] = {.lex_state = 182, .external_lex_state = 1}, [1209] = {.lex_state = 182, .external_lex_state = 1}, [1210] = {.lex_state = 182, .external_lex_state = 1}, [1211] = {.lex_state = 182, .external_lex_state = 1}, [1212] = {.lex_state = 182, .external_lex_state = 1}, - [1213] = {.lex_state = 182, .external_lex_state = 1}, - [1214] = {.lex_state = 182, .external_lex_state = 1}, + [1213] = {.lex_state = 172}, + [1214] = {.lex_state = 247}, [1215] = {.lex_state = 182, .external_lex_state = 1}, [1216] = {.lex_state = 182, .external_lex_state = 1}, - [1217] = {.lex_state = 172}, - [1218] = {.lex_state = 182, .external_lex_state = 1}, - [1219] = {.lex_state = 182, .external_lex_state = 1}, - [1220] = {.lex_state = 182}, - [1221] = {.lex_state = 247}, - [1222] = {.lex_state = 247}, - [1223] = {.lex_state = 260, .external_lex_state = 1}, - [1224] = {.lex_state = 172}, - [1225] = {.lex_state = 172}, + [1217] = {.lex_state = 182}, + [1218] = {.lex_state = 247}, + [1219] = {.lex_state = 258, .external_lex_state = 1}, + [1220] = {.lex_state = 172}, + [1221] = {.lex_state = 172}, + [1222] = {.lex_state = 172}, + [1223] = {.lex_state = 234, .external_lex_state = 1}, + [1224] = {.lex_state = 258, .external_lex_state = 1}, + [1225] = {.lex_state = 258, .external_lex_state = 1}, [1226] = {.lex_state = 172}, - [1227] = {.lex_state = 234, .external_lex_state = 1}, - [1228] = {.lex_state = 260, .external_lex_state = 1}, - [1229] = {.lex_state = 260, .external_lex_state = 1}, - [1230] = {.lex_state = 172}, - [1231] = {.lex_state = 172, .external_lex_state = 1}, - [1232] = {.lex_state = 172}, - [1233] = {.lex_state = 260, .external_lex_state = 1}, - [1234] = {.lex_state = 260, .external_lex_state = 1}, - [1235] = {.lex_state = 260, .external_lex_state = 1}, - [1236] = {.lex_state = 172, .external_lex_state = 1}, + [1227] = {.lex_state = 172, .external_lex_state = 1}, + [1228] = {.lex_state = 172}, + [1229] = {.lex_state = 258, .external_lex_state = 1}, + [1230] = {.lex_state = 258, .external_lex_state = 1}, + [1231] = {.lex_state = 258, .external_lex_state = 1}, + [1232] = {.lex_state = 172, .external_lex_state = 1}, + [1233] = {.lex_state = 172}, + [1234] = {.lex_state = 189}, + [1235] = {.lex_state = 172}, + [1236] = {.lex_state = 172}, [1237] = {.lex_state = 172}, - [1238] = {.lex_state = 189}, - [1239] = {.lex_state = 172}, + [1238] = {.lex_state = 172}, + [1239] = {.lex_state = 189}, [1240] = {.lex_state = 172}, [1241] = {.lex_state = 172}, - [1242] = {.lex_state = 172}, - [1243] = {.lex_state = 189}, - [1244] = {.lex_state = 172}, + [1242] = {.lex_state = 188}, + [1243] = {.lex_state = 172}, + [1244] = {.lex_state = 172, .external_lex_state = 1}, [1245] = {.lex_state = 172}, - [1246] = {.lex_state = 172}, - [1247] = {.lex_state = 172}, - [1248] = {.lex_state = 172, .external_lex_state = 1}, + [1246] = {.lex_state = 203}, + [1247] = {.lex_state = 219}, + [1248] = {.lex_state = 172}, [1249] = {.lex_state = 172}, - [1250] = {.lex_state = 203}, - [1251] = {.lex_state = 219}, - [1252] = {.lex_state = 172}, + [1250] = {.lex_state = 172}, + [1251] = {.lex_state = 172}, + [1252] = {.lex_state = 221}, [1253] = {.lex_state = 172}, - [1254] = {.lex_state = 172}, - [1255] = {.lex_state = 172}, - [1256] = {.lex_state = 221}, - [1257] = {.lex_state = 172}, - [1258] = {.lex_state = 234, .external_lex_state = 1}, - [1259] = {.lex_state = 188}, - [1260] = {.lex_state = 234, .external_lex_state = 1}, - [1261] = {.lex_state = 291, .external_lex_state = 1}, - [1262] = {.lex_state = 172}, + [1254] = {.lex_state = 234, .external_lex_state = 1}, + [1255] = {.lex_state = 188}, + [1256] = {.lex_state = 234, .external_lex_state = 1}, + [1257] = {.lex_state = 291, .external_lex_state = 1}, + [1258] = {.lex_state = 172}, + [1259] = {.lex_state = 172}, + [1260] = {.lex_state = 247}, + [1261] = {.lex_state = 188}, + [1262] = {.lex_state = 247}, [1263] = {.lex_state = 172}, - [1264] = {.lex_state = 235}, - [1265] = {.lex_state = 247}, - [1266] = {.lex_state = 291, .external_lex_state = 1}, - [1267] = {.lex_state = 172}, - [1268] = {.lex_state = 247}, + [1264] = {.lex_state = 249}, + [1265] = {.lex_state = 291, .external_lex_state = 1}, + [1266] = {.lex_state = 258, .external_lex_state = 1}, + [1267] = {.lex_state = 268}, + [1268] = {.lex_state = 258, .external_lex_state = 1}, [1269] = {.lex_state = 172}, - [1270] = {.lex_state = 260, .external_lex_state = 1}, - [1271] = {.lex_state = 270}, - [1272] = {.lex_state = 260, .external_lex_state = 1}, - [1273] = {.lex_state = 172}, - [1274] = {.lex_state = 234, .external_lex_state = 1}, - [1275] = {.lex_state = 172}, - [1276] = {.lex_state = 276, .external_lex_state = 1}, - [1277] = {.lex_state = 260, .external_lex_state = 1}, - [1278] = {.lex_state = 226}, - [1279] = {.lex_state = 182, .external_lex_state = 1}, - [1280] = {.lex_state = 172}, - [1281] = {.lex_state = 172}, - [1282] = {.lex_state = 189}, + [1270] = {.lex_state = 234, .external_lex_state = 1}, + [1271] = {.lex_state = 172}, + [1272] = {.lex_state = 274, .external_lex_state = 1}, + [1273] = {.lex_state = 258, .external_lex_state = 1}, + [1274] = {.lex_state = 226}, + [1275] = {.lex_state = 182, .external_lex_state = 1}, + [1276] = {.lex_state = 172}, + [1277] = {.lex_state = 172}, + [1278] = {.lex_state = 189}, + [1279] = {.lex_state = 172}, + [1280] = {.lex_state = 188}, + [1281] = {.lex_state = 258, .external_lex_state = 1}, + [1282] = {.lex_state = 247}, [1283] = {.lex_state = 172}, - [1284] = {.lex_state = 172}, - [1285] = {.lex_state = 260, .external_lex_state = 1}, - [1286] = {.lex_state = 247}, + [1284] = {.lex_state = 285}, + [1285] = {.lex_state = 188}, + [1286] = {.lex_state = 172, .external_lex_state = 1}, [1287] = {.lex_state = 172}, - [1288] = {.lex_state = 286}, - [1289] = {.lex_state = 172, .external_lex_state = 1}, - [1290] = {.lex_state = 235}, - [1291] = {.lex_state = 172}, - [1292] = {.lex_state = 260, .external_lex_state = 1}, - [1293] = {.lex_state = 182}, - [1294] = {.lex_state = 260, .external_lex_state = 1}, - [1295] = {.lex_state = 276}, - [1296] = {.lex_state = 260, .external_lex_state = 1}, - [1297] = {.lex_state = 260, .external_lex_state = 1}, - [1298] = {.lex_state = 182}, - [1299] = {.lex_state = 189}, + [1288] = {.lex_state = 258, .external_lex_state = 1}, + [1289] = {.lex_state = 182}, + [1290] = {.lex_state = 247}, + [1291] = {.lex_state = 258, .external_lex_state = 1}, + [1292] = {.lex_state = 258, .external_lex_state = 1}, + [1293] = {.lex_state = 189}, + [1294] = {.lex_state = 172}, + [1295] = {.lex_state = 274}, + [1296] = {.lex_state = 258, .external_lex_state = 1}, + [1297] = {.lex_state = 172}, + [1298] = {.lex_state = 256}, + [1299] = {.lex_state = 182, .external_lex_state = 1}, [1300] = {.lex_state = 172}, [1301] = {.lex_state = 172}, - [1302] = {.lex_state = 172}, - [1303] = {.lex_state = 255}, - [1304] = {.lex_state = 182, .external_lex_state = 1}, - [1305] = {.lex_state = 172}, - [1306] = {.lex_state = 172}, + [1302] = {.lex_state = 182, .external_lex_state = 1}, + [1303] = {.lex_state = 182, .external_lex_state = 1}, + [1304] = {.lex_state = 260}, + [1305] = {.lex_state = 261}, + [1306] = {.lex_state = 182, .external_lex_state = 1}, [1307] = {.lex_state = 182, .external_lex_state = 1}, - [1308] = {.lex_state = 182, .external_lex_state = 1}, - [1309] = {.lex_state = 262}, - [1310] = {.lex_state = 263}, - [1311] = {.lex_state = 182, .external_lex_state = 1}, - [1312] = {.lex_state = 182, .external_lex_state = 1}, - [1313] = {.lex_state = 261}, - [1314] = {.lex_state = 172}, - [1315] = {.lex_state = 261}, - [1316] = {.lex_state = 261}, - [1317] = {.lex_state = 172}, + [1308] = {.lex_state = 259}, + [1309] = {.lex_state = 172}, + [1310] = {.lex_state = 259}, + [1311] = {.lex_state = 259}, + [1312] = {.lex_state = 172}, + [1313] = {.lex_state = 182, .external_lex_state = 1}, + [1314] = {.lex_state = 259}, + [1315] = {.lex_state = 182, .external_lex_state = 1}, + [1316] = {.lex_state = 182, .external_lex_state = 1}, + [1317] = {.lex_state = 182, .external_lex_state = 1}, [1318] = {.lex_state = 182, .external_lex_state = 1}, - [1319] = {.lex_state = 261}, + [1319] = {.lex_state = 182, .external_lex_state = 1}, [1320] = {.lex_state = 182, .external_lex_state = 1}, [1321] = {.lex_state = 182, .external_lex_state = 1}, [1322] = {.lex_state = 182, .external_lex_state = 1}, [1323] = {.lex_state = 182, .external_lex_state = 1}, [1324] = {.lex_state = 182, .external_lex_state = 1}, [1325] = {.lex_state = 182, .external_lex_state = 1}, - [1326] = {.lex_state = 182, .external_lex_state = 1}, - [1327] = {.lex_state = 182, .external_lex_state = 1}, - [1328] = {.lex_state = 182, .external_lex_state = 1}, - [1329] = {.lex_state = 182, .external_lex_state = 1}, + [1326] = {.lex_state = 259}, + [1327] = {.lex_state = 261}, + [1328] = {.lex_state = 260}, + [1329] = {.lex_state = 260}, [1330] = {.lex_state = 182, .external_lex_state = 1}, - [1331] = {.lex_state = 261}, - [1332] = {.lex_state = 263}, - [1333] = {.lex_state = 262}, - [1334] = {.lex_state = 262}, - [1335] = {.lex_state = 182, .external_lex_state = 1}, - [1336] = {.lex_state = 262}, - [1337] = {.lex_state = 188, .external_lex_state = 1}, - [1338] = {.lex_state = 262}, - [1339] = {.lex_state = 262}, - [1340] = {.lex_state = 262}, - [1341] = {.lex_state = 262}, - [1342] = {.lex_state = 262}, - [1343] = {.lex_state = 262}, - [1344] = {.lex_state = 262}, - [1345] = {.lex_state = 262}, - [1346] = {.lex_state = 262}, - [1347] = {.lex_state = 235}, - [1348] = {.lex_state = 262}, - [1349] = {.lex_state = 172}, - [1350] = {.lex_state = 261}, - [1351] = {.lex_state = 262}, - [1352] = {.lex_state = 172, .external_lex_state = 1}, - [1353] = {.lex_state = 189}, - [1354] = {.lex_state = 172, .external_lex_state = 1}, - [1355] = {.lex_state = 234, .external_lex_state = 1}, - [1356] = {.lex_state = 247}, - [1357] = {.lex_state = 235}, - [1358] = {.lex_state = 264}, - [1359] = {.lex_state = 182, .external_lex_state = 1}, - [1360] = {.lex_state = 182, .external_lex_state = 1}, - [1361] = {.lex_state = 182, .external_lex_state = 1}, - [1362] = {.lex_state = 264}, - [1363] = {.lex_state = 263}, - [1364] = {.lex_state = 172}, - [1365] = {.lex_state = 263}, - [1366] = {.lex_state = 263}, - [1367] = {.lex_state = 172}, + [1331] = {.lex_state = 260}, + [1332] = {.lex_state = 188, .external_lex_state = 1}, + [1333] = {.lex_state = 260}, + [1334] = {.lex_state = 260}, + [1335] = {.lex_state = 260}, + [1336] = {.lex_state = 260}, + [1337] = {.lex_state = 260}, + [1338] = {.lex_state = 260}, + [1339] = {.lex_state = 260}, + [1340] = {.lex_state = 260}, + [1341] = {.lex_state = 260}, + [1342] = {.lex_state = 247}, + [1343] = {.lex_state = 260}, + [1344] = {.lex_state = 172}, + [1345] = {.lex_state = 259}, + [1346] = {.lex_state = 260}, + [1347] = {.lex_state = 172, .external_lex_state = 1}, + [1348] = {.lex_state = 189}, + [1349] = {.lex_state = 172, .external_lex_state = 1}, + [1350] = {.lex_state = 234, .external_lex_state = 1}, + [1351] = {.lex_state = 247}, + [1352] = {.lex_state = 247}, + [1353] = {.lex_state = 262}, + [1354] = {.lex_state = 182, .external_lex_state = 1}, + [1355] = {.lex_state = 182, .external_lex_state = 1}, + [1356] = {.lex_state = 182, .external_lex_state = 1}, + [1357] = {.lex_state = 262}, + [1358] = {.lex_state = 261}, + [1359] = {.lex_state = 172}, + [1360] = {.lex_state = 261}, + [1361] = {.lex_state = 261}, + [1362] = {.lex_state = 172}, + [1363] = {.lex_state = 182, .external_lex_state = 1}, + [1364] = {.lex_state = 261}, + [1365] = {.lex_state = 182, .external_lex_state = 1}, + [1366] = {.lex_state = 182, .external_lex_state = 1}, + [1367] = {.lex_state = 261}, [1368] = {.lex_state = 182, .external_lex_state = 1}, - [1369] = {.lex_state = 263}, + [1369] = {.lex_state = 182, .external_lex_state = 1}, [1370] = {.lex_state = 182, .external_lex_state = 1}, [1371] = {.lex_state = 182, .external_lex_state = 1}, - [1372] = {.lex_state = 263}, + [1372] = {.lex_state = 182, .external_lex_state = 1}, [1373] = {.lex_state = 182, .external_lex_state = 1}, [1374] = {.lex_state = 182, .external_lex_state = 1}, [1375] = {.lex_state = 182, .external_lex_state = 1}, [1376] = {.lex_state = 182, .external_lex_state = 1}, [1377] = {.lex_state = 182, .external_lex_state = 1}, [1378] = {.lex_state = 182, .external_lex_state = 1}, - [1379] = {.lex_state = 182, .external_lex_state = 1}, - [1380] = {.lex_state = 182, .external_lex_state = 1}, - [1381] = {.lex_state = 182, .external_lex_state = 1}, - [1382] = {.lex_state = 182, .external_lex_state = 1}, - [1383] = {.lex_state = 182, .external_lex_state = 1}, - [1384] = {.lex_state = 263}, - [1385] = {.lex_state = 263}, - [1386] = {.lex_state = 263}, - [1387] = {.lex_state = 264}, - [1388] = {.lex_state = 264}, - [1389] = {.lex_state = 182, .external_lex_state = 1}, - [1390] = {.lex_state = 264}, - [1391] = {.lex_state = 188, .external_lex_state = 1}, - [1392] = {.lex_state = 264}, - [1393] = {.lex_state = 264}, - [1394] = {.lex_state = 264}, - [1395] = {.lex_state = 264}, - [1396] = {.lex_state = 264}, - [1397] = {.lex_state = 264}, - [1398] = {.lex_state = 264}, - [1399] = {.lex_state = 264}, - [1400] = {.lex_state = 264}, - [1401] = {.lex_state = 235}, - [1402] = {.lex_state = 264}, - [1403] = {.lex_state = 172}, - [1404] = {.lex_state = 263}, - [1405] = {.lex_state = 252}, - [1406] = {.lex_state = 252}, - [1407] = {.lex_state = 264}, - [1408] = {.lex_state = 263}, - [1409] = {.lex_state = 264}, - [1410] = {.lex_state = 263}, - [1411] = {.lex_state = 172}, - [1412] = {.lex_state = 263}, - [1413] = {.lex_state = 264}, - [1414] = {.lex_state = 263}, - [1415] = {.lex_state = 263}, - [1416] = {.lex_state = 264}, - [1417] = {.lex_state = 182}, - [1418] = {.lex_state = 172}, - [1419] = {.lex_state = 182}, - [1420] = {.lex_state = 172}, + [1379] = {.lex_state = 261}, + [1380] = {.lex_state = 261}, + [1381] = {.lex_state = 261}, + [1382] = {.lex_state = 262}, + [1383] = {.lex_state = 262}, + [1384] = {.lex_state = 182, .external_lex_state = 1}, + [1385] = {.lex_state = 262}, + [1386] = {.lex_state = 188, .external_lex_state = 1}, + [1387] = {.lex_state = 262}, + [1388] = {.lex_state = 262}, + [1389] = {.lex_state = 262}, + [1390] = {.lex_state = 262}, + [1391] = {.lex_state = 262}, + [1392] = {.lex_state = 262}, + [1393] = {.lex_state = 262}, + [1394] = {.lex_state = 262}, + [1395] = {.lex_state = 262}, + [1396] = {.lex_state = 247}, + [1397] = {.lex_state = 262}, + [1398] = {.lex_state = 172}, + [1399] = {.lex_state = 261}, + [1400] = {.lex_state = 253}, + [1401] = {.lex_state = 253}, + [1402] = {.lex_state = 262}, + [1403] = {.lex_state = 261}, + [1404] = {.lex_state = 262}, + [1405] = {.lex_state = 261}, + [1406] = {.lex_state = 262}, + [1407] = {.lex_state = 261}, + [1408] = {.lex_state = 172}, + [1409] = {.lex_state = 261}, + [1410] = {.lex_state = 261}, + [1411] = {.lex_state = 262}, + [1412] = {.lex_state = 182}, + [1413] = {.lex_state = 182}, + [1414] = {.lex_state = 172}, + [1415] = {.lex_state = 172}, + [1416] = {.lex_state = 172}, + [1417] = {.lex_state = 172}, + [1418] = {.lex_state = 256}, + [1419] = {.lex_state = 172}, + [1420] = {.lex_state = 249}, [1421] = {.lex_state = 172}, - [1422] = {.lex_state = 172}, - [1423] = {.lex_state = 255}, - [1424] = {.lex_state = 172}, - [1425] = {.lex_state = 247}, - [1426] = {.lex_state = 172}, - [1427] = {.lex_state = 189}, + [1422] = {.lex_state = 189}, + [1423] = {.lex_state = 172}, + [1424] = {.lex_state = 265}, + [1425] = {.lex_state = 268}, + [1426] = {.lex_state = 300}, + [1427] = {.lex_state = 172}, [1428] = {.lex_state = 172}, - [1429] = {.lex_state = 266}, - [1430] = {.lex_state = 270}, - [1431] = {.lex_state = 302}, - [1432] = {.lex_state = 172}, - [1433] = {.lex_state = 172}, - [1434] = {.lex_state = 266}, - [1435] = {.lex_state = 172}, - [1436] = {.lex_state = 247}, - [1437] = {.lex_state = 302}, - [1438] = {.lex_state = 182}, + [1429] = {.lex_state = 265}, + [1430] = {.lex_state = 172}, + [1431] = {.lex_state = 249}, + [1432] = {.lex_state = 300}, + [1433] = {.lex_state = 182}, + [1434] = {.lex_state = 172}, + [1435] = {.lex_state = 249}, + [1436] = {.lex_state = 189}, + [1437] = {.lex_state = 249}, + [1438] = {.lex_state = 265}, [1439] = {.lex_state = 172}, - [1440] = {.lex_state = 247}, - [1441] = {.lex_state = 189}, - [1442] = {.lex_state = 172}, - [1443] = {.lex_state = 172}, - [1444] = {.lex_state = 266}, + [1440] = {.lex_state = 188}, + [1441] = {.lex_state = 172}, + [1442] = {.lex_state = 285}, + [1443] = {.lex_state = 247}, + [1444] = {.lex_state = 172}, [1445] = {.lex_state = 172}, - [1446] = {.lex_state = 172}, - [1447] = {.lex_state = 286}, - [1448] = {.lex_state = 172}, - [1449] = {.lex_state = 294}, - [1450] = {.lex_state = 247}, - [1451] = {.lex_state = 235}, - [1452] = {.lex_state = 172}, - [1453] = {.lex_state = 172}, - [1454] = {.lex_state = 172}, - [1455] = {.lex_state = 266}, - [1456] = {.lex_state = 182, .external_lex_state = 1}, - [1457] = {.lex_state = 248}, - [1458] = {.lex_state = 182, .external_lex_state = 1}, - [1459] = {.lex_state = 294}, - [1460] = {.lex_state = 182}, - [1461] = {.lex_state = 172}, - [1462] = {.lex_state = 172}, - [1463] = {.lex_state = 172, .external_lex_state = 1}, - [1464] = {.lex_state = 266}, - [1465] = {.lex_state = 266}, - [1466] = {.lex_state = 182}, - [1467] = {.lex_state = 172}, - [1468] = {.lex_state = 172}, - [1469] = {.lex_state = 247}, - [1470] = {.lex_state = 247}, - [1471] = {.lex_state = 255}, - [1472] = {.lex_state = 266}, - [1473] = {.lex_state = 247}, - [1474] = {.lex_state = 255}, + [1446] = {.lex_state = 249}, + [1447] = {.lex_state = 256}, + [1448] = {.lex_state = 265}, + [1449] = {.lex_state = 172}, + [1450] = {.lex_state = 172}, + [1451] = {.lex_state = 172}, + [1452] = {.lex_state = 265}, + [1453] = {.lex_state = 182, .external_lex_state = 1}, + [1454] = {.lex_state = 252}, + [1455] = {.lex_state = 182, .external_lex_state = 1}, + [1456] = {.lex_state = 172}, + [1457] = {.lex_state = 182}, + [1458] = {.lex_state = 247}, + [1459] = {.lex_state = 172}, + [1460] = {.lex_state = 172}, + [1461] = {.lex_state = 172, .external_lex_state = 1}, + [1462] = {.lex_state = 265}, + [1463] = {.lex_state = 265}, + [1464] = {.lex_state = 182}, + [1465] = {.lex_state = 249}, + [1466] = {.lex_state = 249}, + [1467] = {.lex_state = 249}, + [1468] = {.lex_state = 247}, + [1469] = {.lex_state = 256}, + [1470] = {.lex_state = 172}, + [1471] = {.lex_state = 188, .external_lex_state = 1}, + [1472] = {.lex_state = 172, .external_lex_state = 1}, + [1473] = {.lex_state = 189}, + [1474] = {.lex_state = 172}, [1475] = {.lex_state = 172}, - [1476] = {.lex_state = 188, .external_lex_state = 1}, - [1477] = {.lex_state = 172, .external_lex_state = 1}, - [1478] = {.lex_state = 189}, - [1479] = {.lex_state = 172}, - [1480] = {.lex_state = 247}, - [1481] = {.lex_state = 172}, - [1482] = {.lex_state = 172}, - [1483] = {.lex_state = 247}, - [1484] = {.lex_state = 189}, - [1485] = {.lex_state = 172, .external_lex_state = 1}, - [1486] = {.lex_state = 276}, - [1487] = {.lex_state = 273}, - [1488] = {.lex_state = 182, .external_lex_state = 1}, - [1489] = {.lex_state = 288}, - [1490] = {.lex_state = 266}, - [1491] = {.lex_state = 235}, - [1492] = {.lex_state = 288}, - [1493] = {.lex_state = 273}, - [1494] = {.lex_state = 273}, - [1495] = {.lex_state = 172}, - [1496] = {.lex_state = 288}, - [1497] = {.lex_state = 235}, + [1476] = {.lex_state = 247}, + [1477] = {.lex_state = 247}, + [1478] = {.lex_state = 172}, + [1479] = {.lex_state = 189}, + [1480] = {.lex_state = 172, .external_lex_state = 1}, + [1481] = {.lex_state = 274}, + [1482] = {.lex_state = 271}, + [1483] = {.lex_state = 182, .external_lex_state = 1}, + [1484] = {.lex_state = 288}, + [1485] = {.lex_state = 265}, + [1486] = {.lex_state = 271}, + [1487] = {.lex_state = 247}, + [1488] = {.lex_state = 288}, + [1489] = {.lex_state = 271}, + [1490] = {.lex_state = 172}, + [1491] = {.lex_state = 288}, + [1492] = {.lex_state = 271}, + [1493] = {.lex_state = 247}, + [1494] = {.lex_state = 288}, + [1495] = {.lex_state = 271}, + [1496] = {.lex_state = 172}, + [1497] = {.lex_state = 271}, [1498] = {.lex_state = 288}, - [1499] = {.lex_state = 273}, - [1500] = {.lex_state = 273}, + [1499] = {.lex_state = 172}, + [1500] = {.lex_state = 288}, [1501] = {.lex_state = 172}, - [1502] = {.lex_state = 273}, - [1503] = {.lex_state = 288}, - [1504] = {.lex_state = 172}, - [1505] = {.lex_state = 288}, - [1506] = {.lex_state = 172}, - [1507] = {.lex_state = 273}, - [1508] = {.lex_state = 273}, - [1509] = {.lex_state = 288}, - [1510] = {.lex_state = 235}, - [1511] = {.lex_state = 288}, - [1512] = {.lex_state = 273}, - [1513] = {.lex_state = 273}, - [1514] = {.lex_state = 172}, - [1515] = {.lex_state = 172}, - [1516] = {.lex_state = 288}, - [1517] = {.lex_state = 273}, - [1518] = {.lex_state = 273}, - [1519] = {.lex_state = 189}, - [1520] = {.lex_state = 182, .external_lex_state = 1}, - [1521] = {.lex_state = 273}, - [1522] = {.lex_state = 273}, + [1502] = {.lex_state = 271}, + [1503] = {.lex_state = 271}, + [1504] = {.lex_state = 288}, + [1505] = {.lex_state = 271}, + [1506] = {.lex_state = 247}, + [1507] = {.lex_state = 288}, + [1508] = {.lex_state = 271}, + [1509] = {.lex_state = 172}, + [1510] = {.lex_state = 271}, + [1511] = {.lex_state = 271}, + [1512] = {.lex_state = 189}, + [1513] = {.lex_state = 182, .external_lex_state = 1}, + [1514] = {.lex_state = 271}, + [1515] = {.lex_state = 271}, + [1516] = {.lex_state = 189}, + [1517] = {.lex_state = 288}, + [1518] = {.lex_state = 172}, + [1519] = {.lex_state = 188, .external_lex_state = 1}, + [1520] = {.lex_state = 271}, + [1521] = {.lex_state = 271}, + [1522] = {.lex_state = 182, .external_lex_state = 1}, [1523] = {.lex_state = 189}, - [1524] = {.lex_state = 188, .external_lex_state = 1}, - [1525] = {.lex_state = 273}, - [1526] = {.lex_state = 273}, - [1527] = {.lex_state = 182, .external_lex_state = 1}, - [1528] = {.lex_state = 189}, - [1529] = {.lex_state = 263}, - [1530] = {.lex_state = 189}, - [1531] = {.lex_state = 273}, - [1532] = {.lex_state = 288}, - [1533] = {.lex_state = 288}, - [1534] = {.lex_state = 290}, - [1535] = {.lex_state = 257}, - [1536] = {.lex_state = 172}, - [1537] = {.lex_state = 273}, - [1538] = {.lex_state = 247}, - [1539] = {.lex_state = 172}, - [1540] = {.lex_state = 273}, - [1541] = {.lex_state = 273}, - [1542] = {.lex_state = 288}, + [1524] = {.lex_state = 261}, + [1525] = {.lex_state = 189}, + [1526] = {.lex_state = 271}, + [1527] = {.lex_state = 288}, + [1528] = {.lex_state = 288}, + [1529] = {.lex_state = 290}, + [1530] = {.lex_state = 257}, + [1531] = {.lex_state = 172}, + [1532] = {.lex_state = 271}, + [1533] = {.lex_state = 247}, + [1534] = {.lex_state = 172}, + [1535] = {.lex_state = 271}, + [1536] = {.lex_state = 189}, + [1537] = {.lex_state = 189}, + [1538] = {.lex_state = 189}, + [1539] = {.lex_state = 189}, + [1540] = {.lex_state = 189}, + [1541] = {.lex_state = 271}, + [1542] = {.lex_state = 189}, [1543] = {.lex_state = 189}, [1544] = {.lex_state = 189}, - [1545] = {.lex_state = 189}, + [1545] = {.lex_state = 247}, [1546] = {.lex_state = 189}, - [1547] = {.lex_state = 189}, - [1548] = {.lex_state = 273}, - [1549] = {.lex_state = 189}, - [1550] = {.lex_state = 189}, + [1547] = {.lex_state = 172}, + [1548] = {.lex_state = 182}, + [1549] = {.lex_state = 172, .external_lex_state = 1}, + [1550] = {.lex_state = 271}, [1551] = {.lex_state = 189}, - [1552] = {.lex_state = 235}, - [1553] = {.lex_state = 189}, - [1554] = {.lex_state = 172}, - [1555] = {.lex_state = 182}, - [1556] = {.lex_state = 189}, - [1557] = {.lex_state = 172, .external_lex_state = 1}, - [1558] = {.lex_state = 273}, - [1559] = {.lex_state = 255}, - [1560] = {.lex_state = 172}, - [1561] = {.lex_state = 255}, - [1562] = {.lex_state = 172}, - [1563] = {.lex_state = 182, .external_lex_state = 1}, - [1564] = {.lex_state = 288}, - [1565] = {.lex_state = 263}, - [1566] = {.lex_state = 252}, - [1567] = {.lex_state = 264}, - [1568] = {.lex_state = 263}, - [1569] = {.lex_state = 284}, - [1570] = {.lex_state = 252}, - [1571] = {.lex_state = 252}, - [1572] = {.lex_state = 234, .external_lex_state = 1}, - [1573] = {.lex_state = 252}, - [1574] = {.lex_state = 172}, - [1575] = {.lex_state = 172, .external_lex_state = 1}, - [1576] = {.lex_state = 247}, - [1577] = {.lex_state = 172}, - [1578] = {.lex_state = 247}, - [1579] = {.lex_state = 274, .external_lex_state = 1}, - [1580] = {.lex_state = 247}, - [1581] = {.lex_state = 172}, - [1582] = {.lex_state = 234, .external_lex_state = 1}, + [1552] = {.lex_state = 271}, + [1553] = {.lex_state = 288}, + [1554] = {.lex_state = 256}, + [1555] = {.lex_state = 172}, + [1556] = {.lex_state = 256}, + [1557] = {.lex_state = 172}, + [1558] = {.lex_state = 182, .external_lex_state = 1}, + [1559] = {.lex_state = 288}, + [1560] = {.lex_state = 261}, + [1561] = {.lex_state = 253}, + [1562] = {.lex_state = 262}, + [1563] = {.lex_state = 261}, + [1564] = {.lex_state = 282}, + [1565] = {.lex_state = 253}, + [1566] = {.lex_state = 253}, + [1567] = {.lex_state = 234, .external_lex_state = 1}, + [1568] = {.lex_state = 253}, + [1569] = {.lex_state = 172}, + [1570] = {.lex_state = 172, .external_lex_state = 1}, + [1571] = {.lex_state = 235}, + [1572] = {.lex_state = 172}, + [1573] = {.lex_state = 235}, + [1574] = {.lex_state = 272, .external_lex_state = 1}, + [1575] = {.lex_state = 247}, + [1576] = {.lex_state = 234, .external_lex_state = 1}, + [1577] = {.lex_state = 188}, + [1578] = {.lex_state = 182, .external_lex_state = 1}, + [1579] = {.lex_state = 188}, + [1580] = {.lex_state = 188}, + [1581] = {.lex_state = 247}, + [1582] = {.lex_state = 247}, [1583] = {.lex_state = 172}, [1584] = {.lex_state = 172}, - [1585] = {.lex_state = 294}, - [1586] = {.lex_state = 172}, - [1587] = {.lex_state = 294}, - [1588] = {.lex_state = 172}, - [1589] = {.lex_state = 182, .external_lex_state = 1}, - [1590] = {.lex_state = 172, .external_lex_state = 1}, - [1591] = {.lex_state = 284}, - [1592] = {.lex_state = 182, .external_lex_state = 1}, - [1593] = {.lex_state = 284}, - [1594] = {.lex_state = 284}, - [1595] = {.lex_state = 182, .external_lex_state = 1}, - [1596] = {.lex_state = 284}, - [1597] = {.lex_state = 283}, - [1598] = {.lex_state = 264}, - [1599] = {.lex_state = 263}, - [1600] = {.lex_state = 263}, - [1601] = {.lex_state = 283}, - [1602] = {.lex_state = 226}, - [1603] = {.lex_state = 283}, - [1604] = {.lex_state = 283}, - [1605] = {.lex_state = 172}, - [1606] = {.lex_state = 182, .external_lex_state = 1}, - [1607] = {.lex_state = 283}, - [1608] = {.lex_state = 182, .external_lex_state = 1}, - [1609] = {.lex_state = 283}, - [1610] = {.lex_state = 283}, - [1611] = {.lex_state = 172}, - [1612] = {.lex_state = 257, .external_lex_state = 1}, - [1613] = {.lex_state = 234, .external_lex_state = 1}, - [1614] = {.lex_state = 283}, - [1615] = {.lex_state = 283}, - [1616] = {.lex_state = 182}, + [1585] = {.lex_state = 172, .external_lex_state = 1}, + [1586] = {.lex_state = 282}, + [1587] = {.lex_state = 182, .external_lex_state = 1}, + [1588] = {.lex_state = 282}, + [1589] = {.lex_state = 282}, + [1590] = {.lex_state = 182, .external_lex_state = 1}, + [1591] = {.lex_state = 282}, + [1592] = {.lex_state = 281}, + [1593] = {.lex_state = 262}, + [1594] = {.lex_state = 261}, + [1595] = {.lex_state = 261}, + [1596] = {.lex_state = 281}, + [1597] = {.lex_state = 226}, + [1598] = {.lex_state = 281}, + [1599] = {.lex_state = 281}, + [1600] = {.lex_state = 172}, + [1601] = {.lex_state = 182, .external_lex_state = 1}, + [1602] = {.lex_state = 281}, + [1603] = {.lex_state = 182, .external_lex_state = 1}, + [1604] = {.lex_state = 281}, + [1605] = {.lex_state = 281}, + [1606] = {.lex_state = 172}, + [1607] = {.lex_state = 257, .external_lex_state = 1}, + [1608] = {.lex_state = 234, .external_lex_state = 1}, + [1609] = {.lex_state = 281}, + [1610] = {.lex_state = 281}, + [1611] = {.lex_state = 182}, + [1612] = {.lex_state = 182}, + [1613] = {.lex_state = 172}, + [1614] = {.lex_state = 172}, + [1615] = {.lex_state = 281}, + [1616] = {.lex_state = 172}, [1617] = {.lex_state = 182}, - [1618] = {.lex_state = 172}, - [1619] = {.lex_state = 172}, - [1620] = {.lex_state = 283}, - [1621] = {.lex_state = 172}, - [1622] = {.lex_state = 182}, - [1623] = {.lex_state = 283}, - [1624] = {.lex_state = 283}, - [1625] = {.lex_state = 172}, - [1626] = {.lex_state = 283}, - [1627] = {.lex_state = 283}, - [1628] = {.lex_state = 172}, - [1629] = {.lex_state = 172}, + [1618] = {.lex_state = 281}, + [1619] = {.lex_state = 281}, + [1620] = {.lex_state = 172}, + [1621] = {.lex_state = 281}, + [1622] = {.lex_state = 281}, + [1623] = {.lex_state = 172}, + [1624] = {.lex_state = 172}, + [1625] = {.lex_state = 182, .external_lex_state = 1}, + [1626] = {.lex_state = 281}, + [1627] = {.lex_state = 182, .external_lex_state = 1}, + [1628] = {.lex_state = 182, .external_lex_state = 1}, + [1629] = {.lex_state = 182, .external_lex_state = 1}, [1630] = {.lex_state = 182, .external_lex_state = 1}, - [1631] = {.lex_state = 283}, - [1632] = {.lex_state = 172}, - [1633] = {.lex_state = 283}, + [1631] = {.lex_state = 182, .external_lex_state = 1}, + [1632] = {.lex_state = 182, .external_lex_state = 1}, + [1633] = {.lex_state = 182, .external_lex_state = 1}, [1634] = {.lex_state = 182, .external_lex_state = 1}, [1635] = {.lex_state = 182, .external_lex_state = 1}, [1636] = {.lex_state = 182, .external_lex_state = 1}, [1637] = {.lex_state = 182, .external_lex_state = 1}, - [1638] = {.lex_state = 182, .external_lex_state = 1}, - [1639] = {.lex_state = 182, .external_lex_state = 1}, - [1640] = {.lex_state = 182, .external_lex_state = 1}, - [1641] = {.lex_state = 182, .external_lex_state = 1}, - [1642] = {.lex_state = 182, .external_lex_state = 1}, - [1643] = {.lex_state = 182, .external_lex_state = 1}, - [1644] = {.lex_state = 182, .external_lex_state = 1}, - [1645] = {.lex_state = 283}, - [1646] = {.lex_state = 283}, - [1647] = {.lex_state = 283}, - [1648] = {.lex_state = 182}, - [1649] = {.lex_state = 263}, - [1650] = {.lex_state = 284}, - [1651] = {.lex_state = 284}, - [1652] = {.lex_state = 284}, - [1653] = {.lex_state = 284}, - [1654] = {.lex_state = 290}, - [1655] = {.lex_state = 257}, - [1656] = {.lex_state = 172}, - [1657] = {.lex_state = 284}, - [1658] = {.lex_state = 247}, - [1659] = {.lex_state = 172}, - [1660] = {.lex_state = 284}, - [1661] = {.lex_state = 266}, - [1662] = {.lex_state = 235}, - [1663] = {.lex_state = 284}, - [1664] = {.lex_state = 304}, - [1665] = {.lex_state = 305}, - [1666] = {.lex_state = 172}, - [1667] = {.lex_state = 284}, - [1668] = {.lex_state = 235}, - [1669] = {.lex_state = 284}, - [1670] = {.lex_state = 304}, - [1671] = {.lex_state = 305}, - [1672] = {.lex_state = 172}, - [1673] = {.lex_state = 304}, - [1674] = {.lex_state = 284}, + [1638] = {.lex_state = 281}, + [1639] = {.lex_state = 281}, + [1640] = {.lex_state = 281}, + [1641] = {.lex_state = 182}, + [1642] = {.lex_state = 281}, + [1643] = {.lex_state = 172}, + [1644] = {.lex_state = 261}, + [1645] = {.lex_state = 282}, + [1646] = {.lex_state = 182}, + [1647] = {.lex_state = 282}, + [1648] = {.lex_state = 282}, + [1649] = {.lex_state = 282}, + [1650] = {.lex_state = 290}, + [1651] = {.lex_state = 257}, + [1652] = {.lex_state = 172}, + [1653] = {.lex_state = 282}, + [1654] = {.lex_state = 247}, + [1655] = {.lex_state = 172}, + [1656] = {.lex_state = 263}, + [1657] = {.lex_state = 182}, + [1658] = {.lex_state = 282}, + [1659] = {.lex_state = 265}, + [1660] = {.lex_state = 302}, + [1661] = {.lex_state = 247}, + [1662] = {.lex_state = 282}, + [1663] = {.lex_state = 303}, + [1664] = {.lex_state = 172}, + [1665] = {.lex_state = 282}, + [1666] = {.lex_state = 302}, + [1667] = {.lex_state = 247}, + [1668] = {.lex_state = 282}, + [1669] = {.lex_state = 303}, + [1670] = {.lex_state = 172}, + [1671] = {.lex_state = 303}, + [1672] = {.lex_state = 282}, + [1673] = {.lex_state = 172}, + [1674] = {.lex_state = 282}, [1675] = {.lex_state = 172}, - [1676] = {.lex_state = 284}, - [1677] = {.lex_state = 172}, - [1678] = {.lex_state = 304}, - [1679] = {.lex_state = 304}, - [1680] = {.lex_state = 284}, - [1681] = {.lex_state = 235}, - [1682] = {.lex_state = 284}, - [1683] = {.lex_state = 304}, - [1684] = {.lex_state = 305}, - [1685] = {.lex_state = 172}, - [1686] = {.lex_state = 172}, - [1687] = {.lex_state = 284}, - [1688] = {.lex_state = 304}, - [1689] = {.lex_state = 304}, - [1690] = {.lex_state = 284}, - [1691] = {.lex_state = 274, .external_lex_state = 1}, - [1692] = {.lex_state = 182, .external_lex_state = 1}, - [1693] = {.lex_state = 284}, - [1694] = {.lex_state = 284}, - [1695] = {.lex_state = 284}, - [1696] = {.lex_state = 284}, - [1697] = {.lex_state = 188, .external_lex_state = 1}, - [1698] = {.lex_state = 284}, - [1699] = {.lex_state = 284}, - [1700] = {.lex_state = 306}, - [1701] = {.lex_state = 264}, - [1702] = {.lex_state = 263}, - [1703] = {.lex_state = 284}, - [1704] = {.lex_state = 284}, - [1705] = {.lex_state = 284}, - [1706] = {.lex_state = 284}, - [1707] = {.lex_state = 284}, - [1708] = {.lex_state = 283}, - [1709] = {.lex_state = 182}, - [1710] = {.lex_state = 283}, - [1711] = {.lex_state = 284}, - [1712] = {.lex_state = 284}, - [1713] = {.lex_state = 284}, - [1714] = {.lex_state = 284}, - [1715] = {.lex_state = 284}, - [1716] = {.lex_state = 284}, - [1717] = {.lex_state = 235}, - [1718] = {.lex_state = 284}, - [1719] = {.lex_state = 188}, - [1720] = {.lex_state = 182}, - [1721] = {.lex_state = 284}, - [1722] = {.lex_state = 172, .external_lex_state = 1}, - [1723] = {.lex_state = 284}, - [1724] = {.lex_state = 255}, + [1676] = {.lex_state = 303}, + [1677] = {.lex_state = 303}, + [1678] = {.lex_state = 282}, + [1679] = {.lex_state = 302}, + [1680] = {.lex_state = 247}, + [1681] = {.lex_state = 282}, + [1682] = {.lex_state = 303}, + [1683] = {.lex_state = 172}, + [1684] = {.lex_state = 303}, + [1685] = {.lex_state = 303}, + [1686] = {.lex_state = 282}, + [1687] = {.lex_state = 272, .external_lex_state = 1}, + [1688] = {.lex_state = 182, .external_lex_state = 1}, + [1689] = {.lex_state = 282}, + [1690] = {.lex_state = 282}, + [1691] = {.lex_state = 282}, + [1692] = {.lex_state = 282}, + [1693] = {.lex_state = 172}, + [1694] = {.lex_state = 282}, + [1695] = {.lex_state = 188, .external_lex_state = 1}, + [1696] = {.lex_state = 304}, + [1697] = {.lex_state = 262}, + [1698] = {.lex_state = 261}, + [1699] = {.lex_state = 282}, + [1700] = {.lex_state = 282}, + [1701] = {.lex_state = 282}, + [1702] = {.lex_state = 282}, + [1703] = {.lex_state = 282}, + [1704] = {.lex_state = 281}, + [1705] = {.lex_state = 281}, + [1706] = {.lex_state = 182}, + [1707] = {.lex_state = 282}, + [1708] = {.lex_state = 282}, + [1709] = {.lex_state = 282}, + [1710] = {.lex_state = 282}, + [1711] = {.lex_state = 282}, + [1712] = {.lex_state = 282}, + [1713] = {.lex_state = 247}, + [1714] = {.lex_state = 282}, + [1715] = {.lex_state = 188}, + [1716] = {.lex_state = 182}, + [1717] = {.lex_state = 172, .external_lex_state = 1}, + [1718] = {.lex_state = 282}, + [1719] = {.lex_state = 282}, + [1720] = {.lex_state = 282}, + [1721] = {.lex_state = 282}, + [1722] = {.lex_state = 256}, + [1723] = {.lex_state = 172}, + [1724] = {.lex_state = 256}, [1725] = {.lex_state = 172}, - [1726] = {.lex_state = 255}, - [1727] = {.lex_state = 172}, - [1728] = {.lex_state = 263}, + [1726] = {.lex_state = 261}, + [1727] = {.lex_state = 182, .external_lex_state = 1}, + [1728] = {.lex_state = 182, .external_lex_state = 1}, [1729] = {.lex_state = 182, .external_lex_state = 1}, - [1730] = {.lex_state = 182, .external_lex_state = 1}, + [1730] = {.lex_state = 172}, [1731] = {.lex_state = 182, .external_lex_state = 1}, - [1732] = {.lex_state = 172}, + [1732] = {.lex_state = 182, .external_lex_state = 1}, [1733] = {.lex_state = 182, .external_lex_state = 1}, - [1734] = {.lex_state = 182, .external_lex_state = 1}, + [1734] = {.lex_state = 172}, [1735] = {.lex_state = 182, .external_lex_state = 1}, - [1736] = {.lex_state = 172}, + [1736] = {.lex_state = 261}, [1737] = {.lex_state = 182, .external_lex_state = 1}, - [1738] = {.lex_state = 263}, + [1738] = {.lex_state = 262}, [1739] = {.lex_state = 182, .external_lex_state = 1}, - [1740] = {.lex_state = 264}, - [1741] = {.lex_state = 182, .external_lex_state = 1}, - [1742] = {.lex_state = 172}, - [1743] = {.lex_state = 264}, - [1744] = {.lex_state = 264}, - [1745] = {.lex_state = 172}, + [1740] = {.lex_state = 172}, + [1741] = {.lex_state = 262}, + [1742] = {.lex_state = 262}, + [1743] = {.lex_state = 172}, + [1744] = {.lex_state = 182, .external_lex_state = 1}, + [1745] = {.lex_state = 262}, [1746] = {.lex_state = 182, .external_lex_state = 1}, - [1747] = {.lex_state = 264}, + [1747] = {.lex_state = 182, .external_lex_state = 1}, [1748] = {.lex_state = 182, .external_lex_state = 1}, [1749] = {.lex_state = 182, .external_lex_state = 1}, [1750] = {.lex_state = 182, .external_lex_state = 1}, @@ -10877,85 +10798,85 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1754] = {.lex_state = 182, .external_lex_state = 1}, [1755] = {.lex_state = 182, .external_lex_state = 1}, [1756] = {.lex_state = 182, .external_lex_state = 1}, - [1757] = {.lex_state = 182, .external_lex_state = 1}, - [1758] = {.lex_state = 182, .external_lex_state = 1}, - [1759] = {.lex_state = 234, .external_lex_state = 1}, - [1760] = {.lex_state = 264}, - [1761] = {.lex_state = 264}, - [1762] = {.lex_state = 234, .external_lex_state = 1}, + [1757] = {.lex_state = 234, .external_lex_state = 1}, + [1758] = {.lex_state = 262}, + [1759] = {.lex_state = 262}, + [1760] = {.lex_state = 234, .external_lex_state = 1}, + [1761] = {.lex_state = 172}, + [1762] = {.lex_state = 172}, [1763] = {.lex_state = 172}, [1764] = {.lex_state = 172}, - [1765] = {.lex_state = 172}, - [1766] = {.lex_state = 172}, - [1767] = {.lex_state = 234, .external_lex_state = 1}, - [1768] = {.lex_state = 247}, - [1769] = {.lex_state = 235}, - [1770] = {.lex_state = 172}, - [1771] = {.lex_state = 172}, - [1772] = {.lex_state = 264}, - [1773] = {.lex_state = 182, .external_lex_state = 1}, - [1774] = {.lex_state = 172}, - [1775] = {.lex_state = 172}, - [1776] = {.lex_state = 182, .external_lex_state = 1}, - [1777] = {.lex_state = 172, .external_lex_state = 1}, + [1765] = {.lex_state = 234, .external_lex_state = 1}, + [1766] = {.lex_state = 247}, + [1767] = {.lex_state = 247}, + [1768] = {.lex_state = 172}, + [1769] = {.lex_state = 172}, + [1770] = {.lex_state = 262}, + [1771] = {.lex_state = 182, .external_lex_state = 1}, + [1772] = {.lex_state = 172}, + [1773] = {.lex_state = 172}, + [1774] = {.lex_state = 182, .external_lex_state = 1}, + [1775] = {.lex_state = 172, .external_lex_state = 1}, + [1776] = {.lex_state = 290}, + [1777] = {.lex_state = 290}, [1778] = {.lex_state = 290}, - [1779] = {.lex_state = 290}, + [1779] = {.lex_state = 172}, [1780] = {.lex_state = 290}, - [1781] = {.lex_state = 172}, - [1782] = {.lex_state = 290}, + [1781] = {.lex_state = 290}, + [1782] = {.lex_state = 172}, [1783] = {.lex_state = 290}, - [1784] = {.lex_state = 172}, - [1785] = {.lex_state = 290}, - [1786] = {.lex_state = 182}, - [1787] = {.lex_state = 172}, + [1784] = {.lex_state = 182}, + [1785] = {.lex_state = 172}, + [1786] = {.lex_state = 290}, + [1787] = {.lex_state = 290}, [1788] = {.lex_state = 290}, [1789] = {.lex_state = 172}, - [1790] = {.lex_state = 290}, - [1791] = {.lex_state = 172}, - [1792] = {.lex_state = 290}, + [1790] = {.lex_state = 172}, + [1791] = {.lex_state = 257}, + [1792] = {.lex_state = 172}, [1793] = {.lex_state = 290}, [1794] = {.lex_state = 290}, [1795] = {.lex_state = 172}, - [1796] = {.lex_state = 172}, + [1796] = {.lex_state = 290}, [1797] = {.lex_state = 172}, - [1798] = {.lex_state = 257}, - [1799] = {.lex_state = 290}, + [1798] = {.lex_state = 290}, + [1799] = {.lex_state = 286}, [1800] = {.lex_state = 290}, - [1801] = {.lex_state = 287}, - [1802] = {.lex_state = 290}, - [1803] = {.lex_state = 290}, - [1804] = {.lex_state = 172}, - [1805] = {.lex_state = 257}, - [1806] = {.lex_state = 182, .external_lex_state = 1}, - [1807] = {.lex_state = 172}, - [1808] = {.lex_state = 257}, + [1801] = {.lex_state = 290}, + [1802] = {.lex_state = 172}, + [1803] = {.lex_state = 257}, + [1804] = {.lex_state = 182, .external_lex_state = 1}, + [1805] = {.lex_state = 182, .external_lex_state = 1}, + [1806] = {.lex_state = 257}, + [1807] = {.lex_state = 257}, + [1808] = {.lex_state = 172}, [1809] = {.lex_state = 257}, - [1810] = {.lex_state = 257}, - [1811] = {.lex_state = 189}, - [1812] = {.lex_state = 247}, + [1810] = {.lex_state = 189}, + [1811] = {.lex_state = 249}, + [1812] = {.lex_state = 188}, [1813] = {.lex_state = 172}, - [1814] = {.lex_state = 247}, - [1815] = {.lex_state = 172}, - [1816] = {.lex_state = 189}, - [1817] = {.lex_state = 172}, - [1818] = {.lex_state = 172}, - [1819] = {.lex_state = 172}, - [1820] = {.lex_state = 172}, - [1821] = {.lex_state = 172, .external_lex_state = 1}, - [1822] = {.lex_state = 182, .external_lex_state = 1}, - [1823] = {.lex_state = 188, .external_lex_state = 1}, + [1814] = {.lex_state = 189}, + [1815] = {.lex_state = 249}, + [1816] = {.lex_state = 188}, + [1817] = {.lex_state = 172, .external_lex_state = 1}, + [1818] = {.lex_state = 182, .external_lex_state = 1}, + [1819] = {.lex_state = 188, .external_lex_state = 1}, + [1820] = {.lex_state = 182, .external_lex_state = 1}, + [1821] = {.lex_state = 247}, + [1822] = {.lex_state = 261}, + [1823] = {.lex_state = 182, .external_lex_state = 1}, [1824] = {.lex_state = 182, .external_lex_state = 1}, - [1825] = {.lex_state = 247}, - [1826] = {.lex_state = 263}, - [1827] = {.lex_state = 182, .external_lex_state = 1}, - [1828] = {.lex_state = 182, .external_lex_state = 1}, - [1829] = {.lex_state = 189}, - [1830] = {.lex_state = 172}, + [1825] = {.lex_state = 189}, + [1826] = {.lex_state = 172}, + [1827] = {.lex_state = 189}, + [1828] = {.lex_state = 189}, + [1829] = {.lex_state = 172}, + [1830] = {.lex_state = 182, .external_lex_state = 1}, [1831] = {.lex_state = 189}, - [1832] = {.lex_state = 189}, - [1833] = {.lex_state = 172}, + [1832] = {.lex_state = 182, .external_lex_state = 1}, + [1833] = {.lex_state = 182, .external_lex_state = 1}, [1834] = {.lex_state = 182, .external_lex_state = 1}, - [1835] = {.lex_state = 189}, + [1835] = {.lex_state = 182, .external_lex_state = 1}, [1836] = {.lex_state = 182, .external_lex_state = 1}, [1837] = {.lex_state = 182, .external_lex_state = 1}, [1838] = {.lex_state = 182, .external_lex_state = 1}, @@ -10963,15 +10884,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1840] = {.lex_state = 182, .external_lex_state = 1}, [1841] = {.lex_state = 182, .external_lex_state = 1}, [1842] = {.lex_state = 182, .external_lex_state = 1}, - [1843] = {.lex_state = 182, .external_lex_state = 1}, - [1844] = {.lex_state = 182, .external_lex_state = 1}, - [1845] = {.lex_state = 182, .external_lex_state = 1}, - [1846] = {.lex_state = 182, .external_lex_state = 1}, - [1847] = {.lex_state = 189}, - [1848] = {.lex_state = 263}, + [1843] = {.lex_state = 189}, + [1844] = {.lex_state = 261}, + [1845] = {.lex_state = 247}, + [1846] = {.lex_state = 247}, + [1847] = {.lex_state = 182, .external_lex_state = 1}, + [1848] = {.lex_state = 247}, [1849] = {.lex_state = 247}, [1850] = {.lex_state = 247}, - [1851] = {.lex_state = 182, .external_lex_state = 1}, + [1851] = {.lex_state = 247}, [1852] = {.lex_state = 247}, [1853] = {.lex_state = 247}, [1854] = {.lex_state = 247}, @@ -10980,60 +10901,60 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1857] = {.lex_state = 247}, [1858] = {.lex_state = 247}, [1859] = {.lex_state = 247}, - [1860] = {.lex_state = 247}, - [1861] = {.lex_state = 235}, - [1862] = {.lex_state = 247}, - [1863] = {.lex_state = 247}, - [1864] = {.lex_state = 172, .external_lex_state = 1}, - [1865] = {.lex_state = 263}, - [1866] = {.lex_state = 203}, + [1860] = {.lex_state = 172, .external_lex_state = 1}, + [1861] = {.lex_state = 261}, + [1862] = {.lex_state = 203}, + [1863] = {.lex_state = 172, .external_lex_state = 1}, + [1864] = {.lex_state = 268}, + [1865] = {.lex_state = 295}, + [1866] = {.lex_state = 295}, [1867] = {.lex_state = 172, .external_lex_state = 1}, - [1868] = {.lex_state = 270}, - [1869] = {.lex_state = 296}, - [1870] = {.lex_state = 296}, - [1871] = {.lex_state = 249}, - [1872] = {.lex_state = 249}, - [1873] = {.lex_state = 172, .external_lex_state = 1}, - [1874] = {.lex_state = 182}, - [1875] = {.lex_state = 182}, - [1876] = {.lex_state = 172}, - [1877] = {.lex_state = 182}, - [1878] = {.lex_state = 182}, - [1879] = {.lex_state = 172}, - [1880] = {.lex_state = 172}, - [1881] = {.lex_state = 182}, - [1882] = {.lex_state = 172, .external_lex_state = 1}, - [1883] = {.lex_state = 172, .external_lex_state = 1}, - [1884] = {.lex_state = 182}, - [1885] = {.lex_state = 172}, - [1886] = {.lex_state = 288}, - [1887] = {.lex_state = 273}, - [1888] = {.lex_state = 172}, + [1868] = {.lex_state = 172, .external_lex_state = 1}, + [1869] = {.lex_state = 172}, + [1870] = {.lex_state = 286}, + [1871] = {.lex_state = 263}, + [1872] = {.lex_state = 261}, + [1873] = {.lex_state = 262}, + [1874] = {.lex_state = 262}, + [1875] = {.lex_state = 172}, + [1876] = {.lex_state = 262}, + [1877] = {.lex_state = 262}, + [1878] = {.lex_state = 172}, + [1879] = {.lex_state = 262}, + [1880] = {.lex_state = 262}, + [1881] = {.lex_state = 172}, + [1882] = {.lex_state = 262}, + [1883] = {.lex_state = 262}, + [1884] = {.lex_state = 182, .external_lex_state = 1}, + [1885] = {.lex_state = 261}, + [1886] = {.lex_state = 261}, + [1887] = {.lex_state = 261}, + [1888] = {.lex_state = 261}, [1889] = {.lex_state = 263}, - [1890] = {.lex_state = 182, .external_lex_state = 1}, - [1891] = {.lex_state = 182, .external_lex_state = 1}, - [1892] = {.lex_state = 182, .external_lex_state = 1}, - [1893] = {.lex_state = 172}, + [1890] = {.lex_state = 172}, + [1891] = {.lex_state = 182}, + [1892] = {.lex_state = 182}, + [1893] = {.lex_state = 261}, [1894] = {.lex_state = 182, .external_lex_state = 1}, [1895] = {.lex_state = 182, .external_lex_state = 1}, [1896] = {.lex_state = 182, .external_lex_state = 1}, [1897] = {.lex_state = 172}, [1898] = {.lex_state = 182, .external_lex_state = 1}, - [1899] = {.lex_state = 283}, + [1899] = {.lex_state = 182, .external_lex_state = 1}, [1900] = {.lex_state = 182, .external_lex_state = 1}, - [1901] = {.lex_state = 284}, + [1901] = {.lex_state = 172}, [1902] = {.lex_state = 182, .external_lex_state = 1}, - [1903] = {.lex_state = 172}, - [1904] = {.lex_state = 284}, - [1905] = {.lex_state = 284}, - [1906] = {.lex_state = 172}, + [1903] = {.lex_state = 281}, + [1904] = {.lex_state = 182, .external_lex_state = 1}, + [1905] = {.lex_state = 282}, + [1906] = {.lex_state = 263}, [1907] = {.lex_state = 182, .external_lex_state = 1}, - [1908] = {.lex_state = 284}, - [1909] = {.lex_state = 182, .external_lex_state = 1}, - [1910] = {.lex_state = 182, .external_lex_state = 1}, - [1911] = {.lex_state = 182, .external_lex_state = 1}, - [1912] = {.lex_state = 273}, - [1913] = {.lex_state = 182, .external_lex_state = 1}, + [1908] = {.lex_state = 172}, + [1909] = {.lex_state = 282}, + [1910] = {.lex_state = 282}, + [1911] = {.lex_state = 172}, + [1912] = {.lex_state = 182, .external_lex_state = 1}, + [1913] = {.lex_state = 282}, [1914] = {.lex_state = 182, .external_lex_state = 1}, [1915] = {.lex_state = 182, .external_lex_state = 1}, [1916] = {.lex_state = 182, .external_lex_state = 1}, @@ -11041,3222 +10962,3193 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1918] = {.lex_state = 182, .external_lex_state = 1}, [1919] = {.lex_state = 182, .external_lex_state = 1}, [1920] = {.lex_state = 182, .external_lex_state = 1}, - [1921] = {.lex_state = 284}, - [1922] = {.lex_state = 235}, - [1923] = {.lex_state = 263}, + [1921] = {.lex_state = 182, .external_lex_state = 1}, + [1922] = {.lex_state = 182, .external_lex_state = 1}, + [1923] = {.lex_state = 182, .external_lex_state = 1}, [1924] = {.lex_state = 182, .external_lex_state = 1}, - [1925] = {.lex_state = 235}, + [1925] = {.lex_state = 282}, [1926] = {.lex_state = 182, .external_lex_state = 1}, - [1927] = {.lex_state = 182, .external_lex_state = 1}, - [1928] = {.lex_state = 172}, - [1929] = {.lex_state = 182, .external_lex_state = 1}, - [1930] = {.lex_state = 182, .external_lex_state = 1}, - [1931] = {.lex_state = 182, .external_lex_state = 1}, - [1932] = {.lex_state = 172}, - [1933] = {.lex_state = 182, .external_lex_state = 1}, - [1934] = {.lex_state = 273}, - [1935] = {.lex_state = 273}, - [1936] = {.lex_state = 273}, - [1937] = {.lex_state = 182, .external_lex_state = 1}, - [1938] = {.lex_state = 235}, - [1939] = {.lex_state = 235}, - [1940] = {.lex_state = 182, .external_lex_state = 1}, + [1927] = {.lex_state = 282}, + [1928] = {.lex_state = 182, .external_lex_state = 1}, + [1929] = {.lex_state = 188}, + [1930] = {.lex_state = 172}, + [1931] = {.lex_state = 188}, + [1932] = {.lex_state = 188}, + [1933] = {.lex_state = 182}, + [1934] = {.lex_state = 263}, + [1935] = {.lex_state = 182, .external_lex_state = 1}, + [1936] = {.lex_state = 182}, + [1937] = {.lex_state = 182}, + [1938] = {.lex_state = 182}, + [1939] = {.lex_state = 172}, + [1940] = {.lex_state = 182}, [1941] = {.lex_state = 182}, - [1942] = {.lex_state = 182}, + [1942] = {.lex_state = 172}, [1943] = {.lex_state = 172}, [1944] = {.lex_state = 182}, - [1945] = {.lex_state = 235}, - [1946] = {.lex_state = 235}, - [1947] = {.lex_state = 172}, - [1948] = {.lex_state = 182, .external_lex_state = 1}, - [1949] = {.lex_state = 235}, - [1950] = {.lex_state = 182, .external_lex_state = 1}, - [1951] = {.lex_state = 182, .external_lex_state = 1}, - [1952] = {.lex_state = 182, .external_lex_state = 1}, - [1953] = {.lex_state = 182, .external_lex_state = 1}, + [1945] = {.lex_state = 172, .external_lex_state = 1}, + [1946] = {.lex_state = 172, .external_lex_state = 1}, + [1947] = {.lex_state = 235}, + [1948] = {.lex_state = 235}, + [1949] = {.lex_state = 172, .external_lex_state = 1}, + [1950] = {.lex_state = 182}, + [1951] = {.lex_state = 172}, + [1952] = {.lex_state = 288}, + [1953] = {.lex_state = 271}, [1954] = {.lex_state = 172}, - [1955] = {.lex_state = 182, .external_lex_state = 1}, - [1956] = {.lex_state = 182, .external_lex_state = 1}, - [1957] = {.lex_state = 182, .external_lex_state = 1}, + [1955] = {.lex_state = 271}, + [1956] = {.lex_state = 247}, + [1957] = {.lex_state = 261}, [1958] = {.lex_state = 182, .external_lex_state = 1}, - [1959] = {.lex_state = 182, .external_lex_state = 1}, + [1959] = {.lex_state = 247}, [1960] = {.lex_state = 182, .external_lex_state = 1}, [1961] = {.lex_state = 182, .external_lex_state = 1}, - [1962] = {.lex_state = 182, .external_lex_state = 1}, - [1963] = {.lex_state = 257, .external_lex_state = 1}, - [1964] = {.lex_state = 235}, - [1965] = {.lex_state = 287}, - [1966] = {.lex_state = 265}, - [1967] = {.lex_state = 263}, - [1968] = {.lex_state = 172}, - [1969] = {.lex_state = 264}, - [1970] = {.lex_state = 172}, - [1971] = {.lex_state = 264}, - [1972] = {.lex_state = 264}, - [1973] = {.lex_state = 264}, - [1974] = {.lex_state = 264}, - [1975] = {.lex_state = 264}, - [1976] = {.lex_state = 172}, - [1977] = {.lex_state = 264}, - [1978] = {.lex_state = 264}, - [1979] = {.lex_state = 182, .external_lex_state = 1}, - [1980] = {.lex_state = 263}, - [1981] = {.lex_state = 263}, - [1982] = {.lex_state = 263}, - [1983] = {.lex_state = 263}, - [1984] = {.lex_state = 265}, + [1962] = {.lex_state = 172}, + [1963] = {.lex_state = 182, .external_lex_state = 1}, + [1964] = {.lex_state = 182, .external_lex_state = 1}, + [1965] = {.lex_state = 182, .external_lex_state = 1}, + [1966] = {.lex_state = 172}, + [1967] = {.lex_state = 182, .external_lex_state = 1}, + [1968] = {.lex_state = 271}, + [1969] = {.lex_state = 271}, + [1970] = {.lex_state = 271}, + [1971] = {.lex_state = 182, .external_lex_state = 1}, + [1972] = {.lex_state = 247}, + [1973] = {.lex_state = 247}, + [1974] = {.lex_state = 182, .external_lex_state = 1}, + [1975] = {.lex_state = 182}, + [1976] = {.lex_state = 182}, + [1977] = {.lex_state = 172}, + [1978] = {.lex_state = 182}, + [1979] = {.lex_state = 247}, + [1980] = {.lex_state = 247}, + [1981] = {.lex_state = 172}, + [1982] = {.lex_state = 182, .external_lex_state = 1}, + [1983] = {.lex_state = 247}, + [1984] = {.lex_state = 182, .external_lex_state = 1}, [1985] = {.lex_state = 182, .external_lex_state = 1}, - [1986] = {.lex_state = 284}, + [1986] = {.lex_state = 182, .external_lex_state = 1}, [1987] = {.lex_state = 182, .external_lex_state = 1}, [1988] = {.lex_state = 172}, - [1989] = {.lex_state = 294}, - [1990] = {.lex_state = 235}, - [1991] = {.lex_state = 235}, - [1992] = {.lex_state = 235}, - [1993] = {.lex_state = 189}, - [1994] = {.lex_state = 172}, - [1995] = {.lex_state = 182}, - [1996] = {.lex_state = 182}, - [1997] = {.lex_state = 247}, - [1998] = {.lex_state = 172}, - [1999] = {.lex_state = 172, .external_lex_state = 1}, - [2000] = {.lex_state = 172}, - [2001] = {.lex_state = 263}, - [2002] = {.lex_state = 294}, - [2003] = {.lex_state = 264}, - [2004] = {.lex_state = 172}, + [1989] = {.lex_state = 182, .external_lex_state = 1}, + [1990] = {.lex_state = 182, .external_lex_state = 1}, + [1991] = {.lex_state = 182, .external_lex_state = 1}, + [1992] = {.lex_state = 182, .external_lex_state = 1}, + [1993] = {.lex_state = 182, .external_lex_state = 1}, + [1994] = {.lex_state = 182, .external_lex_state = 1}, + [1995] = {.lex_state = 182, .external_lex_state = 1}, + [1996] = {.lex_state = 182, .external_lex_state = 1}, + [1997] = {.lex_state = 257, .external_lex_state = 1}, + [1998] = {.lex_state = 247}, + [1999] = {.lex_state = 263}, + [2000] = {.lex_state = 182, .external_lex_state = 1}, + [2001] = {.lex_state = 282}, + [2002] = {.lex_state = 172}, + [2003] = {.lex_state = 247}, + [2004] = {.lex_state = 247}, [2005] = {.lex_state = 247}, - [2006] = {.lex_state = 172}, + [2006] = {.lex_state = 247}, [2007] = {.lex_state = 189}, [2008] = {.lex_state = 172}, - [2009] = {.lex_state = 182, .external_lex_state = 1}, - [2010] = {.lex_state = 182, .external_lex_state = 1}, - [2011] = {.lex_state = 182, .external_lex_state = 1}, - [2012] = {.lex_state = 189}, - [2013] = {.lex_state = 182, .external_lex_state = 1}, - [2014] = {.lex_state = 172, .external_lex_state = 1}, - [2015] = {.lex_state = 188, .external_lex_state = 1}, - [2016] = {.lex_state = 172}, - [2017] = {.lex_state = 188, .external_lex_state = 1}, - [2018] = {.lex_state = 172, .external_lex_state = 1}, - [2019] = {.lex_state = 188, .external_lex_state = 1}, - [2020] = {.lex_state = 172}, - [2021] = {.lex_state = 182, .external_lex_state = 1}, - [2022] = {.lex_state = 189}, - [2023] = {.lex_state = 247}, - [2024] = {.lex_state = 247}, - [2025] = {.lex_state = 172}, - [2026] = {.lex_state = 189}, - [2027] = {.lex_state = 172, .external_lex_state = 1}, - [2028] = {.lex_state = 172}, - [2029] = {.lex_state = 172, .external_lex_state = 1}, - [2030] = {.lex_state = 172}, - [2031] = {.lex_state = 265}, + [2009] = {.lex_state = 261}, + [2010] = {.lex_state = 247}, + [2011] = {.lex_state = 247}, + [2012] = {.lex_state = 172}, + [2013] = {.lex_state = 189}, + [2014] = {.lex_state = 172}, + [2015] = {.lex_state = 182, .external_lex_state = 1}, + [2016] = {.lex_state = 182, .external_lex_state = 1}, + [2017] = {.lex_state = 182, .external_lex_state = 1}, + [2018] = {.lex_state = 189}, + [2019] = {.lex_state = 182, .external_lex_state = 1}, + [2020] = {.lex_state = 172, .external_lex_state = 1}, + [2021] = {.lex_state = 188, .external_lex_state = 1}, + [2022] = {.lex_state = 172}, + [2023] = {.lex_state = 188, .external_lex_state = 1}, + [2024] = {.lex_state = 172, .external_lex_state = 1}, + [2025] = {.lex_state = 188, .external_lex_state = 1}, + [2026] = {.lex_state = 172}, + [2027] = {.lex_state = 182, .external_lex_state = 1}, + [2028] = {.lex_state = 182, .external_lex_state = 1}, + [2029] = {.lex_state = 189}, + [2030] = {.lex_state = 247}, + [2031] = {.lex_state = 247}, [2032] = {.lex_state = 172}, - [2033] = {.lex_state = 182}, - [2034] = {.lex_state = 182}, - [2035] = {.lex_state = 265}, - [2036] = {.lex_state = 182, .external_lex_state = 1}, - [2037] = {.lex_state = 284}, - [2038] = {.lex_state = 188}, + [2033] = {.lex_state = 189}, + [2034] = {.lex_state = 172}, + [2035] = {.lex_state = 172, .external_lex_state = 1}, + [2036] = {.lex_state = 172}, + [2037] = {.lex_state = 172}, + [2038] = {.lex_state = 252}, [2039] = {.lex_state = 172}, - [2040] = {.lex_state = 188}, - [2041] = {.lex_state = 188}, - [2042] = {.lex_state = 265}, - [2043] = {.lex_state = 182}, + [2040] = {.lex_state = 252}, + [2041] = {.lex_state = 252}, + [2042] = {.lex_state = 182, .external_lex_state = 1}, + [2043] = {.lex_state = 282}, [2044] = {.lex_state = 182, .external_lex_state = 1}, - [2045] = {.lex_state = 182}, - [2046] = {.lex_state = 172, .external_lex_state = 1}, - [2047] = {.lex_state = 172}, - [2048] = {.lex_state = 172}, - [2049] = {.lex_state = 248}, - [2050] = {.lex_state = 172}, - [2051] = {.lex_state = 248}, - [2052] = {.lex_state = 248}, - [2053] = {.lex_state = 182, .external_lex_state = 1}, - [2054] = {.lex_state = 284}, - [2055] = {.lex_state = 182, .external_lex_state = 1}, - [2056] = {.lex_state = 189}, + [2045] = {.lex_state = 189}, + [2046] = {.lex_state = 172}, + [2047] = {.lex_state = 305, .external_lex_state = 1}, + [2048] = {.lex_state = 234, .external_lex_state = 1}, + [2049] = {.lex_state = 172}, + [2050] = {.lex_state = 234, .external_lex_state = 1}, + [2051] = {.lex_state = 172}, + [2052] = {.lex_state = 234, .external_lex_state = 1}, + [2053] = {.lex_state = 234, .external_lex_state = 1}, + [2054] = {.lex_state = 274, .external_lex_state = 1}, + [2055] = {.lex_state = 172}, + [2056] = {.lex_state = 182, .external_lex_state = 1}, [2057] = {.lex_state = 172}, - [2058] = {.lex_state = 307, .external_lex_state = 1}, - [2059] = {.lex_state = 234, .external_lex_state = 1}, - [2060] = {.lex_state = 172}, - [2061] = {.lex_state = 234, .external_lex_state = 1}, + [2058] = {.lex_state = 172}, + [2059] = {.lex_state = 247}, + [2060] = {.lex_state = 234, .external_lex_state = 1}, + [2061] = {.lex_state = 247}, [2062] = {.lex_state = 172}, [2063] = {.lex_state = 234, .external_lex_state = 1}, - [2064] = {.lex_state = 234, .external_lex_state = 1}, - [2065] = {.lex_state = 276, .external_lex_state = 1}, - [2066] = {.lex_state = 172}, - [2067] = {.lex_state = 182, .external_lex_state = 1}, - [2068] = {.lex_state = 172}, - [2069] = {.lex_state = 172}, - [2070] = {.lex_state = 235}, - [2071] = {.lex_state = 234, .external_lex_state = 1}, - [2072] = {.lex_state = 247}, - [2073] = {.lex_state = 172}, - [2074] = {.lex_state = 234, .external_lex_state = 1}, - [2075] = {.lex_state = 172, .external_lex_state = 1}, - [2076] = {.lex_state = 234, .external_lex_state = 1}, - [2077] = {.lex_state = 172, .external_lex_state = 1}, - [2078] = {.lex_state = 234, .external_lex_state = 1}, - [2079] = {.lex_state = 235}, + [2064] = {.lex_state = 172, .external_lex_state = 1}, + [2065] = {.lex_state = 234, .external_lex_state = 1}, + [2066] = {.lex_state = 172, .external_lex_state = 1}, + [2067] = {.lex_state = 234, .external_lex_state = 1}, + [2068] = {.lex_state = 247}, + [2069] = {.lex_state = 290}, + [2070] = {.lex_state = 172}, + [2071] = {.lex_state = 290}, + [2072] = {.lex_state = 265}, + [2073] = {.lex_state = 247}, + [2074] = {.lex_state = 290}, + [2075] = {.lex_state = 172}, + [2076] = {.lex_state = 290}, + [2077] = {.lex_state = 172}, + [2078] = {.lex_state = 290}, + [2079] = {.lex_state = 172}, [2080] = {.lex_state = 290}, - [2081] = {.lex_state = 172}, + [2081] = {.lex_state = 182, .external_lex_state = 1}, [2082] = {.lex_state = 290}, - [2083] = {.lex_state = 266}, + [2083] = {.lex_state = 182, .external_lex_state = 1}, [2084] = {.lex_state = 290}, - [2085] = {.lex_state = 172}, - [2086] = {.lex_state = 235}, - [2087] = {.lex_state = 290}, - [2088] = {.lex_state = 172}, - [2089] = {.lex_state = 290}, - [2090] = {.lex_state = 172}, - [2091] = {.lex_state = 290}, - [2092] = {.lex_state = 182, .external_lex_state = 1}, - [2093] = {.lex_state = 290}, + [2085] = {.lex_state = 289}, + [2086] = {.lex_state = 262}, + [2087] = {.lex_state = 261}, + [2088] = {.lex_state = 261}, + [2089] = {.lex_state = 289}, + [2090] = {.lex_state = 226}, + [2091] = {.lex_state = 289}, + [2092] = {.lex_state = 289}, + [2093] = {.lex_state = 172}, [2094] = {.lex_state = 182, .external_lex_state = 1}, - [2095] = {.lex_state = 290}, - [2096] = {.lex_state = 289}, - [2097] = {.lex_state = 264}, - [2098] = {.lex_state = 263}, - [2099] = {.lex_state = 263}, - [2100] = {.lex_state = 289}, - [2101] = {.lex_state = 226}, + [2095] = {.lex_state = 289}, + [2096] = {.lex_state = 182, .external_lex_state = 1}, + [2097] = {.lex_state = 289}, + [2098] = {.lex_state = 289}, + [2099] = {.lex_state = 172}, + [2100] = {.lex_state = 257, .external_lex_state = 1}, + [2101] = {.lex_state = 234, .external_lex_state = 1}, [2102] = {.lex_state = 289}, [2103] = {.lex_state = 289}, - [2104] = {.lex_state = 172}, - [2105] = {.lex_state = 182, .external_lex_state = 1}, - [2106] = {.lex_state = 289}, - [2107] = {.lex_state = 182, .external_lex_state = 1}, + [2104] = {.lex_state = 182}, + [2105] = {.lex_state = 182}, + [2106] = {.lex_state = 172}, + [2107] = {.lex_state = 172}, [2108] = {.lex_state = 289}, - [2109] = {.lex_state = 289}, - [2110] = {.lex_state = 172}, - [2111] = {.lex_state = 257, .external_lex_state = 1}, - [2112] = {.lex_state = 234, .external_lex_state = 1}, - [2113] = {.lex_state = 289}, + [2109] = {.lex_state = 172}, + [2110] = {.lex_state = 182}, + [2111] = {.lex_state = 289}, + [2112] = {.lex_state = 289}, + [2113] = {.lex_state = 172}, [2114] = {.lex_state = 289}, - [2115] = {.lex_state = 182}, - [2116] = {.lex_state = 182}, + [2115] = {.lex_state = 289}, + [2116] = {.lex_state = 172}, [2117] = {.lex_state = 172}, - [2118] = {.lex_state = 172}, + [2118] = {.lex_state = 182, .external_lex_state = 1}, [2119] = {.lex_state = 289}, - [2120] = {.lex_state = 172}, - [2121] = {.lex_state = 182}, - [2122] = {.lex_state = 289}, - [2123] = {.lex_state = 289}, - [2124] = {.lex_state = 172}, - [2125] = {.lex_state = 289}, - [2126] = {.lex_state = 289}, - [2127] = {.lex_state = 172}, - [2128] = {.lex_state = 172}, + [2120] = {.lex_state = 182, .external_lex_state = 1}, + [2121] = {.lex_state = 182, .external_lex_state = 1}, + [2122] = {.lex_state = 182, .external_lex_state = 1}, + [2123] = {.lex_state = 182, .external_lex_state = 1}, + [2124] = {.lex_state = 182, .external_lex_state = 1}, + [2125] = {.lex_state = 182, .external_lex_state = 1}, + [2126] = {.lex_state = 182, .external_lex_state = 1}, + [2127] = {.lex_state = 182, .external_lex_state = 1}, + [2128] = {.lex_state = 182, .external_lex_state = 1}, [2129] = {.lex_state = 182, .external_lex_state = 1}, - [2130] = {.lex_state = 289}, - [2131] = {.lex_state = 172}, + [2130] = {.lex_state = 182, .external_lex_state = 1}, + [2131] = {.lex_state = 289}, [2132] = {.lex_state = 289}, - [2133] = {.lex_state = 182, .external_lex_state = 1}, - [2134] = {.lex_state = 182, .external_lex_state = 1}, - [2135] = {.lex_state = 182, .external_lex_state = 1}, - [2136] = {.lex_state = 182, .external_lex_state = 1}, - [2137] = {.lex_state = 182, .external_lex_state = 1}, - [2138] = {.lex_state = 182, .external_lex_state = 1}, - [2139] = {.lex_state = 182, .external_lex_state = 1}, - [2140] = {.lex_state = 182, .external_lex_state = 1}, - [2141] = {.lex_state = 182, .external_lex_state = 1}, - [2142] = {.lex_state = 182, .external_lex_state = 1}, - [2143] = {.lex_state = 182, .external_lex_state = 1}, - [2144] = {.lex_state = 289}, - [2145] = {.lex_state = 289}, - [2146] = {.lex_state = 289}, - [2147] = {.lex_state = 182}, - [2148] = {.lex_state = 263}, - [2149] = {.lex_state = 235}, - [2150] = {.lex_state = 290}, - [2151] = {.lex_state = 172}, - [2152] = {.lex_state = 290}, + [2133] = {.lex_state = 289}, + [2134] = {.lex_state = 182}, + [2135] = {.lex_state = 289}, + [2136] = {.lex_state = 172}, + [2137] = {.lex_state = 261}, + [2138] = {.lex_state = 247}, + [2139] = {.lex_state = 290}, + [2140] = {.lex_state = 172}, + [2141] = {.lex_state = 247}, + [2142] = {.lex_state = 290}, + [2143] = {.lex_state = 172}, + [2144] = {.lex_state = 290}, + [2145] = {.lex_state = 290}, + [2146] = {.lex_state = 290}, + [2147] = {.lex_state = 290}, + [2148] = {.lex_state = 290}, + [2149] = {.lex_state = 257}, + [2150] = {.lex_state = 172}, + [2151] = {.lex_state = 290}, + [2152] = {.lex_state = 247}, [2153] = {.lex_state = 172}, - [2154] = {.lex_state = 235}, + [2154] = {.lex_state = 290}, [2155] = {.lex_state = 290}, - [2156] = {.lex_state = 290}, - [2157] = {.lex_state = 290}, + [2156] = {.lex_state = 272, .external_lex_state = 1}, + [2157] = {.lex_state = 182, .external_lex_state = 1}, [2158] = {.lex_state = 290}, [2159] = {.lex_state = 290}, - [2160] = {.lex_state = 257}, - [2161] = {.lex_state = 172}, + [2160] = {.lex_state = 290}, + [2161] = {.lex_state = 188, .external_lex_state = 1}, [2162] = {.lex_state = 290}, - [2163] = {.lex_state = 247}, - [2164] = {.lex_state = 172}, - [2165] = {.lex_state = 290}, + [2163] = {.lex_state = 172}, + [2164] = {.lex_state = 290}, + [2165] = {.lex_state = 172}, [2166] = {.lex_state = 290}, - [2167] = {.lex_state = 274, .external_lex_state = 1}, - [2168] = {.lex_state = 182, .external_lex_state = 1}, - [2169] = {.lex_state = 290}, - [2170] = {.lex_state = 290}, + [2167] = {.lex_state = 247}, + [2168] = {.lex_state = 290}, + [2169] = {.lex_state = 172}, + [2170] = {.lex_state = 247}, [2171] = {.lex_state = 290}, - [2172] = {.lex_state = 188, .external_lex_state = 1}, + [2172] = {.lex_state = 172}, [2173] = {.lex_state = 290}, - [2174] = {.lex_state = 172}, - [2175] = {.lex_state = 290}, - [2176] = {.lex_state = 172}, + [2174] = {.lex_state = 289}, + [2175] = {.lex_state = 262}, + [2176] = {.lex_state = 261}, [2177] = {.lex_state = 290}, - [2178] = {.lex_state = 235}, + [2178] = {.lex_state = 290}, [2179] = {.lex_state = 290}, - [2180] = {.lex_state = 172}, - [2181] = {.lex_state = 290}, - [2182] = {.lex_state = 172}, - [2183] = {.lex_state = 235}, - [2184] = {.lex_state = 290}, - [2185] = {.lex_state = 290}, + [2180] = {.lex_state = 290}, + [2181] = {.lex_state = 257}, + [2182] = {.lex_state = 290}, + [2183] = {.lex_state = 289}, + [2184] = {.lex_state = 289}, + [2185] = {.lex_state = 182}, [2186] = {.lex_state = 290}, - [2187] = {.lex_state = 289}, - [2188] = {.lex_state = 264}, - [2189] = {.lex_state = 263}, - [2190] = {.lex_state = 290}, + [2187] = {.lex_state = 290}, + [2188] = {.lex_state = 290}, + [2189] = {.lex_state = 290}, + [2190] = {.lex_state = 282}, [2191] = {.lex_state = 290}, - [2192] = {.lex_state = 290}, + [2192] = {.lex_state = 247}, [2193] = {.lex_state = 290}, - [2194] = {.lex_state = 257}, - [2195] = {.lex_state = 290}, - [2196] = {.lex_state = 289}, - [2197] = {.lex_state = 182}, - [2198] = {.lex_state = 289}, + [2194] = {.lex_state = 256}, + [2195] = {.lex_state = 257}, + [2196] = {.lex_state = 256}, + [2197] = {.lex_state = 172, .external_lex_state = 1}, + [2198] = {.lex_state = 290}, [2199] = {.lex_state = 290}, - [2200] = {.lex_state = 290}, + [2200] = {.lex_state = 257}, [2201] = {.lex_state = 290}, - [2202] = {.lex_state = 290}, - [2203] = {.lex_state = 284}, - [2204] = {.lex_state = 290}, - [2205] = {.lex_state = 235}, - [2206] = {.lex_state = 290}, - [2207] = {.lex_state = 255}, - [2208] = {.lex_state = 257}, - [2209] = {.lex_state = 255}, + [2202] = {.lex_state = 257}, + [2203] = {.lex_state = 290}, + [2204] = {.lex_state = 257}, + [2205] = {.lex_state = 172}, + [2206] = {.lex_state = 257}, + [2207] = {.lex_state = 257}, + [2208] = {.lex_state = 290}, + [2209] = {.lex_state = 290}, [2210] = {.lex_state = 290}, - [2211] = {.lex_state = 257}, - [2212] = {.lex_state = 290}, - [2213] = {.lex_state = 257}, - [2214] = {.lex_state = 172}, - [2215] = {.lex_state = 257}, - [2216] = {.lex_state = 290}, - [2217] = {.lex_state = 257}, - [2218] = {.lex_state = 257}, - [2219] = {.lex_state = 172, .external_lex_state = 1}, - [2220] = {.lex_state = 290}, - [2221] = {.lex_state = 290}, - [2222] = {.lex_state = 182, .external_lex_state = 1}, - [2223] = {.lex_state = 188, .external_lex_state = 1}, + [2211] = {.lex_state = 182, .external_lex_state = 1}, + [2212] = {.lex_state = 188, .external_lex_state = 1}, + [2213] = {.lex_state = 182, .external_lex_state = 1}, + [2214] = {.lex_state = 247}, + [2215] = {.lex_state = 188}, + [2216] = {.lex_state = 261}, + [2217] = {.lex_state = 182, .external_lex_state = 1}, + [2218] = {.lex_state = 182, .external_lex_state = 1}, + [2219] = {.lex_state = 189}, + [2220] = {.lex_state = 172}, + [2221] = {.lex_state = 189}, + [2222] = {.lex_state = 189}, + [2223] = {.lex_state = 172}, [2224] = {.lex_state = 182, .external_lex_state = 1}, - [2225] = {.lex_state = 247}, - [2226] = {.lex_state = 188}, - [2227] = {.lex_state = 263}, + [2225] = {.lex_state = 189}, + [2226] = {.lex_state = 182, .external_lex_state = 1}, + [2227] = {.lex_state = 182, .external_lex_state = 1}, [2228] = {.lex_state = 182, .external_lex_state = 1}, [2229] = {.lex_state = 182, .external_lex_state = 1}, - [2230] = {.lex_state = 189}, - [2231] = {.lex_state = 172}, - [2232] = {.lex_state = 189}, - [2233] = {.lex_state = 189}, - [2234] = {.lex_state = 172}, + [2230] = {.lex_state = 182, .external_lex_state = 1}, + [2231] = {.lex_state = 182, .external_lex_state = 1}, + [2232] = {.lex_state = 182, .external_lex_state = 1}, + [2233] = {.lex_state = 182, .external_lex_state = 1}, + [2234] = {.lex_state = 182, .external_lex_state = 1}, [2235] = {.lex_state = 182, .external_lex_state = 1}, - [2236] = {.lex_state = 189}, - [2237] = {.lex_state = 182, .external_lex_state = 1}, - [2238] = {.lex_state = 182, .external_lex_state = 1}, - [2239] = {.lex_state = 182, .external_lex_state = 1}, - [2240] = {.lex_state = 182, .external_lex_state = 1}, + [2236] = {.lex_state = 182, .external_lex_state = 1}, + [2237] = {.lex_state = 189}, + [2238] = {.lex_state = 261}, + [2239] = {.lex_state = 247}, + [2240] = {.lex_state = 247}, [2241] = {.lex_state = 182, .external_lex_state = 1}, - [2242] = {.lex_state = 182, .external_lex_state = 1}, - [2243] = {.lex_state = 182, .external_lex_state = 1}, - [2244] = {.lex_state = 182, .external_lex_state = 1}, - [2245] = {.lex_state = 182, .external_lex_state = 1}, - [2246] = {.lex_state = 182, .external_lex_state = 1}, - [2247] = {.lex_state = 182, .external_lex_state = 1}, - [2248] = {.lex_state = 189}, - [2249] = {.lex_state = 263}, + [2242] = {.lex_state = 247}, + [2243] = {.lex_state = 247}, + [2244] = {.lex_state = 247}, + [2245] = {.lex_state = 247}, + [2246] = {.lex_state = 253}, + [2247] = {.lex_state = 247}, + [2248] = {.lex_state = 172}, + [2249] = {.lex_state = 247}, [2250] = {.lex_state = 247}, [2251] = {.lex_state = 247}, - [2252] = {.lex_state = 182, .external_lex_state = 1}, + [2252] = {.lex_state = 247}, [2253] = {.lex_state = 247}, [2254] = {.lex_state = 247}, [2255] = {.lex_state = 247}, - [2256] = {.lex_state = 247}, - [2257] = {.lex_state = 252}, + [2256] = {.lex_state = 234, .external_lex_state = 1}, + [2257] = {.lex_state = 172}, [2258] = {.lex_state = 247}, - [2259] = {.lex_state = 172}, - [2260] = {.lex_state = 247}, - [2261] = {.lex_state = 247}, - [2262] = {.lex_state = 247}, - [2263] = {.lex_state = 247}, - [2264] = {.lex_state = 247}, - [2265] = {.lex_state = 235}, - [2266] = {.lex_state = 247}, - [2267] = {.lex_state = 234, .external_lex_state = 1}, - [2268] = {.lex_state = 172}, - [2269] = {.lex_state = 247}, - [2270] = {.lex_state = 172}, - [2271] = {.lex_state = 284}, - [2272] = {.lex_state = 247}, - [2273] = {.lex_state = 172}, - [2274] = {.lex_state = 189}, - [2275] = {.lex_state = 234, .external_lex_state = 1}, - [2276] = {.lex_state = 260, .external_lex_state = 1}, - [2277] = {.lex_state = 189}, - [2278] = {.lex_state = 260, .external_lex_state = 1}, - [2279] = {.lex_state = 260, .external_lex_state = 1}, - [2280] = {.lex_state = 276}, - [2281] = {.lex_state = 260, .external_lex_state = 1}, - [2282] = {.lex_state = 260, .external_lex_state = 1}, - [2283] = {.lex_state = 172}, - [2284] = {.lex_state = 260, .external_lex_state = 1}, - [2285] = {.lex_state = 172, .external_lex_state = 1}, - [2286] = {.lex_state = 260, .external_lex_state = 1}, - [2287] = {.lex_state = 276}, - [2288] = {.lex_state = 260, .external_lex_state = 1}, - [2289] = {.lex_state = 260, .external_lex_state = 1}, - [2290] = {.lex_state = 189}, - [2291] = {.lex_state = 172}, + [2259] = {.lex_state = 247}, + [2260] = {.lex_state = 172}, + [2261] = {.lex_state = 282}, + [2262] = {.lex_state = 172}, + [2263] = {.lex_state = 189}, + [2264] = {.lex_state = 234, .external_lex_state = 1}, + [2265] = {.lex_state = 258, .external_lex_state = 1}, + [2266] = {.lex_state = 189}, + [2267] = {.lex_state = 258, .external_lex_state = 1}, + [2268] = {.lex_state = 258, .external_lex_state = 1}, + [2269] = {.lex_state = 274}, + [2270] = {.lex_state = 258, .external_lex_state = 1}, + [2271] = {.lex_state = 258, .external_lex_state = 1}, + [2272] = {.lex_state = 188}, + [2273] = {.lex_state = 258, .external_lex_state = 1}, + [2274] = {.lex_state = 172, .external_lex_state = 1}, + [2275] = {.lex_state = 258, .external_lex_state = 1}, + [2276] = {.lex_state = 274}, + [2277] = {.lex_state = 258, .external_lex_state = 1}, + [2278] = {.lex_state = 258, .external_lex_state = 1}, + [2279] = {.lex_state = 189}, + [2280] = {.lex_state = 172}, + [2281] = {.lex_state = 172}, + [2282] = {.lex_state = 258, .external_lex_state = 1}, + [2283] = {.lex_state = 291, .external_lex_state = 1}, + [2284] = {.lex_state = 172}, + [2285] = {.lex_state = 172}, + [2286] = {.lex_state = 172}, + [2287] = {.lex_state = 234, .external_lex_state = 1}, + [2288] = {.lex_state = 291, .external_lex_state = 1}, + [2289] = {.lex_state = 258, .external_lex_state = 1}, + [2290] = {.lex_state = 172}, + [2291] = {.lex_state = 172, .external_lex_state = 1}, [2292] = {.lex_state = 172}, - [2293] = {.lex_state = 260, .external_lex_state = 1}, + [2293] = {.lex_state = 291, .external_lex_state = 1}, [2294] = {.lex_state = 291, .external_lex_state = 1}, - [2295] = {.lex_state = 172}, + [2295] = {.lex_state = 172, .external_lex_state = 1}, [2296] = {.lex_state = 172}, - [2297] = {.lex_state = 172}, - [2298] = {.lex_state = 234, .external_lex_state = 1}, + [2297] = {.lex_state = 189}, + [2298] = {.lex_state = 172}, [2299] = {.lex_state = 291, .external_lex_state = 1}, - [2300] = {.lex_state = 260, .external_lex_state = 1}, - [2301] = {.lex_state = 172}, - [2302] = {.lex_state = 172, .external_lex_state = 1}, - [2303] = {.lex_state = 172}, - [2304] = {.lex_state = 291, .external_lex_state = 1}, - [2305] = {.lex_state = 291, .external_lex_state = 1}, - [2306] = {.lex_state = 172, .external_lex_state = 1}, - [2307] = {.lex_state = 172}, - [2308] = {.lex_state = 189}, + [2300] = {.lex_state = 268}, + [2301] = {.lex_state = 258, .external_lex_state = 1}, + [2302] = {.lex_state = 172}, + [2303] = {.lex_state = 234, .external_lex_state = 1}, + [2304] = {.lex_state = 172}, + [2305] = {.lex_state = 274, .external_lex_state = 1}, + [2306] = {.lex_state = 291, .external_lex_state = 1}, + [2307] = {.lex_state = 226}, + [2308] = {.lex_state = 182, .external_lex_state = 1}, [2309] = {.lex_state = 172}, - [2310] = {.lex_state = 291, .external_lex_state = 1}, - [2311] = {.lex_state = 270}, - [2312] = {.lex_state = 260, .external_lex_state = 1}, - [2313] = {.lex_state = 172}, - [2314] = {.lex_state = 234, .external_lex_state = 1}, - [2315] = {.lex_state = 172}, - [2316] = {.lex_state = 276, .external_lex_state = 1}, - [2317] = {.lex_state = 291, .external_lex_state = 1}, - [2318] = {.lex_state = 226}, - [2319] = {.lex_state = 182, .external_lex_state = 1}, - [2320] = {.lex_state = 172}, - [2321] = {.lex_state = 172}, - [2322] = {.lex_state = 189}, - [2323] = {.lex_state = 172}, - [2324] = {.lex_state = 172}, - [2325] = {.lex_state = 291, .external_lex_state = 1}, - [2326] = {.lex_state = 247}, - [2327] = {.lex_state = 172}, - [2328] = {.lex_state = 286}, - [2329] = {.lex_state = 235}, - [2330] = {.lex_state = 172}, - [2331] = {.lex_state = 291, .external_lex_state = 1}, - [2332] = {.lex_state = 182}, - [2333] = {.lex_state = 291, .external_lex_state = 1}, - [2334] = {.lex_state = 291, .external_lex_state = 1}, - [2335] = {.lex_state = 291, .external_lex_state = 1}, - [2336] = {.lex_state = 182}, - [2337] = {.lex_state = 189}, - [2338] = {.lex_state = 172}, - [2339] = {.lex_state = 172}, - [2340] = {.lex_state = 260, .external_lex_state = 1}, - [2341] = {.lex_state = 260, .external_lex_state = 1}, - [2342] = {.lex_state = 276}, - [2343] = {.lex_state = 260, .external_lex_state = 1}, - [2344] = {.lex_state = 260, .external_lex_state = 1}, - [2345] = {.lex_state = 260, .external_lex_state = 1}, - [2346] = {.lex_state = 172}, - [2347] = {.lex_state = 260, .external_lex_state = 1}, - [2348] = {.lex_state = 234, .external_lex_state = 1}, - [2349] = {.lex_state = 247}, - [2350] = {.lex_state = 235}, - [2351] = {.lex_state = 260, .external_lex_state = 1}, - [2352] = {.lex_state = 226}, - [2353] = {.lex_state = 264}, - [2354] = {.lex_state = 182, .external_lex_state = 1}, - [2355] = {.lex_state = 172}, - [2356] = {.lex_state = 260, .external_lex_state = 1}, - [2357] = {.lex_state = 260, .external_lex_state = 1}, - [2358] = {.lex_state = 172}, - [2359] = {.lex_state = 189}, - [2360] = {.lex_state = 260, .external_lex_state = 1}, - [2361] = {.lex_state = 270}, - [2362] = {.lex_state = 260, .external_lex_state = 1}, - [2363] = {.lex_state = 203}, - [2364] = {.lex_state = 260, .external_lex_state = 1}, - [2365] = {.lex_state = 182}, + [2310] = {.lex_state = 172}, + [2311] = {.lex_state = 189}, + [2312] = {.lex_state = 172}, + [2313] = {.lex_state = 188}, + [2314] = {.lex_state = 291, .external_lex_state = 1}, + [2315] = {.lex_state = 247}, + [2316] = {.lex_state = 172}, + [2317] = {.lex_state = 285}, + [2318] = {.lex_state = 188}, + [2319] = {.lex_state = 172}, + [2320] = {.lex_state = 291, .external_lex_state = 1}, + [2321] = {.lex_state = 182}, + [2322] = {.lex_state = 247}, + [2323] = {.lex_state = 291, .external_lex_state = 1}, + [2324] = {.lex_state = 291, .external_lex_state = 1}, + [2325] = {.lex_state = 189}, + [2326] = {.lex_state = 172}, + [2327] = {.lex_state = 291, .external_lex_state = 1}, + [2328] = {.lex_state = 258, .external_lex_state = 1}, + [2329] = {.lex_state = 258, .external_lex_state = 1}, + [2330] = {.lex_state = 274}, + [2331] = {.lex_state = 258, .external_lex_state = 1}, + [2332] = {.lex_state = 258, .external_lex_state = 1}, + [2333] = {.lex_state = 258, .external_lex_state = 1}, + [2334] = {.lex_state = 172}, + [2335] = {.lex_state = 258, .external_lex_state = 1}, + [2336] = {.lex_state = 234, .external_lex_state = 1}, + [2337] = {.lex_state = 247}, + [2338] = {.lex_state = 247}, + [2339] = {.lex_state = 258, .external_lex_state = 1}, + [2340] = {.lex_state = 226}, + [2341] = {.lex_state = 262}, + [2342] = {.lex_state = 182, .external_lex_state = 1}, + [2343] = {.lex_state = 172}, + [2344] = {.lex_state = 258, .external_lex_state = 1}, + [2345] = {.lex_state = 258, .external_lex_state = 1}, + [2346] = {.lex_state = 189}, + [2347] = {.lex_state = 258, .external_lex_state = 1}, + [2348] = {.lex_state = 268}, + [2349] = {.lex_state = 258, .external_lex_state = 1}, + [2350] = {.lex_state = 203}, + [2351] = {.lex_state = 189}, + [2352] = {.lex_state = 172}, + [2353] = {.lex_state = 172}, + [2354] = {.lex_state = 172}, + [2355] = {.lex_state = 258, .external_lex_state = 1}, + [2356] = {.lex_state = 182}, + [2357] = {.lex_state = 172, .external_lex_state = 1}, + [2358] = {.lex_state = 258, .external_lex_state = 1}, + [2359] = {.lex_state = 258, .external_lex_state = 1}, + [2360] = {.lex_state = 172}, + [2361] = {.lex_state = 172, .external_lex_state = 1}, + [2362] = {.lex_state = 247}, + [2363] = {.lex_state = 256}, + [2364] = {.lex_state = 172}, + [2365] = {.lex_state = 172}, [2366] = {.lex_state = 172}, - [2367] = {.lex_state = 172}, - [2368] = {.lex_state = 172, .external_lex_state = 1}, + [2367] = {.lex_state = 188, .external_lex_state = 1}, + [2368] = {.lex_state = 182, .external_lex_state = 1}, [2369] = {.lex_state = 182, .external_lex_state = 1}, - [2370] = {.lex_state = 172}, - [2371] = {.lex_state = 172, .external_lex_state = 1}, - [2372] = {.lex_state = 260, .external_lex_state = 1}, - [2373] = {.lex_state = 260, .external_lex_state = 1}, - [2374] = {.lex_state = 172}, - [2375] = {.lex_state = 189}, - [2376] = {.lex_state = 172}, - [2377] = {.lex_state = 247}, - [2378] = {.lex_state = 255}, - [2379] = {.lex_state = 172}, - [2380] = {.lex_state = 172}, - [2381] = {.lex_state = 172}, - [2382] = {.lex_state = 188, .external_lex_state = 1}, - [2383] = {.lex_state = 182, .external_lex_state = 1}, - [2384] = {.lex_state = 182, .external_lex_state = 1}, - [2385] = {.lex_state = 261}, - [2386] = {.lex_state = 263}, - [2387] = {.lex_state = 261}, - [2388] = {.lex_state = 261}, - [2389] = {.lex_state = 182, .external_lex_state = 1}, - [2390] = {.lex_state = 261}, - [2391] = {.lex_state = 188, .external_lex_state = 1}, - [2392] = {.lex_state = 261}, - [2393] = {.lex_state = 261}, - [2394] = {.lex_state = 261}, - [2395] = {.lex_state = 261}, - [2396] = {.lex_state = 261}, - [2397] = {.lex_state = 261}, - [2398] = {.lex_state = 261}, - [2399] = {.lex_state = 261}, - [2400] = {.lex_state = 235}, + [2370] = {.lex_state = 259}, + [2371] = {.lex_state = 261}, + [2372] = {.lex_state = 259}, + [2373] = {.lex_state = 259}, + [2374] = {.lex_state = 182, .external_lex_state = 1}, + [2375] = {.lex_state = 259}, + [2376] = {.lex_state = 188, .external_lex_state = 1}, + [2377] = {.lex_state = 259}, + [2378] = {.lex_state = 259}, + [2379] = {.lex_state = 259}, + [2380] = {.lex_state = 259}, + [2381] = {.lex_state = 259}, + [2382] = {.lex_state = 259}, + [2383] = {.lex_state = 259}, + [2384] = {.lex_state = 259}, + [2385] = {.lex_state = 247}, + [2386] = {.lex_state = 259}, + [2387] = {.lex_state = 259}, + [2388] = {.lex_state = 306, .external_lex_state = 1}, + [2389] = {.lex_state = 282}, + [2390] = {.lex_state = 260}, + [2391] = {.lex_state = 182, .external_lex_state = 1}, + [2392] = {.lex_state = 172, .external_lex_state = 1}, + [2393] = {.lex_state = 272, .external_lex_state = 1}, + [2394] = {.lex_state = 247}, + [2395] = {.lex_state = 234, .external_lex_state = 1}, + [2396] = {.lex_state = 182, .external_lex_state = 1}, + [2397] = {.lex_state = 234, .external_lex_state = 1}, + [2398] = {.lex_state = 262}, + [2399] = {.lex_state = 188, .external_lex_state = 1}, + [2400] = {.lex_state = 182, .external_lex_state = 1}, [2401] = {.lex_state = 261}, - [2402] = {.lex_state = 261}, - [2403] = {.lex_state = 308, .external_lex_state = 1}, - [2404] = {.lex_state = 284}, - [2405] = {.lex_state = 262}, - [2406] = {.lex_state = 182, .external_lex_state = 1}, - [2407] = {.lex_state = 172, .external_lex_state = 1}, - [2408] = {.lex_state = 274, .external_lex_state = 1}, - [2409] = {.lex_state = 247}, - [2410] = {.lex_state = 234, .external_lex_state = 1}, - [2411] = {.lex_state = 182, .external_lex_state = 1}, - [2412] = {.lex_state = 234, .external_lex_state = 1}, - [2413] = {.lex_state = 264}, - [2414] = {.lex_state = 188, .external_lex_state = 1}, - [2415] = {.lex_state = 182, .external_lex_state = 1}, - [2416] = {.lex_state = 263}, - [2417] = {.lex_state = 182, .external_lex_state = 1}, - [2418] = {.lex_state = 263}, - [2419] = {.lex_state = 188, .external_lex_state = 1}, - [2420] = {.lex_state = 182, .external_lex_state = 1}, - [2421] = {.lex_state = 263}, - [2422] = {.lex_state = 263}, - [2423] = {.lex_state = 263}, - [2424] = {.lex_state = 263}, - [2425] = {.lex_state = 263}, - [2426] = {.lex_state = 263}, - [2427] = {.lex_state = 263}, - [2428] = {.lex_state = 263}, - [2429] = {.lex_state = 263}, - [2430] = {.lex_state = 263}, - [2431] = {.lex_state = 263}, - [2432] = {.lex_state = 235}, - [2433] = {.lex_state = 263}, - [2434] = {.lex_state = 263}, - [2435] = {.lex_state = 309, .external_lex_state = 1}, - [2436] = {.lex_state = 284}, - [2437] = {.lex_state = 264}, - [2438] = {.lex_state = 182, .external_lex_state = 1}, - [2439] = {.lex_state = 172}, - [2440] = {.lex_state = 264}, - [2441] = {.lex_state = 264}, - [2442] = {.lex_state = 263}, - [2443] = {.lex_state = 263}, + [2402] = {.lex_state = 182, .external_lex_state = 1}, + [2403] = {.lex_state = 261}, + [2404] = {.lex_state = 188, .external_lex_state = 1}, + [2405] = {.lex_state = 182, .external_lex_state = 1}, + [2406] = {.lex_state = 261}, + [2407] = {.lex_state = 261}, + [2408] = {.lex_state = 261}, + [2409] = {.lex_state = 261}, + [2410] = {.lex_state = 261}, + [2411] = {.lex_state = 261}, + [2412] = {.lex_state = 261}, + [2413] = {.lex_state = 261}, + [2414] = {.lex_state = 261}, + [2415] = {.lex_state = 261}, + [2416] = {.lex_state = 261}, + [2417] = {.lex_state = 247}, + [2418] = {.lex_state = 261}, + [2419] = {.lex_state = 261}, + [2420] = {.lex_state = 307, .external_lex_state = 1}, + [2421] = {.lex_state = 282}, + [2422] = {.lex_state = 262}, + [2423] = {.lex_state = 182, .external_lex_state = 1}, + [2424] = {.lex_state = 172}, + [2425] = {.lex_state = 262}, + [2426] = {.lex_state = 262}, + [2427] = {.lex_state = 261}, + [2428] = {.lex_state = 261}, + [2429] = {.lex_state = 172}, + [2430] = {.lex_state = 262}, + [2431] = {.lex_state = 262}, + [2432] = {.lex_state = 261}, + [2433] = {.lex_state = 261}, + [2434] = {.lex_state = 261}, + [2435] = {.lex_state = 172}, + [2436] = {.lex_state = 172}, + [2437] = {.lex_state = 172}, + [2438] = {.lex_state = 182}, + [2439] = {.lex_state = 182}, + [2440] = {.lex_state = 172}, + [2441] = {.lex_state = 172}, + [2442] = {.lex_state = 256}, + [2443] = {.lex_state = 189}, [2444] = {.lex_state = 172}, - [2445] = {.lex_state = 264}, - [2446] = {.lex_state = 264}, - [2447] = {.lex_state = 263}, - [2448] = {.lex_state = 263}, - [2449] = {.lex_state = 263}, - [2450] = {.lex_state = 172}, - [2451] = {.lex_state = 172}, - [2452] = {.lex_state = 172}, - [2453] = {.lex_state = 182}, - [2454] = {.lex_state = 172}, - [2455] = {.lex_state = 182}, - [2456] = {.lex_state = 172}, - [2457] = {.lex_state = 255}, - [2458] = {.lex_state = 189}, - [2459] = {.lex_state = 172}, + [2445] = {.lex_state = 172}, + [2446] = {.lex_state = 265}, + [2447] = {.lex_state = 265}, + [2448] = {.lex_state = 172}, + [2449] = {.lex_state = 308}, + [2450] = {.lex_state = 265}, + [2451] = {.lex_state = 203}, + [2452] = {.lex_state = 219}, + [2453] = {.lex_state = 172}, + [2454] = {.lex_state = 247}, + [2455] = {.lex_state = 172}, + [2456] = {.lex_state = 188}, + [2457] = {.lex_state = 172}, + [2458] = {.lex_state = 182}, + [2459] = {.lex_state = 219}, [2460] = {.lex_state = 172}, - [2461] = {.lex_state = 266}, - [2462] = {.lex_state = 266}, - [2463] = {.lex_state = 172}, - [2464] = {.lex_state = 310}, - [2465] = {.lex_state = 266}, - [2466] = {.lex_state = 203}, - [2467] = {.lex_state = 219}, - [2468] = {.lex_state = 172}, - [2469] = {.lex_state = 235}, - [2470] = {.lex_state = 172}, - [2471] = {.lex_state = 172}, - [2472] = {.lex_state = 172}, - [2473] = {.lex_state = 182}, - [2474] = {.lex_state = 219}, + [2461] = {.lex_state = 172}, + [2462] = {.lex_state = 300}, + [2463] = {.lex_state = 249}, + [2464] = {.lex_state = 247}, + [2465] = {.lex_state = 274}, + [2466] = {.lex_state = 188}, + [2467] = {.lex_state = 172}, + [2468] = {.lex_state = 189}, + [2469] = {.lex_state = 249}, + [2470] = {.lex_state = 265}, + [2471] = {.lex_state = 300}, + [2472] = {.lex_state = 274}, + [2473] = {.lex_state = 265}, + [2474] = {.lex_state = 182, .external_lex_state = 1}, [2475] = {.lex_state = 172}, - [2476] = {.lex_state = 172}, - [2477] = {.lex_state = 247}, - [2478] = {.lex_state = 294}, - [2479] = {.lex_state = 172}, - [2480] = {.lex_state = 302}, - [2481] = {.lex_state = 276}, - [2482] = {.lex_state = 172}, - [2483] = {.lex_state = 189}, - [2484] = {.lex_state = 247}, - [2485] = {.lex_state = 266}, - [2486] = {.lex_state = 302}, - [2487] = {.lex_state = 276}, - [2488] = {.lex_state = 266}, - [2489] = {.lex_state = 182, .external_lex_state = 1}, - [2490] = {.lex_state = 294}, + [2476] = {.lex_state = 247}, + [2477] = {.lex_state = 265}, + [2478] = {.lex_state = 265}, + [2479] = {.lex_state = 188}, + [2480] = {.lex_state = 189}, + [2481] = {.lex_state = 172}, + [2482] = {.lex_state = 265}, + [2483] = {.lex_state = 249}, + [2484] = {.lex_state = 268}, + [2485] = {.lex_state = 265}, + [2486] = {.lex_state = 203}, + [2487] = {.lex_state = 172}, + [2488] = {.lex_state = 247}, + [2489] = {.lex_state = 249}, + [2490] = {.lex_state = 247}, [2491] = {.lex_state = 172}, - [2492] = {.lex_state = 266}, - [2493] = {.lex_state = 172}, - [2494] = {.lex_state = 266}, - [2495] = {.lex_state = 189}, + [2492] = {.lex_state = 172}, + [2493] = {.lex_state = 182}, + [2494] = {.lex_state = 261}, + [2495] = {.lex_state = 247}, [2496] = {.lex_state = 172}, - [2497] = {.lex_state = 266}, - [2498] = {.lex_state = 172}, - [2499] = {.lex_state = 270}, - [2500] = {.lex_state = 266}, - [2501] = {.lex_state = 203}, - [2502] = {.lex_state = 247}, - [2503] = {.lex_state = 172}, - [2504] = {.lex_state = 294}, + [2497] = {.lex_state = 247}, + [2498] = {.lex_state = 247}, + [2499] = {.lex_state = 247}, + [2500] = {.lex_state = 182, .external_lex_state = 1}, + [2501] = {.lex_state = 182, .external_lex_state = 1}, + [2502] = {.lex_state = 172}, + [2503] = {.lex_state = 172, .external_lex_state = 1}, + [2504] = {.lex_state = 265}, [2505] = {.lex_state = 247}, - [2506] = {.lex_state = 266}, - [2507] = {.lex_state = 182}, + [2506] = {.lex_state = 247}, + [2507] = {.lex_state = 249}, [2508] = {.lex_state = 172}, [2509] = {.lex_state = 172}, - [2510] = {.lex_state = 263}, - [2511] = {.lex_state = 182}, - [2512] = {.lex_state = 294}, - [2513] = {.lex_state = 172}, - [2514] = {.lex_state = 294}, - [2515] = {.lex_state = 247}, - [2516] = {.lex_state = 247}, - [2517] = {.lex_state = 182, .external_lex_state = 1}, - [2518] = {.lex_state = 182, .external_lex_state = 1}, - [2519] = {.lex_state = 172}, - [2520] = {.lex_state = 172, .external_lex_state = 1}, - [2521] = {.lex_state = 266}, - [2522] = {.lex_state = 294}, - [2523] = {.lex_state = 294}, - [2524] = {.lex_state = 172}, - [2525] = {.lex_state = 172}, - [2526] = {.lex_state = 266}, - [2527] = {.lex_state = 172, .external_lex_state = 1}, - [2528] = {.lex_state = 247}, - [2529] = {.lex_state = 294}, - [2530] = {.lex_state = 247}, - [2531] = {.lex_state = 255}, - [2532] = {.lex_state = 247}, - [2533] = {.lex_state = 247}, + [2510] = {.lex_state = 265}, + [2511] = {.lex_state = 172, .external_lex_state = 1}, + [2512] = {.lex_state = 265}, + [2513] = {.lex_state = 249}, + [2514] = {.lex_state = 249}, + [2515] = {.lex_state = 182}, + [2516] = {.lex_state = 256}, + [2517] = {.lex_state = 247}, + [2518] = {.lex_state = 247}, + [2519] = {.lex_state = 247}, + [2520] = {.lex_state = 247}, + [2521] = {.lex_state = 247}, + [2522] = {.lex_state = 247}, + [2523] = {.lex_state = 189}, + [2524] = {.lex_state = 189}, + [2525] = {.lex_state = 172, .external_lex_state = 1}, + [2526] = {.lex_state = 172, .external_lex_state = 1}, + [2527] = {.lex_state = 271}, + [2528] = {.lex_state = 271}, + [2529] = {.lex_state = 247}, + [2530] = {.lex_state = 271}, + [2531] = {.lex_state = 172}, + [2532] = {.lex_state = 271}, + [2533] = {.lex_state = 265}, [2534] = {.lex_state = 247}, - [2535] = {.lex_state = 189}, - [2536] = {.lex_state = 247}, - [2537] = {.lex_state = 189}, - [2538] = {.lex_state = 172, .external_lex_state = 1}, - [2539] = {.lex_state = 247}, + [2535] = {.lex_state = 271}, + [2536] = {.lex_state = 172}, + [2537] = {.lex_state = 247}, + [2538] = {.lex_state = 271}, + [2539] = {.lex_state = 172}, [2540] = {.lex_state = 247}, - [2541] = {.lex_state = 172, .external_lex_state = 1}, - [2542] = {.lex_state = 273}, - [2543] = {.lex_state = 273}, - [2544] = {.lex_state = 235}, - [2545] = {.lex_state = 273}, + [2541] = {.lex_state = 271}, + [2542] = {.lex_state = 172}, + [2543] = {.lex_state = 288}, + [2544] = {.lex_state = 172}, + [2545] = {.lex_state = 271}, [2546] = {.lex_state = 172}, - [2547] = {.lex_state = 273}, - [2548] = {.lex_state = 266}, - [2549] = {.lex_state = 273}, + [2547] = {.lex_state = 271}, + [2548] = {.lex_state = 247}, + [2549] = {.lex_state = 271}, [2550] = {.lex_state = 172}, - [2551] = {.lex_state = 235}, - [2552] = {.lex_state = 235}, - [2553] = {.lex_state = 273}, - [2554] = {.lex_state = 172}, - [2555] = {.lex_state = 273}, - [2556] = {.lex_state = 172}, - [2557] = {.lex_state = 235}, - [2558] = {.lex_state = 288}, - [2559] = {.lex_state = 172}, - [2560] = {.lex_state = 273}, - [2561] = {.lex_state = 172}, - [2562] = {.lex_state = 273}, - [2563] = {.lex_state = 235}, - [2564] = {.lex_state = 273}, - [2565] = {.lex_state = 172}, - [2566] = {.lex_state = 273}, + [2551] = {.lex_state = 247}, + [2552] = {.lex_state = 271}, + [2553] = {.lex_state = 172}, + [2554] = {.lex_state = 282}, + [2555] = {.lex_state = 271}, + [2556] = {.lex_state = 271}, + [2557] = {.lex_state = 288}, + [2558] = {.lex_state = 189}, + [2559] = {.lex_state = 188, .external_lex_state = 1}, + [2560] = {.lex_state = 310, .external_lex_state = 1}, + [2561] = {.lex_state = 288}, + [2562] = {.lex_state = 257}, + [2563] = {.lex_state = 288}, + [2564] = {.lex_state = 257}, + [2565] = {.lex_state = 271}, + [2566] = {.lex_state = 234, .external_lex_state = 1}, [2567] = {.lex_state = 172}, - [2568] = {.lex_state = 235}, - [2569] = {.lex_state = 288}, - [2570] = {.lex_state = 284}, - [2571] = {.lex_state = 273}, - [2572] = {.lex_state = 273}, - [2573] = {.lex_state = 189}, - [2574] = {.lex_state = 188, .external_lex_state = 1}, - [2575] = {.lex_state = 312, .external_lex_state = 1}, - [2576] = {.lex_state = 288}, - [2577] = {.lex_state = 257}, - [2578] = {.lex_state = 288}, - [2579] = {.lex_state = 257}, - [2580] = {.lex_state = 273}, - [2581] = {.lex_state = 234, .external_lex_state = 1}, - [2582] = {.lex_state = 172}, - [2583] = {.lex_state = 182, .external_lex_state = 1}, - [2584] = {.lex_state = 172}, - [2585] = {.lex_state = 188}, - [2586] = {.lex_state = 188}, - [2587] = {.lex_state = 182}, - [2588] = {.lex_state = 273}, - [2589] = {.lex_state = 172, .external_lex_state = 1}, - [2590] = {.lex_state = 255}, - [2591] = {.lex_state = 255}, - [2592] = {.lex_state = 264}, - [2593] = {.lex_state = 263}, - [2594] = {.lex_state = 288}, - [2595] = {.lex_state = 263}, - [2596] = {.lex_state = 252}, - [2597] = {.lex_state = 263}, + [2568] = {.lex_state = 182, .external_lex_state = 1}, + [2569] = {.lex_state = 172}, + [2570] = {.lex_state = 188}, + [2571] = {.lex_state = 188}, + [2572] = {.lex_state = 182}, + [2573] = {.lex_state = 271}, + [2574] = {.lex_state = 172, .external_lex_state = 1}, + [2575] = {.lex_state = 256}, + [2576] = {.lex_state = 256}, + [2577] = {.lex_state = 262}, + [2578] = {.lex_state = 261}, + [2579] = {.lex_state = 288}, + [2580] = {.lex_state = 261}, + [2581] = {.lex_state = 253}, + [2582] = {.lex_state = 261}, + [2583] = {.lex_state = 247}, + [2584] = {.lex_state = 253}, + [2585] = {.lex_state = 172, .external_lex_state = 1}, + [2586] = {.lex_state = 235}, + [2587] = {.lex_state = 234, .external_lex_state = 1}, + [2588] = {.lex_state = 262}, + [2589] = {.lex_state = 272, .external_lex_state = 1}, + [2590] = {.lex_state = 247}, + [2591] = {.lex_state = 189}, + [2592] = {.lex_state = 172}, + [2593] = {.lex_state = 262}, + [2594] = {.lex_state = 247}, + [2595] = {.lex_state = 188}, + [2596] = {.lex_state = 247}, + [2597] = {.lex_state = 234, .external_lex_state = 1}, [2598] = {.lex_state = 247}, - [2599] = {.lex_state = 252}, - [2600] = {.lex_state = 172, .external_lex_state = 1}, - [2601] = {.lex_state = 247}, - [2602] = {.lex_state = 234, .external_lex_state = 1}, - [2603] = {.lex_state = 264}, - [2604] = {.lex_state = 274, .external_lex_state = 1}, - [2605] = {.lex_state = 247}, - [2606] = {.lex_state = 247}, - [2607] = {.lex_state = 294}, - [2608] = {.lex_state = 172}, - [2609] = {.lex_state = 294}, - [2610] = {.lex_state = 234, .external_lex_state = 1}, - [2611] = {.lex_state = 294}, - [2612] = {.lex_state = 172}, - [2613] = {.lex_state = 189}, - [2614] = {.lex_state = 172}, - [2615] = {.lex_state = 264}, - [2616] = {.lex_state = 284}, - [2617] = {.lex_state = 284}, - [2618] = {.lex_state = 188, .external_lex_state = 1}, - [2619] = {.lex_state = 283}, - [2620] = {.lex_state = 182, .external_lex_state = 1}, - [2621] = {.lex_state = 283}, - [2622] = {.lex_state = 283}, - [2623] = {.lex_state = 182, .external_lex_state = 1}, - [2624] = {.lex_state = 283}, - [2625] = {.lex_state = 263}, - [2626] = {.lex_state = 283}, - [2627] = {.lex_state = 283}, - [2628] = {.lex_state = 283}, - [2629] = {.lex_state = 283}, - [2630] = {.lex_state = 290}, - [2631] = {.lex_state = 257}, - [2632] = {.lex_state = 172}, - [2633] = {.lex_state = 283}, - [2634] = {.lex_state = 247}, - [2635] = {.lex_state = 172}, - [2636] = {.lex_state = 283}, - [2637] = {.lex_state = 266}, - [2638] = {.lex_state = 235}, - [2639] = {.lex_state = 283}, - [2640] = {.lex_state = 283}, - [2641] = {.lex_state = 306}, - [2642] = {.lex_state = 172}, - [2643] = {.lex_state = 283}, - [2644] = {.lex_state = 235}, - [2645] = {.lex_state = 283}, - [2646] = {.lex_state = 283}, - [2647] = {.lex_state = 306}, - [2648] = {.lex_state = 172}, - [2649] = {.lex_state = 283}, - [2650] = {.lex_state = 283}, - [2651] = {.lex_state = 172}, - [2652] = {.lex_state = 283}, - [2653] = {.lex_state = 172}, - [2654] = {.lex_state = 283}, - [2655] = {.lex_state = 283}, - [2656] = {.lex_state = 283}, - [2657] = {.lex_state = 235}, - [2658] = {.lex_state = 283}, - [2659] = {.lex_state = 283}, - [2660] = {.lex_state = 306}, - [2661] = {.lex_state = 172}, - [2662] = {.lex_state = 172}, - [2663] = {.lex_state = 283}, - [2664] = {.lex_state = 283}, - [2665] = {.lex_state = 283}, - [2666] = {.lex_state = 283}, - [2667] = {.lex_state = 182, .external_lex_state = 1}, - [2668] = {.lex_state = 283}, - [2669] = {.lex_state = 283}, - [2670] = {.lex_state = 283}, - [2671] = {.lex_state = 283}, - [2672] = {.lex_state = 188, .external_lex_state = 1}, - [2673] = {.lex_state = 283}, - [2674] = {.lex_state = 283}, - [2675] = {.lex_state = 283}, - [2676] = {.lex_state = 283}, - [2677] = {.lex_state = 283}, - [2678] = {.lex_state = 283}, - [2679] = {.lex_state = 283}, - [2680] = {.lex_state = 283}, - [2681] = {.lex_state = 283}, - [2682] = {.lex_state = 283}, - [2683] = {.lex_state = 283}, - [2684] = {.lex_state = 235}, - [2685] = {.lex_state = 283}, - [2686] = {.lex_state = 283}, - [2687] = {.lex_state = 172, .external_lex_state = 1}, - [2688] = {.lex_state = 283}, - [2689] = {.lex_state = 313, .external_lex_state = 1}, - [2690] = {.lex_state = 284}, - [2691] = {.lex_state = 257}, - [2692] = {.lex_state = 284}, - [2693] = {.lex_state = 257}, - [2694] = {.lex_state = 284}, - [2695] = {.lex_state = 234, .external_lex_state = 1}, - [2696] = {.lex_state = 172}, - [2697] = {.lex_state = 235}, - [2698] = {.lex_state = 304}, + [2599] = {.lex_state = 172}, + [2600] = {.lex_state = 235}, + [2601] = {.lex_state = 282}, + [2602] = {.lex_state = 282}, + [2603] = {.lex_state = 188, .external_lex_state = 1}, + [2604] = {.lex_state = 281}, + [2605] = {.lex_state = 182, .external_lex_state = 1}, + [2606] = {.lex_state = 281}, + [2607] = {.lex_state = 281}, + [2608] = {.lex_state = 182, .external_lex_state = 1}, + [2609] = {.lex_state = 281}, + [2610] = {.lex_state = 261}, + [2611] = {.lex_state = 281}, + [2612] = {.lex_state = 281}, + [2613] = {.lex_state = 281}, + [2614] = {.lex_state = 281}, + [2615] = {.lex_state = 290}, + [2616] = {.lex_state = 257}, + [2617] = {.lex_state = 172}, + [2618] = {.lex_state = 281}, + [2619] = {.lex_state = 247}, + [2620] = {.lex_state = 172}, + [2621] = {.lex_state = 281}, + [2622] = {.lex_state = 265}, + [2623] = {.lex_state = 304}, + [2624] = {.lex_state = 247}, + [2625] = {.lex_state = 281}, + [2626] = {.lex_state = 281}, + [2627] = {.lex_state = 172}, + [2628] = {.lex_state = 281}, + [2629] = {.lex_state = 304}, + [2630] = {.lex_state = 247}, + [2631] = {.lex_state = 281}, + [2632] = {.lex_state = 281}, + [2633] = {.lex_state = 172}, + [2634] = {.lex_state = 281}, + [2635] = {.lex_state = 281}, + [2636] = {.lex_state = 172}, + [2637] = {.lex_state = 281}, + [2638] = {.lex_state = 172}, + [2639] = {.lex_state = 281}, + [2640] = {.lex_state = 281}, + [2641] = {.lex_state = 281}, + [2642] = {.lex_state = 304}, + [2643] = {.lex_state = 247}, + [2644] = {.lex_state = 281}, + [2645] = {.lex_state = 281}, + [2646] = {.lex_state = 172}, + [2647] = {.lex_state = 281}, + [2648] = {.lex_state = 281}, + [2649] = {.lex_state = 281}, + [2650] = {.lex_state = 182, .external_lex_state = 1}, + [2651] = {.lex_state = 281}, + [2652] = {.lex_state = 281}, + [2653] = {.lex_state = 281}, + [2654] = {.lex_state = 281}, + [2655] = {.lex_state = 172}, + [2656] = {.lex_state = 281}, + [2657] = {.lex_state = 188, .external_lex_state = 1}, + [2658] = {.lex_state = 281}, + [2659] = {.lex_state = 281}, + [2660] = {.lex_state = 281}, + [2661] = {.lex_state = 281}, + [2662] = {.lex_state = 281}, + [2663] = {.lex_state = 281}, + [2664] = {.lex_state = 281}, + [2665] = {.lex_state = 281}, + [2666] = {.lex_state = 281}, + [2667] = {.lex_state = 247}, + [2668] = {.lex_state = 281}, + [2669] = {.lex_state = 172, .external_lex_state = 1}, + [2670] = {.lex_state = 281}, + [2671] = {.lex_state = 281}, + [2672] = {.lex_state = 281}, + [2673] = {.lex_state = 281}, + [2674] = {.lex_state = 311, .external_lex_state = 1}, + [2675] = {.lex_state = 282}, + [2676] = {.lex_state = 257}, + [2677] = {.lex_state = 282}, + [2678] = {.lex_state = 257}, + [2679] = {.lex_state = 282}, + [2680] = {.lex_state = 234, .external_lex_state = 1}, + [2681] = {.lex_state = 172}, + [2682] = {.lex_state = 247}, + [2683] = {.lex_state = 303}, + [2684] = {.lex_state = 172}, + [2685] = {.lex_state = 303}, + [2686] = {.lex_state = 265}, + [2687] = {.lex_state = 247}, + [2688] = {.lex_state = 303}, + [2689] = {.lex_state = 172}, + [2690] = {.lex_state = 247}, + [2691] = {.lex_state = 303}, + [2692] = {.lex_state = 172}, + [2693] = {.lex_state = 247}, + [2694] = {.lex_state = 303}, + [2695] = {.lex_state = 172}, + [2696] = {.lex_state = 282}, + [2697] = {.lex_state = 172}, + [2698] = {.lex_state = 303}, [2699] = {.lex_state = 172}, - [2700] = {.lex_state = 304}, - [2701] = {.lex_state = 266}, - [2702] = {.lex_state = 304}, + [2700] = {.lex_state = 303}, + [2701] = {.lex_state = 247}, + [2702] = {.lex_state = 303}, [2703] = {.lex_state = 172}, - [2704] = {.lex_state = 235}, - [2705] = {.lex_state = 235}, - [2706] = {.lex_state = 304}, - [2707] = {.lex_state = 172}, - [2708] = {.lex_state = 304}, - [2709] = {.lex_state = 172}, - [2710] = {.lex_state = 235}, - [2711] = {.lex_state = 284}, - [2712] = {.lex_state = 172}, - [2713] = {.lex_state = 304}, - [2714] = {.lex_state = 172}, + [2704] = {.lex_state = 247}, + [2705] = {.lex_state = 303}, + [2706] = {.lex_state = 172}, + [2707] = {.lex_state = 282}, + [2708] = {.lex_state = 262}, + [2709] = {.lex_state = 261}, + [2710] = {.lex_state = 282}, + [2711] = {.lex_state = 282}, + [2712] = {.lex_state = 282}, + [2713] = {.lex_state = 282}, + [2714] = {.lex_state = 282}, [2715] = {.lex_state = 304}, - [2716] = {.lex_state = 235}, - [2717] = {.lex_state = 304}, - [2718] = {.lex_state = 172}, - [2719] = {.lex_state = 304}, - [2720] = {.lex_state = 172}, - [2721] = {.lex_state = 235}, - [2722] = {.lex_state = 284}, - [2723] = {.lex_state = 284}, - [2724] = {.lex_state = 264}, - [2725] = {.lex_state = 263}, - [2726] = {.lex_state = 284}, - [2727] = {.lex_state = 284}, - [2728] = {.lex_state = 284}, - [2729] = {.lex_state = 284}, - [2730] = {.lex_state = 306}, - [2731] = {.lex_state = 263}, - [2732] = {.lex_state = 283}, - [2733] = {.lex_state = 283}, - [2734] = {.lex_state = 283}, - [2735] = {.lex_state = 182, .external_lex_state = 1}, - [2736] = {.lex_state = 284}, - [2737] = {.lex_state = 172, .external_lex_state = 1}, - [2738] = {.lex_state = 255}, - [2739] = {.lex_state = 255}, + [2716] = {.lex_state = 261}, + [2717] = {.lex_state = 281}, + [2718] = {.lex_state = 281}, + [2719] = {.lex_state = 281}, + [2720] = {.lex_state = 182, .external_lex_state = 1}, + [2721] = {.lex_state = 282}, + [2722] = {.lex_state = 172, .external_lex_state = 1}, + [2723] = {.lex_state = 256}, + [2724] = {.lex_state = 256}, + [2725] = {.lex_state = 182, .external_lex_state = 1}, + [2726] = {.lex_state = 182, .external_lex_state = 1}, + [2727] = {.lex_state = 262}, + [2728] = {.lex_state = 261}, + [2729] = {.lex_state = 182, .external_lex_state = 1}, + [2730] = {.lex_state = 182, .external_lex_state = 1}, + [2731] = {.lex_state = 261}, + [2732] = {.lex_state = 172}, + [2733] = {.lex_state = 261}, + [2734] = {.lex_state = 261}, + [2735] = {.lex_state = 172}, + [2736] = {.lex_state = 182, .external_lex_state = 1}, + [2737] = {.lex_state = 261}, + [2738] = {.lex_state = 182, .external_lex_state = 1}, + [2739] = {.lex_state = 182, .external_lex_state = 1}, [2740] = {.lex_state = 182, .external_lex_state = 1}, [2741] = {.lex_state = 182, .external_lex_state = 1}, - [2742] = {.lex_state = 264}, - [2743] = {.lex_state = 263}, + [2742] = {.lex_state = 182, .external_lex_state = 1}, + [2743] = {.lex_state = 182, .external_lex_state = 1}, [2744] = {.lex_state = 182, .external_lex_state = 1}, [2745] = {.lex_state = 182, .external_lex_state = 1}, - [2746] = {.lex_state = 263}, - [2747] = {.lex_state = 172}, - [2748] = {.lex_state = 263}, - [2749] = {.lex_state = 263}, - [2750] = {.lex_state = 172}, - [2751] = {.lex_state = 182, .external_lex_state = 1}, - [2752] = {.lex_state = 263}, + [2746] = {.lex_state = 182, .external_lex_state = 1}, + [2747] = {.lex_state = 182, .external_lex_state = 1}, + [2748] = {.lex_state = 182, .external_lex_state = 1}, + [2749] = {.lex_state = 261}, + [2750] = {.lex_state = 261}, + [2751] = {.lex_state = 262}, + [2752] = {.lex_state = 262}, [2753] = {.lex_state = 182, .external_lex_state = 1}, - [2754] = {.lex_state = 182, .external_lex_state = 1}, - [2755] = {.lex_state = 182, .external_lex_state = 1}, - [2756] = {.lex_state = 182, .external_lex_state = 1}, - [2757] = {.lex_state = 182, .external_lex_state = 1}, - [2758] = {.lex_state = 182, .external_lex_state = 1}, - [2759] = {.lex_state = 182, .external_lex_state = 1}, - [2760] = {.lex_state = 182, .external_lex_state = 1}, - [2761] = {.lex_state = 182, .external_lex_state = 1}, - [2762] = {.lex_state = 182, .external_lex_state = 1}, - [2763] = {.lex_state = 182, .external_lex_state = 1}, - [2764] = {.lex_state = 263}, - [2765] = {.lex_state = 263}, - [2766] = {.lex_state = 264}, - [2767] = {.lex_state = 264}, - [2768] = {.lex_state = 182, .external_lex_state = 1}, - [2769] = {.lex_state = 264}, - [2770] = {.lex_state = 188, .external_lex_state = 1}, - [2771] = {.lex_state = 264}, - [2772] = {.lex_state = 264}, - [2773] = {.lex_state = 264}, - [2774] = {.lex_state = 264}, - [2775] = {.lex_state = 264}, - [2776] = {.lex_state = 264}, - [2777] = {.lex_state = 264}, - [2778] = {.lex_state = 264}, - [2779] = {.lex_state = 235}, - [2780] = {.lex_state = 264}, - [2781] = {.lex_state = 189}, - [2782] = {.lex_state = 172}, - [2783] = {.lex_state = 172}, + [2754] = {.lex_state = 262}, + [2755] = {.lex_state = 188, .external_lex_state = 1}, + [2756] = {.lex_state = 262}, + [2757] = {.lex_state = 262}, + [2758] = {.lex_state = 262}, + [2759] = {.lex_state = 262}, + [2760] = {.lex_state = 262}, + [2761] = {.lex_state = 262}, + [2762] = {.lex_state = 262}, + [2763] = {.lex_state = 262}, + [2764] = {.lex_state = 247}, + [2765] = {.lex_state = 262}, + [2766] = {.lex_state = 189}, + [2767] = {.lex_state = 172}, + [2768] = {.lex_state = 172}, + [2769] = {.lex_state = 172}, + [2770] = {.lex_state = 172}, + [2771] = {.lex_state = 172, .external_lex_state = 1}, + [2772] = {.lex_state = 262}, + [2773] = {.lex_state = 234, .external_lex_state = 1}, + [2774] = {.lex_state = 172}, + [2775] = {.lex_state = 234, .external_lex_state = 1}, + [2776] = {.lex_state = 272, .external_lex_state = 1}, + [2777] = {.lex_state = 247}, + [2778] = {.lex_state = 234, .external_lex_state = 1}, + [2779] = {.lex_state = 182, .external_lex_state = 1}, + [2780] = {.lex_state = 172}, + [2781] = {.lex_state = 172}, + [2782] = {.lex_state = 234, .external_lex_state = 1}, + [2783] = {.lex_state = 262}, [2784] = {.lex_state = 172}, - [2785] = {.lex_state = 172}, - [2786] = {.lex_state = 172, .external_lex_state = 1}, - [2787] = {.lex_state = 264}, - [2788] = {.lex_state = 234, .external_lex_state = 1}, - [2789] = {.lex_state = 172}, - [2790] = {.lex_state = 234, .external_lex_state = 1}, - [2791] = {.lex_state = 274, .external_lex_state = 1}, - [2792] = {.lex_state = 247}, - [2793] = {.lex_state = 234, .external_lex_state = 1}, - [2794] = {.lex_state = 182, .external_lex_state = 1}, - [2795] = {.lex_state = 172}, - [2796] = {.lex_state = 172}, - [2797] = {.lex_state = 234, .external_lex_state = 1}, - [2798] = {.lex_state = 264}, - [2799] = {.lex_state = 172}, - [2800] = {.lex_state = 264}, - [2801] = {.lex_state = 263}, - [2802] = {.lex_state = 257}, - [2803] = {.lex_state = 172}, - [2804] = {.lex_state = 290}, - [2805] = {.lex_state = 290}, + [2785] = {.lex_state = 262}, + [2786] = {.lex_state = 261}, + [2787] = {.lex_state = 257}, + [2788] = {.lex_state = 172}, + [2789] = {.lex_state = 290}, + [2790] = {.lex_state = 290}, + [2791] = {.lex_state = 257}, + [2792] = {.lex_state = 172}, + [2793] = {.lex_state = 257}, + [2794] = {.lex_state = 290}, + [2795] = {.lex_state = 290}, + [2796] = {.lex_state = 290}, + [2797] = {.lex_state = 290}, + [2798] = {.lex_state = 290}, + [2799] = {.lex_state = 257}, + [2800] = {.lex_state = 257}, + [2801] = {.lex_state = 290}, + [2802] = {.lex_state = 290}, + [2803] = {.lex_state = 262}, + [2804] = {.lex_state = 262}, + [2805] = {.lex_state = 257}, [2806] = {.lex_state = 290}, - [2807] = {.lex_state = 290}, - [2808] = {.lex_state = 290}, - [2809] = {.lex_state = 290}, - [2810] = {.lex_state = 257}, - [2811] = {.lex_state = 257}, - [2812] = {.lex_state = 290}, - [2813] = {.lex_state = 290}, - [2814] = {.lex_state = 257}, - [2815] = {.lex_state = 172}, - [2816] = {.lex_state = 257}, - [2817] = {.lex_state = 290}, - [2818] = {.lex_state = 264}, - [2819] = {.lex_state = 264}, - [2820] = {.lex_state = 257}, - [2821] = {.lex_state = 257}, - [2822] = {.lex_state = 290}, - [2823] = {.lex_state = 172}, - [2824] = {.lex_state = 290}, - [2825] = {.lex_state = 172}, + [2807] = {.lex_state = 257}, + [2808] = {.lex_state = 172}, + [2809] = {.lex_state = 281}, + [2810] = {.lex_state = 290}, + [2811] = {.lex_state = 182, .external_lex_state = 1}, + [2812] = {.lex_state = 257}, + [2813] = {.lex_state = 172}, + [2814] = {.lex_state = 172}, + [2815] = {.lex_state = 247}, + [2816] = {.lex_state = 247}, + [2817] = {.lex_state = 189}, + [2818] = {.lex_state = 247}, + [2819] = {.lex_state = 188, .external_lex_state = 1}, + [2820] = {.lex_state = 182, .external_lex_state = 1}, + [2821] = {.lex_state = 182, .external_lex_state = 1}, + [2822] = {.lex_state = 189}, + [2823] = {.lex_state = 261}, + [2824] = {.lex_state = 189}, + [2825] = {.lex_state = 189}, [2826] = {.lex_state = 182, .external_lex_state = 1}, - [2827] = {.lex_state = 257}, - [2828] = {.lex_state = 172}, - [2829] = {.lex_state = 247}, - [2830] = {.lex_state = 247}, + [2827] = {.lex_state = 189}, + [2828] = {.lex_state = 188, .external_lex_state = 1}, + [2829] = {.lex_state = 189}, + [2830] = {.lex_state = 189}, [2831] = {.lex_state = 189}, - [2832] = {.lex_state = 172}, - [2833] = {.lex_state = 172}, - [2834] = {.lex_state = 247}, - [2835] = {.lex_state = 188, .external_lex_state = 1}, - [2836] = {.lex_state = 182, .external_lex_state = 1}, - [2837] = {.lex_state = 182, .external_lex_state = 1}, + [2832] = {.lex_state = 189}, + [2833] = {.lex_state = 189}, + [2834] = {.lex_state = 189}, + [2835] = {.lex_state = 189}, + [2836] = {.lex_state = 189}, + [2837] = {.lex_state = 247}, [2838] = {.lex_state = 189}, - [2839] = {.lex_state = 263}, - [2840] = {.lex_state = 189}, - [2841] = {.lex_state = 189}, + [2839] = {.lex_state = 189}, + [2840] = {.lex_state = 249, .external_lex_state = 1}, + [2841] = {.lex_state = 282}, [2842] = {.lex_state = 182, .external_lex_state = 1}, - [2843] = {.lex_state = 189}, - [2844] = {.lex_state = 188, .external_lex_state = 1}, - [2845] = {.lex_state = 189}, - [2846] = {.lex_state = 189}, - [2847] = {.lex_state = 189}, - [2848] = {.lex_state = 189}, - [2849] = {.lex_state = 189}, - [2850] = {.lex_state = 189}, - [2851] = {.lex_state = 189}, - [2852] = {.lex_state = 189}, - [2853] = {.lex_state = 235}, - [2854] = {.lex_state = 189}, - [2855] = {.lex_state = 189}, - [2856] = {.lex_state = 300, .external_lex_state = 1}, - [2857] = {.lex_state = 284}, - [2858] = {.lex_state = 182, .external_lex_state = 1}, - [2859] = {.lex_state = 263}, - [2860] = {.lex_state = 203}, - [2861] = {.lex_state = 263}, - [2862] = {.lex_state = 172, .external_lex_state = 1}, - [2863] = {.lex_state = 182}, - [2864] = {.lex_state = 182}, - [2865] = {.lex_state = 182}, - [2866] = {.lex_state = 182}, - [2867] = {.lex_state = 182}, - [2868] = {.lex_state = 182}, - [2869] = {.lex_state = 182}, - [2870] = {.lex_state = 182}, - [2871] = {.lex_state = 182, .external_lex_state = 1}, - [2872] = {.lex_state = 182, .external_lex_state = 1}, - [2873] = {.lex_state = 284}, - [2874] = {.lex_state = 263}, - [2875] = {.lex_state = 182, .external_lex_state = 1}, - [2876] = {.lex_state = 182, .external_lex_state = 1}, - [2877] = {.lex_state = 283}, - [2878] = {.lex_state = 172}, - [2879] = {.lex_state = 283}, - [2880] = {.lex_state = 283}, - [2881] = {.lex_state = 172}, - [2882] = {.lex_state = 182, .external_lex_state = 1}, - [2883] = {.lex_state = 283}, + [2843] = {.lex_state = 261}, + [2844] = {.lex_state = 203}, + [2845] = {.lex_state = 261}, + [2846] = {.lex_state = 172, .external_lex_state = 1}, + [2847] = {.lex_state = 172, .external_lex_state = 1}, + [2848] = {.lex_state = 261}, + [2849] = {.lex_state = 263}, + [2850] = {.lex_state = 261}, + [2851] = {.lex_state = 262}, + [2852] = {.lex_state = 262}, + [2853] = {.lex_state = 262}, + [2854] = {.lex_state = 262}, + [2855] = {.lex_state = 262}, + [2856] = {.lex_state = 262}, + [2857] = {.lex_state = 261}, + [2858] = {.lex_state = 261}, + [2859] = {.lex_state = 262}, + [2860] = {.lex_state = 261}, + [2861] = {.lex_state = 262}, + [2862] = {.lex_state = 261}, + [2863] = {.lex_state = 261}, + [2864] = {.lex_state = 261}, + [2865] = {.lex_state = 262}, + [2866] = {.lex_state = 261}, + [2867] = {.lex_state = 261}, + [2868] = {.lex_state = 262}, + [2869] = {.lex_state = 182, .external_lex_state = 1}, + [2870] = {.lex_state = 261}, + [2871] = {.lex_state = 172}, + [2872] = {.lex_state = 261}, + [2873] = {.lex_state = 261}, + [2874] = {.lex_state = 172}, + [2875] = {.lex_state = 188}, + [2876] = {.lex_state = 188}, + [2877] = {.lex_state = 182}, + [2878] = {.lex_state = 182}, + [2879] = {.lex_state = 182, .external_lex_state = 1}, + [2880] = {.lex_state = 182, .external_lex_state = 1}, + [2881] = {.lex_state = 282}, + [2882] = {.lex_state = 261}, + [2883] = {.lex_state = 182, .external_lex_state = 1}, [2884] = {.lex_state = 182, .external_lex_state = 1}, - [2885] = {.lex_state = 182, .external_lex_state = 1}, - [2886] = {.lex_state = 182, .external_lex_state = 1}, - [2887] = {.lex_state = 182, .external_lex_state = 1}, - [2888] = {.lex_state = 182, .external_lex_state = 1}, - [2889] = {.lex_state = 182, .external_lex_state = 1}, + [2885] = {.lex_state = 281}, + [2886] = {.lex_state = 172}, + [2887] = {.lex_state = 281}, + [2888] = {.lex_state = 281}, + [2889] = {.lex_state = 172}, [2890] = {.lex_state = 182, .external_lex_state = 1}, - [2891] = {.lex_state = 182, .external_lex_state = 1}, + [2891] = {.lex_state = 281}, [2892] = {.lex_state = 182, .external_lex_state = 1}, [2893] = {.lex_state = 182, .external_lex_state = 1}, [2894] = {.lex_state = 182, .external_lex_state = 1}, - [2895] = {.lex_state = 283}, - [2896] = {.lex_state = 263}, - [2897] = {.lex_state = 284}, - [2898] = {.lex_state = 284}, + [2895] = {.lex_state = 182, .external_lex_state = 1}, + [2896] = {.lex_state = 182, .external_lex_state = 1}, + [2897] = {.lex_state = 182, .external_lex_state = 1}, + [2898] = {.lex_state = 182, .external_lex_state = 1}, [2899] = {.lex_state = 182, .external_lex_state = 1}, - [2900] = {.lex_state = 284}, - [2901] = {.lex_state = 188, .external_lex_state = 1}, - [2902] = {.lex_state = 284}, - [2903] = {.lex_state = 284}, - [2904] = {.lex_state = 284}, - [2905] = {.lex_state = 284}, - [2906] = {.lex_state = 284}, - [2907] = {.lex_state = 284}, - [2908] = {.lex_state = 284}, - [2909] = {.lex_state = 284}, - [2910] = {.lex_state = 235}, - [2911] = {.lex_state = 284}, - [2912] = {.lex_state = 284}, - [2913] = {.lex_state = 182, .external_lex_state = 1}, - [2914] = {.lex_state = 182, .external_lex_state = 1}, - [2915] = {.lex_state = 235}, - [2916] = {.lex_state = 273}, - [2917] = {.lex_state = 263}, - [2918] = {.lex_state = 182, .external_lex_state = 1}, - [2919] = {.lex_state = 273}, - [2920] = {.lex_state = 182, .external_lex_state = 1}, - [2921] = {.lex_state = 273}, - [2922] = {.lex_state = 273}, - [2923] = {.lex_state = 172}, - [2924] = {.lex_state = 273}, - [2925] = {.lex_state = 273}, - [2926] = {.lex_state = 172}, - [2927] = {.lex_state = 182, .external_lex_state = 1}, - [2928] = {.lex_state = 273}, - [2929] = {.lex_state = 182, .external_lex_state = 1}, - [2930] = {.lex_state = 182, .external_lex_state = 1}, - [2931] = {.lex_state = 182, .external_lex_state = 1}, - [2932] = {.lex_state = 182, .external_lex_state = 1}, - [2933] = {.lex_state = 182, .external_lex_state = 1}, - [2934] = {.lex_state = 182, .external_lex_state = 1}, - [2935] = {.lex_state = 182, .external_lex_state = 1}, - [2936] = {.lex_state = 182, .external_lex_state = 1}, + [2900] = {.lex_state = 182, .external_lex_state = 1}, + [2901] = {.lex_state = 182, .external_lex_state = 1}, + [2902] = {.lex_state = 182, .external_lex_state = 1}, + [2903] = {.lex_state = 281}, + [2904] = {.lex_state = 261}, + [2905] = {.lex_state = 282}, + [2906] = {.lex_state = 282}, + [2907] = {.lex_state = 182, .external_lex_state = 1}, + [2908] = {.lex_state = 282}, + [2909] = {.lex_state = 188, .external_lex_state = 1}, + [2910] = {.lex_state = 282}, + [2911] = {.lex_state = 282}, + [2912] = {.lex_state = 282}, + [2913] = {.lex_state = 282}, + [2914] = {.lex_state = 282}, + [2915] = {.lex_state = 282}, + [2916] = {.lex_state = 282}, + [2917] = {.lex_state = 282}, + [2918] = {.lex_state = 247}, + [2919] = {.lex_state = 282}, + [2920] = {.lex_state = 282}, + [2921] = {.lex_state = 263}, + [2922] = {.lex_state = 188}, + [2923] = {.lex_state = 188}, + [2924] = {.lex_state = 188}, + [2925] = {.lex_state = 182}, + [2926] = {.lex_state = 182, .external_lex_state = 1}, + [2927] = {.lex_state = 282}, + [2928] = {.lex_state = 263}, + [2929] = {.lex_state = 182}, + [2930] = {.lex_state = 182}, + [2931] = {.lex_state = 182}, + [2932] = {.lex_state = 182}, + [2933] = {.lex_state = 182}, + [2934] = {.lex_state = 182}, + [2935] = {.lex_state = 182}, + [2936] = {.lex_state = 182}, [2937] = {.lex_state = 182, .external_lex_state = 1}, [2938] = {.lex_state = 182, .external_lex_state = 1}, - [2939] = {.lex_state = 182, .external_lex_state = 1}, - [2940] = {.lex_state = 257, .external_lex_state = 1}, - [2941] = {.lex_state = 273}, - [2942] = {.lex_state = 263}, - [2943] = {.lex_state = 235}, - [2944] = {.lex_state = 247}, - [2945] = {.lex_state = 247}, - [2946] = {.lex_state = 294}, - [2947] = {.lex_state = 247}, - [2948] = {.lex_state = 247}, - [2949] = {.lex_state = 294}, - [2950] = {.lex_state = 247}, - [2951] = {.lex_state = 247}, - [2952] = {.lex_state = 294}, - [2953] = {.lex_state = 235}, + [2939] = {.lex_state = 247}, + [2940] = {.lex_state = 271}, + [2941] = {.lex_state = 261}, + [2942] = {.lex_state = 182, .external_lex_state = 1}, + [2943] = {.lex_state = 271}, + [2944] = {.lex_state = 182, .external_lex_state = 1}, + [2945] = {.lex_state = 271}, + [2946] = {.lex_state = 271}, + [2947] = {.lex_state = 172}, + [2948] = {.lex_state = 271}, + [2949] = {.lex_state = 271}, + [2950] = {.lex_state = 172}, + [2951] = {.lex_state = 182, .external_lex_state = 1}, + [2952] = {.lex_state = 271}, + [2953] = {.lex_state = 182, .external_lex_state = 1}, [2954] = {.lex_state = 182, .external_lex_state = 1}, - [2955] = {.lex_state = 235}, - [2956] = {.lex_state = 188, .external_lex_state = 1}, - [2957] = {.lex_state = 235}, - [2958] = {.lex_state = 235}, - [2959] = {.lex_state = 235}, - [2960] = {.lex_state = 235}, - [2961] = {.lex_state = 182}, - [2962] = {.lex_state = 235}, - [2963] = {.lex_state = 235}, - [2964] = {.lex_state = 235}, - [2965] = {.lex_state = 235}, - [2966] = {.lex_state = 235}, - [2967] = {.lex_state = 235}, - [2968] = {.lex_state = 247}, - [2969] = {.lex_state = 235}, - [2970] = {.lex_state = 294}, - [2971] = {.lex_state = 290}, - [2972] = {.lex_state = 257}, - [2973] = {.lex_state = 235}, - [2974] = {.lex_state = 263}, - [2975] = {.lex_state = 265}, - [2976] = {.lex_state = 263}, - [2977] = {.lex_state = 264}, - [2978] = {.lex_state = 264}, - [2979] = {.lex_state = 264}, - [2980] = {.lex_state = 264}, - [2981] = {.lex_state = 264}, - [2982] = {.lex_state = 263}, - [2983] = {.lex_state = 263}, - [2984] = {.lex_state = 264}, - [2985] = {.lex_state = 264}, - [2986] = {.lex_state = 263}, - [2987] = {.lex_state = 264}, - [2988] = {.lex_state = 263}, - [2989] = {.lex_state = 263}, - [2990] = {.lex_state = 263}, - [2991] = {.lex_state = 263}, - [2992] = {.lex_state = 264}, - [2993] = {.lex_state = 263}, - [2994] = {.lex_state = 264}, - [2995] = {.lex_state = 182, .external_lex_state = 1}, - [2996] = {.lex_state = 263}, - [2997] = {.lex_state = 172}, + [2955] = {.lex_state = 182, .external_lex_state = 1}, + [2956] = {.lex_state = 182, .external_lex_state = 1}, + [2957] = {.lex_state = 182, .external_lex_state = 1}, + [2958] = {.lex_state = 182, .external_lex_state = 1}, + [2959] = {.lex_state = 182, .external_lex_state = 1}, + [2960] = {.lex_state = 182, .external_lex_state = 1}, + [2961] = {.lex_state = 182, .external_lex_state = 1}, + [2962] = {.lex_state = 182, .external_lex_state = 1}, + [2963] = {.lex_state = 182, .external_lex_state = 1}, + [2964] = {.lex_state = 257, .external_lex_state = 1}, + [2965] = {.lex_state = 271}, + [2966] = {.lex_state = 261}, + [2967] = {.lex_state = 247}, + [2968] = {.lex_state = 312}, + [2969] = {.lex_state = 247}, + [2970] = {.lex_state = 312}, + [2971] = {.lex_state = 312}, + [2972] = {.lex_state = 247}, + [2973] = {.lex_state = 312}, + [2974] = {.lex_state = 312}, + [2975] = {.lex_state = 247}, + [2976] = {.lex_state = 312}, + [2977] = {.lex_state = 247}, + [2978] = {.lex_state = 182, .external_lex_state = 1}, + [2979] = {.lex_state = 247}, + [2980] = {.lex_state = 188, .external_lex_state = 1}, + [2981] = {.lex_state = 247}, + [2982] = {.lex_state = 247}, + [2983] = {.lex_state = 247}, + [2984] = {.lex_state = 247}, + [2985] = {.lex_state = 182}, + [2986] = {.lex_state = 247}, + [2987] = {.lex_state = 247}, + [2988] = {.lex_state = 247}, + [2989] = {.lex_state = 247}, + [2990] = {.lex_state = 247}, + [2991] = {.lex_state = 247}, + [2992] = {.lex_state = 247}, + [2993] = {.lex_state = 247}, + [2994] = {.lex_state = 247}, + [2995] = {.lex_state = 290}, + [2996] = {.lex_state = 257}, + [2997] = {.lex_state = 247}, [2998] = {.lex_state = 263}, - [2999] = {.lex_state = 263}, - [3000] = {.lex_state = 265}, - [3001] = {.lex_state = 235}, - [3002] = {.lex_state = 235}, - [3003] = {.lex_state = 235}, - [3004] = {.lex_state = 235}, - [3005] = {.lex_state = 235}, - [3006] = {.lex_state = 182}, - [3007] = {.lex_state = 182}, - [3008] = {.lex_state = 182}, - [3009] = {.lex_state = 172, .external_lex_state = 1}, - [3010] = {.lex_state = 264}, - [3011] = {.lex_state = 172}, - [3012] = {.lex_state = 264}, - [3013] = {.lex_state = 172}, - [3014] = {.lex_state = 182, .external_lex_state = 1}, - [3015] = {.lex_state = 172}, + [2999] = {.lex_state = 247}, + [3000] = {.lex_state = 247}, + [3001] = {.lex_state = 247}, + [3002] = {.lex_state = 247}, + [3003] = {.lex_state = 247}, + [3004] = {.lex_state = 182, .external_lex_state = 1}, + [3005] = {.lex_state = 172}, + [3006] = {.lex_state = 182, .external_lex_state = 1}, + [3007] = {.lex_state = 182, .external_lex_state = 1}, + [3008] = {.lex_state = 189}, + [3009] = {.lex_state = 182, .external_lex_state = 1}, + [3010] = {.lex_state = 247}, + [3011] = {.lex_state = 182, .external_lex_state = 1}, + [3012] = {.lex_state = 182, .external_lex_state = 1}, + [3013] = {.lex_state = 247}, + [3014] = {.lex_state = 172, .external_lex_state = 1}, + [3015] = {.lex_state = 261}, [3016] = {.lex_state = 182, .external_lex_state = 1}, - [3017] = {.lex_state = 182, .external_lex_state = 1}, - [3018] = {.lex_state = 189}, - [3019] = {.lex_state = 182, .external_lex_state = 1}, - [3020] = {.lex_state = 247}, - [3021] = {.lex_state = 182, .external_lex_state = 1}, + [3017] = {.lex_state = 188, .external_lex_state = 1}, + [3018] = {.lex_state = 182, .external_lex_state = 1}, + [3019] = {.lex_state = 172}, + [3020] = {.lex_state = 182, .external_lex_state = 1}, + [3021] = {.lex_state = 172}, [3022] = {.lex_state = 182, .external_lex_state = 1}, - [3023] = {.lex_state = 247}, - [3024] = {.lex_state = 172, .external_lex_state = 1}, - [3025] = {.lex_state = 263}, - [3026] = {.lex_state = 182, .external_lex_state = 1}, - [3027] = {.lex_state = 188, .external_lex_state = 1}, - [3028] = {.lex_state = 182, .external_lex_state = 1}, + [3023] = {.lex_state = 182, .external_lex_state = 1}, + [3024] = {.lex_state = 182, .external_lex_state = 1}, + [3025] = {.lex_state = 189}, + [3026] = {.lex_state = 172}, + [3027] = {.lex_state = 247}, + [3028] = {.lex_state = 247}, [3029] = {.lex_state = 172}, - [3030] = {.lex_state = 182, .external_lex_state = 1}, - [3031] = {.lex_state = 172}, + [3030] = {.lex_state = 189}, + [3031] = {.lex_state = 247}, [3032] = {.lex_state = 182, .external_lex_state = 1}, [3033] = {.lex_state = 182, .external_lex_state = 1}, [3034] = {.lex_state = 182, .external_lex_state = 1}, - [3035] = {.lex_state = 189}, - [3036] = {.lex_state = 172}, - [3037] = {.lex_state = 247}, - [3038] = {.lex_state = 247}, - [3039] = {.lex_state = 172}, - [3040] = {.lex_state = 189}, - [3041] = {.lex_state = 247}, + [3035] = {.lex_state = 234, .external_lex_state = 1}, + [3036] = {.lex_state = 182, .external_lex_state = 1}, + [3037] = {.lex_state = 182, .external_lex_state = 1}, + [3038] = {.lex_state = 182, .external_lex_state = 1}, + [3039] = {.lex_state = 182, .external_lex_state = 1}, + [3040] = {.lex_state = 182, .external_lex_state = 1}, + [3041] = {.lex_state = 182, .external_lex_state = 1}, [3042] = {.lex_state = 182, .external_lex_state = 1}, [3043] = {.lex_state = 182, .external_lex_state = 1}, - [3044] = {.lex_state = 182, .external_lex_state = 1}, - [3045] = {.lex_state = 234, .external_lex_state = 1}, - [3046] = {.lex_state = 182, .external_lex_state = 1}, - [3047] = {.lex_state = 182, .external_lex_state = 1}, - [3048] = {.lex_state = 182, .external_lex_state = 1}, - [3049] = {.lex_state = 182, .external_lex_state = 1}, + [3044] = {.lex_state = 172}, + [3045] = {.lex_state = 247}, + [3046] = {.lex_state = 247}, + [3047] = {.lex_state = 189}, + [3048] = {.lex_state = 172, .external_lex_state = 1}, + [3049] = {.lex_state = 252}, [3050] = {.lex_state = 182, .external_lex_state = 1}, - [3051] = {.lex_state = 182, .external_lex_state = 1}, - [3052] = {.lex_state = 182, .external_lex_state = 1}, - [3053] = {.lex_state = 182, .external_lex_state = 1}, + [3051] = {.lex_state = 282}, + [3052] = {.lex_state = 172}, + [3053] = {.lex_state = 172}, [3054] = {.lex_state = 172}, - [3055] = {.lex_state = 247}, - [3056] = {.lex_state = 247}, - [3057] = {.lex_state = 189}, - [3058] = {.lex_state = 172, .external_lex_state = 1}, + [3055] = {.lex_state = 189}, + [3056] = {.lex_state = 172}, + [3057] = {.lex_state = 172, .external_lex_state = 1}, + [3058] = {.lex_state = 172}, [3059] = {.lex_state = 172}, - [3060] = {.lex_state = 188}, - [3061] = {.lex_state = 188}, - [3062] = {.lex_state = 182}, - [3063] = {.lex_state = 182}, - [3064] = {.lex_state = 265}, - [3065] = {.lex_state = 188}, - [3066] = {.lex_state = 188}, - [3067] = {.lex_state = 188}, - [3068] = {.lex_state = 182}, - [3069] = {.lex_state = 182, .external_lex_state = 1}, - [3070] = {.lex_state = 284}, - [3071] = {.lex_state = 265}, - [3072] = {.lex_state = 172, .external_lex_state = 1}, - [3073] = {.lex_state = 248}, - [3074] = {.lex_state = 182, .external_lex_state = 1}, - [3075] = {.lex_state = 284}, - [3076] = {.lex_state = 172}, - [3077] = {.lex_state = 172}, - [3078] = {.lex_state = 172}, - [3079] = {.lex_state = 189}, - [3080] = {.lex_state = 172}, - [3081] = {.lex_state = 172, .external_lex_state = 1}, + [3060] = {.lex_state = 172}, + [3061] = {.lex_state = 172}, + [3062] = {.lex_state = 172}, + [3063] = {.lex_state = 172}, + [3064] = {.lex_state = 234, .external_lex_state = 1}, + [3065] = {.lex_state = 234, .external_lex_state = 1}, + [3066] = {.lex_state = 305, .external_lex_state = 1}, + [3067] = {.lex_state = 172}, + [3068] = {.lex_state = 305, .external_lex_state = 1}, + [3069] = {.lex_state = 172}, + [3070] = {.lex_state = 247}, + [3071] = {.lex_state = 172}, + [3072] = {.lex_state = 188}, + [3073] = {.lex_state = 188}, + [3074] = {.lex_state = 234, .external_lex_state = 1}, + [3075] = {.lex_state = 234, .external_lex_state = 1}, + [3076] = {.lex_state = 234, .external_lex_state = 1}, + [3077] = {.lex_state = 234, .external_lex_state = 1}, + [3078] = {.lex_state = 234, .external_lex_state = 1}, + [3079] = {.lex_state = 234, .external_lex_state = 1}, + [3080] = {.lex_state = 247}, + [3081] = {.lex_state = 247}, [3082] = {.lex_state = 172}, - [3083] = {.lex_state = 172}, - [3084] = {.lex_state = 172}, - [3085] = {.lex_state = 172}, + [3083] = {.lex_state = 234, .external_lex_state = 1}, + [3084] = {.lex_state = 262}, + [3085] = {.lex_state = 182, .external_lex_state = 1}, [3086] = {.lex_state = 172}, - [3087] = {.lex_state = 172}, + [3087] = {.lex_state = 305, .external_lex_state = 1}, [3088] = {.lex_state = 234, .external_lex_state = 1}, [3089] = {.lex_state = 234, .external_lex_state = 1}, - [3090] = {.lex_state = 307, .external_lex_state = 1}, - [3091] = {.lex_state = 247}, - [3092] = {.lex_state = 172}, - [3093] = {.lex_state = 172}, + [3090] = {.lex_state = 290}, + [3091] = {.lex_state = 172}, + [3092] = {.lex_state = 290}, + [3093] = {.lex_state = 290}, [3094] = {.lex_state = 172}, - [3095] = {.lex_state = 307, .external_lex_state = 1}, - [3096] = {.lex_state = 234, .external_lex_state = 1}, - [3097] = {.lex_state = 234, .external_lex_state = 1}, - [3098] = {.lex_state = 234, .external_lex_state = 1}, - [3099] = {.lex_state = 234, .external_lex_state = 1}, - [3100] = {.lex_state = 234, .external_lex_state = 1}, - [3101] = {.lex_state = 234, .external_lex_state = 1}, - [3102] = {.lex_state = 247}, - [3103] = {.lex_state = 235}, - [3104] = {.lex_state = 172}, - [3105] = {.lex_state = 234, .external_lex_state = 1}, - [3106] = {.lex_state = 264}, - [3107] = {.lex_state = 182, .external_lex_state = 1}, - [3108] = {.lex_state = 172}, - [3109] = {.lex_state = 307, .external_lex_state = 1}, - [3110] = {.lex_state = 234, .external_lex_state = 1}, - [3111] = {.lex_state = 234, .external_lex_state = 1}, - [3112] = {.lex_state = 290}, + [3095] = {.lex_state = 290}, + [3096] = {.lex_state = 290}, + [3097] = {.lex_state = 290}, + [3098] = {.lex_state = 290}, + [3099] = {.lex_state = 188, .external_lex_state = 1}, + [3100] = {.lex_state = 289}, + [3101] = {.lex_state = 182, .external_lex_state = 1}, + [3102] = {.lex_state = 289}, + [3103] = {.lex_state = 289}, + [3104] = {.lex_state = 182, .external_lex_state = 1}, + [3105] = {.lex_state = 289}, + [3106] = {.lex_state = 261}, + [3107] = {.lex_state = 289}, + [3108] = {.lex_state = 289}, + [3109] = {.lex_state = 289}, + [3110] = {.lex_state = 289}, + [3111] = {.lex_state = 290}, + [3112] = {.lex_state = 257}, [3113] = {.lex_state = 172}, - [3114] = {.lex_state = 290}, - [3115] = {.lex_state = 290}, + [3114] = {.lex_state = 289}, + [3115] = {.lex_state = 247}, [3116] = {.lex_state = 172}, - [3117] = {.lex_state = 290}, - [3118] = {.lex_state = 290}, - [3119] = {.lex_state = 290}, - [3120] = {.lex_state = 290}, - [3121] = {.lex_state = 188, .external_lex_state = 1}, + [3117] = {.lex_state = 289}, + [3118] = {.lex_state = 265}, + [3119] = {.lex_state = 313}, + [3120] = {.lex_state = 247}, + [3121] = {.lex_state = 289}, [3122] = {.lex_state = 289}, - [3123] = {.lex_state = 182, .external_lex_state = 1}, + [3123] = {.lex_state = 172}, [3124] = {.lex_state = 289}, - [3125] = {.lex_state = 289}, - [3126] = {.lex_state = 182, .external_lex_state = 1}, + [3125] = {.lex_state = 313}, + [3126] = {.lex_state = 247}, [3127] = {.lex_state = 289}, - [3128] = {.lex_state = 263}, - [3129] = {.lex_state = 289}, + [3128] = {.lex_state = 289}, + [3129] = {.lex_state = 172}, [3130] = {.lex_state = 289}, [3131] = {.lex_state = 289}, - [3132] = {.lex_state = 289}, - [3133] = {.lex_state = 290}, - [3134] = {.lex_state = 257}, - [3135] = {.lex_state = 172}, + [3132] = {.lex_state = 172}, + [3133] = {.lex_state = 289}, + [3134] = {.lex_state = 172}, + [3135] = {.lex_state = 289}, [3136] = {.lex_state = 289}, - [3137] = {.lex_state = 247}, - [3138] = {.lex_state = 172}, - [3139] = {.lex_state = 289}, - [3140] = {.lex_state = 266}, - [3141] = {.lex_state = 235}, - [3142] = {.lex_state = 289}, + [3137] = {.lex_state = 289}, + [3138] = {.lex_state = 313}, + [3139] = {.lex_state = 247}, + [3140] = {.lex_state = 289}, + [3141] = {.lex_state = 289}, + [3142] = {.lex_state = 172}, [3143] = {.lex_state = 289}, - [3144] = {.lex_state = 314}, - [3145] = {.lex_state = 172}, - [3146] = {.lex_state = 289}, - [3147] = {.lex_state = 235}, + [3144] = {.lex_state = 289}, + [3145] = {.lex_state = 289}, + [3146] = {.lex_state = 182, .external_lex_state = 1}, + [3147] = {.lex_state = 289}, [3148] = {.lex_state = 289}, [3149] = {.lex_state = 289}, - [3150] = {.lex_state = 314}, + [3150] = {.lex_state = 289}, [3151] = {.lex_state = 172}, [3152] = {.lex_state = 289}, - [3153] = {.lex_state = 289}, - [3154] = {.lex_state = 172}, + [3153] = {.lex_state = 188, .external_lex_state = 1}, + [3154] = {.lex_state = 289}, [3155] = {.lex_state = 289}, - [3156] = {.lex_state = 172}, + [3156] = {.lex_state = 289}, [3157] = {.lex_state = 289}, [3158] = {.lex_state = 289}, [3159] = {.lex_state = 289}, - [3160] = {.lex_state = 235}, + [3160] = {.lex_state = 289}, [3161] = {.lex_state = 289}, [3162] = {.lex_state = 289}, - [3163] = {.lex_state = 314}, - [3164] = {.lex_state = 172}, - [3165] = {.lex_state = 172}, + [3163] = {.lex_state = 247}, + [3164] = {.lex_state = 289}, + [3165] = {.lex_state = 172, .external_lex_state = 1}, [3166] = {.lex_state = 289}, [3167] = {.lex_state = 289}, [3168] = {.lex_state = 289}, [3169] = {.lex_state = 289}, - [3170] = {.lex_state = 182, .external_lex_state = 1}, - [3171] = {.lex_state = 289}, - [3172] = {.lex_state = 289}, - [3173] = {.lex_state = 289}, - [3174] = {.lex_state = 289}, - [3175] = {.lex_state = 188, .external_lex_state = 1}, - [3176] = {.lex_state = 289}, - [3177] = {.lex_state = 289}, - [3178] = {.lex_state = 289}, - [3179] = {.lex_state = 289}, - [3180] = {.lex_state = 289}, - [3181] = {.lex_state = 289}, - [3182] = {.lex_state = 289}, - [3183] = {.lex_state = 289}, - [3184] = {.lex_state = 289}, - [3185] = {.lex_state = 289}, - [3186] = {.lex_state = 289}, - [3187] = {.lex_state = 235}, - [3188] = {.lex_state = 289}, - [3189] = {.lex_state = 289}, - [3190] = {.lex_state = 172, .external_lex_state = 1}, - [3191] = {.lex_state = 289}, - [3192] = {.lex_state = 315, .external_lex_state = 1}, - [3193] = {.lex_state = 290}, - [3194] = {.lex_state = 172}, - [3195] = {.lex_state = 290}, - [3196] = {.lex_state = 172}, - [3197] = {.lex_state = 290}, - [3198] = {.lex_state = 257}, - [3199] = {.lex_state = 290}, - [3200] = {.lex_state = 257}, - [3201] = {.lex_state = 290}, - [3202] = {.lex_state = 234, .external_lex_state = 1}, - [3203] = {.lex_state = 172}, - [3204] = {.lex_state = 290}, - [3205] = {.lex_state = 264}, - [3206] = {.lex_state = 263}, - [3207] = {.lex_state = 284}, - [3208] = {.lex_state = 290}, - [3209] = {.lex_state = 290}, - [3210] = {.lex_state = 290}, - [3211] = {.lex_state = 290}, - [3212] = {.lex_state = 172}, - [3213] = {.lex_state = 172}, - [3214] = {.lex_state = 290}, - [3215] = {.lex_state = 172}, - [3216] = {.lex_state = 290}, - [3217] = {.lex_state = 172}, - [3218] = {.lex_state = 289}, - [3219] = {.lex_state = 263}, - [3220] = {.lex_state = 289}, - [3221] = {.lex_state = 289}, - [3222] = {.lex_state = 289}, - [3223] = {.lex_state = 182, .external_lex_state = 1}, - [3224] = {.lex_state = 257}, - [3225] = {.lex_state = 172}, - [3226] = {.lex_state = 290}, - [3227] = {.lex_state = 290}, - [3228] = {.lex_state = 257}, - [3229] = {.lex_state = 257}, - [3230] = {.lex_state = 290}, - [3231] = {.lex_state = 172, .external_lex_state = 1}, - [3232] = {.lex_state = 257}, - [3233] = {.lex_state = 247}, - [3234] = {.lex_state = 188, .external_lex_state = 1}, + [3170] = {.lex_state = 314, .external_lex_state = 1}, + [3171] = {.lex_state = 290}, + [3172] = {.lex_state = 172}, + [3173] = {.lex_state = 290}, + [3174] = {.lex_state = 172}, + [3175] = {.lex_state = 290}, + [3176] = {.lex_state = 257}, + [3177] = {.lex_state = 290}, + [3178] = {.lex_state = 257}, + [3179] = {.lex_state = 290}, + [3180] = {.lex_state = 234, .external_lex_state = 1}, + [3181] = {.lex_state = 172}, + [3182] = {.lex_state = 290}, + [3183] = {.lex_state = 262}, + [3184] = {.lex_state = 261}, + [3185] = {.lex_state = 282}, + [3186] = {.lex_state = 290}, + [3187] = {.lex_state = 290}, + [3188] = {.lex_state = 290}, + [3189] = {.lex_state = 290}, + [3190] = {.lex_state = 172}, + [3191] = {.lex_state = 172}, + [3192] = {.lex_state = 290}, + [3193] = {.lex_state = 172}, + [3194] = {.lex_state = 290}, + [3195] = {.lex_state = 172}, + [3196] = {.lex_state = 289}, + [3197] = {.lex_state = 261}, + [3198] = {.lex_state = 289}, + [3199] = {.lex_state = 289}, + [3200] = {.lex_state = 289}, + [3201] = {.lex_state = 182, .external_lex_state = 1}, + [3202] = {.lex_state = 290}, + [3203] = {.lex_state = 172, .external_lex_state = 1}, + [3204] = {.lex_state = 257}, + [3205] = {.lex_state = 172}, + [3206] = {.lex_state = 290}, + [3207] = {.lex_state = 290}, + [3208] = {.lex_state = 257}, + [3209] = {.lex_state = 257}, + [3210] = {.lex_state = 257}, + [3211] = {.lex_state = 247}, + [3212] = {.lex_state = 188, .external_lex_state = 1}, + [3213] = {.lex_state = 182, .external_lex_state = 1}, + [3214] = {.lex_state = 182, .external_lex_state = 1}, + [3215] = {.lex_state = 189}, + [3216] = {.lex_state = 261}, + [3217] = {.lex_state = 189}, + [3218] = {.lex_state = 189}, + [3219] = {.lex_state = 182, .external_lex_state = 1}, + [3220] = {.lex_state = 189}, + [3221] = {.lex_state = 188, .external_lex_state = 1}, + [3222] = {.lex_state = 189}, + [3223] = {.lex_state = 189}, + [3224] = {.lex_state = 189}, + [3225] = {.lex_state = 189}, + [3226] = {.lex_state = 189}, + [3227] = {.lex_state = 189}, + [3228] = {.lex_state = 189}, + [3229] = {.lex_state = 189}, + [3230] = {.lex_state = 247}, + [3231] = {.lex_state = 189}, + [3232] = {.lex_state = 189}, + [3233] = {.lex_state = 249, .external_lex_state = 1}, + [3234] = {.lex_state = 282}, [3235] = {.lex_state = 182, .external_lex_state = 1}, - [3236] = {.lex_state = 182, .external_lex_state = 1}, - [3237] = {.lex_state = 189}, - [3238] = {.lex_state = 263}, + [3236] = {.lex_state = 253}, + [3237] = {.lex_state = 182, .external_lex_state = 1}, + [3238] = {.lex_state = 182}, [3239] = {.lex_state = 189}, - [3240] = {.lex_state = 189}, - [3241] = {.lex_state = 182, .external_lex_state = 1}, - [3242] = {.lex_state = 189}, - [3243] = {.lex_state = 188, .external_lex_state = 1}, - [3244] = {.lex_state = 189}, - [3245] = {.lex_state = 189}, - [3246] = {.lex_state = 189}, - [3247] = {.lex_state = 189}, - [3248] = {.lex_state = 189}, - [3249] = {.lex_state = 189}, - [3250] = {.lex_state = 189}, + [3240] = {.lex_state = 258, .external_lex_state = 1}, + [3241] = {.lex_state = 172}, + [3242] = {.lex_state = 258, .external_lex_state = 1}, + [3243] = {.lex_state = 234, .external_lex_state = 1}, + [3244] = {.lex_state = 258, .external_lex_state = 1}, + [3245] = {.lex_state = 274}, + [3246] = {.lex_state = 258, .external_lex_state = 1}, + [3247] = {.lex_state = 274}, + [3248] = {.lex_state = 258, .external_lex_state = 1}, + [3249] = {.lex_state = 172}, + [3250] = {.lex_state = 172}, [3251] = {.lex_state = 189}, - [3252] = {.lex_state = 235}, - [3253] = {.lex_state = 189}, + [3252] = {.lex_state = 234, .external_lex_state = 1}, + [3253] = {.lex_state = 291, .external_lex_state = 1}, [3254] = {.lex_state = 189}, - [3255] = {.lex_state = 300, .external_lex_state = 1}, - [3256] = {.lex_state = 284}, - [3257] = {.lex_state = 182, .external_lex_state = 1}, - [3258] = {.lex_state = 252}, - [3259] = {.lex_state = 182, .external_lex_state = 1}, - [3260] = {.lex_state = 182}, - [3261] = {.lex_state = 189}, - [3262] = {.lex_state = 260, .external_lex_state = 1}, - [3263] = {.lex_state = 172}, - [3264] = {.lex_state = 260, .external_lex_state = 1}, - [3265] = {.lex_state = 234, .external_lex_state = 1}, - [3266] = {.lex_state = 260, .external_lex_state = 1}, - [3267] = {.lex_state = 276}, - [3268] = {.lex_state = 260, .external_lex_state = 1}, - [3269] = {.lex_state = 276}, - [3270] = {.lex_state = 260, .external_lex_state = 1}, - [3271] = {.lex_state = 172}, - [3272] = {.lex_state = 172}, - [3273] = {.lex_state = 189}, - [3274] = {.lex_state = 234, .external_lex_state = 1}, - [3275] = {.lex_state = 291, .external_lex_state = 1}, - [3276] = {.lex_state = 189}, - [3277] = {.lex_state = 291, .external_lex_state = 1}, - [3278] = {.lex_state = 291, .external_lex_state = 1}, - [3279] = {.lex_state = 276}, - [3280] = {.lex_state = 260, .external_lex_state = 1}, - [3281] = {.lex_state = 291, .external_lex_state = 1}, - [3282] = {.lex_state = 172}, - [3283] = {.lex_state = 291, .external_lex_state = 1}, - [3284] = {.lex_state = 172, .external_lex_state = 1}, + [3255] = {.lex_state = 291, .external_lex_state = 1}, + [3256] = {.lex_state = 291, .external_lex_state = 1}, + [3257] = {.lex_state = 274}, + [3258] = {.lex_state = 258, .external_lex_state = 1}, + [3259] = {.lex_state = 291, .external_lex_state = 1}, + [3260] = {.lex_state = 188}, + [3261] = {.lex_state = 291, .external_lex_state = 1}, + [3262] = {.lex_state = 172, .external_lex_state = 1}, + [3263] = {.lex_state = 291, .external_lex_state = 1}, + [3264] = {.lex_state = 291, .external_lex_state = 1}, + [3265] = {.lex_state = 189}, + [3266] = {.lex_state = 172}, + [3267] = {.lex_state = 172}, + [3268] = {.lex_state = 291, .external_lex_state = 1}, + [3269] = {.lex_state = 291, .external_lex_state = 1}, + [3270] = {.lex_state = 291, .external_lex_state = 1}, + [3271] = {.lex_state = 274}, + [3272] = {.lex_state = 258, .external_lex_state = 1}, + [3273] = {.lex_state = 291, .external_lex_state = 1}, + [3274] = {.lex_state = 291, .external_lex_state = 1}, + [3275] = {.lex_state = 172}, + [3276] = {.lex_state = 291, .external_lex_state = 1}, + [3277] = {.lex_state = 234, .external_lex_state = 1}, + [3278] = {.lex_state = 247}, + [3279] = {.lex_state = 247}, + [3280] = {.lex_state = 291, .external_lex_state = 1}, + [3281] = {.lex_state = 226}, + [3282] = {.lex_state = 262}, + [3283] = {.lex_state = 182, .external_lex_state = 1}, + [3284] = {.lex_state = 172}, [3285] = {.lex_state = 291, .external_lex_state = 1}, [3286] = {.lex_state = 291, .external_lex_state = 1}, [3287] = {.lex_state = 189}, - [3288] = {.lex_state = 172}, - [3289] = {.lex_state = 172}, + [3288] = {.lex_state = 291, .external_lex_state = 1}, + [3289] = {.lex_state = 268}, [3290] = {.lex_state = 291, .external_lex_state = 1}, - [3291] = {.lex_state = 291, .external_lex_state = 1}, - [3292] = {.lex_state = 291, .external_lex_state = 1}, - [3293] = {.lex_state = 276}, - [3294] = {.lex_state = 260, .external_lex_state = 1}, - [3295] = {.lex_state = 291, .external_lex_state = 1}, + [3291] = {.lex_state = 203}, + [3292] = {.lex_state = 189}, + [3293] = {.lex_state = 172}, + [3294] = {.lex_state = 172}, + [3295] = {.lex_state = 172}, [3296] = {.lex_state = 291, .external_lex_state = 1}, - [3297] = {.lex_state = 172}, - [3298] = {.lex_state = 291, .external_lex_state = 1}, - [3299] = {.lex_state = 234, .external_lex_state = 1}, - [3300] = {.lex_state = 247}, - [3301] = {.lex_state = 235}, - [3302] = {.lex_state = 291, .external_lex_state = 1}, - [3303] = {.lex_state = 226}, - [3304] = {.lex_state = 264}, - [3305] = {.lex_state = 182, .external_lex_state = 1}, - [3306] = {.lex_state = 172}, - [3307] = {.lex_state = 291, .external_lex_state = 1}, - [3308] = {.lex_state = 291, .external_lex_state = 1}, - [3309] = {.lex_state = 172}, - [3310] = {.lex_state = 189}, - [3311] = {.lex_state = 291, .external_lex_state = 1}, - [3312] = {.lex_state = 270}, - [3313] = {.lex_state = 291, .external_lex_state = 1}, - [3314] = {.lex_state = 203}, - [3315] = {.lex_state = 291, .external_lex_state = 1}, - [3316] = {.lex_state = 182}, - [3317] = {.lex_state = 172}, - [3318] = {.lex_state = 172}, - [3319] = {.lex_state = 182, .external_lex_state = 1}, - [3320] = {.lex_state = 172}, - [3321] = {.lex_state = 172, .external_lex_state = 1}, - [3322] = {.lex_state = 291, .external_lex_state = 1}, - [3323] = {.lex_state = 291, .external_lex_state = 1}, - [3324] = {.lex_state = 172}, - [3325] = {.lex_state = 189}, - [3326] = {.lex_state = 172}, - [3327] = {.lex_state = 260, .external_lex_state = 1}, - [3328] = {.lex_state = 276}, - [3329] = {.lex_state = 172}, - [3330] = {.lex_state = 260, .external_lex_state = 1}, - [3331] = {.lex_state = 274, .external_lex_state = 1}, - [3332] = {.lex_state = 247}, - [3333] = {.lex_state = 234, .external_lex_state = 1}, - [3334] = {.lex_state = 182, .external_lex_state = 1}, - [3335] = {.lex_state = 260, .external_lex_state = 1}, + [3297] = {.lex_state = 182}, + [3298] = {.lex_state = 172, .external_lex_state = 1}, + [3299] = {.lex_state = 291, .external_lex_state = 1}, + [3300] = {.lex_state = 291, .external_lex_state = 1}, + [3301] = {.lex_state = 172}, + [3302] = {.lex_state = 258, .external_lex_state = 1}, + [3303] = {.lex_state = 274}, + [3304] = {.lex_state = 172}, + [3305] = {.lex_state = 258, .external_lex_state = 1}, + [3306] = {.lex_state = 272, .external_lex_state = 1}, + [3307] = {.lex_state = 247}, + [3308] = {.lex_state = 234, .external_lex_state = 1}, + [3309] = {.lex_state = 182, .external_lex_state = 1}, + [3310] = {.lex_state = 258, .external_lex_state = 1}, + [3311] = {.lex_state = 234, .external_lex_state = 1}, + [3312] = {.lex_state = 262}, + [3313] = {.lex_state = 182, .external_lex_state = 1}, + [3314] = {.lex_state = 258, .external_lex_state = 1}, + [3315] = {.lex_state = 258, .external_lex_state = 1}, + [3316] = {.lex_state = 258, .external_lex_state = 1}, + [3317] = {.lex_state = 258, .external_lex_state = 1}, + [3318] = {.lex_state = 268}, + [3319] = {.lex_state = 258, .external_lex_state = 1}, + [3320] = {.lex_state = 258, .external_lex_state = 1}, + [3321] = {.lex_state = 172}, + [3322] = {.lex_state = 258, .external_lex_state = 1}, + [3323] = {.lex_state = 258, .external_lex_state = 1}, + [3324] = {.lex_state = 258, .external_lex_state = 1}, + [3325] = {.lex_state = 258, .external_lex_state = 1}, + [3326] = {.lex_state = 256}, + [3327] = {.lex_state = 172}, + [3328] = {.lex_state = 260}, + [3329] = {.lex_state = 188, .external_lex_state = 1}, + [3330] = {.lex_state = 315, .external_lex_state = 1}, + [3331] = {.lex_state = 282}, + [3332] = {.lex_state = 259}, + [3333] = {.lex_state = 182, .external_lex_state = 1}, + [3334] = {.lex_state = 260}, + [3335] = {.lex_state = 260}, [3336] = {.lex_state = 234, .external_lex_state = 1}, - [3337] = {.lex_state = 264}, - [3338] = {.lex_state = 182, .external_lex_state = 1}, - [3339] = {.lex_state = 260, .external_lex_state = 1}, - [3340] = {.lex_state = 260, .external_lex_state = 1}, - [3341] = {.lex_state = 260, .external_lex_state = 1}, - [3342] = {.lex_state = 260, .external_lex_state = 1}, - [3343] = {.lex_state = 270}, - [3344] = {.lex_state = 260, .external_lex_state = 1}, - [3345] = {.lex_state = 260, .external_lex_state = 1}, - [3346] = {.lex_state = 260, .external_lex_state = 1}, - [3347] = {.lex_state = 247}, - [3348] = {.lex_state = 172}, - [3349] = {.lex_state = 260, .external_lex_state = 1}, - [3350] = {.lex_state = 260, .external_lex_state = 1}, - [3351] = {.lex_state = 260, .external_lex_state = 1}, - [3352] = {.lex_state = 260, .external_lex_state = 1}, - [3353] = {.lex_state = 172}, - [3354] = {.lex_state = 255}, - [3355] = {.lex_state = 172}, + [3337] = {.lex_state = 262}, + [3338] = {.lex_state = 272, .external_lex_state = 1}, + [3339] = {.lex_state = 247}, + [3340] = {.lex_state = 262}, + [3341] = {.lex_state = 189}, + [3342] = {.lex_state = 172}, + [3343] = {.lex_state = 172}, + [3344] = {.lex_state = 172}, + [3345] = {.lex_state = 172}, + [3346] = {.lex_state = 172, .external_lex_state = 1}, + [3347] = {.lex_state = 234, .external_lex_state = 1}, + [3348] = {.lex_state = 262}, + [3349] = {.lex_state = 282}, + [3350] = {.lex_state = 261}, + [3351] = {.lex_state = 188, .external_lex_state = 1}, + [3352] = {.lex_state = 316, .external_lex_state = 1}, + [3353] = {.lex_state = 182, .external_lex_state = 1}, + [3354] = {.lex_state = 262}, + [3355] = {.lex_state = 262}, [3356] = {.lex_state = 262}, - [3357] = {.lex_state = 188, .external_lex_state = 1}, - [3358] = {.lex_state = 316, .external_lex_state = 1}, - [3359] = {.lex_state = 284}, + [3357] = {.lex_state = 262}, + [3358] = {.lex_state = 262}, + [3359] = {.lex_state = 261}, [3360] = {.lex_state = 261}, - [3361] = {.lex_state = 182, .external_lex_state = 1}, - [3362] = {.lex_state = 262}, - [3363] = {.lex_state = 262}, - [3364] = {.lex_state = 234, .external_lex_state = 1}, - [3365] = {.lex_state = 264}, - [3366] = {.lex_state = 274, .external_lex_state = 1}, - [3367] = {.lex_state = 247}, - [3368] = {.lex_state = 264}, + [3361] = {.lex_state = 262}, + [3362] = {.lex_state = 261}, + [3363] = {.lex_state = 182}, + [3364] = {.lex_state = 182}, + [3365] = {.lex_state = 172}, + [3366] = {.lex_state = 265}, + [3367] = {.lex_state = 172}, + [3368] = {.lex_state = 172}, [3369] = {.lex_state = 189}, [3370] = {.lex_state = 172}, [3371] = {.lex_state = 172}, - [3372] = {.lex_state = 172}, - [3373] = {.lex_state = 172}, - [3374] = {.lex_state = 172, .external_lex_state = 1}, - [3375] = {.lex_state = 234, .external_lex_state = 1}, - [3376] = {.lex_state = 264}, - [3377] = {.lex_state = 284}, - [3378] = {.lex_state = 263}, - [3379] = {.lex_state = 188, .external_lex_state = 1}, - [3380] = {.lex_state = 317, .external_lex_state = 1}, - [3381] = {.lex_state = 182, .external_lex_state = 1}, - [3382] = {.lex_state = 264}, - [3383] = {.lex_state = 264}, - [3384] = {.lex_state = 264}, - [3385] = {.lex_state = 264}, - [3386] = {.lex_state = 264}, - [3387] = {.lex_state = 263}, - [3388] = {.lex_state = 263}, - [3389] = {.lex_state = 264}, - [3390] = {.lex_state = 263}, - [3391] = {.lex_state = 182}, - [3392] = {.lex_state = 172}, - [3393] = {.lex_state = 182}, - [3394] = {.lex_state = 266}, - [3395] = {.lex_state = 172}, - [3396] = {.lex_state = 172}, - [3397] = {.lex_state = 189}, - [3398] = {.lex_state = 172}, + [3372] = {.lex_state = 203}, + [3373] = {.lex_state = 219}, + [3374] = {.lex_state = 172}, + [3375] = {.lex_state = 247}, + [3376] = {.lex_state = 172}, + [3377] = {.lex_state = 188}, + [3378] = {.lex_state = 172}, + [3379] = {.lex_state = 182}, + [3380] = {.lex_state = 172}, + [3381] = {.lex_state = 172}, + [3382] = {.lex_state = 308}, + [3383] = {.lex_state = 249}, + [3384] = {.lex_state = 247}, + [3385] = {.lex_state = 188}, + [3386] = {.lex_state = 300}, + [3387] = {.lex_state = 268}, + [3388] = {.lex_state = 300}, + [3389] = {.lex_state = 172}, + [3390] = {.lex_state = 172}, + [3391] = {.lex_state = 300}, + [3392] = {.lex_state = 300}, + [3393] = {.lex_state = 249}, + [3394] = {.lex_state = 189}, + [3395] = {.lex_state = 249}, + [3396] = {.lex_state = 300}, + [3397] = {.lex_state = 172}, + [3398] = {.lex_state = 188}, [3399] = {.lex_state = 172}, - [3400] = {.lex_state = 203}, - [3401] = {.lex_state = 219}, + [3400] = {.lex_state = 300}, + [3401] = {.lex_state = 285}, [3402] = {.lex_state = 172}, - [3403] = {.lex_state = 235}, - [3404] = {.lex_state = 172}, - [3405] = {.lex_state = 172}, - [3406] = {.lex_state = 172}, - [3407] = {.lex_state = 182}, - [3408] = {.lex_state = 172}, + [3403] = {.lex_state = 249}, + [3404] = {.lex_state = 265}, + [3405] = {.lex_state = 300}, + [3406] = {.lex_state = 274}, + [3407] = {.lex_state = 300}, + [3408] = {.lex_state = 182, .external_lex_state = 1}, [3409] = {.lex_state = 172}, [3410] = {.lex_state = 247}, - [3411] = {.lex_state = 294}, - [3412] = {.lex_state = 172}, - [3413] = {.lex_state = 310}, - [3414] = {.lex_state = 302}, - [3415] = {.lex_state = 270}, - [3416] = {.lex_state = 302}, - [3417] = {.lex_state = 172}, - [3418] = {.lex_state = 172}, - [3419] = {.lex_state = 302}, - [3420] = {.lex_state = 302}, - [3421] = {.lex_state = 247}, - [3422] = {.lex_state = 189}, + [3411] = {.lex_state = 172}, + [3412] = {.lex_state = 172, .external_lex_state = 1}, + [3413] = {.lex_state = 300}, + [3414] = {.lex_state = 300}, + [3415] = {.lex_state = 182}, + [3416] = {.lex_state = 247}, + [3417] = {.lex_state = 189}, + [3418] = {.lex_state = 265}, + [3419] = {.lex_state = 172}, + [3420] = {.lex_state = 265}, + [3421] = {.lex_state = 274}, + [3422] = {.lex_state = 247}, [3423] = {.lex_state = 172}, - [3424] = {.lex_state = 172}, - [3425] = {.lex_state = 302}, - [3426] = {.lex_state = 172}, - [3427] = {.lex_state = 172}, - [3428] = {.lex_state = 302}, - [3429] = {.lex_state = 286}, - [3430] = {.lex_state = 235}, - [3431] = {.lex_state = 302}, - [3432] = {.lex_state = 182, .external_lex_state = 1}, - [3433] = {.lex_state = 294}, - [3434] = {.lex_state = 172}, - [3435] = {.lex_state = 172}, - [3436] = {.lex_state = 172, .external_lex_state = 1}, - [3437] = {.lex_state = 302}, - [3438] = {.lex_state = 302}, - [3439] = {.lex_state = 182}, - [3440] = {.lex_state = 172}, - [3441] = {.lex_state = 247}, - [3442] = {.lex_state = 266}, - [3443] = {.lex_state = 302}, - [3444] = {.lex_state = 276}, - [3445] = {.lex_state = 189}, - [3446] = {.lex_state = 266}, - [3447] = {.lex_state = 172}, - [3448] = {.lex_state = 266}, - [3449] = {.lex_state = 276}, - [3450] = {.lex_state = 247}, - [3451] = {.lex_state = 172}, - [3452] = {.lex_state = 182, .external_lex_state = 1}, - [3453] = {.lex_state = 266}, - [3454] = {.lex_state = 294}, - [3455] = {.lex_state = 189}, - [3456] = {.lex_state = 172}, - [3457] = {.lex_state = 266}, - [3458] = {.lex_state = 266}, - [3459] = {.lex_state = 172}, - [3460] = {.lex_state = 266}, - [3461] = {.lex_state = 266}, - [3462] = {.lex_state = 266}, - [3463] = {.lex_state = 270}, - [3464] = {.lex_state = 172}, - [3465] = {.lex_state = 294}, - [3466] = {.lex_state = 294}, - [3467] = {.lex_state = 294}, - [3468] = {.lex_state = 266}, - [3469] = {.lex_state = 263}, + [3424] = {.lex_state = 265}, + [3425] = {.lex_state = 182, .external_lex_state = 1}, + [3426] = {.lex_state = 247}, + [3427] = {.lex_state = 189}, + [3428] = {.lex_state = 172}, + [3429] = {.lex_state = 265}, + [3430] = {.lex_state = 265}, + [3431] = {.lex_state = 172}, + [3432] = {.lex_state = 265}, + [3433] = {.lex_state = 265}, + [3434] = {.lex_state = 265}, + [3435] = {.lex_state = 268}, + [3436] = {.lex_state = 172}, + [3437] = {.lex_state = 247}, + [3438] = {.lex_state = 247}, + [3439] = {.lex_state = 247}, + [3440] = {.lex_state = 247}, + [3441] = {.lex_state = 182, .external_lex_state = 1}, + [3442] = {.lex_state = 265}, + [3443] = {.lex_state = 261}, + [3444] = {.lex_state = 172}, + [3445] = {.lex_state = 261}, + [3446] = {.lex_state = 317}, + [3447] = {.lex_state = 261}, + [3448] = {.lex_state = 172}, + [3449] = {.lex_state = 247}, + [3450] = {.lex_state = 317}, + [3451] = {.lex_state = 182, .external_lex_state = 1}, + [3452] = {.lex_state = 282}, + [3453] = {.lex_state = 182, .external_lex_state = 1}, + [3454] = {.lex_state = 234, .external_lex_state = 1}, + [3455] = {.lex_state = 247}, + [3456] = {.lex_state = 265}, + [3457] = {.lex_state = 172}, + [3458] = {.lex_state = 247}, + [3459] = {.lex_state = 247}, + [3460] = {.lex_state = 265}, + [3461] = {.lex_state = 265}, + [3462] = {.lex_state = 265}, + [3463] = {.lex_state = 265}, + [3464] = {.lex_state = 247}, + [3465] = {.lex_state = 189}, + [3466] = {.lex_state = 189}, + [3467] = {.lex_state = 247}, + [3468] = {.lex_state = 189}, + [3469] = {.lex_state = 247}, [3470] = {.lex_state = 172}, - [3471] = {.lex_state = 263}, - [3472] = {.lex_state = 318}, - [3473] = {.lex_state = 263}, + [3471] = {.lex_state = 189}, + [3472] = {.lex_state = 189}, + [3473] = {.lex_state = 271}, [3474] = {.lex_state = 172}, - [3475] = {.lex_state = 294}, - [3476] = {.lex_state = 318}, - [3477] = {.lex_state = 182, .external_lex_state = 1}, - [3478] = {.lex_state = 284}, - [3479] = {.lex_state = 182, .external_lex_state = 1}, - [3480] = {.lex_state = 234, .external_lex_state = 1}, - [3481] = {.lex_state = 294}, - [3482] = {.lex_state = 266}, + [3475] = {.lex_state = 271}, + [3476] = {.lex_state = 271}, + [3477] = {.lex_state = 172}, + [3478] = {.lex_state = 271}, + [3479] = {.lex_state = 172}, + [3480] = {.lex_state = 271}, + [3481] = {.lex_state = 172}, + [3482] = {.lex_state = 271}, [3483] = {.lex_state = 172}, - [3484] = {.lex_state = 294}, - [3485] = {.lex_state = 294}, - [3486] = {.lex_state = 266}, - [3487] = {.lex_state = 266}, - [3488] = {.lex_state = 266}, - [3489] = {.lex_state = 294}, - [3490] = {.lex_state = 182, .external_lex_state = 1}, - [3491] = {.lex_state = 266}, - [3492] = {.lex_state = 189}, - [3493] = {.lex_state = 247}, - [3494] = {.lex_state = 189}, - [3495] = {.lex_state = 172}, + [3484] = {.lex_state = 172}, + [3485] = {.lex_state = 271}, + [3486] = {.lex_state = 172}, + [3487] = {.lex_state = 271}, + [3488] = {.lex_state = 172}, + [3489] = {.lex_state = 189}, + [3490] = {.lex_state = 271}, + [3491] = {.lex_state = 189}, + [3492] = {.lex_state = 288}, + [3493] = {.lex_state = 288}, + [3494] = {.lex_state = 271}, + [3495] = {.lex_state = 234, .external_lex_state = 1}, [3496] = {.lex_state = 189}, - [3497] = {.lex_state = 247}, - [3498] = {.lex_state = 189}, - [3499] = {.lex_state = 189}, - [3500] = {.lex_state = 247}, - [3501] = {.lex_state = 273}, - [3502] = {.lex_state = 172}, - [3503] = {.lex_state = 273}, - [3504] = {.lex_state = 273}, - [3505] = {.lex_state = 172}, - [3506] = {.lex_state = 273}, - [3507] = {.lex_state = 172}, - [3508] = {.lex_state = 273}, - [3509] = {.lex_state = 172}, - [3510] = {.lex_state = 273}, - [3511] = {.lex_state = 172}, + [3497] = {.lex_state = 188}, + [3498] = {.lex_state = 188}, + [3499] = {.lex_state = 188}, + [3500] = {.lex_state = 182}, + [3501] = {.lex_state = 182}, + [3502] = {.lex_state = 271}, + [3503] = {.lex_state = 253}, + [3504] = {.lex_state = 253}, + [3505] = {.lex_state = 172, .external_lex_state = 1}, + [3506] = {.lex_state = 182, .external_lex_state = 1}, + [3507] = {.lex_state = 234, .external_lex_state = 1}, + [3508] = {.lex_state = 261}, + [3509] = {.lex_state = 262}, + [3510] = {.lex_state = 272, .external_lex_state = 1}, + [3511] = {.lex_state = 234, .external_lex_state = 1}, [3512] = {.lex_state = 172}, - [3513] = {.lex_state = 273}, - [3514] = {.lex_state = 172}, - [3515] = {.lex_state = 273}, - [3516] = {.lex_state = 172}, - [3517] = {.lex_state = 189}, - [3518] = {.lex_state = 273}, - [3519] = {.lex_state = 189}, - [3520] = {.lex_state = 288}, - [3521] = {.lex_state = 288}, - [3522] = {.lex_state = 273}, - [3523] = {.lex_state = 234, .external_lex_state = 1}, - [3524] = {.lex_state = 189}, - [3525] = {.lex_state = 188}, - [3526] = {.lex_state = 188}, - [3527] = {.lex_state = 188}, - [3528] = {.lex_state = 182}, - [3529] = {.lex_state = 182}, - [3530] = {.lex_state = 273}, - [3531] = {.lex_state = 252}, - [3532] = {.lex_state = 252}, - [3533] = {.lex_state = 172, .external_lex_state = 1}, - [3534] = {.lex_state = 182, .external_lex_state = 1}, - [3535] = {.lex_state = 234, .external_lex_state = 1}, - [3536] = {.lex_state = 263}, - [3537] = {.lex_state = 264}, - [3538] = {.lex_state = 274, .external_lex_state = 1}, - [3539] = {.lex_state = 294}, - [3540] = {.lex_state = 294}, - [3541] = {.lex_state = 234, .external_lex_state = 1}, - [3542] = {.lex_state = 172}, - [3543] = {.lex_state = 234, .external_lex_state = 1}, - [3544] = {.lex_state = 284}, - [3545] = {.lex_state = 283}, - [3546] = {.lex_state = 283}, - [3547] = {.lex_state = 188, .external_lex_state = 1}, - [3548] = {.lex_state = 319, .external_lex_state = 1}, - [3549] = {.lex_state = 283}, - [3550] = {.lex_state = 257}, - [3551] = {.lex_state = 283}, - [3552] = {.lex_state = 257}, - [3553] = {.lex_state = 283}, - [3554] = {.lex_state = 234, .external_lex_state = 1}, - [3555] = {.lex_state = 172}, - [3556] = {.lex_state = 235}, - [3557] = {.lex_state = 283}, - [3558] = {.lex_state = 172}, - [3559] = {.lex_state = 283}, - [3560] = {.lex_state = 266}, - [3561] = {.lex_state = 283}, - [3562] = {.lex_state = 172}, - [3563] = {.lex_state = 235}, - [3564] = {.lex_state = 235}, - [3565] = {.lex_state = 283}, + [3513] = {.lex_state = 234, .external_lex_state = 1}, + [3514] = {.lex_state = 247}, + [3515] = {.lex_state = 247}, + [3516] = {.lex_state = 282}, + [3517] = {.lex_state = 281}, + [3518] = {.lex_state = 281}, + [3519] = {.lex_state = 188, .external_lex_state = 1}, + [3520] = {.lex_state = 318, .external_lex_state = 1}, + [3521] = {.lex_state = 281}, + [3522] = {.lex_state = 257}, + [3523] = {.lex_state = 281}, + [3524] = {.lex_state = 257}, + [3525] = {.lex_state = 281}, + [3526] = {.lex_state = 234, .external_lex_state = 1}, + [3527] = {.lex_state = 172}, + [3528] = {.lex_state = 247}, + [3529] = {.lex_state = 281}, + [3530] = {.lex_state = 172}, + [3531] = {.lex_state = 281}, + [3532] = {.lex_state = 265}, + [3533] = {.lex_state = 247}, + [3534] = {.lex_state = 281}, + [3535] = {.lex_state = 172}, + [3536] = {.lex_state = 247}, + [3537] = {.lex_state = 281}, + [3538] = {.lex_state = 172}, + [3539] = {.lex_state = 247}, + [3540] = {.lex_state = 281}, + [3541] = {.lex_state = 172}, + [3542] = {.lex_state = 281}, + [3543] = {.lex_state = 172}, + [3544] = {.lex_state = 281}, + [3545] = {.lex_state = 172}, + [3546] = {.lex_state = 281}, + [3547] = {.lex_state = 247}, + [3548] = {.lex_state = 281}, + [3549] = {.lex_state = 172}, + [3550] = {.lex_state = 247}, + [3551] = {.lex_state = 281}, + [3552] = {.lex_state = 172}, + [3553] = {.lex_state = 282}, + [3554] = {.lex_state = 281}, + [3555] = {.lex_state = 281}, + [3556] = {.lex_state = 281}, + [3557] = {.lex_state = 281}, + [3558] = {.lex_state = 182, .external_lex_state = 1}, + [3559] = {.lex_state = 281}, + [3560] = {.lex_state = 172, .external_lex_state = 1}, + [3561] = {.lex_state = 282}, + [3562] = {.lex_state = 282}, + [3563] = {.lex_state = 282}, + [3564] = {.lex_state = 234, .external_lex_state = 1}, + [3565] = {.lex_state = 303}, [3566] = {.lex_state = 172}, - [3567] = {.lex_state = 283}, - [3568] = {.lex_state = 172}, - [3569] = {.lex_state = 235}, - [3570] = {.lex_state = 283}, + [3567] = {.lex_state = 303}, + [3568] = {.lex_state = 303}, + [3569] = {.lex_state = 172}, + [3570] = {.lex_state = 303}, [3571] = {.lex_state = 172}, - [3572] = {.lex_state = 283}, + [3572] = {.lex_state = 303}, [3573] = {.lex_state = 172}, - [3574] = {.lex_state = 283}, - [3575] = {.lex_state = 235}, - [3576] = {.lex_state = 283}, - [3577] = {.lex_state = 172}, - [3578] = {.lex_state = 283}, - [3579] = {.lex_state = 172}, - [3580] = {.lex_state = 235}, - [3581] = {.lex_state = 283}, - [3582] = {.lex_state = 284}, - [3583] = {.lex_state = 283}, - [3584] = {.lex_state = 283}, - [3585] = {.lex_state = 283}, - [3586] = {.lex_state = 182, .external_lex_state = 1}, - [3587] = {.lex_state = 283}, - [3588] = {.lex_state = 172, .external_lex_state = 1}, - [3589] = {.lex_state = 284}, - [3590] = {.lex_state = 284}, - [3591] = {.lex_state = 284}, - [3592] = {.lex_state = 234, .external_lex_state = 1}, - [3593] = {.lex_state = 304}, - [3594] = {.lex_state = 172}, - [3595] = {.lex_state = 304}, - [3596] = {.lex_state = 304}, - [3597] = {.lex_state = 172}, - [3598] = {.lex_state = 304}, - [3599] = {.lex_state = 172}, - [3600] = {.lex_state = 304}, - [3601] = {.lex_state = 172}, - [3602] = {.lex_state = 304}, - [3603] = {.lex_state = 172}, - [3604] = {.lex_state = 172}, - [3605] = {.lex_state = 304}, - [3606] = {.lex_state = 172}, - [3607] = {.lex_state = 304}, - [3608] = {.lex_state = 172}, - [3609] = {.lex_state = 284}, - [3610] = {.lex_state = 263}, - [3611] = {.lex_state = 284}, - [3612] = {.lex_state = 284}, - [3613] = {.lex_state = 306}, - [3614] = {.lex_state = 284}, - [3615] = {.lex_state = 284}, - [3616] = {.lex_state = 188, .external_lex_state = 1}, + [3574] = {.lex_state = 303}, + [3575] = {.lex_state = 172}, + [3576] = {.lex_state = 172}, + [3577] = {.lex_state = 303}, + [3578] = {.lex_state = 172}, + [3579] = {.lex_state = 303}, + [3580] = {.lex_state = 172}, + [3581] = {.lex_state = 282}, + [3582] = {.lex_state = 261}, + [3583] = {.lex_state = 282}, + [3584] = {.lex_state = 282}, + [3585] = {.lex_state = 304}, + [3586] = {.lex_state = 282}, + [3587] = {.lex_state = 282}, + [3588] = {.lex_state = 188, .external_lex_state = 1}, + [3589] = {.lex_state = 182, .external_lex_state = 1}, + [3590] = {.lex_state = 182, .external_lex_state = 1}, + [3591] = {.lex_state = 261}, + [3592] = {.lex_state = 261}, + [3593] = {.lex_state = 261}, + [3594] = {.lex_state = 261}, + [3595] = {.lex_state = 182, .external_lex_state = 1}, + [3596] = {.lex_state = 261}, + [3597] = {.lex_state = 188, .external_lex_state = 1}, + [3598] = {.lex_state = 261}, + [3599] = {.lex_state = 261}, + [3600] = {.lex_state = 261}, + [3601] = {.lex_state = 261}, + [3602] = {.lex_state = 261}, + [3603] = {.lex_state = 261}, + [3604] = {.lex_state = 261}, + [3605] = {.lex_state = 261}, + [3606] = {.lex_state = 247}, + [3607] = {.lex_state = 261}, + [3608] = {.lex_state = 261}, + [3609] = {.lex_state = 307, .external_lex_state = 1}, + [3610] = {.lex_state = 282}, + [3611] = {.lex_state = 262}, + [3612] = {.lex_state = 182, .external_lex_state = 1}, + [3613] = {.lex_state = 234, .external_lex_state = 1}, + [3614] = {.lex_state = 234, .external_lex_state = 1}, + [3615] = {.lex_state = 274, .external_lex_state = 1}, + [3616] = {.lex_state = 172}, [3617] = {.lex_state = 182, .external_lex_state = 1}, - [3618] = {.lex_state = 182, .external_lex_state = 1}, - [3619] = {.lex_state = 263}, - [3620] = {.lex_state = 263}, - [3621] = {.lex_state = 263}, - [3622] = {.lex_state = 263}, - [3623] = {.lex_state = 182, .external_lex_state = 1}, - [3624] = {.lex_state = 263}, - [3625] = {.lex_state = 188, .external_lex_state = 1}, - [3626] = {.lex_state = 263}, - [3627] = {.lex_state = 263}, - [3628] = {.lex_state = 263}, - [3629] = {.lex_state = 263}, - [3630] = {.lex_state = 263}, - [3631] = {.lex_state = 263}, - [3632] = {.lex_state = 263}, - [3633] = {.lex_state = 263}, - [3634] = {.lex_state = 235}, - [3635] = {.lex_state = 263}, - [3636] = {.lex_state = 263}, - [3637] = {.lex_state = 309, .external_lex_state = 1}, - [3638] = {.lex_state = 284}, - [3639] = {.lex_state = 264}, - [3640] = {.lex_state = 182, .external_lex_state = 1}, - [3641] = {.lex_state = 234, .external_lex_state = 1}, - [3642] = {.lex_state = 234, .external_lex_state = 1}, - [3643] = {.lex_state = 276, .external_lex_state = 1}, - [3644] = {.lex_state = 172}, - [3645] = {.lex_state = 182, .external_lex_state = 1}, - [3646] = {.lex_state = 172}, - [3647] = {.lex_state = 234, .external_lex_state = 1}, - [3648] = {.lex_state = 172, .external_lex_state = 1}, + [3618] = {.lex_state = 172}, + [3619] = {.lex_state = 234, .external_lex_state = 1}, + [3620] = {.lex_state = 172, .external_lex_state = 1}, + [3621] = {.lex_state = 172}, + [3622] = {.lex_state = 234, .external_lex_state = 1}, + [3623] = {.lex_state = 262}, + [3624] = {.lex_state = 272, .external_lex_state = 1}, + [3625] = {.lex_state = 247}, + [3626] = {.lex_state = 262}, + [3627] = {.lex_state = 172}, + [3628] = {.lex_state = 189}, + [3629] = {.lex_state = 172}, + [3630] = {.lex_state = 172}, + [3631] = {.lex_state = 172}, + [3632] = {.lex_state = 172}, + [3633] = {.lex_state = 172}, + [3634] = {.lex_state = 234, .external_lex_state = 1}, + [3635] = {.lex_state = 172, .external_lex_state = 1}, + [3636] = {.lex_state = 172}, + [3637] = {.lex_state = 257}, + [3638] = {.lex_state = 257}, + [3639] = {.lex_state = 290}, + [3640] = {.lex_state = 290}, + [3641] = {.lex_state = 257}, + [3642] = {.lex_state = 290}, + [3643] = {.lex_state = 257}, + [3644] = {.lex_state = 257}, + [3645] = {.lex_state = 262}, + [3646] = {.lex_state = 290}, + [3647] = {.lex_state = 257}, + [3648] = {.lex_state = 290}, [3649] = {.lex_state = 172}, - [3650] = {.lex_state = 234, .external_lex_state = 1}, - [3651] = {.lex_state = 264}, - [3652] = {.lex_state = 274, .external_lex_state = 1}, + [3650] = {.lex_state = 257}, + [3651] = {.lex_state = 247}, + [3652] = {.lex_state = 247}, [3653] = {.lex_state = 247}, - [3654] = {.lex_state = 264}, - [3655] = {.lex_state = 172}, - [3656] = {.lex_state = 189}, - [3657] = {.lex_state = 172}, - [3658] = {.lex_state = 172}, - [3659] = {.lex_state = 172}, - [3660] = {.lex_state = 172}, - [3661] = {.lex_state = 172}, - [3662] = {.lex_state = 234, .external_lex_state = 1}, - [3663] = {.lex_state = 172, .external_lex_state = 1}, - [3664] = {.lex_state = 172}, - [3665] = {.lex_state = 257}, - [3666] = {.lex_state = 257}, - [3667] = {.lex_state = 290}, - [3668] = {.lex_state = 290}, - [3669] = {.lex_state = 257}, - [3670] = {.lex_state = 257}, - [3671] = {.lex_state = 290}, - [3672] = {.lex_state = 257}, - [3673] = {.lex_state = 264}, - [3674] = {.lex_state = 257}, - [3675] = {.lex_state = 290}, - [3676] = {.lex_state = 290}, + [3654] = {.lex_state = 189}, + [3655] = {.lex_state = 189}, + [3656] = {.lex_state = 247}, + [3657] = {.lex_state = 188, .external_lex_state = 1}, + [3658] = {.lex_state = 310, .external_lex_state = 1}, + [3659] = {.lex_state = 282}, + [3660] = {.lex_state = 189}, + [3661] = {.lex_state = 182, .external_lex_state = 1}, + [3662] = {.lex_state = 247}, + [3663] = {.lex_state = 247}, + [3664] = {.lex_state = 261}, + [3665] = {.lex_state = 203}, + [3666] = {.lex_state = 261}, + [3667] = {.lex_state = 262}, + [3668] = {.lex_state = 262}, + [3669] = {.lex_state = 261}, + [3670] = {.lex_state = 262}, + [3671] = {.lex_state = 261}, + [3672] = {.lex_state = 261}, + [3673] = {.lex_state = 262}, + [3674] = {.lex_state = 261}, + [3675] = {.lex_state = 261}, + [3676] = {.lex_state = 262}, [3677] = {.lex_state = 172}, - [3678] = {.lex_state = 257}, - [3679] = {.lex_state = 247}, - [3680] = {.lex_state = 247}, - [3681] = {.lex_state = 247}, - [3682] = {.lex_state = 189}, - [3683] = {.lex_state = 189}, - [3684] = {.lex_state = 247}, + [3678] = {.lex_state = 261}, + [3679] = {.lex_state = 172}, + [3680] = {.lex_state = 262}, + [3681] = {.lex_state = 262}, + [3682] = {.lex_state = 261}, + [3683] = {.lex_state = 261}, + [3684] = {.lex_state = 188}, [3685] = {.lex_state = 188, .external_lex_state = 1}, - [3686] = {.lex_state = 312, .external_lex_state = 1}, - [3687] = {.lex_state = 284}, - [3688] = {.lex_state = 189}, - [3689] = {.lex_state = 182, .external_lex_state = 1}, - [3690] = {.lex_state = 247}, - [3691] = {.lex_state = 247}, - [3692] = {.lex_state = 263}, - [3693] = {.lex_state = 203}, - [3694] = {.lex_state = 263}, - [3695] = {.lex_state = 188, .external_lex_state = 1}, - [3696] = {.lex_state = 182, .external_lex_state = 1}, - [3697] = {.lex_state = 182, .external_lex_state = 1}, - [3698] = {.lex_state = 283}, - [3699] = {.lex_state = 263}, - [3700] = {.lex_state = 283}, - [3701] = {.lex_state = 283}, - [3702] = {.lex_state = 182, .external_lex_state = 1}, - [3703] = {.lex_state = 283}, - [3704] = {.lex_state = 188, .external_lex_state = 1}, - [3705] = {.lex_state = 283}, - [3706] = {.lex_state = 283}, - [3707] = {.lex_state = 283}, - [3708] = {.lex_state = 283}, - [3709] = {.lex_state = 283}, - [3710] = {.lex_state = 283}, - [3711] = {.lex_state = 283}, - [3712] = {.lex_state = 283}, - [3713] = {.lex_state = 235}, - [3714] = {.lex_state = 283}, - [3715] = {.lex_state = 283}, - [3716] = {.lex_state = 313, .external_lex_state = 1}, - [3717] = {.lex_state = 284}, - [3718] = {.lex_state = 284}, - [3719] = {.lex_state = 182, .external_lex_state = 1}, - [3720] = {.lex_state = 235}, - [3721] = {.lex_state = 188, .external_lex_state = 1}, + [3686] = {.lex_state = 182, .external_lex_state = 1}, + [3687] = {.lex_state = 182, .external_lex_state = 1}, + [3688] = {.lex_state = 281}, + [3689] = {.lex_state = 261}, + [3690] = {.lex_state = 281}, + [3691] = {.lex_state = 281}, + [3692] = {.lex_state = 182, .external_lex_state = 1}, + [3693] = {.lex_state = 281}, + [3694] = {.lex_state = 188, .external_lex_state = 1}, + [3695] = {.lex_state = 281}, + [3696] = {.lex_state = 281}, + [3697] = {.lex_state = 281}, + [3698] = {.lex_state = 281}, + [3699] = {.lex_state = 281}, + [3700] = {.lex_state = 281}, + [3701] = {.lex_state = 281}, + [3702] = {.lex_state = 281}, + [3703] = {.lex_state = 247}, + [3704] = {.lex_state = 281}, + [3705] = {.lex_state = 281}, + [3706] = {.lex_state = 311, .external_lex_state = 1}, + [3707] = {.lex_state = 282}, + [3708] = {.lex_state = 282}, + [3709] = {.lex_state = 182, .external_lex_state = 1}, + [3710] = {.lex_state = 182}, + [3711] = {.lex_state = 188}, + [3712] = {.lex_state = 182}, + [3713] = {.lex_state = 263}, + [3714] = {.lex_state = 247}, + [3715] = {.lex_state = 188, .external_lex_state = 1}, + [3716] = {.lex_state = 182, .external_lex_state = 1}, + [3717] = {.lex_state = 182, .external_lex_state = 1}, + [3718] = {.lex_state = 271}, + [3719] = {.lex_state = 261}, + [3720] = {.lex_state = 271}, + [3721] = {.lex_state = 271}, [3722] = {.lex_state = 182, .external_lex_state = 1}, - [3723] = {.lex_state = 182, .external_lex_state = 1}, - [3724] = {.lex_state = 273}, - [3725] = {.lex_state = 263}, - [3726] = {.lex_state = 273}, - [3727] = {.lex_state = 273}, - [3728] = {.lex_state = 182, .external_lex_state = 1}, - [3729] = {.lex_state = 273}, - [3730] = {.lex_state = 273}, - [3731] = {.lex_state = 188, .external_lex_state = 1}, - [3732] = {.lex_state = 273}, - [3733] = {.lex_state = 273}, - [3734] = {.lex_state = 273}, - [3735] = {.lex_state = 273}, - [3736] = {.lex_state = 273}, - [3737] = {.lex_state = 273}, - [3738] = {.lex_state = 273}, - [3739] = {.lex_state = 273}, - [3740] = {.lex_state = 273}, - [3741] = {.lex_state = 235}, - [3742] = {.lex_state = 273}, - [3743] = {.lex_state = 273}, - [3744] = {.lex_state = 290}, - [3745] = {.lex_state = 257}, - [3746] = {.lex_state = 273}, - [3747] = {.lex_state = 248, .external_lex_state = 1}, - [3748] = {.lex_state = 284}, - [3749] = {.lex_state = 235}, - [3750] = {.lex_state = 182, .external_lex_state = 1}, - [3751] = {.lex_state = 294}, - [3752] = {.lex_state = 257}, - [3753] = {.lex_state = 294}, - [3754] = {.lex_state = 257}, - [3755] = {.lex_state = 264}, - [3756] = {.lex_state = 264}, - [3757] = {.lex_state = 263}, - [3758] = {.lex_state = 263}, - [3759] = {.lex_state = 264}, - [3760] = {.lex_state = 263}, - [3761] = {.lex_state = 263}, - [3762] = {.lex_state = 264}, - [3763] = {.lex_state = 263}, - [3764] = {.lex_state = 264}, - [3765] = {.lex_state = 172}, - [3766] = {.lex_state = 263}, - [3767] = {.lex_state = 172}, - [3768] = {.lex_state = 264}, - [3769] = {.lex_state = 264}, - [3770] = {.lex_state = 263}, - [3771] = {.lex_state = 263}, - [3772] = {.lex_state = 235}, - [3773] = {.lex_state = 235}, - [3774] = {.lex_state = 235}, - [3775] = {.lex_state = 235}, - [3776] = {.lex_state = 235}, - [3777] = {.lex_state = 264}, - [3778] = {.lex_state = 264}, + [3723] = {.lex_state = 271}, + [3724] = {.lex_state = 271}, + [3725] = {.lex_state = 188, .external_lex_state = 1}, + [3726] = {.lex_state = 271}, + [3727] = {.lex_state = 271}, + [3728] = {.lex_state = 271}, + [3729] = {.lex_state = 271}, + [3730] = {.lex_state = 271}, + [3731] = {.lex_state = 271}, + [3732] = {.lex_state = 271}, + [3733] = {.lex_state = 271}, + [3734] = {.lex_state = 271}, + [3735] = {.lex_state = 247}, + [3736] = {.lex_state = 271}, + [3737] = {.lex_state = 271}, + [3738] = {.lex_state = 290}, + [3739] = {.lex_state = 257}, + [3740] = {.lex_state = 271}, + [3741] = {.lex_state = 249, .external_lex_state = 1}, + [3742] = {.lex_state = 282}, + [3743] = {.lex_state = 247}, + [3744] = {.lex_state = 182, .external_lex_state = 1}, + [3745] = {.lex_state = 247}, + [3746] = {.lex_state = 257}, + [3747] = {.lex_state = 247}, + [3748] = {.lex_state = 257}, + [3749] = {.lex_state = 247}, + [3750] = {.lex_state = 247}, + [3751] = {.lex_state = 247}, + [3752] = {.lex_state = 247}, + [3753] = {.lex_state = 247}, + [3754] = {.lex_state = 182, .external_lex_state = 1}, + [3755] = {.lex_state = 182, .external_lex_state = 1}, + [3756] = {.lex_state = 261}, + [3757] = {.lex_state = 247}, + [3758] = {.lex_state = 188, .external_lex_state = 1}, + [3759] = {.lex_state = 182, .external_lex_state = 1}, + [3760] = {.lex_state = 182, .external_lex_state = 1}, + [3761] = {.lex_state = 247}, + [3762] = {.lex_state = 261}, + [3763] = {.lex_state = 172}, + [3764] = {.lex_state = 189}, + [3765] = {.lex_state = 189}, + [3766] = {.lex_state = 172}, + [3767] = {.lex_state = 182, .external_lex_state = 1}, + [3768] = {.lex_state = 189}, + [3769] = {.lex_state = 182, .external_lex_state = 1}, + [3770] = {.lex_state = 182, .external_lex_state = 1}, + [3771] = {.lex_state = 189}, + [3772] = {.lex_state = 182, .external_lex_state = 1}, + [3773] = {.lex_state = 182, .external_lex_state = 1}, + [3774] = {.lex_state = 182, .external_lex_state = 1}, + [3775] = {.lex_state = 182, .external_lex_state = 1}, + [3776] = {.lex_state = 182, .external_lex_state = 1}, + [3777] = {.lex_state = 182, .external_lex_state = 1}, + [3778] = {.lex_state = 182, .external_lex_state = 1}, [3779] = {.lex_state = 182, .external_lex_state = 1}, [3780] = {.lex_state = 182, .external_lex_state = 1}, - [3781] = {.lex_state = 263}, - [3782] = {.lex_state = 247}, - [3783] = {.lex_state = 188, .external_lex_state = 1}, - [3784] = {.lex_state = 182, .external_lex_state = 1}, + [3781] = {.lex_state = 182, .external_lex_state = 1}, + [3782] = {.lex_state = 182, .external_lex_state = 1}, + [3783] = {.lex_state = 189}, + [3784] = {.lex_state = 247}, [3785] = {.lex_state = 182, .external_lex_state = 1}, [3786] = {.lex_state = 247}, - [3787] = {.lex_state = 263}, - [3788] = {.lex_state = 172}, - [3789] = {.lex_state = 189}, - [3790] = {.lex_state = 189}, - [3791] = {.lex_state = 172}, - [3792] = {.lex_state = 182, .external_lex_state = 1}, - [3793] = {.lex_state = 189}, - [3794] = {.lex_state = 182, .external_lex_state = 1}, - [3795] = {.lex_state = 182, .external_lex_state = 1}, - [3796] = {.lex_state = 189}, - [3797] = {.lex_state = 182, .external_lex_state = 1}, - [3798] = {.lex_state = 182, .external_lex_state = 1}, - [3799] = {.lex_state = 182, .external_lex_state = 1}, - [3800] = {.lex_state = 182, .external_lex_state = 1}, - [3801] = {.lex_state = 182, .external_lex_state = 1}, - [3802] = {.lex_state = 182, .external_lex_state = 1}, - [3803] = {.lex_state = 182, .external_lex_state = 1}, - [3804] = {.lex_state = 182, .external_lex_state = 1}, - [3805] = {.lex_state = 182, .external_lex_state = 1}, - [3806] = {.lex_state = 182, .external_lex_state = 1}, - [3807] = {.lex_state = 182, .external_lex_state = 1}, - [3808] = {.lex_state = 189}, - [3809] = {.lex_state = 247}, - [3810] = {.lex_state = 182, .external_lex_state = 1}, - [3811] = {.lex_state = 247}, - [3812] = {.lex_state = 247}, - [3813] = {.lex_state = 247}, - [3814] = {.lex_state = 247}, - [3815] = {.lex_state = 247}, - [3816] = {.lex_state = 247}, - [3817] = {.lex_state = 247}, - [3818] = {.lex_state = 247}, - [3819] = {.lex_state = 247}, - [3820] = {.lex_state = 247}, - [3821] = {.lex_state = 247}, - [3822] = {.lex_state = 235}, - [3823] = {.lex_state = 247}, + [3787] = {.lex_state = 247}, + [3788] = {.lex_state = 247}, + [3789] = {.lex_state = 247}, + [3790] = {.lex_state = 247}, + [3791] = {.lex_state = 247}, + [3792] = {.lex_state = 247}, + [3793] = {.lex_state = 247}, + [3794] = {.lex_state = 247}, + [3795] = {.lex_state = 247}, + [3796] = {.lex_state = 247}, + [3797] = {.lex_state = 247}, + [3798] = {.lex_state = 247}, + [3799] = {.lex_state = 247}, + [3800] = {.lex_state = 247}, + [3801] = {.lex_state = 247}, + [3802] = {.lex_state = 189}, + [3803] = {.lex_state = 189}, + [3804] = {.lex_state = 252}, + [3805] = {.lex_state = 305, .external_lex_state = 1}, + [3806] = {.lex_state = 172}, + [3807] = {.lex_state = 172}, + [3808] = {.lex_state = 172}, + [3809] = {.lex_state = 172}, + [3810] = {.lex_state = 234, .external_lex_state = 1}, + [3811] = {.lex_state = 312}, + [3812] = {.lex_state = 305, .external_lex_state = 1}, + [3813] = {.lex_state = 305, .external_lex_state = 1}, + [3814] = {.lex_state = 172, .external_lex_state = 1}, + [3815] = {.lex_state = 312}, + [3816] = {.lex_state = 172}, + [3817] = {.lex_state = 234, .external_lex_state = 1}, + [3818] = {.lex_state = 172}, + [3819] = {.lex_state = 274, .external_lex_state = 1}, + [3820] = {.lex_state = 182, .external_lex_state = 1}, + [3821] = {.lex_state = 172}, + [3822] = {.lex_state = 172}, + [3823] = {.lex_state = 305, .external_lex_state = 1}, [3824] = {.lex_state = 247}, - [3825] = {.lex_state = 247}, - [3826] = {.lex_state = 247}, - [3827] = {.lex_state = 189}, - [3828] = {.lex_state = 189}, - [3829] = {.lex_state = 188}, - [3830] = {.lex_state = 182}, - [3831] = {.lex_state = 188}, - [3832] = {.lex_state = 182}, - [3833] = {.lex_state = 265}, - [3834] = {.lex_state = 248}, - [3835] = {.lex_state = 307, .external_lex_state = 1}, - [3836] = {.lex_state = 172}, - [3837] = {.lex_state = 172}, + [3825] = {.lex_state = 172}, + [3826] = {.lex_state = 188}, + [3827] = {.lex_state = 305, .external_lex_state = 1}, + [3828] = {.lex_state = 172}, + [3829] = {.lex_state = 305, .external_lex_state = 1}, + [3830] = {.lex_state = 189}, + [3831] = {.lex_state = 172}, + [3832] = {.lex_state = 234, .external_lex_state = 1}, + [3833] = {.lex_state = 234, .external_lex_state = 1}, + [3834] = {.lex_state = 272, .external_lex_state = 1}, + [3835] = {.lex_state = 247}, + [3836] = {.lex_state = 234, .external_lex_state = 1}, + [3837] = {.lex_state = 182, .external_lex_state = 1}, [3838] = {.lex_state = 172}, [3839] = {.lex_state = 234, .external_lex_state = 1}, - [3840] = {.lex_state = 307, .external_lex_state = 1}, - [3841] = {.lex_state = 307, .external_lex_state = 1}, - [3842] = {.lex_state = 172, .external_lex_state = 1}, - [3843] = {.lex_state = 172}, - [3844] = {.lex_state = 234, .external_lex_state = 1}, - [3845] = {.lex_state = 172}, - [3846] = {.lex_state = 276, .external_lex_state = 1}, - [3847] = {.lex_state = 182, .external_lex_state = 1}, - [3848] = {.lex_state = 172}, - [3849] = {.lex_state = 172}, - [3850] = {.lex_state = 307, .external_lex_state = 1}, - [3851] = {.lex_state = 247}, - [3852] = {.lex_state = 172}, - [3853] = {.lex_state = 307, .external_lex_state = 1}, - [3854] = {.lex_state = 189}, - [3855] = {.lex_state = 172}, - [3856] = {.lex_state = 172}, - [3857] = {.lex_state = 307, .external_lex_state = 1}, - [3858] = {.lex_state = 234, .external_lex_state = 1}, - [3859] = {.lex_state = 234, .external_lex_state = 1}, - [3860] = {.lex_state = 274, .external_lex_state = 1}, - [3861] = {.lex_state = 247}, - [3862] = {.lex_state = 234, .external_lex_state = 1}, - [3863] = {.lex_state = 182, .external_lex_state = 1}, - [3864] = {.lex_state = 172}, - [3865] = {.lex_state = 234, .external_lex_state = 1}, - [3866] = {.lex_state = 234, .external_lex_state = 1}, - [3867] = {.lex_state = 264}, - [3868] = {.lex_state = 234, .external_lex_state = 1}, - [3869] = {.lex_state = 307, .external_lex_state = 1}, - [3870] = {.lex_state = 290}, - [3871] = {.lex_state = 290}, - [3872] = {.lex_state = 290}, - [3873] = {.lex_state = 289}, + [3840] = {.lex_state = 234, .external_lex_state = 1}, + [3841] = {.lex_state = 262}, + [3842] = {.lex_state = 234, .external_lex_state = 1}, + [3843] = {.lex_state = 305, .external_lex_state = 1}, + [3844] = {.lex_state = 290}, + [3845] = {.lex_state = 290}, + [3846] = {.lex_state = 290}, + [3847] = {.lex_state = 289}, + [3848] = {.lex_state = 289}, + [3849] = {.lex_state = 188, .external_lex_state = 1}, + [3850] = {.lex_state = 319, .external_lex_state = 1}, + [3851] = {.lex_state = 289}, + [3852] = {.lex_state = 257}, + [3853] = {.lex_state = 289}, + [3854] = {.lex_state = 257}, + [3855] = {.lex_state = 289}, + [3856] = {.lex_state = 234, .external_lex_state = 1}, + [3857] = {.lex_state = 172}, + [3858] = {.lex_state = 247}, + [3859] = {.lex_state = 289}, + [3860] = {.lex_state = 172}, + [3861] = {.lex_state = 289}, + [3862] = {.lex_state = 265}, + [3863] = {.lex_state = 247}, + [3864] = {.lex_state = 289}, + [3865] = {.lex_state = 172}, + [3866] = {.lex_state = 247}, + [3867] = {.lex_state = 289}, + [3868] = {.lex_state = 172}, + [3869] = {.lex_state = 247}, + [3870] = {.lex_state = 289}, + [3871] = {.lex_state = 172}, + [3872] = {.lex_state = 289}, + [3873] = {.lex_state = 172}, [3874] = {.lex_state = 289}, - [3875] = {.lex_state = 188, .external_lex_state = 1}, - [3876] = {.lex_state = 320, .external_lex_state = 1}, - [3877] = {.lex_state = 289}, - [3878] = {.lex_state = 257}, - [3879] = {.lex_state = 289}, - [3880] = {.lex_state = 257}, + [3875] = {.lex_state = 172}, + [3876] = {.lex_state = 289}, + [3877] = {.lex_state = 247}, + [3878] = {.lex_state = 289}, + [3879] = {.lex_state = 172}, + [3880] = {.lex_state = 247}, [3881] = {.lex_state = 289}, - [3882] = {.lex_state = 234, .external_lex_state = 1}, - [3883] = {.lex_state = 172}, - [3884] = {.lex_state = 235}, + [3882] = {.lex_state = 172}, + [3883] = {.lex_state = 282}, + [3884] = {.lex_state = 289}, [3885] = {.lex_state = 289}, - [3886] = {.lex_state = 172}, + [3886] = {.lex_state = 289}, [3887] = {.lex_state = 289}, - [3888] = {.lex_state = 266}, + [3888] = {.lex_state = 182, .external_lex_state = 1}, [3889] = {.lex_state = 289}, - [3890] = {.lex_state = 172}, - [3891] = {.lex_state = 235}, - [3892] = {.lex_state = 235}, - [3893] = {.lex_state = 289}, - [3894] = {.lex_state = 172}, - [3895] = {.lex_state = 289}, - [3896] = {.lex_state = 172}, - [3897] = {.lex_state = 235}, - [3898] = {.lex_state = 289}, - [3899] = {.lex_state = 172}, - [3900] = {.lex_state = 289}, - [3901] = {.lex_state = 172}, - [3902] = {.lex_state = 289}, - [3903] = {.lex_state = 235}, - [3904] = {.lex_state = 289}, - [3905] = {.lex_state = 172}, - [3906] = {.lex_state = 289}, - [3907] = {.lex_state = 172}, - [3908] = {.lex_state = 235}, - [3909] = {.lex_state = 289}, - [3910] = {.lex_state = 284}, - [3911] = {.lex_state = 289}, - [3912] = {.lex_state = 289}, - [3913] = {.lex_state = 289}, - [3914] = {.lex_state = 182, .external_lex_state = 1}, - [3915] = {.lex_state = 289}, - [3916] = {.lex_state = 172, .external_lex_state = 1}, - [3917] = {.lex_state = 290}, - [3918] = {.lex_state = 290}, - [3919] = {.lex_state = 290}, - [3920] = {.lex_state = 290}, - [3921] = {.lex_state = 290}, - [3922] = {.lex_state = 234, .external_lex_state = 1}, - [3923] = {.lex_state = 290}, - [3924] = {.lex_state = 263}, - [3925] = {.lex_state = 290}, - [3926] = {.lex_state = 290}, - [3927] = {.lex_state = 290}, - [3928] = {.lex_state = 172}, - [3929] = {.lex_state = 290}, - [3930] = {.lex_state = 290}, - [3931] = {.lex_state = 289}, - [3932] = {.lex_state = 290}, - [3933] = {.lex_state = 290}, - [3934] = {.lex_state = 257}, - [3935] = {.lex_state = 290}, - [3936] = {.lex_state = 247}, - [3937] = {.lex_state = 188, .external_lex_state = 1}, - [3938] = {.lex_state = 312, .external_lex_state = 1}, - [3939] = {.lex_state = 284}, - [3940] = {.lex_state = 189}, - [3941] = {.lex_state = 182, .external_lex_state = 1}, - [3942] = {.lex_state = 247}, - [3943] = {.lex_state = 247}, - [3944] = {.lex_state = 260, .external_lex_state = 1}, - [3945] = {.lex_state = 172}, - [3946] = {.lex_state = 260, .external_lex_state = 1}, - [3947] = {.lex_state = 260, .external_lex_state = 1}, - [3948] = {.lex_state = 260, .external_lex_state = 1}, - [3949] = {.lex_state = 189}, + [3890] = {.lex_state = 172, .external_lex_state = 1}, + [3891] = {.lex_state = 290}, + [3892] = {.lex_state = 290}, + [3893] = {.lex_state = 290}, + [3894] = {.lex_state = 290}, + [3895] = {.lex_state = 290}, + [3896] = {.lex_state = 234, .external_lex_state = 1}, + [3897] = {.lex_state = 290}, + [3898] = {.lex_state = 261}, + [3899] = {.lex_state = 290}, + [3900] = {.lex_state = 290}, + [3901] = {.lex_state = 290}, + [3902] = {.lex_state = 172}, + [3903] = {.lex_state = 290}, + [3904] = {.lex_state = 290}, + [3905] = {.lex_state = 289}, + [3906] = {.lex_state = 290}, + [3907] = {.lex_state = 290}, + [3908] = {.lex_state = 290}, + [3909] = {.lex_state = 257}, + [3910] = {.lex_state = 247}, + [3911] = {.lex_state = 188, .external_lex_state = 1}, + [3912] = {.lex_state = 310, .external_lex_state = 1}, + [3913] = {.lex_state = 282}, + [3914] = {.lex_state = 189}, + [3915] = {.lex_state = 182, .external_lex_state = 1}, + [3916] = {.lex_state = 247}, + [3917] = {.lex_state = 247}, + [3918] = {.lex_state = 258, .external_lex_state = 1}, + [3919] = {.lex_state = 172}, + [3920] = {.lex_state = 258, .external_lex_state = 1}, + [3921] = {.lex_state = 258, .external_lex_state = 1}, + [3922] = {.lex_state = 258, .external_lex_state = 1}, + [3923] = {.lex_state = 189}, + [3924] = {.lex_state = 291, .external_lex_state = 1}, + [3925] = {.lex_state = 172}, + [3926] = {.lex_state = 291, .external_lex_state = 1}, + [3927] = {.lex_state = 234, .external_lex_state = 1}, + [3928] = {.lex_state = 291, .external_lex_state = 1}, + [3929] = {.lex_state = 274}, + [3930] = {.lex_state = 291, .external_lex_state = 1}, + [3931] = {.lex_state = 291, .external_lex_state = 1}, + [3932] = {.lex_state = 172}, + [3933] = {.lex_state = 291, .external_lex_state = 1}, + [3934] = {.lex_state = 274}, + [3935] = {.lex_state = 172}, + [3936] = {.lex_state = 291, .external_lex_state = 1}, + [3937] = {.lex_state = 272, .external_lex_state = 1}, + [3938] = {.lex_state = 247}, + [3939] = {.lex_state = 234, .external_lex_state = 1}, + [3940] = {.lex_state = 182, .external_lex_state = 1}, + [3941] = {.lex_state = 291, .external_lex_state = 1}, + [3942] = {.lex_state = 234, .external_lex_state = 1}, + [3943] = {.lex_state = 262}, + [3944] = {.lex_state = 182, .external_lex_state = 1}, + [3945] = {.lex_state = 291, .external_lex_state = 1}, + [3946] = {.lex_state = 291, .external_lex_state = 1}, + [3947] = {.lex_state = 291, .external_lex_state = 1}, + [3948] = {.lex_state = 291, .external_lex_state = 1}, + [3949] = {.lex_state = 268}, [3950] = {.lex_state = 291, .external_lex_state = 1}, - [3951] = {.lex_state = 172}, - [3952] = {.lex_state = 291, .external_lex_state = 1}, - [3953] = {.lex_state = 234, .external_lex_state = 1}, + [3951] = {.lex_state = 291, .external_lex_state = 1}, + [3952] = {.lex_state = 172}, + [3953] = {.lex_state = 291, .external_lex_state = 1}, [3954] = {.lex_state = 291, .external_lex_state = 1}, - [3955] = {.lex_state = 276}, + [3955] = {.lex_state = 291, .external_lex_state = 1}, [3956] = {.lex_state = 291, .external_lex_state = 1}, - [3957] = {.lex_state = 291, .external_lex_state = 1}, - [3958] = {.lex_state = 172}, - [3959] = {.lex_state = 291, .external_lex_state = 1}, - [3960] = {.lex_state = 276}, - [3961] = {.lex_state = 172}, - [3962] = {.lex_state = 291, .external_lex_state = 1}, - [3963] = {.lex_state = 274, .external_lex_state = 1}, - [3964] = {.lex_state = 247}, - [3965] = {.lex_state = 234, .external_lex_state = 1}, - [3966] = {.lex_state = 182, .external_lex_state = 1}, - [3967] = {.lex_state = 291, .external_lex_state = 1}, - [3968] = {.lex_state = 234, .external_lex_state = 1}, - [3969] = {.lex_state = 264}, - [3970] = {.lex_state = 182, .external_lex_state = 1}, - [3971] = {.lex_state = 291, .external_lex_state = 1}, - [3972] = {.lex_state = 291, .external_lex_state = 1}, - [3973] = {.lex_state = 291, .external_lex_state = 1}, - [3974] = {.lex_state = 291, .external_lex_state = 1}, - [3975] = {.lex_state = 270}, - [3976] = {.lex_state = 291, .external_lex_state = 1}, - [3977] = {.lex_state = 291, .external_lex_state = 1}, - [3978] = {.lex_state = 291, .external_lex_state = 1}, - [3979] = {.lex_state = 247}, - [3980] = {.lex_state = 172}, - [3981] = {.lex_state = 291, .external_lex_state = 1}, - [3982] = {.lex_state = 291, .external_lex_state = 1}, - [3983] = {.lex_state = 291, .external_lex_state = 1}, - [3984] = {.lex_state = 291, .external_lex_state = 1}, - [3985] = {.lex_state = 172}, - [3986] = {.lex_state = 260, .external_lex_state = 1}, - [3987] = {.lex_state = 260, .external_lex_state = 1}, - [3988] = {.lex_state = 234, .external_lex_state = 1}, - [3989] = {.lex_state = 264}, - [3990] = {.lex_state = 274, .external_lex_state = 1}, - [3991] = {.lex_state = 247}, - [3992] = {.lex_state = 264}, - [3993] = {.lex_state = 189}, - [3994] = {.lex_state = 172}, - [3995] = {.lex_state = 172}, - [3996] = {.lex_state = 172}, - [3997] = {.lex_state = 172}, - [3998] = {.lex_state = 260, .external_lex_state = 1}, - [3999] = {.lex_state = 234, .external_lex_state = 1}, - [4000] = {.lex_state = 264}, - [4001] = {.lex_state = 263}, - [4002] = {.lex_state = 260, .external_lex_state = 1}, - [4003] = {.lex_state = 260, .external_lex_state = 1}, - [4004] = {.lex_state = 260, .external_lex_state = 1}, - [4005] = {.lex_state = 261}, - [4006] = {.lex_state = 261}, - [4007] = {.lex_state = 261}, - [4008] = {.lex_state = 234, .external_lex_state = 1}, - [4009] = {.lex_state = 263}, - [4010] = {.lex_state = 264}, - [4011] = {.lex_state = 274, .external_lex_state = 1}, - [4012] = {.lex_state = 234, .external_lex_state = 1}, - [4013] = {.lex_state = 234, .external_lex_state = 1}, - [4014] = {.lex_state = 234, .external_lex_state = 1}, - [4015] = {.lex_state = 276, .external_lex_state = 1}, - [4016] = {.lex_state = 172}, - [4017] = {.lex_state = 182, .external_lex_state = 1}, + [3957] = {.lex_state = 258, .external_lex_state = 1}, + [3958] = {.lex_state = 258, .external_lex_state = 1}, + [3959] = {.lex_state = 234, .external_lex_state = 1}, + [3960] = {.lex_state = 262}, + [3961] = {.lex_state = 272, .external_lex_state = 1}, + [3962] = {.lex_state = 247}, + [3963] = {.lex_state = 262}, + [3964] = {.lex_state = 189}, + [3965] = {.lex_state = 172}, + [3966] = {.lex_state = 172}, + [3967] = {.lex_state = 172}, + [3968] = {.lex_state = 172}, + [3969] = {.lex_state = 258, .external_lex_state = 1}, + [3970] = {.lex_state = 234, .external_lex_state = 1}, + [3971] = {.lex_state = 262}, + [3972] = {.lex_state = 261}, + [3973] = {.lex_state = 258, .external_lex_state = 1}, + [3974] = {.lex_state = 258, .external_lex_state = 1}, + [3975] = {.lex_state = 259}, + [3976] = {.lex_state = 259}, + [3977] = {.lex_state = 259}, + [3978] = {.lex_state = 234, .external_lex_state = 1}, + [3979] = {.lex_state = 261}, + [3980] = {.lex_state = 262}, + [3981] = {.lex_state = 272, .external_lex_state = 1}, + [3982] = {.lex_state = 234, .external_lex_state = 1}, + [3983] = {.lex_state = 234, .external_lex_state = 1}, + [3984] = {.lex_state = 234, .external_lex_state = 1}, + [3985] = {.lex_state = 274, .external_lex_state = 1}, + [3986] = {.lex_state = 172}, + [3987] = {.lex_state = 182, .external_lex_state = 1}, + [3988] = {.lex_state = 172}, + [3989] = {.lex_state = 234, .external_lex_state = 1}, + [3990] = {.lex_state = 172, .external_lex_state = 1}, + [3991] = {.lex_state = 261}, + [3992] = {.lex_state = 261}, + [3993] = {.lex_state = 261}, + [3994] = {.lex_state = 261}, + [3995] = {.lex_state = 262}, + [3996] = {.lex_state = 261}, + [3997] = {.lex_state = 261}, + [3998] = {.lex_state = 261}, + [3999] = {.lex_state = 265}, + [4000] = {.lex_state = 189}, + [4001] = {.lex_state = 172}, + [4002] = {.lex_state = 172}, + [4003] = {.lex_state = 300}, + [4004] = {.lex_state = 172}, + [4005] = {.lex_state = 189}, + [4006] = {.lex_state = 172}, + [4007] = {.lex_state = 308}, + [4008] = {.lex_state = 268}, + [4009] = {.lex_state = 300}, + [4010] = {.lex_state = 172}, + [4011] = {.lex_state = 172}, + [4012] = {.lex_state = 308}, + [4013] = {.lex_state = 300}, + [4014] = {.lex_state = 249}, + [4015] = {.lex_state = 189}, + [4016] = {.lex_state = 249}, + [4017] = {.lex_state = 308}, [4018] = {.lex_state = 172}, - [4019] = {.lex_state = 234, .external_lex_state = 1}, - [4020] = {.lex_state = 172, .external_lex_state = 1}, - [4021] = {.lex_state = 263}, - [4022] = {.lex_state = 263}, - [4023] = {.lex_state = 263}, - [4024] = {.lex_state = 263}, - [4025] = {.lex_state = 264}, - [4026] = {.lex_state = 263}, - [4027] = {.lex_state = 263}, - [4028] = {.lex_state = 263}, - [4029] = {.lex_state = 266}, - [4030] = {.lex_state = 189}, - [4031] = {.lex_state = 172}, - [4032] = {.lex_state = 172}, - [4033] = {.lex_state = 302}, - [4034] = {.lex_state = 172}, - [4035] = {.lex_state = 189}, - [4036] = {.lex_state = 172}, - [4037] = {.lex_state = 310}, - [4038] = {.lex_state = 270}, - [4039] = {.lex_state = 302}, - [4040] = {.lex_state = 172}, - [4041] = {.lex_state = 172}, - [4042] = {.lex_state = 310}, - [4043] = {.lex_state = 302}, - [4044] = {.lex_state = 247}, - [4045] = {.lex_state = 189}, + [4019] = {.lex_state = 188}, + [4020] = {.lex_state = 172}, + [4021] = {.lex_state = 285}, + [4022] = {.lex_state = 172}, + [4023] = {.lex_state = 249}, + [4024] = {.lex_state = 308}, + [4025] = {.lex_state = 308}, + [4026] = {.lex_state = 182, .external_lex_state = 1}, + [4027] = {.lex_state = 172}, + [4028] = {.lex_state = 247}, + [4029] = {.lex_state = 172}, + [4030] = {.lex_state = 172, .external_lex_state = 1}, + [4031] = {.lex_state = 308}, + [4032] = {.lex_state = 308}, + [4033] = {.lex_state = 182}, + [4034] = {.lex_state = 247}, + [4035] = {.lex_state = 300}, + [4036] = {.lex_state = 300}, + [4037] = {.lex_state = 300}, + [4038] = {.lex_state = 274}, + [4039] = {.lex_state = 172}, + [4040] = {.lex_state = 189}, + [4041] = {.lex_state = 300}, + [4042] = {.lex_state = 300}, + [4043] = {.lex_state = 274}, + [4044] = {.lex_state = 300}, + [4045] = {.lex_state = 182, .external_lex_state = 1}, [4046] = {.lex_state = 172}, - [4047] = {.lex_state = 172}, - [4048] = {.lex_state = 310}, - [4049] = {.lex_state = 172}, - [4050] = {.lex_state = 172}, - [4051] = {.lex_state = 286}, - [4052] = {.lex_state = 235}, - [4053] = {.lex_state = 310}, - [4054] = {.lex_state = 182, .external_lex_state = 1}, - [4055] = {.lex_state = 294}, - [4056] = {.lex_state = 172}, - [4057] = {.lex_state = 172}, - [4058] = {.lex_state = 172, .external_lex_state = 1}, - [4059] = {.lex_state = 310}, - [4060] = {.lex_state = 310}, - [4061] = {.lex_state = 182}, - [4062] = {.lex_state = 172}, + [4047] = {.lex_state = 247}, + [4048] = {.lex_state = 300}, + [4049] = {.lex_state = 300}, + [4050] = {.lex_state = 188}, + [4051] = {.lex_state = 189}, + [4052] = {.lex_state = 172}, + [4053] = {.lex_state = 300}, + [4054] = {.lex_state = 249}, + [4055] = {.lex_state = 300}, + [4056] = {.lex_state = 274}, + [4057] = {.lex_state = 268}, + [4058] = {.lex_state = 300}, + [4059] = {.lex_state = 203}, + [4060] = {.lex_state = 249}, + [4061] = {.lex_state = 247}, + [4062] = {.lex_state = 265}, [4063] = {.lex_state = 247}, - [4064] = {.lex_state = 310}, - [4065] = {.lex_state = 302}, - [4066] = {.lex_state = 302}, - [4067] = {.lex_state = 302}, - [4068] = {.lex_state = 276}, + [4064] = {.lex_state = 182, .external_lex_state = 1}, + [4065] = {.lex_state = 172, .external_lex_state = 1}, + [4066] = {.lex_state = 300}, + [4067] = {.lex_state = 247}, + [4068] = {.lex_state = 172}, [4069] = {.lex_state = 172}, - [4070] = {.lex_state = 189}, - [4071] = {.lex_state = 302}, - [4072] = {.lex_state = 302}, - [4073] = {.lex_state = 276}, - [4074] = {.lex_state = 302}, - [4075] = {.lex_state = 182, .external_lex_state = 1}, - [4076] = {.lex_state = 294}, - [4077] = {.lex_state = 172}, - [4078] = {.lex_state = 302}, + [4070] = {.lex_state = 300}, + [4071] = {.lex_state = 172, .external_lex_state = 1}, + [4072] = {.lex_state = 300}, + [4073] = {.lex_state = 182}, + [4074] = {.lex_state = 265}, + [4075] = {.lex_state = 172}, + [4076] = {.lex_state = 265}, + [4077] = {.lex_state = 265}, + [4078] = {.lex_state = 247}, [4079] = {.lex_state = 172}, - [4080] = {.lex_state = 302}, - [4081] = {.lex_state = 189}, - [4082] = {.lex_state = 172}, - [4083] = {.lex_state = 302}, - [4084] = {.lex_state = 172}, - [4085] = {.lex_state = 302}, - [4086] = {.lex_state = 276}, - [4087] = {.lex_state = 270}, - [4088] = {.lex_state = 302}, - [4089] = {.lex_state = 203}, - [4090] = {.lex_state = 302}, - [4091] = {.lex_state = 182}, - [4092] = {.lex_state = 247}, - [4093] = {.lex_state = 182, .external_lex_state = 1}, - [4094] = {.lex_state = 172, .external_lex_state = 1}, - [4095] = {.lex_state = 302}, - [4096] = {.lex_state = 294}, - [4097] = {.lex_state = 172}, - [4098] = {.lex_state = 172}, - [4099] = {.lex_state = 302}, - [4100] = {.lex_state = 172, .external_lex_state = 1}, - [4101] = {.lex_state = 247}, - [4102] = {.lex_state = 294}, - [4103] = {.lex_state = 266}, - [4104] = {.lex_state = 266}, - [4105] = {.lex_state = 172}, - [4106] = {.lex_state = 266}, - [4107] = {.lex_state = 266}, - [4108] = {.lex_state = 247}, - [4109] = {.lex_state = 172}, - [4110] = {.lex_state = 182, .external_lex_state = 1}, - [4111] = {.lex_state = 266}, - [4112] = {.lex_state = 266}, - [4113] = {.lex_state = 172}, - [4114] = {.lex_state = 266}, - [4115] = {.lex_state = 294}, - [4116] = {.lex_state = 294}, - [4117] = {.lex_state = 294}, - [4118] = {.lex_state = 294}, - [4119] = {.lex_state = 294}, - [4120] = {.lex_state = 263}, - [4121] = {.lex_state = 263}, - [4122] = {.lex_state = 318}, - [4123] = {.lex_state = 182, .external_lex_state = 1}, - [4124] = {.lex_state = 284}, - [4125] = {.lex_state = 172}, - [4126] = {.lex_state = 294}, - [4127] = {.lex_state = 294}, - [4128] = {.lex_state = 294}, - [4129] = {.lex_state = 294}, - [4130] = {.lex_state = 189}, - [4131] = {.lex_state = 172}, - [4132] = {.lex_state = 247}, - [4133] = {.lex_state = 247}, - [4134] = {.lex_state = 189}, - [4135] = {.lex_state = 189}, - [4136] = {.lex_state = 189}, - [4137] = {.lex_state = 273}, - [4138] = {.lex_state = 273}, - [4139] = {.lex_state = 273}, - [4140] = {.lex_state = 273}, - [4141] = {.lex_state = 273}, - [4142] = {.lex_state = 172}, - [4143] = {.lex_state = 273}, - [4144] = {.lex_state = 273}, - [4145] = {.lex_state = 273}, - [4146] = {.lex_state = 273}, - [4147] = {.lex_state = 182}, - [4148] = {.lex_state = 188}, - [4149] = {.lex_state = 182}, - [4150] = {.lex_state = 182}, - [4151] = {.lex_state = 182}, - [4152] = {.lex_state = 264}, - [4153] = {.lex_state = 172, .external_lex_state = 1}, - [4154] = {.lex_state = 234, .external_lex_state = 1}, - [4155] = {.lex_state = 263}, - [4156] = {.lex_state = 263}, - [4157] = {.lex_state = 264}, - [4158] = {.lex_state = 234, .external_lex_state = 1}, - [4159] = {.lex_state = 172, .external_lex_state = 1}, - [4160] = {.lex_state = 283}, - [4161] = {.lex_state = 283}, - [4162] = {.lex_state = 283}, - [4163] = {.lex_state = 283}, - [4164] = {.lex_state = 234, .external_lex_state = 1}, - [4165] = {.lex_state = 283}, - [4166] = {.lex_state = 172}, - [4167] = {.lex_state = 283}, - [4168] = {.lex_state = 283}, - [4169] = {.lex_state = 172}, - [4170] = {.lex_state = 283}, - [4171] = {.lex_state = 172}, - [4172] = {.lex_state = 283}, - [4173] = {.lex_state = 172}, - [4174] = {.lex_state = 283}, - [4175] = {.lex_state = 172}, - [4176] = {.lex_state = 172}, - [4177] = {.lex_state = 283}, - [4178] = {.lex_state = 172}, - [4179] = {.lex_state = 283}, - [4180] = {.lex_state = 172}, - [4181] = {.lex_state = 283}, - [4182] = {.lex_state = 283}, - [4183] = {.lex_state = 283}, - [4184] = {.lex_state = 283}, - [4185] = {.lex_state = 284}, - [4186] = {.lex_state = 304}, - [4187] = {.lex_state = 304}, - [4188] = {.lex_state = 304}, - [4189] = {.lex_state = 304}, - [4190] = {.lex_state = 304}, + [4080] = {.lex_state = 182, .external_lex_state = 1}, + [4081] = {.lex_state = 265}, + [4082] = {.lex_state = 265}, + [4083] = {.lex_state = 172}, + [4084] = {.lex_state = 265}, + [4085] = {.lex_state = 247}, + [4086] = {.lex_state = 247}, + [4087] = {.lex_state = 247}, + [4088] = {.lex_state = 247}, + [4089] = {.lex_state = 247}, + [4090] = {.lex_state = 247}, + [4091] = {.lex_state = 261}, + [4092] = {.lex_state = 261}, + [4093] = {.lex_state = 317}, + [4094] = {.lex_state = 182, .external_lex_state = 1}, + [4095] = {.lex_state = 282}, + [4096] = {.lex_state = 172}, + [4097] = {.lex_state = 247}, + [4098] = {.lex_state = 247}, + [4099] = {.lex_state = 247}, + [4100] = {.lex_state = 189}, + [4101] = {.lex_state = 189}, + [4102] = {.lex_state = 172}, + [4103] = {.lex_state = 247}, + [4104] = {.lex_state = 247}, + [4105] = {.lex_state = 189}, + [4106] = {.lex_state = 189}, + [4107] = {.lex_state = 271}, + [4108] = {.lex_state = 271}, + [4109] = {.lex_state = 271}, + [4110] = {.lex_state = 271}, + [4111] = {.lex_state = 271}, + [4112] = {.lex_state = 172}, + [4113] = {.lex_state = 271}, + [4114] = {.lex_state = 271}, + [4115] = {.lex_state = 271}, + [4116] = {.lex_state = 271}, + [4117] = {.lex_state = 182}, + [4118] = {.lex_state = 188}, + [4119] = {.lex_state = 182}, + [4120] = {.lex_state = 182}, + [4121] = {.lex_state = 182}, + [4122] = {.lex_state = 262}, + [4123] = {.lex_state = 172, .external_lex_state = 1}, + [4124] = {.lex_state = 234, .external_lex_state = 1}, + [4125] = {.lex_state = 261}, + [4126] = {.lex_state = 261}, + [4127] = {.lex_state = 262}, + [4128] = {.lex_state = 234, .external_lex_state = 1}, + [4129] = {.lex_state = 172, .external_lex_state = 1}, + [4130] = {.lex_state = 281}, + [4131] = {.lex_state = 281}, + [4132] = {.lex_state = 281}, + [4133] = {.lex_state = 281}, + [4134] = {.lex_state = 234, .external_lex_state = 1}, + [4135] = {.lex_state = 281}, + [4136] = {.lex_state = 172}, + [4137] = {.lex_state = 281}, + [4138] = {.lex_state = 281}, + [4139] = {.lex_state = 172}, + [4140] = {.lex_state = 281}, + [4141] = {.lex_state = 172}, + [4142] = {.lex_state = 281}, + [4143] = {.lex_state = 172}, + [4144] = {.lex_state = 281}, + [4145] = {.lex_state = 172}, + [4146] = {.lex_state = 172}, + [4147] = {.lex_state = 281}, + [4148] = {.lex_state = 172}, + [4149] = {.lex_state = 281}, + [4150] = {.lex_state = 172}, + [4151] = {.lex_state = 281}, + [4152] = {.lex_state = 281}, + [4153] = {.lex_state = 281}, + [4154] = {.lex_state = 281}, + [4155] = {.lex_state = 282}, + [4156] = {.lex_state = 303}, + [4157] = {.lex_state = 303}, + [4158] = {.lex_state = 303}, + [4159] = {.lex_state = 303}, + [4160] = {.lex_state = 303}, + [4161] = {.lex_state = 172}, + [4162] = {.lex_state = 303}, + [4163] = {.lex_state = 303}, + [4164] = {.lex_state = 282}, + [4165] = {.lex_state = 282}, + [4166] = {.lex_state = 262}, + [4167] = {.lex_state = 188, .external_lex_state = 1}, + [4168] = {.lex_state = 316, .external_lex_state = 1}, + [4169] = {.lex_state = 282}, + [4170] = {.lex_state = 261}, + [4171] = {.lex_state = 182, .external_lex_state = 1}, + [4172] = {.lex_state = 262}, + [4173] = {.lex_state = 262}, + [4174] = {.lex_state = 234, .external_lex_state = 1}, + [4175] = {.lex_state = 247}, + [4176] = {.lex_state = 247}, + [4177] = {.lex_state = 172, .external_lex_state = 1}, + [4178] = {.lex_state = 262}, + [4179] = {.lex_state = 182, .external_lex_state = 1}, + [4180] = {.lex_state = 172, .external_lex_state = 1}, + [4181] = {.lex_state = 234, .external_lex_state = 1}, + [4182] = {.lex_state = 172}, + [4183] = {.lex_state = 234, .external_lex_state = 1}, + [4184] = {.lex_state = 261}, + [4185] = {.lex_state = 262}, + [4186] = {.lex_state = 272, .external_lex_state = 1}, + [4187] = {.lex_state = 234, .external_lex_state = 1}, + [4188] = {.lex_state = 234, .external_lex_state = 1}, + [4189] = {.lex_state = 234, .external_lex_state = 1}, + [4190] = {.lex_state = 274, .external_lex_state = 1}, [4191] = {.lex_state = 172}, - [4192] = {.lex_state = 304}, - [4193] = {.lex_state = 304}, - [4194] = {.lex_state = 284}, - [4195] = {.lex_state = 284}, - [4196] = {.lex_state = 264}, - [4197] = {.lex_state = 188, .external_lex_state = 1}, - [4198] = {.lex_state = 317, .external_lex_state = 1}, - [4199] = {.lex_state = 284}, - [4200] = {.lex_state = 263}, - [4201] = {.lex_state = 182, .external_lex_state = 1}, - [4202] = {.lex_state = 264}, - [4203] = {.lex_state = 264}, - [4204] = {.lex_state = 234, .external_lex_state = 1}, - [4205] = {.lex_state = 247}, - [4206] = {.lex_state = 235}, - [4207] = {.lex_state = 172, .external_lex_state = 1}, - [4208] = {.lex_state = 264}, - [4209] = {.lex_state = 182, .external_lex_state = 1}, - [4210] = {.lex_state = 172, .external_lex_state = 1}, - [4211] = {.lex_state = 234, .external_lex_state = 1}, - [4212] = {.lex_state = 172}, - [4213] = {.lex_state = 234, .external_lex_state = 1}, - [4214] = {.lex_state = 263}, - [4215] = {.lex_state = 264}, - [4216] = {.lex_state = 274, .external_lex_state = 1}, - [4217] = {.lex_state = 234, .external_lex_state = 1}, - [4218] = {.lex_state = 234, .external_lex_state = 1}, - [4219] = {.lex_state = 234, .external_lex_state = 1}, - [4220] = {.lex_state = 276, .external_lex_state = 1}, - [4221] = {.lex_state = 172}, - [4222] = {.lex_state = 182, .external_lex_state = 1}, - [4223] = {.lex_state = 172}, - [4224] = {.lex_state = 234, .external_lex_state = 1}, - [4225] = {.lex_state = 172}, - [4226] = {.lex_state = 257}, - [4227] = {.lex_state = 257}, - [4228] = {.lex_state = 172}, - [4229] = {.lex_state = 257}, - [4230] = {.lex_state = 264}, - [4231] = {.lex_state = 172}, - [4232] = {.lex_state = 290}, - [4233] = {.lex_state = 290}, - [4234] = {.lex_state = 257}, - [4235] = {.lex_state = 189}, - [4236] = {.lex_state = 247}, - [4237] = {.lex_state = 189}, - [4238] = {.lex_state = 189}, - [4239] = {.lex_state = 189}, - [4240] = {.lex_state = 189}, - [4241] = {.lex_state = 189}, - [4242] = {.lex_state = 189}, - [4243] = {.lex_state = 284}, - [4244] = {.lex_state = 188, .external_lex_state = 1}, - [4245] = {.lex_state = 319, .external_lex_state = 1}, - [4246] = {.lex_state = 284}, - [4247] = {.lex_state = 283}, - [4248] = {.lex_state = 182, .external_lex_state = 1}, - [4249] = {.lex_state = 284}, - [4250] = {.lex_state = 284}, - [4251] = {.lex_state = 235}, - [4252] = {.lex_state = 273}, - [4253] = {.lex_state = 188, .external_lex_state = 1}, - [4254] = {.lex_state = 312, .external_lex_state = 1}, - [4255] = {.lex_state = 284}, - [4256] = {.lex_state = 273}, - [4257] = {.lex_state = 273}, - [4258] = {.lex_state = 182, .external_lex_state = 1}, - [4259] = {.lex_state = 273}, - [4260] = {.lex_state = 257}, - [4261] = {.lex_state = 273}, - [4262] = {.lex_state = 257}, - [4263] = {.lex_state = 235}, - [4264] = {.lex_state = 235}, - [4265] = {.lex_state = 294}, - [4266] = {.lex_state = 294}, - [4267] = {.lex_state = 263}, - [4268] = {.lex_state = 172}, - [4269] = {.lex_state = 263}, - [4270] = {.lex_state = 172}, - [4271] = {.lex_state = 264}, - [4272] = {.lex_state = 264}, - [4273] = {.lex_state = 263}, - [4274] = {.lex_state = 264}, - [4275] = {.lex_state = 264}, - [4276] = {.lex_state = 264}, - [4277] = {.lex_state = 263}, - [4278] = {.lex_state = 235}, - [4279] = {.lex_state = 235}, - [4280] = {.lex_state = 235}, - [4281] = {.lex_state = 235}, - [4282] = {.lex_state = 300, .external_lex_state = 1}, - [4283] = {.lex_state = 247}, - [4284] = {.lex_state = 188, .external_lex_state = 1}, - [4285] = {.lex_state = 182, .external_lex_state = 1}, - [4286] = {.lex_state = 189}, - [4287] = {.lex_state = 182, .external_lex_state = 1}, - [4288] = {.lex_state = 189}, - [4289] = {.lex_state = 188, .external_lex_state = 1}, - [4290] = {.lex_state = 182, .external_lex_state = 1}, - [4291] = {.lex_state = 189}, - [4292] = {.lex_state = 263}, - [4293] = {.lex_state = 189}, - [4294] = {.lex_state = 189}, - [4295] = {.lex_state = 189}, - [4296] = {.lex_state = 189}, - [4297] = {.lex_state = 189}, - [4298] = {.lex_state = 189}, - [4299] = {.lex_state = 189}, - [4300] = {.lex_state = 189}, - [4301] = {.lex_state = 189}, - [4302] = {.lex_state = 235}, + [4192] = {.lex_state = 182, .external_lex_state = 1}, + [4193] = {.lex_state = 172}, + [4194] = {.lex_state = 234, .external_lex_state = 1}, + [4195] = {.lex_state = 172}, + [4196] = {.lex_state = 257}, + [4197] = {.lex_state = 257}, + [4198] = {.lex_state = 172}, + [4199] = {.lex_state = 257}, + [4200] = {.lex_state = 262}, + [4201] = {.lex_state = 172}, + [4202] = {.lex_state = 290}, + [4203] = {.lex_state = 290}, + [4204] = {.lex_state = 257}, + [4205] = {.lex_state = 189}, + [4206] = {.lex_state = 247}, + [4207] = {.lex_state = 189}, + [4208] = {.lex_state = 189}, + [4209] = {.lex_state = 189}, + [4210] = {.lex_state = 189}, + [4211] = {.lex_state = 189}, + [4212] = {.lex_state = 189}, + [4213] = {.lex_state = 261}, + [4214] = {.lex_state = 172}, + [4215] = {.lex_state = 261}, + [4216] = {.lex_state = 172}, + [4217] = {.lex_state = 262}, + [4218] = {.lex_state = 262}, + [4219] = {.lex_state = 261}, + [4220] = {.lex_state = 262}, + [4221] = {.lex_state = 262}, + [4222] = {.lex_state = 262}, + [4223] = {.lex_state = 261}, + [4224] = {.lex_state = 282}, + [4225] = {.lex_state = 188, .external_lex_state = 1}, + [4226] = {.lex_state = 318, .external_lex_state = 1}, + [4227] = {.lex_state = 282}, + [4228] = {.lex_state = 281}, + [4229] = {.lex_state = 182, .external_lex_state = 1}, + [4230] = {.lex_state = 282}, + [4231] = {.lex_state = 282}, + [4232] = {.lex_state = 188}, + [4233] = {.lex_state = 182}, + [4234] = {.lex_state = 247}, + [4235] = {.lex_state = 271}, + [4236] = {.lex_state = 188, .external_lex_state = 1}, + [4237] = {.lex_state = 310, .external_lex_state = 1}, + [4238] = {.lex_state = 282}, + [4239] = {.lex_state = 271}, + [4240] = {.lex_state = 271}, + [4241] = {.lex_state = 182, .external_lex_state = 1}, + [4242] = {.lex_state = 271}, + [4243] = {.lex_state = 257}, + [4244] = {.lex_state = 271}, + [4245] = {.lex_state = 257}, + [4246] = {.lex_state = 247}, + [4247] = {.lex_state = 247}, + [4248] = {.lex_state = 247}, + [4249] = {.lex_state = 247}, + [4250] = {.lex_state = 247}, + [4251] = {.lex_state = 247}, + [4252] = {.lex_state = 247}, + [4253] = {.lex_state = 247}, + [4254] = {.lex_state = 249, .external_lex_state = 1}, + [4255] = {.lex_state = 247}, + [4256] = {.lex_state = 188, .external_lex_state = 1}, + [4257] = {.lex_state = 182, .external_lex_state = 1}, + [4258] = {.lex_state = 189}, + [4259] = {.lex_state = 182, .external_lex_state = 1}, + [4260] = {.lex_state = 189}, + [4261] = {.lex_state = 188, .external_lex_state = 1}, + [4262] = {.lex_state = 182, .external_lex_state = 1}, + [4263] = {.lex_state = 189}, + [4264] = {.lex_state = 261}, + [4265] = {.lex_state = 189}, + [4266] = {.lex_state = 189}, + [4267] = {.lex_state = 189}, + [4268] = {.lex_state = 189}, + [4269] = {.lex_state = 189}, + [4270] = {.lex_state = 189}, + [4271] = {.lex_state = 189}, + [4272] = {.lex_state = 189}, + [4273] = {.lex_state = 189}, + [4274] = {.lex_state = 247}, + [4275] = {.lex_state = 189}, + [4276] = {.lex_state = 189}, + [4277] = {.lex_state = 282}, + [4278] = {.lex_state = 182, .external_lex_state = 1}, + [4279] = {.lex_state = 189}, + [4280] = {.lex_state = 247}, + [4281] = {.lex_state = 189}, + [4282] = {.lex_state = 189}, + [4283] = {.lex_state = 189}, + [4284] = {.lex_state = 172}, + [4285] = {.lex_state = 189}, + [4286] = {.lex_state = 234, .external_lex_state = 1}, + [4287] = {.lex_state = 305, .external_lex_state = 1}, + [4288] = {.lex_state = 312}, + [4289] = {.lex_state = 189}, + [4290] = {.lex_state = 305, .external_lex_state = 1}, + [4291] = {.lex_state = 305, .external_lex_state = 1}, + [4292] = {.lex_state = 305, .external_lex_state = 1}, + [4293] = {.lex_state = 305, .external_lex_state = 1}, + [4294] = {.lex_state = 172}, + [4295] = {.lex_state = 305, .external_lex_state = 1}, + [4296] = {.lex_state = 234, .external_lex_state = 1}, + [4297] = {.lex_state = 247}, + [4298] = {.lex_state = 247}, + [4299] = {.lex_state = 262}, + [4300] = {.lex_state = 182, .external_lex_state = 1}, + [4301] = {.lex_state = 172}, + [4302] = {.lex_state = 305, .external_lex_state = 1}, [4303] = {.lex_state = 189}, - [4304] = {.lex_state = 189}, - [4305] = {.lex_state = 284}, - [4306] = {.lex_state = 182, .external_lex_state = 1}, - [4307] = {.lex_state = 189}, - [4308] = {.lex_state = 247}, - [4309] = {.lex_state = 189}, - [4310] = {.lex_state = 189}, - [4311] = {.lex_state = 189}, - [4312] = {.lex_state = 188}, - [4313] = {.lex_state = 182}, - [4314] = {.lex_state = 172}, + [4304] = {.lex_state = 172}, + [4305] = {.lex_state = 312}, + [4306] = {.lex_state = 305, .external_lex_state = 1}, + [4307] = {.lex_state = 172}, + [4308] = {.lex_state = 234, .external_lex_state = 1}, + [4309] = {.lex_state = 234, .external_lex_state = 1}, + [4310] = {.lex_state = 262}, + [4311] = {.lex_state = 272, .external_lex_state = 1}, + [4312] = {.lex_state = 247}, + [4313] = {.lex_state = 262}, + [4314] = {.lex_state = 234, .external_lex_state = 1}, [4315] = {.lex_state = 189}, - [4316] = {.lex_state = 234, .external_lex_state = 1}, - [4317] = {.lex_state = 307, .external_lex_state = 1}, - [4318] = {.lex_state = 189}, - [4319] = {.lex_state = 307, .external_lex_state = 1}, - [4320] = {.lex_state = 307, .external_lex_state = 1}, - [4321] = {.lex_state = 307, .external_lex_state = 1}, - [4322] = {.lex_state = 307, .external_lex_state = 1}, - [4323] = {.lex_state = 172}, - [4324] = {.lex_state = 307, .external_lex_state = 1}, - [4325] = {.lex_state = 234, .external_lex_state = 1}, - [4326] = {.lex_state = 247}, - [4327] = {.lex_state = 235}, - [4328] = {.lex_state = 264}, - [4329] = {.lex_state = 182, .external_lex_state = 1}, - [4330] = {.lex_state = 172}, - [4331] = {.lex_state = 307, .external_lex_state = 1}, - [4332] = {.lex_state = 307, .external_lex_state = 1}, + [4316] = {.lex_state = 172}, + [4317] = {.lex_state = 172}, + [4318] = {.lex_state = 172}, + [4319] = {.lex_state = 172}, + [4320] = {.lex_state = 234, .external_lex_state = 1}, + [4321] = {.lex_state = 234, .external_lex_state = 1}, + [4322] = {.lex_state = 289}, + [4323] = {.lex_state = 289}, + [4324] = {.lex_state = 289}, + [4325] = {.lex_state = 289}, + [4326] = {.lex_state = 234, .external_lex_state = 1}, + [4327] = {.lex_state = 289}, + [4328] = {.lex_state = 172}, + [4329] = {.lex_state = 289}, + [4330] = {.lex_state = 289}, + [4331] = {.lex_state = 172}, + [4332] = {.lex_state = 289}, [4333] = {.lex_state = 172}, - [4334] = {.lex_state = 189}, + [4334] = {.lex_state = 289}, [4335] = {.lex_state = 172}, - [4336] = {.lex_state = 234, .external_lex_state = 1}, - [4337] = {.lex_state = 234, .external_lex_state = 1}, - [4338] = {.lex_state = 264}, - [4339] = {.lex_state = 274, .external_lex_state = 1}, - [4340] = {.lex_state = 247}, - [4341] = {.lex_state = 264}, - [4342] = {.lex_state = 234, .external_lex_state = 1}, - [4343] = {.lex_state = 189}, - [4344] = {.lex_state = 172}, - [4345] = {.lex_state = 172}, - [4346] = {.lex_state = 172}, - [4347] = {.lex_state = 172}, - [4348] = {.lex_state = 234, .external_lex_state = 1}, - [4349] = {.lex_state = 234, .external_lex_state = 1}, - [4350] = {.lex_state = 289}, - [4351] = {.lex_state = 289}, - [4352] = {.lex_state = 289}, - [4353] = {.lex_state = 289}, - [4354] = {.lex_state = 234, .external_lex_state = 1}, - [4355] = {.lex_state = 289}, + [4336] = {.lex_state = 289}, + [4337] = {.lex_state = 172}, + [4338] = {.lex_state = 172}, + [4339] = {.lex_state = 289}, + [4340] = {.lex_state = 172}, + [4341] = {.lex_state = 289}, + [4342] = {.lex_state = 172}, + [4343] = {.lex_state = 289}, + [4344] = {.lex_state = 289}, + [4345] = {.lex_state = 289}, + [4346] = {.lex_state = 289}, + [4347] = {.lex_state = 290}, + [4348] = {.lex_state = 290}, + [4349] = {.lex_state = 290}, + [4350] = {.lex_state = 290}, + [4351] = {.lex_state = 189}, + [4352] = {.lex_state = 189}, + [4353] = {.lex_state = 189}, + [4354] = {.lex_state = 258, .external_lex_state = 1}, + [4355] = {.lex_state = 291, .external_lex_state = 1}, [4356] = {.lex_state = 172}, - [4357] = {.lex_state = 289}, - [4358] = {.lex_state = 289}, - [4359] = {.lex_state = 172}, - [4360] = {.lex_state = 289}, - [4361] = {.lex_state = 172}, - [4362] = {.lex_state = 289}, - [4363] = {.lex_state = 172}, - [4364] = {.lex_state = 289}, - [4365] = {.lex_state = 172}, - [4366] = {.lex_state = 172}, - [4367] = {.lex_state = 289}, + [4357] = {.lex_state = 291, .external_lex_state = 1}, + [4358] = {.lex_state = 291, .external_lex_state = 1}, + [4359] = {.lex_state = 291, .external_lex_state = 1}, + [4360] = {.lex_state = 291, .external_lex_state = 1}, + [4361] = {.lex_state = 291, .external_lex_state = 1}, + [4362] = {.lex_state = 234, .external_lex_state = 1}, + [4363] = {.lex_state = 262}, + [4364] = {.lex_state = 272, .external_lex_state = 1}, + [4365] = {.lex_state = 247}, + [4366] = {.lex_state = 262}, + [4367] = {.lex_state = 189}, [4368] = {.lex_state = 172}, - [4369] = {.lex_state = 289}, + [4369] = {.lex_state = 172}, [4370] = {.lex_state = 172}, - [4371] = {.lex_state = 289}, - [4372] = {.lex_state = 289}, - [4373] = {.lex_state = 289}, - [4374] = {.lex_state = 289}, - [4375] = {.lex_state = 290}, - [4376] = {.lex_state = 290}, - [4377] = {.lex_state = 290}, - [4378] = {.lex_state = 290}, - [4379] = {.lex_state = 189}, - [4380] = {.lex_state = 189}, - [4381] = {.lex_state = 189}, - [4382] = {.lex_state = 260, .external_lex_state = 1}, - [4383] = {.lex_state = 291, .external_lex_state = 1}, - [4384] = {.lex_state = 172}, - [4385] = {.lex_state = 291, .external_lex_state = 1}, - [4386] = {.lex_state = 291, .external_lex_state = 1}, - [4387] = {.lex_state = 291, .external_lex_state = 1}, - [4388] = {.lex_state = 291, .external_lex_state = 1}, - [4389] = {.lex_state = 291, .external_lex_state = 1}, + [4371] = {.lex_state = 172}, + [4372] = {.lex_state = 291, .external_lex_state = 1}, + [4373] = {.lex_state = 234, .external_lex_state = 1}, + [4374] = {.lex_state = 262}, + [4375] = {.lex_state = 261}, + [4376] = {.lex_state = 291, .external_lex_state = 1}, + [4377] = {.lex_state = 291, .external_lex_state = 1}, + [4378] = {.lex_state = 258, .external_lex_state = 1}, + [4379] = {.lex_state = 234, .external_lex_state = 1}, + [4380] = {.lex_state = 261}, + [4381] = {.lex_state = 262}, + [4382] = {.lex_state = 272, .external_lex_state = 1}, + [4383] = {.lex_state = 234, .external_lex_state = 1}, + [4384] = {.lex_state = 234, .external_lex_state = 1}, + [4385] = {.lex_state = 234, .external_lex_state = 1}, + [4386] = {.lex_state = 274, .external_lex_state = 1}, + [4387] = {.lex_state = 172}, + [4388] = {.lex_state = 182, .external_lex_state = 1}, + [4389] = {.lex_state = 172}, [4390] = {.lex_state = 234, .external_lex_state = 1}, - [4391] = {.lex_state = 264}, - [4392] = {.lex_state = 274, .external_lex_state = 1}, - [4393] = {.lex_state = 247}, - [4394] = {.lex_state = 264}, - [4395] = {.lex_state = 189}, - [4396] = {.lex_state = 172}, - [4397] = {.lex_state = 172}, - [4398] = {.lex_state = 172}, - [4399] = {.lex_state = 172}, - [4400] = {.lex_state = 291, .external_lex_state = 1}, - [4401] = {.lex_state = 234, .external_lex_state = 1}, - [4402] = {.lex_state = 264}, - [4403] = {.lex_state = 263}, - [4404] = {.lex_state = 291, .external_lex_state = 1}, - [4405] = {.lex_state = 291, .external_lex_state = 1}, - [4406] = {.lex_state = 291, .external_lex_state = 1}, - [4407] = {.lex_state = 260, .external_lex_state = 1}, - [4408] = {.lex_state = 234, .external_lex_state = 1}, - [4409] = {.lex_state = 263}, - [4410] = {.lex_state = 264}, - [4411] = {.lex_state = 274, .external_lex_state = 1}, - [4412] = {.lex_state = 234, .external_lex_state = 1}, - [4413] = {.lex_state = 234, .external_lex_state = 1}, - [4414] = {.lex_state = 234, .external_lex_state = 1}, - [4415] = {.lex_state = 276, .external_lex_state = 1}, - [4416] = {.lex_state = 172}, - [4417] = {.lex_state = 182, .external_lex_state = 1}, - [4418] = {.lex_state = 172}, - [4419] = {.lex_state = 234, .external_lex_state = 1}, - [4420] = {.lex_state = 260, .external_lex_state = 1}, - [4421] = {.lex_state = 260, .external_lex_state = 1}, - [4422] = {.lex_state = 234, .external_lex_state = 1}, - [4423] = {.lex_state = 263}, - [4424] = {.lex_state = 264}, - [4425] = {.lex_state = 234, .external_lex_state = 1}, - [4426] = {.lex_state = 247}, - [4427] = {.lex_state = 235}, - [4428] = {.lex_state = 172, .external_lex_state = 1}, - [4429] = {.lex_state = 264}, - [4430] = {.lex_state = 182, .external_lex_state = 1}, - [4431] = {.lex_state = 234, .external_lex_state = 1}, - [4432] = {.lex_state = 264}, - [4433] = {.lex_state = 263}, - [4434] = {.lex_state = 263}, - [4435] = {.lex_state = 263}, - [4436] = {.lex_state = 302}, - [4437] = {.lex_state = 172}, - [4438] = {.lex_state = 189}, - [4439] = {.lex_state = 172}, - [4440] = {.lex_state = 172}, - [4441] = {.lex_state = 310}, - [4442] = {.lex_state = 310}, - [4443] = {.lex_state = 310}, - [4444] = {.lex_state = 302}, - [4445] = {.lex_state = 276}, - [4446] = {.lex_state = 172}, - [4447] = {.lex_state = 189}, - [4448] = {.lex_state = 310}, - [4449] = {.lex_state = 302}, - [4450] = {.lex_state = 276}, - [4451] = {.lex_state = 310}, - [4452] = {.lex_state = 182, .external_lex_state = 1}, - [4453] = {.lex_state = 294}, - [4454] = {.lex_state = 172}, - [4455] = {.lex_state = 310}, - [4456] = {.lex_state = 172}, - [4457] = {.lex_state = 310}, - [4458] = {.lex_state = 189}, - [4459] = {.lex_state = 172}, - [4460] = {.lex_state = 310}, - [4461] = {.lex_state = 172}, - [4462] = {.lex_state = 270}, - [4463] = {.lex_state = 310}, - [4464] = {.lex_state = 203}, - [4465] = {.lex_state = 310}, - [4466] = {.lex_state = 182}, - [4467] = {.lex_state = 247}, - [4468] = {.lex_state = 182, .external_lex_state = 1}, - [4469] = {.lex_state = 172, .external_lex_state = 1}, - [4470] = {.lex_state = 310}, - [4471] = {.lex_state = 294}, - [4472] = {.lex_state = 172}, - [4473] = {.lex_state = 172}, - [4474] = {.lex_state = 310}, - [4475] = {.lex_state = 172, .external_lex_state = 1}, - [4476] = {.lex_state = 247}, - [4477] = {.lex_state = 294}, - [4478] = {.lex_state = 302}, - [4479] = {.lex_state = 276}, - [4480] = {.lex_state = 189}, - [4481] = {.lex_state = 302}, - [4482] = {.lex_state = 172}, - [4483] = {.lex_state = 302}, - [4484] = {.lex_state = 276}, + [4391] = {.lex_state = 258, .external_lex_state = 1}, + [4392] = {.lex_state = 258, .external_lex_state = 1}, + [4393] = {.lex_state = 234, .external_lex_state = 1}, + [4394] = {.lex_state = 261}, + [4395] = {.lex_state = 262}, + [4396] = {.lex_state = 234, .external_lex_state = 1}, + [4397] = {.lex_state = 247}, + [4398] = {.lex_state = 247}, + [4399] = {.lex_state = 172, .external_lex_state = 1}, + [4400] = {.lex_state = 262}, + [4401] = {.lex_state = 182, .external_lex_state = 1}, + [4402] = {.lex_state = 234, .external_lex_state = 1}, + [4403] = {.lex_state = 262}, + [4404] = {.lex_state = 261}, + [4405] = {.lex_state = 261}, + [4406] = {.lex_state = 261}, + [4407] = {.lex_state = 300}, + [4408] = {.lex_state = 172}, + [4409] = {.lex_state = 189}, + [4410] = {.lex_state = 172}, + [4411] = {.lex_state = 172}, + [4412] = {.lex_state = 308}, + [4413] = {.lex_state = 308}, + [4414] = {.lex_state = 308}, + [4415] = {.lex_state = 300}, + [4416] = {.lex_state = 274}, + [4417] = {.lex_state = 172}, + [4418] = {.lex_state = 189}, + [4419] = {.lex_state = 308}, + [4420] = {.lex_state = 300}, + [4421] = {.lex_state = 274}, + [4422] = {.lex_state = 308}, + [4423] = {.lex_state = 182, .external_lex_state = 1}, + [4424] = {.lex_state = 172}, + [4425] = {.lex_state = 247}, + [4426] = {.lex_state = 308}, + [4427] = {.lex_state = 308}, + [4428] = {.lex_state = 188}, + [4429] = {.lex_state = 189}, + [4430] = {.lex_state = 172}, + [4431] = {.lex_state = 308}, + [4432] = {.lex_state = 249}, + [4433] = {.lex_state = 268}, + [4434] = {.lex_state = 308}, + [4435] = {.lex_state = 203}, + [4436] = {.lex_state = 249}, + [4437] = {.lex_state = 247}, + [4438] = {.lex_state = 247}, + [4439] = {.lex_state = 182, .external_lex_state = 1}, + [4440] = {.lex_state = 172, .external_lex_state = 1}, + [4441] = {.lex_state = 308}, + [4442] = {.lex_state = 247}, + [4443] = {.lex_state = 172}, + [4444] = {.lex_state = 172}, + [4445] = {.lex_state = 308}, + [4446] = {.lex_state = 172, .external_lex_state = 1}, + [4447] = {.lex_state = 308}, + [4448] = {.lex_state = 182}, + [4449] = {.lex_state = 300}, + [4450] = {.lex_state = 274}, + [4451] = {.lex_state = 189}, + [4452] = {.lex_state = 300}, + [4453] = {.lex_state = 172}, + [4454] = {.lex_state = 300}, + [4455] = {.lex_state = 274}, + [4456] = {.lex_state = 247}, + [4457] = {.lex_state = 172}, + [4458] = {.lex_state = 300}, + [4459] = {.lex_state = 182, .external_lex_state = 1}, + [4460] = {.lex_state = 247}, + [4461] = {.lex_state = 189}, + [4462] = {.lex_state = 172}, + [4463] = {.lex_state = 300}, + [4464] = {.lex_state = 300}, + [4465] = {.lex_state = 172}, + [4466] = {.lex_state = 300}, + [4467] = {.lex_state = 274}, + [4468] = {.lex_state = 300}, + [4469] = {.lex_state = 300}, + [4470] = {.lex_state = 268}, + [4471] = {.lex_state = 247}, + [4472] = {.lex_state = 182, .external_lex_state = 1}, + [4473] = {.lex_state = 300}, + [4474] = {.lex_state = 234, .external_lex_state = 1}, + [4475] = {.lex_state = 300}, + [4476] = {.lex_state = 300}, + [4477] = {.lex_state = 300}, + [4478] = {.lex_state = 300}, + [4479] = {.lex_state = 300}, + [4480] = {.lex_state = 265}, + [4481] = {.lex_state = 265}, + [4482] = {.lex_state = 247}, + [4483] = {.lex_state = 172}, + [4484] = {.lex_state = 265}, [4485] = {.lex_state = 247}, - [4486] = {.lex_state = 172}, - [4487] = {.lex_state = 182, .external_lex_state = 1}, - [4488] = {.lex_state = 302}, - [4489] = {.lex_state = 294}, - [4490] = {.lex_state = 189}, - [4491] = {.lex_state = 172}, - [4492] = {.lex_state = 302}, - [4493] = {.lex_state = 302}, - [4494] = {.lex_state = 172}, - [4495] = {.lex_state = 302}, - [4496] = {.lex_state = 276}, - [4497] = {.lex_state = 302}, - [4498] = {.lex_state = 302}, - [4499] = {.lex_state = 270}, - [4500] = {.lex_state = 302}, - [4501] = {.lex_state = 234, .external_lex_state = 1}, - [4502] = {.lex_state = 302}, - [4503] = {.lex_state = 302}, - [4504] = {.lex_state = 302}, - [4505] = {.lex_state = 302}, - [4506] = {.lex_state = 294}, - [4507] = {.lex_state = 182, .external_lex_state = 1}, - [4508] = {.lex_state = 302}, - [4509] = {.lex_state = 266}, - [4510] = {.lex_state = 266}, - [4511] = {.lex_state = 247}, - [4512] = {.lex_state = 172}, - [4513] = {.lex_state = 266}, - [4514] = {.lex_state = 294}, - [4515] = {.lex_state = 294}, - [4516] = {.lex_state = 294}, - [4517] = {.lex_state = 294}, - [4518] = {.lex_state = 294}, - [4519] = {.lex_state = 318}, - [4520] = {.lex_state = 294}, - [4521] = {.lex_state = 294}, - [4522] = {.lex_state = 294}, - [4523] = {.lex_state = 294}, - [4524] = {.lex_state = 294}, - [4525] = {.lex_state = 182, .external_lex_state = 1}, - [4526] = {.lex_state = 247}, - [4527] = {.lex_state = 189}, - [4528] = {.lex_state = 273}, - [4529] = {.lex_state = 188}, - [4530] = {.lex_state = 182}, - [4531] = {.lex_state = 182}, - [4532] = {.lex_state = 182}, - [4533] = {.lex_state = 172, .external_lex_state = 1}, + [4486] = {.lex_state = 247}, + [4487] = {.lex_state = 247}, + [4488] = {.lex_state = 247}, + [4489] = {.lex_state = 247}, + [4490] = {.lex_state = 182, .external_lex_state = 1}, + [4491] = {.lex_state = 317}, + [4492] = {.lex_state = 247}, + [4493] = {.lex_state = 247}, + [4494] = {.lex_state = 247}, + [4495] = {.lex_state = 247}, + [4496] = {.lex_state = 247}, + [4497] = {.lex_state = 247}, + [4498] = {.lex_state = 189}, + [4499] = {.lex_state = 271}, + [4500] = {.lex_state = 188}, + [4501] = {.lex_state = 182}, + [4502] = {.lex_state = 182}, + [4503] = {.lex_state = 182}, + [4504] = {.lex_state = 172, .external_lex_state = 1}, + [4505] = {.lex_state = 234, .external_lex_state = 1}, + [4506] = {.lex_state = 261}, + [4507] = {.lex_state = 281}, + [4508] = {.lex_state = 281}, + [4509] = {.lex_state = 281}, + [4510] = {.lex_state = 281}, + [4511] = {.lex_state = 281}, + [4512] = {.lex_state = 281}, + [4513] = {.lex_state = 172}, + [4514] = {.lex_state = 281}, + [4515] = {.lex_state = 281}, + [4516] = {.lex_state = 281}, + [4517] = {.lex_state = 303}, + [4518] = {.lex_state = 261}, + [4519] = {.lex_state = 261}, + [4520] = {.lex_state = 261}, + [4521] = {.lex_state = 272, .external_lex_state = 1}, + [4522] = {.lex_state = 247}, + [4523] = {.lex_state = 234, .external_lex_state = 1}, + [4524] = {.lex_state = 182, .external_lex_state = 1}, + [4525] = {.lex_state = 172, .external_lex_state = 1}, + [4526] = {.lex_state = 234, .external_lex_state = 1}, + [4527] = {.lex_state = 262}, + [4528] = {.lex_state = 172, .external_lex_state = 1}, + [4529] = {.lex_state = 172}, + [4530] = {.lex_state = 234, .external_lex_state = 1}, + [4531] = {.lex_state = 261}, + [4532] = {.lex_state = 262}, + [4533] = {.lex_state = 172}, [4534] = {.lex_state = 234, .external_lex_state = 1}, - [4535] = {.lex_state = 263}, - [4536] = {.lex_state = 283}, - [4537] = {.lex_state = 283}, - [4538] = {.lex_state = 283}, - [4539] = {.lex_state = 283}, - [4540] = {.lex_state = 283}, - [4541] = {.lex_state = 283}, + [4535] = {.lex_state = 247}, + [4536] = {.lex_state = 247}, + [4537] = {.lex_state = 172}, + [4538] = {.lex_state = 262}, + [4539] = {.lex_state = 182, .external_lex_state = 1}, + [4540] = {.lex_state = 172}, + [4541] = {.lex_state = 234, .external_lex_state = 1}, [4542] = {.lex_state = 172}, - [4543] = {.lex_state = 283}, - [4544] = {.lex_state = 283}, - [4545] = {.lex_state = 283}, - [4546] = {.lex_state = 304}, - [4547] = {.lex_state = 263}, - [4548] = {.lex_state = 263}, - [4549] = {.lex_state = 263}, - [4550] = {.lex_state = 274, .external_lex_state = 1}, + [4543] = {.lex_state = 290}, + [4544] = {.lex_state = 290}, + [4545] = {.lex_state = 257}, + [4546] = {.lex_state = 290}, + [4547] = {.lex_state = 290}, + [4548] = {.lex_state = 290}, + [4549] = {.lex_state = 257}, + [4550] = {.lex_state = 257}, [4551] = {.lex_state = 247}, - [4552] = {.lex_state = 234, .external_lex_state = 1}, - [4553] = {.lex_state = 182, .external_lex_state = 1}, - [4554] = {.lex_state = 172, .external_lex_state = 1}, - [4555] = {.lex_state = 234, .external_lex_state = 1}, - [4556] = {.lex_state = 264}, - [4557] = {.lex_state = 172, .external_lex_state = 1}, - [4558] = {.lex_state = 172}, - [4559] = {.lex_state = 234, .external_lex_state = 1}, - [4560] = {.lex_state = 263}, - [4561] = {.lex_state = 264}, - [4562] = {.lex_state = 172}, - [4563] = {.lex_state = 234, .external_lex_state = 1}, - [4564] = {.lex_state = 247}, - [4565] = {.lex_state = 235}, - [4566] = {.lex_state = 172}, - [4567] = {.lex_state = 264}, - [4568] = {.lex_state = 182, .external_lex_state = 1}, - [4569] = {.lex_state = 172}, - [4570] = {.lex_state = 234, .external_lex_state = 1}, - [4571] = {.lex_state = 172}, - [4572] = {.lex_state = 290}, - [4573] = {.lex_state = 290}, - [4574] = {.lex_state = 257}, - [4575] = {.lex_state = 290}, - [4576] = {.lex_state = 290}, - [4577] = {.lex_state = 290}, - [4578] = {.lex_state = 257}, - [4579] = {.lex_state = 257}, + [4552] = {.lex_state = 189}, + [4553] = {.lex_state = 189}, + [4554] = {.lex_state = 189}, + [4555] = {.lex_state = 172}, + [4556] = {.lex_state = 262}, + [4557] = {.lex_state = 262}, + [4558] = {.lex_state = 261}, + [4559] = {.lex_state = 262}, + [4560] = {.lex_state = 262}, + [4561] = {.lex_state = 262}, + [4562] = {.lex_state = 261}, + [4563] = {.lex_state = 261}, + [4564] = {.lex_state = 262}, + [4565] = {.lex_state = 281}, + [4566] = {.lex_state = 281}, + [4567] = {.lex_state = 281}, + [4568] = {.lex_state = 271}, + [4569] = {.lex_state = 271}, + [4570] = {.lex_state = 271}, + [4571] = {.lex_state = 271}, + [4572] = {.lex_state = 271}, + [4573] = {.lex_state = 247}, + [4574] = {.lex_state = 282}, + [4575] = {.lex_state = 189}, + [4576] = {.lex_state = 188, .external_lex_state = 1}, + [4577] = {.lex_state = 310, .external_lex_state = 1}, + [4578] = {.lex_state = 182, .external_lex_state = 1}, + [4579] = {.lex_state = 247}, [4580] = {.lex_state = 247}, - [4581] = {.lex_state = 189}, + [4581] = {.lex_state = 247}, [4582] = {.lex_state = 189}, [4583] = {.lex_state = 189}, - [4584] = {.lex_state = 283}, - [4585] = {.lex_state = 283}, - [4586] = {.lex_state = 283}, - [4587] = {.lex_state = 273}, - [4588] = {.lex_state = 273}, - [4589] = {.lex_state = 273}, - [4590] = {.lex_state = 273}, - [4591] = {.lex_state = 273}, - [4592] = {.lex_state = 172}, - [4593] = {.lex_state = 264}, - [4594] = {.lex_state = 264}, - [4595] = {.lex_state = 263}, - [4596] = {.lex_state = 264}, - [4597] = {.lex_state = 264}, - [4598] = {.lex_state = 264}, - [4599] = {.lex_state = 263}, - [4600] = {.lex_state = 263}, - [4601] = {.lex_state = 264}, - [4602] = {.lex_state = 247}, - [4603] = {.lex_state = 284}, - [4604] = {.lex_state = 189}, - [4605] = {.lex_state = 188, .external_lex_state = 1}, - [4606] = {.lex_state = 312, .external_lex_state = 1}, - [4607] = {.lex_state = 182, .external_lex_state = 1}, - [4608] = {.lex_state = 247}, - [4609] = {.lex_state = 247}, - [4610] = {.lex_state = 247}, - [4611] = {.lex_state = 189}, - [4612] = {.lex_state = 189}, - [4613] = {.lex_state = 189}, - [4614] = {.lex_state = 189}, - [4615] = {.lex_state = 307, .external_lex_state = 1}, - [4616] = {.lex_state = 172}, - [4617] = {.lex_state = 307, .external_lex_state = 1}, - [4618] = {.lex_state = 234, .external_lex_state = 1}, - [4619] = {.lex_state = 172}, - [4620] = {.lex_state = 307, .external_lex_state = 1}, - [4621] = {.lex_state = 274, .external_lex_state = 1}, - [4622] = {.lex_state = 247}, - [4623] = {.lex_state = 234, .external_lex_state = 1}, - [4624] = {.lex_state = 182, .external_lex_state = 1}, - [4625] = {.lex_state = 234, .external_lex_state = 1}, - [4626] = {.lex_state = 264}, - [4627] = {.lex_state = 182, .external_lex_state = 1}, - [4628] = {.lex_state = 307, .external_lex_state = 1}, - [4629] = {.lex_state = 307, .external_lex_state = 1}, - [4630] = {.lex_state = 172}, - [4631] = {.lex_state = 234, .external_lex_state = 1}, + [4584] = {.lex_state = 189}, + [4585] = {.lex_state = 189}, + [4586] = {.lex_state = 305, .external_lex_state = 1}, + [4587] = {.lex_state = 172}, + [4588] = {.lex_state = 305, .external_lex_state = 1}, + [4589] = {.lex_state = 234, .external_lex_state = 1}, + [4590] = {.lex_state = 172}, + [4591] = {.lex_state = 305, .external_lex_state = 1}, + [4592] = {.lex_state = 272, .external_lex_state = 1}, + [4593] = {.lex_state = 247}, + [4594] = {.lex_state = 234, .external_lex_state = 1}, + [4595] = {.lex_state = 182, .external_lex_state = 1}, + [4596] = {.lex_state = 234, .external_lex_state = 1}, + [4597] = {.lex_state = 262}, + [4598] = {.lex_state = 182, .external_lex_state = 1}, + [4599] = {.lex_state = 305, .external_lex_state = 1}, + [4600] = {.lex_state = 305, .external_lex_state = 1}, + [4601] = {.lex_state = 172}, + [4602] = {.lex_state = 234, .external_lex_state = 1}, + [4603] = {.lex_state = 234, .external_lex_state = 1}, + [4604] = {.lex_state = 261}, + [4605] = {.lex_state = 262}, + [4606] = {.lex_state = 272, .external_lex_state = 1}, + [4607] = {.lex_state = 234, .external_lex_state = 1}, + [4608] = {.lex_state = 234, .external_lex_state = 1}, + [4609] = {.lex_state = 234, .external_lex_state = 1}, + [4610] = {.lex_state = 274, .external_lex_state = 1}, + [4611] = {.lex_state = 172}, + [4612] = {.lex_state = 182, .external_lex_state = 1}, + [4613] = {.lex_state = 172}, + [4614] = {.lex_state = 234, .external_lex_state = 1}, + [4615] = {.lex_state = 234, .external_lex_state = 1}, + [4616] = {.lex_state = 289}, + [4617] = {.lex_state = 289}, + [4618] = {.lex_state = 289}, + [4619] = {.lex_state = 289}, + [4620] = {.lex_state = 289}, + [4621] = {.lex_state = 289}, + [4622] = {.lex_state = 172}, + [4623] = {.lex_state = 289}, + [4624] = {.lex_state = 289}, + [4625] = {.lex_state = 289}, + [4626] = {.lex_state = 291, .external_lex_state = 1}, + [4627] = {.lex_state = 291, .external_lex_state = 1}, + [4628] = {.lex_state = 234, .external_lex_state = 1}, + [4629] = {.lex_state = 261}, + [4630] = {.lex_state = 262}, + [4631] = {.lex_state = 272, .external_lex_state = 1}, [4632] = {.lex_state = 234, .external_lex_state = 1}, - [4633] = {.lex_state = 263}, - [4634] = {.lex_state = 264}, + [4633] = {.lex_state = 234, .external_lex_state = 1}, + [4634] = {.lex_state = 234, .external_lex_state = 1}, [4635] = {.lex_state = 274, .external_lex_state = 1}, - [4636] = {.lex_state = 234, .external_lex_state = 1}, - [4637] = {.lex_state = 234, .external_lex_state = 1}, - [4638] = {.lex_state = 234, .external_lex_state = 1}, - [4639] = {.lex_state = 276, .external_lex_state = 1}, - [4640] = {.lex_state = 172}, - [4641] = {.lex_state = 182, .external_lex_state = 1}, - [4642] = {.lex_state = 172}, + [4636] = {.lex_state = 172}, + [4637] = {.lex_state = 182, .external_lex_state = 1}, + [4638] = {.lex_state = 172}, + [4639] = {.lex_state = 234, .external_lex_state = 1}, + [4640] = {.lex_state = 291, .external_lex_state = 1}, + [4641] = {.lex_state = 291, .external_lex_state = 1}, + [4642] = {.lex_state = 258, .external_lex_state = 1}, [4643] = {.lex_state = 234, .external_lex_state = 1}, - [4644] = {.lex_state = 234, .external_lex_state = 1}, - [4645] = {.lex_state = 289}, - [4646] = {.lex_state = 289}, - [4647] = {.lex_state = 289}, - [4648] = {.lex_state = 289}, - [4649] = {.lex_state = 289}, - [4650] = {.lex_state = 289}, - [4651] = {.lex_state = 172}, - [4652] = {.lex_state = 289}, - [4653] = {.lex_state = 289}, - [4654] = {.lex_state = 289}, - [4655] = {.lex_state = 291, .external_lex_state = 1}, - [4656] = {.lex_state = 291, .external_lex_state = 1}, - [4657] = {.lex_state = 234, .external_lex_state = 1}, - [4658] = {.lex_state = 263}, - [4659] = {.lex_state = 264}, - [4660] = {.lex_state = 274, .external_lex_state = 1}, - [4661] = {.lex_state = 234, .external_lex_state = 1}, + [4644] = {.lex_state = 261}, + [4645] = {.lex_state = 262}, + [4646] = {.lex_state = 258, .external_lex_state = 1}, + [4647] = {.lex_state = 234, .external_lex_state = 1}, + [4648] = {.lex_state = 247}, + [4649] = {.lex_state = 247}, + [4650] = {.lex_state = 258, .external_lex_state = 1}, + [4651] = {.lex_state = 262}, + [4652] = {.lex_state = 182, .external_lex_state = 1}, + [4653] = {.lex_state = 258, .external_lex_state = 1}, + [4654] = {.lex_state = 234, .external_lex_state = 1}, + [4655] = {.lex_state = 234, .external_lex_state = 1}, + [4656] = {.lex_state = 261}, + [4657] = {.lex_state = 272, .external_lex_state = 1}, + [4658] = {.lex_state = 247}, + [4659] = {.lex_state = 234, .external_lex_state = 1}, + [4660] = {.lex_state = 182, .external_lex_state = 1}, + [4661] = {.lex_state = 172, .external_lex_state = 1}, [4662] = {.lex_state = 234, .external_lex_state = 1}, - [4663] = {.lex_state = 234, .external_lex_state = 1}, - [4664] = {.lex_state = 276, .external_lex_state = 1}, - [4665] = {.lex_state = 172}, - [4666] = {.lex_state = 182, .external_lex_state = 1}, - [4667] = {.lex_state = 172}, - [4668] = {.lex_state = 234, .external_lex_state = 1}, - [4669] = {.lex_state = 291, .external_lex_state = 1}, - [4670] = {.lex_state = 291, .external_lex_state = 1}, - [4671] = {.lex_state = 260, .external_lex_state = 1}, - [4672] = {.lex_state = 234, .external_lex_state = 1}, - [4673] = {.lex_state = 263}, - [4674] = {.lex_state = 264}, - [4675] = {.lex_state = 260, .external_lex_state = 1}, - [4676] = {.lex_state = 234, .external_lex_state = 1}, - [4677] = {.lex_state = 247}, - [4678] = {.lex_state = 235}, - [4679] = {.lex_state = 260, .external_lex_state = 1}, - [4680] = {.lex_state = 264}, - [4681] = {.lex_state = 182, .external_lex_state = 1}, - [4682] = {.lex_state = 260, .external_lex_state = 1}, - [4683] = {.lex_state = 234, .external_lex_state = 1}, - [4684] = {.lex_state = 234, .external_lex_state = 1}, - [4685] = {.lex_state = 263}, - [4686] = {.lex_state = 274, .external_lex_state = 1}, - [4687] = {.lex_state = 247}, - [4688] = {.lex_state = 234, .external_lex_state = 1}, + [4663] = {.lex_state = 262}, + [4664] = {.lex_state = 300}, + [4665] = {.lex_state = 308}, + [4666] = {.lex_state = 172}, + [4667] = {.lex_state = 308}, + [4668] = {.lex_state = 274}, + [4669] = {.lex_state = 189}, + [4670] = {.lex_state = 308}, + [4671] = {.lex_state = 172}, + [4672] = {.lex_state = 308}, + [4673] = {.lex_state = 274}, + [4674] = {.lex_state = 247}, + [4675] = {.lex_state = 172}, + [4676] = {.lex_state = 308}, + [4677] = {.lex_state = 182, .external_lex_state = 1}, + [4678] = {.lex_state = 247}, + [4679] = {.lex_state = 189}, + [4680] = {.lex_state = 172}, + [4681] = {.lex_state = 308}, + [4682] = {.lex_state = 308}, + [4683] = {.lex_state = 172}, + [4684] = {.lex_state = 308}, + [4685] = {.lex_state = 308}, + [4686] = {.lex_state = 308}, + [4687] = {.lex_state = 268}, + [4688] = {.lex_state = 247}, [4689] = {.lex_state = 182, .external_lex_state = 1}, - [4690] = {.lex_state = 172, .external_lex_state = 1}, + [4690] = {.lex_state = 308}, [4691] = {.lex_state = 234, .external_lex_state = 1}, - [4692] = {.lex_state = 264}, - [4693] = {.lex_state = 302}, - [4694] = {.lex_state = 310}, - [4695] = {.lex_state = 172}, - [4696] = {.lex_state = 310}, - [4697] = {.lex_state = 276}, - [4698] = {.lex_state = 189}, - [4699] = {.lex_state = 310}, - [4700] = {.lex_state = 172}, - [4701] = {.lex_state = 310}, - [4702] = {.lex_state = 276}, - [4703] = {.lex_state = 247}, - [4704] = {.lex_state = 172}, - [4705] = {.lex_state = 182, .external_lex_state = 1}, - [4706] = {.lex_state = 310}, - [4707] = {.lex_state = 294}, - [4708] = {.lex_state = 189}, - [4709] = {.lex_state = 172}, - [4710] = {.lex_state = 310}, - [4711] = {.lex_state = 310}, - [4712] = {.lex_state = 172}, - [4713] = {.lex_state = 310}, - [4714] = {.lex_state = 310}, - [4715] = {.lex_state = 310}, - [4716] = {.lex_state = 270}, - [4717] = {.lex_state = 310}, - [4718] = {.lex_state = 234, .external_lex_state = 1}, - [4719] = {.lex_state = 310}, - [4720] = {.lex_state = 310}, - [4721] = {.lex_state = 310}, - [4722] = {.lex_state = 310}, - [4723] = {.lex_state = 294}, - [4724] = {.lex_state = 182, .external_lex_state = 1}, - [4725] = {.lex_state = 310}, - [4726] = {.lex_state = 302}, - [4727] = {.lex_state = 302}, - [4728] = {.lex_state = 172}, - [4729] = {.lex_state = 302}, - [4730] = {.lex_state = 302}, - [4731] = {.lex_state = 247}, + [4692] = {.lex_state = 308}, + [4693] = {.lex_state = 308}, + [4694] = {.lex_state = 308}, + [4695] = {.lex_state = 308}, + [4696] = {.lex_state = 308}, + [4697] = {.lex_state = 300}, + [4698] = {.lex_state = 300}, + [4699] = {.lex_state = 172}, + [4700] = {.lex_state = 300}, + [4701] = {.lex_state = 300}, + [4702] = {.lex_state = 247}, + [4703] = {.lex_state = 172}, + [4704] = {.lex_state = 182, .external_lex_state = 1}, + [4705] = {.lex_state = 300}, + [4706] = {.lex_state = 300}, + [4707] = {.lex_state = 172}, + [4708] = {.lex_state = 300}, + [4709] = {.lex_state = 247}, + [4710] = {.lex_state = 265}, + [4711] = {.lex_state = 247}, + [4712] = {.lex_state = 247}, + [4713] = {.lex_state = 247}, + [4714] = {.lex_state = 247}, + [4715] = {.lex_state = 247}, + [4716] = {.lex_state = 172}, + [4717] = {.lex_state = 247}, + [4718] = {.lex_state = 247}, + [4719] = {.lex_state = 247}, + [4720] = {.lex_state = 247}, + [4721] = {.lex_state = 247}, + [4722] = {.lex_state = 172, .external_lex_state = 1}, + [4723] = {.lex_state = 234, .external_lex_state = 1}, + [4724] = {.lex_state = 281}, + [4725] = {.lex_state = 234, .external_lex_state = 1}, + [4726] = {.lex_state = 262}, + [4727] = {.lex_state = 272, .external_lex_state = 1}, + [4728] = {.lex_state = 247}, + [4729] = {.lex_state = 262}, + [4730] = {.lex_state = 172, .external_lex_state = 1}, + [4731] = {.lex_state = 234, .external_lex_state = 1}, [4732] = {.lex_state = 172}, - [4733] = {.lex_state = 182, .external_lex_state = 1}, - [4734] = {.lex_state = 302}, - [4735] = {.lex_state = 302}, - [4736] = {.lex_state = 172}, - [4737] = {.lex_state = 302}, - [4738] = {.lex_state = 294}, - [4739] = {.lex_state = 266}, - [4740] = {.lex_state = 294}, - [4741] = {.lex_state = 294}, - [4742] = {.lex_state = 294}, - [4743] = {.lex_state = 294}, - [4744] = {.lex_state = 294}, - [4745] = {.lex_state = 294}, - [4746] = {.lex_state = 294}, - [4747] = {.lex_state = 294}, - [4748] = {.lex_state = 294}, - [4749] = {.lex_state = 247}, - [4750] = {.lex_state = 172}, - [4751] = {.lex_state = 172, .external_lex_state = 1}, - [4752] = {.lex_state = 234, .external_lex_state = 1}, - [4753] = {.lex_state = 283}, - [4754] = {.lex_state = 234, .external_lex_state = 1}, - [4755] = {.lex_state = 264}, - [4756] = {.lex_state = 274, .external_lex_state = 1}, - [4757] = {.lex_state = 247}, - [4758] = {.lex_state = 264}, - [4759] = {.lex_state = 172, .external_lex_state = 1}, - [4760] = {.lex_state = 234, .external_lex_state = 1}, - [4761] = {.lex_state = 172}, - [4762] = {.lex_state = 234, .external_lex_state = 1}, - [4763] = {.lex_state = 263}, - [4764] = {.lex_state = 274, .external_lex_state = 1}, - [4765] = {.lex_state = 247}, - [4766] = {.lex_state = 234, .external_lex_state = 1}, - [4767] = {.lex_state = 182, .external_lex_state = 1}, + [4733] = {.lex_state = 234, .external_lex_state = 1}, + [4734] = {.lex_state = 261}, + [4735] = {.lex_state = 272, .external_lex_state = 1}, + [4736] = {.lex_state = 247}, + [4737] = {.lex_state = 234, .external_lex_state = 1}, + [4738] = {.lex_state = 182, .external_lex_state = 1}, + [4739] = {.lex_state = 172}, + [4740] = {.lex_state = 234, .external_lex_state = 1}, + [4741] = {.lex_state = 262}, + [4742] = {.lex_state = 172}, + [4743] = {.lex_state = 290}, + [4744] = {.lex_state = 290}, + [4745] = {.lex_state = 290}, + [4746] = {.lex_state = 257}, + [4747] = {.lex_state = 257}, + [4748] = {.lex_state = 257}, + [4749] = {.lex_state = 290}, + [4750] = {.lex_state = 257}, + [4751] = {.lex_state = 257}, + [4752] = {.lex_state = 257}, + [4753] = {.lex_state = 262}, + [4754] = {.lex_state = 262}, + [4755] = {.lex_state = 262}, + [4756] = {.lex_state = 261}, + [4757] = {.lex_state = 261}, + [4758] = {.lex_state = 261}, + [4759] = {.lex_state = 262}, + [4760] = {.lex_state = 261}, + [4761] = {.lex_state = 261}, + [4762] = {.lex_state = 261}, + [4763] = {.lex_state = 262}, + [4764] = {.lex_state = 189}, + [4765] = {.lex_state = 189}, + [4766] = {.lex_state = 189}, + [4767] = {.lex_state = 305, .external_lex_state = 1}, [4768] = {.lex_state = 172}, - [4769] = {.lex_state = 234, .external_lex_state = 1}, - [4770] = {.lex_state = 264}, - [4771] = {.lex_state = 172}, - [4772] = {.lex_state = 290}, - [4773] = {.lex_state = 290}, - [4774] = {.lex_state = 290}, - [4775] = {.lex_state = 257}, - [4776] = {.lex_state = 257}, - [4777] = {.lex_state = 257}, - [4778] = {.lex_state = 290}, - [4779] = {.lex_state = 257}, - [4780] = {.lex_state = 257}, - [4781] = {.lex_state = 257}, - [4782] = {.lex_state = 264}, - [4783] = {.lex_state = 264}, - [4784] = {.lex_state = 264}, - [4785] = {.lex_state = 263}, - [4786] = {.lex_state = 263}, - [4787] = {.lex_state = 263}, - [4788] = {.lex_state = 264}, - [4789] = {.lex_state = 263}, - [4790] = {.lex_state = 263}, - [4791] = {.lex_state = 263}, - [4792] = {.lex_state = 264}, - [4793] = {.lex_state = 189}, - [4794] = {.lex_state = 189}, - [4795] = {.lex_state = 189}, - [4796] = {.lex_state = 307, .external_lex_state = 1}, - [4797] = {.lex_state = 172}, - [4798] = {.lex_state = 307, .external_lex_state = 1}, - [4799] = {.lex_state = 307, .external_lex_state = 1}, - [4800] = {.lex_state = 234, .external_lex_state = 1}, - [4801] = {.lex_state = 264}, - [4802] = {.lex_state = 274, .external_lex_state = 1}, - [4803] = {.lex_state = 247}, - [4804] = {.lex_state = 264}, - [4805] = {.lex_state = 189}, - [4806] = {.lex_state = 172}, - [4807] = {.lex_state = 172}, - [4808] = {.lex_state = 172}, - [4809] = {.lex_state = 172}, - [4810] = {.lex_state = 307, .external_lex_state = 1}, - [4811] = {.lex_state = 234, .external_lex_state = 1}, - [4812] = {.lex_state = 264}, - [4813] = {.lex_state = 263}, - [4814] = {.lex_state = 307, .external_lex_state = 1}, - [4815] = {.lex_state = 234, .external_lex_state = 1}, - [4816] = {.lex_state = 234, .external_lex_state = 1}, - [4817] = {.lex_state = 263}, - [4818] = {.lex_state = 264}, - [4819] = {.lex_state = 234, .external_lex_state = 1}, - [4820] = {.lex_state = 234, .external_lex_state = 1}, - [4821] = {.lex_state = 247}, - [4822] = {.lex_state = 235}, - [4823] = {.lex_state = 234, .external_lex_state = 1}, - [4824] = {.lex_state = 264}, - [4825] = {.lex_state = 182, .external_lex_state = 1}, - [4826] = {.lex_state = 234, .external_lex_state = 1}, - [4827] = {.lex_state = 234, .external_lex_state = 1}, - [4828] = {.lex_state = 289}, - [4829] = {.lex_state = 291, .external_lex_state = 1}, - [4830] = {.lex_state = 234, .external_lex_state = 1}, - [4831] = {.lex_state = 263}, - [4832] = {.lex_state = 264}, - [4833] = {.lex_state = 291, .external_lex_state = 1}, - [4834] = {.lex_state = 234, .external_lex_state = 1}, - [4835] = {.lex_state = 247}, - [4836] = {.lex_state = 235}, - [4837] = {.lex_state = 291, .external_lex_state = 1}, - [4838] = {.lex_state = 264}, - [4839] = {.lex_state = 182, .external_lex_state = 1}, - [4840] = {.lex_state = 291, .external_lex_state = 1}, - [4841] = {.lex_state = 234, .external_lex_state = 1}, - [4842] = {.lex_state = 260, .external_lex_state = 1}, - [4843] = {.lex_state = 234, .external_lex_state = 1}, - [4844] = {.lex_state = 263}, - [4845] = {.lex_state = 274, .external_lex_state = 1}, - [4846] = {.lex_state = 247}, - [4847] = {.lex_state = 234, .external_lex_state = 1}, - [4848] = {.lex_state = 182, .external_lex_state = 1}, - [4849] = {.lex_state = 260, .external_lex_state = 1}, - [4850] = {.lex_state = 234, .external_lex_state = 1}, - [4851] = {.lex_state = 264}, - [4852] = {.lex_state = 260, .external_lex_state = 1}, - [4853] = {.lex_state = 234, .external_lex_state = 1}, - [4854] = {.lex_state = 234, .external_lex_state = 1}, - [4855] = {.lex_state = 264}, - [4856] = {.lex_state = 274, .external_lex_state = 1}, - [4857] = {.lex_state = 247}, - [4858] = {.lex_state = 264}, - [4859] = {.lex_state = 172, .external_lex_state = 1}, - [4860] = {.lex_state = 234, .external_lex_state = 1}, - [4861] = {.lex_state = 310}, - [4862] = {.lex_state = 310}, - [4863] = {.lex_state = 310}, - [4864] = {.lex_state = 172}, - [4865] = {.lex_state = 310}, - [4866] = {.lex_state = 310}, - [4867] = {.lex_state = 247}, - [4868] = {.lex_state = 172}, - [4869] = {.lex_state = 182, .external_lex_state = 1}, - [4870] = {.lex_state = 310}, - [4871] = {.lex_state = 310}, + [4769] = {.lex_state = 305, .external_lex_state = 1}, + [4770] = {.lex_state = 305, .external_lex_state = 1}, + [4771] = {.lex_state = 234, .external_lex_state = 1}, + [4772] = {.lex_state = 262}, + [4773] = {.lex_state = 272, .external_lex_state = 1}, + [4774] = {.lex_state = 247}, + [4775] = {.lex_state = 262}, + [4776] = {.lex_state = 189}, + [4777] = {.lex_state = 172}, + [4778] = {.lex_state = 172}, + [4779] = {.lex_state = 172}, + [4780] = {.lex_state = 172}, + [4781] = {.lex_state = 305, .external_lex_state = 1}, + [4782] = {.lex_state = 234, .external_lex_state = 1}, + [4783] = {.lex_state = 262}, + [4784] = {.lex_state = 261}, + [4785] = {.lex_state = 305, .external_lex_state = 1}, + [4786] = {.lex_state = 234, .external_lex_state = 1}, + [4787] = {.lex_state = 234, .external_lex_state = 1}, + [4788] = {.lex_state = 261}, + [4789] = {.lex_state = 262}, + [4790] = {.lex_state = 234, .external_lex_state = 1}, + [4791] = {.lex_state = 234, .external_lex_state = 1}, + [4792] = {.lex_state = 247}, + [4793] = {.lex_state = 247}, + [4794] = {.lex_state = 234, .external_lex_state = 1}, + [4795] = {.lex_state = 262}, + [4796] = {.lex_state = 182, .external_lex_state = 1}, + [4797] = {.lex_state = 234, .external_lex_state = 1}, + [4798] = {.lex_state = 234, .external_lex_state = 1}, + [4799] = {.lex_state = 289}, + [4800] = {.lex_state = 291, .external_lex_state = 1}, + [4801] = {.lex_state = 234, .external_lex_state = 1}, + [4802] = {.lex_state = 261}, + [4803] = {.lex_state = 262}, + [4804] = {.lex_state = 291, .external_lex_state = 1}, + [4805] = {.lex_state = 234, .external_lex_state = 1}, + [4806] = {.lex_state = 247}, + [4807] = {.lex_state = 247}, + [4808] = {.lex_state = 291, .external_lex_state = 1}, + [4809] = {.lex_state = 262}, + [4810] = {.lex_state = 182, .external_lex_state = 1}, + [4811] = {.lex_state = 291, .external_lex_state = 1}, + [4812] = {.lex_state = 234, .external_lex_state = 1}, + [4813] = {.lex_state = 258, .external_lex_state = 1}, + [4814] = {.lex_state = 234, .external_lex_state = 1}, + [4815] = {.lex_state = 261}, + [4816] = {.lex_state = 272, .external_lex_state = 1}, + [4817] = {.lex_state = 247}, + [4818] = {.lex_state = 234, .external_lex_state = 1}, + [4819] = {.lex_state = 182, .external_lex_state = 1}, + [4820] = {.lex_state = 258, .external_lex_state = 1}, + [4821] = {.lex_state = 234, .external_lex_state = 1}, + [4822] = {.lex_state = 262}, + [4823] = {.lex_state = 258, .external_lex_state = 1}, + [4824] = {.lex_state = 234, .external_lex_state = 1}, + [4825] = {.lex_state = 234, .external_lex_state = 1}, + [4826] = {.lex_state = 262}, + [4827] = {.lex_state = 272, .external_lex_state = 1}, + [4828] = {.lex_state = 247}, + [4829] = {.lex_state = 262}, + [4830] = {.lex_state = 172, .external_lex_state = 1}, + [4831] = {.lex_state = 234, .external_lex_state = 1}, + [4832] = {.lex_state = 308}, + [4833] = {.lex_state = 308}, + [4834] = {.lex_state = 308}, + [4835] = {.lex_state = 172}, + [4836] = {.lex_state = 308}, + [4837] = {.lex_state = 308}, + [4838] = {.lex_state = 247}, + [4839] = {.lex_state = 172}, + [4840] = {.lex_state = 182, .external_lex_state = 1}, + [4841] = {.lex_state = 308}, + [4842] = {.lex_state = 308}, + [4843] = {.lex_state = 172}, + [4844] = {.lex_state = 308}, + [4845] = {.lex_state = 247}, + [4846] = {.lex_state = 300}, + [4847] = {.lex_state = 300}, + [4848] = {.lex_state = 247}, + [4849] = {.lex_state = 172}, + [4850] = {.lex_state = 300}, + [4851] = {.lex_state = 182, .external_lex_state = 1}, + [4852] = {.lex_state = 265}, + [4853] = {.lex_state = 247}, + [4854] = {.lex_state = 247}, + [4855] = {.lex_state = 247}, + [4856] = {.lex_state = 247}, + [4857] = {.lex_state = 172, .external_lex_state = 1}, + [4858] = {.lex_state = 234, .external_lex_state = 1}, + [4859] = {.lex_state = 261}, + [4860] = {.lex_state = 262}, + [4861] = {.lex_state = 272, .external_lex_state = 1}, + [4862] = {.lex_state = 234, .external_lex_state = 1}, + [4863] = {.lex_state = 234, .external_lex_state = 1}, + [4864] = {.lex_state = 172, .external_lex_state = 1}, + [4865] = {.lex_state = 172}, + [4866] = {.lex_state = 234, .external_lex_state = 1}, + [4867] = {.lex_state = 234, .external_lex_state = 1}, + [4868] = {.lex_state = 262}, + [4869] = {.lex_state = 272, .external_lex_state = 1}, + [4870] = {.lex_state = 247}, + [4871] = {.lex_state = 262}, [4872] = {.lex_state = 172}, - [4873] = {.lex_state = 310}, - [4874] = {.lex_state = 294}, - [4875] = {.lex_state = 302}, - [4876] = {.lex_state = 302}, - [4877] = {.lex_state = 247}, - [4878] = {.lex_state = 172}, - [4879] = {.lex_state = 302}, - [4880] = {.lex_state = 182, .external_lex_state = 1}, - [4881] = {.lex_state = 294}, - [4882] = {.lex_state = 294}, - [4883] = {.lex_state = 294}, - [4884] = {.lex_state = 294}, - [4885] = {.lex_state = 266}, - [4886] = {.lex_state = 172, .external_lex_state = 1}, - [4887] = {.lex_state = 234, .external_lex_state = 1}, - [4888] = {.lex_state = 263}, - [4889] = {.lex_state = 264}, - [4890] = {.lex_state = 274, .external_lex_state = 1}, - [4891] = {.lex_state = 234, .external_lex_state = 1}, - [4892] = {.lex_state = 234, .external_lex_state = 1}, - [4893] = {.lex_state = 172, .external_lex_state = 1}, - [4894] = {.lex_state = 172}, - [4895] = {.lex_state = 234, .external_lex_state = 1}, - [4896] = {.lex_state = 234, .external_lex_state = 1}, - [4897] = {.lex_state = 264}, - [4898] = {.lex_state = 274, .external_lex_state = 1}, - [4899] = {.lex_state = 247}, - [4900] = {.lex_state = 264}, - [4901] = {.lex_state = 172}, - [4902] = {.lex_state = 234, .external_lex_state = 1}, - [4903] = {.lex_state = 257}, - [4904] = {.lex_state = 290}, - [4905] = {.lex_state = 257}, - [4906] = {.lex_state = 257}, - [4907] = {.lex_state = 257}, - [4908] = {.lex_state = 290}, - [4909] = {.lex_state = 257}, - [4910] = {.lex_state = 257}, - [4911] = {.lex_state = 257}, - [4912] = {.lex_state = 263}, - [4913] = {.lex_state = 264}, - [4914] = {.lex_state = 263}, - [4915] = {.lex_state = 263}, - [4916] = {.lex_state = 263}, - [4917] = {.lex_state = 264}, - [4918] = {.lex_state = 263}, - [4919] = {.lex_state = 263}, - [4920] = {.lex_state = 263}, - [4921] = {.lex_state = 307, .external_lex_state = 1}, - [4922] = {.lex_state = 307, .external_lex_state = 1}, - [4923] = {.lex_state = 234, .external_lex_state = 1}, - [4924] = {.lex_state = 263}, - [4925] = {.lex_state = 264}, - [4926] = {.lex_state = 274, .external_lex_state = 1}, + [4873] = {.lex_state = 234, .external_lex_state = 1}, + [4874] = {.lex_state = 257}, + [4875] = {.lex_state = 290}, + [4876] = {.lex_state = 257}, + [4877] = {.lex_state = 257}, + [4878] = {.lex_state = 257}, + [4879] = {.lex_state = 290}, + [4880] = {.lex_state = 257}, + [4881] = {.lex_state = 257}, + [4882] = {.lex_state = 257}, + [4883] = {.lex_state = 261}, + [4884] = {.lex_state = 262}, + [4885] = {.lex_state = 261}, + [4886] = {.lex_state = 261}, + [4887] = {.lex_state = 261}, + [4888] = {.lex_state = 262}, + [4889] = {.lex_state = 261}, + [4890] = {.lex_state = 261}, + [4891] = {.lex_state = 261}, + [4892] = {.lex_state = 305, .external_lex_state = 1}, + [4893] = {.lex_state = 305, .external_lex_state = 1}, + [4894] = {.lex_state = 234, .external_lex_state = 1}, + [4895] = {.lex_state = 261}, + [4896] = {.lex_state = 262}, + [4897] = {.lex_state = 272, .external_lex_state = 1}, + [4898] = {.lex_state = 234, .external_lex_state = 1}, + [4899] = {.lex_state = 234, .external_lex_state = 1}, + [4900] = {.lex_state = 234, .external_lex_state = 1}, + [4901] = {.lex_state = 274, .external_lex_state = 1}, + [4902] = {.lex_state = 172}, + [4903] = {.lex_state = 182, .external_lex_state = 1}, + [4904] = {.lex_state = 172}, + [4905] = {.lex_state = 234, .external_lex_state = 1}, + [4906] = {.lex_state = 305, .external_lex_state = 1}, + [4907] = {.lex_state = 305, .external_lex_state = 1}, + [4908] = {.lex_state = 234, .external_lex_state = 1}, + [4909] = {.lex_state = 234, .external_lex_state = 1}, + [4910] = {.lex_state = 261}, + [4911] = {.lex_state = 272, .external_lex_state = 1}, + [4912] = {.lex_state = 247}, + [4913] = {.lex_state = 234, .external_lex_state = 1}, + [4914] = {.lex_state = 182, .external_lex_state = 1}, + [4915] = {.lex_state = 234, .external_lex_state = 1}, + [4916] = {.lex_state = 234, .external_lex_state = 1}, + [4917] = {.lex_state = 262}, + [4918] = {.lex_state = 234, .external_lex_state = 1}, + [4919] = {.lex_state = 291, .external_lex_state = 1}, + [4920] = {.lex_state = 234, .external_lex_state = 1}, + [4921] = {.lex_state = 261}, + [4922] = {.lex_state = 272, .external_lex_state = 1}, + [4923] = {.lex_state = 247}, + [4924] = {.lex_state = 234, .external_lex_state = 1}, + [4925] = {.lex_state = 182, .external_lex_state = 1}, + [4926] = {.lex_state = 291, .external_lex_state = 1}, [4927] = {.lex_state = 234, .external_lex_state = 1}, - [4928] = {.lex_state = 234, .external_lex_state = 1}, - [4929] = {.lex_state = 234, .external_lex_state = 1}, - [4930] = {.lex_state = 276, .external_lex_state = 1}, - [4931] = {.lex_state = 172}, - [4932] = {.lex_state = 182, .external_lex_state = 1}, - [4933] = {.lex_state = 172}, - [4934] = {.lex_state = 234, .external_lex_state = 1}, - [4935] = {.lex_state = 307, .external_lex_state = 1}, - [4936] = {.lex_state = 307, .external_lex_state = 1}, - [4937] = {.lex_state = 234, .external_lex_state = 1}, + [4928] = {.lex_state = 262}, + [4929] = {.lex_state = 291, .external_lex_state = 1}, + [4930] = {.lex_state = 258, .external_lex_state = 1}, + [4931] = {.lex_state = 234, .external_lex_state = 1}, + [4932] = {.lex_state = 234, .external_lex_state = 1}, + [4933] = {.lex_state = 262}, + [4934] = {.lex_state = 272, .external_lex_state = 1}, + [4935] = {.lex_state = 247}, + [4936] = {.lex_state = 262}, + [4937] = {.lex_state = 258, .external_lex_state = 1}, [4938] = {.lex_state = 234, .external_lex_state = 1}, - [4939] = {.lex_state = 263}, - [4940] = {.lex_state = 274, .external_lex_state = 1}, - [4941] = {.lex_state = 247}, - [4942] = {.lex_state = 234, .external_lex_state = 1}, - [4943] = {.lex_state = 182, .external_lex_state = 1}, + [4939] = {.lex_state = 234, .external_lex_state = 1}, + [4940] = {.lex_state = 261}, + [4941] = {.lex_state = 262}, + [4942] = {.lex_state = 272, .external_lex_state = 1}, + [4943] = {.lex_state = 234, .external_lex_state = 1}, [4944] = {.lex_state = 234, .external_lex_state = 1}, - [4945] = {.lex_state = 234, .external_lex_state = 1}, - [4946] = {.lex_state = 264}, - [4947] = {.lex_state = 234, .external_lex_state = 1}, - [4948] = {.lex_state = 291, .external_lex_state = 1}, - [4949] = {.lex_state = 234, .external_lex_state = 1}, - [4950] = {.lex_state = 263}, - [4951] = {.lex_state = 274, .external_lex_state = 1}, - [4952] = {.lex_state = 247}, - [4953] = {.lex_state = 234, .external_lex_state = 1}, - [4954] = {.lex_state = 182, .external_lex_state = 1}, - [4955] = {.lex_state = 291, .external_lex_state = 1}, - [4956] = {.lex_state = 234, .external_lex_state = 1}, - [4957] = {.lex_state = 264}, - [4958] = {.lex_state = 291, .external_lex_state = 1}, - [4959] = {.lex_state = 260, .external_lex_state = 1}, + [4945] = {.lex_state = 172, .external_lex_state = 1}, + [4946] = {.lex_state = 308}, + [4947] = {.lex_state = 308}, + [4948] = {.lex_state = 247}, + [4949] = {.lex_state = 172}, + [4950] = {.lex_state = 308}, + [4951] = {.lex_state = 182, .external_lex_state = 1}, + [4952] = {.lex_state = 300}, + [4953] = {.lex_state = 247}, + [4954] = {.lex_state = 172}, + [4955] = {.lex_state = 234, .external_lex_state = 1}, + [4956] = {.lex_state = 261}, + [4957] = {.lex_state = 262}, + [4958] = {.lex_state = 234, .external_lex_state = 1}, + [4959] = {.lex_state = 172}, [4960] = {.lex_state = 234, .external_lex_state = 1}, - [4961] = {.lex_state = 234, .external_lex_state = 1}, - [4962] = {.lex_state = 264}, - [4963] = {.lex_state = 274, .external_lex_state = 1}, - [4964] = {.lex_state = 247}, - [4965] = {.lex_state = 264}, - [4966] = {.lex_state = 260, .external_lex_state = 1}, - [4967] = {.lex_state = 234, .external_lex_state = 1}, - [4968] = {.lex_state = 234, .external_lex_state = 1}, - [4969] = {.lex_state = 263}, - [4970] = {.lex_state = 264}, - [4971] = {.lex_state = 274, .external_lex_state = 1}, - [4972] = {.lex_state = 234, .external_lex_state = 1}, - [4973] = {.lex_state = 234, .external_lex_state = 1}, - [4974] = {.lex_state = 172, .external_lex_state = 1}, - [4975] = {.lex_state = 310}, - [4976] = {.lex_state = 310}, - [4977] = {.lex_state = 247}, - [4978] = {.lex_state = 172}, - [4979] = {.lex_state = 310}, - [4980] = {.lex_state = 182, .external_lex_state = 1}, - [4981] = {.lex_state = 302}, + [4961] = {.lex_state = 261}, + [4962] = {.lex_state = 262}, + [4963] = {.lex_state = 272, .external_lex_state = 1}, + [4964] = {.lex_state = 234, .external_lex_state = 1}, + [4965] = {.lex_state = 234, .external_lex_state = 1}, + [4966] = {.lex_state = 172}, + [4967] = {.lex_state = 290}, + [4968] = {.lex_state = 257}, + [4969] = {.lex_state = 257}, + [4970] = {.lex_state = 257}, + [4971] = {.lex_state = 262}, + [4972] = {.lex_state = 261}, + [4973] = {.lex_state = 261}, + [4974] = {.lex_state = 261}, + [4975] = {.lex_state = 305, .external_lex_state = 1}, + [4976] = {.lex_state = 234, .external_lex_state = 1}, + [4977] = {.lex_state = 261}, + [4978] = {.lex_state = 262}, + [4979] = {.lex_state = 305, .external_lex_state = 1}, + [4980] = {.lex_state = 234, .external_lex_state = 1}, + [4981] = {.lex_state = 247}, [4982] = {.lex_state = 247}, - [4983] = {.lex_state = 172}, - [4984] = {.lex_state = 234, .external_lex_state = 1}, - [4985] = {.lex_state = 263}, - [4986] = {.lex_state = 264}, + [4983] = {.lex_state = 305, .external_lex_state = 1}, + [4984] = {.lex_state = 262}, + [4985] = {.lex_state = 182, .external_lex_state = 1}, + [4986] = {.lex_state = 305, .external_lex_state = 1}, [4987] = {.lex_state = 234, .external_lex_state = 1}, - [4988] = {.lex_state = 172}, + [4988] = {.lex_state = 234, .external_lex_state = 1}, [4989] = {.lex_state = 234, .external_lex_state = 1}, - [4990] = {.lex_state = 263}, - [4991] = {.lex_state = 264}, - [4992] = {.lex_state = 274, .external_lex_state = 1}, - [4993] = {.lex_state = 234, .external_lex_state = 1}, - [4994] = {.lex_state = 234, .external_lex_state = 1}, - [4995] = {.lex_state = 172}, - [4996] = {.lex_state = 290}, - [4997] = {.lex_state = 257}, - [4998] = {.lex_state = 257}, - [4999] = {.lex_state = 257}, - [5000] = {.lex_state = 264}, - [5001] = {.lex_state = 263}, - [5002] = {.lex_state = 263}, - [5003] = {.lex_state = 263}, - [5004] = {.lex_state = 307, .external_lex_state = 1}, + [4990] = {.lex_state = 234, .external_lex_state = 1}, + [4991] = {.lex_state = 262}, + [4992] = {.lex_state = 272, .external_lex_state = 1}, + [4993] = {.lex_state = 247}, + [4994] = {.lex_state = 262}, + [4995] = {.lex_state = 234, .external_lex_state = 1}, + [4996] = {.lex_state = 234, .external_lex_state = 1}, + [4997] = {.lex_state = 291, .external_lex_state = 1}, + [4998] = {.lex_state = 234, .external_lex_state = 1}, + [4999] = {.lex_state = 234, .external_lex_state = 1}, + [5000] = {.lex_state = 262}, + [5001] = {.lex_state = 272, .external_lex_state = 1}, + [5002] = {.lex_state = 247}, + [5003] = {.lex_state = 262}, + [5004] = {.lex_state = 291, .external_lex_state = 1}, [5005] = {.lex_state = 234, .external_lex_state = 1}, - [5006] = {.lex_state = 263}, - [5007] = {.lex_state = 264}, - [5008] = {.lex_state = 307, .external_lex_state = 1}, - [5009] = {.lex_state = 234, .external_lex_state = 1}, - [5010] = {.lex_state = 247}, - [5011] = {.lex_state = 235}, - [5012] = {.lex_state = 307, .external_lex_state = 1}, - [5013] = {.lex_state = 264}, - [5014] = {.lex_state = 182, .external_lex_state = 1}, - [5015] = {.lex_state = 307, .external_lex_state = 1}, - [5016] = {.lex_state = 234, .external_lex_state = 1}, + [5006] = {.lex_state = 258, .external_lex_state = 1}, + [5007] = {.lex_state = 234, .external_lex_state = 1}, + [5008] = {.lex_state = 261}, + [5009] = {.lex_state = 262}, + [5010] = {.lex_state = 272, .external_lex_state = 1}, + [5011] = {.lex_state = 234, .external_lex_state = 1}, + [5012] = {.lex_state = 234, .external_lex_state = 1}, + [5013] = {.lex_state = 258, .external_lex_state = 1}, + [5014] = {.lex_state = 234, .external_lex_state = 1}, + [5015] = {.lex_state = 261}, + [5016] = {.lex_state = 262}, [5017] = {.lex_state = 234, .external_lex_state = 1}, - [5018] = {.lex_state = 234, .external_lex_state = 1}, - [5019] = {.lex_state = 234, .external_lex_state = 1}, - [5020] = {.lex_state = 264}, - [5021] = {.lex_state = 274, .external_lex_state = 1}, - [5022] = {.lex_state = 247}, - [5023] = {.lex_state = 264}, + [5018] = {.lex_state = 308}, + [5019] = {.lex_state = 247}, + [5020] = {.lex_state = 172}, + [5021] = {.lex_state = 300}, + [5022] = {.lex_state = 234, .external_lex_state = 1}, + [5023] = {.lex_state = 261}, [5024] = {.lex_state = 234, .external_lex_state = 1}, - [5025] = {.lex_state = 234, .external_lex_state = 1}, - [5026] = {.lex_state = 291, .external_lex_state = 1}, + [5025] = {.lex_state = 261}, + [5026] = {.lex_state = 262}, [5027] = {.lex_state = 234, .external_lex_state = 1}, - [5028] = {.lex_state = 234, .external_lex_state = 1}, - [5029] = {.lex_state = 264}, - [5030] = {.lex_state = 274, .external_lex_state = 1}, - [5031] = {.lex_state = 247}, - [5032] = {.lex_state = 264}, - [5033] = {.lex_state = 291, .external_lex_state = 1}, - [5034] = {.lex_state = 234, .external_lex_state = 1}, - [5035] = {.lex_state = 260, .external_lex_state = 1}, + [5028] = {.lex_state = 305, .external_lex_state = 1}, + [5029] = {.lex_state = 234, .external_lex_state = 1}, + [5030] = {.lex_state = 261}, + [5031] = {.lex_state = 272, .external_lex_state = 1}, + [5032] = {.lex_state = 247}, + [5033] = {.lex_state = 234, .external_lex_state = 1}, + [5034] = {.lex_state = 182, .external_lex_state = 1}, + [5035] = {.lex_state = 305, .external_lex_state = 1}, [5036] = {.lex_state = 234, .external_lex_state = 1}, - [5037] = {.lex_state = 263}, - [5038] = {.lex_state = 264}, - [5039] = {.lex_state = 274, .external_lex_state = 1}, + [5037] = {.lex_state = 262}, + [5038] = {.lex_state = 305, .external_lex_state = 1}, + [5039] = {.lex_state = 234, .external_lex_state = 1}, [5040] = {.lex_state = 234, .external_lex_state = 1}, - [5041] = {.lex_state = 234, .external_lex_state = 1}, - [5042] = {.lex_state = 260, .external_lex_state = 1}, - [5043] = {.lex_state = 234, .external_lex_state = 1}, - [5044] = {.lex_state = 263}, - [5045] = {.lex_state = 264}, + [5041] = {.lex_state = 261}, + [5042] = {.lex_state = 262}, + [5043] = {.lex_state = 272, .external_lex_state = 1}, + [5044] = {.lex_state = 234, .external_lex_state = 1}, + [5045] = {.lex_state = 234, .external_lex_state = 1}, [5046] = {.lex_state = 234, .external_lex_state = 1}, - [5047] = {.lex_state = 310}, - [5048] = {.lex_state = 247}, - [5049] = {.lex_state = 172}, - [5050] = {.lex_state = 302}, - [5051] = {.lex_state = 234, .external_lex_state = 1}, - [5052] = {.lex_state = 263}, + [5047] = {.lex_state = 291, .external_lex_state = 1}, + [5048] = {.lex_state = 234, .external_lex_state = 1}, + [5049] = {.lex_state = 261}, + [5050] = {.lex_state = 262}, + [5051] = {.lex_state = 272, .external_lex_state = 1}, + [5052] = {.lex_state = 234, .external_lex_state = 1}, [5053] = {.lex_state = 234, .external_lex_state = 1}, - [5054] = {.lex_state = 263}, - [5055] = {.lex_state = 264}, - [5056] = {.lex_state = 234, .external_lex_state = 1}, - [5057] = {.lex_state = 307, .external_lex_state = 1}, + [5054] = {.lex_state = 291, .external_lex_state = 1}, + [5055] = {.lex_state = 234, .external_lex_state = 1}, + [5056] = {.lex_state = 261}, + [5057] = {.lex_state = 262}, [5058] = {.lex_state = 234, .external_lex_state = 1}, - [5059] = {.lex_state = 263}, - [5060] = {.lex_state = 274, .external_lex_state = 1}, - [5061] = {.lex_state = 247}, + [5059] = {.lex_state = 234, .external_lex_state = 1}, + [5060] = {.lex_state = 261}, + [5061] = {.lex_state = 308}, [5062] = {.lex_state = 234, .external_lex_state = 1}, - [5063] = {.lex_state = 182, .external_lex_state = 1}, - [5064] = {.lex_state = 307, .external_lex_state = 1}, - [5065] = {.lex_state = 234, .external_lex_state = 1}, - [5066] = {.lex_state = 264}, - [5067] = {.lex_state = 307, .external_lex_state = 1}, - [5068] = {.lex_state = 234, .external_lex_state = 1}, - [5069] = {.lex_state = 234, .external_lex_state = 1}, - [5070] = {.lex_state = 263}, - [5071] = {.lex_state = 264}, - [5072] = {.lex_state = 274, .external_lex_state = 1}, + [5063] = {.lex_state = 234, .external_lex_state = 1}, + [5064] = {.lex_state = 261}, + [5065] = {.lex_state = 305, .external_lex_state = 1}, + [5066] = {.lex_state = 234, .external_lex_state = 1}, + [5067] = {.lex_state = 234, .external_lex_state = 1}, + [5068] = {.lex_state = 262}, + [5069] = {.lex_state = 272, .external_lex_state = 1}, + [5070] = {.lex_state = 247}, + [5071] = {.lex_state = 262}, + [5072] = {.lex_state = 305, .external_lex_state = 1}, [5073] = {.lex_state = 234, .external_lex_state = 1}, [5074] = {.lex_state = 234, .external_lex_state = 1}, - [5075] = {.lex_state = 234, .external_lex_state = 1}, - [5076] = {.lex_state = 291, .external_lex_state = 1}, + [5075] = {.lex_state = 261}, + [5076] = {.lex_state = 262}, [5077] = {.lex_state = 234, .external_lex_state = 1}, - [5078] = {.lex_state = 263}, - [5079] = {.lex_state = 264}, - [5080] = {.lex_state = 274, .external_lex_state = 1}, + [5078] = {.lex_state = 234, .external_lex_state = 1}, + [5079] = {.lex_state = 261}, + [5080] = {.lex_state = 262}, [5081] = {.lex_state = 234, .external_lex_state = 1}, [5082] = {.lex_state = 234, .external_lex_state = 1}, - [5083] = {.lex_state = 291, .external_lex_state = 1}, + [5083] = {.lex_state = 261}, [5084] = {.lex_state = 234, .external_lex_state = 1}, - [5085] = {.lex_state = 263}, - [5086] = {.lex_state = 264}, + [5085] = {.lex_state = 234, .external_lex_state = 1}, + [5086] = {.lex_state = 305, .external_lex_state = 1}, [5087] = {.lex_state = 234, .external_lex_state = 1}, - [5088] = {.lex_state = 234, .external_lex_state = 1}, - [5089] = {.lex_state = 263}, - [5090] = {.lex_state = 310}, + [5088] = {.lex_state = 261}, + [5089] = {.lex_state = 262}, + [5090] = {.lex_state = 272, .external_lex_state = 1}, [5091] = {.lex_state = 234, .external_lex_state = 1}, [5092] = {.lex_state = 234, .external_lex_state = 1}, - [5093] = {.lex_state = 263}, - [5094] = {.lex_state = 307, .external_lex_state = 1}, - [5095] = {.lex_state = 234, .external_lex_state = 1}, + [5093] = {.lex_state = 305, .external_lex_state = 1}, + [5094] = {.lex_state = 234, .external_lex_state = 1}, + [5095] = {.lex_state = 261}, [5096] = {.lex_state = 234, .external_lex_state = 1}, - [5097] = {.lex_state = 264}, - [5098] = {.lex_state = 274, .external_lex_state = 1}, - [5099] = {.lex_state = 247}, - [5100] = {.lex_state = 264}, - [5101] = {.lex_state = 307, .external_lex_state = 1}, + [5097] = {.lex_state = 261}, + [5098] = {.lex_state = 234, .external_lex_state = 1}, + [5099] = {.lex_state = 234, .external_lex_state = 1}, + [5100] = {.lex_state = 261}, + [5101] = {.lex_state = 262}, [5102] = {.lex_state = 234, .external_lex_state = 1}, [5103] = {.lex_state = 234, .external_lex_state = 1}, - [5104] = {.lex_state = 263}, - [5105] = {.lex_state = 264}, - [5106] = {.lex_state = 234, .external_lex_state = 1}, + [5104] = {.lex_state = 234, .external_lex_state = 1}, + [5105] = {.lex_state = 234, .external_lex_state = 1}, + [5106] = {.lex_state = 261}, [5107] = {.lex_state = 234, .external_lex_state = 1}, - [5108] = {.lex_state = 263}, - [5109] = {.lex_state = 264}, - [5110] = {.lex_state = 234, .external_lex_state = 1}, - [5111] = {.lex_state = 234, .external_lex_state = 1}, - [5112] = {.lex_state = 263}, - [5113] = {.lex_state = 234, .external_lex_state = 1}, - [5114] = {.lex_state = 234, .external_lex_state = 1}, - [5115] = {.lex_state = 307, .external_lex_state = 1}, - [5116] = {.lex_state = 234, .external_lex_state = 1}, - [5117] = {.lex_state = 263}, - [5118] = {.lex_state = 264}, - [5119] = {.lex_state = 274, .external_lex_state = 1}, - [5120] = {.lex_state = 234, .external_lex_state = 1}, - [5121] = {.lex_state = 234, .external_lex_state = 1}, - [5122] = {.lex_state = 307, .external_lex_state = 1}, - [5123] = {.lex_state = 234, .external_lex_state = 1}, - [5124] = {.lex_state = 263}, - [5125] = {.lex_state = 234, .external_lex_state = 1}, - [5126] = {.lex_state = 263}, - [5127] = {.lex_state = 234, .external_lex_state = 1}, - [5128] = {.lex_state = 234, .external_lex_state = 1}, - [5129] = {.lex_state = 263}, - [5130] = {.lex_state = 264}, - [5131] = {.lex_state = 234, .external_lex_state = 1}, - [5132] = {.lex_state = 234, .external_lex_state = 1}, - [5133] = {.lex_state = 234, .external_lex_state = 1}, - [5134] = {.lex_state = 234, .external_lex_state = 1}, - [5135] = {.lex_state = 263}, - [5136] = {.lex_state = 234, .external_lex_state = 1}, }; enum { @@ -14400,91 +14292,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1), }, [1] = { - [sym_goto_statement] = STATE(57), - [sym_preproc_function_def] = STATE(57), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(57), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(57), + [sym_goto_statement] = STATE(65), + [sym_preproc_function_def] = STATE(65), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(65), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(65), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(65), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(65), + [sym_namespace_definition] = STATE(65), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(57), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_preproc_include] = STATE(57), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(57), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(57), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(65), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(65), + [sym_preproc_include] = STATE(65), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(65), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(65), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(57), - [sym_template_instantiation] = STATE(57), - [sym_constructor_or_destructor_definition] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(57), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(57), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(57), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [aux_sym_translation_unit_repeat1] = STATE(57), - [sym_compound_literal_expression] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym_char_literal] = STATE(55), - [sym__empty_declaration] = STATE(57), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_translation_unit] = STATE(58), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(57), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(57), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(57), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(57), - [sym_preproc_if] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(65), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(65), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(65), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_translation_unit] = STATE(61), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(65), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(65), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(65), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(65), + [sym_preproc_if] = STATE(65), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(57), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(57), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(57), - [sym_while_statement] = STATE(57), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(65), + [aux_sym_translation_unit_repeat1] = STATE(65), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(65), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(65), + [sym_while_statement] = STATE(65), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -14559,35 +14451,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(11), }, [2] = { - [sym_template_type] = STATE(71), + [sym_template_function] = STATE(72), [sym__expression] = STATE(72), [sym_logical_expression] = STATE(72), [sym_bitwise_expression] = STATE(72), [sym_cast_expression] = STATE(72), - [sym_new_expression] = STATE(72), + [sym_delete_expression] = STATE(72), [sym_field_expression] = STATE(47), [sym_compound_literal_expression] = STATE(72), + [sym_lambda_expression] = STATE(72), [sym_char_literal] = STATE(72), - [sym_template_function] = STATE(72), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(72), [sym_equality_expression] = STATE(72), [sym_relational_expression] = STATE(72), - [sym_delete_expression] = STATE(72), [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(47), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(72), - [sym_lambda_expression] = STATE(72), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), [sym_concatenated_string] = STATE(72), - [sym_string_literal] = STATE(52), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(47), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(72), [sym_pointer_expression] = STATE(47), [sym_shift_expression] = STATE(72), [sym_math_expression] = STATE(72), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_new_expression] = STATE(72), [sym_raw_string_literal] = ACTIONS(109), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -14664,35 +14556,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(129), }, [5] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_new_expression] = STATE(77), + [sym_template_function] = STATE(78), + [sym__expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_delete_expression] = STATE(78), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_template_function] = STATE(77), - [sym_conditional_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_delete_expression] = STATE(77), - [sym_sizeof_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_lambda_expression] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(78), + [sym_lambda_expression] = STATE(78), + [sym_char_literal] = STATE(78), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(77), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(78), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(78), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(78), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_new_expression] = STATE(78), [sym_raw_string_literal] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -14719,35 +14611,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(45), }, [6] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(79), - [sym_logical_expression] = STATE(79), - [sym_bitwise_expression] = STATE(79), - [sym_cast_expression] = STATE(79), - [sym_new_expression] = STATE(79), + [sym_template_function] = STATE(80), + [sym__expression] = STATE(80), + [sym_logical_expression] = STATE(80), + [sym_bitwise_expression] = STATE(80), + [sym_cast_expression] = STATE(80), + [sym_delete_expression] = STATE(80), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(79), - [sym_char_literal] = STATE(79), - [sym_template_function] = STATE(79), - [sym_conditional_expression] = STATE(79), - [sym_equality_expression] = STATE(79), - [sym_relational_expression] = STATE(79), - [sym_delete_expression] = STATE(79), - [sym_sizeof_expression] = STATE(79), - [sym_parenthesized_expression] = STATE(79), - [sym_lambda_expression] = STATE(79), - [sym_concatenated_string] = STATE(79), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(80), + [sym_lambda_expression] = STATE(80), + [sym_char_literal] = STATE(80), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(80), + [sym_equality_expression] = STATE(80), + [sym_relational_expression] = STATE(80), + [sym_sizeof_expression] = STATE(80), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(79), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(80), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(80), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(80), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(79), - [sym_math_expression] = STATE(79), + [sym_shift_expression] = STATE(80), + [sym_math_expression] = STATE(80), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_new_expression] = STATE(80), [sym_raw_string_literal] = ACTIONS(135), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(137), @@ -14774,20 +14666,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(45), }, [7] = { - [sym_union_specifier] = STATE(91), - [sym_macro_type_specifier] = STATE(91), - [sym_class_specifier] = STATE(91), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(91), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(90), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(91), - [sym_enum_specifier] = STATE(91), - [sym_dependent_type] = STATE(91), - [sym_struct_specifier] = STATE(91), - [sym_scoped_type_identifier] = STATE(87), - [sym_type_qualifier] = STATE(90), + [sym_union_specifier] = STATE(89), + [sym_macro_type_specifier] = STATE(89), + [sym_class_specifier] = STATE(89), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_struct_specifier] = STATE(89), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(89), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_type_qualifier] = STATE(88), + [sym_dependent_type] = STATE(89), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(143), [anon_sym_signed] = ACTIONS(145), @@ -14811,13 +14703,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(11), }, [8] = { - [sym_parenthesized_expression] = STATE(93), + [sym_parenthesized_expression] = STATE(94), [anon_sym_LPAREN2] = ACTIONS(157), [sym_comment] = ACTIONS(3), }, [9] = { - [sym_template_argument_list] = STATE(99), [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(101), [anon_sym_LPAREN2] = ACTIONS(159), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -14876,35 +14768,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(165), }, [10] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(102), - [sym_logical_expression] = STATE(102), - [sym_bitwise_expression] = STATE(102), - [sym_cast_expression] = STATE(102), - [sym_new_expression] = STATE(102), + [sym_template_function] = STATE(103), + [sym__expression] = STATE(103), + [sym_logical_expression] = STATE(103), + [sym_bitwise_expression] = STATE(103), + [sym_cast_expression] = STATE(103), + [sym_delete_expression] = STATE(103), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(102), - [sym_char_literal] = STATE(102), - [sym_template_function] = STATE(102), - [sym_conditional_expression] = STATE(102), - [sym_equality_expression] = STATE(102), - [sym_relational_expression] = STATE(102), - [sym_delete_expression] = STATE(102), - [sym_sizeof_expression] = STATE(102), - [sym_parenthesized_expression] = STATE(102), - [sym_lambda_expression] = STATE(102), - [sym_concatenated_string] = STATE(102), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(103), + [sym_lambda_expression] = STATE(103), + [sym_char_literal] = STATE(103), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(103), + [sym_equality_expression] = STATE(103), + [sym_relational_expression] = STATE(103), + [sym_sizeof_expression] = STATE(103), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(102), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(103), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(103), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(103), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(102), - [sym_math_expression] = STATE(102), + [sym_shift_expression] = STATE(103), + [sym_math_expression] = STATE(103), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_new_expression] = STATE(103), [sym_raw_string_literal] = ACTIONS(190), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -14939,7 +14831,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [sym_string_literal] = STATE(106), + [sym_string_literal] = STATE(107), [anon_sym_LPAREN2] = ACTIONS(200), [anon_sym_struct] = ACTIONS(202), [sym_auto] = ACTIONS(202), @@ -14961,6 +14853,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(202), [anon_sym_const] = ACTIONS(202), [anon_sym_extern] = ACTIONS(202), + [anon_sym_LBRACK] = ACTIONS(200), [anon_sym_DQUOTE] = ACTIONS(204), [anon_sym_enum] = ACTIONS(202), [anon_sym_class] = ACTIONS(202), @@ -14974,41 +14867,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(202), }, [14] = { - [sym_enumerator_list] = STATE(109), + [sym_enumerator_list] = STATE(110), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(206), [sym_identifier] = ACTIONS(208), }, [15] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(120), - [sym_logical_expression] = STATE(120), - [sym_bitwise_expression] = STATE(120), - [sym_cast_expression] = STATE(120), - [sym_new_expression] = STATE(120), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(120), - [sym_char_literal] = STATE(120), - [sym_template_function] = STATE(120), - [sym_conditional_expression] = STATE(120), - [sym_equality_expression] = STATE(120), - [sym_relational_expression] = STATE(120), - [sym_delete_expression] = STATE(120), - [sym_sizeof_expression] = STATE(120), - [sym_parenthesized_expression] = STATE(120), - [sym_lambda_expression] = STATE(120), - [sym_concatenated_string] = STATE(120), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(120), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(120), - [sym_math_expression] = STATE(120), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_function] = STATE(121), + [sym__expression] = STATE(121), + [sym_logical_expression] = STATE(121), + [sym_bitwise_expression] = STATE(121), + [sym_cast_expression] = STATE(121), + [sym_delete_expression] = STATE(121), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(121), + [sym_lambda_expression] = STATE(121), + [sym_char_literal] = STATE(121), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(121), + [sym_equality_expression] = STATE(121), + [sym_relational_expression] = STATE(121), + [sym_sizeof_expression] = STATE(121), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(121), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(121), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(121), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(121), + [sym_math_expression] = STATE(121), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(121), [sym_raw_string_literal] = ACTIONS(210), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), @@ -15035,7 +14928,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(232), }, [16] = { - [sym_declaration_list] = STATE(125), + [sym_declaration_list] = STATE(126), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(236), [sym_identifier] = ACTIONS(238), @@ -15046,90 +14939,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(244), }, [18] = { - [sym_goto_statement] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(133), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(133), + [sym_goto_statement] = STATE(134), + [sym_preproc_function_def] = STATE(134), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(134), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(134), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(134), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(134), + [sym_namespace_definition] = STATE(134), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(133), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_preproc_include] = STATE(133), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(133), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(133), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(134), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(134), + [sym_constructor_or_destructor_definition] = STATE(134), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(134), + [sym_preproc_include] = STATE(134), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(134), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(134), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(133), - [sym_template_instantiation] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(133), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(133), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(133), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(133), - [aux_sym_translation_unit_repeat1] = STATE(133), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(133), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(133), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(133), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(133), - [sym_preproc_if] = STATE(133), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(134), + [sym_expression_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(134), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(134), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(134), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(134), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(134), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(134), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(134), + [sym_preproc_if] = STATE(134), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(133), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(133), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(133), - [sym_while_statement] = STATE(133), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(134), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(134), + [aux_sym_translation_unit_repeat1] = STATE(134), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(134), + [sym_while_statement] = STATE(134), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -15204,54 +15097,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(11), }, [19] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_destructor_name] = STATE(148), - [sym__declarator] = STATE(148), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_array_declarator] = STATE(148), - [sym_char_literal] = STATE(147), - [sym_type_descriptor] = STATE(150), - [sym_dependent_type] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_type_qualifier] = STATE(154), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_identifier] = STATE(50), - [sym_scoped_type_identifier] = STATE(61), - [sym_function_declarator] = STATE(148), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_string_literal] = STATE(151), - [sym_delete_expression] = STATE(147), - [sym_lambda_expression] = STATE(147), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_pointer_declarator] = STATE(148), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_reference_declarator] = STATE(148), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(149), + [sym_scoped_type_identifier] = STATE(48), + [sym_field_expression] = STATE(150), + [sym_array_declarator] = STATE(149), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_lambda_expression] = STATE(148), + [sym_type_qualifier] = STATE(156), + [sym_type_descriptor] = STATE(151), + [sym_structured_binding_declarator] = STATE(149), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_function_declarator] = STATE(149), + [sym_concatenated_string] = STATE(148), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym_string_literal] = STATE(154), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_reference_declarator] = STATE(149), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_destructor_name] = STATE(149), + [sym_call_expression] = STATE(150), + [sym_pointer_declarator] = STATE(149), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [anon_sym_LPAREN2] = ACTIONS(258), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -15281,7 +15175,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(11), [sym_number_literal] = ACTIONS(262), [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(290), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), @@ -15290,117 +15184,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [20] = { - [sym_virtual_specifier] = STATE(160), - [sym_template_type] = STATE(161), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_field_declaration_list] = STATE(162), - [sym_scoped_type_identifier] = STATE(163), - [sym_base_class_clause] = STATE(164), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(300), + [sym_scoped_type_identifier] = STATE(161), + [sym_virtual_specifier] = STATE(162), + [sym_template_type] = STATE(163), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_field_declaration_list] = STATE(164), + [sym_base_class_clause] = STATE(165), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(302), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_override] = ACTIONS(300), }, [21] = { - [sym_destructor_name] = STATE(166), + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(304), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(310), + [sym_identifier] = ACTIONS(306), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(312), }, [22] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(173), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [anon_sym_namespace] = ACTIONS(316), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(175), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(316), + [anon_sym_namespace] = ACTIONS(318), [sym_comment] = ACTIONS(3), }, [23] = { [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(318), - [sym_preproc_arg] = ACTIONS(320), + [anon_sym_LF] = ACTIONS(320), + [sym_preproc_arg] = ACTIONS(322), }, [24] = { - [sym_preproc_arg] = ACTIONS(322), + [sym_preproc_arg] = ACTIONS(324), [sym_comment] = ACTIONS(3), }, [25] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_destructor_name] = STATE(191), - [sym__declarator] = STATE(191), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_array_declarator] = STATE(191), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(192), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_scoped_type_identifier] = STATE(195), - [sym_function_declarator] = STATE(191), - [sym_string_literal] = STATE(194), - [sym_subscript_expression] = STATE(190), - [sym_scoped_identifier] = STATE(193), - [sym_parenthesized_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), - [sym_pointer_declarator] = STATE(191), + [sym_template_function] = STATE(190), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_scoped_identifier] = STATE(192), + [sym__declarator] = STATE(193), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_array_declarator] = STATE(193), + [sym_char_literal] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_scoped_type_identifier] = STATE(194), + [sym_structured_binding_declarator] = STATE(193), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [sym_reference_declarator] = STATE(191), - [anon_sym_LPAREN2] = ACTIONS(324), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(328), - [sym_true] = ACTIONS(330), - [anon_sym_SQUOTE] = ACTIONS(332), - [sym_null] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(330), + [sym_parenthesized_expression] = STATE(191), + [sym_function_declarator] = STATE(193), + [sym_string_literal] = STATE(196), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(191), + [sym_reference_declarator] = STATE(193), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_destructor_name] = STATE(193), + [sym_call_expression] = STATE(191), + [sym_pointer_declarator] = STATE(193), + [sym_new_expression] = STATE(191), + [anon_sym_LPAREN2] = ACTIONS(326), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(330), + [sym_true] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(334), + [sym_null] = ACTIONS(332), + [anon_sym_DASH_DASH] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(290), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(332), [anon_sym_AMP] = ACTIONS(61), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(344), + [anon_sym_TILDE] = ACTIONS(346), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(346), - [anon_sym_new] = ACTIONS(348), + [sym_identifier] = ACTIONS(348), + [anon_sym_new] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_delete] = ACTIONS(350), - [sym_operator_name] = ACTIONS(352), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_delete] = ACTIONS(352), + [sym_operator_name] = ACTIONS(354), }, [26] = { [anon_sym_LPAREN2] = ACTIONS(200), @@ -15445,108 +15340,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(200), }, [27] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_destructor_name] = STATE(191), - [sym__declarator] = STATE(191), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_array_declarator] = STATE(191), - [sym_char_literal] = STATE(190), - [sym_type_qualifier] = STATE(198), - [sym_template_function] = STATE(192), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_scoped_type_identifier] = STATE(195), - [sym_function_declarator] = STATE(191), - [sym_string_literal] = STATE(194), - [sym_subscript_expression] = STATE(190), - [sym_scoped_identifier] = STATE(193), - [sym_parenthesized_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), - [sym_pointer_declarator] = STATE(191), + [sym_template_function] = STATE(190), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_scoped_identifier] = STATE(192), + [sym__declarator] = STATE(193), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_array_declarator] = STATE(193), + [sym_char_literal] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_scoped_type_identifier] = STATE(194), + [sym_type_qualifier] = STATE(199), + [sym_structured_binding_declarator] = STATE(193), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [aux_sym_type_definition_repeat1] = STATE(198), - [sym_reference_declarator] = STATE(191), - [anon_sym_LPAREN2] = ACTIONS(324), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(328), - [sym_true] = ACTIONS(330), + [sym_parenthesized_expression] = STATE(191), + [sym_function_declarator] = STATE(193), + [sym_string_literal] = STATE(196), + [aux_sym_type_definition_repeat1] = STATE(199), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(191), + [sym_reference_declarator] = STATE(193), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_destructor_name] = STATE(193), + [sym_call_expression] = STATE(191), + [sym_pointer_declarator] = STATE(193), + [sym_new_expression] = STATE(191), + [anon_sym_LPAREN2] = ACTIONS(326), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(330), + [sym_true] = ACTIONS(332), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(330), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_BANG] = ACTIONS(340), + [sym_null] = ACTIONS(332), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_BANG] = ACTIONS(342), [anon_sym_AMP] = ACTIONS(61), - [anon_sym_sizeof] = ACTIONS(342), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(330), [anon_sym_STAR] = ACTIONS(65), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(346), - [anon_sym_new] = ACTIONS(348), - [sym_operator_name] = ACTIONS(352), - [anon_sym_delete] = ACTIONS(350), + [sym_identifier] = ACTIONS(348), + [anon_sym_new] = ACTIONS(350), + [sym_operator_name] = ACTIONS(354), + [anon_sym_delete] = ACTIONS(352), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(326), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(117), + [sym_number_literal] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(290), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(330), - [sym_nullptr] = ACTIONS(330), - [anon_sym_TILDE] = ACTIONS(344), + [sym_false] = ACTIONS(332), + [sym_nullptr] = ACTIONS(332), + [anon_sym_TILDE] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_DASH_DASH] = ACTIONS(334), + [anon_sym_DASH_DASH] = ACTIONS(336), }, [28] = { - [sym_virtual_specifier] = STATE(200), - [sym_template_type] = STATE(201), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_field_declaration_list] = STATE(202), - [sym_scoped_type_identifier] = STATE(203), - [sym_base_class_clause] = STATE(204), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(354), + [sym_scoped_type_identifier] = STATE(201), + [sym_virtual_specifier] = STATE(202), + [sym_template_type] = STATE(203), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_field_declaration_list] = STATE(204), + [sym_base_class_clause] = STATE(205), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(356), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_override] = ACTIONS(300), }, [29] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(356), + [sym_auto] = ACTIONS(358), [anon_sym_signed] = ACTIONS(35), [sym_comment] = ACTIONS(3), [anon_sym_long] = ACTIONS(35), @@ -15557,395 +15453,397 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(35), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, [30] = { [sym_union_specifier] = STATE(212), [sym_macro_type_specifier] = STATE(212), [sym_class_specifier] = STATE(212), - [sym_template_type] = STATE(86), + [aux_sym_sized_type_specifier_repeat1] = STATE(211), [sym_sized_type_specifier] = STATE(212), - [sym_scoped_namespace_identifier] = STATE(88), [sym__type_specifier] = STATE(212), - [aux_sym_sized_type_specifier_repeat1] = STATE(211), [sym_argument_list] = STATE(213), + [sym_scoped_type_identifier] = STATE(214), [sym_enum_specifier] = STATE(212), - [sym_struct_specifier] = STATE(212), - [sym_scoped_type_identifier] = STATE(210), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_dependent_type] = STATE(212), - [anon_sym_LPAREN2] = ACTIONS(358), + [sym_struct_specifier] = STATE(212), + [anon_sym_LPAREN2] = ACTIONS(360), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(360), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_long] = ACTIONS(362), + [sym_auto] = ACTIONS(362), + [anon_sym_signed] = ACTIONS(364), + [anon_sym_long] = ACTIONS(364), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_unsigned] = ACTIONS(362), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_unsigned] = ACTIONS(364), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(366), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(362), + [anon_sym_typename] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(364), }, [31] = { - [sym_identifier] = ACTIONS(370), + [sym_identifier] = ACTIONS(372), [sym_comment] = ACTIONS(3), }, [32] = { - [sym_parenthesized_expression] = STATE(216), - [anon_sym_LPAREN2] = ACTIONS(372), + [sym_parenthesized_expression] = STATE(217), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, [33] = { - [sym_compound_statement] = STATE(218), - [anon_sym_LBRACE] = ACTIONS(374), + [sym_compound_statement] = STATE(219), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, [34] = { - [anon_sym_LPAREN2] = ACTIONS(376), + [anon_sym_LPAREN2] = ACTIONS(378), [sym_comment] = ACTIONS(3), }, [35] = { - [sym_string_literal] = STATE(220), + [sym_string_literal] = STATE(221), [sym_comment] = ACTIONS(3), - [sym_system_lib_string] = ACTIONS(378), - [anon_sym_DQUOTE] = ACTIONS(380), + [sym_system_lib_string] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), }, [36] = { - [aux_sym_string_literal_repeat1] = STATE(223), + [aux_sym_string_literal_repeat1] = STATE(224), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(382), - [aux_sym_string_literal_token1] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(384), + [sym_escape_sequence] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(386), }, [37] = { - [sym_template_type] = STATE(239), + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(420), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(414), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(422), }, [38] = { - [sym_virtual_specifier] = STATE(249), - [sym_template_type] = STATE(250), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_field_declaration_list] = STATE(251), - [sym_scoped_type_identifier] = STATE(252), - [sym_base_class_clause] = STATE(253), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(422), + [sym_scoped_type_identifier] = STATE(250), + [sym_virtual_specifier] = STATE(251), + [sym_template_type] = STATE(252), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_field_declaration_list] = STATE(253), + [sym_base_class_clause] = STATE(254), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(424), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_override] = ACTIONS(300), }, [39] = { - [anon_sym_LPAREN2] = ACTIONS(424), - [anon_sym_constexpr] = ACTIONS(426), + [anon_sym_LPAREN2] = ACTIONS(426), + [anon_sym_constexpr] = ACTIONS(428), [sym_comment] = ACTIONS(3), }, [40] = { - [sym_do_statement] = STATE(268), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [sym_do_statement] = STATE(269), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(268), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(269), + [sym_try_statement] = STATE(269), + [sym_if_statement] = STATE(269), + [sym_switch_statement] = STATE(269), + [sym_for_statement] = STATE(269), + [sym_return_statement] = STATE(269), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(269), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(269), + [sym_for_range_loop] = STATE(269), + [sym_compound_statement] = STATE(269), + [sym_labeled_statement] = STATE(269), + [sym_expression_statement] = STATE(269), + [sym_while_statement] = STATE(269), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, [41] = { - [sym_function_declarator] = STATE(280), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(279), - [sym_destructor_name] = STATE(280), - [sym__declarator] = STATE(280), - [sym_array_declarator] = STATE(280), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_pointer_declarator] = STATE(280), - [sym_scoped_namespace_identifier] = STATE(282), - [sym_template_function] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_template_parameter_list] = STATE(284), - [sym__declaration_specifiers] = STATE(285), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(280), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_function] = STATE(283), + [sym_macro_type_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(283), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(283), + [sym_array_declarator] = STATE(283), + [sym_template_type] = STATE(284), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_destructor_name] = STATE(283), + [sym_type_qualifier] = STATE(285), + [sym_pointer_declarator] = STATE(283), + [sym_structured_binding_declarator] = STATE(283), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_template_parameter_list] = STATE(286), + [sym__declaration_specifiers] = STATE(287), + [sym_scoped_namespace_identifier] = STATE(288), + [sym_function_declarator] = STATE(283), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(466), + [anon_sym_long] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(468), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(470), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(472), - [anon_sym_short] = ACTIONS(460), - [sym_operator_name] = ACTIONS(474), + [sym_identifier] = ACTIONS(474), + [anon_sym_short] = ACTIONS(462), + [sym_operator_name] = ACTIONS(476), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_AMP_AMP] = ACTIONS(480), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, [42] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(298), - [sym_logical_expression] = STATE(298), - [sym_bitwise_expression] = STATE(298), - [sym_cast_expression] = STATE(298), - [sym_new_expression] = STATE(298), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(298), - [sym_char_literal] = STATE(298), - [sym_template_function] = STATE(298), - [sym_conditional_expression] = STATE(298), - [sym_equality_expression] = STATE(298), - [sym_relational_expression] = STATE(298), - [sym_delete_expression] = STATE(298), - [sym_sizeof_expression] = STATE(298), - [sym_parenthesized_expression] = STATE(298), - [sym_initializer_list] = STATE(301), - [sym_concatenated_string] = STATE(298), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(298), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(298), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(298), - [sym_math_expression] = STATE(298), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(484), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(478), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(484), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(498), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [sym_template_function] = STATE(300), + [sym__expression] = STATE(300), + [sym_logical_expression] = STATE(300), + [sym_bitwise_expression] = STATE(300), + [sym_cast_expression] = STATE(300), + [sym_delete_expression] = STATE(300), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(300), + [sym_lambda_expression] = STATE(300), + [sym_char_literal] = STATE(300), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(300), + [sym_equality_expression] = STATE(300), + [sym_relational_expression] = STATE(300), + [sym_sizeof_expression] = STATE(300), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(303), + [sym_parenthesized_expression] = STATE(300), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(300), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(300), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(300), + [sym_math_expression] = STATE(300), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(300), + [sym_raw_string_literal] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(488), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(482), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(502), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, [43] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(303), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), + [sym_number_literal] = ACTIONS(510), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(508), + [sym_false] = ACTIONS(512), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(508), + [sym_nullptr] = ACTIONS(512), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), [anon_sym_TILDE] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(510), + [sym_identifier] = ACTIONS(514), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), @@ -15953,105 +15851,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(45), }, [44] = { - [anon_sym_DASH] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(514), - [anon_sym_else] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [anon_sym_mutable] = ACTIONS(512), - [sym_null] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_sizeof] = ACTIONS(512), - [anon_sym_volatile] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_typedef] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(512), - [anon_sym_explicit] = ACTIONS(512), - [sym_identifier] = ACTIONS(512), - [anon_sym_delete] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(512), - [anon_sym__Atomic] = ACTIONS(512), - [sym_number_literal] = ACTIONS(514), - [anon_sym_extern] = ACTIONS(512), - [anon_sym_enum] = ACTIONS(512), - [anon_sym_constexpr] = ACTIONS(512), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(514), - [anon_sym_namespace] = ACTIONS(512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(512), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(514), - [anon_sym_DASH_DASH] = ACTIONS(514), - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(512), - [sym_auto] = ACTIONS(512), - [anon_sym_signed] = ACTIONS(512), - [anon_sym_long] = ACTIONS(512), - [anon_sym_COLON_COLON] = ACTIONS(514), - [anon_sym_using] = ACTIONS(512), - [sym_preproc_directive] = ACTIONS(512), - [aux_sym_preproc_if_token1] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_static] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_union] = ACTIONS(512), - [anon_sym_typename] = ACTIONS(512), - [anon_sym_short] = ACTIONS(512), - [anon_sym_new] = ACTIONS(512), - [anon_sym_goto] = ACTIONS(512), - [sym_operator_name] = ACTIONS(514), - [anon_sym_while] = ACTIONS(512), - [anon_sym_try] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [aux_sym_preproc_include_token1] = ACTIONS(512), - [anon_sym_register] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(514), - [anon_sym_const] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_class] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [sym_primitive_type] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_nullptr] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_template] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [ts_builtin_sym_end] = ACTIONS(514), - [aux_sym_preproc_def_token1] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(514), - [anon_sym_inline] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(514), - [anon_sym_restrict] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(516), + [sym_raw_string_literal] = ACTIONS(518), + [anon_sym_else] = ACTIONS(516), + [sym_true] = ACTIONS(516), + [anon_sym_mutable] = ACTIONS(516), + [sym_null] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_sizeof] = ACTIONS(516), + [anon_sym_volatile] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_typedef] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(516), + [anon_sym_explicit] = ACTIONS(516), + [sym_identifier] = ACTIONS(516), + [anon_sym_delete] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(516), + [anon_sym__Atomic] = ACTIONS(516), + [sym_number_literal] = ACTIONS(518), + [anon_sym_extern] = ACTIONS(516), + [anon_sym_enum] = ACTIONS(516), + [anon_sym_constexpr] = ACTIONS(516), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(518), + [anon_sym_namespace] = ACTIONS(516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [anon_sym_LPAREN2] = ACTIONS(518), + [anon_sym_struct] = ACTIONS(516), + [sym_auto] = ACTIONS(516), + [anon_sym_signed] = ACTIONS(516), + [anon_sym_long] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(518), + [anon_sym_using] = ACTIONS(516), + [sym_preproc_directive] = ACTIONS(516), + [aux_sym_preproc_if_token1] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_static] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_union] = ACTIONS(516), + [anon_sym_typename] = ACTIONS(516), + [anon_sym_short] = ACTIONS(516), + [anon_sym_new] = ACTIONS(516), + [anon_sym_goto] = ACTIONS(516), + [sym_operator_name] = ACTIONS(518), + [anon_sym_while] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [aux_sym_preproc_include_token1] = ACTIONS(516), + [anon_sym_register] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_const] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_class] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [sym_primitive_type] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_nullptr] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_template] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [ts_builtin_sym_end] = ACTIONS(518), + [aux_sym_preproc_def_token1] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_inline] = ACTIONS(516), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_restrict] = ACTIONS(516), }, [45] = { - [sym_identifier] = ACTIONS(516), + [sym_identifier] = ACTIONS(520), [sym_comment] = ACTIONS(3), }, [46] = { - [sym_reference_declarator] = STATE(191), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(191), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(191), - [sym_destructor_name] = STATE(191), - [sym__declarator] = STATE(191), - [sym_array_declarator] = STATE(191), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(191), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), + [sym_template_function] = STATE(193), + [sym_destructor_name] = STATE(193), + [sym_pointer_declarator] = STATE(193), + [sym_structured_binding_declarator] = STATE(193), + [sym__declarator] = STATE(193), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(193), + [sym_array_declarator] = STATE(193), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_function_declarator] = STATE(193), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), [anon_sym_AMP_AMP] = ACTIONS(107), - [sym_operator_name] = ACTIONS(352), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(354), [sym_comment] = ACTIONS(3), }, [47] = { @@ -16096,141 +15996,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(165), }, [48] = { - [sym_function_declarator] = STATE(315), - [sym_macro_type_specifier] = STATE(312), - [sym_class_specifier] = STATE(312), - [sym_template_type] = STATE(311), - [sym_sized_type_specifier] = STATE(312), - [sym__type_specifier] = STATE(312), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_array_declarator] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(313), - [sym_storage_class_specifier] = STATE(313), - [sym_dependent_type] = STATE(312), - [sym_struct_specifier] = STATE(312), - [sym_union_specifier] = STATE(312), - [sym_type_qualifier] = STATE(313), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(314), - [sym_template_function] = STATE(56), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(312), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(56), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_initializer_list] = STATE(311), + [sym_template_argument_list] = STATE(312), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [49] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_struct_specifier] = STATE(280), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(314), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(526), - [anon_sym_signed] = ACTIONS(35), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(69), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(530), - [anon_sym_short] = ACTIONS(35), - [sym_operator_name] = ACTIONS(75), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(526), - [anon_sym_unsigned] = ACTIONS(35), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(472), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, - [49] = { - [anon_sym_LPAREN2] = ACTIONS(532), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(163), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(532), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - }, [50] = { - [sym_template_argument_list] = STATE(316), - [anon_sym_LPAREN2] = ACTIONS(532), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(163), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(165), + [sym_abstract_reference_declarator] = STATE(321), + [sym_abstract_array_declarator] = STATE(321), + [sym_abstract_pointer_declarator] = STATE(321), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(320), + [sym__abstract_declarator] = STATE(321), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(544), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(532), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), }, [51] = { - [sym_compound_statement] = STATE(319), - [sym_field_initializer_list] = STATE(320), - [sym_default_method_clause] = STATE(319), - [sym_delete_method_clause] = STATE(319), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(546), [sym_comment] = ACTIONS(3), }, [52] = { - [sym_string_literal] = STATE(321), - [aux_sym_concatenated_string_repeat1] = STATE(321), + [sym_compound_statement] = STATE(325), + [sym_field_initializer_list] = STATE(326), + [sym_delete_method_clause] = STATE(325), + [sym_default_method_clause] = STATE(325), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + }, + [53] = { + [sym_string_literal] = STATE(327), + [aux_sym_concatenated_string_repeat1] = STATE(327), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(165), @@ -16261,182 +16136,369 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [53] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(322), - [sym_storage_class_specifier] = STATE(322), - [sym_type_qualifier] = STATE(322), - [anon_sym_LPAREN2] = ACTIONS(541), + [54] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(330), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(556), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(556), + [anon_sym_register] = ACTIONS(558), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_static] = ACTIONS(558), + [anon_sym_volatile] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(556), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_inline] = ACTIONS(558), + [sym_identifier] = ACTIONS(562), + [anon_sym_restrict] = ACTIONS(558), + [sym_operator_name] = ACTIONS(554), + [anon_sym_short] = ACTIONS(556), + }, + [55] = { + [sym_storage_class_specifier] = STATE(331), + [sym_type_qualifier] = STATE(331), + [aux_sym__declaration_specifiers_repeat1] = STATE(331), + [anon_sym_LPAREN2] = ACTIONS(565), [anon_sym_mutable] = ACTIONS(11), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(541), + [anon_sym_COLON_COLON] = ACTIONS(565), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(565), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(567), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(565), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(541), + [sym_operator_name] = ACTIONS(565), [anon_sym_restrict] = ACTIONS(11), }, - [54] = { - [sym_initializer_list] = STATE(324), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(549), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [55] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, [56] = { - [sym_parameter_list] = STATE(344), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(589), + [sym_template_function] = STATE(60), + [sym_macro_type_specifier] = STATE(334), + [sym_class_specifier] = STATE(334), + [sym_sized_type_specifier] = STATE(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym__type_specifier] = STATE(334), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(60), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(60), + [sym_array_declarator] = STATE(60), + [sym_template_type] = STATE(335), + [sym_storage_class_specifier] = STATE(336), + [sym_dependent_type] = STATE(334), + [sym_struct_specifier] = STATE(334), + [sym_union_specifier] = STATE(334), + [sym_destructor_name] = STATE(60), + [sym_type_qualifier] = STATE(336), + [sym_pointer_declarator] = STATE(60), + [sym_structured_binding_declarator] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(336), + [sym_enum_specifier] = STATE(334), + [sym_scoped_namespace_identifier] = STATE(337), + [sym_function_declarator] = STATE(338), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(569), + [anon_sym_signed] = ACTIONS(35), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(69), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(573), + [anon_sym_short] = ACTIONS(35), + [sym_operator_name] = ACTIONS(75), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(569), + [anon_sym_unsigned] = ACTIONS(35), [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_restrict] = ACTIONS(11), }, [57] = { - [sym_goto_statement] = STATE(345), - [sym_preproc_function_def] = STATE(345), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(345), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(345), + [anon_sym_LPAREN2] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_GT_EQ] = ACTIONS(165), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_RBRACE] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(165), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(165), + [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(165), + }, + [58] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [59] = { + [sym_template_argument_list] = STATE(356), + [anon_sym_LPAREN2] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_GT_EQ] = ACTIONS(165), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_RBRACE] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_COMMA] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(165), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(165), + [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(165), + }, + [60] = { + [sym_parameter_list] = STATE(359), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(616), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [ts_builtin_sym_end] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + }, + [62] = { + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(608), + }, + [63] = { + [sym_template_function] = STATE(364), + [sym_destructor_name] = STATE(364), + [sym_pointer_declarator] = STATE(364), + [sym_structured_binding_declarator] = STATE(364), + [sym__declarator] = STATE(364), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(364), + [sym_array_declarator] = STATE(364), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(365), + [sym_function_declarator] = STATE(364), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(630), + [sym_comment] = ACTIONS(3), + }, + [64] = { + [sym_initializer_list] = STATE(311), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(546), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [65] = { + [sym_goto_statement] = STATE(366), + [sym_preproc_function_def] = STATE(366), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(366), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(345), - [sym_return_statement] = STATE(345), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(366), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(366), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(366), + [sym_namespace_definition] = STATE(366), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(345), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(345), - [sym_break_statement] = STATE(345), - [sym_preproc_include] = STATE(345), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(345), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(345), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(366), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(366), + [sym_constructor_or_destructor_definition] = STATE(366), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(366), + [sym_preproc_include] = STATE(366), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(366), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(366), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(345), - [sym_template_instantiation] = STATE(345), - [sym_constructor_or_destructor_definition] = STATE(345), - [sym_expression_statement] = STATE(345), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(345), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(345), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(345), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(345), - [aux_sym_translation_unit_repeat1] = STATE(345), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(345), - [sym_if_statement] = STATE(345), - [sym_for_statement] = STATE(345), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(345), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(345), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(345), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(345), - [sym_preproc_if] = STATE(345), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(366), + [sym_expression_statement] = STATE(366), + [sym_do_statement] = STATE(366), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(366), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(366), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(366), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(366), + [sym_for_statement] = STATE(366), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(366), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(366), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(366), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(366), + [sym_preproc_if] = STATE(366), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(345), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(345), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(345), - [sym_while_statement] = STATE(345), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(366), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(366), + [aux_sym_translation_unit_repeat1] = STATE(366), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(366), + [sym_while_statement] = STATE(366), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -16497,7 +16559,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(91), [sym_primitive_type] = ACTIONS(51), [sym_false] = ACTIONS(9), - [ts_builtin_sym_end] = ACTIONS(591), + [ts_builtin_sym_end] = ACTIONS(632), [sym_nullptr] = ACTIONS(9), [anon_sym_do] = ACTIONS(95), [anon_sym_template] = ACTIONS(97), @@ -16510,210 +16572,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - }, - [59] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(581), - }, - [60] = { - [sym_reference_declarator] = STATE(352), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(352), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_structured_binding_reference_declarator] = STATE(351), - [sym_template_function] = STATE(352), - [sym_destructor_name] = STATE(352), - [sym__declarator] = STATE(352), - [sym_init_declarator] = STATE(353), - [sym_array_declarator] = STATE(352), - [sym_structured_binding_declarator] = STATE(351), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(352), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(605), - [sym_operator_name] = ACTIONS(607), - [sym_comment] = ACTIONS(3), - }, - [61] = { - [sym_template_argument_list] = STATE(354), - [sym_initializer_list] = STATE(324), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [62] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(278), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(356), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), - [anon_sym_restrict] = ACTIONS(11), - }, - [63] = { - [sym_parameter_list] = STATE(361), - [sym_abstract_array_declarator] = STATE(363), - [sym_abstract_pointer_declarator] = STATE(363), - [sym_abstract_reference_declarator] = STATE(363), - [sym_abstract_function_declarator] = STATE(362), - [sym__abstract_declarator] = STATE(363), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - }, - [64] = { - [anon_sym_COLON_COLON] = ACTIONS(549), - [sym_comment] = ACTIONS(3), - }, - [65] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(366), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(623), - [anon_sym_register] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(623), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(625), - [sym_identifier] = ACTIONS(629), - [anon_sym_restrict] = ACTIONS(625), - [sym_operator_name] = ACTIONS(621), - [anon_sym_short] = ACTIONS(623), - }, [66] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(150), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(151), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -16721,20 +16622,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -16751,118 +16652,176 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [67] = { - [sym_destructor_name] = STATE(166), + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(640), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(310), + [sym_identifier] = ACTIONS(642), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(312), }, [68] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(190), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_parenthesized_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(240), + [sym__expression] = STATE(240), + [sym_logical_expression] = STATE(240), + [sym_bitwise_expression] = STATE(240), + [sym_cast_expression] = STATE(240), + [sym_delete_expression] = STATE(240), + [sym_field_expression] = STATE(241), + [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), + [sym_char_literal] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(240), + [sym_equality_expression] = STATE(240), + [sym_relational_expression] = STATE(240), + [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), + [sym_parenthesized_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), + [sym_concatenated_string] = STATE(240), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(240), + [sym_pointer_expression] = STATE(241), + [sym_shift_expression] = STATE(240), + [sym_math_expression] = STATE(240), + [sym_call_expression] = STATE(241), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(422), + }, + [69] = { + [sym_template_function] = STATE(191), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_char_literal] = STATE(191), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(330), - [sym_null] = ACTIONS(330), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(330), + [sym_parenthesized_expression] = STATE(191), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(191), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_call_expression] = STATE(191), + [sym_new_expression] = STATE(191), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(332), + [sym_null] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(332), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [69] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), + [70] = { + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(303), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), + [sym_number_literal] = ACTIONS(510), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(508), + [sym_false] = ACTIONS(512), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(508), + [sym_nullptr] = ACTIONS(512), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -16875,9 +16834,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [70] = { - [sym_template_argument_list] = STATE(377), + [71] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -16885,7 +16844,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -16920,48 +16879,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [71] = { - [sym_initializer_list] = STATE(324), - [anon_sym_COLON_COLON] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - }, [72] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_RBRACK_RBRACK] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(654), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_RBRACK_RBRACK] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(656), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [73] = { - [sym_template_argument_list] = STATE(316), + [sym_template_argument_list] = STATE(356), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_RBRACK_RBRACK] = ACTIONS(165), @@ -16995,169 +16948,175 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(165), }, [74] = { - [sym_template_argument_list] = STATE(354), - [sym_initializer_list] = STATE(324), - [anon_sym_LT] = ACTIONS(609), + [sym_initializer_list] = STATE(311), + [sym_template_argument_list] = STATE(312), + [anon_sym_LT] = ACTIONS(534), [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), }, [75] = { - [anon_sym_COLON_COLON] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(658), [sym_comment] = ACTIONS(3), }, [76] = { - [anon_sym_DASH] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(658), - [anon_sym_else] = ACTIONS(656), - [sym_true] = ACTIONS(656), - [anon_sym_mutable] = ACTIONS(656), - [sym_null] = ACTIONS(656), - [anon_sym_break] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_sizeof] = ACTIONS(656), - [anon_sym_volatile] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_typedef] = ACTIONS(656), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_explicit] = ACTIONS(656), - [sym_identifier] = ACTIONS(656), - [anon_sym_delete] = ACTIONS(656), - [anon_sym_continue] = ACTIONS(656), - [aux_sym_preproc_ifdef_token1] = ACTIONS(656), - [anon_sym__Atomic] = ACTIONS(656), - [sym_number_literal] = ACTIONS(658), - [anon_sym_extern] = ACTIONS(656), - [anon_sym_enum] = ACTIONS(656), - [anon_sym_constexpr] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(658), - [anon_sym_namespace] = ACTIONS(656), - [aux_sym_preproc_ifdef_token2] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(658), - [anon_sym_LPAREN2] = ACTIONS(658), - [anon_sym_struct] = ACTIONS(656), - [sym_auto] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(656), - [anon_sym_long] = ACTIONS(656), + [sym_initializer_list] = STATE(311), [anon_sym_COLON_COLON] = ACTIONS(658), - [anon_sym_using] = ACTIONS(656), - [sym_preproc_directive] = ACTIONS(656), - [aux_sym_preproc_if_token1] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_static] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_union] = ACTIONS(656), - [anon_sym_typename] = ACTIONS(656), - [anon_sym_short] = ACTIONS(656), - [anon_sym_new] = ACTIONS(656), - [anon_sym_goto] = ACTIONS(656), - [sym_operator_name] = ACTIONS(658), - [anon_sym_while] = ACTIONS(656), - [anon_sym_try] = ACTIONS(656), - [anon_sym_for] = ACTIONS(656), - [aux_sym_preproc_include_token1] = ACTIONS(656), - [anon_sym_register] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_const] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_class] = ACTIONS(656), - [anon_sym_if] = ACTIONS(656), - [sym_primitive_type] = ACTIONS(656), - [sym_false] = ACTIONS(656), - [sym_nullptr] = ACTIONS(656), - [anon_sym_do] = ACTIONS(656), - [anon_sym_template] = ACTIONS(656), - [anon_sym_return] = ACTIONS(656), - [anon_sym_TILDE] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(658), - [ts_builtin_sym_end] = ACTIONS(658), - [aux_sym_preproc_def_token1] = ACTIONS(656), - [anon_sym_AMP_AMP] = ACTIONS(658), - [anon_sym_inline] = ACTIONS(656), - [anon_sym_PLUS_PLUS] = ACTIONS(658), - [anon_sym_restrict] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), }, [77] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(660), - [anon_sym_RBRACK_RBRACK] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_AMP] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(662), + [anon_sym_else] = ACTIONS(660), + [sym_true] = ACTIONS(660), + [anon_sym_mutable] = ACTIONS(660), + [sym_null] = ACTIONS(660), + [anon_sym_break] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_sizeof] = ACTIONS(660), + [anon_sym_volatile] = ACTIONS(660), [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(660), + [anon_sym_typedef] = ACTIONS(660), + [anon_sym_switch] = ACTIONS(660), + [anon_sym_explicit] = ACTIONS(660), + [sym_identifier] = ACTIONS(660), + [anon_sym_delete] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(660), + [anon_sym__Atomic] = ACTIONS(660), + [sym_number_literal] = ACTIONS(662), + [anon_sym_extern] = ACTIONS(660), + [anon_sym_enum] = ACTIONS(660), + [anon_sym_constexpr] = ACTIONS(660), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(662), + [anon_sym_namespace] = ACTIONS(660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_LPAREN2] = ACTIONS(662), + [anon_sym_struct] = ACTIONS(660), + [sym_auto] = ACTIONS(660), + [anon_sym_signed] = ACTIONS(660), + [anon_sym_long] = ACTIONS(660), + [anon_sym_COLON_COLON] = ACTIONS(662), + [anon_sym_using] = ACTIONS(660), + [sym_preproc_directive] = ACTIONS(660), + [aux_sym_preproc_if_token1] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(660), + [anon_sym_static] = ACTIONS(660), [anon_sym_RBRACE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_PIPE_PIPE] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(662), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_union] = ACTIONS(660), + [anon_sym_typename] = ACTIONS(660), + [anon_sym_short] = ACTIONS(660), + [anon_sym_new] = ACTIONS(660), + [anon_sym_goto] = ACTIONS(660), + [sym_operator_name] = ACTIONS(662), + [anon_sym_while] = ACTIONS(660), + [anon_sym_try] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [aux_sym_preproc_include_token1] = ACTIONS(660), + [anon_sym_register] = ACTIONS(660), + [anon_sym_DQUOTE] = ACTIONS(662), + [anon_sym_const] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_class] = ACTIONS(660), + [anon_sym_if] = ACTIONS(660), + [sym_primitive_type] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_nullptr] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_template] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(662), [anon_sym_SEMI] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(662), + [ts_builtin_sym_end] = ACTIONS(662), + [aux_sym_preproc_def_token1] = ACTIONS(660), [anon_sym_AMP_AMP] = ACTIONS(662), - [anon_sym_DASH_GT] = ACTIONS(561), + [anon_sym_inline] = ACTIONS(660), [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_restrict] = ACTIONS(660), }, [78] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(379), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_RBRACK_RBRACK] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(666), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + }, + [79] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(380), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -17165,20 +17124,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -17195,108 +17154,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [79] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [80] = { - [sym_virtual_specifier] = STATE(160), - [sym_template_type] = STATE(161), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_field_declaration_list] = STATE(162), - [sym_scoped_type_identifier] = STATE(380), - [sym_base_class_clause] = STATE(164), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(300), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_override] = ACTIONS(298), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [81] = { - [sym_identifier] = ACTIONS(668), + [sym_scoped_type_identifier] = STATE(381), + [sym_virtual_specifier] = STATE(162), + [sym_template_type] = STATE(163), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_field_declaration_list] = STATE(164), + [sym_base_class_clause] = STATE(165), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(302), + [anon_sym_COLON_COLON] = ACTIONS(147), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_override] = ACTIONS(300), }, [82] = { - [sym_virtual_specifier] = STATE(249), - [sym_template_type] = STATE(250), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_field_declaration_list] = STATE(251), - [sym_scoped_type_identifier] = STATE(382), - [sym_base_class_clause] = STATE(253), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(672), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_override] = ACTIONS(298), }, [83] = { - [sym_virtual_specifier] = STATE(200), - [sym_template_type] = STATE(201), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_field_declaration_list] = STATE(202), [sym_scoped_type_identifier] = STATE(383), - [sym_base_class_clause] = STATE(204), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(354), + [sym_virtual_specifier] = STATE(251), + [sym_template_type] = STATE(252), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_field_declaration_list] = STATE(253), + [sym_base_class_clause] = STATE(254), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(424), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_override] = ACTIONS(300), }, [84] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), + [sym_scoped_type_identifier] = STATE(384), + [sym_virtual_specifier] = STATE(202), + [sym_template_type] = STATE(203), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_field_declaration_list] = STATE(204), + [sym_base_class_clause] = STATE(205), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(356), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_override] = ACTIONS(300), + }, + [85] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), [anon_sym_unsigned] = ACTIONS(145), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), + [sym_auto] = ACTIONS(358), [anon_sym_signed] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_long] = ACTIONS(145), @@ -17307,16 +17266,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [85] = { - [sym_template_argument_list] = STATE(385), + [86] = { + [sym_template_argument_list] = STATE(386), [anon_sym_LPAREN2] = ACTIONS(185), [anon_sym_final] = ACTIONS(169), [anon_sym_DASH_GT] = ACTIONS(185), [anon_sym_mutable] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(534), [anon_sym_AMP] = ACTIONS(169), [anon_sym_static] = ACTIONS(169), [anon_sym_volatile] = ACTIONS(169), @@ -17345,130 +17304,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(185), [anon_sym_LBRACE] = ACTIONS(185), }, - [86] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_RBRACK_RBRACK] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_final] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_COLON] = ACTIONS(547), - [anon_sym_override] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - [sym_noexcept] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(547), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(547), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - }, [87] = { - [sym_template_argument_list] = STATE(354), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_final] = ACTIONS(547), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_override] = ACTIONS(547), - [anon_sym_COLON] = ACTIONS(547), - [anon_sym_explicit] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - [sym_noexcept] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - }, - [88] = { - [anon_sym_COLON_COLON] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - }, - [89] = { [aux_sym_sized_type_specifier_repeat1] = STATE(387), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_unsigned] = ACTIONS(674), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_unsigned] = ACTIONS(676), [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_long] = ACTIONS(674), - [sym_identifier] = ACTIONS(629), - [anon_sym_short] = ACTIONS(674), - [sym_primitive_type] = ACTIONS(627), + [anon_sym_signed] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_long] = ACTIONS(676), + [sym_identifier] = ACTIONS(562), + [anon_sym_short] = ACTIONS(676), + [sym_primitive_type] = ACTIONS(560), }, - [90] = { + [88] = { [sym_union_specifier] = STATE(389), [sym_macro_type_specifier] = STATE(389), [sym_class_specifier] = STATE(389), - [sym_template_type] = STATE(86), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), [sym_sized_type_specifier] = STATE(389), - [sym_scoped_namespace_identifier] = STATE(88), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), [sym__type_specifier] = STATE(389), - [sym_enum_specifier] = STATE(389), - [sym_dependent_type] = STATE(389), [sym_struct_specifier] = STATE(389), - [sym_scoped_type_identifier] = STATE(87), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(389), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_type_qualifier] = STATE(388), + [sym_dependent_type] = STATE(389), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(676), + [sym_auto] = ACTIONS(678), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -17478,7 +17342,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(676), + [sym_primitive_type] = ACTIONS(678), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -17489,120 +17353,215 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [91] = { + [89] = { [sym_pointer_type_declarator] = STATE(393), [sym_array_type_declarator] = STATE(393), [sym_function_type_declarator] = STATE(393), [sym__type_declarator] = STATE(393), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, + [90] = { + [sym_template_argument_list] = STATE(312), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_final] = ACTIONS(532), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_override] = ACTIONS(532), + [anon_sym_COLON] = ACTIONS(532), + [anon_sym_explicit] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + [sym_noexcept] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + }, + [91] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_RBRACK_RBRACK] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_final] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_COLON] = ACTIONS(532), + [anon_sym_override] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + [sym_noexcept] = ACTIONS(532), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(530), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + }, [92] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_char_literal] = STATE(147), - [sym_comma_expression] = STATE(153), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_parenthesized_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_concatenated_string] = STATE(147), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [anon_sym_COLON_COLON] = ACTIONS(686), + [sym_comment] = ACTIONS(3), + }, + [93] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(148), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [sym_true] = ACTIONS(264), [sym_null] = ACTIONS(264), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(262), - [anon_sym_COLON_COLON] = ACTIONS(684), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), [sym_false] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(264), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [93] = { - [sym_switch_body] = STATE(397), - [anon_sym_LBRACE] = ACTIONS(688), + [94] = { + [sym_switch_body] = STATE(398), + [anon_sym_LBRACE] = ACTIONS(692), [sym_comment] = ACTIONS(3), }, - [94] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(398), - [sym_logical_expression] = STATE(398), - [sym_bitwise_expression] = STATE(398), - [sym_cast_expression] = STATE(398), - [sym_new_expression] = STATE(398), + [95] = { + [sym_template_function] = STATE(399), + [sym__expression] = STATE(399), + [sym_logical_expression] = STATE(399), + [sym_bitwise_expression] = STATE(399), + [sym_cast_expression] = STATE(399), + [sym_delete_expression] = STATE(399), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(398), - [sym_char_literal] = STATE(398), - [sym_template_function] = STATE(398), - [sym_conditional_expression] = STATE(398), - [sym_equality_expression] = STATE(398), - [sym_relational_expression] = STATE(398), - [sym_delete_expression] = STATE(398), - [sym_sizeof_expression] = STATE(398), - [sym_parenthesized_expression] = STATE(398), - [sym_lambda_expression] = STATE(398), - [sym_concatenated_string] = STATE(398), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(399), + [sym_lambda_expression] = STATE(399), + [sym_char_literal] = STATE(399), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(399), + [sym_equality_expression] = STATE(399), + [sym_relational_expression] = STATE(399), + [sym_sizeof_expression] = STATE(399), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(398), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(399), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(399), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(399), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(398), - [sym_math_expression] = STATE(398), + [sym_shift_expression] = STATE(399), + [sym_math_expression] = STATE(399), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(690), + [sym_new_expression] = STATE(399), + [sym_raw_string_literal] = ACTIONS(694), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(692), - [sym_null] = ACTIONS(692), + [sym_true] = ACTIONS(696), + [sym_null] = ACTIONS(696), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(690), + [sym_number_literal] = ACTIONS(694), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(692), + [sym_false] = ACTIONS(696), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(692), + [sym_nullptr] = ACTIONS(696), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -17615,144 +17574,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [95] = { - [sym_destructor_name] = STATE(399), - [sym_identifier] = ACTIONS(694), - [sym_operator_name] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(308), + [96] = { + [sym_destructor_name] = STATE(400), + [sym_identifier] = ACTIONS(698), + [sym_operator_name] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, - [96] = { - [sym_template_type] = STATE(419), + [97] = { + [sym_template_function] = STATE(420), [sym__expression] = STATE(420), [sym_logical_expression] = STATE(420), [sym_bitwise_expression] = STATE(420), [sym_cast_expression] = STATE(420), - [sym_new_expression] = STATE(420), + [sym_delete_expression] = STATE(420), [sym_field_expression] = STATE(421), + [sym_scoped_type_identifier] = STATE(422), [sym_compound_literal_expression] = STATE(420), - [sym_type_descriptor] = STATE(422), [sym_char_literal] = STATE(420), + [sym_lambda_expression] = STATE(420), + [sym_scoped_identifier] = STATE(423), + [sym_type_descriptor] = STATE(424), + [sym_dependent_type] = STATE(428), + [sym_struct_specifier] = STATE(428), + [sym_union_specifier] = STATE(428), [sym_type_qualifier] = STATE(429), - [sym_dependent_type] = STATE(426), - [sym_union_specifier] = STATE(426), - [sym_struct_specifier] = STATE(426), - [sym_template_function] = STATE(420), [sym_conditional_expression] = STATE(420), [sym_equality_expression] = STATE(420), [sym_relational_expression] = STATE(420), - [sym_delete_expression] = STATE(420), [sym_sizeof_expression] = STATE(420), [sym_subscript_expression] = STATE(421), [sym_parenthesized_expression] = STATE(420), - [sym_scoped_type_identifier] = STATE(423), - [sym_string_literal] = STATE(424), - [sym_macro_type_specifier] = STATE(426), - [sym_class_specifier] = STATE(426), + [sym_lambda_capture_specifier] = STATE(425), [sym_concatenated_string] = STATE(420), - [sym_sized_type_specifier] = STATE(426), - [sym_lambda_expression] = STATE(420), - [sym_scoped_identifier] = STATE(425), - [sym__type_specifier] = STATE(426), + [sym_string_literal] = STATE(426), + [sym_macro_type_specifier] = STATE(428), + [sym_class_specifier] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(428), + [sym__type_specifier] = STATE(428), + [aux_sym_type_definition_repeat1] = STATE(429), + [sym_scoped_namespace_identifier] = STATE(430), + [sym_template_type] = STATE(431), [sym_assignment_expression] = STATE(420), [sym_pointer_expression] = STATE(421), [sym_shift_expression] = STATE(420), [sym_math_expression] = STATE(420), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_enum_specifier] = STATE(426), - [sym_raw_string_literal] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(702), - [sym_true] = ACTIONS(704), + [sym_new_expression] = STATE(420), + [sym_enum_specifier] = STATE(428), + [sym_raw_string_literal] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(706), + [sym_true] = ACTIONS(708), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(710), - [anon_sym_signed] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_GT2] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(720), + [sym_null] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_GT2] = ACTIONS(718), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_sizeof] = ACTIONS(724), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_short] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_short] = ACTIONS(716), + [anon_sym_delete] = ACTIONS(734), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(698), - [anon_sym_DQUOTE] = ACTIONS(732), + [sym_number_literal] = ACTIONS(702), + [anon_sym_DQUOTE] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(702), - [sym_false] = ACTIONS(704), - [anon_sym_unsigned] = ACTIONS(712), - [sym_nullptr] = ACTIONS(704), + [sym_primitive_type] = ACTIONS(706), + [sym_false] = ACTIONS(708), + [anon_sym_unsigned] = ACTIONS(716), + [sym_nullptr] = ACTIONS(708), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [97] = { - [sym_do_statement] = STATE(432), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [98] = { + [sym_do_statement] = STATE(433), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(432), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(432), - [sym_if_statement] = STATE(432), - [sym_switch_statement] = STATE(432), - [sym_for_statement] = STATE(432), - [sym_return_statement] = STATE(432), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(433), + [sym_try_statement] = STATE(433), + [sym_if_statement] = STATE(433), + [sym_switch_statement] = STATE(433), + [sym_for_statement] = STATE(433), + [sym_return_statement] = STATE(433), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(432), - [sym_break_statement] = STATE(432), - [sym_continue_statement] = STATE(432), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(433), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(432), - [sym_labeled_statement] = STATE(432), - [sym_expression_statement] = STATE(432), - [sym_while_statement] = STATE(432), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(433), + [sym_for_range_loop] = STATE(433), + [sym_compound_statement] = STATE(433), + [sym_labeled_statement] = STATE(433), + [sym_expression_statement] = STATE(433), + [sym_while_statement] = STATE(433), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -17766,7 +17725,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -17790,435 +17749,435 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [98] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(447), - [sym_logical_expression] = STATE(447), - [sym_bitwise_expression] = STATE(447), - [sym_cast_expression] = STATE(447), - [sym_new_expression] = STATE(447), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(447), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(447), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(447), - [sym_conditional_expression] = STATE(447), - [sym_equality_expression] = STATE(447), - [sym_relational_expression] = STATE(447), - [sym_delete_expression] = STATE(447), - [sym_sizeof_expression] = STATE(447), - [sym_parenthesized_expression] = STATE(447), + [99] = { + [sym_template_function] = STATE(448), + [sym__expression] = STATE(448), + [sym_logical_expression] = STATE(448), + [sym_bitwise_expression] = STATE(448), + [sym_cast_expression] = STATE(448), + [sym_delete_expression] = STATE(448), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(448), + [sym_lambda_expression] = STATE(448), + [sym_char_literal] = STATE(448), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(448), + [sym_equality_expression] = STATE(448), + [sym_relational_expression] = STATE(448), + [sym_sizeof_expression] = STATE(448), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), [sym_initializer_list] = STATE(451), - [sym_concatenated_string] = STATE(447), + [sym_parenthesized_expression] = STATE(448), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(447), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(447), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(447), - [sym_math_expression] = STATE(447), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(448), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(448), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(448), + [sym_math_expression] = STATE(448), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(448), [sym_initializer_pair] = STATE(451), - [sym_raw_string_literal] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(752), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(746), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(772), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(750), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(776), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [99] = { - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_mutable] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_static] = ACTIONS(787), - [anon_sym_volatile] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_explicit] = ACTIONS(787), - [sym_identifier] = ACTIONS(787), - [sym_operator_name] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_register] = ACTIONS(787), - [anon_sym__Atomic] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_extern] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(780), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_constexpr] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(785), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(780), - [anon_sym_inline] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_restrict] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(785), - }, [100] = { - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_RBRACK_RBRACK] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_COLON] = ACTIONS(794), - [anon_sym_CARET] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_DOT] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_PERCENT] = ACTIONS(794), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_BANG_EQ] = ACTIONS(794), - [anon_sym_LT_EQ] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_DASH_GT] = ACTIONS(794), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_LPAREN2] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_RBRACK_RBRACK] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), }, [101] = { - [sym_template_type] = STATE(239), + [anon_sym_LPAREN2] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_mutable] = ACTIONS(795), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_static] = ACTIONS(795), + [anon_sym_volatile] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_explicit] = ACTIONS(795), + [sym_identifier] = ACTIONS(795), + [sym_operator_name] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_register] = ACTIONS(795), + [anon_sym__Atomic] = ACTIONS(795), + [anon_sym_const] = ACTIONS(795), + [anon_sym_extern] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_constexpr] = ACTIONS(795), + [anon_sym_DOT] = ACTIONS(793), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(788), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_inline] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_restrict] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(793), + }, + [102] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(798), - }, - [102] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(802), }, [103] = { - [anon_sym_DASH] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(804), - [anon_sym_else] = ACTIONS(802), - [sym_true] = ACTIONS(802), - [anon_sym_mutable] = ACTIONS(802), - [sym_null] = ACTIONS(802), - [anon_sym_break] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(804), - [anon_sym_sizeof] = ACTIONS(802), - [anon_sym_volatile] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_typedef] = ACTIONS(802), - [anon_sym_switch] = ACTIONS(802), - [anon_sym_explicit] = ACTIONS(802), - [sym_identifier] = ACTIONS(802), - [anon_sym_delete] = ACTIONS(802), - [anon_sym_continue] = ACTIONS(802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(802), - [anon_sym__Atomic] = ACTIONS(802), - [sym_number_literal] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(802), - [anon_sym_enum] = ACTIONS(802), - [anon_sym_constexpr] = ACTIONS(802), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_struct] = ACTIONS(802), - [sym_auto] = ACTIONS(802), - [anon_sym_signed] = ACTIONS(802), - [anon_sym_long] = ACTIONS(802), - [anon_sym_COLON_COLON] = ACTIONS(804), - [anon_sym_using] = ACTIONS(802), - [sym_preproc_directive] = ACTIONS(802), - [aux_sym_preproc_if_token1] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - [anon_sym_static] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_union] = ACTIONS(802), - [anon_sym_typename] = ACTIONS(802), - [anon_sym_short] = ACTIONS(802), - [anon_sym_new] = ACTIONS(802), - [anon_sym_goto] = ACTIONS(802), - [sym_operator_name] = ACTIONS(804), - [anon_sym_while] = ACTIONS(802), - [anon_sym_try] = ACTIONS(802), - [anon_sym_for] = ACTIONS(802), - [aux_sym_preproc_include_token1] = ACTIONS(802), - [anon_sym_register] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_const] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_class] = ACTIONS(802), - [anon_sym_if] = ACTIONS(802), - [sym_primitive_type] = ACTIONS(802), - [sym_false] = ACTIONS(802), - [sym_nullptr] = ACTIONS(802), - [anon_sym_do] = ACTIONS(802), - [anon_sym_template] = ACTIONS(802), - [anon_sym_return] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(804), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), [anon_sym_SEMI] = ACTIONS(804), - [ts_builtin_sym_end] = ACTIONS(804), - [aux_sym_preproc_def_token1] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_inline] = ACTIONS(802), - [anon_sym_PLUS_PLUS] = ACTIONS(804), - [anon_sym_restrict] = ACTIONS(802), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [104] = { - [sym_goto_statement] = STATE(483), - [sym_preproc_function_def] = STATE(483), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(483), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(483), + [anon_sym_DASH] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(808), + [anon_sym_else] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [anon_sym_mutable] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(806), + [anon_sym_volatile] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_typedef] = ACTIONS(806), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_explicit] = ACTIONS(806), + [sym_identifier] = ACTIONS(806), + [anon_sym_delete] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(806), + [anon_sym__Atomic] = ACTIONS(806), + [sym_number_literal] = ACTIONS(808), + [anon_sym_extern] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_constexpr] = ACTIONS(806), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_LPAREN2] = ACTIONS(808), + [anon_sym_struct] = ACTIONS(806), + [sym_auto] = ACTIONS(806), + [anon_sym_signed] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_using] = ACTIONS(806), + [sym_preproc_directive] = ACTIONS(806), + [aux_sym_preproc_if_token1] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_union] = ACTIONS(806), + [anon_sym_typename] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_new] = ACTIONS(806), + [anon_sym_goto] = ACTIONS(806), + [sym_operator_name] = ACTIONS(808), + [anon_sym_while] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [aux_sym_preproc_include_token1] = ACTIONS(806), + [anon_sym_register] = ACTIONS(806), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_const] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [sym_primitive_type] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_nullptr] = ACTIONS(806), + [anon_sym_do] = ACTIONS(806), + [anon_sym_template] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(808), + [ts_builtin_sym_end] = ACTIONS(808), + [aux_sym_preproc_def_token1] = ACTIONS(806), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_restrict] = ACTIONS(806), + }, + [105] = { + [sym_goto_statement] = STATE(487), + [sym_preproc_function_def] = STATE(487), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(487), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(479), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(483), - [sym_return_statement] = STATE(483), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(487), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(481), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(487), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(487), + [sym_namespace_definition] = STATE(487), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(483), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(483), - [sym_break_statement] = STATE(483), - [sym_preproc_include] = STATE(483), - [sym_assignment_expression] = STATE(482), - [sym_preproc_ifdef] = STATE(483), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(483), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(487), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(487), + [sym_constructor_or_destructor_definition] = STATE(487), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(487), + [sym_preproc_include] = STATE(487), + [sym_assignment_expression] = STATE(484), + [sym_preproc_ifdef] = STATE(487), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(487), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), - [sym_compound_statement] = STATE(483), - [sym_template_instantiation] = STATE(483), - [sym_constructor_or_destructor_definition] = STATE(483), - [sym_expression_statement] = STATE(483), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(483), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), - [sym_preproc_def] = STATE(483), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), - [sym_function_definition] = STATE(483), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(483), - [aux_sym_translation_unit_repeat1] = STATE(483), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(483), - [sym_preproc_else] = STATE(479), - [sym_if_statement] = STATE(483), - [sym_for_statement] = STATE(483), - [sym_comma_expression] = STATE(484), - [sym_preproc_call] = STATE(483), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(483), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(483), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(483), - [sym_preproc_if] = STATE(483), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), + [sym_compound_statement] = STATE(487), + [sym_expression_statement] = STATE(487), + [sym_do_statement] = STATE(487), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), + [sym_preproc_def] = STATE(487), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), + [sym_function_definition] = STATE(487), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(487), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(481), + [sym_if_statement] = STATE(487), + [sym_for_statement] = STATE(487), + [sym_comma_expression] = STATE(485), + [sym_preproc_call] = STATE(487), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(487), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(487), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(487), + [sym_preproc_if] = STATE(487), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(483), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(483), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(483), - [sym_while_statement] = STATE(483), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(487), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(487), + [aux_sym_translation_unit_repeat1] = STATE(487), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(487), + [sym_while_statement] = STATE(487), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(812), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(816), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -18226,10 +18185,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -18237,66 +18196,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [105] = { - [aux_sym_string_literal_repeat1] = STATE(488), + [106] = { + [aux_sym_string_literal_repeat1] = STATE(489), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(862), - [aux_sym_string_literal_token1] = ACTIONS(862), - [anon_sym_DQUOTE] = ACTIONS(864), + [sym_escape_sequence] = ACTIONS(866), + [aux_sym_string_literal_token1] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(868), }, - [106] = { - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(489), - [sym_declaration] = STATE(489), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(62), - [sym_type_qualifier] = STATE(281), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_declaration_list] = STATE(489), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(490), - [sym_scoped_type_identifier] = STATE(87), + [107] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_function_definition] = STATE(490), + [sym_declaration] = STATE(490), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_type_qualifier] = STATE(285), + [sym_declaration_list] = STATE(490), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(49), + [sym__declaration_specifiers] = STATE(491), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -18305,147 +18264,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(236), }, - [107] = { - [sym_enumerator] = STATE(494), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(870), - [sym_comment] = ACTIONS(3), - }, [108] = { - [sym_enumerator_list] = STATE(495), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_final] = ACTIONS(874), - [anon_sym_DASH_GT] = ACTIONS(872), - [anon_sym_mutable] = ACTIONS(874), - [anon_sym_COLON_COLON] = ACTIONS(872), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_volatile] = ACTIONS(874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_override] = ACTIONS(874), - [anon_sym_explicit] = ACTIONS(874), - [sym_identifier] = ACTIONS(874), - [sym_operator_name] = ACTIONS(872), - [sym_noexcept] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_register] = ACTIONS(874), - [anon_sym__Atomic] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_constexpr] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(872), - [anon_sym_inline] = ACTIONS(874), - [anon_sym_restrict] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(206), + [sym_enumerator] = STATE(495), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_COMMA] = ACTIONS(874), + [sym_comment] = ACTIONS(3), }, [109] = { + [sym_enumerator_list] = STATE(496), [anon_sym_LPAREN2] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), + [anon_sym_final] = ACTIONS(878), + [anon_sym_DASH_GT] = ACTIONS(876), [anon_sym_mutable] = ACTIONS(878), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_RBRACK_RBRACK] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(878), [anon_sym_COLON_COLON] = ACTIONS(876), - [anon_sym_final] = ACTIONS(878), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), [anon_sym_AMP] = ACTIONS(878), [anon_sym_static] = ACTIONS(878), [anon_sym_volatile] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(878), [anon_sym_DOT_DOT_DOT] = ACTIONS(876), - [anon_sym_COLON] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(876), + [anon_sym_override] = ACTIONS(878), [anon_sym_explicit] = ACTIONS(878), [sym_identifier] = ACTIONS(878), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_override] = ACTIONS(878), [sym_operator_name] = ACTIONS(876), [sym_noexcept] = ACTIONS(878), - [anon_sym_CARET] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), [anon_sym_COMMA] = ACTIONS(876), [anon_sym_register] = ACTIONS(878), [anon_sym__Atomic] = ACTIONS(878), [anon_sym_const] = ACTIONS(878), [anon_sym_extern] = ACTIONS(878), [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(876), [anon_sym_constexpr] = ACTIONS(878), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_QMARK] = ACTIONS(876), [anon_sym_TILDE] = ACTIONS(876), [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), [anon_sym_inline] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(876), [anon_sym_restrict] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_DASH_GT] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(206), }, [110] = { - [sym_template_type] = STATE(71), + [anon_sym_LPAREN2] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_mutable] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_RBRACK_RBRACK] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_COLON_COLON] = ACTIONS(880), + [anon_sym_final] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_static] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_explicit] = ACTIONS(882), + [sym_identifier] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_override] = ACTIONS(882), + [sym_operator_name] = ACTIONS(880), + [sym_noexcept] = ACTIONS(882), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_register] = ACTIONS(882), + [anon_sym__Atomic] = ACTIONS(882), + [anon_sym_const] = ACTIONS(882), + [anon_sym_extern] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_constexpr] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_QMARK] = ACTIONS(880), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_inline] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_restrict] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_DASH_GT] = ACTIONS(880), + }, + [111] = { + [sym_template_function] = STATE(72), [sym__expression] = STATE(72), [sym_logical_expression] = STATE(72), [sym_bitwise_expression] = STATE(72), [sym_cast_expression] = STATE(72), - [sym_new_expression] = STATE(72), - [sym_field_expression] = STATE(121), + [sym_delete_expression] = STATE(72), + [sym_field_expression] = STATE(122), [sym_compound_literal_expression] = STATE(72), + [sym_lambda_expression] = STATE(72), [sym_char_literal] = STATE(72), - [sym_template_function] = STATE(72), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(72), [sym_equality_expression] = STATE(72), [sym_relational_expression] = STATE(72), - [sym_delete_expression] = STATE(72), [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(72), - [sym_lambda_expression] = STATE(72), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), [sym_concatenated_string] = STATE(72), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(72), - [sym_pointer_expression] = STATE(121), + [sym_pointer_expression] = STATE(122), [sym_shift_expression] = STATE(72), [sym_math_expression] = STATE(72), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(72), [sym_raw_string_literal] = ACTIONS(109), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), @@ -18471,49 +18430,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [111] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(496), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [112] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(497), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -18521,20 +18480,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -18551,50 +18510,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [112] = { - [sym_destructor_name] = STATE(166), + [113] = { + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(640), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(880), + [sym_identifier] = ACTIONS(642), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(884), }, - [113] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_new_expression] = STATE(77), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_template_function] = STATE(77), - [sym_conditional_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_delete_expression] = STATE(77), - [sym_sizeof_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_lambda_expression] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [114] = { + [sym_template_function] = STATE(78), + [sym__expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_delete_expression] = STATE(78), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(78), + [sym_lambda_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(78), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(78), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(78), [sym_raw_string_literal] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), @@ -18620,104 +18579,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [114] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(190), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_parenthesized_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), + [115] = { + [sym_template_function] = STATE(191), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_char_literal] = STATE(191), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(330), - [sym_null] = ACTIONS(330), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(330), + [sym_parenthesized_expression] = STATE(191), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(191), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_call_expression] = STATE(191), + [sym_new_expression] = STATE(191), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(332), + [sym_null] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(332), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [115] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(508), - [sym_logical_expression] = STATE(508), - [sym_bitwise_expression] = STATE(508), - [sym_cast_expression] = STATE(508), - [sym_new_expression] = STATE(508), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(508), - [sym_char_literal] = STATE(508), - [sym_template_function] = STATE(508), - [sym_conditional_expression] = STATE(508), - [sym_equality_expression] = STATE(508), - [sym_relational_expression] = STATE(508), - [sym_delete_expression] = STATE(508), - [sym_sizeof_expression] = STATE(508), - [sym_parenthesized_expression] = STATE(508), - [sym_lambda_expression] = STATE(508), - [sym_concatenated_string] = STATE(508), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(508), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(508), - [sym_math_expression] = STATE(508), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(900), + [116] = { + [sym_template_function] = STATE(509), + [sym__expression] = STATE(509), + [sym_logical_expression] = STATE(509), + [sym_bitwise_expression] = STATE(509), + [sym_cast_expression] = STATE(509), + [sym_delete_expression] = STATE(509), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(509), + [sym_lambda_expression] = STATE(509), + [sym_char_literal] = STATE(509), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(509), + [sym_equality_expression] = STATE(509), + [sym_relational_expression] = STATE(509), + [sym_sizeof_expression] = STATE(509), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(509), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(509), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(509), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(509), + [sym_math_expression] = STATE(509), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(509), + [sym_raw_string_literal] = ACTIONS(904), [anon_sym_DASH] = ACTIONS(212), - [anon_sym_LPAREN2] = ACTIONS(902), - [sym_true] = ACTIONS(904), - [sym_null] = ACTIONS(904), + [anon_sym_LPAREN2] = ACTIONS(906), + [sym_true] = ACTIONS(908), + [sym_null] = ACTIONS(908), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(900), + [sym_number_literal] = ACTIONS(904), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(904), + [sym_false] = ACTIONS(908), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(904), + [sym_nullptr] = ACTIONS(908), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -18730,49 +18689,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [116] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(303), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), + [117] = { + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), + [sym_number_literal] = ACTIONS(510), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(508), + [sym_false] = ACTIONS(512), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(508), + [sym_nullptr] = ACTIONS(512), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -18785,32 +18744,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [117] = { - [sym_template_argument_list] = STATE(377), + [118] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_RBRACK_RBRACK] = ACTIONS(165), - [anon_sym_STAR_EQ] = ACTIONS(906), - [anon_sym_LT_LT_EQ] = ACTIONS(906), - [anon_sym_PERCENT_EQ] = ACTIONS(906), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(910), + [anon_sym_LT_LT_EQ] = ACTIONS(910), + [anon_sym_PERCENT_EQ] = ACTIONS(910), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(906), + [anon_sym_CARET_EQ] = ACTIONS(910), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(906), - [anon_sym_PLUS_EQ] = ACTIONS(906), + [anon_sym_SLASH_EQ] = ACTIONS(910), + [anon_sym_PLUS_EQ] = ACTIONS(910), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(906), - [anon_sym_GT_GT_EQ] = ACTIONS(906), + [anon_sym_PIPE_EQ] = ACTIONS(910), + [anon_sym_GT_GT_EQ] = ACTIONS(910), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -18819,90 +18778,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(906), + [anon_sym_DASH_EQ] = ACTIONS(910), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(906), + [anon_sym_AMP_EQ] = ACTIONS(910), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(908), + [anon_sym_EQ] = ACTIONS(912), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [118] = { - [sym_union_specifier] = STATE(512), - [sym_macro_type_specifier] = STATE(512), - [sym_class_specifier] = STATE(512), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(512), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(512), - [aux_sym_sized_type_specifier_repeat1] = STATE(511), - [sym_argument_list] = STATE(513), - [sym_enum_specifier] = STATE(512), - [sym_struct_specifier] = STATE(512), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(512), - [anon_sym_LPAREN2] = ACTIONS(358), + [119] = { + [sym_union_specifier] = STATE(513), + [sym_macro_type_specifier] = STATE(513), + [sym_class_specifier] = STATE(513), + [aux_sym_sized_type_specifier_repeat1] = STATE(512), + [sym_sized_type_specifier] = STATE(513), + [sym__type_specifier] = STATE(513), + [sym_argument_list] = STATE(514), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(513), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(513), + [sym_struct_specifier] = STATE(513), + [anon_sym_LPAREN2] = ACTIONS(360), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(912), - [anon_sym_long] = ACTIONS(912), + [sym_auto] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(916), + [anon_sym_long] = ACTIONS(916), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(912), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(916), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(914), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(912), + [anon_sym_typename] = ACTIONS(918), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(916), }, - [119] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(515), - [sym_logical_expression] = STATE(515), - [sym_bitwise_expression] = STATE(515), - [sym_cast_expression] = STATE(515), - [sym_new_expression] = STATE(515), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(515), - [sym_char_literal] = STATE(515), - [sym_template_function] = STATE(515), - [sym_conditional_expression] = STATE(515), - [sym_equality_expression] = STATE(515), - [sym_relational_expression] = STATE(515), - [sym_delete_expression] = STATE(515), - [sym_sizeof_expression] = STATE(515), - [sym_parenthesized_expression] = STATE(515), - [sym_lambda_expression] = STATE(515), - [sym_concatenated_string] = STATE(515), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(515), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(515), - [sym_math_expression] = STATE(515), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(916), + [120] = { + [sym_template_function] = STATE(516), + [sym__expression] = STATE(516), + [sym_logical_expression] = STATE(516), + [sym_bitwise_expression] = STATE(516), + [sym_cast_expression] = STATE(516), + [sym_delete_expression] = STATE(516), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(516), + [sym_lambda_expression] = STATE(516), + [sym_char_literal] = STATE(516), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(516), + [sym_equality_expression] = STATE(516), + [sym_relational_expression] = STATE(516), + [sym_sizeof_expression] = STATE(516), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(516), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(516), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(516), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(516), + [sym_math_expression] = STATE(516), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(516), + [sym_raw_string_literal] = ACTIONS(920), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [sym_true] = ACTIONS(922), + [sym_null] = ACTIONS(922), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(916), + [sym_number_literal] = ACTIONS(920), [anon_sym_COLON_COLON] = ACTIONS(218), - [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(924), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(918), + [sym_false] = ACTIONS(922), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(918), + [sym_nullptr] = ACTIONS(922), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -18915,60 +18874,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [120] = { - [aux_sym_for_statement_repeat1] = STATE(529), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(932), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_PERCENT] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, [121] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(530), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(932), + [anon_sym_PIPE_PIPE] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(936), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_PERCENT] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [122] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_RBRACK_RBRACK] = ACTIONS(165), - [anon_sym_STAR_EQ] = ACTIONS(906), - [anon_sym_LT_LT_EQ] = ACTIONS(906), - [anon_sym_PERCENT_EQ] = ACTIONS(906), + [anon_sym_STAR_EQ] = ACTIONS(910), + [anon_sym_LT_LT_EQ] = ACTIONS(910), + [anon_sym_PERCENT_EQ] = ACTIONS(910), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(906), + [anon_sym_CARET_EQ] = ACTIONS(910), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(906), - [anon_sym_PLUS_EQ] = ACTIONS(906), + [anon_sym_SLASH_EQ] = ACTIONS(910), + [anon_sym_PLUS_EQ] = ACTIONS(910), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(906), - [anon_sym_GT_GT_EQ] = ACTIONS(906), + [anon_sym_PIPE_EQ] = ACTIONS(910), + [anon_sym_GT_GT_EQ] = ACTIONS(910), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -18977,20 +18936,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(906), + [anon_sym_DASH_EQ] = ACTIONS(910), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(906), + [anon_sym_AMP_EQ] = ACTIONS(910), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(908), + [anon_sym_EQ] = ACTIONS(912), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [122] = { - [sym_string_literal] = STATE(530), - [aux_sym_concatenated_string_repeat1] = STATE(530), + [123] = { + [sym_string_literal] = STATE(531), + [aux_sym_concatenated_string_repeat1] = STATE(531), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_RBRACK_RBRACK] = ACTIONS(165), @@ -19021,91 +18980,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [123] = { - [sym_goto_statement] = STATE(532), - [sym_preproc_function_def] = STATE(532), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(532), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(532), + [124] = { + [sym_goto_statement] = STATE(533), + [sym_preproc_function_def] = STATE(533), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(533), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(532), - [sym_return_statement] = STATE(532), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(533), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(533), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(533), + [sym_namespace_definition] = STATE(533), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(532), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(532), - [sym_break_statement] = STATE(532), - [sym_preproc_include] = STATE(532), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(532), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(532), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(533), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(533), + [sym_constructor_or_destructor_definition] = STATE(533), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(533), + [sym_preproc_include] = STATE(533), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(533), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(533), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(532), - [sym_template_instantiation] = STATE(532), - [sym_constructor_or_destructor_definition] = STATE(532), - [sym_expression_statement] = STATE(532), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(532), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(532), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(532), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(532), - [aux_sym_translation_unit_repeat1] = STATE(532), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(532), - [sym_if_statement] = STATE(532), - [sym_for_statement] = STATE(532), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(532), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(532), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(532), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(532), - [sym_preproc_if] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(533), + [sym_expression_statement] = STATE(533), + [sym_do_statement] = STATE(533), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(533), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(533), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(533), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(533), + [sym_for_statement] = STATE(533), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(533), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(533), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(533), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(533), + [sym_preproc_if] = STATE(533), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(532), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(532), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(532), - [sym_while_statement] = STATE(532), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(533), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(533), + [aux_sym_translation_unit_repeat1] = STATE(533), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(533), + [sym_while_statement] = STATE(533), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -19147,7 +19106,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -19179,93 +19138,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [124] = { - [sym_declaration_list] = STATE(533), + [125] = { + [sym_declaration_list] = STATE(534), [anon_sym_LBRACE] = ACTIONS(236), [sym_comment] = ACTIONS(3), }, - [125] = { - [anon_sym_DASH] = ACTIONS(954), - [sym_raw_string_literal] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [anon_sym_mutable] = ACTIONS(954), - [sym_null] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_explicit] = ACTIONS(954), - [sym_identifier] = ACTIONS(954), - [anon_sym_delete] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(954), - [sym_auto] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_COLON_COLON] = ACTIONS(956), - [anon_sym_using] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_union] = ACTIONS(954), - [anon_sym_typename] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [anon_sym_new] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [sym_operator_name] = ACTIONS(956), - [anon_sym_while] = ACTIONS(954), - [anon_sym_try] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(956), - [anon_sym_const] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_class] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_nullptr] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_template] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [ts_builtin_sym_end] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(954), - }, [126] = { - [anon_sym_SQUOTE] = ACTIONS(958), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(958), + [sym_raw_string_literal] = ACTIONS(960), + [sym_true] = ACTIONS(958), + [anon_sym_mutable] = ACTIONS(958), + [sym_null] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(960), + [anon_sym_sizeof] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(958), + [anon_sym_explicit] = ACTIONS(958), + [sym_identifier] = ACTIONS(958), + [anon_sym_delete] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [sym_number_literal] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_enum] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(958), + [sym_auto] = ACTIONS(958), + [anon_sym_signed] = ACTIONS(958), + [anon_sym_long] = ACTIONS(958), + [anon_sym_COLON_COLON] = ACTIONS(960), + [anon_sym_using] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_static] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_union] = ACTIONS(958), + [anon_sym_typename] = ACTIONS(958), + [anon_sym_short] = ACTIONS(958), + [anon_sym_new] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(958), + [sym_operator_name] = ACTIONS(960), + [anon_sym_while] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [anon_sym_const] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_class] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(958), + [sym_false] = ACTIONS(958), + [sym_nullptr] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_template] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [ts_builtin_sym_end] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(958), }, [127] = { - [sym_template_argument_list] = STATE(99), + [anon_sym_SQUOTE] = ACTIONS(962), + [sym_comment] = ACTIONS(3), + }, + [128] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(101), [anon_sym_LPAREN2] = ACTIONS(159), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -19288,7 +19247,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(960), + [anon_sym_COLON] = ACTIONS(964), [anon_sym_explicit] = ACTIONS(169), [sym_identifier] = ACTIONS(169), [anon_sym_SLASH_EQ] = ACTIONS(167), @@ -19323,187 +19282,187 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [128] = { - [anon_sym_DASH] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(964), - [anon_sym_else] = ACTIONS(962), - [sym_true] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_delete] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym_namespace] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [anon_sym_while] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [anon_sym_const] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_nullptr] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [ts_builtin_sym_end] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(962), - }, [129] = { - [sym_parenthesized_expression] = STATE(536), - [anon_sym_LPAREN2] = ACTIONS(372), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(968), + [anon_sym_else] = ACTIONS(966), + [sym_true] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [sym_null] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [sym_number_literal] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_namespace] = ACTIONS(966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [anon_sym_while] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [aux_sym_preproc_include_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_const] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_nullptr] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [ts_builtin_sym_end] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(966), }, [130] = { - [sym_compound_statement] = STATE(537), - [anon_sym_LBRACE] = ACTIONS(374), + [sym_parenthesized_expression] = STATE(537), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, [131] = { - [anon_sym_LPAREN2] = ACTIONS(966), + [sym_compound_statement] = STATE(538), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, [132] = { - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_constexpr] = ACTIONS(970), + [anon_sym_LPAREN2] = ACTIONS(970), [sym_comment] = ACTIONS(3), }, [133] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [anon_sym_LPAREN2] = ACTIONS(972), + [anon_sym_constexpr] = ACTIONS(974), + [sym_comment] = ACTIONS(3), + }, + [134] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -19545,7 +19504,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(976), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -19577,55 +19536,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [134] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_destructor_name] = STATE(148), - [sym__declarator] = STATE(148), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_array_declarator] = STATE(148), - [sym_char_literal] = STATE(147), - [sym_type_descriptor] = STATE(543), - [sym_dependent_type] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_type_qualifier] = STATE(154), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_identifier] = STATE(50), - [sym_scoped_type_identifier] = STATE(61), - [sym_function_declarator] = STATE(148), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_string_literal] = STATE(151), - [sym_delete_expression] = STATE(147), - [sym_lambda_expression] = STATE(147), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_pointer_declarator] = STATE(148), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_reference_declarator] = STATE(148), + [135] = { + [sym_template_function] = STATE(57), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(149), + [sym_scoped_type_identifier] = STATE(48), + [sym_field_expression] = STATE(150), + [sym_array_declarator] = STATE(149), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_lambda_expression] = STATE(148), + [sym_type_qualifier] = STATE(156), + [sym_type_descriptor] = STATE(544), + [sym_structured_binding_declarator] = STATE(149), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_function_declarator] = STATE(149), + [sym_concatenated_string] = STATE(148), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym_string_literal] = STATE(154), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_reference_declarator] = STATE(149), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_destructor_name] = STATE(149), + [sym_call_expression] = STATE(150), + [sym_pointer_declarator] = STATE(149), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [anon_sym_LPAREN2] = ACTIONS(258), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -19655,7 +19615,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(11), [sym_number_literal] = ACTIONS(262), [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(290), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), @@ -19664,337 +19624,339 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [135] = { - [sym_template_type] = STATE(71), + [136] = { + [sym_template_function] = STATE(72), [sym__expression] = STATE(72), [sym_logical_expression] = STATE(72), [sym_bitwise_expression] = STATE(72), [sym_cast_expression] = STATE(72), - [sym_new_expression] = STATE(72), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(72), + [sym_field_expression] = STATE(150), [sym_compound_literal_expression] = STATE(72), + [sym_lambda_expression] = STATE(72), [sym_char_literal] = STATE(72), - [sym_template_function] = STATE(72), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(72), [sym_equality_expression] = STATE(72), [sym_relational_expression] = STATE(72), - [sym_delete_expression] = STATE(72), [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(72), - [sym_lambda_expression] = STATE(72), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), [sym_concatenated_string] = STATE(72), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(72), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(150), [sym_shift_expression] = STATE(72), [sym_math_expression] = STATE(72), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(72), [sym_raw_string_literal] = ACTIONS(109), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [sym_true] = ACTIONS(113), [sym_null] = ACTIONS(113), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(109), - [anon_sym_COLON_COLON] = ACTIONS(684), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), [sym_false] = ACTIONS(113), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(113), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [136] = { - [sym_destructor_name] = STATE(166), + [137] = { + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(304), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(974), + [sym_identifier] = ACTIONS(306), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(978), }, - [137] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_new_expression] = STATE(77), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_template_function] = STATE(77), - [sym_conditional_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_delete_expression] = STATE(77), - [sym_sizeof_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_lambda_expression] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [138] = { + [sym_template_function] = STATE(78), + [sym__expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_delete_expression] = STATE(78), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(78), + [sym_lambda_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(78), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(78), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(78), [sym_raw_string_literal] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [sym_true] = ACTIONS(133), [sym_null] = ACTIONS(133), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(131), - [anon_sym_COLON_COLON] = ACTIONS(684), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), [sym_false] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(133), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [138] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_destructor_name] = STATE(553), - [sym__declarator] = STATE(553), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_array_declarator] = STATE(553), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(192), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_scoped_type_identifier] = STATE(195), - [sym_function_declarator] = STATE(553), - [sym_string_literal] = STATE(554), - [sym_subscript_expression] = STATE(190), - [sym_scoped_identifier] = STATE(193), - [sym_parenthesized_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), - [sym_pointer_declarator] = STATE(553), + [139] = { + [sym_template_function] = STATE(190), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_scoped_identifier] = STATE(192), + [sym__declarator] = STATE(554), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_array_declarator] = STATE(554), + [sym_char_literal] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_scoped_type_identifier] = STATE(194), + [sym_structured_binding_declarator] = STATE(554), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [sym_reference_declarator] = STATE(553), - [anon_sym_LPAREN2] = ACTIONS(976), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(978), - [sym_true] = ACTIONS(330), - [anon_sym_SQUOTE] = ACTIONS(332), - [sym_null] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(330), + [sym_parenthesized_expression] = STATE(191), + [sym_function_declarator] = STATE(554), + [sym_string_literal] = STATE(555), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(191), + [sym_reference_declarator] = STATE(554), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_destructor_name] = STATE(554), + [sym_call_expression] = STATE(191), + [sym_pointer_declarator] = STATE(554), + [sym_new_expression] = STATE(191), + [anon_sym_LPAREN2] = ACTIONS(980), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(982), + [sym_true] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(334), + [sym_null] = ACTIONS(332), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(290), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(332), [anon_sym_AMP] = ACTIONS(274), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), [anon_sym_STAR] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(988), + [anon_sym_TILDE] = ACTIONS(992), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(346), - [anon_sym_new] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_delete] = ACTIONS(992), - [sym_operator_name] = ACTIONS(994), + [sym_identifier] = ACTIONS(348), + [anon_sym_new] = ACTIONS(994), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_delete] = ACTIONS(996), + [sym_operator_name] = ACTIONS(998), }, - [139] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(556), - [sym_logical_expression] = STATE(556), - [sym_bitwise_expression] = STATE(556), - [sym_cast_expression] = STATE(556), - [sym_new_expression] = STATE(556), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(556), - [sym_char_literal] = STATE(556), - [sym_template_function] = STATE(556), - [sym_conditional_expression] = STATE(556), - [sym_equality_expression] = STATE(556), - [sym_relational_expression] = STATE(556), - [sym_delete_expression] = STATE(556), - [sym_sizeof_expression] = STATE(556), - [sym_parenthesized_expression] = STATE(556), - [sym_lambda_expression] = STATE(556), - [sym_concatenated_string] = STATE(556), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(556), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(556), - [sym_math_expression] = STATE(556), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(996), + [140] = { + [sym_template_function] = STATE(557), + [sym__expression] = STATE(557), + [sym_logical_expression] = STATE(557), + [sym_bitwise_expression] = STATE(557), + [sym_cast_expression] = STATE(557), + [sym_delete_expression] = STATE(557), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(557), + [sym_lambda_expression] = STATE(557), + [sym_char_literal] = STATE(557), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(557), + [sym_equality_expression] = STATE(557), + [sym_relational_expression] = STATE(557), + [sym_sizeof_expression] = STATE(557), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(557), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(557), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(557), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(557), + [sym_math_expression] = STATE(557), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(557), + [sym_raw_string_literal] = ACTIONS(1000), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(998), - [sym_true] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [sym_true] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(1000), + [sym_false] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(1004), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [140] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_destructor_name] = STATE(557), - [sym__declarator] = STATE(557), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_array_declarator] = STATE(557), - [sym_char_literal] = STATE(190), - [sym_type_qualifier] = STATE(558), - [sym_template_function] = STATE(192), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_scoped_type_identifier] = STATE(195), - [sym_function_declarator] = STATE(557), - [sym_string_literal] = STATE(554), - [sym_subscript_expression] = STATE(190), - [sym_scoped_identifier] = STATE(193), - [sym_parenthesized_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), - [sym_pointer_declarator] = STATE(557), + [141] = { + [sym_template_function] = STATE(190), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_scoped_identifier] = STATE(192), + [sym__declarator] = STATE(558), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_array_declarator] = STATE(558), + [sym_char_literal] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_scoped_type_identifier] = STATE(194), + [sym_type_qualifier] = STATE(559), + [sym_structured_binding_declarator] = STATE(558), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [aux_sym_type_definition_repeat1] = STATE(558), - [sym_reference_declarator] = STATE(557), - [anon_sym_LPAREN2] = ACTIONS(976), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(978), - [sym_true] = ACTIONS(330), + [sym_parenthesized_expression] = STATE(191), + [sym_function_declarator] = STATE(558), + [sym_string_literal] = STATE(555), + [aux_sym_type_definition_repeat1] = STATE(559), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(191), + [sym_reference_declarator] = STATE(558), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_destructor_name] = STATE(558), + [sym_call_expression] = STATE(191), + [sym_pointer_declarator] = STATE(558), + [sym_new_expression] = STATE(191), + [anon_sym_LPAREN2] = ACTIONS(980), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(982), + [sym_true] = ACTIONS(332), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(330), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(984), + [sym_null] = ACTIONS(332), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(988), [anon_sym_AMP] = ACTIONS(274), - [anon_sym_sizeof] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(990), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(982), [anon_sym_STAR] = ACTIONS(278), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(346), - [anon_sym_new] = ACTIONS(990), - [sym_operator_name] = ACTIONS(1002), - [anon_sym_delete] = ACTIONS(992), + [sym_identifier] = ACTIONS(348), + [anon_sym_new] = ACTIONS(994), + [sym_operator_name] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(996), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(326), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(117), + [sym_number_literal] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(290), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(330), - [sym_nullptr] = ACTIONS(330), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), + [sym_false] = ACTIONS(332), + [sym_nullptr] = ACTIONS(332), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [141] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), + [142] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), [anon_sym_unsigned] = ACTIONS(270), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), + [sym_auto] = ACTIONS(358), [anon_sym_signed] = ACTIONS(270), [sym_comment] = ACTIONS(3), [anon_sym_long] = ACTIONS(270), @@ -20005,25 +19967,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(270), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [142] = { - [sym_template_argument_list] = STATE(99), + [143] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(101), [anon_sym_LPAREN2] = ACTIONS(159), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_mutable] = ACTIONS(185), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_PERCENT_EQ] = ACTIONS(1010), [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1010), [anon_sym_AMP] = ACTIONS(180), [anon_sym_volatile] = ACTIONS(185), [anon_sym_PLUS] = ACTIONS(163), @@ -20031,12 +19993,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(163), [anon_sym_explicit] = ACTIONS(185), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1010), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym__Atomic] = ACTIONS(185), @@ -20048,10 +20010,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(185), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1010), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1010), [anon_sym_RPAREN] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(187), [anon_sym_PLUS_PLUS] = ACTIONS(165), @@ -20059,228 +20021,230 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [143] = { - [sym_union_specifier] = STATE(562), - [sym_macro_type_specifier] = STATE(562), - [sym_class_specifier] = STATE(562), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(562), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(562), - [aux_sym_sized_type_specifier_repeat1] = STATE(561), - [sym_argument_list] = STATE(563), - [sym_enum_specifier] = STATE(562), - [sym_struct_specifier] = STATE(562), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(562), - [anon_sym_LPAREN2] = ACTIONS(358), + [144] = { + [sym_union_specifier] = STATE(563), + [sym_macro_type_specifier] = STATE(563), + [sym_class_specifier] = STATE(563), + [aux_sym_sized_type_specifier_repeat1] = STATE(562), + [sym_sized_type_specifier] = STATE(563), + [sym__type_specifier] = STATE(563), + [sym_argument_list] = STATE(564), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(563), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(563), + [sym_struct_specifier] = STATE(563), + [anon_sym_LPAREN2] = ACTIONS(360), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1010), - [anon_sym_long] = ACTIONS(1010), + [sym_auto] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1014), + [anon_sym_long] = ACTIONS(1014), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1010), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1014), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(1012), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(1010), + [anon_sym_typename] = ACTIONS(1016), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(1014), }, - [144] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(565), - [sym_logical_expression] = STATE(565), - [sym_bitwise_expression] = STATE(565), - [sym_cast_expression] = STATE(565), - [sym_new_expression] = STATE(565), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(565), - [sym_char_literal] = STATE(565), - [sym_template_function] = STATE(565), - [sym_conditional_expression] = STATE(565), - [sym_equality_expression] = STATE(565), - [sym_relational_expression] = STATE(565), - [sym_delete_expression] = STATE(565), - [sym_sizeof_expression] = STATE(565), - [sym_parenthesized_expression] = STATE(565), - [sym_lambda_expression] = STATE(565), - [sym_concatenated_string] = STATE(565), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(565), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(565), - [sym_math_expression] = STATE(565), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1014), + [145] = { + [sym_template_function] = STATE(566), + [sym__expression] = STATE(566), + [sym_logical_expression] = STATE(566), + [sym_bitwise_expression] = STATE(566), + [sym_cast_expression] = STATE(566), + [sym_delete_expression] = STATE(566), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(566), + [sym_lambda_expression] = STATE(566), + [sym_char_literal] = STATE(566), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(566), + [sym_equality_expression] = STATE(566), + [sym_relational_expression] = STATE(566), + [sym_sizeof_expression] = STATE(566), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(566), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(566), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(566), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(566), + [sym_math_expression] = STATE(566), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(566), + [sym_raw_string_literal] = ACTIONS(1018), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1018), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(1022), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(1016), + [sym_false] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(1020), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [145] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(303), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), + [146] = { + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(508), + [sym_false] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(512), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [146] = { - [sym_reference_declarator] = STATE(553), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(553), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(553), - [sym_destructor_name] = STATE(553), - [sym__declarator] = STATE(553), - [sym_array_declarator] = STATE(553), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(553), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(292), - [sym_operator_name] = ACTIONS(994), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [147] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_template_function] = STATE(554), + [sym_destructor_name] = STATE(554), + [sym_pointer_declarator] = STATE(554), + [sym_structured_binding_declarator] = STATE(554), + [sym__declarator] = STATE(554), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(554), + [sym_array_declarator] = STATE(554), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_function_declarator] = STATE(554), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(998), + [sym_comment] = ACTIONS(3), }, [148] = { - [sym_parameter_list] = STATE(582), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_RPAREN] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [149] = { + [sym_parameter_list] = STATE(583), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_RPAREN] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [150] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_PERCENT_EQ] = ACTIONS(1010), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1010), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1010), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -20289,10 +20253,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1010), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1010), [anon_sym_RPAREN] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), @@ -20300,13 +20264,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [150] = { + [151] = { + [anon_sym_RPAREN] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + }, + [152] = { [anon_sym_RPAREN] = ACTIONS(1058), [sym_comment] = ACTIONS(3), }, - [151] = { - [sym_string_literal] = STATE(584), - [aux_sym_concatenated_string_repeat1] = STATE(584), + [153] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(585), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_short] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(558), + [sym_identifier] = ACTIONS(1066), + }, + [154] = { + [sym_string_literal] = STATE(586), + [aux_sym_concatenated_string_repeat1] = STATE(586), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(165), @@ -20337,51 +20328,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [152] = { - [sym_abstract_array_declarator] = STATE(589), - [sym_parameter_list] = STATE(587), - [sym_abstract_reference_declarator] = STATE(589), - [sym_abstract_function_declarator] = STATE(589), - [aux_sym_type_definition_repeat1] = STATE(588), - [sym_abstract_pointer_declarator] = STATE(589), - [sym_type_qualifier] = STATE(588), - [sym__abstract_declarator] = STATE(589), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), + [155] = { + [sym_abstract_reference_declarator] = STATE(591), + [aux_sym_type_definition_repeat1] = STATE(589), + [sym_abstract_array_declarator] = STATE(591), + [sym_parameter_list] = STATE(590), + [sym_abstract_function_declarator] = STATE(591), + [sym_abstract_pointer_declarator] = STATE(591), + [sym_type_qualifier] = STATE(589), + [sym__abstract_declarator] = STATE(591), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [154] = { - [sym_union_specifier] = STATE(590), - [sym_macro_type_specifier] = STATE(590), - [sym_class_specifier] = STATE(590), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(590), - [sym_scoped_namespace_identifier] = STATE(88), + [156] = { + [sym_union_specifier] = STATE(592), + [sym_macro_type_specifier] = STATE(592), + [sym_class_specifier] = STATE(592), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(592), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym__type_specifier] = STATE(590), - [sym_enum_specifier] = STATE(590), - [sym_dependent_type] = STATE(590), - [sym_struct_specifier] = STATE(590), - [sym_scoped_type_identifier] = STATE(87), + [sym__type_specifier] = STATE(592), + [sym_struct_specifier] = STATE(592), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(592), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_type_qualifier] = STATE(388), + [sym_dependent_type] = STATE(592), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(1070), + [sym_auto] = ACTIONS(1078), [anon_sym_signed] = ACTIONS(270), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(270), @@ -20391,7 +20378,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1070), + [sym_primitive_type] = ACTIONS(1078), [anon_sym_unsigned] = ACTIONS(270), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -20402,506 +20389,485 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(270), [anon_sym_restrict] = ACTIONS(11), }, - [155] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(591), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_short] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(625), - [sym_identifier] = ACTIONS(1074), - }, - [156] = { - [sym_template_type] = STATE(594), + [157] = { [sym_scoped_type_identifier] = STATE(595), - [sym_scoped_namespace_identifier] = STATE(88), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_template_type] = STATE(596), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_private] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1078), - [anon_sym_public] = ACTIONS(1076), - [anon_sym_protected] = ACTIONS(1076), + [anon_sym_private] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1082), + [anon_sym_public] = ACTIONS(1080), + [anon_sym_protected] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [157] = { - [anon_sym_LPAREN2] = ACTIONS(1080), - [anon_sym_final] = ACTIONS(1080), - [sym_noexcept] = ACTIONS(1080), - [anon_sym_mutable] = ACTIONS(1080), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_GT2] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_constexpr] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_override] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_explicit] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_DASH_GT] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1080), - }, [158] = { - [sym_template_argument_list] = STATE(385), - [sym_virtual_specifier] = STATE(596), - [sym_field_declaration_list] = STATE(597), - [sym_base_class_clause] = STATE(598), [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_DASH_GT] = ACTIONS(1084), - [anon_sym_mutable] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1084), - [anon_sym_COLON_COLON] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1086), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1086), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_RBRACE] = ACTIONS(1084), - [sym_operator_name] = ACTIONS(1084), - [sym_noexcept] = ACTIONS(1086), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1086), + [anon_sym_final] = ACTIONS(1084), + [sym_noexcept] = ACTIONS(1084), + [anon_sym_mutable] = ACTIONS(1084), [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_extern] = ACTIONS(1086), + [anon_sym_GT2] = ACTIONS(1084), [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1084), - [anon_sym_constexpr] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_constexpr] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_override] = ACTIONS(1084), [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_COLON] = ACTIONS(1084), + [anon_sym_explicit] = ACTIONS(1084), [anon_sym_RPAREN] = ACTIONS(1084), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_DASH_GT] = ACTIONS(1084), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1084), }, [159] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(620), - [sym_preproc_function_def] = STATE(620), - [sym_alias_declaration] = STATE(620), + [sym_virtual_specifier] = STATE(597), + [sym_template_argument_list] = STATE(386), + [sym_field_declaration_list] = STATE(598), + [sym_base_class_clause] = STATE(599), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DASH_GT] = ACTIONS(1088), + [anon_sym_mutable] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1088), + [anon_sym_COLON_COLON] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [sym_operator_name] = ACTIONS(1088), + [sym_noexcept] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1088), + [anon_sym_constexpr] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(1088), + }, + [160] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(616), + [sym_preproc_function_def] = STATE(616), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(620), - [sym_preproc_if_in_field_declaration_list] = STATE(620), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(620), - [sym_type_definition] = STATE(620), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(620), - [sym__field_declaration_list_item] = STATE(620), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(620), - [sym_inline_method_definition] = STATE(620), - [sym_friend_declaration] = STATE(620), - [sym_access_specifier] = STATE(620), - [sym_using_declaration] = STATE(620), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(620), - [sym_constructor_or_destructor_definition] = STATE(620), - [sym_constructor_or_destructor_declaration] = STATE(620), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(616), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(616), + [sym_preproc_if_in_field_declaration_list] = STATE(616), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), + [sym_type_definition] = STATE(616), + [sym_using_declaration] = STATE(616), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(616), + [sym_inline_method_definition] = STATE(616), + [sym_constructor_or_destructor_definition] = STATE(616), + [sym_access_specifier] = STATE(616), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(616), + [sym_alias_declaration] = STATE(616), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(616), + [sym_constructor_or_destructor_declaration] = STATE(616), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [160] = { - [sym_field_declaration_list] = STATE(623), - [sym_base_class_clause] = STATE(624), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), - }, [161] = { - [sym_virtual_specifier] = STATE(625), - [sym_field_declaration_list] = STATE(623), - [sym_base_class_clause] = STATE(624), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_mutable] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1126), - [anon_sym_RBRACE] = ACTIONS(1126), - [sym_operator_name] = ACTIONS(1126), - [sym_noexcept] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1126), + [sym_virtual_specifier] = STATE(624), + [sym_template_argument_list] = STATE(312), + [sym_field_declaration_list] = STATE(625), + [sym_base_class_clause] = STATE(626), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(300), + [anon_sym_mutable] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1132), + [sym_operator_name] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_RPAREN] = ACTIONS(1130), }, [162] = { - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_mutable] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_COLON_COLON] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1128), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1126), - [anon_sym_COLON] = ACTIONS(1128), - [anon_sym_explicit] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1128), - [sym_operator_name] = ACTIONS(1126), - [sym_noexcept] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), + [sym_field_declaration_list] = STATE(625), + [sym_base_class_clause] = STATE(626), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(304), + [sym_comment] = ACTIONS(3), }, [163] = { - [sym_template_argument_list] = STATE(354), - [sym_virtual_specifier] = STATE(625), - [sym_field_declaration_list] = STATE(623), - [sym_base_class_clause] = STATE(624), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(298), - [anon_sym_mutable] = ACTIONS(1128), - [anon_sym_COLON_COLON] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [sym_operator_name] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym_EQ] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_RPAREN] = ACTIONS(1126), + [sym_virtual_specifier] = STATE(624), + [sym_field_declaration_list] = STATE(625), + [sym_base_class_clause] = STATE(626), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_mutable] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [sym_operator_name] = ACTIONS(1130), + [sym_noexcept] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(1130), }, [164] = { - [sym_field_declaration_list] = STATE(623), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), - }, - [165] = { [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_restrict] = ACTIONS(1137), - [anon_sym_mutable] = ACTIONS(1137), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_mutable] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_explicit] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [sym_operator_name] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_register] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1141), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1130), + [anon_sym_COLON] = ACTIONS(1132), + [anon_sym_explicit] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1132), + [sym_operator_name] = ACTIONS(1130), + [sym_noexcept] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1141), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym__Atomic] = ACTIONS(1137), - [anon_sym_constexpr] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_inline] = ACTIONS(1137), - [anon_sym_GT_GT] = ACTIONS(1141), - [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + }, + [165] = { + [sym_field_declaration_list] = STATE(625), + [anon_sym_LBRACE] = ACTIONS(304), + [sym_comment] = ACTIONS(3), }, [166] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1139), [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1141), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_GT_GT] = ACTIONS(1141), - [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym_mutable] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1136), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_explicit] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1143), + [sym_operator_name] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1136), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym_GT_GT] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1147), }, [167] = { - [sym_identifier] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1147), }, [168] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(628), - [sym_logical_expression] = STATE(628), - [sym_bitwise_expression] = STATE(628), - [sym_cast_expression] = STATE(628), - [sym_new_expression] = STATE(628), + [sym_identifier] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + }, + [169] = { + [sym_template_function] = STATE(629), + [sym__expression] = STATE(629), + [sym_logical_expression] = STATE(629), + [sym_bitwise_expression] = STATE(629), + [sym_cast_expression] = STATE(629), + [sym_delete_expression] = STATE(629), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(628), - [sym_char_literal] = STATE(628), - [sym_template_function] = STATE(628), - [sym_conditional_expression] = STATE(628), - [sym_equality_expression] = STATE(628), - [sym_relational_expression] = STATE(628), - [sym_delete_expression] = STATE(628), - [sym_sizeof_expression] = STATE(628), - [sym_parenthesized_expression] = STATE(628), - [sym_lambda_expression] = STATE(628), - [sym_concatenated_string] = STATE(628), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(629), + [sym_lambda_expression] = STATE(629), + [sym_char_literal] = STATE(629), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(629), + [sym_equality_expression] = STATE(629), + [sym_relational_expression] = STATE(629), + [sym_sizeof_expression] = STATE(629), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(628), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(629), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(629), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(629), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(628), - [sym_math_expression] = STATE(628), + [sym_shift_expression] = STATE(629), + [sym_math_expression] = STATE(629), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1148), + [sym_new_expression] = STATE(629), + [sym_raw_string_literal] = ACTIONS(1154), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1150), - [sym_null] = ACTIONS(1150), + [sym_true] = ACTIONS(1156), + [sym_null] = ACTIONS(1156), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1148), + [sym_number_literal] = ACTIONS(1154), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1158), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1150), + [sym_false] = ACTIONS(1156), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1150), + [sym_nullptr] = ACTIONS(1156), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -20914,240 +20880,240 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [169] = { - [sym_destructor_name] = STATE(166), - [sym_identifier] = ACTIONS(1154), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - }, [170] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(631), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(1156), + [sym_destructor_name] = STATE(167), + [sym_identifier] = ACTIONS(1160), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, [171] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(632), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(1162), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(1162), }, [172] = { + [sym_template_argument_list] = STATE(386), [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1166), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(1168), }, [173] = { + [sym_template_argument_list] = STATE(312), + [anon_sym_LT] = ACTIONS(534), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1162), }, [174] = { - [sym_template_argument_list] = STATE(354), - [anon_sym_LT] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(1170), [sym_comment] = ACTIONS(3), }, [175] = { - [anon_sym_DASH] = ACTIONS(1166), - [sym_raw_string_literal] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [anon_sym_mutable] = ACTIONS(1166), - [sym_null] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_explicit] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1166), - [anon_sym_delete] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1166), - [sym_auto] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1168), - [anon_sym_using] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_typename] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_new] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [sym_operator_name] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_try] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_class] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [sym_nullptr] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_template] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1168), + [sym_comment] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(1168), - [ts_builtin_sym_end] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1166), }, [176] = { - [anon_sym_LF] = ACTIONS(1170), - [sym_comment] = ACTIONS(244), + [anon_sym_DASH] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(1174), + [sym_true] = ACTIONS(1172), + [anon_sym_mutable] = ACTIONS(1172), + [sym_null] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_sizeof] = ACTIONS(1172), + [anon_sym_volatile] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1172), + [anon_sym_switch] = ACTIONS(1172), + [anon_sym_explicit] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1172), + [anon_sym_delete] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1172), + [sym_number_literal] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_constexpr] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), + [anon_sym_namespace] = ACTIONS(1172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1172), + [sym_auto] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1172), + [anon_sym_long] = ACTIONS(1172), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1172), + [sym_preproc_directive] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_typename] = ACTIONS(1172), + [anon_sym_short] = ACTIONS(1172), + [anon_sym_new] = ACTIONS(1172), + [anon_sym_goto] = ACTIONS(1172), + [sym_operator_name] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_try] = ACTIONS(1172), + [anon_sym_for] = ACTIONS(1172), + [aux_sym_preproc_include_token1] = ACTIONS(1172), + [anon_sym_register] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [sym_primitive_type] = ACTIONS(1172), + [sym_false] = ACTIONS(1172), + [sym_nullptr] = ACTIONS(1172), + [anon_sym_do] = ACTIONS(1172), + [anon_sym_template] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1174), + [ts_builtin_sym_end] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1172), }, [177] = { - [sym_goto_statement] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(639), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(639), + [anon_sym_LF] = ACTIONS(1176), + [sym_comment] = ACTIONS(244), + }, + [178] = { + [sym_goto_statement] = STATE(640), + [sym_preproc_function_def] = STATE(640), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(640), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(638), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(639), - [sym_return_statement] = STATE(639), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(640), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(639), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(640), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(640), + [sym_namespace_definition] = STATE(640), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(639), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(639), - [sym_break_statement] = STATE(639), - [sym_preproc_include] = STATE(639), - [sym_assignment_expression] = STATE(482), - [sym_preproc_ifdef] = STATE(639), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(639), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(640), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(640), + [sym_constructor_or_destructor_definition] = STATE(640), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(640), + [sym_preproc_include] = STATE(640), + [sym_assignment_expression] = STATE(484), + [sym_preproc_ifdef] = STATE(640), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(640), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), - [sym_compound_statement] = STATE(639), - [sym_template_instantiation] = STATE(639), - [sym_constructor_or_destructor_definition] = STATE(639), - [sym_expression_statement] = STATE(639), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(639), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), - [sym_preproc_def] = STATE(639), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), - [sym_function_definition] = STATE(639), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(639), - [aux_sym_translation_unit_repeat1] = STATE(639), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(639), - [sym_preproc_else] = STATE(638), - [sym_if_statement] = STATE(639), - [sym_for_statement] = STATE(639), - [sym_comma_expression] = STATE(484), - [sym_preproc_call] = STATE(639), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(639), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(639), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(639), - [sym_preproc_if] = STATE(639), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), + [sym_compound_statement] = STATE(640), + [sym_expression_statement] = STATE(640), + [sym_do_statement] = STATE(640), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), + [sym_preproc_def] = STATE(640), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), + [sym_function_definition] = STATE(640), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(640), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(639), + [sym_if_statement] = STATE(640), + [sym_for_statement] = STATE(640), + [sym_comma_expression] = STATE(485), + [sym_preproc_call] = STATE(640), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(640), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(640), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(640), + [sym_preproc_if] = STATE(640), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(639), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(639), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(639), - [sym_while_statement] = STATE(639), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(640), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(640), + [aux_sym_translation_unit_repeat1] = STATE(640), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(640), + [sym_while_statement] = STATE(640), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(1172), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(1178), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -21155,10 +21121,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -21166,88 +21132,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [178] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_destructor_name] = STATE(148), - [sym__declarator] = STATE(148), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_array_declarator] = STATE(148), - [sym_char_literal] = STATE(640), - [sym_type_descriptor] = STATE(641), - [sym_dependent_type] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_type_qualifier] = STATE(154), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_identifier] = STATE(50), - [sym_scoped_type_identifier] = STATE(61), - [sym_function_declarator] = STATE(148), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_string_literal] = STATE(151), - [sym_delete_expression] = STATE(640), - [sym_lambda_expression] = STATE(640), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_pointer_declarator] = STATE(148), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_reference_declarator] = STATE(148), + [179] = { + [sym_template_function] = STATE(57), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(149), + [sym_scoped_type_identifier] = STATE(48), + [sym_field_expression] = STATE(150), + [sym_array_declarator] = STATE(149), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_lambda_expression] = STATE(641), + [sym_type_qualifier] = STATE(156), + [sym_type_descriptor] = STATE(642), + [sym_structured_binding_declarator] = STATE(149), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_function_declarator] = STATE(149), + [sym_concatenated_string] = STATE(641), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym_string_literal] = STATE(154), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_reference_declarator] = STATE(149), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_destructor_name] = STATE(149), + [sym_call_expression] = STATE(150), + [sym_pointer_declarator] = STATE(149), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), [anon_sym_LPAREN2] = ACTIONS(258), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_raw_string_literal] = ACTIONS(1174), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_mutable] = ACTIONS(11), - [sym_true] = ACTIONS(1176), - [sym_null] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), @@ -21268,359 +21235,359 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(290), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [179] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(643), - [sym_logical_expression] = STATE(643), - [sym_bitwise_expression] = STATE(643), - [sym_cast_expression] = STATE(643), - [sym_new_expression] = STATE(643), - [sym_field_expression] = STATE(643), - [sym_compound_literal_expression] = STATE(643), - [sym_char_literal] = STATE(643), - [sym_template_function] = STATE(643), - [sym_conditional_expression] = STATE(643), - [sym_equality_expression] = STATE(643), - [sym_relational_expression] = STATE(643), - [sym_delete_expression] = STATE(643), - [sym_sizeof_expression] = STATE(643), - [sym_parenthesized_expression] = STATE(643), - [sym_lambda_expression] = STATE(643), - [sym_concatenated_string] = STATE(643), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(643), - [sym_assignment_expression] = STATE(643), - [sym_pointer_expression] = STATE(643), - [sym_shift_expression] = STATE(643), - [sym_math_expression] = STATE(643), - [sym_call_expression] = STATE(643), - [sym_lambda_capture_specifier] = STATE(196), + [180] = { + [sym_template_function] = STATE(644), + [sym__expression] = STATE(644), + [sym_logical_expression] = STATE(644), + [sym_bitwise_expression] = STATE(644), + [sym_cast_expression] = STATE(644), + [sym_delete_expression] = STATE(644), + [sym_field_expression] = STATE(644), + [sym_compound_literal_expression] = STATE(644), + [sym_lambda_expression] = STATE(644), + [sym_char_literal] = STATE(644), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(644), + [sym_equality_expression] = STATE(644), + [sym_relational_expression] = STATE(644), + [sym_sizeof_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(1180), - [sym_null] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(1180), + [sym_parenthesized_expression] = STATE(644), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(644), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(644), + [sym_pointer_expression] = STATE(644), + [sym_shift_expression] = STATE(644), + [sym_math_expression] = STATE(644), + [sym_call_expression] = STATE(644), + [sym_new_expression] = STATE(644), + [sym_raw_string_literal] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(1186), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), - }, - [180] = { - [sym_union_specifier] = STATE(655), - [sym_macro_type_specifier] = STATE(655), - [sym_class_specifier] = STATE(655), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(655), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(655), - [aux_sym_sized_type_specifier_repeat1] = STATE(654), - [sym_argument_list] = STATE(656), - [sym_enum_specifier] = STATE(655), - [sym_struct_specifier] = STATE(655), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(655), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(1184), - [anon_sym_signed] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(1184), - [anon_sym_unsigned] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(1196), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1186), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, [181] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(658), - [sym_logical_expression] = STATE(658), - [sym_bitwise_expression] = STATE(658), - [sym_cast_expression] = STATE(658), - [sym_new_expression] = STATE(658), - [sym_field_expression] = STATE(658), - [sym_compound_literal_expression] = STATE(658), - [sym_char_literal] = STATE(658), - [sym_template_function] = STATE(658), - [sym_conditional_expression] = STATE(658), - [sym_equality_expression] = STATE(658), - [sym_relational_expression] = STATE(658), - [sym_delete_expression] = STATE(658), - [sym_sizeof_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_lambda_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(658), - [sym_assignment_expression] = STATE(658), - [sym_pointer_expression] = STATE(658), - [sym_shift_expression] = STATE(658), - [sym_math_expression] = STATE(658), - [sym_call_expression] = STATE(658), - [sym_lambda_capture_specifier] = STATE(196), + [sym_union_specifier] = STATE(653), + [sym_macro_type_specifier] = STATE(653), + [sym_class_specifier] = STATE(653), + [aux_sym_sized_type_specifier_repeat1] = STATE(652), + [sym_sized_type_specifier] = STATE(653), + [sym__type_specifier] = STATE(653), + [sym_argument_list] = STATE(654), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(653), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(653), + [sym_struct_specifier] = STATE(653), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1192), + [anon_sym_long] = ACTIONS(1192), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1192), + }, + [182] = { + [sym_template_function] = STATE(659), + [sym__expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_delete_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_lambda_expression] = STATE(659), + [sym_char_literal] = STATE(659), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(1202), - [sym_null] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(1202), + [sym_parenthesized_expression] = STATE(659), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(659), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_new_expression] = STATE(659), + [sym_raw_string_literal] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(1208), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), - }, - [182] = { - [aux_sym_string_literal_repeat1] = STATE(660), - [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, [183] = { - [sym_destructor_name] = STATE(662), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1210), - [sym_operator_name] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_delete] = ACTIONS(1216), + [aux_sym_string_literal_repeat1] = STATE(661), + [sym_comment] = ACTIONS(244), + [sym_escape_sequence] = ACTIONS(1212), + [aux_sym_string_literal_token1] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1214), }, [184] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(665), - [sym_logical_expression] = STATE(665), - [sym_bitwise_expression] = STATE(665), - [sym_cast_expression] = STATE(665), - [sym_new_expression] = STATE(665), - [sym_field_expression] = STATE(665), - [sym_compound_literal_expression] = STATE(665), - [sym_char_literal] = STATE(665), - [sym_template_function] = STATE(665), - [sym_conditional_expression] = STATE(665), - [sym_equality_expression] = STATE(665), - [sym_relational_expression] = STATE(665), - [sym_delete_expression] = STATE(665), - [sym_sizeof_expression] = STATE(665), - [sym_parenthesized_expression] = STATE(665), - [sym_lambda_expression] = STATE(665), - [sym_concatenated_string] = STATE(665), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(665), - [sym_assignment_expression] = STATE(665), - [sym_pointer_expression] = STATE(665), - [sym_shift_expression] = STATE(665), - [sym_math_expression] = STATE(665), - [sym_call_expression] = STATE(665), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(1220), - [sym_null] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [sym_destructor_name] = STATE(663), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [sym_identifier] = ACTIONS(1216), + [sym_operator_name] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1222), }, [185] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(667), - [sym_logical_expression] = STATE(667), - [sym_bitwise_expression] = STATE(667), - [sym_cast_expression] = STATE(667), - [sym_new_expression] = STATE(667), - [sym_field_expression] = STATE(667), - [sym_compound_literal_expression] = STATE(667), - [sym_char_literal] = STATE(667), - [sym_template_function] = STATE(667), - [sym_conditional_expression] = STATE(667), - [sym_equality_expression] = STATE(667), - [sym_relational_expression] = STATE(667), - [sym_delete_expression] = STATE(667), - [sym_sizeof_expression] = STATE(667), - [sym_parenthesized_expression] = STATE(667), - [sym_lambda_expression] = STATE(667), - [sym_concatenated_string] = STATE(667), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(667), - [sym_assignment_expression] = STATE(667), - [sym_pointer_expression] = STATE(667), - [sym_shift_expression] = STATE(667), - [sym_math_expression] = STATE(667), - [sym_call_expression] = STATE(667), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(666), + [sym__expression] = STATE(666), + [sym_logical_expression] = STATE(666), + [sym_bitwise_expression] = STATE(666), + [sym_cast_expression] = STATE(666), + [sym_delete_expression] = STATE(666), + [sym_field_expression] = STATE(666), + [sym_compound_literal_expression] = STATE(666), + [sym_lambda_expression] = STATE(666), + [sym_char_literal] = STATE(666), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(666), + [sym_equality_expression] = STATE(666), + [sym_relational_expression] = STATE(666), + [sym_sizeof_expression] = STATE(666), + [sym_subscript_expression] = STATE(666), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(1224), + [sym_parenthesized_expression] = STATE(666), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(666), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(666), + [sym_pointer_expression] = STATE(666), + [sym_shift_expression] = STATE(666), + [sym_math_expression] = STATE(666), + [sym_call_expression] = STATE(666), + [sym_new_expression] = STATE(666), + [sym_raw_string_literal] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), [sym_true] = ACTIONS(1226), [sym_null] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_COLON_COLON] = ACTIONS(338), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(340), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), + [anon_sym_BANG] = ACTIONS(342), [sym_false] = ACTIONS(1226), [anon_sym_AMP] = ACTIONS(119), [sym_nullptr] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, [186] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(668), + [sym__expression] = STATE(668), + [sym_logical_expression] = STATE(668), + [sym_bitwise_expression] = STATE(668), + [sym_cast_expression] = STATE(668), + [sym_delete_expression] = STATE(668), + [sym_field_expression] = STATE(668), + [sym_compound_literal_expression] = STATE(668), + [sym_lambda_expression] = STATE(668), + [sym_char_literal] = STATE(668), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(668), + [sym_equality_expression] = STATE(668), + [sym_relational_expression] = STATE(668), + [sym_sizeof_expression] = STATE(668), + [sym_subscript_expression] = STATE(668), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(668), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(668), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(668), + [sym_pointer_expression] = STATE(668), + [sym_shift_expression] = STATE(668), + [sym_math_expression] = STATE(668), + [sym_call_expression] = STATE(668), + [sym_new_expression] = STATE(668), [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(1230), + [sym_true] = ACTIONS(1232), + [sym_null] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(338), + [anon_sym_COLON_COLON] = ACTIONS(340), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(1232), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, [187] = { - [sym_template_argument_list] = STATE(673), + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(119), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1238), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), + }, + [188] = { [sym_initializer_list] = STATE(674), - [anon_sym_LPAREN2] = ACTIONS(532), + [sym_template_argument_list] = STATE(675), + [anon_sym_LPAREN2] = ACTIONS(575), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(575), [anon_sym_STAR_EQ] = ACTIONS(165), [anon_sym_LT_LT_EQ] = ACTIONS(165), [anon_sym_PERCENT_EQ] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(1242), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT] = ACTIONS(1244), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -21638,7 +21605,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(575), [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), @@ -21653,73 +21620,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [188] = { - [sym_escape_sequence] = ACTIONS(1241), - [aux_sym_char_literal_token1] = ACTIONS(1243), - [sym_comment] = ACTIONS(244), - }, [189] = { - [sym_initializer_list] = STATE(677), - [anon_sym_COLON_COLON] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), + [sym_escape_sequence] = ACTIONS(1247), + [aux_sym_char_literal_token1] = ACTIONS(1249), + [sym_comment] = ACTIONS(244), }, [190] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_LT_LT_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_CARET_EQ] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_PIPE_EQ] = ACTIONS(1249), - [anon_sym_GT_GT_EQ] = ACTIONS(1249), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_AMP_EQ] = ACTIONS(1249), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - }, - [191] = { - [sym_parameter_list] = STATE(690), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(589), - [sym_comment] = ACTIONS(3), - }, - [192] = { - [anon_sym_LPAREN2] = ACTIONS(532), + [anon_sym_LPAREN2] = ACTIONS(575), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(532), + [anon_sym_RPAREN] = ACTIONS(575), [anon_sym_STAR_EQ] = ACTIONS(165), [anon_sym_LT_LT_EQ] = ACTIONS(165), [anon_sym_PERCENT_EQ] = ACTIONS(165), @@ -21743,7 +21653,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(575), [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), @@ -21758,18 +21668,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [193] = { - [sym_template_argument_list] = STATE(691), - [anon_sym_LPAREN2] = ACTIONS(532), + [191] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + }, + [192] = { + [sym_template_argument_list] = STATE(689), + [anon_sym_LPAREN2] = ACTIONS(575), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(532), + [anon_sym_RPAREN] = ACTIONS(575), [anon_sym_STAR_EQ] = ACTIONS(165), [anon_sym_LT_LT_EQ] = ACTIONS(165), [anon_sym_PERCENT_EQ] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT] = ACTIONS(1244), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -21787,7 +21742,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(575), [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), @@ -21802,9 +21757,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, + [193] = { + [sym_parameter_list] = STATE(690), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(616), + [sym_comment] = ACTIONS(3), + }, [194] = { - [sym_string_literal] = STATE(692), - [aux_sym_concatenated_string_repeat1] = STATE(692), + [sym_initializer_list] = STATE(691), + [sym_template_argument_list] = STATE(312), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + }, + [195] = { + [sym_abstract_reference_declarator] = STATE(321), + [sym_abstract_array_declarator] = STATE(321), + [sym_abstract_pointer_declarator] = STATE(321), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(692), + [sym__abstract_declarator] = STATE(321), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(544), + [sym_comment] = ACTIONS(3), + }, + [196] = { + [sym_string_literal] = STATE(693), + [aux_sym_concatenated_string_repeat1] = STATE(693), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -21829,7 +21811,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -21846,434 +21828,421 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [195] = { - [sym_template_argument_list] = STATE(354), - [sym_initializer_list] = STATE(677), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - }, - [196] = { - [sym_parameter_list] = STATE(361), - [sym_abstract_array_declarator] = STATE(363), - [sym_abstract_pointer_declarator] = STATE(363), - [sym_abstract_reference_declarator] = STATE(363), - [sym_abstract_function_declarator] = STATE(693), - [sym__abstract_declarator] = STATE(363), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - }, [197] = { - [anon_sym_COLON_COLON] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [198] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(191), - [sym_pointer_declarator] = STATE(191), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(694), - [sym_template_function] = STATE(191), - [sym_destructor_name] = STATE(191), - [sym__declarator] = STATE(191), - [sym_array_declarator] = STATE(191), - [sym_scoped_identifier] = STATE(286), - [sym_type_qualifier] = STATE(694), - [sym_function_declarator] = STATE(191), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_initializer_list] = STATE(691), + [anon_sym_COLON_COLON] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + }, + [199] = { + [aux_sym_type_definition_repeat1] = STATE(695), + [sym_template_function] = STATE(193), + [sym_destructor_name] = STATE(193), + [sym_pointer_declarator] = STATE(193), + [sym_structured_binding_declarator] = STATE(193), + [sym__declarator] = STATE(193), + [sym_scoped_identifier] = STATE(282), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(193), + [sym_array_declarator] = STATE(193), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(695), + [sym_function_declarator] = STATE(193), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(524), + [sym_identifier] = ACTIONS(528), [anon_sym_AMP_AMP] = ACTIONS(107), - [sym_operator_name] = ACTIONS(352), + [sym_operator_name] = ACTIONS(354), [anon_sym_restrict] = ACTIONS(11), }, - [199] = { - [sym_template_argument_list] = STATE(385), - [sym_virtual_specifier] = STATE(695), - [sym_field_declaration_list] = STATE(696), - [sym_base_class_clause] = STATE(697), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_DASH_GT] = ACTIONS(1251), - [anon_sym_mutable] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [sym_operator_name] = ACTIONS(1251), - [sym_noexcept] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1251), - [anon_sym_register] = ACTIONS(1253), - [anon_sym__Atomic] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1253), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_constexpr] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_inline] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1251), - }, [200] = { - [sym_field_declaration_list] = STATE(698), - [sym_base_class_clause] = STATE(699), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(302), + [sym_virtual_specifier] = STATE(696), + [sym_template_argument_list] = STATE(386), + [sym_field_declaration_list] = STATE(697), + [sym_base_class_clause] = STATE(698), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_DASH_GT] = ACTIONS(1257), + [anon_sym_mutable] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [sym_operator_name] = ACTIONS(1257), + [sym_noexcept] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_constexpr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(1257), }, [201] = { - [sym_virtual_specifier] = STATE(700), - [sym_field_declaration_list] = STATE(698), - [sym_base_class_clause] = STATE(699), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_mutable] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [sym_operator_name] = ACTIONS(1255), - [sym_noexcept] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1255), + [sym_virtual_specifier] = STATE(699), + [sym_template_argument_list] = STATE(312), + [sym_field_declaration_list] = STATE(700), + [sym_base_class_clause] = STATE(701), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(300), + [anon_sym_mutable] = ACTIONS(1263), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_override] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1263), + [sym_operator_name] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_RPAREN] = ACTIONS(1261), }, [202] = { - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_mutable] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1255), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_explicit] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_override] = ACTIONS(1257), - [sym_operator_name] = ACTIONS(1255), - [sym_noexcept] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1257), + [sym_field_declaration_list] = STATE(700), + [sym_base_class_clause] = STATE(701), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), }, [203] = { - [sym_template_argument_list] = STATE(354), - [sym_virtual_specifier] = STATE(700), - [sym_field_declaration_list] = STATE(698), - [sym_base_class_clause] = STATE(699), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(298), - [anon_sym_mutable] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_override] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1257), - [sym_operator_name] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1257), + [sym_virtual_specifier] = STATE(699), + [sym_field_declaration_list] = STATE(700), + [sym_base_class_clause] = STATE(701), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_mutable] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [sym_operator_name] = ACTIONS(1261), + [sym_noexcept] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(1261), }, [204] = { - [sym_field_declaration_list] = STATE(698), - [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_mutable] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(1263), + [anon_sym_explicit] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_override] = ACTIONS(1263), + [sym_operator_name] = ACTIONS(1261), + [sym_noexcept] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), }, [205] = { - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_mutable] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1259), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_final] = ACTIONS(1261), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1259), - [anon_sym_COLON] = ACTIONS(1261), - [anon_sym_explicit] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_override] = ACTIONS(1261), - [sym_operator_name] = ACTIONS(1259), - [sym_noexcept] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1261), - [anon_sym__Atomic] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1259), - [anon_sym_constexpr] = ACTIONS(1261), + [sym_field_declaration_list] = STATE(700), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1259), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1261), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1261), - [anon_sym_GT_GT] = ACTIONS(1259), - [anon_sym_DASH_GT] = ACTIONS(1259), }, [206] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(702), - [sym_logical_expression] = STATE(702), - [sym_bitwise_expression] = STATE(702), - [sym_cast_expression] = STATE(702), - [sym_new_expression] = STATE(702), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(702), - [sym_char_literal] = STATE(702), - [sym_template_function] = STATE(702), - [sym_conditional_expression] = STATE(702), - [sym_equality_expression] = STATE(702), - [sym_relational_expression] = STATE(702), - [sym_delete_expression] = STATE(702), - [sym_sizeof_expression] = STATE(702), - [sym_parenthesized_expression] = STATE(702), - [sym_initializer_list] = STATE(703), - [sym_concatenated_string] = STATE(702), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(702), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(702), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(702), - [sym_math_expression] = STATE(702), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_mutable] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_final] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_explicit] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_override] = ACTIONS(1267), + [sym_operator_name] = ACTIONS(1265), + [sym_noexcept] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1265), + [anon_sym_constexpr] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1265), + [anon_sym_DASH_GT] = ACTIONS(1265), + }, + [207] = { + [sym_template_function] = STATE(703), + [sym__expression] = STATE(703), + [sym_logical_expression] = STATE(703), + [sym_bitwise_expression] = STATE(703), + [sym_cast_expression] = STATE(703), + [sym_delete_expression] = STATE(703), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(703), + [sym_lambda_expression] = STATE(703), + [sym_char_literal] = STATE(703), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(703), + [sym_equality_expression] = STATE(703), + [sym_relational_expression] = STATE(703), + [sym_sizeof_expression] = STATE(703), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(704), + [sym_parenthesized_expression] = STATE(703), + [sym_string_literal] = STATE(154), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(703), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(703), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(703), + [sym_math_expression] = STATE(703), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(703), + [sym_raw_string_literal] = ACTIONS(1269), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(1271), [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(294), + [sym_null] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(296), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1263), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(1265), + [sym_false] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(1271), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1267), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(1273), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_delete] = ACTIONS(288), [anon_sym_SQUOTE] = ACTIONS(41), }, - [207] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), + [208] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), [aux_sym_sized_type_specifier_repeat1] = STATE(211), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(362), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(364), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(362), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(364), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(362), + [anon_sym_long] = ACTIONS(364), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(366), + [anon_sym_typename] = ACTIONS(368), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(362), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [208] = { - [sym_template_argument_list] = STATE(385), + [209] = { + [sym_template_argument_list] = STATE(386), [anon_sym_LPAREN2] = ACTIONS(185), [anon_sym_DASH] = ACTIONS(169), [anon_sym_GT_GT] = ACTIONS(185), [anon_sym_RBRACK_RBRACK] = ACTIONS(185), - [anon_sym_COLON_COLON] = ACTIONS(670), + [anon_sym_COLON_COLON] = ACTIONS(674), [anon_sym_EQ_EQ] = ACTIONS(185), [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1275), [anon_sym_AMP] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(169), [anon_sym_GT_EQ] = ACTIONS(185), @@ -22301,253 +22270,253 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(185), [anon_sym_DASH_DASH] = ACTIONS(185), }, - [209] = { - [sym_enumerator_list] = STATE(109), + [210] = { + [sym_enumerator_list] = STATE(110), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(206), - [sym_identifier] = ACTIONS(1272), - }, - [210] = { - [sym_template_argument_list] = STATE(354), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_RBRACK_RBRACK] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(545), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), + [sym_identifier] = ACTIONS(1278), }, [211] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(705), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(1277), - [sym_identifier] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [aux_sym_sized_type_specifier_repeat1] = STATE(706), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, [212] = { - [sym_initializer_list] = STATE(709), - [sym_new_declarator] = STATE(708), - [sym_argument_list] = STATE(709), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [sym_new_declarator] = STATE(709), + [sym_argument_list] = STATE(710), + [sym_initializer_list] = STATE(710), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1286), }, [213] = { - [sym_union_specifier] = STATE(710), - [sym_macro_type_specifier] = STATE(710), - [sym_class_specifier] = STATE(710), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(710), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(710), + [sym_union_specifier] = STATE(711), + [sym_macro_type_specifier] = STATE(711), + [sym_class_specifier] = STATE(711), [aux_sym_sized_type_specifier_repeat1] = STATE(211), - [sym_struct_specifier] = STATE(710), - [sym_enum_specifier] = STATE(710), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(710), - [anon_sym_unsigned] = ACTIONS(362), + [sym_sized_type_specifier] = STATE(711), + [sym__type_specifier] = STATE(711), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(711), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(711), + [sym_struct_specifier] = STATE(711), + [anon_sym_unsigned] = ACTIONS(364), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(1287), - [anon_sym_signed] = ACTIONS(362), + [sym_auto] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(364), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(362), + [anon_sym_long] = ACTIONS(364), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(366), + [anon_sym_typename] = ACTIONS(368), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(362), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1290), }, [214] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1289), + [sym_template_argument_list] = STATE(312), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_RBRACK_RBRACK] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(530), }, [215] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(712), - [sym_logical_expression] = STATE(712), - [sym_bitwise_expression] = STATE(712), - [sym_cast_expression] = STATE(712), - [sym_new_expression] = STATE(712), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(712), - [sym_char_literal] = STATE(712), - [sym_comma_expression] = STATE(713), - [sym_template_function] = STATE(712), - [sym_conditional_expression] = STATE(712), - [sym_equality_expression] = STATE(712), - [sym_delete_expression] = STATE(712), - [sym_relational_expression] = STATE(712), - [sym_parenthesized_expression] = STATE(712), - [sym_sizeof_expression] = STATE(712), - [sym_concatenated_string] = STATE(712), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(712), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(712), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(712), - [sym_math_expression] = STATE(712), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1291), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1295), + }, + [216] = { + [sym_template_function] = STATE(713), + [sym__expression] = STATE(713), + [sym_logical_expression] = STATE(713), + [sym_bitwise_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_delete_expression] = STATE(713), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(713), + [sym_lambda_expression] = STATE(713), + [sym_char_literal] = STATE(713), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_comma_expression] = STATE(714), + [sym_conditional_expression] = STATE(713), + [sym_equality_expression] = STATE(713), + [sym_relational_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(713), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(713), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(713), + [sym_math_expression] = STATE(713), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(713), + [sym_raw_string_literal] = ACTIONS(1297), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(1293), - [sym_null] = ACTIONS(1293), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(1299), + [sym_null] = ACTIONS(1299), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(1293), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(1293), + [sym_false] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(1299), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [216] = { - [sym_do_statement] = STATE(714), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [217] = { + [sym_do_statement] = STATE(715), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(714), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(714), - [sym_if_statement] = STATE(714), - [sym_switch_statement] = STATE(714), - [sym_for_statement] = STATE(714), - [sym_return_statement] = STATE(714), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(715), + [sym_try_statement] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_switch_statement] = STATE(715), + [sym_for_statement] = STATE(715), + [sym_return_statement] = STATE(715), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(714), - [sym_break_statement] = STATE(714), - [sym_continue_statement] = STATE(714), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(715), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(714), - [sym_labeled_statement] = STATE(714), - [sym_expression_statement] = STATE(714), - [sym_while_statement] = STATE(714), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(715), + [sym_for_range_loop] = STATE(715), + [sym_compound_statement] = STATE(715), + [sym_labeled_statement] = STATE(715), + [sym_expression_statement] = STATE(715), + [sym_while_statement] = STATE(715), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -22561,7 +22530,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -22585,91 +22554,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [217] = { - [sym_goto_statement] = STATE(716), - [sym_preproc_function_def] = STATE(716), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(716), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(716), + [218] = { + [sym_goto_statement] = STATE(717), + [sym_preproc_function_def] = STATE(717), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(717), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(716), - [sym_return_statement] = STATE(716), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(717), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(717), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(717), + [sym_namespace_definition] = STATE(717), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(716), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(716), - [sym_break_statement] = STATE(716), - [sym_preproc_include] = STATE(716), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(716), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(716), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(717), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(717), + [sym_constructor_or_destructor_definition] = STATE(717), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(717), + [sym_preproc_include] = STATE(717), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(717), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(717), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(716), - [sym_template_instantiation] = STATE(716), - [sym_constructor_or_destructor_definition] = STATE(716), - [sym_expression_statement] = STATE(716), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(716), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(716), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(716), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(716), - [aux_sym_translation_unit_repeat1] = STATE(716), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(716), - [sym_if_statement] = STATE(716), - [sym_for_statement] = STATE(716), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(716), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(716), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(716), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(716), - [sym_preproc_if] = STATE(716), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_do_statement] = STATE(717), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(717), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(717), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(717), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(717), + [sym_for_statement] = STATE(717), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(717), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(717), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(717), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(717), + [sym_preproc_if] = STATE(717), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(716), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(716), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(716), - [sym_while_statement] = STATE(716), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(717), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(717), + [aux_sym_translation_unit_repeat1] = STATE(717), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(717), + [sym_while_statement] = STATE(717), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -22711,7 +22680,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(1295), + [anon_sym_RBRACE] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -22743,703 +22712,704 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [218] = { - [aux_sym_try_statement_repeat1] = STATE(718), - [sym_catch_clause] = STATE(718), - [anon_sym_catch] = ACTIONS(1297), + [219] = { + [sym_catch_clause] = STATE(719), + [aux_sym_try_statement_repeat1] = STATE(719), + [anon_sym_catch] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [219] = { - [sym_template_type] = STATE(722), + [220] = { + [sym_template_function] = STATE(723), [sym__expression] = STATE(723), [sym_logical_expression] = STATE(723), [sym_bitwise_expression] = STATE(723), [sym_cast_expression] = STATE(723), - [sym_new_expression] = STATE(723), - [sym_field_expression] = STATE(299), + [sym_delete_expression] = STATE(723), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), [sym_compound_literal_expression] = STATE(723), - [sym_declaration] = STATE(721), + [aux_sym_function_definition_repeat1] = STATE(724), [sym_char_literal] = STATE(723), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(723), + [sym_lambda_expression] = STATE(723), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(722), + [sym_for_range_declaration] = STATE(725), [sym_conditional_expression] = STATE(723), [sym_equality_expression] = STATE(723), [sym_relational_expression] = STATE(723), [sym_sizeof_expression] = STATE(723), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), [sym_parenthesized_expression] = STATE(723), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), [sym_concatenated_string] = STATE(723), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(723), - [sym_lambda_expression] = STATE(723), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(726), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(727), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), [sym_assignment_expression] = STATE(723), - [sym_pointer_expression] = STATE(299), + [sym_pointer_expression] = STATE(301), [sym_shift_expression] = STATE(723), [sym_math_expression] = STATE(723), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(1299), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(723), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(1305), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(1301), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(1307), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1305), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(1301), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(1307), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(1315), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [220] = { - [anon_sym_DASH] = ACTIONS(1309), - [sym_raw_string_literal] = ACTIONS(1311), - [sym_true] = ACTIONS(1309), - [anon_sym_mutable] = ACTIONS(1309), - [sym_null] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_explicit] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1309), - [anon_sym_delete] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_constexpr] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), - [anon_sym_namespace] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1309), - [sym_auto] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_using] = ACTIONS(1309), - [sym_preproc_directive] = ACTIONS(1309), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_typename] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [anon_sym_new] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1309), - [sym_operator_name] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [sym_nullptr] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_template] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [ts_builtin_sym_end] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1309), - [anon_sym_AMP_AMP] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1309), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [221] = { - [aux_sym_string_literal_repeat1] = STATE(729), - [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1313), - [aux_sym_string_literal_token1] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1315), - }, - [222] = { - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_COLON] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1317), - [anon_sym_PIPE_PIPE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_LT_LT] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [sym_raw_string_literal] = ACTIONS(1319), + [sym_true] = ACTIONS(1317), + [anon_sym_mutable] = ACTIONS(1317), + [sym_null] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_explicit] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_constexpr] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1317), + [sym_auto] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1319), + [anon_sym_using] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [aux_sym_preproc_if_token1] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_typename] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_goto] = ACTIONS(1317), + [sym_operator_name] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_try] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [aux_sym_preproc_include_token1] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1317), [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_PERCENT] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_DASH_GT] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_RPAREN] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_class] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [sym_nullptr] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_template] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [ts_builtin_sym_end] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1317), + [anon_sym_AMP_AMP] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1317), }, - [223] = { - [aux_sym_string_literal_repeat1] = STATE(731), + [222] = { + [aux_sym_string_literal_repeat1] = STATE(730), [sym_comment] = ACTIONS(244), [sym_escape_sequence] = ACTIONS(1321), [aux_sym_string_literal_token1] = ACTIONS(1321), [anon_sym_DQUOTE] = ACTIONS(1323), }, + [223] = { + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1325), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1325), + }, [224] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(732), - [sym_logical_expression] = STATE(732), - [sym_bitwise_expression] = STATE(732), - [sym_cast_expression] = STATE(732), - [sym_new_expression] = STATE(732), - [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(732), - [sym_char_literal] = STATE(732), - [sym_template_function] = STATE(732), - [sym_conditional_expression] = STATE(732), - [sym_equality_expression] = STATE(732), - [sym_relational_expression] = STATE(732), - [sym_delete_expression] = STATE(732), - [sym_sizeof_expression] = STATE(732), - [sym_parenthesized_expression] = STATE(732), - [sym_lambda_expression] = STATE(732), - [sym_concatenated_string] = STATE(732), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(732), - [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(732), - [sym_math_expression] = STATE(732), - [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(1327), - [sym_null] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [aux_sym_string_literal_repeat1] = STATE(732), + [sym_comment] = ACTIONS(244), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1331), }, [225] = { - [sym_template_type] = STATE(54), + [sym_template_function] = STATE(733), [sym__expression] = STATE(733), [sym_logical_expression] = STATE(733), [sym_bitwise_expression] = STATE(733), [sym_cast_expression] = STATE(733), - [sym_new_expression] = STATE(733), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(733), + [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(733), - [sym_type_descriptor] = STATE(734), + [sym_lambda_expression] = STATE(733), [sym_char_literal] = STATE(733), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(733), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(733), [sym_equality_expression] = STATE(733), [sym_relational_expression] = STATE(733), - [sym_delete_expression] = STATE(733), [sym_sizeof_expression] = STATE(733), - [sym_subscript_expression] = STATE(149), + [sym_subscript_expression] = STATE(241), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(733), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), [sym_concatenated_string] = STATE(733), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(733), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(735), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(733), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(733), [sym_math_expression] = STATE(733), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1329), + [sym_call_expression] = STATE(241), + [sym_new_expression] = STATE(733), + [sym_raw_string_literal] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(1335), + [sym_null] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), + }, + [226] = { + [sym_template_function] = STATE(734), + [sym__expression] = STATE(734), + [sym_logical_expression] = STATE(734), + [sym_bitwise_expression] = STATE(734), + [sym_cast_expression] = STATE(734), + [sym_delete_expression] = STATE(734), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(734), + [sym_char_literal] = STATE(734), + [sym_lambda_expression] = STATE(734), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(735), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(736), + [sym_conditional_expression] = STATE(734), + [sym_equality_expression] = STATE(734), + [sym_relational_expression] = STATE(734), + [sym_sizeof_expression] = STATE(734), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(734), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(734), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(734), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(734), + [sym_math_expression] = STATE(734), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(734), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1337), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1331), + [sym_true] = ACTIONS(1339), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1331), + [sym_null] = ACTIONS(1339), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1337), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1331), + [sym_false] = ACTIONS(1339), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1331), + [sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [226] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACK] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [227] = { - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACK] = ACTIONS(1341), }, [228] = { - [aux_sym_string_literal_repeat1] = STATE(737), - [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1341), + [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), }, [229] = { - [sym_destructor_name] = STATE(739), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1343), - [sym_operator_name] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1349), + [aux_sym_string_literal_repeat1] = STATE(738), + [sym_comment] = ACTIONS(244), + [sym_escape_sequence] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1349), }, [230] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(742), - [sym_logical_expression] = STATE(742), - [sym_bitwise_expression] = STATE(742), - [sym_cast_expression] = STATE(742), - [sym_new_expression] = STATE(742), + [sym_destructor_name] = STATE(740), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1351), + [sym_operator_name] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_delete] = ACTIONS(1357), + }, + [231] = { + [sym_template_function] = STATE(743), + [sym__expression] = STATE(743), + [sym_logical_expression] = STATE(743), + [sym_bitwise_expression] = STATE(743), + [sym_cast_expression] = STATE(743), + [sym_delete_expression] = STATE(743), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(742), - [sym_char_literal] = STATE(742), - [sym_template_function] = STATE(742), - [sym_conditional_expression] = STATE(742), - [sym_equality_expression] = STATE(742), - [sym_relational_expression] = STATE(742), - [sym_delete_expression] = STATE(742), - [sym_sizeof_expression] = STATE(742), - [sym_parenthesized_expression] = STATE(742), - [sym_lambda_expression] = STATE(742), - [sym_concatenated_string] = STATE(742), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(743), + [sym_lambda_expression] = STATE(743), + [sym_char_literal] = STATE(743), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(743), + [sym_equality_expression] = STATE(743), + [sym_relational_expression] = STATE(743), + [sym_sizeof_expression] = STATE(743), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(742), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(743), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(743), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(743), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(742), - [sym_math_expression] = STATE(742), + [sym_shift_expression] = STATE(743), + [sym_math_expression] = STATE(743), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(1353), - [sym_null] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_new_expression] = STATE(743), + [sym_raw_string_literal] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(1361), + [sym_null] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [231] = { - [sym_template_type] = STATE(754), + [232] = { + [sym_template_function] = STATE(755), [sym__expression] = STATE(755), [sym_logical_expression] = STATE(755), [sym_bitwise_expression] = STATE(755), [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), + [sym_delete_expression] = STATE(755), [sym_field_expression] = STATE(755), [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), [sym_conditional_expression] = STATE(755), [sym_equality_expression] = STATE(755), [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(758), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), + [sym_template_type] = STATE(761), [sym_assignment_expression] = STATE(755), [sym_pointer_expression] = STATE(755), [sym_shift_expression] = STATE(755), [sym_math_expression] = STATE(755), [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_RBRACK] = ACTIONS(1333), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_RBRACK] = ACTIONS(1341), }, - [232] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(762), - [sym_logical_expression] = STATE(762), - [sym_bitwise_expression] = STATE(762), - [sym_cast_expression] = STATE(762), - [sym_new_expression] = STATE(762), + [233] = { + [sym_template_function] = STATE(763), + [sym__expression] = STATE(763), + [sym_logical_expression] = STATE(763), + [sym_bitwise_expression] = STATE(763), + [sym_cast_expression] = STATE(763), + [sym_delete_expression] = STATE(763), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(762), - [sym_char_literal] = STATE(762), - [sym_template_function] = STATE(762), - [sym_conditional_expression] = STATE(762), - [sym_equality_expression] = STATE(762), - [sym_relational_expression] = STATE(762), - [sym_delete_expression] = STATE(762), - [sym_sizeof_expression] = STATE(762), - [sym_parenthesized_expression] = STATE(762), - [sym_lambda_expression] = STATE(762), - [sym_concatenated_string] = STATE(762), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(763), + [sym_lambda_expression] = STATE(763), + [sym_char_literal] = STATE(763), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(763), + [sym_equality_expression] = STATE(763), + [sym_relational_expression] = STATE(763), + [sym_sizeof_expression] = STATE(763), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(762), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(763), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(763), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(763), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(762), - [sym_math_expression] = STATE(762), + [sym_shift_expression] = STATE(763), + [sym_math_expression] = STATE(763), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(1385), - [sym_true] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(1383), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_new_expression] = STATE(763), + [sym_raw_string_literal] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(1393), + [sym_true] = ACTIONS(1395), + [sym_null] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [233] = { - [sym_template_type] = STATE(754), + [234] = { + [sym_template_function] = STATE(755), [sym__expression] = STATE(755), [sym_logical_expression] = STATE(755), [sym_bitwise_expression] = STATE(755), [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), + [sym_delete_expression] = STATE(755), [sym_field_expression] = STATE(755), [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), [sym_conditional_expression] = STATE(755), [sym_equality_expression] = STATE(755), [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(758), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), + [sym_template_type] = STATE(761), [sym_assignment_expression] = STATE(755), [sym_pointer_expression] = STATE(755), [sym_shift_expression] = STATE(755), [sym_math_expression] = STATE(755), [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(1361), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(1369), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [234] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(763), - [sym_logical_expression] = STATE(763), - [sym_bitwise_expression] = STATE(763), - [sym_cast_expression] = STATE(763), - [sym_new_expression] = STATE(763), + [235] = { + [sym_template_function] = STATE(764), + [sym__expression] = STATE(764), + [sym_logical_expression] = STATE(764), + [sym_bitwise_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_delete_expression] = STATE(764), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(763), - [sym_char_literal] = STATE(763), - [sym_template_function] = STATE(763), - [sym_conditional_expression] = STATE(763), - [sym_equality_expression] = STATE(763), - [sym_relational_expression] = STATE(763), - [sym_delete_expression] = STATE(763), - [sym_sizeof_expression] = STATE(763), - [sym_parenthesized_expression] = STATE(763), - [sym_lambda_expression] = STATE(763), - [sym_concatenated_string] = STATE(763), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(764), + [sym_lambda_expression] = STATE(764), + [sym_char_literal] = STATE(764), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(764), + [sym_equality_expression] = STATE(764), + [sym_relational_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(763), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(764), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(764), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(764), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(763), - [sym_math_expression] = STATE(763), + [sym_shift_expression] = STATE(764), + [sym_math_expression] = STATE(764), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(1391), - [sym_null] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_new_expression] = STATE(764), + [sym_raw_string_literal] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [235] = { - [sym_template_argument_list] = STATE(768), - [sym_initializer_list] = STATE(769), + [236] = { + [aux_sym_structured_binding_declarator_repeat1] = STATE(771), + [sym_initializer_list] = STATE(772), + [sym_template_argument_list] = STATE(773), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_RBRACK] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_LT_LT_EQ] = ACTIONS(1395), - [anon_sym_PERCENT_EQ] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1397), + [anon_sym_RBRACK] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_COLON_COLON] = ACTIONS(1408), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_CARET_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_CARET_EQ] = ACTIONS(1406), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1395), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1395), - [anon_sym_GT_GT_EQ] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(165), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_COMMA] = ACTIONS(1413), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), @@ -23447,167 +23417,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1395), + [anon_sym_DASH_EQ] = ACTIONS(1406), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1395), + [anon_sym_AMP_EQ] = ACTIONS(1406), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_EQ] = ACTIONS(1416), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [236] = { - [sym_union_specifier] = STATE(781), - [sym_macro_type_specifier] = STATE(781), - [sym_class_specifier] = STATE(781), - [sym_template_type] = STATE(777), - [sym_sized_type_specifier] = STATE(781), - [sym_scoped_namespace_identifier] = STATE(779), - [sym__type_specifier] = STATE(781), - [aux_sym_sized_type_specifier_repeat1] = STATE(780), - [sym_argument_list] = STATE(782), - [sym_enum_specifier] = STATE(781), - [sym_struct_specifier] = STATE(781), - [sym_scoped_type_identifier] = STATE(778), - [sym_dependent_type] = STATE(781), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1404), - [sym_auto] = ACTIONS(1406), - [anon_sym_signed] = ACTIONS(1408), - [anon_sym_long] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_typename] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1408), - }, [237] = { - [sym_escape_sequence] = ACTIONS(1422), - [aux_sym_char_literal_token1] = ACTIONS(1424), - [sym_comment] = ACTIONS(244), + [sym_union_specifier] = STATE(782), + [sym_macro_type_specifier] = STATE(782), + [sym_class_specifier] = STATE(782), + [aux_sym_sized_type_specifier_repeat1] = STATE(781), + [sym_sized_type_specifier] = STATE(782), + [sym__type_specifier] = STATE(782), + [sym_argument_list] = STATE(783), + [sym_scoped_type_identifier] = STATE(784), + [sym_enum_specifier] = STATE(782), + [sym_template_type] = STATE(785), + [sym_scoped_namespace_identifier] = STATE(786), + [sym_dependent_type] = STATE(782), + [sym_struct_specifier] = STATE(782), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1418), + [sym_auto] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_typename] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1422), }, [238] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(785), - [sym_logical_expression] = STATE(785), - [sym_bitwise_expression] = STATE(785), - [sym_cast_expression] = STATE(785), - [sym_new_expression] = STATE(785), + [sym_escape_sequence] = ACTIONS(1436), + [aux_sym_char_literal_token1] = ACTIONS(1438), + [sym_comment] = ACTIONS(244), + }, + [239] = { + [sym_template_function] = STATE(789), + [sym__expression] = STATE(789), + [sym_logical_expression] = STATE(789), + [sym_bitwise_expression] = STATE(789), + [sym_cast_expression] = STATE(789), + [sym_delete_expression] = STATE(789), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(785), - [sym_char_literal] = STATE(785), - [sym_template_function] = STATE(785), - [sym_conditional_expression] = STATE(785), - [sym_equality_expression] = STATE(785), - [sym_relational_expression] = STATE(785), - [sym_delete_expression] = STATE(785), - [sym_sizeof_expression] = STATE(785), - [sym_parenthesized_expression] = STATE(785), - [sym_lambda_expression] = STATE(785), - [sym_concatenated_string] = STATE(785), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(789), + [sym_lambda_expression] = STATE(789), + [sym_char_literal] = STATE(789), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(789), + [sym_equality_expression] = STATE(789), + [sym_relational_expression] = STATE(789), + [sym_sizeof_expression] = STATE(789), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(785), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(789), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(789), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(789), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(785), - [sym_math_expression] = STATE(785), + [sym_shift_expression] = STATE(789), + [sym_math_expression] = STATE(789), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(1428), - [sym_null] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), - }, - [239] = { - [sym_initializer_list] = STATE(787), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1393), - [sym_comment] = ACTIONS(3), + [sym_new_expression] = STATE(789), + [sym_raw_string_literal] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(1442), + [sym_null] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, [240] = { - [aux_sym_for_statement_repeat1] = STATE(805), - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(1470), + [sym_argument_list] = STATE(807), + [aux_sym_for_statement_repeat1] = STATE(808), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(1482), }, [241] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_RBRACK] = ACTIONS(165), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_LT_LT_EQ] = ACTIONS(1395), - [anon_sym_PERCENT_EQ] = ACTIONS(1395), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(1395), + [anon_sym_CARET_EQ] = ACTIONS(1406), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1395), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1395), - [anon_sym_GT_GT_EQ] = ACTIONS(1395), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -23616,19 +23580,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1395), + [anon_sym_DASH_EQ] = ACTIONS(1406), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1395), + [anon_sym_AMP_EQ] = ACTIONS(1406), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_EQ] = ACTIONS(1416), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, [242] = { - [sym_template_argument_list] = STATE(807), + [sym_template_argument_list] = STATE(809), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_GT] = ACTIONS(163), @@ -23641,7 +23605,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1410), [anon_sym_PERCENT] = ACTIONS(165), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(163), @@ -23659,15 +23623,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(165), }, [243] = { - [sym_template_argument_list] = STATE(354), - [sym_initializer_list] = STATE(787), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1393), + [sym_initializer_list] = STATE(810), + [sym_template_argument_list] = STATE(312), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, [244] = { - [sym_string_literal] = STATE(808), - [aux_sym_concatenated_string_repeat1] = STATE(808), + [sym_abstract_reference_declarator] = STATE(321), + [sym_abstract_array_declarator] = STATE(321), + [sym_abstract_pointer_declarator] = STATE(321), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(811), + [sym__abstract_declarator] = STATE(321), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(544), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [sym_string_literal] = STATE(812), + [aux_sym_concatenated_string_repeat1] = STATE(812), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_RBRACK] = ACTIONS(165), @@ -23684,7 +23662,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), [anon_sym_LT_LT] = ACTIONS(165), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(165), @@ -23698,320 +23676,312 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [245] = { - [sym_parameter_list] = STATE(361), - [sym_abstract_array_declarator] = STATE(363), - [sym_abstract_pointer_declarator] = STATE(363), - [sym_abstract_reference_declarator] = STATE(363), - [sym_abstract_function_declarator] = STATE(809), - [sym__abstract_declarator] = STATE(363), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - }, [246] = { - [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, [247] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1482), }, [248] = { - [sym_template_argument_list] = STATE(385), - [sym_virtual_specifier] = STATE(810), - [sym_field_declaration_list] = STATE(811), - [sym_base_class_clause] = STATE(812), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_DASH_GT] = ACTIONS(1472), - [anon_sym_mutable] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_volatile] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1474), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [sym_operator_name] = ACTIONS(1472), - [sym_noexcept] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1474), - [anon_sym__Atomic] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1474), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1472), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1474), - [anon_sym_restrict] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1472), + [sym_initializer_list] = STATE(810), + [anon_sym_COLON_COLON] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1404), + [sym_comment] = ACTIONS(3), }, [249] = { - [sym_field_declaration_list] = STATE(813), - [sym_base_class_clause] = STATE(814), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), + [sym_virtual_specifier] = STATE(814), + [sym_template_argument_list] = STATE(386), + [sym_field_declaration_list] = STATE(815), + [sym_base_class_clause] = STATE(816), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DASH_GT] = ACTIONS(1486), + [anon_sym_mutable] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [sym_operator_name] = ACTIONS(1486), + [sym_noexcept] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(1486), }, [250] = { - [sym_virtual_specifier] = STATE(815), - [sym_field_declaration_list] = STATE(813), - [sym_base_class_clause] = STATE(814), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_mutable] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [sym_operator_name] = ACTIONS(1476), - [sym_noexcept] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1476), + [sym_virtual_specifier] = STATE(817), + [sym_template_argument_list] = STATE(312), + [sym_field_declaration_list] = STATE(818), + [sym_base_class_clause] = STATE(819), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(300), + [anon_sym_mutable] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_override] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [sym_operator_name] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_RPAREN] = ACTIONS(1490), }, [251] = { - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_mutable] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1476), - [anon_sym_COLON] = ACTIONS(1478), - [anon_sym_explicit] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(1478), - [sym_operator_name] = ACTIONS(1476), - [sym_noexcept] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), + [sym_field_declaration_list] = STATE(818), + [sym_base_class_clause] = STATE(819), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(304), + [sym_comment] = ACTIONS(3), }, [252] = { - [sym_template_argument_list] = STATE(354), - [sym_virtual_specifier] = STATE(815), - [sym_field_declaration_list] = STATE(813), - [sym_base_class_clause] = STATE(814), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(298), - [anon_sym_mutable] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [sym_operator_name] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_RPAREN] = ACTIONS(1476), + [sym_virtual_specifier] = STATE(817), + [sym_field_declaration_list] = STATE(818), + [sym_base_class_clause] = STATE(819), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_mutable] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [sym_operator_name] = ACTIONS(1490), + [sym_noexcept] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(1490), }, [253] = { - [sym_field_declaration_list] = STATE(813), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_mutable] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1490), + [anon_sym_COLON] = ACTIONS(1492), + [anon_sym_explicit] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_override] = ACTIONS(1492), + [sym_operator_name] = ACTIONS(1490), + [sym_noexcept] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), }, [254] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(826), - [sym_logical_expression] = STATE(826), - [sym_bitwise_expression] = STATE(826), - [sym_cast_expression] = STATE(826), - [sym_new_expression] = STATE(826), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(826), - [sym_char_literal] = STATE(826), - [sym_template_function] = STATE(826), - [sym_conditional_expression] = STATE(826), - [sym_equality_expression] = STATE(826), - [sym_relational_expression] = STATE(826), - [sym_delete_expression] = STATE(826), - [sym_sizeof_expression] = STATE(826), - [sym_parenthesized_expression] = STATE(826), - [sym_lambda_expression] = STATE(826), - [sym_concatenated_string] = STATE(826), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(826), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(826), - [sym_math_expression] = STATE(826), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(1486), - [sym_null] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_field_declaration_list] = STATE(818), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), }, [255] = { - [anon_sym_LPAREN2] = ACTIONS(1506), + [sym_template_function] = STATE(830), + [sym__expression] = STATE(830), + [sym_logical_expression] = STATE(830), + [sym_bitwise_expression] = STATE(830), + [sym_cast_expression] = STATE(830), + [sym_delete_expression] = STATE(830), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(830), + [sym_lambda_expression] = STATE(830), + [sym_char_literal] = STATE(830), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(830), + [sym_equality_expression] = STATE(830), + [sym_relational_expression] = STATE(830), + [sym_sizeof_expression] = STATE(830), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(830), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(830), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(830), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(830), + [sym_math_expression] = STATE(830), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(830), + [sym_raw_string_literal] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(1500), + [sym_null] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [256] = { + [anon_sym_LPAREN2] = ACTIONS(1520), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1508), }, [257] = { - [sym_parenthesized_expression] = STATE(831), - [anon_sym_LPAREN2] = ACTIONS(157), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1522), }, [258] = { - [sym_template_argument_list] = STATE(377), + [sym_parenthesized_expression] = STATE(835), + [anon_sym_LPAREN2] = ACTIONS(157), + [sym_comment] = ACTIONS(3), + }, + [259] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -24019,7 +23989,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -24029,7 +23999,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1524), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -24055,390 +24025,396 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [259] = { - [sym_identifier] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - }, [260] = { - [sym_parenthesized_expression] = STATE(834), - [anon_sym_LPAREN2] = ACTIONS(372), + [sym_identifier] = ACTIONS(1526), [sym_comment] = ACTIONS(3), }, [261] = { + [sym_parenthesized_expression] = STATE(838), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1514), }, [262] = { - [anon_sym_LPAREN2] = ACTIONS(1516), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1528), }, [263] = { - [sym_compound_statement] = STATE(837), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LPAREN2] = ACTIONS(1530), [sym_comment] = ACTIONS(3), }, [264] = { - [anon_sym_LPAREN2] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1520), + [sym_compound_statement] = STATE(841), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, [265] = { - [sym_do_statement] = STATE(840), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + }, + [266] = { + [sym_do_statement] = STATE(844), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(840), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(840), - [sym_if_statement] = STATE(840), - [sym_switch_statement] = STATE(840), - [sym_for_statement] = STATE(840), - [sym_return_statement] = STATE(840), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(840), - [sym_break_statement] = STATE(840), - [sym_continue_statement] = STATE(840), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(844), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(840), - [sym_labeled_statement] = STATE(840), - [sym_expression_statement] = STATE(840), - [sym_while_statement] = STATE(840), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(844), + [sym_for_range_loop] = STATE(844), + [sym_compound_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_expression_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [266] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(842), - [sym_logical_expression] = STATE(842), - [sym_bitwise_expression] = STATE(842), - [sym_cast_expression] = STATE(842), - [sym_new_expression] = STATE(842), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(842), - [sym_char_literal] = STATE(842), - [sym_template_function] = STATE(842), - [sym_conditional_expression] = STATE(842), - [sym_equality_expression] = STATE(842), - [sym_relational_expression] = STATE(842), - [sym_delete_expression] = STATE(842), - [sym_sizeof_expression] = STATE(842), - [sym_parenthesized_expression] = STATE(842), - [sym_initializer_list] = STATE(843), - [sym_concatenated_string] = STATE(842), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(842), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(842), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(842), - [sym_math_expression] = STATE(842), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1522), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), - }, [267] = { - [anon_sym_else] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [sym_comment] = ACTIONS(3), + [sym_template_function] = STATE(846), + [sym__expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_delete_expression] = STATE(846), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(846), + [sym_lambda_expression] = STATE(846), + [sym_char_literal] = STATE(846), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(847), + [sym_parenthesized_expression] = STATE(846), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(846), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(846), + [sym_raw_string_literal] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1536), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(175), }, [268] = { - [anon_sym_while] = ACTIONS(1528), + [anon_sym_else] = ACTIONS(518), + [anon_sym_while] = ACTIONS(518), [sym_comment] = ACTIONS(3), }, [269] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_while] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), }, [270] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1530), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [271] = { - [sym_reference_declarator] = STATE(148), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(148), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(148), - [sym_destructor_name] = STATE(148), - [sym__declarator] = STATE(148), - [sym_array_declarator] = STATE(148), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(148), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(292), - [sym_operator_name] = ACTIONS(286), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1544), }, [272] = { - [sym_destructor_name] = STATE(166), - [sym_identifier] = ACTIONS(1532), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), + [sym_template_function] = STATE(149), + [sym_destructor_name] = STATE(149), + [sym_pointer_declarator] = STATE(149), + [sym_structured_binding_declarator] = STATE(149), + [sym__declarator] = STATE(149), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(149), + [sym_array_declarator] = STATE(149), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_function_declarator] = STATE(149), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(286), [sym_comment] = ACTIONS(3), }, [273] = { - [aux_sym_function_definition_repeat1] = STATE(854), - [sym_macro_type_specifier] = STATE(855), - [sym_class_specifier] = STATE(855), - [sym__type_specifier] = STATE(855), - [sym_sized_type_specifier] = STATE(855), - [sym_template_type] = STATE(856), - [sym_optional_type_parameter_declaration] = STATE(857), - [sym_parameter_declaration] = STATE(857), - [sym_optional_parameter_declaration] = STATE(857), - [aux_sym__declaration_specifiers_repeat1] = STATE(858), - [sym_storage_class_specifier] = STATE(858), - [sym_dependent_type] = STATE(855), - [sym_struct_specifier] = STATE(855), - [sym_union_specifier] = STATE(855), - [sym_attribute] = STATE(854), - [sym_type_qualifier] = STATE(858), - [sym_scoped_namespace_identifier] = STATE(859), - [sym_type_parameter_declaration] = STATE(857), - [sym_variadic_type_parameter_declaration] = STATE(857), - [aux_sym_sized_type_specifier_repeat1] = STATE(860), - [sym_enum_specifier] = STATE(855), - [sym__declaration_specifiers] = STATE(861), - [sym_scoped_type_identifier] = STATE(862), - [anon_sym_struct] = ACTIONS(1534), - [sym_auto] = ACTIONS(1536), - [anon_sym_signed] = ACTIONS(1538), + [sym_destructor_name] = STATE(167), + [sym_identifier] = ACTIONS(1546), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [sym_macro_type_specifier] = STATE(858), + [sym_class_specifier] = STATE(858), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(858), + [aux_sym_sized_type_specifier_repeat1] = STATE(859), + [sym_optional_parameter_declaration] = STATE(860), + [sym_parameter_declaration] = STATE(860), + [sym_scoped_type_identifier] = STATE(861), + [aux_sym_function_definition_repeat1] = STATE(862), + [sym_template_type] = STATE(863), + [sym_storage_class_specifier] = STATE(864), + [sym_dependent_type] = STATE(858), + [sym_struct_specifier] = STATE(858), + [sym_union_specifier] = STATE(858), + [sym_type_qualifier] = STATE(864), + [sym_variadic_type_parameter_declaration] = STATE(860), + [sym_optional_type_parameter_declaration] = STATE(860), + [aux_sym__declaration_specifiers_repeat1] = STATE(864), + [sym_enum_specifier] = STATE(858), + [sym_attribute] = STATE(862), + [sym_type_parameter_declaration] = STATE(860), + [sym__declaration_specifiers] = STATE(865), + [sym_scoped_namespace_identifier] = STATE(866), + [anon_sym_struct] = ACTIONS(1548), + [sym_auto] = ACTIONS(1550), + [anon_sym_signed] = ACTIONS(1552), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1552), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_GT2] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(1558), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1536), - [anon_sym_unsigned] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(1550), + [anon_sym_unsigned] = ACTIONS(1552), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_typename] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_typename] = ACTIONS(1562), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1564), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1552), [anon_sym_restrict] = ACTIONS(11), }, - [274] = { - [sym_reference_declarator] = STATE(863), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(863), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(863), - [sym_destructor_name] = STATE(863), - [sym__declarator] = STATE(863), - [sym_array_declarator] = STATE(863), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(863), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(476), - [sym_operator_name] = ACTIONS(1552), + [275] = { + [sym_template_function] = STATE(867), + [sym_destructor_name] = STATE(867), + [sym_pointer_declarator] = STATE(867), + [sym_structured_binding_declarator] = STATE(867), + [sym__declarator] = STATE(867), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(867), + [sym_array_declarator] = STATE(867), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_function_declarator] = STATE(867), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(1566), [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(865), - [sym_pointer_declarator] = STATE(865), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(864), - [sym_template_function] = STATE(865), - [sym_destructor_name] = STATE(865), - [sym__declarator] = STATE(865), - [sym_array_declarator] = STATE(865), - [sym_scoped_identifier] = STATE(286), - [sym_type_qualifier] = STATE(864), - [sym_function_declarator] = STATE(865), - [anon_sym_LPAREN2] = ACTIONS(456), + [276] = { + [aux_sym_type_definition_repeat1] = STATE(868), + [sym_template_function] = STATE(869), + [sym_destructor_name] = STATE(869), + [sym_pointer_declarator] = STATE(869), + [sym_structured_binding_declarator] = STATE(869), + [sym__declarator] = STATE(869), + [sym_scoped_identifier] = STATE(282), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(869), + [sym_array_declarator] = STATE(869), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(868), + [sym_function_declarator] = STATE(869), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(468), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(476), - [sym_operator_name] = ACTIONS(1554), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(480), + [sym_operator_name] = ACTIONS(1568), [anon_sym_restrict] = ACTIONS(11), }, - [276] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(460), + [277] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [277] = { - [sym_template_argument_list] = STATE(867), - [anon_sym_LPAREN2] = ACTIONS(1556), + [278] = { + [sym_template_argument_list] = STATE(871), + [anon_sym_LPAREN2] = ACTIONS(1570), [anon_sym_mutable] = ACTIONS(169), [anon_sym_register] = ACTIONS(169), [anon_sym__Atomic] = ACTIONS(169), [anon_sym_const] = ACTIONS(169), [anon_sym_extern] = ACTIONS(169), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_COLON_COLON] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(534), [anon_sym_constexpr] = ACTIONS(169), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(169), @@ -24446,7 +24422,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(169), [anon_sym_STAR] = ACTIONS(185), [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(548), [anon_sym_explicit] = ACTIONS(169), [anon_sym_AMP_AMP] = ACTIONS(185), [anon_sym_inline] = ACTIONS(169), @@ -24454,81 +24430,128 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(169), [sym_operator_name] = ACTIONS(185), }, - [278] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(868), - [sym_storage_class_specifier] = STATE(868), - [sym_type_qualifier] = STATE(868), - [anon_sym_LPAREN2] = ACTIONS(541), + [279] = { + [sym_identifier] = ACTIONS(1575), + [sym_comment] = ACTIONS(3), + }, + [280] = { + [sym_storage_class_specifier] = STATE(873), + [sym_type_qualifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(873), + [anon_sym_LPAREN2] = ACTIONS(565), [anon_sym_mutable] = ACTIONS(11), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(541), + [anon_sym_COLON_COLON] = ACTIONS(565), [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(565), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(567), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(565), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(541), + [sym_operator_name] = ACTIONS(565), [anon_sym_restrict] = ACTIONS(11), }, - [279] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(1561), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), + [281] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(874), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(1577), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_register] = ACTIONS(558), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_static] = ACTIONS(558), + [anon_sym_volatile] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_inline] = ACTIONS(558), + [sym_identifier] = ACTIONS(562), + [anon_sym_restrict] = ACTIONS(558), + [sym_operator_name] = ACTIONS(554), + [anon_sym_short] = ACTIONS(1577), }, - [280] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), + [282] = { + [sym_template_argument_list] = STATE(356), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(548), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1563), }, - [281] = { - [sym_macro_type_specifier] = STATE(872), - [sym_class_specifier] = STATE(872), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(872), - [sym__type_specifier] = STATE(872), - [aux_sym__declaration_specifiers_repeat1] = STATE(873), - [sym_storage_class_specifier] = STATE(873), - [sym_type_qualifier] = STATE(873), - [sym_struct_specifier] = STATE(872), - [sym_union_specifier] = STATE(872), - [sym_dependent_type] = STATE(872), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(872), - [sym_scoped_type_identifier] = STATE(87), + [283] = { + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(1579), + }, + [284] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(1581), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + }, + [285] = { + [sym_macro_type_specifier] = STATE(878), + [sym_class_specifier] = STATE(878), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_sized_type_specifier] = STATE(878), + [sym__type_specifier] = STATE(878), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(879), + [sym_type_qualifier] = STATE(879), + [sym_struct_specifier] = STATE(878), + [sym_union_specifier] = STATE(878), + [sym_dependent_type] = STATE(878), + [aux_sym__declaration_specifiers_repeat1] = STATE(879), + [sym_enum_specifier] = STATE(878), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(1583), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -24537,78 +24560,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(1583), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, - [282] = { - [anon_sym_COLON_COLON] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - }, - [283] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(874), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(1567), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(1567), - [anon_sym_register] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(1567), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(625), - [sym_identifier] = ACTIONS(629), - [anon_sym_restrict] = ACTIONS(625), - [sym_operator_name] = ACTIONS(621), - [anon_sym_short] = ACTIONS(1567), - }, - [284] = { - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(876), - [sym_class_specifier] = STATE(876), - [sym__type_specifier] = STATE(876), - [sym_sized_type_specifier] = STATE(876), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(877), - [sym_declaration] = STATE(877), - [aux_sym__declaration_specifiers_repeat1] = STATE(878), - [sym_storage_class_specifier] = STATE(878), - [sym_dependent_type] = STATE(876), - [sym_struct_specifier] = STATE(876), - [sym_union_specifier] = STATE(876), - [sym_attribute] = STATE(62), - [sym_type_qualifier] = STATE(878), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__empty_declaration] = STATE(877), - [aux_sym_sized_type_specifier_repeat1] = STATE(879), - [sym_enum_specifier] = STATE(876), - [sym__declaration_specifiers] = STATE(880), - [sym_scoped_type_identifier] = STATE(87), + [286] = { + [sym_macro_type_specifier] = STATE(55), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_sized_type_specifier] = STATE(55), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_function_definition] = STATE(880), + [sym_declaration] = STATE(880), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_template_type] = STATE(91), + [sym__empty_declaration] = STATE(880), + [sym_storage_class_specifier] = STATE(881), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_union_specifier] = STATE(55), + [sym_type_qualifier] = STATE(881), + [aux_sym__declaration_specifiers_repeat1] = STATE(881), + [sym_enum_specifier] = STATE(55), + [sym_attribute] = STATE(49), + [sym__declaration_specifiers] = STATE(63), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1571), + [sym_auto] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(35), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(35), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -24617,152 +24608,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(35), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1573), + [anon_sym_typename] = ACTIONS(69), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(35), [anon_sym_restrict] = ACTIONS(11), }, - [285] = { - [sym_reference_declarator] = STATE(881), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(881), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(881), - [sym_destructor_name] = STATE(881), - [sym__declarator] = STATE(881), - [sym_array_declarator] = STATE(881), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(881), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(476), - [sym_operator_name] = ACTIONS(1575), + [287] = { + [sym_template_function] = STATE(882), + [sym_destructor_name] = STATE(882), + [sym_pointer_declarator] = STATE(882), + [sym_structured_binding_declarator] = STATE(882), + [sym__declarator] = STATE(882), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(882), + [sym_array_declarator] = STATE(882), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_function_declarator] = STATE(882), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(1585), [sym_comment] = ACTIONS(3), }, - [286] = { - [sym_template_argument_list] = STATE(316), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(535), + [288] = { + [anon_sym_COLON_COLON] = ACTIONS(1581), [sym_comment] = ACTIONS(3), }, - [287] = { - [sym_template_type] = STATE(71), + [289] = { + [sym_template_function] = STATE(72), [sym__expression] = STATE(72), [sym_logical_expression] = STATE(72), [sym_bitwise_expression] = STATE(72), [sym_cast_expression] = STATE(72), - [sym_new_expression] = STATE(72), - [sym_field_expression] = STATE(299), + [sym_delete_expression] = STATE(72), + [sym_field_expression] = STATE(301), [sym_compound_literal_expression] = STATE(72), + [sym_lambda_expression] = STATE(72), [sym_char_literal] = STATE(72), - [sym_template_function] = STATE(72), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(72), [sym_equality_expression] = STATE(72), [sym_relational_expression] = STATE(72), - [sym_delete_expression] = STATE(72), [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(72), - [sym_lambda_expression] = STATE(72), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), [sym_concatenated_string] = STATE(72), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(72), - [sym_pointer_expression] = STATE(299), + [sym_pointer_expression] = STATE(301), [sym_shift_expression] = STATE(72), [sym_math_expression] = STATE(72), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(72), [sym_raw_string_literal] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), [sym_true] = ACTIONS(113), [sym_null] = ACTIONS(113), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(109), - [anon_sym_COLON_COLON] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(492), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(494), [sym_false] = ACTIONS(113), - [anon_sym_AMP] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(496), [sym_nullptr] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [288] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(882), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [290] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(883), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -24770,20 +24755,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -24800,397 +24785,397 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [289] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(884), - [sym_logical_expression] = STATE(884), - [sym_bitwise_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_new_expression] = STATE(884), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(884), - [sym_char_literal] = STATE(884), - [sym_template_function] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_equality_expression] = STATE(884), - [sym_relational_expression] = STATE(884), - [sym_delete_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(884), - [sym_lambda_expression] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(884), - [sym_math_expression] = STATE(884), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [291] = { + [sym_template_function] = STATE(885), + [sym__expression] = STATE(885), + [sym_logical_expression] = STATE(885), + [sym_bitwise_expression] = STATE(885), + [sym_cast_expression] = STATE(885), + [sym_delete_expression] = STATE(885), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(885), + [sym_lambda_expression] = STATE(885), + [sym_char_literal] = STATE(885), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(885), + [sym_equality_expression] = STATE(885), + [sym_relational_expression] = STATE(885), + [sym_sizeof_expression] = STATE(885), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(885), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(885), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(885), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(885), + [sym_math_expression] = STATE(885), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(885), + [sym_raw_string_literal] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1587), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [290] = { - [sym_destructor_name] = STATE(166), + [292] = { + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(640), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(1583), + [sym_identifier] = ACTIONS(642), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(1593), }, - [291] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_new_expression] = STATE(77), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_template_function] = STATE(77), - [sym_conditional_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_delete_expression] = STATE(77), - [sym_sizeof_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_lambda_expression] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [293] = { + [sym_template_function] = STATE(78), + [sym__expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_delete_expression] = STATE(78), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(78), + [sym_lambda_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(78), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(78), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(78), [sym_raw_string_literal] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), [sym_true] = ACTIONS(133), [sym_null] = ACTIONS(133), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(131), - [anon_sym_COLON_COLON] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(492), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(494), [sym_false] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(496), [sym_nullptr] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [292] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(190), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_parenthesized_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(330), - [sym_null] = ACTIONS(330), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(330), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), - }, - [293] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(896), - [sym_logical_expression] = STATE(896), - [sym_bitwise_expression] = STATE(896), - [sym_cast_expression] = STATE(896), - [sym_new_expression] = STATE(896), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(896), - [sym_char_literal] = STATE(896), - [sym_template_function] = STATE(896), - [sym_conditional_expression] = STATE(896), - [sym_equality_expression] = STATE(896), - [sym_relational_expression] = STATE(896), - [sym_delete_expression] = STATE(896), - [sym_sizeof_expression] = STATE(896), - [sym_parenthesized_expression] = STATE(896), - [sym_lambda_expression] = STATE(896), - [sym_concatenated_string] = STATE(896), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(896), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(896), - [sym_math_expression] = STATE(896), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(1605), - [sym_true] = ACTIONS(1607), - [sym_null] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [294] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(303), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_template_function] = STATE(191), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_char_literal] = STATE(191), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(191), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(191), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_call_expression] = STATE(191), + [sym_new_expression] = STATE(191), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(332), + [sym_null] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, [295] = { - [anon_sym_DASH] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - [anon_sym_else] = ACTIONS(1609), - [sym_true] = ACTIONS(1609), - [anon_sym_mutable] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_typedef] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_explicit] = ACTIONS(1609), - [sym_identifier] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1609), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_constexpr] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym_namespace] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1609), - [sym_auto] = ACTIONS(1609), - [anon_sym_signed] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_using] = ACTIONS(1609), - [sym_preproc_directive] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_typename] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [sym_operator_name] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_class] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1609), - [sym_false] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_template] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1611), - [ts_builtin_sym_end] = ACTIONS(1611), - [aux_sym_preproc_def_token1] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_inline] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_restrict] = ACTIONS(1609), + [sym_template_function] = STATE(897), + [sym__expression] = STATE(897), + [sym_logical_expression] = STATE(897), + [sym_bitwise_expression] = STATE(897), + [sym_cast_expression] = STATE(897), + [sym_delete_expression] = STATE(897), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(897), + [sym_lambda_expression] = STATE(897), + [sym_char_literal] = STATE(897), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(897), + [sym_equality_expression] = STATE(897), + [sym_relational_expression] = STATE(897), + [sym_sizeof_expression] = STATE(897), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(897), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(897), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(897), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(897), + [sym_math_expression] = STATE(897), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(897), + [sym_raw_string_literal] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(1615), + [sym_true] = ACTIONS(1617), + [sym_null] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1613), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [296] = { - [sym_template_argument_list] = STATE(377), + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), + }, + [297] = { + [anon_sym_DASH] = ACTIONS(1619), + [sym_raw_string_literal] = ACTIONS(1621), + [anon_sym_else] = ACTIONS(1619), + [sym_true] = ACTIONS(1619), + [anon_sym_mutable] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_sizeof] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1619), + [anon_sym_explicit] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [anon_sym_delete] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1619), + [anon_sym__Atomic] = ACTIONS(1619), + [sym_number_literal] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_constexpr] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1621), + [anon_sym_namespace] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1619), + [sym_auto] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_COLON_COLON] = ACTIONS(1621), + [anon_sym_using] = ACTIONS(1619), + [sym_preproc_directive] = ACTIONS(1619), + [aux_sym_preproc_if_token1] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_typename] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [sym_operator_name] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [aux_sym_preproc_include_token1] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), + [sym_nullptr] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_template] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1621), + [anon_sym_inline] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_restrict] = ACTIONS(1619), + }, + [298] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1623), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(1615), - [anon_sym_LT_LT_EQ] = ACTIONS(1615), - [anon_sym_PERCENT_EQ] = ACTIONS(1615), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(1625), + [anon_sym_LT_LT_EQ] = ACTIONS(1625), + [anon_sym_PERCENT_EQ] = ACTIONS(1625), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(1615), + [anon_sym_CARET_EQ] = ACTIONS(1625), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(1615), - [anon_sym_PLUS_EQ] = ACTIONS(1615), + [anon_sym_SLASH_EQ] = ACTIONS(1625), + [anon_sym_PLUS_EQ] = ACTIONS(1625), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1615), - [anon_sym_GT_GT_EQ] = ACTIONS(1615), + [anon_sym_PIPE_EQ] = ACTIONS(1625), + [anon_sym_GT_GT_EQ] = ACTIONS(1625), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), @@ -25198,99 +25183,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1615), + [anon_sym_DASH_EQ] = ACTIONS(1625), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1615), + [anon_sym_AMP_EQ] = ACTIONS(1625), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [297] = { - [sym_union_specifier] = STATE(900), - [sym_macro_type_specifier] = STATE(900), - [sym_class_specifier] = STATE(900), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(900), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(900), - [aux_sym_sized_type_specifier_repeat1] = STATE(899), - [sym_argument_list] = STATE(901), - [sym_enum_specifier] = STATE(900), - [sym_struct_specifier] = STATE(900), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(900), - [anon_sym_LPAREN2] = ACTIONS(358), + [299] = { + [sym_union_specifier] = STATE(901), + [sym_macro_type_specifier] = STATE(901), + [sym_class_specifier] = STATE(901), + [aux_sym_sized_type_specifier_repeat1] = STATE(900), + [sym_sized_type_specifier] = STATE(901), + [sym__type_specifier] = STATE(901), + [sym_argument_list] = STATE(902), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(901), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(901), + [sym_struct_specifier] = STATE(901), + [anon_sym_LPAREN2] = ACTIONS(360), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(1617), - [anon_sym_signed] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), + [sym_auto] = ACTIONS(1627), + [anon_sym_signed] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(1617), - [anon_sym_unsigned] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1627), + [anon_sym_unsigned] = ACTIONS(1629), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(1621), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(1619), + [anon_sym_typename] = ACTIONS(1631), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(1629), }, - [298] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [300] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [299] = { + [301] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(1613), - [anon_sym_STAR_EQ] = ACTIONS(1615), - [anon_sym_LT_LT_EQ] = ACTIONS(1615), - [anon_sym_PERCENT_EQ] = ACTIONS(1615), + [anon_sym_EQ] = ACTIONS(1623), + [anon_sym_STAR_EQ] = ACTIONS(1625), + [anon_sym_LT_LT_EQ] = ACTIONS(1625), + [anon_sym_PERCENT_EQ] = ACTIONS(1625), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(1615), + [anon_sym_CARET_EQ] = ACTIONS(1625), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(1615), - [anon_sym_PLUS_EQ] = ACTIONS(1615), + [anon_sym_SLASH_EQ] = ACTIONS(1625), + [anon_sym_PLUS_EQ] = ACTIONS(1625), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1615), - [anon_sym_GT_GT_EQ] = ACTIONS(1615), + [anon_sym_PIPE_EQ] = ACTIONS(1625), + [anon_sym_GT_GT_EQ] = ACTIONS(1625), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), @@ -25298,20 +25283,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1615), + [anon_sym_DASH_EQ] = ACTIONS(1625), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1615), + [anon_sym_AMP_EQ] = ACTIONS(1625), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [300] = { - [sym_string_literal] = STATE(914), - [aux_sym_concatenated_string_repeat1] = STATE(914), + [302] = { + [sym_string_literal] = STATE(915), + [aux_sym_concatenated_string_repeat1] = STATE(915), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_GT] = ACTIONS(163), @@ -25341,21 +25326,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [301] = { + [303] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1657), }, - [302] = { - [sym_template_argument_list] = STATE(377), + [304] = { [sym_initializer_list] = STATE(100), - [anon_sym_LPAREN2] = ACTIONS(1651), + [sym_template_argument_list] = STATE(378), + [anon_sym_LPAREN2] = ACTIONS(1661), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -25375,7 +25360,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1661), [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), @@ -25390,523 +25375,935 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [303] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1655), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(1655), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), + [305] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), }, - [304] = { - [sym_preproc_params] = STATE(918), - [sym_preproc_arg] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), + [306] = { + [sym_preproc_params] = STATE(919), + [sym_preproc_arg] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_LF] = ACTIONS(1671), [sym_comment] = ACTIONS(244), }, - [305] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(191), - [sym_pointer_declarator] = STATE(191), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(198), - [sym_template_function] = STATE(191), - [sym_destructor_name] = STATE(191), - [sym__declarator] = STATE(191), - [sym_array_declarator] = STATE(191), - [sym_scoped_identifier] = STATE(286), - [sym_type_qualifier] = STATE(198), - [sym_function_declarator] = STATE(191), - [anon_sym_LPAREN2] = ACTIONS(456), + [307] = { + [aux_sym_type_definition_repeat1] = STATE(199), + [sym_template_function] = STATE(193), + [sym_destructor_name] = STATE(193), + [sym_pointer_declarator] = STATE(193), + [sym_structured_binding_declarator] = STATE(193), + [sym__declarator] = STATE(193), + [sym_scoped_identifier] = STATE(282), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(193), + [sym_array_declarator] = STATE(193), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(199), + [sym_function_declarator] = STATE(193), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(524), + [sym_identifier] = ACTIONS(528), [anon_sym_AMP_AMP] = ACTIONS(107), - [sym_operator_name] = ACTIONS(352), + [sym_operator_name] = ACTIONS(354), [anon_sym_restrict] = ACTIONS(11), }, - [306] = { - [sym_destructor_name] = STATE(166), - [sym_identifier] = ACTIONS(1663), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - }, - [307] = { - [sym_template_argument_list] = STATE(377), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(609), - [sym_comment] = ACTIONS(3), - }, [308] = { - [anon_sym_COLON_COLON] = ACTIONS(1667), + [sym_destructor_name] = STATE(167), + [sym_identifier] = ACTIONS(1673), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, [309] = { - [sym_destructor_name] = STATE(166), - [sym_identifier] = ACTIONS(1669), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), + [sym_template_argument_list] = STATE(378), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(534), [sym_comment] = ACTIONS(3), }, [310] = { - [sym_template_argument_list] = STATE(924), - [anon_sym_LPAREN2] = ACTIONS(1556), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_mutable] = ACTIONS(169), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_register] = ACTIONS(169), - [anon_sym__Atomic] = ACTIONS(169), - [anon_sym_const] = ACTIONS(169), - [anon_sym_extern] = ACTIONS(169), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_constexpr] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(1677), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(169), - [anon_sym_static] = ACTIONS(169), - [anon_sym_volatile] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_explicit] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(185), - [anon_sym_inline] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_restrict] = ACTIONS(169), - [sym_operator_name] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(1556), }, [311] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(1673), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_LPAREN2] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_COLON] = ACTIONS(1679), + [anon_sym_CARET] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_COMMA] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_PERCENT] = ACTIONS(1679), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_DASH_GT] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_GT_GT] = ACTIONS(1679), + [anon_sym_DASH_DASH] = ACTIONS(1679), }, [312] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(926), - [sym_storage_class_specifier] = STATE(926), - [sym_type_qualifier] = STATE(926), - [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_final] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_DASH_GT] = ACTIONS(1683), + [anon_sym_mutable] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1685), + [anon_sym_volatile] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_override] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_explicit] = ACTIONS(1685), + [sym_identifier] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [sym_operator_name] = ACTIONS(1683), + [sym_noexcept] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1685), + [anon_sym__Atomic] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1683), + [anon_sym_constexpr] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1683), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_inline] = ACTIONS(1685), + [anon_sym_restrict] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_GT_GT] = ACTIONS(1683), + }, + [313] = { + [sym_attribute] = STATE(313), + [aux_sym_function_definition_repeat1] = STATE(313), + [anon_sym_struct] = ACTIONS(1687), + [sym_auto] = ACTIONS(1687), + [anon_sym_signed] = ACTIONS(1687), + [anon_sym_mutable] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym__Atomic] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_COLON_COLON] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1687), + [anon_sym_constexpr] = ACTIONS(1687), + [sym_primitive_type] = ACTIONS(1687), + [anon_sym_unsigned] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_volatile] = ACTIONS(1687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1691), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_typename] = ACTIONS(1687), + [anon_sym_explicit] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [anon_sym_inline] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1687), + [anon_sym_restrict] = ACTIONS(1687), + }, + [314] = { + [sym_template_function] = STATE(923), + [sym_destructor_name] = STATE(923), + [sym_pointer_declarator] = STATE(923), + [sym_structured_binding_declarator] = STATE(923), + [sym__declarator] = STATE(923), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(923), + [sym_array_declarator] = STATE(923), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(924), + [sym_function_declarator] = STATE(923), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + }, + [315] = { + [sym_abstract_reference_declarator] = STATE(933), + [sym_macro_type_specifier] = STATE(928), + [sym_abstract_array_declarator] = STATE(933), + [sym__type_specifier] = STATE(928), + [sym_sized_type_specifier] = STATE(928), + [sym_class_specifier] = STATE(928), + [aux_sym_sized_type_specifier_repeat1] = STATE(929), + [sym_parameter_declaration] = STATE(925), + [sym_scoped_type_identifier] = STATE(90), + [sym_optional_parameter_declaration] = STATE(925), + [sym_abstract_pointer_declarator] = STATE(933), + [sym_template_type] = STATE(91), + [aux_sym_function_definition_repeat1] = STATE(930), + [sym_storage_class_specifier] = STATE(931), + [sym_dependent_type] = STATE(928), + [sym_struct_specifier] = STATE(928), + [sym_union_specifier] = STATE(928), + [sym_type_qualifier] = STATE(931), + [sym_parameter_list] = STATE(590), + [sym_variadic_parameter_declaration] = STATE(925), + [aux_sym__declaration_specifiers_repeat1] = STATE(931), + [sym_abstract_function_declarator] = STATE(933), + [sym_enum_specifier] = STATE(928), + [sym_attribute] = STATE(930), + [sym__declaration_specifiers] = STATE(932), + [sym_scoped_namespace_identifier] = STATE(92), + [sym__abstract_declarator] = STATE(933), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(1696), + [anon_sym_signed] = ACTIONS(1698), [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(1698), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1675), [anon_sym_extern] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(1696), + [anon_sym_unsigned] = ACTIONS(1698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1076), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1706), [anon_sym_restrict] = ACTIONS(11), }, - [313] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(313), - [sym_storage_class_specifier] = STATE(313), - [sym_type_qualifier] = STATE(313), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1681), - [sym_auto] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_typename] = ACTIONS(1681), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1681), - [sym_identifier] = ACTIONS(1681), - [sym_operator_name] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_class] = ACTIONS(1681), - [anon_sym_constexpr] = ACTIONS(1683), - [sym_primitive_type] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym_restrict] = ACTIONS(1683), - }, - [314] = { - [anon_sym_COLON_COLON] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - }, - [315] = { - [sym_compound_statement] = STATE(927), - [sym_field_initializer_list] = STATE(928), - [sym_default_method_clause] = STATE(927), - [sym_delete_method_clause] = STATE(927), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - }, [316] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_RBRACK_RBRACK] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_COLON] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(785), - [anon_sym_DASH_DASH] = ACTIONS(785), + [sym_abstract_reference_declarator] = STATE(935), + [sym_abstract_array_declarator] = STATE(935), + [sym_abstract_pointer_declarator] = STATE(935), + [sym_parameter_list] = STATE(934), + [sym_abstract_function_declarator] = STATE(935), + [sym__abstract_declarator] = STATE(935), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(544), + [sym_comment] = ACTIONS(3), }, [317] = { - [sym_scoped_field_identifier] = STATE(931), - [sym_template_type] = STATE(932), - [sym_scoped_namespace_identifier] = STATE(932), - [sym_scoped_type_identifier] = STATE(174), - [sym_field_initializer] = STATE(933), - [anon_sym_COLON_COLON] = ACTIONS(1689), - [sym_identifier] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), + [sym_template_function] = STATE(949), + [sym__expression] = STATE(949), + [sym_logical_expression] = STATE(949), + [sym_bitwise_expression] = STATE(949), + [sym_cast_expression] = STATE(949), + [sym_delete_expression] = STATE(949), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(949), + [sym_lambda_expression] = STATE(949), + [sym_char_literal] = STATE(949), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_type_qualifier] = STATE(952), + [sym_conditional_expression] = STATE(949), + [sym_equality_expression] = STATE(949), + [sym_relational_expression] = STATE(949), + [sym_sizeof_expression] = STATE(949), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(949), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(952), + [sym_concatenated_string] = STATE(949), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(949), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(949), + [sym_math_expression] = STATE(949), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(949), + [sym_raw_string_literal] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(1714), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(1714), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1714), + [sym_nullptr] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(1738), }, [318] = { - [anon_sym_default] = ACTIONS(1693), - [anon_sym_delete] = ACTIONS(1695), + [sym_abstract_reference_declarator] = STATE(935), + [aux_sym_type_definition_repeat1] = STATE(953), + [sym_abstract_array_declarator] = STATE(935), + [sym_parameter_list] = STATE(934), + [sym_abstract_function_declarator] = STATE(935), + [sym_abstract_pointer_declarator] = STATE(935), + [sym_type_qualifier] = STATE(953), + [sym__abstract_declarator] = STATE(935), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, [319] = { - [anon_sym_DASH] = ACTIONS(1697), - [sym_raw_string_literal] = ACTIONS(1699), - [sym_true] = ACTIONS(1697), - [anon_sym_mutable] = ACTIONS(1697), - [sym_null] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_sizeof] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_explicit] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [sym_number_literal] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1697), - [aux_sym_preproc_if_token1] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_typename] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_goto] = ACTIONS(1697), - [sym_operator_name] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [aux_sym_preproc_include_token1] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [sym_false] = ACTIONS(1697), - [sym_nullptr] = ACTIONS(1697), - [anon_sym_do] = ACTIONS(1697), - [anon_sym_template] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [ts_builtin_sym_end] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1697), + [aux_sym_abstract_function_declarator_repeat1] = STATE(955), + [sym_type_qualifier] = STATE(955), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(1742), + [anon_sym_volatile] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1070), }, [320] = { - [sym_compound_statement] = STATE(927), - [sym_delete_method_clause] = STATE(927), - [sym_default_method_clause] = STATE(927), - [anon_sym_EQ] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(43), + [sym_compound_statement] = STATE(957), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, [321] = { - [sym_string_literal] = STATE(936), - [aux_sym_concatenated_string_repeat1] = STATE(936), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [sym_parameter_list] = STATE(959), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), }, [322] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(937), - [sym_storage_class_specifier] = STATE(937), - [sym_type_qualifier] = STATE(937), - [anon_sym_LPAREN2] = ACTIONS(1675), + [sym_destructor_name] = STATE(960), + [sym_identifier] = ACTIONS(1750), + [sym_operator_name] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [323] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_field_identifier] = STATE(964), + [sym_template_type] = STATE(965), + [sym_field_initializer] = STATE(966), + [sym_scoped_namespace_identifier] = STATE(965), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [sym_comment] = ACTIONS(3), + }, + [324] = { + [anon_sym_default] = ACTIONS(1758), + [anon_sym_delete] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [325] = { + [anon_sym_DASH] = ACTIONS(1762), + [sym_raw_string_literal] = ACTIONS(1764), + [sym_true] = ACTIONS(1762), + [anon_sym_mutable] = ACTIONS(1762), + [sym_null] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_sizeof] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1762), + [anon_sym_switch] = ACTIONS(1762), + [anon_sym_explicit] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_delete] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [sym_number_literal] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1764), + [anon_sym_namespace] = ACTIONS(1762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1762), + [sym_auto] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1762), + [anon_sym_long] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_using] = ACTIONS(1762), + [sym_preproc_directive] = ACTIONS(1762), + [aux_sym_preproc_if_token1] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_typename] = ACTIONS(1762), + [anon_sym_short] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_goto] = ACTIONS(1762), + [sym_operator_name] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [aux_sym_preproc_include_token1] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [sym_primitive_type] = ACTIONS(1762), + [sym_false] = ACTIONS(1762), + [sym_nullptr] = ACTIONS(1762), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_template] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [ts_builtin_sym_end] = ACTIONS(1764), + [aux_sym_preproc_def_token1] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_restrict] = ACTIONS(1762), + }, + [326] = { + [sym_compound_statement] = STATE(969), + [sym_default_method_clause] = STATE(969), + [sym_delete_method_clause] = STATE(969), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + }, + [327] = { + [sym_string_literal] = STATE(970), + [aux_sym_concatenated_string_repeat1] = STATE(970), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), + }, + [328] = { + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_mutable] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_final] = ACTIONS(1772), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_volatile] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1772), + [anon_sym_explicit] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_override] = ACTIONS(1772), + [sym_operator_name] = ACTIONS(1770), + [sym_noexcept] = ACTIONS(1772), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_register] = ACTIONS(1772), + [anon_sym__Atomic] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_constexpr] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_inline] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_restrict] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + }, + [329] = { + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_mutable] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_COLON_COLON] = ACTIONS(1774), + [anon_sym_final] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_volatile] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1776), + [anon_sym_explicit] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_override] = ACTIONS(1776), + [sym_operator_name] = ACTIONS(1774), + [sym_noexcept] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_register] = ACTIONS(1776), + [anon_sym__Atomic] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_inline] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1776), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1774), + }, + [330] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(330), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_register] = ACTIONS(1783), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1783), + [sym_operator_name] = ACTIONS(1778), + }, + [331] = { + [sym_storage_class_specifier] = STATE(971), + [sym_type_qualifier] = STATE(971), + [aux_sym__declaration_specifiers_repeat1] = STATE(971), + [anon_sym_LPAREN2] = ACTIONS(1785), [anon_sym_mutable] = ACTIONS(11), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(1785), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1787), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(1675), + [sym_operator_name] = ACTIONS(1785), [anon_sym_restrict] = ACTIONS(11), }, - [323] = { - [sym_destructor_name] = STATE(938), - [sym_identifier] = ACTIONS(1705), - [sym_operator_name] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(308), + [332] = { + [sym_destructor_name] = STATE(167), + [sym_identifier] = ACTIONS(1789), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, - [324] = { - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_COLON] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_PERCENT] = ACTIONS(1709), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_DASH_GT] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1709), + [333] = { + [sym_template_argument_list] = STATE(974), + [anon_sym_LPAREN2] = ACTIONS(1570), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_mutable] = ACTIONS(169), + [anon_sym_COMMA] = ACTIONS(185), + [anon_sym_register] = ACTIONS(169), + [anon_sym__Atomic] = ACTIONS(169), + [anon_sym_const] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_COLON_COLON] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_constexpr] = ACTIONS(169), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_static] = ACTIONS(169), + [anon_sym_volatile] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_explicit] = ACTIONS(169), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_inline] = ACTIONS(169), + [sym_identifier] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(169), + [sym_operator_name] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(1570), }, - [325] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(940), - [sym_logical_expression] = STATE(940), - [sym_bitwise_expression] = STATE(940), - [sym_cast_expression] = STATE(940), - [sym_new_expression] = STATE(940), + [334] = { + [sym_storage_class_specifier] = STATE(975), + [sym_type_qualifier] = STATE(975), + [aux_sym__declaration_specifiers_repeat1] = STATE(975), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(63), + [sym_operator_name] = ACTIONS(1785), + [anon_sym_restrict] = ACTIONS(11), + }, + [335] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + }, + [336] = { + [sym_storage_class_specifier] = STATE(336), + [sym_type_qualifier] = STATE(336), + [aux_sym__declaration_specifiers_repeat1] = STATE(336), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1797), + [sym_auto] = ACTIONS(1797), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_mutable] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_union] = ACTIONS(1797), + [anon_sym_typename] = ACTIONS(1797), + [anon_sym_explicit] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1797), + [sym_operator_name] = ACTIONS(1795), + [anon_sym_register] = ACTIONS(1802), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_constexpr] = ACTIONS(1799), + [sym_primitive_type] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_restrict] = ACTIONS(1799), + }, + [337] = { + [anon_sym_COLON_COLON] = ACTIONS(1793), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [sym_compound_statement] = STATE(969), + [sym_field_initializer_list] = STATE(977), + [sym_delete_method_clause] = STATE(969), + [sym_default_method_clause] = STATE(969), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [sym_template_function] = STATE(978), + [sym__expression] = STATE(978), + [sym_logical_expression] = STATE(978), + [sym_bitwise_expression] = STATE(978), + [sym_cast_expression] = STATE(978), + [sym_delete_expression] = STATE(978), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(940), - [sym_char_literal] = STATE(940), - [sym_template_function] = STATE(940), - [sym_conditional_expression] = STATE(940), - [sym_equality_expression] = STATE(940), - [sym_relational_expression] = STATE(940), - [sym_delete_expression] = STATE(940), - [sym_sizeof_expression] = STATE(940), - [sym_parenthesized_expression] = STATE(940), - [sym_lambda_expression] = STATE(940), - [sym_concatenated_string] = STATE(940), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(978), + [sym_lambda_expression] = STATE(978), + [sym_char_literal] = STATE(978), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(978), + [sym_equality_expression] = STATE(978), + [sym_relational_expression] = STATE(978), + [sym_sizeof_expression] = STATE(978), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(940), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(978), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(978), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(978), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(940), - [sym_math_expression] = STATE(940), + [sym_shift_expression] = STATE(978), + [sym_math_expression] = STATE(978), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1713), + [sym_new_expression] = STATE(978), + [sym_raw_string_literal] = ACTIONS(1805), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1715), - [sym_null] = ACTIONS(1715), + [sym_true] = ACTIONS(1807), + [sym_null] = ACTIONS(1807), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1713), + [sym_number_literal] = ACTIONS(1805), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1715), + [sym_false] = ACTIONS(1807), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1715), + [sym_nullptr] = ACTIONS(1807), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -25919,49 +26316,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [326] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(941), - [sym_logical_expression] = STATE(941), - [sym_bitwise_expression] = STATE(941), - [sym_cast_expression] = STATE(941), - [sym_new_expression] = STATE(941), + [340] = { + [sym_template_function] = STATE(979), + [sym__expression] = STATE(979), + [sym_logical_expression] = STATE(979), + [sym_bitwise_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_delete_expression] = STATE(979), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(941), - [sym_char_literal] = STATE(941), - [sym_template_function] = STATE(941), - [sym_conditional_expression] = STATE(941), - [sym_equality_expression] = STATE(941), - [sym_relational_expression] = STATE(941), - [sym_delete_expression] = STATE(941), - [sym_sizeof_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(941), - [sym_lambda_expression] = STATE(941), - [sym_concatenated_string] = STATE(941), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(979), + [sym_lambda_expression] = STATE(979), + [sym_char_literal] = STATE(979), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(941), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(979), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(979), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(979), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(941), - [sym_math_expression] = STATE(941), + [sym_shift_expression] = STATE(979), + [sym_math_expression] = STATE(979), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1717), + [sym_new_expression] = STATE(979), + [sym_raw_string_literal] = ACTIONS(1809), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), + [sym_true] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1809), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1719), + [sym_false] = ACTIONS(1811), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1719), + [sym_nullptr] = ACTIONS(1811), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -25974,49 +26371,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [327] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(942), - [sym_logical_expression] = STATE(942), - [sym_bitwise_expression] = STATE(942), - [sym_cast_expression] = STATE(942), - [sym_new_expression] = STATE(942), + [341] = { + [sym_template_function] = STATE(980), + [sym__expression] = STATE(980), + [sym_logical_expression] = STATE(980), + [sym_bitwise_expression] = STATE(980), + [sym_cast_expression] = STATE(980), + [sym_delete_expression] = STATE(980), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(942), - [sym_char_literal] = STATE(942), - [sym_template_function] = STATE(942), - [sym_conditional_expression] = STATE(942), - [sym_equality_expression] = STATE(942), - [sym_relational_expression] = STATE(942), - [sym_delete_expression] = STATE(942), - [sym_sizeof_expression] = STATE(942), - [sym_parenthesized_expression] = STATE(942), - [sym_lambda_expression] = STATE(942), - [sym_concatenated_string] = STATE(942), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(980), + [sym_lambda_expression] = STATE(980), + [sym_char_literal] = STATE(980), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(980), + [sym_equality_expression] = STATE(980), + [sym_relational_expression] = STATE(980), + [sym_sizeof_expression] = STATE(980), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(942), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(980), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(980), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(980), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(942), - [sym_math_expression] = STATE(942), + [sym_shift_expression] = STATE(980), + [sym_math_expression] = STATE(980), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1721), + [sym_new_expression] = STATE(980), + [sym_raw_string_literal] = ACTIONS(1813), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1723), - [sym_null] = ACTIONS(1723), + [sym_true] = ACTIONS(1815), + [sym_null] = ACTIONS(1815), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1721), + [sym_number_literal] = ACTIONS(1813), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1723), + [sym_false] = ACTIONS(1815), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1723), + [sym_nullptr] = ACTIONS(1815), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -26029,50 +26426,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [328] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(943), - [sym_logical_expression] = STATE(943), - [sym_bitwise_expression] = STATE(943), - [sym_cast_expression] = STATE(943), - [sym_new_expression] = STATE(943), + [342] = { + [sym_template_function] = STATE(981), + [sym__expression] = STATE(981), + [sym_logical_expression] = STATE(981), + [sym_bitwise_expression] = STATE(981), + [sym_cast_expression] = STATE(981), + [sym_delete_expression] = STATE(981), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(943), - [sym_char_literal] = STATE(943), - [sym_comma_expression] = STATE(944), - [sym_template_function] = STATE(943), - [sym_conditional_expression] = STATE(943), - [sym_equality_expression] = STATE(943), - [sym_delete_expression] = STATE(943), - [sym_relational_expression] = STATE(943), - [sym_parenthesized_expression] = STATE(943), - [sym_sizeof_expression] = STATE(943), - [sym_concatenated_string] = STATE(943), - [sym_string_literal] = STATE(52), - [sym_lambda_expression] = STATE(943), + [sym_compound_literal_expression] = STATE(981), + [sym_lambda_expression] = STATE(981), + [sym_char_literal] = STATE(981), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_comma_expression] = STATE(982), + [sym_conditional_expression] = STATE(981), + [sym_equality_expression] = STATE(981), + [sym_relational_expression] = STATE(981), + [sym_sizeof_expression] = STATE(981), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(943), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(981), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(981), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(981), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(943), - [sym_math_expression] = STATE(943), + [sym_shift_expression] = STATE(981), + [sym_math_expression] = STATE(981), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1725), + [sym_new_expression] = STATE(981), + [sym_raw_string_literal] = ACTIONS(1817), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1727), - [sym_null] = ACTIONS(1727), + [sym_true] = ACTIONS(1819), + [sym_null] = ACTIONS(1819), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1725), + [sym_number_literal] = ACTIONS(1817), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1727), + [sym_false] = ACTIONS(1819), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1819), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -26085,49 +26482,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [329] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(945), - [sym_logical_expression] = STATE(945), - [sym_bitwise_expression] = STATE(945), - [sym_cast_expression] = STATE(945), - [sym_new_expression] = STATE(945), + [343] = { + [sym_template_function] = STATE(983), + [sym__expression] = STATE(983), + [sym_logical_expression] = STATE(983), + [sym_bitwise_expression] = STATE(983), + [sym_cast_expression] = STATE(983), + [sym_delete_expression] = STATE(983), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(945), - [sym_char_literal] = STATE(945), - [sym_template_function] = STATE(945), - [sym_conditional_expression] = STATE(945), - [sym_equality_expression] = STATE(945), - [sym_relational_expression] = STATE(945), - [sym_delete_expression] = STATE(945), - [sym_sizeof_expression] = STATE(945), - [sym_parenthesized_expression] = STATE(945), - [sym_lambda_expression] = STATE(945), - [sym_concatenated_string] = STATE(945), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(983), + [sym_lambda_expression] = STATE(983), + [sym_char_literal] = STATE(983), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(983), + [sym_equality_expression] = STATE(983), + [sym_relational_expression] = STATE(983), + [sym_sizeof_expression] = STATE(983), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(945), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(983), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(983), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(983), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(945), - [sym_math_expression] = STATE(945), + [sym_shift_expression] = STATE(983), + [sym_math_expression] = STATE(983), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1729), + [sym_new_expression] = STATE(983), + [sym_raw_string_literal] = ACTIONS(1821), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1731), - [sym_null] = ACTIONS(1731), + [sym_true] = ACTIONS(1823), + [sym_null] = ACTIONS(1823), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1729), + [sym_number_literal] = ACTIONS(1821), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1731), + [sym_false] = ACTIONS(1823), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1731), + [sym_nullptr] = ACTIONS(1823), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -26140,61 +26537,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [330] = { - [sym_scoped_field_identifier] = STATE(948), - [sym_template_type] = STATE(949), - [sym_template_method] = STATE(950), - [sym_scoped_namespace_identifier] = STATE(949), - [sym_scoped_type_identifier] = STATE(174), - [sym_destructor_name] = STATE(950), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1214), + [344] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_destructor_name] = STATE(986), + [sym_scoped_field_identifier] = STATE(987), + [sym_template_type] = STATE(988), + [sym_template_method] = STATE(986), + [sym_scoped_namespace_identifier] = STATE(988), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1220), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(951), - [sym_logical_expression] = STATE(951), - [sym_bitwise_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_new_expression] = STATE(951), + [345] = { + [sym_template_function] = STATE(989), + [sym__expression] = STATE(989), + [sym_logical_expression] = STATE(989), + [sym_bitwise_expression] = STATE(989), + [sym_cast_expression] = STATE(989), + [sym_delete_expression] = STATE(989), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_template_function] = STATE(951), - [sym_conditional_expression] = STATE(951), - [sym_equality_expression] = STATE(951), - [sym_relational_expression] = STATE(951), - [sym_delete_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_parenthesized_expression] = STATE(951), - [sym_lambda_expression] = STATE(951), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(989), + [sym_lambda_expression] = STATE(989), + [sym_char_literal] = STATE(989), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(989), + [sym_equality_expression] = STATE(989), + [sym_relational_expression] = STATE(989), + [sym_sizeof_expression] = STATE(989), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(951), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(989), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(989), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(989), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(951), - [sym_math_expression] = STATE(951), + [sym_shift_expression] = STATE(989), + [sym_math_expression] = STATE(989), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1737), + [sym_new_expression] = STATE(989), + [sym_raw_string_literal] = ACTIONS(1829), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), + [sym_true] = ACTIONS(1831), + [sym_null] = ACTIONS(1831), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1737), + [sym_number_literal] = ACTIONS(1829), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1739), + [sym_false] = ACTIONS(1831), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1739), + [sym_nullptr] = ACTIONS(1831), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -26207,49 +26604,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [332] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(952), - [sym_logical_expression] = STATE(952), - [sym_bitwise_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_new_expression] = STATE(952), + [346] = { + [sym_template_function] = STATE(990), + [sym__expression] = STATE(990), + [sym_logical_expression] = STATE(990), + [sym_bitwise_expression] = STATE(990), + [sym_cast_expression] = STATE(990), + [sym_delete_expression] = STATE(990), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(952), - [sym_char_literal] = STATE(952), - [sym_template_function] = STATE(952), - [sym_conditional_expression] = STATE(952), - [sym_equality_expression] = STATE(952), - [sym_relational_expression] = STATE(952), - [sym_delete_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(952), - [sym_lambda_expression] = STATE(952), - [sym_concatenated_string] = STATE(952), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(990), + [sym_lambda_expression] = STATE(990), + [sym_char_literal] = STATE(990), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(990), + [sym_equality_expression] = STATE(990), + [sym_relational_expression] = STATE(990), + [sym_sizeof_expression] = STATE(990), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(952), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(990), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(990), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(990), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(952), - [sym_math_expression] = STATE(952), + [sym_shift_expression] = STATE(990), + [sym_math_expression] = STATE(990), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1741), + [sym_new_expression] = STATE(990), + [sym_raw_string_literal] = ACTIONS(1833), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), + [sym_true] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1741), + [sym_number_literal] = ACTIONS(1833), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1743), + [sym_false] = ACTIONS(1835), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1743), + [sym_nullptr] = ACTIONS(1835), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -26262,49 +26659,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [333] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(953), - [sym_logical_expression] = STATE(953), - [sym_bitwise_expression] = STATE(953), - [sym_cast_expression] = STATE(953), - [sym_new_expression] = STATE(953), + [347] = { + [sym_template_function] = STATE(991), + [sym__expression] = STATE(991), + [sym_logical_expression] = STATE(991), + [sym_bitwise_expression] = STATE(991), + [sym_cast_expression] = STATE(991), + [sym_delete_expression] = STATE(991), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(953), - [sym_char_literal] = STATE(953), - [sym_template_function] = STATE(953), - [sym_conditional_expression] = STATE(953), - [sym_equality_expression] = STATE(953), - [sym_relational_expression] = STATE(953), - [sym_delete_expression] = STATE(953), - [sym_sizeof_expression] = STATE(953), - [sym_parenthesized_expression] = STATE(953), - [sym_lambda_expression] = STATE(953), - [sym_concatenated_string] = STATE(953), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(991), + [sym_lambda_expression] = STATE(991), + [sym_char_literal] = STATE(991), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(991), + [sym_equality_expression] = STATE(991), + [sym_relational_expression] = STATE(991), + [sym_sizeof_expression] = STATE(991), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(953), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(991), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(991), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(991), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(953), - [sym_math_expression] = STATE(953), + [sym_shift_expression] = STATE(991), + [sym_math_expression] = STATE(991), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1745), + [sym_new_expression] = STATE(991), + [sym_raw_string_literal] = ACTIONS(1837), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1747), - [sym_null] = ACTIONS(1747), + [sym_true] = ACTIONS(1839), + [sym_null] = ACTIONS(1839), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1745), + [sym_number_literal] = ACTIONS(1837), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1747), + [sym_false] = ACTIONS(1839), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1747), + [sym_nullptr] = ACTIONS(1839), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -26317,49 +26714,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [334] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(954), - [sym_logical_expression] = STATE(954), - [sym_bitwise_expression] = STATE(954), - [sym_cast_expression] = STATE(954), - [sym_new_expression] = STATE(954), + [348] = { + [sym_template_function] = STATE(992), + [sym__expression] = STATE(992), + [sym_logical_expression] = STATE(992), + [sym_bitwise_expression] = STATE(992), + [sym_cast_expression] = STATE(992), + [sym_delete_expression] = STATE(992), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(954), - [sym_char_literal] = STATE(954), - [sym_template_function] = STATE(954), - [sym_conditional_expression] = STATE(954), - [sym_equality_expression] = STATE(954), - [sym_relational_expression] = STATE(954), - [sym_delete_expression] = STATE(954), - [sym_sizeof_expression] = STATE(954), - [sym_parenthesized_expression] = STATE(954), - [sym_lambda_expression] = STATE(954), - [sym_concatenated_string] = STATE(954), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(992), + [sym_lambda_expression] = STATE(992), + [sym_char_literal] = STATE(992), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(992), + [sym_equality_expression] = STATE(992), + [sym_relational_expression] = STATE(992), + [sym_sizeof_expression] = STATE(992), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(954), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(992), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(992), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(992), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(954), - [sym_math_expression] = STATE(954), + [sym_shift_expression] = STATE(992), + [sym_math_expression] = STATE(992), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1749), + [sym_new_expression] = STATE(992), + [sym_raw_string_literal] = ACTIONS(1841), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1751), - [sym_null] = ACTIONS(1751), + [sym_true] = ACTIONS(1843), + [sym_null] = ACTIONS(1843), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1749), + [sym_number_literal] = ACTIONS(1841), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1751), + [sym_false] = ACTIONS(1843), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1751), + [sym_nullptr] = ACTIONS(1843), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -26372,104 +26769,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [335] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(965), - [sym_logical_expression] = STATE(965), - [sym_bitwise_expression] = STATE(965), - [sym_cast_expression] = STATE(965), - [sym_new_expression] = STATE(965), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(965), - [sym_char_literal] = STATE(965), - [sym_template_function] = STATE(965), - [sym_conditional_expression] = STATE(965), - [sym_equality_expression] = STATE(965), - [sym_relational_expression] = STATE(965), - [sym_delete_expression] = STATE(965), - [sym_sizeof_expression] = STATE(965), - [sym_parenthesized_expression] = STATE(965), - [sym_lambda_expression] = STATE(965), - [sym_concatenated_string] = STATE(965), - [sym_string_literal] = STATE(967), + [349] = { + [sym_template_function] = STATE(993), + [sym__expression] = STATE(993), + [sym_logical_expression] = STATE(993), + [sym_bitwise_expression] = STATE(993), + [sym_cast_expression] = STATE(993), + [sym_delete_expression] = STATE(993), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(993), + [sym_lambda_expression] = STATE(993), + [sym_char_literal] = STATE(993), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(965), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(965), - [sym_math_expression] = STATE(965), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(993), + [sym_equality_expression] = STATE(993), + [sym_relational_expression] = STATE(993), + [sym_sizeof_expression] = STATE(993), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(1753), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(993), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(993), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(993), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(993), + [sym_math_expression] = STATE(993), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(993), + [sym_raw_string_literal] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(1847), + [sym_null] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(1845), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [336] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(968), - [sym_logical_expression] = STATE(968), - [sym_bitwise_expression] = STATE(968), - [sym_cast_expression] = STATE(968), - [sym_new_expression] = STATE(968), + [350] = { + [sym_template_function] = STATE(994), + [sym__expression] = STATE(994), + [sym_logical_expression] = STATE(994), + [sym_bitwise_expression] = STATE(994), + [sym_cast_expression] = STATE(994), + [sym_delete_expression] = STATE(994), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(968), - [sym_char_literal] = STATE(968), - [sym_template_function] = STATE(968), - [sym_conditional_expression] = STATE(968), - [sym_equality_expression] = STATE(968), - [sym_relational_expression] = STATE(968), - [sym_delete_expression] = STATE(968), - [sym_sizeof_expression] = STATE(968), - [sym_parenthesized_expression] = STATE(968), - [sym_lambda_expression] = STATE(968), - [sym_concatenated_string] = STATE(968), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(994), + [sym_lambda_expression] = STATE(994), + [sym_char_literal] = STATE(994), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(994), + [sym_equality_expression] = STATE(994), + [sym_relational_expression] = STATE(994), + [sym_sizeof_expression] = STATE(994), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(968), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(994), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(994), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(994), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(968), - [sym_math_expression] = STATE(968), + [sym_shift_expression] = STATE(994), + [sym_math_expression] = STATE(994), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1779), + [sym_new_expression] = STATE(994), + [sym_raw_string_literal] = ACTIONS(1849), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1781), - [sym_null] = ACTIONS(1781), + [sym_true] = ACTIONS(1851), + [sym_null] = ACTIONS(1851), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1779), + [sym_number_literal] = ACTIONS(1849), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1781), + [sym_false] = ACTIONS(1851), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1781), + [sym_nullptr] = ACTIONS(1851), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -26482,180 +26879,180 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [337] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(979), - [sym_logical_expression] = STATE(979), - [sym_bitwise_expression] = STATE(979), - [sym_cast_expression] = STATE(979), - [sym_new_expression] = STATE(979), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(979), - [sym_char_literal] = STATE(979), - [sym_template_function] = STATE(979), - [sym_conditional_expression] = STATE(979), - [sym_equality_expression] = STATE(979), - [sym_relational_expression] = STATE(979), - [sym_delete_expression] = STATE(979), - [sym_sizeof_expression] = STATE(979), - [sym_parenthesized_expression] = STATE(979), - [sym_lambda_expression] = STATE(979), - [sym_concatenated_string] = STATE(979), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(979), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(979), - [sym_math_expression] = STATE(979), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(1789), - [sym_null] = ACTIONS(1789), + [351] = { + [sym_template_function] = STATE(1005), + [sym__expression] = STATE(1005), + [sym_logical_expression] = STATE(1005), + [sym_bitwise_expression] = STATE(1005), + [sym_cast_expression] = STATE(1005), + [sym_delete_expression] = STATE(1005), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(1005), + [sym_lambda_expression] = STATE(1005), + [sym_char_literal] = STATE(1005), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1005), + [sym_equality_expression] = STATE(1005), + [sym_relational_expression] = STATE(1005), + [sym_sizeof_expression] = STATE(1005), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1005), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(1005), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1005), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(1005), + [sym_math_expression] = STATE(1005), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1005), + [sym_raw_string_literal] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(1859), + [sym_null] = ACTIONS(1859), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1783), - [anon_sym_COLON_COLON] = ACTIONS(1791), + [sym_number_literal] = ACTIONS(1853), + [anon_sym_COLON_COLON] = ACTIONS(1861), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [338] = { - [anon_sym_DASH] = ACTIONS(1809), - [sym_raw_string_literal] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [anon_sym_mutable] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_sizeof] = ACTIONS(1809), - [anon_sym_volatile] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_typedef] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_explicit] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1809), - [anon_sym__Atomic] = ACTIONS(1809), - [sym_number_literal] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_constexpr] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1809), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1809), - [sym_auto] = ACTIONS(1809), - [anon_sym_signed] = ACTIONS(1809), - [anon_sym_long] = ACTIONS(1809), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1809), - [sym_preproc_directive] = ACTIONS(1809), - [aux_sym_preproc_if_token1] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_typename] = ACTIONS(1809), - [anon_sym_short] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [sym_operator_name] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [aux_sym_preproc_include_token1] = ACTIONS(1809), - [anon_sym_register] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [sym_primitive_type] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nullptr] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_template] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1811), - [ts_builtin_sym_end] = ACTIONS(1811), - [aux_sym_preproc_def_token1] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1811), - [anon_sym_inline] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_restrict] = ACTIONS(1809), + [352] = { + [anon_sym_DASH] = ACTIONS(1879), + [sym_raw_string_literal] = ACTIONS(1881), + [anon_sym_else] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [sym_null] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_sizeof] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [sym_number_literal] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), + [anon_sym_namespace] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1879), + [sym_auto] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1881), + [anon_sym_using] = ACTIONS(1879), + [sym_preproc_directive] = ACTIONS(1879), + [aux_sym_preproc_if_token1] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [sym_operator_name] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [aux_sym_preproc_include_token1] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nullptr] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(1881), + [aux_sym_preproc_def_token1] = ACTIONS(1879), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_restrict] = ACTIONS(1879), }, - [339] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(983), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(983), - [sym_cast_expression] = STATE(983), - [sym_new_expression] = STATE(983), + [353] = { + [sym_template_function] = STATE(1009), + [sym__expression] = STATE(1009), + [sym_logical_expression] = STATE(1009), + [sym_bitwise_expression] = STATE(1009), + [sym_cast_expression] = STATE(1009), + [sym_delete_expression] = STATE(1009), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(983), - [sym_char_literal] = STATE(983), - [sym_template_function] = STATE(983), - [sym_conditional_expression] = STATE(983), - [sym_equality_expression] = STATE(983), - [sym_relational_expression] = STATE(983), - [sym_delete_expression] = STATE(983), - [sym_sizeof_expression] = STATE(983), - [sym_parenthesized_expression] = STATE(983), - [sym_lambda_expression] = STATE(983), - [sym_concatenated_string] = STATE(983), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(1009), + [sym_lambda_expression] = STATE(1009), + [sym_char_literal] = STATE(1009), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1009), + [sym_equality_expression] = STATE(1009), + [sym_relational_expression] = STATE(1009), + [sym_sizeof_expression] = STATE(1009), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(983), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1009), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(1009), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1009), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(983), - [sym_math_expression] = STATE(983), + [sym_shift_expression] = STATE(1009), + [sym_math_expression] = STATE(1009), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1813), + [sym_new_expression] = STATE(1009), + [sym_raw_string_literal] = ACTIONS(1883), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), + [sym_true] = ACTIONS(1885), + [sym_null] = ACTIONS(1885), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1813), + [sym_number_literal] = ACTIONS(1883), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(1815), + [sym_false] = ACTIONS(1885), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1815), + [sym_nullptr] = ACTIONS(1885), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -26668,112 +27065,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [340] = { - [anon_sym_LPAREN2] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_RBRACK_RBRACK] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_DASH_DASH] = ACTIONS(654), + [354] = { + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_RBRACK_RBRACK] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_COLON] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PERCENT] = ACTIONS(656), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(656), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), }, - [341] = { - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [anon_sym_STAR_EQ] = ACTIONS(1817), - [anon_sym_LT_LT_EQ] = ACTIONS(1817), - [anon_sym_PERCENT_EQ] = ACTIONS(1817), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_CARET_EQ] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_COLON] = ACTIONS(1817), - [anon_sym_SLASH_EQ] = ACTIONS(1817), - [anon_sym_PLUS_EQ] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1819), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_PIPE_EQ] = ACTIONS(1817), - [anon_sym_GT_GT_EQ] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1817), - [anon_sym_DASH_EQ] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_AMP_EQ] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_DASH_DASH] = ACTIONS(1817), + [355] = { + [anon_sym_LPAREN2] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_DASH_GT] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_STAR_EQ] = ACTIONS(1887), + [anon_sym_LT_LT_EQ] = ACTIONS(1887), + [anon_sym_PERCENT_EQ] = ACTIONS(1887), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_CARET_EQ] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_COLON] = ACTIONS(1887), + [anon_sym_SLASH_EQ] = ACTIONS(1887), + [anon_sym_PLUS_EQ] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_PIPE_EQ] = ACTIONS(1887), + [anon_sym_GT_GT_EQ] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1889), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_DASH_EQ] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_AMP_EQ] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1887), }, - [342] = { - [aux_sym_function_definition_repeat1] = STATE(987), - [sym_macro_type_specifier] = STATE(988), - [sym_class_specifier] = STATE(988), - [sym__type_specifier] = STATE(988), - [sym_sized_type_specifier] = STATE(988), - [sym_template_type] = STATE(86), - [sym_optional_parameter_declaration] = STATE(984), - [sym_parameter_declaration] = STATE(984), - [aux_sym__declaration_specifiers_repeat1] = STATE(989), - [sym_storage_class_specifier] = STATE(989), - [sym_dependent_type] = STATE(988), - [sym_struct_specifier] = STATE(988), - [sym_union_specifier] = STATE(988), - [sym_attribute] = STATE(987), - [sym_type_qualifier] = STATE(989), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(990), - [sym_enum_specifier] = STATE(988), - [sym_variadic_parameter_declaration] = STATE(984), - [sym__declaration_specifiers] = STATE(991), - [sym_scoped_type_identifier] = STATE(87), + [356] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_RBRACK_RBRACK] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + }, + [357] = { + [sym_macro_type_specifier] = STATE(928), + [sym_class_specifier] = STATE(928), + [sym__type_specifier] = STATE(928), + [sym_sized_type_specifier] = STATE(928), + [aux_sym_sized_type_specifier_repeat1] = STATE(929), + [sym_optional_parameter_declaration] = STATE(925), + [sym_parameter_declaration] = STATE(925), + [sym_scoped_type_identifier] = STATE(90), + [sym_variadic_parameter_declaration] = STATE(925), + [aux_sym_function_definition_repeat1] = STATE(930), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(931), + [sym_dependent_type] = STATE(928), + [sym_struct_specifier] = STATE(928), + [sym_union_specifier] = STATE(928), + [sym_type_qualifier] = STATE(931), + [aux_sym__declaration_specifiers_repeat1] = STATE(931), + [sym_enum_specifier] = STATE(928), + [sym_attribute] = STATE(930), + [sym__declaration_specifiers] = STATE(932), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1821), - [anon_sym_signed] = ACTIONS(1823), + [sym_auto] = ACTIONS(1696), + [anon_sym_signed] = ACTIONS(1698), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1823), + [anon_sym_long] = ACTIONS(1698), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -26782,929 +27215,476 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1821), - [anon_sym_unsigned] = ACTIONS(1823), + [sym_primitive_type] = ACTIONS(1696), + [anon_sym_unsigned] = ACTIONS(1698), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1700), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1827), + [anon_sym_typename] = ACTIONS(1702), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1823), + [anon_sym_short] = ACTIONS(1698), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1706), }, - [343] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(995), - [sym_logical_expression] = STATE(995), - [sym_bitwise_expression] = STATE(995), - [sym_cast_expression] = STATE(995), - [sym_new_expression] = STATE(995), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(995), - [sym_char_literal] = STATE(995), - [sym_type_qualifier] = STATE(996), - [sym_template_function] = STATE(995), - [sym_conditional_expression] = STATE(995), - [sym_equality_expression] = STATE(995), - [sym_relational_expression] = STATE(995), - [sym_delete_expression] = STATE(995), - [sym_sizeof_expression] = STATE(995), - [sym_parenthesized_expression] = STATE(995), - [sym_lambda_expression] = STATE(995), - [sym_concatenated_string] = STATE(995), - [sym_string_literal] = STATE(967), + [358] = { + [sym_template_function] = STATE(1012), + [sym__expression] = STATE(1012), + [sym_logical_expression] = STATE(1012), + [sym_bitwise_expression] = STATE(1012), + [sym_cast_expression] = STATE(1012), + [sym_delete_expression] = STATE(1012), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(1012), + [sym_lambda_expression] = STATE(1012), + [sym_char_literal] = STATE(1012), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(995), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(995), - [sym_math_expression] = STATE(995), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_type_qualifier] = STATE(1013), + [sym_conditional_expression] = STATE(1012), + [sym_equality_expression] = STATE(1012), + [sym_relational_expression] = STATE(1012), + [sym_sizeof_expression] = STATE(1012), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(996), - [sym_raw_string_literal] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(1833), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1833), - [sym_nullptr] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(1839), + [sym_parenthesized_expression] = STATE(1012), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(1013), + [sym_concatenated_string] = STATE(1012), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1012), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(1012), + [sym_math_expression] = STATE(1012), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(1012), + [sym_raw_string_literal] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(1893), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1893), + [sym_nullptr] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(1897), }, - [344] = { - [sym_virtual_specifier] = STATE(999), - [aux_sym_function_declarator_repeat1] = STATE(999), - [sym_trailing_return_type] = STATE(999), - [sym_type_qualifier] = STATE(999), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(1843), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(1841), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1841), + [359] = { + [sym_virtual_specifier] = STATE(1016), + [aux_sym_function_declarator_repeat1] = STATE(1016), + [sym_type_qualifier] = STATE(1016), + [sym_trailing_return_type] = STATE(1016), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(1901), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1899), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1899), }, - [345] = { - [sym_goto_statement] = STATE(345), - [sym_preproc_function_def] = STATE(345), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(345), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(345), - [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(345), - [sym_return_statement] = STATE(345), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), - [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(345), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(345), - [sym_break_statement] = STATE(345), - [sym_preproc_include] = STATE(345), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(345), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(345), - [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(345), - [sym_template_instantiation] = STATE(345), - [sym_constructor_or_destructor_definition] = STATE(345), - [sym_expression_statement] = STATE(345), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(345), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(345), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(345), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(345), - [aux_sym_translation_unit_repeat1] = STATE(345), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(345), - [sym_if_statement] = STATE(345), - [sym_for_statement] = STATE(345), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(345), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(345), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(345), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(345), - [sym_preproc_if] = STATE(345), - [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(345), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(345), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(345), - [sym_while_statement] = STATE(345), - [anon_sym_DASH] = ACTIONS(1853), - [sym_raw_string_literal] = ACTIONS(1856), - [sym_true] = ACTIONS(1859), - [anon_sym_mutable] = ACTIONS(1862), - [sym_null] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_typedef] = ACTIONS(1874), - [anon_sym_switch] = ACTIONS(1877), - [anon_sym_explicit] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1880), - [anon_sym_delete] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1889), - [anon_sym__Atomic] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym_namespace] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_LPAREN2] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1919), - [sym_auto] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1898), - [anon_sym_long] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(1928), - [sym_preproc_directive] = ACTIONS(1931), - [aux_sym_preproc_if_token1] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_typename] = ACTIONS(1949), - [anon_sym_short] = ACTIONS(1898), - [anon_sym_new] = ACTIONS(1952), - [anon_sym_goto] = ACTIONS(1955), - [sym_operator_name] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1967), - [aux_sym_preproc_include_token1] = ACTIONS(1970), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_class] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1982), - [sym_primitive_type] = ACTIONS(1922), - [sym_false] = ACTIONS(1859), - [sym_nullptr] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_template] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1997), - [ts_builtin_sym_end] = ACTIONS(2000), - [aux_sym_preproc_def_token1] = ACTIONS(2002), - [anon_sym_AMP_AMP] = ACTIONS(2005), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1862), - }, - [346] = { - [sym_reference_declarator] = STATE(1001), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(1001), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(1001), - [sym_destructor_name] = STATE(1001), - [sym__declarator] = STATE(1001), - [sym_array_declarator] = STATE(1001), - [sym_structured_binding_declarator] = STATE(1002), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(1001), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(605), - [sym_operator_name] = ACTIONS(2012), + [360] = { + [sym_template_function] = STATE(1017), + [sym_destructor_name] = STATE(1017), + [sym_pointer_declarator] = STATE(1017), + [sym_structured_binding_declarator] = STATE(1017), + [sym__declarator] = STATE(1017), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(1017), + [sym_array_declarator] = STATE(1017), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_function_declarator] = STATE(1017), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(1911), [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(1004), - [sym_pointer_declarator] = STATE(1004), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(1003), - [sym_template_function] = STATE(1004), - [sym_destructor_name] = STATE(1004), - [sym__declarator] = STATE(1004), - [sym_array_declarator] = STATE(1004), - [sym_scoped_identifier] = STATE(286), - [sym_type_qualifier] = STATE(1003), - [sym_function_declarator] = STATE(1004), - [anon_sym_LPAREN2] = ACTIONS(456), + [361] = { + [aux_sym_type_definition_repeat1] = STATE(1018), + [sym_template_function] = STATE(1019), + [sym_destructor_name] = STATE(1019), + [sym_pointer_declarator] = STATE(1019), + [sym_structured_binding_declarator] = STATE(1019), + [sym__declarator] = STATE(1019), + [sym_scoped_identifier] = STATE(282), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(1019), + [sym_array_declarator] = STATE(1019), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(1018), + [sym_function_declarator] = STATE(1019), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(620), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(2014), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [sym_operator_name] = ACTIONS(1913), [anon_sym_restrict] = ACTIONS(11), }, - [348] = { - [anon_sym_DASH] = ACTIONS(2016), - [sym_raw_string_literal] = ACTIONS(2018), - [sym_true] = ACTIONS(2016), - [anon_sym_mutable] = ACTIONS(2016), - [sym_null] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_sizeof] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2016), - [anon_sym_switch] = ACTIONS(2016), - [anon_sym_explicit] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2016), - [anon_sym_delete] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), - [anon_sym__Atomic] = ACTIONS(2016), - [sym_number_literal] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_constexpr] = ACTIONS(2016), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), - [anon_sym_namespace] = ACTIONS(2016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2016), - [sym_auto] = ACTIONS(2016), - [anon_sym_signed] = ACTIONS(2016), - [anon_sym_long] = ACTIONS(2016), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_using] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_typename] = ACTIONS(2016), - [anon_sym_short] = ACTIONS(2016), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_goto] = ACTIONS(2016), - [sym_operator_name] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [aux_sym_preproc_include_token1] = ACTIONS(2016), - [anon_sym_register] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_class] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [sym_primitive_type] = ACTIONS(2016), - [sym_false] = ACTIONS(2016), - [sym_nullptr] = ACTIONS(2016), - [anon_sym_do] = ACTIONS(2016), - [anon_sym_template] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2018), - [anon_sym_SEMI] = ACTIONS(2018), - [ts_builtin_sym_end] = ACTIONS(2018), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2016), - [anon_sym_PLUS_PLUS] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2016), - }, - [349] = { - [sym_template_argument_list] = STATE(1005), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_COLON] = ACTIONS(2020), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - }, - [350] = { - [sym_identifier] = ACTIONS(2022), - [sym_comment] = ACTIONS(3), - }, - [351] = { - [sym_argument_list] = STATE(1008), - [sym_initializer_list] = STATE(1008), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_EQ] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - }, - [352] = { - [sym_compound_statement] = STATE(1014), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(1017), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2034), - }, - [353] = { - [aux_sym_declaration_repeat1] = STATE(1017), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(2034), - }, - [354] = { - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_final] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_DASH_GT] = ACTIONS(2036), - [anon_sym_mutable] = ACTIONS(2038), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2036), - [anon_sym_EQ] = ACTIONS(2038), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_override] = ACTIONS(2038), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_COLON] = ACTIONS(2038), - [anon_sym_explicit] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2036), - [sym_operator_name] = ACTIONS(2036), - [sym_noexcept] = ACTIONS(2038), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2038), - [anon_sym_COMMA] = ACTIONS(2036), - [anon_sym_register] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(2038), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_constexpr] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2036), - [anon_sym_QMARK] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_LT_EQ] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_inline] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - }, - [355] = { - [sym_attribute] = STATE(355), - [aux_sym_function_definition_repeat1] = STATE(355), - [anon_sym_struct] = ACTIONS(2040), - [sym_auto] = ACTIONS(2040), - [anon_sym_signed] = ACTIONS(2040), - [anon_sym_mutable] = ACTIONS(2040), - [anon_sym_long] = ACTIONS(2040), - [anon_sym_register] = ACTIONS(2040), - [anon_sym__Atomic] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_constexpr] = ACTIONS(2040), - [sym_primitive_type] = ACTIONS(2040), - [anon_sym_unsigned] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_volatile] = ACTIONS(2040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_typename] = ACTIONS(2040), - [anon_sym_explicit] = ACTIONS(2040), - [anon_sym_short] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2040), - [anon_sym_restrict] = ACTIONS(2040), - }, - [356] = { - [sym_reference_declarator] = STATE(1018), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(1018), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(1018), - [sym_destructor_name] = STATE(1018), - [sym__declarator] = STATE(1018), - [sym_init_declarator] = STATE(1019), - [sym_array_declarator] = STATE(1018), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(1018), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(2047), - [sym_comment] = ACTIONS(3), - }, - [357] = { - [aux_sym_function_definition_repeat1] = STATE(987), - [sym_macro_type_specifier] = STATE(988), - [sym_abstract_array_declarator] = STATE(1020), - [sym__type_specifier] = STATE(988), - [sym_sized_type_specifier] = STATE(988), - [sym_class_specifier] = STATE(988), - [sym_template_type] = STATE(86), - [sym_parameter_declaration] = STATE(984), - [sym_optional_parameter_declaration] = STATE(984), - [sym_abstract_pointer_declarator] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(989), - [sym_storage_class_specifier] = STATE(989), - [sym_dependent_type] = STATE(988), - [sym_struct_specifier] = STATE(988), - [sym_union_specifier] = STATE(988), - [sym_attribute] = STATE(987), - [sym_parameter_list] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_type_qualifier] = STATE(989), - [sym_abstract_reference_declarator] = STATE(1020), - [sym_abstract_function_declarator] = STATE(1020), - [aux_sym_sized_type_specifier_repeat1] = STATE(990), - [sym_enum_specifier] = STATE(988), - [sym_variadic_parameter_declaration] = STATE(984), - [sym__declaration_specifiers] = STATE(991), - [sym__abstract_declarator] = STATE(1020), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1821), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1821), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_restrict] = ACTIONS(11), - }, - [358] = { - [sym_parameter_list] = STATE(1021), - [sym_abstract_array_declarator] = STATE(1022), - [sym_abstract_pointer_declarator] = STATE(1022), - [sym_abstract_reference_declarator] = STATE(1022), - [sym_abstract_function_declarator] = STATE(1022), - [sym__abstract_declarator] = STATE(1022), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - }, - [359] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1025), - [sym_logical_expression] = STATE(1025), - [sym_bitwise_expression] = STATE(1025), - [sym_cast_expression] = STATE(1025), - [sym_new_expression] = STATE(1025), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(1025), - [sym_char_literal] = STATE(1025), - [sym_type_qualifier] = STATE(1026), - [sym_template_function] = STATE(1025), - [sym_conditional_expression] = STATE(1025), - [sym_equality_expression] = STATE(1025), - [sym_relational_expression] = STATE(1025), - [sym_delete_expression] = STATE(1025), - [sym_sizeof_expression] = STATE(1025), - [sym_parenthesized_expression] = STATE(1025), - [sym_lambda_expression] = STATE(1025), - [sym_concatenated_string] = STATE(1025), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(1025), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(1025), - [sym_math_expression] = STATE(1025), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(1026), - [sym_raw_string_literal] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(2053), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2053), - [sym_nullptr] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(2057), - }, - [360] = { - [sym_abstract_array_declarator] = STATE(1022), - [sym_parameter_list] = STATE(1021), - [sym_abstract_reference_declarator] = STATE(1022), - [sym_abstract_function_declarator] = STATE(1022), - [aux_sym_type_definition_repeat1] = STATE(1027), - [sym_abstract_pointer_declarator] = STATE(1022), - [sym_type_qualifier] = STATE(1027), - [sym__abstract_declarator] = STATE(1022), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [361] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(1030), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1030), - [anon_sym_LPAREN2] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(2061), - [anon_sym_volatile] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_DASH_GT] = ACTIONS(2063), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1062), - }, [362] = { - [sym_compound_statement] = STATE(1031), - [anon_sym_LPAREN2] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(374), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(1915), + [sym_raw_string_literal] = ACTIONS(1917), + [sym_true] = ACTIONS(1915), + [anon_sym_mutable] = ACTIONS(1915), + [sym_null] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_sizeof] = ACTIONS(1915), + [anon_sym_volatile] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_typedef] = ACTIONS(1915), + [anon_sym_switch] = ACTIONS(1915), + [anon_sym_explicit] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1915), + [anon_sym_delete] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), + [anon_sym__Atomic] = ACTIONS(1915), + [sym_number_literal] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_constexpr] = ACTIONS(1915), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), + [anon_sym_namespace] = ACTIONS(1915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1917), + [anon_sym_LPAREN2] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1915), + [sym_auto] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1915), + [sym_preproc_directive] = ACTIONS(1915), + [aux_sym_preproc_if_token1] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_typename] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_goto] = ACTIONS(1915), + [sym_operator_name] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [aux_sym_preproc_include_token1] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [sym_primitive_type] = ACTIONS(1915), + [sym_false] = ACTIONS(1915), + [sym_nullptr] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_template] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(1917), + [aux_sym_preproc_def_token1] = ACTIONS(1915), + [anon_sym_AMP_AMP] = ACTIONS(1917), + [anon_sym_inline] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_restrict] = ACTIONS(1915), }, [363] = { - [sym_parameter_list] = STATE(1033), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(2067), + [sym_template_argument_list] = STATE(1020), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym_COLON] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(548), [sym_comment] = ACTIONS(3), }, [364] = { - [anon_sym_LPAREN2] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_mutable] = ACTIONS(2071), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2069), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_COLON_COLON] = ACTIONS(2069), - [anon_sym_final] = ACTIONS(2071), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_volatile] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_SLASH] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2069), - [anon_sym_COLON] = ACTIONS(2071), - [anon_sym_explicit] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_override] = ACTIONS(2071), - [sym_operator_name] = ACTIONS(2069), - [sym_noexcept] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_GT] = ACTIONS(2071), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_register] = ACTIONS(2071), - [anon_sym__Atomic] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2071), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_constexpr] = ACTIONS(2071), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2069), - [anon_sym_QMARK] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_inline] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_restrict] = ACTIONS(2071), - [anon_sym_GT_GT] = ACTIONS(2069), - [anon_sym_DASH_GT] = ACTIONS(2069), + [sym_compound_statement] = STATE(1026), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(1029), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), }, [365] = { - [anon_sym_LPAREN2] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_mutable] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2073), - [anon_sym_EQ] = ACTIONS(2075), - [anon_sym_COLON_COLON] = ACTIONS(2073), - [anon_sym_final] = ACTIONS(2075), - [anon_sym_EQ_EQ] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_AMP] = ACTIONS(2075), - [anon_sym_static] = ACTIONS(2075), - [anon_sym_volatile] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2075), - [anon_sym_GT_EQ] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2073), - [anon_sym_SLASH] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), - [anon_sym_COLON] = ACTIONS(2075), - [anon_sym_explicit] = ACTIONS(2075), - [sym_identifier] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_override] = ACTIONS(2075), - [sym_operator_name] = ACTIONS(2073), - [sym_noexcept] = ACTIONS(2075), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_GT] = ACTIONS(2075), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2075), - [anon_sym__Atomic] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(2073), - [anon_sym_DOT] = ACTIONS(2075), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_constexpr] = ACTIONS(2075), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2073), - [anon_sym_QMARK] = ACTIONS(2073), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_BANG_EQ] = ACTIONS(2073), - [anon_sym_LT_EQ] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(2073), - [anon_sym_inline] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2073), - [anon_sym_restrict] = ACTIONS(2075), - [anon_sym_GT_GT] = ACTIONS(2073), - [anon_sym_DASH_GT] = ACTIONS(2073), + [aux_sym_declaration_repeat1] = STATE(1029), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1929), }, [366] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(366), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(2079), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(2079), - [anon_sym_register] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(2079), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), - [sym_operator_name] = ACTIONS(2077), + [sym_goto_statement] = STATE(366), + [sym_preproc_function_def] = STATE(366), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(366), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_field_expression] = STATE(47), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(366), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(366), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(366), + [sym_namespace_definition] = STATE(366), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(47), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(366), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(366), + [sym_constructor_or_destructor_definition] = STATE(366), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(366), + [sym_preproc_include] = STATE(366), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(366), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(366), + [sym_call_expression] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(366), + [sym_expression_statement] = STATE(366), + [sym_do_statement] = STATE(366), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(366), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(366), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(366), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(366), + [sym_for_statement] = STATE(366), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(366), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(366), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(366), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(366), + [sym_preproc_if] = STATE(366), + [sym_pointer_expression] = STATE(47), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(366), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(366), + [aux_sym_translation_unit_repeat1] = STATE(366), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(366), + [sym_while_statement] = STATE(366), + [anon_sym_DASH] = ACTIONS(1931), + [sym_raw_string_literal] = ACTIONS(1934), + [sym_true] = ACTIONS(1937), + [anon_sym_mutable] = ACTIONS(1940), + [sym_null] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1949), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1955), + [anon_sym_explicit] = ACTIONS(1940), + [sym_identifier] = ACTIONS(1958), + [anon_sym_delete] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_constexpr] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym_namespace] = ACTIONS(1982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1967), + [anon_sym_SQUOTE] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1991), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1997), + [sym_auto] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_using] = ACTIONS(2006), + [sym_preproc_directive] = ACTIONS(2009), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_typename] = ACTIONS(2027), + [anon_sym_short] = ACTIONS(1976), + [anon_sym_new] = ACTIONS(2030), + [anon_sym_goto] = ACTIONS(2033), + [sym_operator_name] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2045), + [aux_sym_preproc_include_token1] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2060), + [sym_primitive_type] = ACTIONS(2000), + [sym_false] = ACTIONS(1937), + [sym_nullptr] = ACTIONS(1937), + [anon_sym_do] = ACTIONS(2063), + [anon_sym_template] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_TILDE] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2075), + [ts_builtin_sym_end] = ACTIONS(2078), + [aux_sym_preproc_def_token1] = ACTIONS(2080), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_inline] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(1991), + [anon_sym_restrict] = ACTIONS(1940), }, [367] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(543), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(544), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -27712,20 +27692,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -27742,84 +27722,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [368] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(190), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_parenthesized_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(191), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_char_literal] = STATE(191), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(330), - [sym_null] = ACTIONS(330), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(330), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [sym_parenthesized_expression] = STATE(191), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(191), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_call_expression] = STATE(191), + [sym_new_expression] = STATE(191), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(332), + [sym_null] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, [369] = { - [sym_template_argument_list] = STATE(99), [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(101), [anon_sym_LPAREN2] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_mutable] = ACTIONS(185), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_PERCENT_EQ] = ACTIONS(1010), [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1010), [anon_sym_AMP] = ACTIONS(180), [anon_sym_volatile] = ACTIONS(185), [anon_sym_PLUS] = ACTIONS(163), @@ -27827,12 +27807,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(163), [anon_sym_explicit] = ACTIONS(185), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1010), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym__Atomic] = ACTIONS(185), @@ -27844,10 +27824,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(185), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1010), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1010), [anon_sym_RPAREN] = ACTIONS(187), [anon_sym_AMP_AMP] = ACTIONS(187), [anon_sym_PLUS_PLUS] = ACTIONS(165), @@ -27856,253 +27836,298 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(165), }, [370] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(303), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(508), + [sym_false] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(512), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [371] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1141), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_COLON] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1147), }, [372] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(641), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [sym_initializer_list] = STATE(772), + [sym_template_argument_list] = STATE(773), + [anon_sym_LPAREN2] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_RBRACK] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_GT_EQ] = ACTIONS(165), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_COMMA] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(163), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(165), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_GT_GT] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(165), + }, + [373] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(642), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [373] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), + [374] = { + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(1230), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(1236), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [374] = { - [sym_template_argument_list] = STATE(673), + [375] = { [sym_initializer_list] = STATE(674), + [sym_template_argument_list] = STATE(675), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1240), [anon_sym_RPAREN] = ACTIONS(165), [anon_sym_STAR_EQ] = ACTIONS(165), [anon_sym_LT_LT_EQ] = ACTIONS(165), [anon_sym_PERCENT_EQ] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(1242), [anon_sym_RBRACK_RBRACK] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT] = ACTIONS(1244), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -28136,8 +28161,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [375] = { - [sym_template_argument_list] = STATE(691), + [376] = { + [sym_template_argument_list] = STATE(689), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -28148,7 +28173,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK_RBRACK] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT] = ACTIONS(1244), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -28181,347 +28206,343 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [376] = { - [sym_destructor_name] = STATE(399), - [sym_identifier] = ACTIONS(2088), - [sym_operator_name] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - }, [377] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_RBRACK_RBRACK] = ACTIONS(785), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(785), - }, - [378] = { - [sym_destructor_name] = STATE(938), + [sym_destructor_name] = STATE(400), [sym_identifier] = ACTIONS(2090), - [sym_operator_name] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(308), + [sym_operator_name] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, + [378] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_RBRACK_RBRACK] = ACTIONS(793), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(791), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(793), + }, [379] = { - [anon_sym_RPAREN] = ACTIONS(2092), + [sym_destructor_name] = STATE(960), + [sym_identifier] = ACTIONS(2092), + [sym_operator_name] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, [380] = { - [sym_template_argument_list] = STATE(354), - [sym_virtual_specifier] = STATE(625), - [sym_field_declaration_list] = STATE(623), - [sym_base_class_clause] = STATE(624), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_mutable] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_explicit] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1126), - [sym_noexcept] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(2094), + [sym_comment] = ACTIONS(3), }, [381] = { - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_final] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1135), - [anon_sym_mutable] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1135), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1135), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1137), - [anon_sym_EQ_EQ] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_GT_EQ] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_SLASH] = ACTIONS(1137), - [anon_sym_COLON] = ACTIONS(1137), - [anon_sym_explicit] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1135), - [sym_operator_name] = ACTIONS(1135), - [sym_noexcept] = ACTIONS(1137), - [anon_sym_CARET] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1137), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_register] = ACTIONS(1137), - [anon_sym__Atomic] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_constexpr] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1135), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_BANG_EQ] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1137), - [anon_sym_DASH_GT] = ACTIONS(1135), - [anon_sym_restrict] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1135), + [sym_virtual_specifier] = STATE(624), + [sym_template_argument_list] = STATE(312), + [sym_field_declaration_list] = STATE(625), + [sym_base_class_clause] = STATE(626), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_mutable] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_explicit] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1130), + [sym_noexcept] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(1130), }, [382] = { - [sym_template_argument_list] = STATE(354), - [sym_virtual_specifier] = STATE(815), - [sym_field_declaration_list] = STATE(813), - [sym_base_class_clause] = STATE(814), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_mutable] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_explicit] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1476), - [sym_noexcept] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_final] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_mutable] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_override] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_COLON] = ACTIONS(1143), + [anon_sym_explicit] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1141), + [sym_operator_name] = ACTIONS(1141), + [sym_noexcept] = ACTIONS(1143), + [anon_sym_CARET] = ACTIONS(1141), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1141), + [anon_sym_constexpr] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1141), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_BANG_EQ] = ACTIONS(1141), + [anon_sym_LT_EQ] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym_DASH_GT] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1141), }, [383] = { - [sym_template_argument_list] = STATE(354), - [sym_virtual_specifier] = STATE(700), - [sym_field_declaration_list] = STATE(698), - [sym_base_class_clause] = STATE(699), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_mutable] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_explicit] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1255), - [sym_noexcept] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1255), + [sym_virtual_specifier] = STATE(817), + [sym_template_argument_list] = STATE(312), + [sym_field_declaration_list] = STATE(818), + [sym_base_class_clause] = STATE(819), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_mutable] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_explicit] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1490), + [sym_noexcept] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(1490), }, [384] = { - [sym_identifier] = ACTIONS(2094), - [sym_comment] = ACTIONS(3), + [sym_virtual_specifier] = STATE(699), + [sym_template_argument_list] = STATE(312), + [sym_field_declaration_list] = STATE(700), + [sym_base_class_clause] = STATE(701), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_mutable] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_explicit] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1261), + [sym_noexcept] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_GT_GT] = ACTIONS(1261), }, [385] = { - [anon_sym_LPAREN2] = ACTIONS(789), - [anon_sym_final] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_mutable] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(789), - [anon_sym_RBRACK_RBRACK] = ACTIONS(789), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_static] = ACTIONS(787), - [anon_sym_volatile] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_override] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_explicit] = ACTIONS(787), - [sym_identifier] = ACTIONS(787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [sym_operator_name] = ACTIONS(789), - [sym_noexcept] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_register] = ACTIONS(787), - [anon_sym__Atomic] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_extern] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(789), - [anon_sym_constexpr] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(789), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_inline] = ACTIONS(787), - [anon_sym_DASH_GT] = ACTIONS(789), - [anon_sym_restrict] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - }, - [386] = { [sym_identifier] = ACTIONS(2096), [sym_comment] = ACTIONS(3), }, + [386] = { + [anon_sym_LPAREN2] = ACTIONS(797), + [anon_sym_final] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_mutable] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_RBRACK_RBRACK] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_static] = ACTIONS(795), + [anon_sym_volatile] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_override] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_explicit] = ACTIONS(795), + [sym_identifier] = ACTIONS(795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(797), + [anon_sym_RBRACE] = ACTIONS(797), + [sym_operator_name] = ACTIONS(797), + [sym_noexcept] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_register] = ACTIONS(795), + [anon_sym__Atomic] = ACTIONS(795), + [anon_sym_const] = ACTIONS(795), + [anon_sym_extern] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(795), + [anon_sym_LT_LT] = ACTIONS(797), + [anon_sym_constexpr] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_inline] = ACTIONS(795), + [anon_sym_DASH_GT] = ACTIONS(797), + [anon_sym_restrict] = ACTIONS(795), + [anon_sym_GT_GT] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + }, [387] = { [aux_sym_sized_type_specifier_repeat1] = STATE(387), - [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_LPAREN2] = ACTIONS(1778), [anon_sym_unsigned] = ACTIONS(2098), [sym_comment] = ACTIONS(3), [anon_sym_signed] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(1778), [anon_sym_long] = ACTIONS(2098), [anon_sym_short] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), + [sym_identifier] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), }, [388] = { - [sym_type_qualifier] = STATE(388), [aux_sym_type_definition_repeat1] = STATE(388), + [sym_type_qualifier] = STATE(388), [anon_sym_struct] = ACTIONS(2101), [sym_auto] = ACTIONS(2101), [anon_sym_signed] = ACTIONS(2101), @@ -28545,36 +28566,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(2103), }, [389] = { - [sym_pointer_type_declarator] = STATE(1041), - [sym_array_type_declarator] = STATE(1041), - [sym_function_type_declarator] = STATE(1041), - [sym__type_declarator] = STATE(1041), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [sym_pointer_type_declarator] = STATE(1036), + [sym_array_type_declarator] = STATE(1036), + [sym_function_type_declarator] = STATE(1036), + [sym__type_declarator] = STATE(1036), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, [390] = { - [sym_pointer_type_declarator] = STATE(1043), - [sym_array_type_declarator] = STATE(1043), - [sym_function_type_declarator] = STATE(1043), - [sym__type_declarator] = STATE(1043), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), + [sym_pointer_type_declarator] = STATE(1038), + [sym_array_type_declarator] = STATE(1038), + [sym_function_type_declarator] = STATE(1038), + [sym__type_declarator] = STATE(1038), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), [anon_sym_STAR] = ACTIONS(2108), [sym_comment] = ACTIONS(3), }, [391] = { - [sym_type_qualifier] = STATE(1044), - [sym_pointer_type_declarator] = STATE(1045), - [sym_array_type_declarator] = STATE(1045), - [sym_function_type_declarator] = STATE(1045), - [aux_sym_type_definition_repeat1] = STATE(1044), - [sym__type_declarator] = STATE(1045), - [anon_sym_LPAREN2] = ACTIONS(678), + [aux_sym_type_definition_repeat1] = STATE(1039), + [sym_pointer_type_declarator] = STATE(1040), + [sym_array_type_declarator] = STATE(1040), + [sym_function_type_declarator] = STATE(1040), + [sym__type_declarator] = STATE(1040), + [sym_type_qualifier] = STATE(1039), + [anon_sym_LPAREN2] = ACTIONS(680), [anon_sym_volatile] = ACTIONS(11), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_explicit] = ACTIONS(11), @@ -28592,48 +28613,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(2112), }, [393] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(1050), - [anon_sym_LPAREN2] = ACTIONS(587), + [aux_sym_type_definition_repeat2] = STATE(1044), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), [anon_sym_SEMI] = ACTIONS(2118), }, [394] = { - [sym_destructor_name] = STATE(166), + [sym_identifier] = ACTIONS(2120), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(640), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(974), }, [395] = { - [sym_template_argument_list] = STATE(377), + [sym_destructor_name] = STATE(167), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(642), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(978), + }, + [396] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_PERCENT_EQ] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1010), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1010), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -28642,10 +28667,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1010), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1010), [anon_sym_RPAREN] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), @@ -28653,728 +28678,728 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [396] = { - [sym_do_statement] = STATE(1069), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [397] = { + [sym_do_statement] = STATE(1064), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(1069), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(1069), - [sym_if_statement] = STATE(1069), - [sym_switch_statement] = STATE(1069), - [sym_for_statement] = STATE(1069), - [sym_return_statement] = STATE(1069), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(1064), + [sym_try_statement] = STATE(1064), + [aux_sym_switch_body_repeat1] = STATE(1064), + [sym_if_statement] = STATE(1064), + [sym_switch_statement] = STATE(1064), + [sym_for_statement] = STATE(1064), + [sym_return_statement] = STATE(1064), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(1069), - [aux_sym_switch_body_repeat1] = STATE(1069), - [sym_case_statement] = STATE(1069), - [sym_break_statement] = STATE(1069), - [sym_continue_statement] = STATE(1069), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(1064), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(1064), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(1069), - [sym_labeled_statement] = STATE(1069), - [sym_expression_statement] = STATE(1069), - [sym_while_statement] = STATE(1069), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(1064), + [sym_for_range_loop] = STATE(1064), + [sym_compound_statement] = STATE(1064), + [sym_labeled_statement] = STATE(1064), + [sym_expression_statement] = STATE(1064), + [sym_while_statement] = STATE(1064), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2130), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [397] = { - [anon_sym_DASH] = ACTIONS(2156), - [sym_raw_string_literal] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [anon_sym_mutable] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_sizeof] = ACTIONS(2156), - [anon_sym_volatile] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_typedef] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_explicit] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), - [anon_sym__Atomic] = ACTIONS(2156), - [sym_number_literal] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_constexpr] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2158), - [anon_sym_struct] = ACTIONS(2156), - [sym_auto] = ACTIONS(2156), - [anon_sym_signed] = ACTIONS(2156), - [anon_sym_long] = ACTIONS(2156), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_using] = ACTIONS(2156), - [sym_preproc_directive] = ACTIONS(2156), - [aux_sym_preproc_if_token1] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_typename] = ACTIONS(2156), - [anon_sym_short] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_goto] = ACTIONS(2156), - [sym_operator_name] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [aux_sym_preproc_include_token1] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [sym_primitive_type] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_nullptr] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_template] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [ts_builtin_sym_end] = ACTIONS(2158), - [aux_sym_preproc_def_token1] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_restrict] = ACTIONS(2156), - }, [398] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(2158), + [sym_raw_string_literal] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2158), + [sym_true] = ACTIONS(2158), + [anon_sym_mutable] = ACTIONS(2158), + [sym_null] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym_volatile] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2158), + [anon_sym_typedef] = ACTIONS(2158), + [anon_sym_switch] = ACTIONS(2158), + [anon_sym_explicit] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2158), + [anon_sym_delete] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2158), + [anon_sym__Atomic] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_constexpr] = ACTIONS(2158), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2158), + [sym_auto] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2158), + [anon_sym_long] = ACTIONS(2158), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2158), + [sym_preproc_directive] = ACTIONS(2158), + [aux_sym_preproc_if_token1] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_typename] = ACTIONS(2158), + [anon_sym_short] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2158), + [anon_sym_goto] = ACTIONS(2158), + [sym_operator_name] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [aux_sym_preproc_include_token1] = ACTIONS(2158), + [anon_sym_register] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_LBRACK] = ACTIONS(2158), + [anon_sym_class] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [sym_primitive_type] = ACTIONS(2158), + [sym_false] = ACTIONS(2158), + [sym_nullptr] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_template] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2160), [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [ts_builtin_sym_end] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2158), }, [399] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_COLON] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [400] = { - [anon_sym_LPAREN2] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_restrict] = ACTIONS(2171), - [anon_sym_mutable] = ACTIONS(2171), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_explicit] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2171), - [sym_operator_name] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_register] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2171), - [anon_sym_constexpr] = ACTIONS(2171), + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_COLON] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2164), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_inline] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), }, [401] = { - [sym_virtual_specifier] = STATE(1072), - [sym_template_type] = STATE(1073), - [sym_scoped_namespace_identifier] = STATE(859), - [sym_field_declaration_list] = STATE(1074), - [sym_scoped_type_identifier] = STATE(1075), - [sym_base_class_clause] = STATE(1076), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(2178), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LPAREN2] = ACTIONS(2168), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_restrict] = ACTIONS(2173), + [anon_sym_mutable] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_volatile] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_explicit] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2173), + [sym_operator_name] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym__Atomic] = ACTIONS(2173), + [anon_sym_constexpr] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2168), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2168), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_inline] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), }, [402] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(1080), - [sym_logical_expression] = STATE(1080), - [sym_bitwise_expression] = STATE(1080), - [sym_cast_expression] = STATE(1080), - [sym_new_expression] = STATE(1080), + [sym_scoped_type_identifier] = STATE(1068), + [sym_virtual_specifier] = STATE(1069), + [sym_template_type] = STATE(1070), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_field_declaration_list] = STATE(1071), + [sym_base_class_clause] = STATE(1072), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(2180), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(300), + }, + [403] = { + [sym_template_function] = STATE(1075), + [sym__expression] = STATE(1075), + [sym_logical_expression] = STATE(1075), + [sym_bitwise_expression] = STATE(1075), + [sym_cast_expression] = STATE(1075), + [sym_delete_expression] = STATE(1075), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(1080), - [sym_char_literal] = STATE(1080), - [sym_template_function] = STATE(1080), - [sym_conditional_expression] = STATE(1080), - [sym_equality_expression] = STATE(1080), - [sym_relational_expression] = STATE(1080), - [sym_delete_expression] = STATE(1080), - [sym_sizeof_expression] = STATE(1080), - [sym_parenthesized_expression] = STATE(1080), - [sym_lambda_expression] = STATE(1080), - [sym_concatenated_string] = STATE(1080), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(1075), + [sym_lambda_expression] = STATE(1075), + [sym_char_literal] = STATE(1075), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(1075), + [sym_equality_expression] = STATE(1075), + [sym_relational_expression] = STATE(1075), + [sym_sizeof_expression] = STATE(1075), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(1080), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(1075), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(1075), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(1075), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(1080), - [sym_math_expression] = STATE(1080), + [sym_shift_expression] = STATE(1075), + [sym_math_expression] = STATE(1075), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(2182), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(1075), + [sym_raw_string_literal] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(2186), + [sym_null] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(2186), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [403] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(1083), - [sym_logical_expression] = STATE(1083), - [sym_bitwise_expression] = STATE(1083), - [sym_cast_expression] = STATE(1083), - [sym_new_expression] = STATE(1083), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1083), - [sym_type_descriptor] = STATE(1084), - [sym_char_literal] = STATE(1083), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(1083), - [sym_conditional_expression] = STATE(1083), - [sym_equality_expression] = STATE(1083), - [sym_relational_expression] = STATE(1083), - [sym_delete_expression] = STATE(1083), - [sym_sizeof_expression] = STATE(1083), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(1083), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(1083), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(1083), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(1085), - [sym_assignment_expression] = STATE(1083), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1083), - [sym_math_expression] = STATE(1083), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(2190), + [404] = { + [sym_template_function] = STATE(1079), + [sym__expression] = STATE(1079), + [sym_logical_expression] = STATE(1079), + [sym_bitwise_expression] = STATE(1079), + [sym_cast_expression] = STATE(1079), + [sym_delete_expression] = STATE(1079), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(1079), + [sym_char_literal] = STATE(1079), + [sym_lambda_expression] = STATE(1079), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1080), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(1081), + [sym_conditional_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_relational_expression] = STATE(1079), + [sym_sizeof_expression] = STATE(1079), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(1079), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1079), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(1079), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1079), + [sym_math_expression] = STATE(1079), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1079), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(2192), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(2192), + [sym_true] = ACTIONS(2194), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(2192), + [sym_null] = ACTIONS(2194), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(2190), + [sym_number_literal] = ACTIONS(2192), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(2192), + [sym_false] = ACTIONS(2194), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(2192), + [sym_nullptr] = ACTIONS(2194), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [404] = { - [sym_destructor_name] = STATE(1087), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2194), - [sym_operator_name] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2198), - [anon_sym_delete] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [405] = { - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_DASH_GT] = ACTIONS(2202), - [anon_sym_mutable] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2202), - [anon_sym_final] = ACTIONS(2204), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_volatile] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_COLON] = ACTIONS(2204), - [anon_sym_explicit] = ACTIONS(2204), - [sym_identifier] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2202), - [sym_operator_name] = ACTIONS(2202), - [sym_noexcept] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_register] = ACTIONS(2204), - [anon_sym__Atomic] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2202), - [anon_sym_constexpr] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), + [sym_destructor_name] = STATE(1083), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2202), - [anon_sym_TILDE] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_inline] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_restrict] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2196), + [sym_operator_name] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2202), }, [406] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(1090), - [sym_logical_expression] = STATE(1090), - [sym_bitwise_expression] = STATE(1090), - [sym_cast_expression] = STATE(1090), - [sym_new_expression] = STATE(1090), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_DASH_GT] = ACTIONS(2204), + [anon_sym_mutable] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2204), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2204), + [anon_sym_final] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_volatile] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2206), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_explicit] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2204), + [sym_operator_name] = ACTIONS(2204), + [sym_noexcept] = ACTIONS(2206), + [anon_sym_CARET] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_register] = ACTIONS(2206), + [anon_sym__Atomic] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym_LT_LT] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2204), + [anon_sym_constexpr] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_inline] = ACTIONS(2206), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_restrict] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_GT_GT] = ACTIONS(2204), + }, + [407] = { + [sym_template_function] = STATE(1086), + [sym__expression] = STATE(1086), + [sym_logical_expression] = STATE(1086), + [sym_bitwise_expression] = STATE(1086), + [sym_cast_expression] = STATE(1086), + [sym_delete_expression] = STATE(1086), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(1090), - [sym_char_literal] = STATE(1090), - [sym_template_function] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_equality_expression] = STATE(1090), - [sym_relational_expression] = STATE(1090), - [sym_delete_expression] = STATE(1090), - [sym_sizeof_expression] = STATE(1090), - [sym_parenthesized_expression] = STATE(1090), - [sym_lambda_expression] = STATE(1090), - [sym_concatenated_string] = STATE(1090), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(1086), + [sym_lambda_expression] = STATE(1086), + [sym_char_literal] = STATE(1086), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(1086), + [sym_equality_expression] = STATE(1086), + [sym_relational_expression] = STATE(1086), + [sym_sizeof_expression] = STATE(1086), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(1090), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(1086), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(1086), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(1086), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(1090), - [sym_math_expression] = STATE(1090), + [sym_shift_expression] = STATE(1086), + [sym_math_expression] = STATE(1086), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), - }, - [407] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(1103), - [sym_logical_expression] = STATE(1103), - [sym_bitwise_expression] = STATE(1103), - [sym_cast_expression] = STATE(1103), - [sym_new_expression] = STATE(1103), - [sym_field_expression] = STATE(1103), - [sym_compound_literal_expression] = STATE(1103), - [sym_char_literal] = STATE(1103), - [sym_template_function] = STATE(1103), - [sym_conditional_expression] = STATE(1103), - [sym_equality_expression] = STATE(1103), - [sym_relational_expression] = STATE(1103), - [sym_delete_expression] = STATE(1103), - [sym_sizeof_expression] = STATE(1103), - [sym_parenthesized_expression] = STATE(1103), - [sym_lambda_expression] = STATE(1103), - [sym_concatenated_string] = STATE(1103), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1103), - [sym_pointer_expression] = STATE(1103), - [sym_shift_expression] = STATE(1103), - [sym_math_expression] = STATE(1103), - [sym_call_expression] = STATE(1103), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [sym_new_expression] = STATE(1086), + [sym_raw_string_literal] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(2210), + [sym_null] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(2208), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(2210), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(2210), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, [408] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(1110), - [sym_logical_expression] = STATE(1110), - [sym_bitwise_expression] = STATE(1110), - [sym_cast_expression] = STATE(1110), - [sym_new_expression] = STATE(1110), + [sym_template_function] = STATE(1098), + [sym__expression] = STATE(1098), + [sym_logical_expression] = STATE(1098), + [sym_bitwise_expression] = STATE(1098), + [sym_cast_expression] = STATE(1098), + [sym_delete_expression] = STATE(1098), + [sym_field_expression] = STATE(1098), + [sym_compound_literal_expression] = STATE(1098), + [sym_lambda_expression] = STATE(1098), + [sym_char_literal] = STATE(1098), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(1098), + [sym_equality_expression] = STATE(1098), + [sym_relational_expression] = STATE(1098), + [sym_sizeof_expression] = STATE(1098), + [sym_subscript_expression] = STATE(1098), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(1098), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(1098), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(1098), + [sym_pointer_expression] = STATE(1098), + [sym_shift_expression] = STATE(1098), + [sym_math_expression] = STATE(1098), + [sym_call_expression] = STATE(1098), + [sym_new_expression] = STATE(1098), + [sym_raw_string_literal] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(2218), + [sym_null] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(2218), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [409] = { + [sym_template_function] = STATE(1106), + [sym__expression] = STATE(1106), + [sym_logical_expression] = STATE(1106), + [sym_bitwise_expression] = STATE(1106), + [sym_cast_expression] = STATE(1106), + [sym_delete_expression] = STATE(1106), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(1110), - [sym_char_literal] = STATE(1110), - [sym_template_function] = STATE(1110), - [sym_conditional_expression] = STATE(1110), - [sym_equality_expression] = STATE(1110), - [sym_relational_expression] = STATE(1110), - [sym_delete_expression] = STATE(1110), - [sym_sizeof_expression] = STATE(1110), - [sym_parenthesized_expression] = STATE(1110), - [sym_lambda_expression] = STATE(1110), - [sym_concatenated_string] = STATE(1110), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(1106), + [sym_lambda_expression] = STATE(1106), + [sym_char_literal] = STATE(1106), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_relational_expression] = STATE(1106), + [sym_sizeof_expression] = STATE(1106), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(1110), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(1106), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(1106), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(1106), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(1110), - [sym_math_expression] = STATE(1110), + [sym_shift_expression] = STATE(1106), + [sym_math_expression] = STATE(1106), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(2240), - [sym_true] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(2242), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), - }, - [409] = { - [sym_virtual_specifier] = STATE(1112), - [sym_template_type] = STATE(1113), - [sym_scoped_namespace_identifier] = STATE(859), - [sym_field_declaration_list] = STATE(1114), - [sym_scoped_type_identifier] = STATE(1115), - [sym_base_class_clause] = STATE(1116), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(2244), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(298), + [sym_new_expression] = STATE(1106), + [sym_raw_string_literal] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(2242), + [sym_true] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, [410] = { - [sym_union_specifier] = STATE(1117), - [sym_macro_type_specifier] = STATE(1117), - [sym_class_specifier] = STATE(1117), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1117), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1117), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_struct_specifier] = STATE(1117), - [sym_enum_specifier] = STATE(1117), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(1117), - [anon_sym_unsigned] = ACTIONS(712), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(2246), - [anon_sym_signed] = ACTIONS(712), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(712), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(712), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(2246), + [sym_scoped_type_identifier] = STATE(1108), + [sym_virtual_specifier] = STATE(1109), + [sym_template_type] = STATE(1110), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_field_declaration_list] = STATE(1111), + [sym_base_class_clause] = STATE(1112), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(2246), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(300), }, [411] = { - [sym_template_argument_list] = STATE(1122), - [sym_initializer_list] = STATE(1123), + [sym_union_specifier] = STATE(1113), + [sym_macro_type_specifier] = STATE(1113), + [sym_class_specifier] = STATE(1113), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(1113), + [sym__type_specifier] = STATE(1113), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(1113), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1113), + [sym_struct_specifier] = STATE(1113), + [anon_sym_unsigned] = ACTIONS(716), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(716), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(716), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(716), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(2248), + }, + [412] = { + [sym_initializer_list] = STATE(1118), + [sym_template_argument_list] = STATE(1119), [anon_sym_LPAREN2] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_EQ] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2252), [anon_sym_mutable] = ACTIONS(185), - [anon_sym_STAR_EQ] = ACTIONS(2252), - [anon_sym_LT_LT_EQ] = ACTIONS(2252), - [anon_sym_PERCENT_EQ] = ACTIONS(2252), + [anon_sym_STAR_EQ] = ACTIONS(2254), + [anon_sym_LT_LT_EQ] = ACTIONS(2254), + [anon_sym_PERCENT_EQ] = ACTIONS(2254), [anon_sym_GT2] = ACTIONS(187), - [anon_sym_COLON_COLON] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(2256), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_CARET_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2258), + [anon_sym_CARET_EQ] = ACTIONS(2254), [anon_sym_AMP] = ACTIONS(180), [anon_sym_volatile] = ACTIONS(185), [anon_sym_PLUS] = ACTIONS(163), @@ -29382,12 +29407,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(163), [anon_sym_explicit] = ACTIONS(185), - [anon_sym_SLASH_EQ] = ACTIONS(2252), - [anon_sym_PLUS_EQ] = ACTIONS(2252), + [anon_sym_SLASH_EQ] = ACTIONS(2254), + [anon_sym_PLUS_EQ] = ACTIONS(2254), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(2252), - [anon_sym_GT_GT_EQ] = ACTIONS(2248), + [anon_sym_PIPE_EQ] = ACTIONS(2254), + [anon_sym_GT_GT_EQ] = ACTIONS(2250), [anon_sym_COMMA] = ACTIONS(187), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym__Atomic] = ACTIONS(185), @@ -29399,10 +29424,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(185), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(2252), + [anon_sym_DASH_EQ] = ACTIONS(2254), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(2252), + [anon_sym_AMP_EQ] = ACTIONS(2254), [anon_sym_AMP_AMP] = ACTIONS(187), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), @@ -29410,202 +29435,182 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [412] = { - [sym_union_specifier] = STATE(1129), - [sym_macro_type_specifier] = STATE(1129), - [sym_class_specifier] = STATE(1129), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1129), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1129), - [aux_sym_sized_type_specifier_repeat1] = STATE(1128), - [sym_argument_list] = STATE(1130), - [sym_enum_specifier] = STATE(1129), - [sym_struct_specifier] = STATE(1129), - [sym_scoped_type_identifier] = STATE(1127), - [sym_dependent_type] = STATE(1129), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(2259), - [anon_sym_signed] = ACTIONS(2261), - [anon_sym_long] = ACTIONS(2261), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(2259), - [anon_sym_unsigned] = ACTIONS(2261), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(2265), - [sym_identifier] = ACTIONS(2267), - [anon_sym_short] = ACTIONS(2261), - }, [413] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(1132), - [sym_logical_expression] = STATE(1132), - [sym_bitwise_expression] = STATE(1132), - [sym_cast_expression] = STATE(1132), - [sym_new_expression] = STATE(1132), + [sym_union_specifier] = STATE(1124), + [sym_macro_type_specifier] = STATE(1124), + [sym_class_specifier] = STATE(1124), + [aux_sym_sized_type_specifier_repeat1] = STATE(1123), + [sym_sized_type_specifier] = STATE(1124), + [sym__type_specifier] = STATE(1124), + [sym_argument_list] = STATE(1125), + [sym_scoped_type_identifier] = STATE(1126), + [sym_enum_specifier] = STATE(1124), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1124), + [sym_struct_specifier] = STATE(1124), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(2261), + [anon_sym_signed] = ACTIONS(2263), + [anon_sym_long] = ACTIONS(2263), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(2261), + [anon_sym_unsigned] = ACTIONS(2263), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2263), + }, + [414] = { + [sym_template_function] = STATE(1128), + [sym__expression] = STATE(1128), + [sym_logical_expression] = STATE(1128), + [sym_bitwise_expression] = STATE(1128), + [sym_cast_expression] = STATE(1128), + [sym_delete_expression] = STATE(1128), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(1132), - [sym_char_literal] = STATE(1132), - [sym_template_function] = STATE(1132), - [sym_conditional_expression] = STATE(1132), - [sym_equality_expression] = STATE(1132), - [sym_relational_expression] = STATE(1132), - [sym_delete_expression] = STATE(1132), - [sym_sizeof_expression] = STATE(1132), - [sym_parenthesized_expression] = STATE(1132), - [sym_lambda_expression] = STATE(1132), - [sym_concatenated_string] = STATE(1132), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(1128), + [sym_lambda_expression] = STATE(1128), + [sym_char_literal] = STATE(1128), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(1128), + [sym_equality_expression] = STATE(1128), + [sym_relational_expression] = STATE(1128), + [sym_sizeof_expression] = STATE(1128), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(1132), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(1128), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(1128), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(1128), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(1132), - [sym_math_expression] = STATE(1132), + [sym_shift_expression] = STATE(1128), + [sym_math_expression] = STATE(1128), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(2271), - [sym_null] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(2269), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(2271), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), - }, - [414] = { - [aux_sym_string_literal_repeat1] = STATE(1134), - [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(2275), - [aux_sym_string_literal_token1] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2277), + [sym_new_expression] = STATE(1128), + [sym_raw_string_literal] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(2273), + [sym_null] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(2271), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, [415] = { - [sym_enumerator_list] = STATE(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2281), + [aux_sym_string_literal_repeat1] = STATE(1130), + [sym_comment] = ACTIONS(244), + [sym_escape_sequence] = ACTIONS(2277), + [aux_sym_string_literal_token1] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(2279), }, [416] = { - [sym_virtual_specifier] = STATE(1139), - [sym_template_type] = STATE(1140), - [sym_scoped_namespace_identifier] = STATE(859), - [sym_field_declaration_list] = STATE(1141), - [sym_scoped_type_identifier] = STATE(1142), - [sym_base_class_clause] = STATE(1143), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(2283), - [anon_sym_COLON_COLON] = ACTIONS(1540), + [sym_enumerator_list] = STATE(1133), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(2281), + [sym_identifier] = ACTIONS(2283), }, [417] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(1144), - [sym_logical_expression] = STATE(1144), - [sym_bitwise_expression] = STATE(1144), - [sym_cast_expression] = STATE(1144), - [sym_new_expression] = STATE(1144), + [sym_scoped_type_identifier] = STATE(1135), + [sym_virtual_specifier] = STATE(1136), + [sym_template_type] = STATE(1137), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_field_declaration_list] = STATE(1138), + [sym_base_class_clause] = STATE(1139), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(300), + }, + [418] = { + [sym_template_function] = STATE(1140), + [sym__expression] = STATE(1140), + [sym_logical_expression] = STATE(1140), + [sym_bitwise_expression] = STATE(1140), + [sym_cast_expression] = STATE(1140), + [sym_delete_expression] = STATE(1140), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(1144), - [sym_char_literal] = STATE(1144), - [sym_template_function] = STATE(1144), - [sym_conditional_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_relational_expression] = STATE(1144), - [sym_delete_expression] = STATE(1144), - [sym_sizeof_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(1144), - [sym_lambda_expression] = STATE(1144), - [sym_concatenated_string] = STATE(1144), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(1140), + [sym_lambda_expression] = STATE(1140), + [sym_char_literal] = STATE(1140), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(1140), + [sym_equality_expression] = STATE(1140), + [sym_relational_expression] = STATE(1140), + [sym_sizeof_expression] = STATE(1140), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(1144), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(1140), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(1140), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(1140), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(1144), - [sym_math_expression] = STATE(1144), + [sym_shift_expression] = STATE(1140), + [sym_math_expression] = STATE(1140), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(2285), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), - }, - [418] = { - [sym_escape_sequence] = ACTIONS(2289), - [aux_sym_char_literal_token1] = ACTIONS(2291), - [sym_comment] = ACTIONS(244), + [sym_new_expression] = STATE(1140), + [sym_raw_string_literal] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(2289), + [sym_null] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(2287), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, [419] = { - [sym_initializer_list] = STATE(1147), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(545), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym__Atomic] = ACTIONS(545), - [anon_sym_const] = ACTIONS(547), - [anon_sym_GT2] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(2293), - [anon_sym_constexpr] = ACTIONS(545), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(2250), + [sym_escape_sequence] = ACTIONS(2291), + [aux_sym_char_literal_token1] = ACTIONS(2293), + [sym_comment] = ACTIONS(244), }, [420] = { - [sym_argument_list] = STATE(1165), - [aux_sym_template_argument_list_repeat1] = STATE(1166), + [aux_sym_template_argument_list_repeat1] = STATE(1159), + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), @@ -29638,25 +29643,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [421] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(2252), - [anon_sym_LT_LT_EQ] = ACTIONS(2252), - [anon_sym_PERCENT_EQ] = ACTIONS(2252), + [anon_sym_STAR_EQ] = ACTIONS(2254), + [anon_sym_LT_LT_EQ] = ACTIONS(2254), + [anon_sym_PERCENT_EQ] = ACTIONS(2254), [anon_sym_GT2] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(2252), + [anon_sym_CARET_EQ] = ACTIONS(2254), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(2252), - [anon_sym_PLUS_EQ] = ACTIONS(2252), + [anon_sym_SLASH_EQ] = ACTIONS(2254), + [anon_sym_PLUS_EQ] = ACTIONS(2254), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(2252), - [anon_sym_GT_GT_EQ] = ACTIONS(2248), + [anon_sym_PIPE_EQ] = ACTIONS(2254), + [anon_sym_GT_GT_EQ] = ACTIONS(2250), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -29665,69 +29670,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(2252), + [anon_sym_DASH_EQ] = ACTIONS(2254), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(2252), + [anon_sym_AMP_EQ] = ACTIONS(2254), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(2248), + [anon_sym_EQ] = ACTIONS(2250), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, [422] = { - [aux_sym_template_argument_list_repeat1] = STATE(1168), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(2335), - [sym_comment] = ACTIONS(3), + [sym_initializer_list] = STATE(1161), + [sym_template_argument_list] = STATE(1162), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym__Atomic] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_GT2] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_constexpr] = ACTIONS(530), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(2252), }, [423] = { - [sym_template_argument_list] = STATE(1169), - [sym_initializer_list] = STATE(1147), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(545), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym__Atomic] = ACTIONS(545), - [anon_sym_const] = ACTIONS(547), - [anon_sym_GT2] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_constexpr] = ACTIONS(545), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(2250), - }, - [424] = { - [sym_string_literal] = STATE(1170), - [aux_sym_concatenated_string_repeat1] = STATE(1170), + [sym_template_argument_list] = STATE(1163), [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_GT2] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(165), [anon_sym_GT] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(732), [anon_sym_LT_LT] = ACTIONS(165), [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(2258), [anon_sym_PERCENT] = ACTIONS(165), - [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_QMARK] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), @@ -29736,29 +29733,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, + [424] = { + [aux_sym_template_argument_list_repeat1] = STATE(1165), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_GT2] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + }, [425] = { - [sym_template_argument_list] = STATE(1171), + [sym_abstract_reference_declarator] = STATE(321), + [sym_abstract_array_declarator] = STATE(321), + [sym_abstract_pointer_declarator] = STATE(321), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(1166), + [sym__abstract_declarator] = STATE(321), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(544), + [sym_comment] = ACTIONS(3), + }, + [426] = { + [sym_string_literal] = STATE(1167), + [aux_sym_concatenated_string_repeat1] = STATE(1167), [anon_sym_LPAREN2] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_GT2] = ACTIONS(165), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(165), [anon_sym_GT] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(163), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(736), [anon_sym_LT_LT] = ACTIONS(165), [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(2256), [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_GT2] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_QMARK] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_QMARK] = ACTIONS(165), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), @@ -29767,113 +29786,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [426] = { - [sym_abstract_array_declarator] = STATE(1176), - [sym_parameter_list] = STATE(1174), - [sym_abstract_reference_declarator] = STATE(1176), - [sym_abstract_function_declarator] = STATE(1176), - [aux_sym_type_definition_repeat1] = STATE(1175), - [sym_abstract_pointer_declarator] = STATE(1176), - [sym_type_qualifier] = STATE(1175), - [sym__abstract_declarator] = STATE(1176), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(1066), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_restrict] = ACTIONS(1062), - }, [427] = { - [sym_parameter_list] = STATE(361), - [sym_abstract_array_declarator] = STATE(363), - [sym_abstract_pointer_declarator] = STATE(363), - [sym_abstract_reference_declarator] = STATE(363), - [sym_abstract_function_declarator] = STATE(1177), - [sym__abstract_declarator] = STATE(363), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(1170), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(2339), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_long] = ACTIONS(2339), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_GT2] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(2339), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_short] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2343), + [anon_sym_restrict] = ACTIONS(558), }, [428] = { - [anon_sym_COLON_COLON] = ACTIONS(2293), + [sym_abstract_reference_declarator] = STATE(1175), + [aux_sym_type_definition_repeat1] = STATE(1173), + [sym_abstract_array_declarator] = STATE(1175), + [sym_parameter_list] = STATE(1174), + [sym_abstract_function_declarator] = STATE(1175), + [sym_abstract_pointer_declarator] = STATE(1175), + [sym_type_qualifier] = STATE(1173), + [sym__abstract_declarator] = STATE(1175), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_GT2] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(1070), }, [429] = { - [sym_union_specifier] = STATE(1178), - [sym_macro_type_specifier] = STATE(1178), - [sym_class_specifier] = STATE(1178), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1178), - [sym_scoped_namespace_identifier] = STATE(859), + [sym_union_specifier] = STATE(1176), + [sym_macro_type_specifier] = STATE(1176), + [sym_class_specifier] = STATE(1176), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(1176), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym__type_specifier] = STATE(1178), - [sym_enum_specifier] = STATE(1178), - [sym_dependent_type] = STATE(1178), - [sym_struct_specifier] = STATE(1178), - [sym_scoped_type_identifier] = STATE(862), + [sym__type_specifier] = STATE(1176), + [sym_struct_specifier] = STATE(1176), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(1176), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), [sym_type_qualifier] = STATE(388), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(2345), - [anon_sym_signed] = ACTIONS(712), + [sym_dependent_type] = STATE(1176), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(2351), + [anon_sym_signed] = ACTIONS(716), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(712), + [anon_sym_long] = ACTIONS(716), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_class] = ACTIONS(736), - [anon_sym_enum] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_class] = ACTIONS(740), + [anon_sym_enum] = ACTIONS(738), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2345), - [anon_sym_unsigned] = ACTIONS(712), + [sym_primitive_type] = ACTIONS(2351), + [anon_sym_unsigned] = ACTIONS(716), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(712), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(716), [anon_sym_restrict] = ACTIONS(11), }, [430] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1181), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_long] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_GT2] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_short] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(625), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), }, [431] = { - [sym_template_argument_list] = STATE(377), + [sym_initializer_list] = STATE(1161), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym__Atomic] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_GT2] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(530), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(2252), + }, + [432] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -29881,7 +29906,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -29917,180 +29942,180 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [432] = { - [anon_sym_DASH] = ACTIONS(2353), - [sym_raw_string_literal] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [anon_sym_mutable] = ACTIONS(2353), - [sym_null] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_sizeof] = ACTIONS(2353), - [anon_sym_volatile] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_explicit] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2353), - [anon_sym_delete] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), - [anon_sym__Atomic] = ACTIONS(2353), - [sym_number_literal] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_constexpr] = ACTIONS(2353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2353), - [sym_auto] = ACTIONS(2353), - [anon_sym_signed] = ACTIONS(2353), - [anon_sym_long] = ACTIONS(2353), - [anon_sym_COLON_COLON] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2353), - [sym_preproc_directive] = ACTIONS(2353), - [aux_sym_preproc_if_token1] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_typename] = ACTIONS(2353), - [anon_sym_short] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_goto] = ACTIONS(2353), - [sym_operator_name] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [aux_sym_preproc_include_token1] = ACTIONS(2353), - [anon_sym_register] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [sym_primitive_type] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_nullptr] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_template] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [ts_builtin_sym_end] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2353), - }, [433] = { - [sym_template_type] = STATE(71), + [anon_sym_DASH] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2355), + [sym_true] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2355), + [sym_auto] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [aux_sym_preproc_if_token1] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [sym_operator_name] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [sym_primitive_type] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2357), + [ts_builtin_sym_end] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2355), + }, + [434] = { + [sym_template_function] = STATE(72), [sym__expression] = STATE(72), [sym_logical_expression] = STATE(72), [sym_bitwise_expression] = STATE(72), [sym_cast_expression] = STATE(72), - [sym_new_expression] = STATE(72), - [sym_field_expression] = STATE(448), + [sym_delete_expression] = STATE(72), + [sym_field_expression] = STATE(449), [sym_compound_literal_expression] = STATE(72), + [sym_lambda_expression] = STATE(72), [sym_char_literal] = STATE(72), - [sym_template_function] = STATE(72), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(72), [sym_equality_expression] = STATE(72), [sym_relational_expression] = STATE(72), - [sym_delete_expression] = STATE(72), [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(72), - [sym_lambda_expression] = STATE(72), - [sym_concatenated_string] = STATE(72), + [sym_lambda_capture_specifier] = STATE(50), [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), + [sym_concatenated_string] = STATE(72), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(72), - [sym_pointer_expression] = STATE(448), + [sym_pointer_expression] = STATE(449), [sym_shift_expression] = STATE(72), [sym_math_expression] = STATE(72), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(72), [sym_raw_string_literal] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), [sym_true] = ACTIONS(113), [sym_null] = ACTIONS(113), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(109), - [anon_sym_COLON_COLON] = ACTIONS(758), + [anon_sym_COLON_COLON] = ACTIONS(762), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), [sym_false] = ACTIONS(113), - [anon_sym_AMP] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(770), [sym_nullptr] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [434] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(1182), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [435] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1178), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -30098,20 +30123,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -30128,423 +30153,423 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [435] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1184), - [sym_logical_expression] = STATE(1184), - [sym_bitwise_expression] = STATE(1184), - [sym_cast_expression] = STATE(1184), - [sym_new_expression] = STATE(1184), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(1184), - [sym_char_literal] = STATE(1184), - [sym_template_function] = STATE(1184), - [sym_conditional_expression] = STATE(1184), - [sym_equality_expression] = STATE(1184), - [sym_relational_expression] = STATE(1184), - [sym_delete_expression] = STATE(1184), - [sym_sizeof_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_lambda_expression] = STATE(1184), - [sym_concatenated_string] = STATE(1184), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(1184), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(1184), - [sym_math_expression] = STATE(1184), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(2359), - [sym_null] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [436] = { - [sym_identifier] = ACTIONS(2363), - [sym_comment] = ACTIONS(3), + [sym_template_function] = STATE(1180), + [sym__expression] = STATE(1180), + [sym_logical_expression] = STATE(1180), + [sym_bitwise_expression] = STATE(1180), + [sym_cast_expression] = STATE(1180), + [sym_delete_expression] = STATE(1180), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(1180), + [sym_lambda_expression] = STATE(1180), + [sym_char_literal] = STATE(1180), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1180), + [sym_equality_expression] = STATE(1180), + [sym_relational_expression] = STATE(1180), + [sym_sizeof_expression] = STATE(1180), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1180), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(1180), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1180), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(1180), + [sym_math_expression] = STATE(1180), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(1180), + [sym_raw_string_literal] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(2361), + [sym_null] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, [437] = { - [sym_destructor_name] = STATE(166), + [sym_identifier] = ACTIONS(2365), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(640), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(2365), }, [438] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1187), - [sym_logical_expression] = STATE(1187), - [sym_bitwise_expression] = STATE(1187), - [sym_cast_expression] = STATE(1187), - [sym_new_expression] = STATE(1187), + [sym_destructor_name] = STATE(167), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(642), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(2367), + }, + [439] = { + [sym_template_function] = STATE(1183), + [sym__expression] = STATE(1183), + [sym_logical_expression] = STATE(1183), + [sym_bitwise_expression] = STATE(1183), + [sym_cast_expression] = STATE(1183), + [sym_delete_expression] = STATE(1183), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(1187), - [sym_char_literal] = STATE(1187), - [sym_template_function] = STATE(1187), - [sym_conditional_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_relational_expression] = STATE(1187), - [sym_delete_expression] = STATE(1187), - [sym_sizeof_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_lambda_expression] = STATE(1187), - [sym_concatenated_string] = STATE(1187), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(1183), + [sym_lambda_expression] = STATE(1183), + [sym_char_literal] = STATE(1183), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1183), + [sym_equality_expression] = STATE(1183), + [sym_relational_expression] = STATE(1183), + [sym_sizeof_expression] = STATE(1183), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(1187), + [sym_parenthesized_expression] = STATE(1183), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), + [sym_concatenated_string] = STATE(1183), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1183), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(1187), - [sym_math_expression] = STATE(1187), + [sym_shift_expression] = STATE(1183), + [sym_math_expression] = STATE(1183), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(2367), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(2369), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(2367), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(420), + [sym_new_expression] = STATE(1183), + [sym_raw_string_literal] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(2371), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(2369), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(422), }, - [439] = { + [440] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2373), }, - [440] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_new_expression] = STATE(77), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_template_function] = STATE(77), - [sym_conditional_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_delete_expression] = STATE(77), - [sym_sizeof_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_lambda_expression] = STATE(77), - [sym_concatenated_string] = STATE(77), + [441] = { + [sym_template_function] = STATE(78), + [sym__expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_delete_expression] = STATE(78), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(78), + [sym_lambda_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(78), + [sym_lambda_capture_specifier] = STATE(50), [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_concatenated_string] = STATE(78), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(78), [sym_raw_string_literal] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), [sym_true] = ACTIONS(133), [sym_null] = ACTIONS(133), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(131), - [anon_sym_COLON_COLON] = ACTIONS(758), + [anon_sym_COLON_COLON] = ACTIONS(762), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), [sym_false] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(770), [sym_nullptr] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [441] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(190), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_parenthesized_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), + [442] = { + [sym_template_function] = STATE(191), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_char_literal] = STATE(191), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(330), - [sym_null] = ACTIONS(330), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(330), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(191), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(191), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_call_expression] = STATE(191), + [sym_new_expression] = STATE(191), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(332), + [sym_null] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [442] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1199), - [sym_logical_expression] = STATE(1199), - [sym_bitwise_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_new_expression] = STATE(1199), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(1199), - [sym_char_literal] = STATE(1199), - [sym_template_function] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_equality_expression] = STATE(1199), - [sym_relational_expression] = STATE(1199), - [sym_delete_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1199), - [sym_lambda_expression] = STATE(1199), - [sym_concatenated_string] = STATE(1199), + [443] = { + [sym_template_function] = STATE(1195), + [sym__expression] = STATE(1195), + [sym_logical_expression] = STATE(1195), + [sym_bitwise_expression] = STATE(1195), + [sym_cast_expression] = STATE(1195), + [sym_delete_expression] = STATE(1195), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(1195), + [sym_lambda_expression] = STATE(1195), + [sym_char_literal] = STATE(1195), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1195), + [sym_equality_expression] = STATE(1195), + [sym_relational_expression] = STATE(1195), + [sym_sizeof_expression] = STATE(1195), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1195), + [sym_lambda_capture_specifier] = STATE(50), [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(1199), - [sym_math_expression] = STATE(1199), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2391), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(2393), - [sym_true] = ACTIONS(2395), - [sym_null] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(2395), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [sym_concatenated_string] = STATE(1195), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1195), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(1195), + [sym_math_expression] = STATE(1195), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(1195), + [sym_raw_string_literal] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(2395), + [sym_true] = ACTIONS(2397), + [sym_null] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2393), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [443] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), + [444] = { + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(303), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), - [anon_sym_COLON_COLON] = ACTIONS(758), + [sym_number_literal] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(762), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), - }, - [444] = { - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2397), - [anon_sym_EQ_EQ] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_GT_EQ] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_SLASH] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2397), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_PIPE_PIPE] = ACTIONS(2397), - [anon_sym_DOT] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2397), - [anon_sym_BANG_EQ] = ACTIONS(2397), - [anon_sym_LT_EQ] = ACTIONS(2397), - [anon_sym_AMP_AMP] = ACTIONS(2397), - [anon_sym_DASH_GT] = ACTIONS(2397), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_RPAREN] = ACTIONS(2397), - [anon_sym_GT_GT] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, [445] = { - [sym_template_argument_list] = STATE(377), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2399), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_COLON] = ACTIONS(2399), + [anon_sym_CARET] = ACTIONS(2399), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_DOT] = ACTIONS(2399), + [anon_sym_LT_LT] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_PERCENT] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_DASH_GT] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_GT_GT] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2399), + }, + [446] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(2401), - [anon_sym_LT_LT_EQ] = ACTIONS(2401), - [anon_sym_PERCENT_EQ] = ACTIONS(2401), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(2403), + [anon_sym_LT_LT_EQ] = ACTIONS(2403), + [anon_sym_PERCENT_EQ] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(2401), + [anon_sym_CARET_EQ] = ACTIONS(2403), [anon_sym_AMP] = ACTIONS(163), [anon_sym_RBRACE] = ACTIONS(165), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(2401), - [anon_sym_PLUS_EQ] = ACTIONS(2401), + [anon_sym_SLASH_EQ] = ACTIONS(2403), + [anon_sym_PLUS_EQ] = ACTIONS(2403), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(2401), - [anon_sym_GT_GT_EQ] = ACTIONS(2401), + [anon_sym_PIPE_EQ] = ACTIONS(2403), + [anon_sym_GT_GT_EQ] = ACTIONS(2403), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -30553,101 +30578,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(2401), + [anon_sym_DASH_EQ] = ACTIONS(2403), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(2401), + [anon_sym_AMP_EQ] = ACTIONS(2403), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(2405), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [446] = { - [sym_union_specifier] = STATE(1203), - [sym_macro_type_specifier] = STATE(1203), - [sym_class_specifier] = STATE(1203), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1203), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1203), - [aux_sym_sized_type_specifier_repeat1] = STATE(1202), - [sym_argument_list] = STATE(1204), - [sym_enum_specifier] = STATE(1203), - [sym_struct_specifier] = STATE(1203), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(1203), - [anon_sym_LPAREN2] = ACTIONS(358), + [447] = { + [sym_union_specifier] = STATE(1199), + [sym_macro_type_specifier] = STATE(1199), + [sym_class_specifier] = STATE(1199), + [aux_sym_sized_type_specifier_repeat1] = STATE(1198), + [sym_sized_type_specifier] = STATE(1199), + [sym__type_specifier] = STATE(1199), + [sym_argument_list] = STATE(1200), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(1199), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1199), + [sym_struct_specifier] = STATE(1199), + [anon_sym_LPAREN2] = ACTIONS(360), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2407), - [anon_sym_long] = ACTIONS(2407), + [sym_auto] = ACTIONS(2407), + [anon_sym_signed] = ACTIONS(2409), + [anon_sym_long] = ACTIONS(2409), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2407), + [sym_primitive_type] = ACTIONS(2407), + [anon_sym_unsigned] = ACTIONS(2409), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2409), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(2407), - }, - [447] = { - [sym_argument_list] = STATE(341), - [aux_sym_initializer_list_repeat1] = STATE(1217), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(2417), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_typename] = ACTIONS(2411), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(2409), }, [448] = { + [aux_sym_initializer_list_repeat1] = STATE(1213), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(2419), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [449] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(2401), - [anon_sym_LT_LT_EQ] = ACTIONS(2401), - [anon_sym_PERCENT_EQ] = ACTIONS(2401), + [anon_sym_STAR_EQ] = ACTIONS(2403), + [anon_sym_LT_LT_EQ] = ACTIONS(2403), + [anon_sym_PERCENT_EQ] = ACTIONS(2403), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(2401), + [anon_sym_CARET_EQ] = ACTIONS(2403), [anon_sym_AMP] = ACTIONS(163), [anon_sym_RBRACE] = ACTIONS(165), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(2401), - [anon_sym_PLUS_EQ] = ACTIONS(2401), + [anon_sym_SLASH_EQ] = ACTIONS(2403), + [anon_sym_PLUS_EQ] = ACTIONS(2403), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(2401), - [anon_sym_GT_GT_EQ] = ACTIONS(2401), + [anon_sym_PIPE_EQ] = ACTIONS(2403), + [anon_sym_GT_GT_EQ] = ACTIONS(2403), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -30656,29 +30681,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(2401), + [anon_sym_DASH_EQ] = ACTIONS(2403), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(2401), + [anon_sym_AMP_EQ] = ACTIONS(2403), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(2405), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [449] = { - [sym_subscript_designator] = STATE(1220), - [sym_field_designator] = STATE(1220), - [aux_sym_initializer_pair_repeat1] = STATE(1220), - [anon_sym_LBRACK] = ACTIONS(2439), - [anon_sym_EQ] = ACTIONS(2441), - [anon_sym_DOT] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - }, [450] = { - [sym_string_literal] = STATE(1221), - [aux_sym_concatenated_string_repeat1] = STATE(1221), + [sym_string_literal] = STATE(1214), + [aux_sym_concatenated_string_repeat1] = STATE(1214), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(165), @@ -30710,163 +30726,172 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(165), }, [451] = { - [aux_sym_initializer_list_repeat1] = STATE(1217), + [aux_sym_initializer_list_repeat1] = STATE(1213), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_COMMA] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2373), }, [452] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1222), - [sym_logical_expression] = STATE(1222), - [sym_bitwise_expression] = STATE(1222), - [sym_cast_expression] = STATE(1222), - [sym_new_expression] = STATE(1222), + [sym_subscript_designator] = STATE(1217), + [sym_field_designator] = STATE(1217), + [aux_sym_initializer_pair_repeat1] = STATE(1217), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(2443), + [anon_sym_DOT] = ACTIONS(2445), + [sym_comment] = ACTIONS(3), + }, + [453] = { + [sym_template_function] = STATE(1218), + [sym__expression] = STATE(1218), + [sym_logical_expression] = STATE(1218), + [sym_bitwise_expression] = STATE(1218), + [sym_cast_expression] = STATE(1218), + [sym_delete_expression] = STATE(1218), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1222), - [sym_char_literal] = STATE(1222), - [sym_template_function] = STATE(1222), - [sym_conditional_expression] = STATE(1222), - [sym_equality_expression] = STATE(1222), - [sym_relational_expression] = STATE(1222), - [sym_delete_expression] = STATE(1222), - [sym_sizeof_expression] = STATE(1222), - [sym_parenthesized_expression] = STATE(1222), - [sym_lambda_expression] = STATE(1222), - [sym_concatenated_string] = STATE(1222), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(1218), + [sym_lambda_expression] = STATE(1218), + [sym_char_literal] = STATE(1218), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1218), + [sym_equality_expression] = STATE(1218), + [sym_relational_expression] = STATE(1218), + [sym_sizeof_expression] = STATE(1218), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(1222), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1218), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(1218), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1218), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1222), - [sym_math_expression] = STATE(1222), + [sym_shift_expression] = STATE(1218), + [sym_math_expression] = STATE(1218), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(2445), + [sym_new_expression] = STATE(1218), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(2447), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(2447), + [sym_true] = ACTIONS(2449), [anon_sym_DASH_DASH] = ACTIONS(45), - [sym_null] = ACTIONS(2447), + [sym_null] = ACTIONS(2449), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2445), + [sym_number_literal] = ACTIONS(2447), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1343), [anon_sym_BANG] = ACTIONS(15), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(2447), - [sym_nullptr] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(2449), + [sym_nullptr] = ACTIONS(2449), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1343), [anon_sym_TILDE] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1343), [sym_identifier] = ACTIONS(123), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(25), }, - [453] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2449), - }, [454] = { - [anon_sym_DASH] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2453), - [sym_true] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [sym_null] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_sizeof] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_typedef] = ACTIONS(2451), - [anon_sym_switch] = ACTIONS(2451), - [anon_sym_explicit] = ACTIONS(2451), - [sym_identifier] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [sym_number_literal] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(2451), - [sym_auto] = ACTIONS(2451), - [anon_sym_signed] = ACTIONS(2451), - [anon_sym_long] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2451), - [sym_preproc_directive] = ACTIONS(2451), - [aux_sym_preproc_if_token1] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_typename] = ACTIONS(2451), - [anon_sym_short] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [sym_operator_name] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [aux_sym_preproc_include_token1] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [sym_primitive_type] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nullptr] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_SEMI] = ACTIONS(2453), - [ts_builtin_sym_end] = ACTIONS(2453), - [aux_sym_preproc_def_token1] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_restrict] = ACTIONS(2451), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2451), }, [455] = { - [sym_union_specifier] = STATE(1225), - [sym_macro_type_specifier] = STATE(1225), - [sym_class_specifier] = STATE(1225), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1225), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(1224), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(1225), - [sym_enum_specifier] = STATE(1225), - [sym_dependent_type] = STATE(1225), - [sym_struct_specifier] = STATE(1225), - [sym_scoped_type_identifier] = STATE(87), - [sym_type_qualifier] = STATE(1224), + [anon_sym_DASH] = ACTIONS(2453), + [sym_raw_string_literal] = ACTIONS(2455), + [sym_true] = ACTIONS(2453), + [anon_sym_mutable] = ACTIONS(2453), + [sym_null] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_sizeof] = ACTIONS(2453), + [anon_sym_volatile] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_typedef] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_explicit] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2453), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2453), + [anon_sym__Atomic] = ACTIONS(2453), + [sym_number_literal] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_constexpr] = ACTIONS(2453), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2455), + [anon_sym_namespace] = ACTIONS(2453), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2453), + [sym_auto] = ACTIONS(2453), + [anon_sym_signed] = ACTIONS(2453), + [anon_sym_long] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2455), + [anon_sym_using] = ACTIONS(2453), + [sym_preproc_directive] = ACTIONS(2453), + [aux_sym_preproc_if_token1] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_typename] = ACTIONS(2453), + [anon_sym_short] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [sym_operator_name] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [aux_sym_preproc_include_token1] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [sym_primitive_type] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nullptr] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_template] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [ts_builtin_sym_end] = ACTIONS(2455), + [aux_sym_preproc_def_token1] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2453), + }, + [456] = { + [sym_union_specifier] = STATE(1221), + [sym_macro_type_specifier] = STATE(1221), + [sym_class_specifier] = STATE(1221), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(1221), + [aux_sym_type_definition_repeat1] = STATE(1220), + [sym__type_specifier] = STATE(1221), + [sym_struct_specifier] = STATE(1221), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(1221), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_type_qualifier] = STATE(1220), + [sym_dependent_type] = STATE(1221), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2455), + [sym_auto] = ACTIONS(2457), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -30876,7 +30901,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2457), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -30887,14 +30912,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [456] = { - [sym_parenthesized_expression] = STATE(1226), + [457] = { + [sym_parenthesized_expression] = STATE(1222), [anon_sym_LPAREN2] = ACTIONS(157), [sym_comment] = ACTIONS(3), }, - [457] = { - [sym_template_argument_list] = STATE(99), + [458] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(101), [anon_sym_LPAREN2] = ACTIONS(159), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -30917,7 +30942,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(2457), + [anon_sym_COLON] = ACTIONS(2459), [anon_sym_explicit] = ACTIONS(169), [sym_identifier] = ACTIONS(169), [anon_sym_SLASH_EQ] = ACTIONS(167), @@ -30952,16 +30977,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [458] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2459), - }, [459] = { - [sym_identifier] = ACTIONS(2461), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2461), }, [460] = { - [sym_string_literal] = STATE(1230), + [sym_identifier] = ACTIONS(2463), + [sym_comment] = ACTIONS(3), + }, + [461] = { + [sym_string_literal] = STATE(1226), [anon_sym_LPAREN2] = ACTIONS(200), [anon_sym_struct] = ACTIONS(202), [sym_auto] = ACTIONS(202), @@ -30983,6 +31008,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(202), [anon_sym_const] = ACTIONS(202), [anon_sym_extern] = ACTIONS(202), + [anon_sym_LBRACK] = ACTIONS(200), [anon_sym_DQUOTE] = ACTIONS(204), [anon_sym_enum] = ACTIONS(202), [anon_sym_class] = ACTIONS(202), @@ -30995,101 +31021,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(202), [anon_sym_restrict] = ACTIONS(202), }, - [461] = { - [sym_declaration_list] = STATE(1233), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - }, [462] = { - [sym_preproc_arg] = ACTIONS(2467), + [sym_declaration_list] = STATE(1229), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2467), }, [463] = { - [sym_goto_statement] = STATE(1236), - [sym_preproc_function_def] = STATE(1236), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(1236), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(1236), + [sym_preproc_arg] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), + }, + [464] = { + [sym_goto_statement] = STATE(1232), + [sym_preproc_function_def] = STATE(1232), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(1232), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(1236), - [sym_return_statement] = STATE(1236), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1232), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(1232), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(1232), + [sym_namespace_definition] = STATE(1232), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(1236), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1236), - [sym_break_statement] = STATE(1236), - [sym_preproc_include] = STATE(1236), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(1236), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(1236), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(1232), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1232), + [sym_constructor_or_destructor_definition] = STATE(1232), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(1232), + [sym_preproc_include] = STATE(1232), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(1232), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(1232), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(1236), - [sym_template_instantiation] = STATE(1236), - [sym_constructor_or_destructor_definition] = STATE(1236), - [sym_expression_statement] = STATE(1236), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(1236), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(1236), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(1236), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(1236), - [aux_sym_translation_unit_repeat1] = STATE(1236), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(1236), - [sym_if_statement] = STATE(1236), - [sym_for_statement] = STATE(1236), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(1236), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(1236), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(1236), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(1236), - [sym_preproc_if] = STATE(1236), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(1232), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(1232), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(1232), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(1232), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(1232), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1232), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(1232), + [sym_preproc_if] = STATE(1232), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1236), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(1236), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(1236), - [sym_while_statement] = STATE(1236), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(1232), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1232), + [aux_sym_translation_unit_repeat1] = STATE(1232), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -31131,7 +31157,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2471), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -31163,131 +31189,131 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [464] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(1239), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(2471), - [anon_sym_namespace] = ACTIONS(2473), + [465] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(1235), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2475), [sym_comment] = ACTIONS(3), }, - [465] = { - [sym_goto_statement] = STATE(1266), - [sym_preproc_function_def] = STATE(1266), - [sym_logical_expression] = STATE(1265), - [sym_for_range_loop] = STATE(1266), - [sym_cast_expression] = STATE(1265), - [sym_declaration] = STATE(1266), + [466] = { + [sym_goto_statement] = STATE(1265), + [sym_preproc_function_def] = STATE(1265), + [sym_logical_expression] = STATE(1262), + [sym_try_statement] = STATE(1265), + [sym_cast_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(1263), - [sym_type_qualifier] = STATE(1263), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(1266), - [sym_return_statement] = STATE(1266), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1265), + [aux_sym_function_definition_repeat1] = STATE(1259), + [sym_type_qualifier] = STATE(1261), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(1265), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(1265), + [sym_namespace_definition] = STATE(1265), + [sym_conditional_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(1266), - [sym_function_declarator] = STATE(1264), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1266), - [sym_break_statement] = STATE(1266), - [sym_preproc_include] = STATE(1266), - [sym_assignment_expression] = STATE(1265), - [sym_preproc_ifdef] = STATE(1266), - [sym_shift_expression] = STATE(1265), - [sym_using_declaration] = STATE(1266), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(1265), + [sym_function_declarator] = STATE(1260), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1265), + [sym_constructor_or_destructor_definition] = STATE(1265), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(1265), + [sym_preproc_include] = STATE(1265), + [sym_assignment_expression] = STATE(1262), + [sym_preproc_ifdef] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_for_range_loop] = STATE(1265), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(1269), - [sym_compound_statement] = STATE(1266), - [sym_template_instantiation] = STATE(1266), - [sym_constructor_or_destructor_definition] = STATE(1266), - [sym_expression_statement] = STATE(1266), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(1266), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(1265), - [sym_preproc_def] = STATE(1266), - [sym_bitwise_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), - [sym_function_definition] = STATE(1266), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(1265), - [sym_char_literal] = STATE(1265), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(1266), - [aux_sym_translation_unit_repeat1] = STATE(1266), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(1263), - [sym_alias_declaration] = STATE(1266), - [sym_if_statement] = STATE(1266), - [sym_for_statement] = STATE(1266), - [sym_comma_expression] = STATE(1267), - [sym_preproc_call] = STATE(1266), - [sym_equality_expression] = STATE(1265), - [sym_try_statement] = STATE(1266), - [sym_sizeof_expression] = STATE(1265), - [sym__declaration_specifiers] = STATE(1268), - [sym_parenthesized_expression] = STATE(1265), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(1265), - [aux_sym_function_definition_repeat1] = STATE(1269), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(1265), - [sym_structured_binding_declaration] = STATE(1266), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(1266), - [sym_preproc_if] = STATE(1266), + [aux_sym__declaration_specifiers_repeat1] = STATE(1261), + [sym_compound_statement] = STATE(1265), + [sym_expression_statement] = STATE(1265), + [sym_do_statement] = STATE(1265), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(1262), + [sym_preproc_def] = STATE(1265), + [sym_bitwise_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), + [sym_function_definition] = STATE(1265), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(1265), + [sym_storage_class_specifier] = STATE(1261), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(1265), + [sym_for_statement] = STATE(1265), + [sym_comma_expression] = STATE(1263), + [sym_preproc_call] = STATE(1265), + [sym_equality_expression] = STATE(1262), + [sym_using_declaration] = STATE(1265), + [sym_sizeof_expression] = STATE(1262), + [sym__declaration_specifiers] = STATE(1264), + [sym_parenthesized_expression] = STATE(1262), + [sym_attribute] = STATE(1259), + [sym_concatenated_string] = STATE(1262), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1265), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(1265), + [sym_preproc_if] = STATE(1265), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1266), - [sym_math_expression] = STATE(1265), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(1266), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(1266), - [sym_while_statement] = STATE(1266), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(1265), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1265), + [aux_sym_translation_unit_repeat1] = STATE(1265), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(1265), + [sym_while_statement] = STATE(1265), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2479), - [aux_sym_preproc_if_token2] = ACTIONS(2481), + [sym_null] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), + [aux_sym_preproc_if_token2] = ACTIONS(2483), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2487), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(2489), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2493), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2495), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2493), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -31295,9 +31321,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(2499), - [sym_preproc_directive] = ACTIONS(2501), - [aux_sym_preproc_if_token1] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2501), + [sym_preproc_directive] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2505), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -31305,571 +31331,651 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [aux_sym_preproc_include_token1] = ACTIONS(2515), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(2523), - [aux_sym_preproc_def_token1] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [aux_sym_preproc_def_token1] = ACTIONS(2527), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [466] = { - [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(2527), - [sym_preproc_arg] = ACTIONS(2529), - }, [467] = { + [sym_comment] = ACTIONS(244), + [anon_sym_LF] = ACTIONS(2529), [sym_preproc_arg] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), }, [468] = { - [sym_identifier] = ACTIONS(2533), + [sym_preproc_arg] = ACTIONS(2533), [sym_comment] = ACTIONS(3), }, [469] = { - [sym_parenthesized_expression] = STATE(1274), - [anon_sym_LPAREN2] = ACTIONS(372), + [sym_identifier] = ACTIONS(2535), [sym_comment] = ACTIONS(3), }, [470] = { - [sym_compound_statement] = STATE(1275), - [anon_sym_LBRACE] = ACTIONS(374), + [sym_parenthesized_expression] = STATE(1270), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, [471] = { - [anon_sym_LPAREN2] = ACTIONS(2535), + [sym_compound_statement] = STATE(1271), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, [472] = { - [sym_string_literal] = STATE(1277), + [anon_sym_LPAREN2] = ACTIONS(2537), [sym_comment] = ACTIONS(3), - [sym_system_lib_string] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(2539), }, [473] = { - [anon_sym_LPAREN2] = ACTIONS(2541), - [anon_sym_constexpr] = ACTIONS(2543), + [sym_string_literal] = STATE(1273), [sym_comment] = ACTIONS(3), + [sym_system_lib_string] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2541), }, [474] = { - [sym_do_statement] = STATE(1281), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_constexpr] = ACTIONS(2545), + [sym_comment] = ACTIONS(3), + }, + [475] = { + [sym_do_statement] = STATE(1277), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(1281), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(1281), - [sym_if_statement] = STATE(1281), - [sym_switch_statement] = STATE(1281), - [sym_for_statement] = STATE(1281), - [sym_return_statement] = STATE(1281), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(1277), + [sym_try_statement] = STATE(1277), + [sym_if_statement] = STATE(1277), + [sym_switch_statement] = STATE(1277), + [sym_for_statement] = STATE(1277), + [sym_return_statement] = STATE(1277), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(1281), - [sym_break_statement] = STATE(1281), - [sym_continue_statement] = STATE(1281), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(1277), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(1281), - [sym_labeled_statement] = STATE(1281), - [sym_expression_statement] = STATE(1281), - [sym_while_statement] = STATE(1281), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(1277), + [sym_for_range_loop] = STATE(1277), + [sym_compound_statement] = STATE(1277), + [sym_labeled_statement] = STATE(1277), + [sym_expression_statement] = STATE(1277), + [sym_while_statement] = STATE(1277), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [475] = { - [sym_function_declarator] = STATE(1282), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(279), - [sym_destructor_name] = STATE(1282), - [sym__declarator] = STATE(1282), - [sym_array_declarator] = STATE(1282), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_pointer_declarator] = STATE(1282), - [sym_scoped_namespace_identifier] = STATE(282), - [sym_template_function] = STATE(1282), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_template_parameter_list] = STATE(1283), - [sym__declaration_specifiers] = STATE(1284), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(1282), - [anon_sym_LPAREN2] = ACTIONS(456), + [476] = { + [sym_template_function] = STATE(1278), + [sym_macro_type_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(1278), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(1278), + [sym_array_declarator] = STATE(1278), + [sym_template_type] = STATE(284), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_destructor_name] = STATE(1278), + [sym_type_qualifier] = STATE(285), + [sym_pointer_declarator] = STATE(1278), + [sym_structured_binding_declarator] = STATE(1278), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_template_parameter_list] = STATE(1279), + [sym__declaration_specifiers] = STATE(1280), + [sym_scoped_namespace_identifier] = STATE(288), + [sym_function_declarator] = STATE(1278), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(466), + [anon_sym_long] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(468), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(470), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(472), - [anon_sym_short] = ACTIONS(460), - [sym_operator_name] = ACTIONS(2545), + [sym_identifier] = ACTIONS(474), + [anon_sym_short] = ACTIONS(462), + [sym_operator_name] = ACTIONS(2547), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_AMP_AMP] = ACTIONS(480), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [476] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1286), - [sym_logical_expression] = STATE(1286), - [sym_bitwise_expression] = STATE(1286), - [sym_cast_expression] = STATE(1286), - [sym_new_expression] = STATE(1286), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1286), - [sym_char_literal] = STATE(1286), - [sym_template_function] = STATE(1286), - [sym_conditional_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_relational_expression] = STATE(1286), - [sym_delete_expression] = STATE(1286), - [sym_sizeof_expression] = STATE(1286), - [sym_parenthesized_expression] = STATE(1286), - [sym_initializer_list] = STATE(1287), - [sym_concatenated_string] = STATE(1286), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(1286), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1286), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1286), - [sym_math_expression] = STATE(1286), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(2549), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), - }, [477] = { - [anon_sym_DASH] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(514), - [anon_sym_else] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [anon_sym_mutable] = ACTIONS(512), - [sym_null] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [aux_sym_preproc_if_token2] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_sizeof] = ACTIONS(512), - [anon_sym_volatile] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_typedef] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(512), - [anon_sym_explicit] = ACTIONS(512), - [sym_identifier] = ACTIONS(512), - [anon_sym_delete] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(512), - [anon_sym__Atomic] = ACTIONS(512), - [sym_number_literal] = ACTIONS(514), - [anon_sym_extern] = ACTIONS(512), - [anon_sym_enum] = ACTIONS(512), - [anon_sym_constexpr] = ACTIONS(512), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(514), - [anon_sym_namespace] = ACTIONS(512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(512), - [aux_sym_preproc_elif_token1] = ACTIONS(512), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(514), - [anon_sym_DASH_DASH] = ACTIONS(514), - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(512), - [sym_auto] = ACTIONS(512), - [anon_sym_signed] = ACTIONS(512), - [anon_sym_long] = ACTIONS(512), - [anon_sym_COLON_COLON] = ACTIONS(514), - [anon_sym_using] = ACTIONS(512), - [aux_sym_preproc_else_token1] = ACTIONS(512), - [sym_preproc_directive] = ACTIONS(512), - [aux_sym_preproc_if_token1] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_static] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_union] = ACTIONS(512), - [anon_sym_typename] = ACTIONS(512), - [anon_sym_short] = ACTIONS(512), - [anon_sym_new] = ACTIONS(512), - [anon_sym_goto] = ACTIONS(512), - [sym_operator_name] = ACTIONS(514), - [anon_sym_while] = ACTIONS(512), - [anon_sym_try] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [aux_sym_preproc_include_token1] = ACTIONS(512), - [anon_sym_register] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(514), - [anon_sym_const] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_class] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [sym_primitive_type] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_nullptr] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_template] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [aux_sym_preproc_def_token1] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(514), - [anon_sym_inline] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(514), - [anon_sym_restrict] = ACTIONS(512), + [sym_template_function] = STATE(1282), + [sym__expression] = STATE(1282), + [sym_logical_expression] = STATE(1282), + [sym_bitwise_expression] = STATE(1282), + [sym_cast_expression] = STATE(1282), + [sym_delete_expression] = STATE(1282), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1282), + [sym_lambda_expression] = STATE(1282), + [sym_char_literal] = STATE(1282), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1282), + [sym_equality_expression] = STATE(1282), + [sym_relational_expression] = STATE(1282), + [sym_sizeof_expression] = STATE(1282), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1283), + [sym_parenthesized_expression] = STATE(1282), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1282), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1282), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1282), + [sym_math_expression] = STATE(1282), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1282), + [sym_raw_string_literal] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(2553), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(175), }, [478] = { - [sym_identifier] = ACTIONS(2553), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(516), + [sym_raw_string_literal] = ACTIONS(518), + [anon_sym_else] = ACTIONS(516), + [sym_true] = ACTIONS(516), + [anon_sym_mutable] = ACTIONS(516), + [sym_null] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [aux_sym_preproc_if_token2] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_sizeof] = ACTIONS(516), + [anon_sym_volatile] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_typedef] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(516), + [anon_sym_explicit] = ACTIONS(516), + [sym_identifier] = ACTIONS(516), + [anon_sym_delete] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(516), + [anon_sym__Atomic] = ACTIONS(516), + [sym_number_literal] = ACTIONS(518), + [anon_sym_extern] = ACTIONS(516), + [anon_sym_enum] = ACTIONS(516), + [anon_sym_constexpr] = ACTIONS(516), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(518), + [anon_sym_namespace] = ACTIONS(516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(516), + [aux_sym_preproc_elif_token1] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [anon_sym_LPAREN2] = ACTIONS(518), + [anon_sym_struct] = ACTIONS(516), + [sym_auto] = ACTIONS(516), + [anon_sym_signed] = ACTIONS(516), + [anon_sym_long] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(518), + [anon_sym_using] = ACTIONS(516), + [aux_sym_preproc_else_token1] = ACTIONS(516), + [sym_preproc_directive] = ACTIONS(516), + [aux_sym_preproc_if_token1] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_static] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_union] = ACTIONS(516), + [anon_sym_typename] = ACTIONS(516), + [anon_sym_short] = ACTIONS(516), + [anon_sym_new] = ACTIONS(516), + [anon_sym_goto] = ACTIONS(516), + [sym_operator_name] = ACTIONS(518), + [anon_sym_while] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [aux_sym_preproc_include_token1] = ACTIONS(516), + [anon_sym_register] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_const] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_class] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [sym_primitive_type] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_nullptr] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_template] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [aux_sym_preproc_def_token1] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_inline] = ACTIONS(516), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_restrict] = ACTIONS(516), }, [479] = { - [aux_sym_preproc_if_token2] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2555), [sym_comment] = ACTIONS(3), }, [480] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_struct_specifier] = STATE(280), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(1285), + [sym_scoped_namespace_identifier] = STATE(92), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(462), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(472), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(462), + [anon_sym_restrict] = ACTIONS(11), + }, + [481] = { + [aux_sym_preproc_if_token2] = ACTIONS(2557), + [sym_comment] = ACTIONS(3), + }, + [482] = { + [sym_compound_statement] = STATE(1288), + [sym_field_initializer_list] = STATE(1289), + [sym_delete_method_clause] = STATE(1288), + [sym_default_method_clause] = STATE(1288), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(834), + [sym_comment] = ACTIONS(3), + }, + [483] = { + [sym_template_function] = STATE(60), + [sym_macro_type_specifier] = STATE(334), + [sym_class_specifier] = STATE(334), + [sym_sized_type_specifier] = STATE(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym__type_specifier] = STATE(334), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(60), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(60), + [sym_array_declarator] = STATE(60), + [sym_template_type] = STATE(335), + [sym_storage_class_specifier] = STATE(336), + [sym_dependent_type] = STATE(334), + [sym_struct_specifier] = STATE(334), + [sym_union_specifier] = STATE(334), + [sym_destructor_name] = STATE(60), + [sym_type_qualifier] = STATE(336), + [sym_pointer_declarator] = STATE(60), + [sym_structured_binding_declarator] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(336), + [sym_enum_specifier] = STATE(334), + [sym_scoped_namespace_identifier] = STATE(337), [sym_function_declarator] = STATE(1290), - [sym_macro_type_specifier] = STATE(312), - [sym_class_specifier] = STATE(312), - [sym_template_type] = STATE(311), - [sym_sized_type_specifier] = STATE(312), - [sym__type_specifier] = STATE(312), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_array_declarator] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(313), - [sym_storage_class_specifier] = STATE(313), - [sym_dependent_type] = STATE(312), - [sym_struct_specifier] = STATE(312), - [sym_union_specifier] = STATE(312), - [sym_type_qualifier] = STATE(313), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(314), - [sym_template_function] = STATE(56), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(312), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(56), - [anon_sym_LPAREN2] = ACTIONS(456), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(526), + [sym_auto] = ACTIONS(569), [anon_sym_signed] = ACTIONS(35), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(530), + [sym_identifier] = ACTIONS(573), [anon_sym_short] = ACTIONS(35), [sym_operator_name] = ACTIONS(75), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(526), + [sym_primitive_type] = ACTIONS(569), [anon_sym_unsigned] = ACTIONS(35), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [481] = { - [sym_compound_statement] = STATE(1292), - [sym_field_initializer_list] = STATE(1293), - [sym_default_method_clause] = STATE(1292), - [sym_delete_method_clause] = STATE(1292), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(830), + [484] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [485] = { [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2561), }, - [482] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [486] = { + [sym_template_function] = STATE(1293), + [sym_destructor_name] = STATE(1293), + [sym_pointer_declarator] = STATE(1293), + [sym_structured_binding_declarator] = STATE(1293), + [sym__declarator] = STATE(1293), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(1293), + [sym_array_declarator] = STATE(1293), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(1294), + [sym_function_declarator] = STATE(1293), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(2565), + [sym_comment] = ACTIONS(3), }, - [483] = { + [487] = { [sym_goto_statement] = STATE(1296), [sym_preproc_function_def] = STATE(1296), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(1296), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(1296), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(1296), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1296), + [aux_sym_function_definition_repeat1] = STATE(480), [sym_preproc_elif] = STATE(1295), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), [sym_switch_statement] = STATE(1296), + [sym_structured_binding_declarator] = STATE(60), [sym_return_statement] = STATE(1296), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_namespace_definition] = STATE(1296), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(51), [sym_type_definition] = STATE(1296), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1296), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1296), + [sym_constructor_or_destructor_definition] = STATE(1296), + [sym_reference_declarator] = STATE(60), [sym_break_statement] = STATE(1296), [sym_preproc_include] = STATE(1296), - [sym_assignment_expression] = STATE(482), + [sym_assignment_expression] = STATE(484), [sym_preproc_ifdef] = STATE(1296), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(1296), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(1296), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), [sym_compound_statement] = STATE(1296), - [sym_template_instantiation] = STATE(1296), - [sym_constructor_or_destructor_definition] = STATE(1296), [sym_expression_statement] = STATE(1296), - [sym_reference_declarator] = STATE(56), [sym_do_statement] = STATE(1296), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), [sym_preproc_def] = STATE(1296), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_function_definition] = STATE(1296), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), [sym__empty_declaration] = STATE(1296), - [aux_sym_translation_unit_repeat1] = STATE(1296), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(1296), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), [sym_preproc_else] = STATE(1295), [sym_if_statement] = STATE(1296), [sym_for_statement] = STATE(1296), - [sym_comma_expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_preproc_call] = STATE(1296), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(1296), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(1296), - [sym_sized_type_specifier] = STATE(53), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(1296), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1296), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), [sym_continue_statement] = STATE(1296), [sym_preproc_if] = STATE(1296), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1296), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), [sym_linkage_specification] = STATE(1296), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1296), + [aux_sym_translation_unit_repeat1] = STATE(1296), + [sym_enum_specifier] = STATE(55), [sym_labeled_statement] = STATE(1296), [sym_while_statement] = STATE(1296), - [sym_raw_string_literal] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(2561), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(2567), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -31877,10 +31983,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -31888,416 +31994,341 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [484] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2559), - }, - [485] = { - [sym_reference_declarator] = STATE(1299), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(1299), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_structured_binding_reference_declarator] = STATE(1298), - [sym_template_function] = STATE(1299), - [sym_destructor_name] = STATE(1299), - [sym__declarator] = STATE(1299), - [sym_init_declarator] = STATE(1300), - [sym_array_declarator] = STATE(1299), - [sym_structured_binding_declarator] = STATE(1298), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(1299), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(605), - [sym_operator_name] = ACTIONS(2565), - [sym_comment] = ACTIONS(3), - }, - [486] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(278), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(1301), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), - [anon_sym_restrict] = ACTIONS(11), - }, - [487] = { - [anon_sym_struct] = ACTIONS(1319), - [sym_auto] = ACTIONS(1319), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_mutable] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym_COLON_COLON] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_class] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_typename] = ACTIONS(1319), - [anon_sym_explicit] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_inline] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1319), - [anon_sym_restrict] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1317), - }, [488] = { - [aux_sym_string_literal_repeat1] = STATE(731), - [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(1327), + [sym_auto] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_mutable] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_typename] = ACTIONS(1327), + [anon_sym_explicit] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), }, [489] = { - [anon_sym_DASH] = ACTIONS(2569), - [sym_raw_string_literal] = ACTIONS(2571), - [sym_true] = ACTIONS(2569), - [anon_sym_mutable] = ACTIONS(2569), - [sym_null] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_sizeof] = ACTIONS(2569), - [anon_sym_volatile] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_typedef] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_explicit] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2569), - [anon_sym_delete] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2569), - [anon_sym__Atomic] = ACTIONS(2569), - [sym_number_literal] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_constexpr] = ACTIONS(2569), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2571), - [anon_sym_namespace] = ACTIONS(2569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2569), - [sym_auto] = ACTIONS(2569), - [anon_sym_signed] = ACTIONS(2569), - [anon_sym_long] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2571), - [anon_sym_using] = ACTIONS(2569), - [sym_preproc_directive] = ACTIONS(2569), - [aux_sym_preproc_if_token1] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2569), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_short] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_goto] = ACTIONS(2569), - [sym_operator_name] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [aux_sym_preproc_include_token1] = ACTIONS(2569), - [anon_sym_register] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [sym_primitive_type] = ACTIONS(2569), - [sym_false] = ACTIONS(2569), - [sym_nullptr] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [ts_builtin_sym_end] = ACTIONS(2571), - [aux_sym_preproc_def_token1] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2569), + [aux_sym_string_literal_repeat1] = STATE(732), + [sym_comment] = ACTIONS(244), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(2569), }, [490] = { - [sym_reference_declarator] = STATE(352), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(352), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(352), - [sym_destructor_name] = STATE(352), - [sym__declarator] = STATE(352), - [sym_init_declarator] = STATE(353), - [sym_array_declarator] = STATE(352), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(352), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(607), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(2571), + [sym_raw_string_literal] = ACTIONS(2573), + [sym_true] = ACTIONS(2571), + [anon_sym_mutable] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_explicit] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_constexpr] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2571), + [sym_auto] = ACTIONS(2571), + [anon_sym_signed] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [aux_sym_preproc_if_token1] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_typename] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [sym_operator_name] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [aux_sym_preproc_include_token1] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_nullptr] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_template] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2573), + [ts_builtin_sym_end] = ACTIONS(2573), + [aux_sym_preproc_def_token1] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_restrict] = ACTIONS(2571), }, [491] = { + [sym_template_function] = STATE(364), + [sym_destructor_name] = STATE(364), + [sym_pointer_declarator] = STATE(364), + [sym_structured_binding_declarator] = STATE(364), + [sym__declarator] = STATE(364), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(364), + [sym_array_declarator] = STATE(364), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(365), + [sym_function_declarator] = STATE(364), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(630), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2573), }, [492] = { - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_COMMA] = ACTIONS(2575), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2575), }, [493] = { - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_mutable] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_EQ_EQ] = ACTIONS(2579), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_volatile] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_SLASH] = ACTIONS(2581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), - [anon_sym_COLON] = ACTIONS(2581), - [anon_sym_explicit] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_override] = ACTIONS(2581), - [sym_operator_name] = ACTIONS(2579), - [sym_noexcept] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2579), - [anon_sym_GT] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2579), - [anon_sym_register] = ACTIONS(2581), - [anon_sym__Atomic] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_LT_LT] = ACTIONS(2579), - [anon_sym_constexpr] = ACTIONS(2581), + [anon_sym_RBRACE] = ACTIONS(2577), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2577), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_inline] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_restrict] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), }, [494] = { - [aux_sym_enumerator_list_repeat1] = STATE(1306), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2581), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_final] = ACTIONS(2583), + [anon_sym_EQ_EQ] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), + [anon_sym_COLON] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_override] = ACTIONS(2583), + [sym_operator_name] = ACTIONS(2581), + [sym_noexcept] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(2581), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2581), + [anon_sym_register] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_PIPE_PIPE] = ACTIONS(2581), + [anon_sym_DOT] = ACTIONS(2583), + [anon_sym_LT_LT] = ACTIONS(2581), + [anon_sym_constexpr] = ACTIONS(2583), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_PERCENT] = ACTIONS(2581), + [anon_sym_QMARK] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_BANG_EQ] = ACTIONS(2581), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym_GT_GT] = ACTIONS(2581), + [anon_sym_DASH_GT] = ACTIONS(2581), }, [495] = { - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_EQ] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_final] = ACTIONS(2587), - [anon_sym_EQ_EQ] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_GT_EQ] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_override] = ACTIONS(2587), - [sym_operator_name] = ACTIONS(2585), - [sym_noexcept] = ACTIONS(2587), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2587), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_register] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2587), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_constexpr] = ACTIONS(2587), + [aux_sym_enumerator_list_repeat1] = STATE(1301), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_LT_EQ] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_RPAREN] = ACTIONS(2585), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym_GT_GT] = ACTIONS(2585), - [anon_sym_DASH_GT] = ACTIONS(2585), + [anon_sym_COMMA] = ACTIONS(2585), + [anon_sym_RBRACE] = ACTIONS(2575), }, [496] = { - [anon_sym_RPAREN] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2587), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [anon_sym_final] = ACTIONS(2589), + [anon_sym_EQ_EQ] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2587), + [anon_sym_COLON] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_override] = ACTIONS(2589), + [sym_operator_name] = ACTIONS(2587), + [sym_noexcept] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2587), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_COMMA] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2589), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(2587), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2587), + [anon_sym_LT_EQ] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym_GT_GT] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2587), }, [497] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1309), - [sym_logical_expression] = STATE(1309), - [sym_bitwise_expression] = STATE(1309), - [sym_cast_expression] = STATE(1309), - [sym_new_expression] = STATE(1309), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1309), - [sym_char_literal] = STATE(1309), - [sym_template_function] = STATE(1309), - [sym_conditional_expression] = STATE(1309), - [sym_equality_expression] = STATE(1309), - [sym_relational_expression] = STATE(1309), - [sym_delete_expression] = STATE(1309), - [sym_sizeof_expression] = STATE(1309), - [sym_parenthesized_expression] = STATE(1309), - [sym_lambda_expression] = STATE(1309), - [sym_concatenated_string] = STATE(1309), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1309), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1309), - [sym_math_expression] = STATE(1309), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2591), + [anon_sym_RPAREN] = ACTIONS(2591), + [sym_comment] = ACTIONS(3), + }, + [498] = { + [sym_template_function] = STATE(1304), + [sym__expression] = STATE(1304), + [sym_logical_expression] = STATE(1304), + [sym_bitwise_expression] = STATE(1304), + [sym_cast_expression] = STATE(1304), + [sym_delete_expression] = STATE(1304), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1304), + [sym_lambda_expression] = STATE(1304), + [sym_char_literal] = STATE(1304), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1304), + [sym_equality_expression] = STATE(1304), + [sym_relational_expression] = STATE(1304), + [sym_sizeof_expression] = STATE(1304), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1304), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1304), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1304), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1304), + [sym_math_expression] = STATE(1304), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1304), + [sym_raw_string_literal] = ACTIONS(2593), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2593), - [sym_null] = ACTIONS(2593), + [sym_true] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), [anon_sym_COLON_COLON] = ACTIONS(218), - [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2597), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2593), + [sym_false] = ACTIONS(2595), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2593), + [sym_nullptr] = ACTIONS(2595), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -32310,408 +32341,408 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [498] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(643), - [sym_logical_expression] = STATE(643), - [sym_bitwise_expression] = STATE(643), - [sym_cast_expression] = STATE(643), - [sym_new_expression] = STATE(643), - [sym_field_expression] = STATE(643), - [sym_compound_literal_expression] = STATE(643), - [sym_char_literal] = STATE(643), - [sym_template_function] = STATE(643), - [sym_conditional_expression] = STATE(643), - [sym_equality_expression] = STATE(643), - [sym_relational_expression] = STATE(643), - [sym_delete_expression] = STATE(643), - [sym_sizeof_expression] = STATE(643), - [sym_parenthesized_expression] = STATE(643), - [sym_lambda_expression] = STATE(643), - [sym_concatenated_string] = STATE(643), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(643), - [sym_assignment_expression] = STATE(643), - [sym_pointer_expression] = STATE(643), - [sym_shift_expression] = STATE(643), - [sym_math_expression] = STATE(643), - [sym_call_expression] = STATE(643), - [sym_lambda_capture_specifier] = STATE(196), + [499] = { + [sym_template_function] = STATE(644), + [sym__expression] = STATE(644), + [sym_logical_expression] = STATE(644), + [sym_bitwise_expression] = STATE(644), + [sym_cast_expression] = STATE(644), + [sym_delete_expression] = STATE(644), + [sym_field_expression] = STATE(644), + [sym_compound_literal_expression] = STATE(644), + [sym_lambda_expression] = STATE(644), + [sym_char_literal] = STATE(644), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(644), + [sym_equality_expression] = STATE(644), + [sym_relational_expression] = STATE(644), + [sym_sizeof_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(1180), - [sym_null] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(1180), + [sym_parenthesized_expression] = STATE(644), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(644), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(644), + [sym_pointer_expression] = STATE(644), + [sym_shift_expression] = STATE(644), + [sym_math_expression] = STATE(644), + [sym_call_expression] = STATE(644), + [sym_new_expression] = STATE(644), + [sym_raw_string_literal] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(1186), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [sym_nullptr] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [499] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(1310), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [500] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1305), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [500] = { - [sym_destructor_name] = STATE(662), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1210), - [sym_operator_name] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_delete] = ACTIONS(2597), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [501] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(665), - [sym_logical_expression] = STATE(665), - [sym_bitwise_expression] = STATE(665), - [sym_cast_expression] = STATE(665), - [sym_new_expression] = STATE(665), - [sym_field_expression] = STATE(665), - [sym_compound_literal_expression] = STATE(665), - [sym_char_literal] = STATE(665), - [sym_template_function] = STATE(665), - [sym_conditional_expression] = STATE(665), - [sym_equality_expression] = STATE(665), - [sym_relational_expression] = STATE(665), - [sym_delete_expression] = STATE(665), - [sym_sizeof_expression] = STATE(665), - [sym_parenthesized_expression] = STATE(665), - [sym_lambda_expression] = STATE(665), - [sym_concatenated_string] = STATE(665), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(665), - [sym_assignment_expression] = STATE(665), - [sym_pointer_expression] = STATE(665), - [sym_shift_expression] = STATE(665), - [sym_math_expression] = STATE(665), - [sym_call_expression] = STATE(665), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(1220), - [sym_null] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [sym_destructor_name] = STATE(663), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(1216), + [sym_operator_name] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(2599), }, [502] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1313), - [sym_logical_expression] = STATE(1313), - [sym_bitwise_expression] = STATE(1313), - [sym_cast_expression] = STATE(1313), - [sym_new_expression] = STATE(1313), - [sym_field_expression] = STATE(1313), - [sym_compound_literal_expression] = STATE(1313), - [sym_char_literal] = STATE(1313), - [sym_template_function] = STATE(1313), - [sym_conditional_expression] = STATE(1313), - [sym_equality_expression] = STATE(1313), - [sym_relational_expression] = STATE(1313), - [sym_delete_expression] = STATE(1313), - [sym_sizeof_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_lambda_expression] = STATE(1313), - [sym_concatenated_string] = STATE(1313), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1313), - [sym_assignment_expression] = STATE(1313), - [sym_pointer_expression] = STATE(1313), - [sym_shift_expression] = STATE(1313), - [sym_math_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(666), + [sym__expression] = STATE(666), + [sym_logical_expression] = STATE(666), + [sym_bitwise_expression] = STATE(666), + [sym_cast_expression] = STATE(666), + [sym_delete_expression] = STATE(666), + [sym_field_expression] = STATE(666), + [sym_compound_literal_expression] = STATE(666), + [sym_lambda_expression] = STATE(666), + [sym_char_literal] = STATE(666), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(666), + [sym_equality_expression] = STATE(666), + [sym_relational_expression] = STATE(666), + [sym_sizeof_expression] = STATE(666), + [sym_subscript_expression] = STATE(666), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(2599), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(2601), - [sym_true] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(2603), + [sym_parenthesized_expression] = STATE(666), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(666), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(666), + [sym_pointer_expression] = STATE(666), + [sym_shift_expression] = STATE(666), + [sym_math_expression] = STATE(666), + [sym_call_expression] = STATE(666), + [sym_new_expression] = STATE(666), + [sym_raw_string_literal] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(1226), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [sym_nullptr] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, [503] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(1308), + [sym__expression] = STATE(1308), + [sym_logical_expression] = STATE(1308), + [sym_bitwise_expression] = STATE(1308), + [sym_cast_expression] = STATE(1308), + [sym_delete_expression] = STATE(1308), + [sym_field_expression] = STATE(1308), + [sym_compound_literal_expression] = STATE(1308), + [sym_lambda_expression] = STATE(1308), + [sym_char_literal] = STATE(1308), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1308), + [sym_equality_expression] = STATE(1308), + [sym_relational_expression] = STATE(1308), + [sym_sizeof_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(1230), + [sym_parenthesized_expression] = STATE(1308), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(1308), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1308), + [sym_pointer_expression] = STATE(1308), + [sym_shift_expression] = STATE(1308), + [sym_math_expression] = STATE(1308), + [sym_call_expression] = STATE(1308), + [sym_new_expression] = STATE(1308), + [sym_raw_string_literal] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(2603), + [sym_true] = ACTIONS(2605), + [sym_null] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(2605), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [sym_nullptr] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, [504] = { - [sym_union_specifier] = STATE(1316), - [sym_macro_type_specifier] = STATE(1316), - [sym_class_specifier] = STATE(1316), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1316), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1316), - [aux_sym_sized_type_specifier_repeat1] = STATE(1315), - [sym_argument_list] = STATE(1317), - [sym_enum_specifier] = STATE(1316), - [sym_struct_specifier] = STATE(1316), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1316), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2605), - [anon_sym_signed] = ACTIONS(2607), - [anon_sym_long] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2605), - [anon_sym_unsigned] = ACTIONS(2607), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(2609), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(2607), + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(222), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_TILDE] = ACTIONS(896), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, [505] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1319), - [sym_logical_expression] = STATE(1319), - [sym_bitwise_expression] = STATE(1319), - [sym_cast_expression] = STATE(1319), - [sym_new_expression] = STATE(1319), - [sym_field_expression] = STATE(1319), - [sym_compound_literal_expression] = STATE(1319), - [sym_char_literal] = STATE(1319), - [sym_template_function] = STATE(1319), - [sym_conditional_expression] = STATE(1319), - [sym_equality_expression] = STATE(1319), - [sym_relational_expression] = STATE(1319), - [sym_delete_expression] = STATE(1319), - [sym_sizeof_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_lambda_expression] = STATE(1319), - [sym_concatenated_string] = STATE(1319), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1319), - [sym_assignment_expression] = STATE(1319), - [sym_pointer_expression] = STATE(1319), - [sym_shift_expression] = STATE(1319), - [sym_math_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_lambda_capture_specifier] = STATE(196), + [sym_union_specifier] = STATE(1311), + [sym_macro_type_specifier] = STATE(1311), + [sym_class_specifier] = STATE(1311), + [aux_sym_sized_type_specifier_repeat1] = STATE(1310), + [sym_sized_type_specifier] = STATE(1311), + [sym__type_specifier] = STATE(1311), + [sym_argument_list] = STATE(1312), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1311), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1311), + [sym_struct_specifier] = STATE(1311), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2609), + [anon_sym_long] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2609), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(2611), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(2609), + }, + [506] = { + [sym_template_function] = STATE(1314), + [sym__expression] = STATE(1314), + [sym_logical_expression] = STATE(1314), + [sym_bitwise_expression] = STATE(1314), + [sym_cast_expression] = STATE(1314), + [sym_delete_expression] = STATE(1314), + [sym_field_expression] = STATE(1314), + [sym_compound_literal_expression] = STATE(1314), + [sym_lambda_expression] = STATE(1314), + [sym_char_literal] = STATE(1314), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1314), + [sym_equality_expression] = STATE(1314), + [sym_relational_expression] = STATE(1314), + [sym_sizeof_expression] = STATE(1314), + [sym_subscript_expression] = STATE(1314), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(2613), - [sym_null] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(2613), + [sym_parenthesized_expression] = STATE(1314), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(1314), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1314), + [sym_pointer_expression] = STATE(1314), + [sym_shift_expression] = STATE(1314), + [sym_math_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_new_expression] = STATE(1314), + [sym_raw_string_literal] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(2615), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [sym_nullptr] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [506] = { - [sym_string_literal] = STATE(1331), - [aux_sym_concatenated_string_repeat1] = STATE(1331), + [507] = { + [sym_string_literal] = STATE(1326), + [aux_sym_concatenated_string_repeat1] = STATE(1326), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_STAR_EQ] = ACTIONS(165), @@ -32736,7 +32767,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -32753,49 +32784,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [507] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(1332), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [508] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1327), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -32803,20 +32834,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -32833,86 +32864,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [508] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [509] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1333), - [sym_logical_expression] = STATE(1333), - [sym_bitwise_expression] = STATE(1333), - [sym_cast_expression] = STATE(1333), - [sym_new_expression] = STATE(1333), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1333), - [sym_char_literal] = STATE(1333), - [sym_template_function] = STATE(1333), - [sym_conditional_expression] = STATE(1333), - [sym_equality_expression] = STATE(1333), - [sym_relational_expression] = STATE(1333), - [sym_delete_expression] = STATE(1333), - [sym_sizeof_expression] = STATE(1333), - [sym_parenthesized_expression] = STATE(1333), - [sym_lambda_expression] = STATE(1333), - [sym_concatenated_string] = STATE(1333), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1333), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1333), - [sym_math_expression] = STATE(1333), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2617), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [510] = { + [sym_template_function] = STATE(1328), + [sym__expression] = STATE(1328), + [sym_logical_expression] = STATE(1328), + [sym_bitwise_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_delete_expression] = STATE(1328), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1328), + [sym_lambda_expression] = STATE(1328), + [sym_char_literal] = STATE(1328), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1328), + [sym_equality_expression] = STATE(1328), + [sym_relational_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1328), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1328), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1328), + [sym_math_expression] = STATE(1328), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1328), + [sym_raw_string_literal] = ACTIONS(2619), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2619), - [sym_null] = ACTIONS(2619), + [sym_true] = ACTIONS(2621), + [sym_null] = ACTIONS(2621), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2617), + [sym_number_literal] = ACTIONS(2619), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2619), + [sym_false] = ACTIONS(2621), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2621), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -32925,266 +32956,266 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [510] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(511), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(912), + [511] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(512), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(916), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(912), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(916), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(912), + [anon_sym_long] = ACTIONS(916), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(914), + [anon_sym_typename] = ACTIONS(918), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(912), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), - }, - [511] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1334), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_RBRACK_RBRACK] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(2621), - [sym_identifier] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [sym_primitive_type] = ACTIONS(358), }, [512] = { - [sym_initializer_list] = STATE(709), - [sym_new_declarator] = STATE(708), - [sym_argument_list] = STATE(709), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(1283), + [aux_sym_sized_type_specifier_repeat1] = STATE(1329), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_RBRACK_RBRACK] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(2623), + [sym_identifier] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, [513] = { - [sym_union_specifier] = STATE(1336), - [sym_macro_type_specifier] = STATE(1336), - [sym_class_specifier] = STATE(1336), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1336), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1336), - [aux_sym_sized_type_specifier_repeat1] = STATE(511), - [sym_struct_specifier] = STATE(1336), - [sym_enum_specifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(1336), - [anon_sym_unsigned] = ACTIONS(912), + [sym_new_declarator] = STATE(709), + [sym_argument_list] = STATE(710), + [sym_initializer_list] = STATE(710), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_GT_GT] = ACTIONS(1286), + }, + [514] = { + [sym_union_specifier] = STATE(1331), + [sym_macro_type_specifier] = STATE(1331), + [sym_class_specifier] = STATE(1331), + [aux_sym_sized_type_specifier_repeat1] = STATE(512), + [sym_sized_type_specifier] = STATE(1331), + [sym__type_specifier] = STATE(1331), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(1331), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1331), + [sym_struct_specifier] = STATE(1331), + [anon_sym_unsigned] = ACTIONS(916), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(912), + [sym_auto] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(916), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(912), + [anon_sym_long] = ACTIONS(916), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(914), + [anon_sym_typename] = ACTIONS(918), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(912), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(2625), + [sym_primitive_type] = ACTIONS(2627), }, - [514] = { - [sym_template_type] = STATE(239), + [515] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(2627), - }, - [515] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(800), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(2629), }, [516] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1338), - [sym_logical_expression] = STATE(1338), - [sym_bitwise_expression] = STATE(1338), - [sym_cast_expression] = STATE(1338), - [sym_new_expression] = STATE(1338), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1338), - [sym_char_literal] = STATE(1338), - [sym_template_function] = STATE(1338), - [sym_conditional_expression] = STATE(1338), - [sym_equality_expression] = STATE(1338), - [sym_relational_expression] = STATE(1338), - [sym_delete_expression] = STATE(1338), - [sym_sizeof_expression] = STATE(1338), - [sym_parenthesized_expression] = STATE(1338), - [sym_lambda_expression] = STATE(1338), - [sym_concatenated_string] = STATE(1338), - [sym_string_literal] = STATE(122), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(804), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [517] = { + [sym_template_function] = STATE(1333), + [sym__expression] = STATE(1333), + [sym_logical_expression] = STATE(1333), + [sym_bitwise_expression] = STATE(1333), + [sym_cast_expression] = STATE(1333), + [sym_delete_expression] = STATE(1333), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1333), + [sym_lambda_expression] = STATE(1333), + [sym_char_literal] = STATE(1333), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1338), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1338), - [sym_math_expression] = STATE(1338), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), + [sym_conditional_expression] = STATE(1333), + [sym_equality_expression] = STATE(1333), + [sym_relational_expression] = STATE(1333), + [sym_sizeof_expression] = STATE(1333), + [sym_subscript_expression] = STATE(122), [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2629), + [sym_parenthesized_expression] = STATE(1333), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1333), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1333), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1333), + [sym_math_expression] = STATE(1333), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1333), + [sym_raw_string_literal] = ACTIONS(2631), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2631), - [sym_null] = ACTIONS(2631), + [sym_true] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2629), + [sym_number_literal] = ACTIONS(2631), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2631), + [sym_false] = ACTIONS(2633), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2633), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33197,49 +33228,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [517] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1339), - [sym_logical_expression] = STATE(1339), - [sym_bitwise_expression] = STATE(1339), - [sym_cast_expression] = STATE(1339), - [sym_new_expression] = STATE(1339), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1339), - [sym_char_literal] = STATE(1339), - [sym_template_function] = STATE(1339), - [sym_conditional_expression] = STATE(1339), - [sym_equality_expression] = STATE(1339), - [sym_relational_expression] = STATE(1339), - [sym_delete_expression] = STATE(1339), - [sym_sizeof_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_lambda_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1339), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1339), - [sym_math_expression] = STATE(1339), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2633), + [518] = { + [sym_template_function] = STATE(1334), + [sym__expression] = STATE(1334), + [sym_logical_expression] = STATE(1334), + [sym_bitwise_expression] = STATE(1334), + [sym_cast_expression] = STATE(1334), + [sym_delete_expression] = STATE(1334), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1334), + [sym_lambda_expression] = STATE(1334), + [sym_char_literal] = STATE(1334), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1334), + [sym_equality_expression] = STATE(1334), + [sym_relational_expression] = STATE(1334), + [sym_sizeof_expression] = STATE(1334), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1334), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1334), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1334), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1334), + [sym_math_expression] = STATE(1334), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1334), + [sym_raw_string_literal] = ACTIONS(2635), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2635), - [sym_null] = ACTIONS(2635), + [sym_true] = ACTIONS(2637), + [sym_null] = ACTIONS(2637), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2633), + [sym_number_literal] = ACTIONS(2635), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2635), + [sym_false] = ACTIONS(2637), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2637), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33252,49 +33283,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [518] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1340), - [sym_logical_expression] = STATE(1340), - [sym_bitwise_expression] = STATE(1340), - [sym_cast_expression] = STATE(1340), - [sym_new_expression] = STATE(1340), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1340), - [sym_char_literal] = STATE(1340), - [sym_template_function] = STATE(1340), - [sym_conditional_expression] = STATE(1340), - [sym_equality_expression] = STATE(1340), - [sym_relational_expression] = STATE(1340), - [sym_delete_expression] = STATE(1340), - [sym_sizeof_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_lambda_expression] = STATE(1340), - [sym_concatenated_string] = STATE(1340), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1340), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1340), - [sym_math_expression] = STATE(1340), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2637), + [519] = { + [sym_template_function] = STATE(1335), + [sym__expression] = STATE(1335), + [sym_logical_expression] = STATE(1335), + [sym_bitwise_expression] = STATE(1335), + [sym_cast_expression] = STATE(1335), + [sym_delete_expression] = STATE(1335), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1335), + [sym_lambda_expression] = STATE(1335), + [sym_char_literal] = STATE(1335), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1335), + [sym_equality_expression] = STATE(1335), + [sym_relational_expression] = STATE(1335), + [sym_sizeof_expression] = STATE(1335), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1335), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1335), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1335), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1335), + [sym_math_expression] = STATE(1335), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1335), + [sym_raw_string_literal] = ACTIONS(2639), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), + [sym_true] = ACTIONS(2641), + [sym_null] = ACTIONS(2641), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2637), + [sym_number_literal] = ACTIONS(2639), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2639), + [sym_false] = ACTIONS(2641), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2641), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33307,49 +33338,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [519] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1341), - [sym_logical_expression] = STATE(1341), - [sym_bitwise_expression] = STATE(1341), - [sym_cast_expression] = STATE(1341), - [sym_new_expression] = STATE(1341), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1341), - [sym_char_literal] = STATE(1341), - [sym_template_function] = STATE(1341), - [sym_conditional_expression] = STATE(1341), - [sym_equality_expression] = STATE(1341), - [sym_relational_expression] = STATE(1341), - [sym_delete_expression] = STATE(1341), - [sym_sizeof_expression] = STATE(1341), - [sym_parenthesized_expression] = STATE(1341), - [sym_lambda_expression] = STATE(1341), - [sym_concatenated_string] = STATE(1341), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1341), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1341), - [sym_math_expression] = STATE(1341), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2641), + [520] = { + [sym_template_function] = STATE(1336), + [sym__expression] = STATE(1336), + [sym_logical_expression] = STATE(1336), + [sym_bitwise_expression] = STATE(1336), + [sym_cast_expression] = STATE(1336), + [sym_delete_expression] = STATE(1336), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1336), + [sym_lambda_expression] = STATE(1336), + [sym_char_literal] = STATE(1336), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1336), + [sym_equality_expression] = STATE(1336), + [sym_relational_expression] = STATE(1336), + [sym_sizeof_expression] = STATE(1336), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1336), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1336), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1336), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1336), + [sym_math_expression] = STATE(1336), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1336), + [sym_raw_string_literal] = ACTIONS(2643), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), + [sym_true] = ACTIONS(2645), + [sym_null] = ACTIONS(2645), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2641), + [sym_number_literal] = ACTIONS(2643), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2643), + [sym_false] = ACTIONS(2645), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2645), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33362,49 +33393,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [520] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1342), - [sym_logical_expression] = STATE(1342), - [sym_bitwise_expression] = STATE(1342), - [sym_cast_expression] = STATE(1342), - [sym_new_expression] = STATE(1342), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1342), - [sym_char_literal] = STATE(1342), - [sym_template_function] = STATE(1342), - [sym_conditional_expression] = STATE(1342), - [sym_equality_expression] = STATE(1342), - [sym_relational_expression] = STATE(1342), - [sym_delete_expression] = STATE(1342), - [sym_sizeof_expression] = STATE(1342), - [sym_parenthesized_expression] = STATE(1342), - [sym_lambda_expression] = STATE(1342), - [sym_concatenated_string] = STATE(1342), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1342), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1342), - [sym_math_expression] = STATE(1342), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2645), + [521] = { + [sym_template_function] = STATE(1337), + [sym__expression] = STATE(1337), + [sym_logical_expression] = STATE(1337), + [sym_bitwise_expression] = STATE(1337), + [sym_cast_expression] = STATE(1337), + [sym_delete_expression] = STATE(1337), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1337), + [sym_lambda_expression] = STATE(1337), + [sym_char_literal] = STATE(1337), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1337), + [sym_equality_expression] = STATE(1337), + [sym_relational_expression] = STATE(1337), + [sym_sizeof_expression] = STATE(1337), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1337), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1337), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1337), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1337), + [sym_math_expression] = STATE(1337), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1337), + [sym_raw_string_literal] = ACTIONS(2647), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), + [sym_true] = ACTIONS(2649), + [sym_null] = ACTIONS(2649), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2645), + [sym_number_literal] = ACTIONS(2647), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2647), + [sym_false] = ACTIONS(2649), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2647), + [sym_nullptr] = ACTIONS(2649), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33417,78 +33448,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [521] = { - [anon_sym_struct] = ACTIONS(2649), - [sym_auto] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - }, [522] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1343), - [sym_logical_expression] = STATE(1343), - [sym_bitwise_expression] = STATE(1343), - [sym_cast_expression] = STATE(1343), - [sym_new_expression] = STATE(1343), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1343), - [sym_char_literal] = STATE(1343), - [sym_template_function] = STATE(1343), - [sym_conditional_expression] = STATE(1343), - [sym_equality_expression] = STATE(1343), - [sym_relational_expression] = STATE(1343), - [sym_delete_expression] = STATE(1343), - [sym_sizeof_expression] = STATE(1343), - [sym_parenthesized_expression] = STATE(1343), - [sym_lambda_expression] = STATE(1343), - [sym_concatenated_string] = STATE(1343), - [sym_string_literal] = STATE(122), + [anon_sym_struct] = ACTIONS(2651), + [sym_auto] = ACTIONS(2651), + [anon_sym_signed] = ACTIONS(2651), + [anon_sym_mutable] = ACTIONS(2651), + [anon_sym_long] = ACTIONS(2651), + [anon_sym_register] = ACTIONS(2651), + [anon_sym__Atomic] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_virtual] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_constexpr] = ACTIONS(2651), + [sym_primitive_type] = ACTIONS(2651), + [anon_sym_unsigned] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_volatile] = ACTIONS(2651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_typename] = ACTIONS(2651), + [anon_sym_explicit] = ACTIONS(2651), + [anon_sym_short] = ACTIONS(2651), + [anon_sym_inline] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2651), + [anon_sym_restrict] = ACTIONS(2651), + }, + [523] = { + [sym_template_function] = STATE(1338), + [sym__expression] = STATE(1338), + [sym_logical_expression] = STATE(1338), + [sym_bitwise_expression] = STATE(1338), + [sym_cast_expression] = STATE(1338), + [sym_delete_expression] = STATE(1338), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1338), + [sym_lambda_expression] = STATE(1338), + [sym_char_literal] = STATE(1338), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1343), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1343), - [sym_math_expression] = STATE(1343), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), + [sym_conditional_expression] = STATE(1338), + [sym_equality_expression] = STATE(1338), + [sym_relational_expression] = STATE(1338), + [sym_sizeof_expression] = STATE(1338), + [sym_subscript_expression] = STATE(122), [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2653), + [sym_parenthesized_expression] = STATE(1338), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1338), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1338), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1338), + [sym_math_expression] = STATE(1338), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1338), + [sym_raw_string_literal] = ACTIONS(2655), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2655), - [sym_null] = ACTIONS(2655), + [sym_true] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2653), + [sym_number_literal] = ACTIONS(2655), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2655), + [sym_false] = ACTIONS(2657), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2657), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33501,49 +33532,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [523] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(952), - [sym_logical_expression] = STATE(952), - [sym_bitwise_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_new_expression] = STATE(952), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(952), - [sym_char_literal] = STATE(952), - [sym_template_function] = STATE(952), - [sym_conditional_expression] = STATE(952), - [sym_equality_expression] = STATE(952), - [sym_relational_expression] = STATE(952), - [sym_delete_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(952), - [sym_lambda_expression] = STATE(952), - [sym_concatenated_string] = STATE(952), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(952), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(952), - [sym_math_expression] = STATE(952), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1741), + [524] = { + [sym_template_function] = STATE(990), + [sym__expression] = STATE(990), + [sym_logical_expression] = STATE(990), + [sym_bitwise_expression] = STATE(990), + [sym_cast_expression] = STATE(990), + [sym_delete_expression] = STATE(990), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(990), + [sym_lambda_expression] = STATE(990), + [sym_char_literal] = STATE(990), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(990), + [sym_equality_expression] = STATE(990), + [sym_relational_expression] = STATE(990), + [sym_sizeof_expression] = STATE(990), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(990), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(990), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(990), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(990), + [sym_math_expression] = STATE(990), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(990), + [sym_raw_string_literal] = ACTIONS(1833), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), + [sym_true] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1741), + [sym_number_literal] = ACTIONS(1833), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(1743), + [sym_false] = ACTIONS(1835), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(1743), + [sym_nullptr] = ACTIONS(1835), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33556,49 +33587,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [524] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1344), - [sym_logical_expression] = STATE(1344), - [sym_bitwise_expression] = STATE(1344), - [sym_cast_expression] = STATE(1344), - [sym_new_expression] = STATE(1344), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1344), - [sym_char_literal] = STATE(1344), - [sym_template_function] = STATE(1344), - [sym_conditional_expression] = STATE(1344), - [sym_equality_expression] = STATE(1344), - [sym_relational_expression] = STATE(1344), - [sym_delete_expression] = STATE(1344), - [sym_sizeof_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_lambda_expression] = STATE(1344), - [sym_concatenated_string] = STATE(1344), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1344), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1344), - [sym_math_expression] = STATE(1344), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2657), + [525] = { + [sym_template_function] = STATE(1339), + [sym__expression] = STATE(1339), + [sym_logical_expression] = STATE(1339), + [sym_bitwise_expression] = STATE(1339), + [sym_cast_expression] = STATE(1339), + [sym_delete_expression] = STATE(1339), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1339), + [sym_lambda_expression] = STATE(1339), + [sym_char_literal] = STATE(1339), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1339), + [sym_equality_expression] = STATE(1339), + [sym_relational_expression] = STATE(1339), + [sym_sizeof_expression] = STATE(1339), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1339), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1339), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1339), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1339), + [sym_math_expression] = STATE(1339), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1339), + [sym_raw_string_literal] = ACTIONS(2659), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2659), - [sym_null] = ACTIONS(2659), + [sym_true] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2657), + [sym_number_literal] = ACTIONS(2659), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2659), + [sym_false] = ACTIONS(2661), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2659), + [sym_nullptr] = ACTIONS(2661), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33611,49 +33642,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [525] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1345), - [sym_logical_expression] = STATE(1345), - [sym_bitwise_expression] = STATE(1345), - [sym_cast_expression] = STATE(1345), - [sym_new_expression] = STATE(1345), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1345), - [sym_char_literal] = STATE(1345), - [sym_template_function] = STATE(1345), - [sym_conditional_expression] = STATE(1345), - [sym_equality_expression] = STATE(1345), - [sym_relational_expression] = STATE(1345), - [sym_delete_expression] = STATE(1345), - [sym_sizeof_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_lambda_expression] = STATE(1345), - [sym_concatenated_string] = STATE(1345), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1345), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1345), - [sym_math_expression] = STATE(1345), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2661), + [526] = { + [sym_template_function] = STATE(1340), + [sym__expression] = STATE(1340), + [sym_logical_expression] = STATE(1340), + [sym_bitwise_expression] = STATE(1340), + [sym_cast_expression] = STATE(1340), + [sym_delete_expression] = STATE(1340), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1340), + [sym_lambda_expression] = STATE(1340), + [sym_char_literal] = STATE(1340), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1340), + [sym_equality_expression] = STATE(1340), + [sym_relational_expression] = STATE(1340), + [sym_sizeof_expression] = STATE(1340), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1340), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1340), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1340), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1340), + [sym_math_expression] = STATE(1340), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1340), + [sym_raw_string_literal] = ACTIONS(2663), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2663), - [sym_null] = ACTIONS(2663), + [sym_true] = ACTIONS(2665), + [sym_null] = ACTIONS(2665), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2661), + [sym_number_literal] = ACTIONS(2663), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2663), + [sym_false] = ACTIONS(2665), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2663), + [sym_nullptr] = ACTIONS(2665), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33666,49 +33697,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [526] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1346), - [sym_logical_expression] = STATE(1346), - [sym_bitwise_expression] = STATE(1346), - [sym_cast_expression] = STATE(1346), - [sym_new_expression] = STATE(1346), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1346), - [sym_char_literal] = STATE(1346), - [sym_template_function] = STATE(1346), - [sym_conditional_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_relational_expression] = STATE(1346), - [sym_delete_expression] = STATE(1346), - [sym_sizeof_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_lambda_expression] = STATE(1346), - [sym_concatenated_string] = STATE(1346), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1346), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1346), - [sym_math_expression] = STATE(1346), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2665), + [527] = { + [sym_template_function] = STATE(1341), + [sym__expression] = STATE(1341), + [sym_logical_expression] = STATE(1341), + [sym_bitwise_expression] = STATE(1341), + [sym_cast_expression] = STATE(1341), + [sym_delete_expression] = STATE(1341), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1341), + [sym_lambda_expression] = STATE(1341), + [sym_char_literal] = STATE(1341), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1341), + [sym_equality_expression] = STATE(1341), + [sym_relational_expression] = STATE(1341), + [sym_sizeof_expression] = STATE(1341), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1341), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1341), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1341), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1341), + [sym_math_expression] = STATE(1341), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1341), + [sym_raw_string_literal] = ACTIONS(2667), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2667), - [sym_null] = ACTIONS(2667), + [sym_true] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2665), + [sym_number_literal] = ACTIONS(2667), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2667), + [sym_false] = ACTIONS(2669), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2667), + [sym_nullptr] = ACTIONS(2669), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33721,104 +33752,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [527] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1347), - [sym_logical_expression] = STATE(1347), - [sym_bitwise_expression] = STATE(1347), - [sym_cast_expression] = STATE(1347), - [sym_new_expression] = STATE(1347), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1347), - [sym_char_literal] = STATE(1347), - [sym_template_function] = STATE(1347), - [sym_conditional_expression] = STATE(1347), - [sym_equality_expression] = STATE(1347), - [sym_relational_expression] = STATE(1347), - [sym_delete_expression] = STATE(1347), - [sym_sizeof_expression] = STATE(1347), - [sym_parenthesized_expression] = STATE(1347), - [sym_lambda_expression] = STATE(1347), - [sym_concatenated_string] = STATE(1347), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1347), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1347), - [sym_math_expression] = STATE(1347), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(2671), - [sym_null] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, [528] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1348), - [sym_logical_expression] = STATE(1348), - [sym_bitwise_expression] = STATE(1348), - [sym_cast_expression] = STATE(1348), - [sym_new_expression] = STATE(1348), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1348), - [sym_char_literal] = STATE(1348), - [sym_template_function] = STATE(1348), - [sym_conditional_expression] = STATE(1348), - [sym_equality_expression] = STATE(1348), - [sym_relational_expression] = STATE(1348), - [sym_delete_expression] = STATE(1348), - [sym_sizeof_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_lambda_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1348), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1348), - [sym_math_expression] = STATE(1348), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2673), + [sym_template_function] = STATE(1342), + [sym__expression] = STATE(1342), + [sym_logical_expression] = STATE(1342), + [sym_bitwise_expression] = STATE(1342), + [sym_cast_expression] = STATE(1342), + [sym_delete_expression] = STATE(1342), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(1342), + [sym_lambda_expression] = STATE(1342), + [sym_char_literal] = STATE(1342), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1342), + [sym_equality_expression] = STATE(1342), + [sym_relational_expression] = STATE(1342), + [sym_sizeof_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1342), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(1342), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1342), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(1342), + [sym_math_expression] = STATE(1342), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1342), + [sym_raw_string_literal] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), + }, + [529] = { + [sym_template_function] = STATE(1343), + [sym__expression] = STATE(1343), + [sym_logical_expression] = STATE(1343), + [sym_bitwise_expression] = STATE(1343), + [sym_cast_expression] = STATE(1343), + [sym_delete_expression] = STATE(1343), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1343), + [sym_lambda_expression] = STATE(1343), + [sym_char_literal] = STATE(1343), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1343), + [sym_equality_expression] = STATE(1343), + [sym_relational_expression] = STATE(1343), + [sym_sizeof_expression] = STATE(1343), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1343), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(1343), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1343), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1343), + [sym_math_expression] = STATE(1343), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1343), + [sym_raw_string_literal] = ACTIONS(2675), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2675), - [sym_null] = ACTIONS(2675), + [sym_true] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2673), + [sym_number_literal] = ACTIONS(2675), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2675), + [sym_false] = ACTIONS(2677), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2675), + [sym_nullptr] = ACTIONS(2677), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -33831,205 +33862,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [529] = { - [aux_sym_for_statement_repeat1] = STATE(1350), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - }, [530] = { - [sym_string_literal] = STATE(1351), - [aux_sym_concatenated_string_repeat1] = STATE(1351), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_for_statement_repeat1] = STATE(1345), + [anon_sym_COMMA] = ACTIONS(932), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), }, [531] = { - [anon_sym_DASH] = ACTIONS(2679), - [sym_raw_string_literal] = ACTIONS(2681), - [sym_true] = ACTIONS(2679), - [anon_sym_mutable] = ACTIONS(2679), - [sym_null] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_sizeof] = ACTIONS(2679), - [anon_sym_volatile] = ACTIONS(2679), - [anon_sym_PLUS] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2679), - [anon_sym_switch] = ACTIONS(2679), - [anon_sym_explicit] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2679), - [anon_sym_delete] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), - [anon_sym__Atomic] = ACTIONS(2679), - [sym_number_literal] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_constexpr] = ACTIONS(2679), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2679), - [sym_auto] = ACTIONS(2679), - [anon_sym_signed] = ACTIONS(2679), - [anon_sym_long] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2679), - [sym_preproc_directive] = ACTIONS(2679), - [aux_sym_preproc_if_token1] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_typename] = ACTIONS(2679), - [anon_sym_short] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2679), - [anon_sym_goto] = ACTIONS(2679), - [sym_operator_name] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [aux_sym_preproc_include_token1] = ACTIONS(2679), - [anon_sym_register] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [sym_primitive_type] = ACTIONS(2679), - [sym_false] = ACTIONS(2679), - [sym_nullptr] = ACTIONS(2679), - [anon_sym_do] = ACTIONS(2679), - [anon_sym_template] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2681), - [ts_builtin_sym_end] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2679), + [sym_string_literal] = STATE(1346), + [aux_sym_concatenated_string_repeat1] = STATE(1346), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, [532] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [anon_sym_DASH] = ACTIONS(2681), + [sym_raw_string_literal] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2681), + [sym_auto] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_using] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [sym_operator_name] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2683), + [ts_builtin_sym_end] = ACTIONS(2683), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_restrict] = ACTIONS(2681), + }, + [533] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -34071,7 +34102,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2685), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -34103,160 +34134,160 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [533] = { - [anon_sym_DASH] = ACTIONS(2685), - [sym_raw_string_literal] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2685), - [sym_auto] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [sym_operator_name] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [ts_builtin_sym_end] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2685), - }, [534] = { + [anon_sym_DASH] = ACTIONS(2687), + [sym_raw_string_literal] = ACTIONS(2689), + [sym_true] = ACTIONS(2687), + [anon_sym_mutable] = ACTIONS(2687), + [sym_null] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_sizeof] = ACTIONS(2687), + [anon_sym_volatile] = ACTIONS(2687), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2687), + [anon_sym_switch] = ACTIONS(2687), + [anon_sym_explicit] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2687), + [anon_sym_delete] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), + [anon_sym__Atomic] = ACTIONS(2687), + [sym_number_literal] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_constexpr] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2689), [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2689), - [anon_sym_EQ_EQ] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2687), + [sym_auto] = ACTIONS(2687), + [anon_sym_signed] = ACTIONS(2687), + [anon_sym_long] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(2687), + [aux_sym_preproc_if_token1] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_COLON] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2689), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_PIPE_PIPE] = ACTIONS(2689), - [anon_sym_DOT] = ACTIONS(2689), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_PERCENT] = ACTIONS(2689), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_typename] = ACTIONS(2687), + [anon_sym_short] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_goto] = ACTIONS(2687), + [sym_operator_name] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [aux_sym_preproc_include_token1] = ACTIONS(2687), + [anon_sym_register] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [sym_primitive_type] = ACTIONS(2687), + [sym_false] = ACTIONS(2687), + [sym_nullptr] = ACTIONS(2687), + [anon_sym_do] = ACTIONS(2687), + [anon_sym_template] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2689), [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), + [ts_builtin_sym_end] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2687), [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_DASH_GT] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2687), [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2687), }, [535] = { - [sym_do_statement] = STATE(432), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2691), + [anon_sym_EQ_EQ] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_COLON] = ACTIONS(2691), + [anon_sym_CARET] = ACTIONS(2691), + [anon_sym_GT] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2691), + [anon_sym_PIPE_PIPE] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(2691), + [anon_sym_LT_LT] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_PERCENT] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_BANG_EQ] = ACTIONS(2691), + [anon_sym_LT_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_DASH_GT] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_RPAREN] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2691), + }, + [536] = { + [sym_do_statement] = STATE(433), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(432), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(432), - [sym_if_statement] = STATE(432), - [sym_switch_statement] = STATE(432), - [sym_for_statement] = STATE(432), - [sym_return_statement] = STATE(432), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(433), + [sym_try_statement] = STATE(433), + [sym_if_statement] = STATE(433), + [sym_switch_statement] = STATE(433), + [sym_for_statement] = STATE(433), + [sym_return_statement] = STATE(433), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(432), - [sym_break_statement] = STATE(432), - [sym_continue_statement] = STATE(432), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(433), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(432), - [sym_labeled_statement] = STATE(432), - [sym_expression_statement] = STATE(432), - [sym_while_statement] = STATE(432), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(433), + [sym_for_range_loop] = STATE(433), + [sym_compound_statement] = STATE(433), + [sym_labeled_statement] = STATE(433), + [sym_expression_statement] = STATE(433), + [sym_while_statement] = STATE(433), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -34270,7 +34301,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -34294,51 +34325,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [536] = { - [sym_do_statement] = STATE(714), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [537] = { + [sym_do_statement] = STATE(715), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(714), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(714), - [sym_if_statement] = STATE(714), - [sym_switch_statement] = STATE(714), - [sym_for_statement] = STATE(714), - [sym_return_statement] = STATE(714), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(715), + [sym_try_statement] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_switch_statement] = STATE(715), + [sym_for_statement] = STATE(715), + [sym_return_statement] = STATE(715), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(714), - [sym_break_statement] = STATE(714), - [sym_continue_statement] = STATE(714), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(715), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(714), - [sym_labeled_statement] = STATE(714), - [sym_expression_statement] = STATE(714), - [sym_while_statement] = STATE(714), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(715), + [sym_for_range_loop] = STATE(715), + [sym_compound_statement] = STATE(715), + [sym_labeled_statement] = STATE(715), + [sym_expression_statement] = STATE(715), + [sym_while_statement] = STATE(715), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -34352,7 +34383,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -34376,517 +34407,518 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [537] = { - [aux_sym_try_statement_repeat1] = STATE(1354), - [sym_catch_clause] = STATE(1354), - [anon_sym_catch] = ACTIONS(1297), + [538] = { + [sym_catch_clause] = STATE(1349), + [aux_sym_try_statement_repeat1] = STATE(1349), + [anon_sym_catch] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(1356), - [sym_logical_expression] = STATE(1356), - [sym_bitwise_expression] = STATE(1356), - [sym_cast_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1356), - [sym_declaration] = STATE(1355), - [sym_char_literal] = STATE(1356), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(1356), - [sym_conditional_expression] = STATE(1356), - [sym_equality_expression] = STATE(1356), - [sym_relational_expression] = STATE(1356), - [sym_sizeof_expression] = STATE(1356), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(1356), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(1356), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(1356), - [sym_lambda_expression] = STATE(1356), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(1357), - [sym_assignment_expression] = STATE(1356), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1356), - [sym_math_expression] = STATE(1356), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [539] = { + [sym_template_function] = STATE(1351), + [sym__expression] = STATE(1351), + [sym_logical_expression] = STATE(1351), + [sym_bitwise_expression] = STATE(1351), + [sym_cast_expression] = STATE(1351), + [sym_delete_expression] = STATE(1351), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(1351), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(1351), + [sym_lambda_expression] = STATE(1351), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(1350), + [sym_for_range_declaration] = STATE(1352), + [sym_conditional_expression] = STATE(1351), + [sym_equality_expression] = STATE(1351), + [sym_relational_expression] = STATE(1351), + [sym_sizeof_expression] = STATE(1351), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(1351), + [sym_concatenated_string] = STATE(1351), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(2695), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(1351), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1351), + [sym_math_expression] = STATE(1351), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1351), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(2697), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(2697), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(2699), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(2695), + [sym_number_literal] = ACTIONS(2697), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(2697), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(2699), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(2701), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [539] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1358), - [sym_logical_expression] = STATE(1358), - [sym_bitwise_expression] = STATE(1358), - [sym_cast_expression] = STATE(1358), - [sym_new_expression] = STATE(1358), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(1358), - [sym_char_literal] = STATE(1358), - [sym_template_function] = STATE(1358), - [sym_conditional_expression] = STATE(1358), - [sym_equality_expression] = STATE(1358), - [sym_relational_expression] = STATE(1358), - [sym_delete_expression] = STATE(1358), - [sym_sizeof_expression] = STATE(1358), - [sym_parenthesized_expression] = STATE(1358), - [sym_lambda_expression] = STATE(1358), - [sym_concatenated_string] = STATE(1358), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(1358), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(1358), - [sym_math_expression] = STATE(1358), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [540] = { - [anon_sym_LPAREN2] = ACTIONS(2705), + [sym_template_function] = STATE(1353), + [sym__expression] = STATE(1353), + [sym_logical_expression] = STATE(1353), + [sym_bitwise_expression] = STATE(1353), + [sym_cast_expression] = STATE(1353), + [sym_delete_expression] = STATE(1353), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(1353), + [sym_lambda_expression] = STATE(1353), + [sym_char_literal] = STATE(1353), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1353), + [sym_equality_expression] = STATE(1353), + [sym_relational_expression] = STATE(1353), + [sym_sizeof_expression] = STATE(1353), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1353), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(1353), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1353), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(1353), + [sym_math_expression] = STATE(1353), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(1353), + [sym_raw_string_literal] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [541] = { - [anon_sym_DASH] = ACTIONS(2707), - [sym_raw_string_literal] = ACTIONS(2709), - [anon_sym_else] = ACTIONS(2707), - [sym_true] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [sym_null] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2707), - [anon_sym_catch] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2707), - [sym_auto] = ACTIONS(2707), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [sym_operator_name] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [aux_sym_preproc_include_token1] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [sym_nullptr] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [ts_builtin_sym_end] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2707), + [sym_comment] = ACTIONS(3), }, [542] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [anon_sym_DASH] = ACTIONS(2709), + [sym_raw_string_literal] = ACTIONS(2711), + [anon_sym_else] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym_namespace] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2709), + [sym_auto] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_using] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [sym_operator_name] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2711), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [ts_builtin_sym_end] = ACTIONS(2711), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_restrict] = ACTIONS(2709), + }, + [543] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), - [anon_sym_DASH] = ACTIONS(1853), - [sym_raw_string_literal] = ACTIONS(1856), - [sym_true] = ACTIONS(1859), - [anon_sym_mutable] = ACTIONS(1862), - [sym_null] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_typedef] = ACTIONS(1874), - [anon_sym_switch] = ACTIONS(1877), - [anon_sym_explicit] = ACTIONS(1862), - [sym_identifier] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1889), - [anon_sym__Atomic] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym_namespace] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_LPAREN2] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1919), - [sym_auto] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1898), - [anon_sym_long] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(1928), - [sym_preproc_directive] = ACTIONS(1931), - [aux_sym_preproc_if_token1] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_typename] = ACTIONS(1949), - [anon_sym_short] = ACTIONS(1898), - [anon_sym_new] = ACTIONS(1952), - [anon_sym_goto] = ACTIONS(1955), - [sym_operator_name] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2720), - [aux_sym_preproc_include_token1] = ACTIONS(1970), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_class] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(1922), - [sym_false] = ACTIONS(1859), - [sym_nullptr] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_template] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1997), - [aux_sym_preproc_def_token1] = ACTIONS(2002), - [anon_sym_AMP_AMP] = ACTIONS(2005), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1862), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), + [anon_sym_DASH] = ACTIONS(1931), + [sym_raw_string_literal] = ACTIONS(1934), + [sym_true] = ACTIONS(1937), + [anon_sym_mutable] = ACTIONS(1940), + [sym_null] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1949), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1955), + [anon_sym_explicit] = ACTIONS(1940), + [sym_identifier] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_constexpr] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym_namespace] = ACTIONS(1982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1967), + [anon_sym_SQUOTE] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1991), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1997), + [sym_auto] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_using] = ACTIONS(2006), + [sym_preproc_directive] = ACTIONS(2009), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_typename] = ACTIONS(2027), + [anon_sym_short] = ACTIONS(1976), + [anon_sym_new] = ACTIONS(2030), + [anon_sym_goto] = ACTIONS(2033), + [sym_operator_name] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2719), + [anon_sym_for] = ACTIONS(2722), + [aux_sym_preproc_include_token1] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2000), + [sym_false] = ACTIONS(1937), + [sym_nullptr] = ACTIONS(1937), + [anon_sym_do] = ACTIONS(2063), + [anon_sym_template] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_TILDE] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2075), + [aux_sym_preproc_def_token1] = ACTIONS(2080), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_inline] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(1991), + [anon_sym_restrict] = ACTIONS(1940), }, - [543] = { - [anon_sym_RPAREN] = ACTIONS(2726), + [544] = { + [anon_sym_RPAREN] = ACTIONS(2728), [sym_comment] = ACTIONS(3), }, - [544] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1362), - [sym_logical_expression] = STATE(1362), - [sym_bitwise_expression] = STATE(1362), - [sym_cast_expression] = STATE(1362), - [sym_new_expression] = STATE(1362), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1362), - [sym_char_literal] = STATE(1362), - [sym_template_function] = STATE(1362), - [sym_conditional_expression] = STATE(1362), - [sym_equality_expression] = STATE(1362), - [sym_relational_expression] = STATE(1362), - [sym_delete_expression] = STATE(1362), - [sym_sizeof_expression] = STATE(1362), - [sym_parenthesized_expression] = STATE(1362), - [sym_lambda_expression] = STATE(1362), - [sym_concatenated_string] = STATE(1362), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(1362), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1362), - [sym_math_expression] = STATE(1362), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2728), + [545] = { + [sym_template_function] = STATE(1357), + [sym__expression] = STATE(1357), + [sym_logical_expression] = STATE(1357), + [sym_bitwise_expression] = STATE(1357), + [sym_cast_expression] = STATE(1357), + [sym_delete_expression] = STATE(1357), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1357), + [sym_lambda_expression] = STATE(1357), + [sym_char_literal] = STATE(1357), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1357), + [sym_equality_expression] = STATE(1357), + [sym_relational_expression] = STATE(1357), + [sym_sizeof_expression] = STATE(1357), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1357), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(1357), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1357), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1357), + [sym_math_expression] = STATE(1357), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1357), + [sym_raw_string_literal] = ACTIONS(2730), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2732), + [sym_null] = ACTIONS(2732), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2728), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(2732), + [sym_number_literal] = ACTIONS(2730), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(2734), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2730), + [sym_false] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2732), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [545] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_destructor_name] = STATE(148), - [sym__declarator] = STATE(148), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_array_declarator] = STATE(148), - [sym_char_literal] = STATE(640), - [sym_type_descriptor] = STATE(1363), - [sym_dependent_type] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_type_qualifier] = STATE(154), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_identifier] = STATE(50), - [sym_scoped_type_identifier] = STATE(61), - [sym_function_declarator] = STATE(148), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_string_literal] = STATE(151), - [sym_delete_expression] = STATE(640), - [sym_lambda_expression] = STATE(640), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_pointer_declarator] = STATE(148), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_reference_declarator] = STATE(148), + [546] = { + [sym_template_function] = STATE(57), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(149), + [sym_scoped_type_identifier] = STATE(48), + [sym_field_expression] = STATE(150), + [sym_array_declarator] = STATE(149), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_lambda_expression] = STATE(641), + [sym_type_qualifier] = STATE(156), + [sym_type_descriptor] = STATE(1358), + [sym_structured_binding_declarator] = STATE(149), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_function_declarator] = STATE(149), + [sym_concatenated_string] = STATE(641), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym_string_literal] = STATE(154), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_reference_declarator] = STATE(149), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_destructor_name] = STATE(149), + [sym_call_expression] = STATE(150), + [sym_pointer_declarator] = STATE(149), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), [anon_sym_LPAREN2] = ACTIONS(258), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_raw_string_literal] = ACTIONS(1174), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_mutable] = ACTIONS(11), - [sym_true] = ACTIONS(1176), - [sym_null] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), @@ -34907,347 +34939,347 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(290), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [546] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(643), - [sym_logical_expression] = STATE(643), - [sym_bitwise_expression] = STATE(643), - [sym_cast_expression] = STATE(643), - [sym_new_expression] = STATE(643), - [sym_field_expression] = STATE(643), - [sym_compound_literal_expression] = STATE(643), - [sym_char_literal] = STATE(643), - [sym_template_function] = STATE(643), - [sym_conditional_expression] = STATE(643), - [sym_equality_expression] = STATE(643), - [sym_relational_expression] = STATE(643), - [sym_delete_expression] = STATE(643), - [sym_sizeof_expression] = STATE(643), - [sym_parenthesized_expression] = STATE(643), - [sym_lambda_expression] = STATE(643), - [sym_concatenated_string] = STATE(643), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(643), - [sym_assignment_expression] = STATE(643), - [sym_pointer_expression] = STATE(643), - [sym_shift_expression] = STATE(643), - [sym_math_expression] = STATE(643), - [sym_call_expression] = STATE(643), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(1180), - [sym_null] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [547] = { - [sym_union_specifier] = STATE(1366), - [sym_macro_type_specifier] = STATE(1366), - [sym_class_specifier] = STATE(1366), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1366), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1366), - [aux_sym_sized_type_specifier_repeat1] = STATE(1365), - [sym_argument_list] = STATE(1367), - [sym_enum_specifier] = STATE(1366), - [sym_struct_specifier] = STATE(1366), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1366), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2734), - [anon_sym_signed] = ACTIONS(2736), - [anon_sym_long] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2734), - [anon_sym_unsigned] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(2738), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(2736), + [sym_template_function] = STATE(644), + [sym__expression] = STATE(644), + [sym_logical_expression] = STATE(644), + [sym_bitwise_expression] = STATE(644), + [sym_cast_expression] = STATE(644), + [sym_delete_expression] = STATE(644), + [sym_field_expression] = STATE(644), + [sym_compound_literal_expression] = STATE(644), + [sym_lambda_expression] = STATE(644), + [sym_char_literal] = STATE(644), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(644), + [sym_equality_expression] = STATE(644), + [sym_relational_expression] = STATE(644), + [sym_sizeof_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(644), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(644), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(644), + [sym_pointer_expression] = STATE(644), + [sym_shift_expression] = STATE(644), + [sym_math_expression] = STATE(644), + [sym_call_expression] = STATE(644), + [sym_new_expression] = STATE(644), + [sym_raw_string_literal] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, [548] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1369), - [sym_logical_expression] = STATE(1369), - [sym_bitwise_expression] = STATE(1369), - [sym_cast_expression] = STATE(1369), - [sym_new_expression] = STATE(1369), - [sym_field_expression] = STATE(1369), - [sym_compound_literal_expression] = STATE(1369), - [sym_char_literal] = STATE(1369), - [sym_template_function] = STATE(1369), - [sym_conditional_expression] = STATE(1369), - [sym_equality_expression] = STATE(1369), - [sym_relational_expression] = STATE(1369), - [sym_delete_expression] = STATE(1369), - [sym_sizeof_expression] = STATE(1369), - [sym_parenthesized_expression] = STATE(1369), - [sym_lambda_expression] = STATE(1369), - [sym_concatenated_string] = STATE(1369), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1369), - [sym_pointer_expression] = STATE(1369), - [sym_shift_expression] = STATE(1369), - [sym_math_expression] = STATE(1369), - [sym_call_expression] = STATE(1369), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(2742), - [sym_null] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(2740), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2742), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [sym_union_specifier] = STATE(1361), + [sym_macro_type_specifier] = STATE(1361), + [sym_class_specifier] = STATE(1361), + [aux_sym_sized_type_specifier_repeat1] = STATE(1360), + [sym_sized_type_specifier] = STATE(1361), + [sym__type_specifier] = STATE(1361), + [sym_argument_list] = STATE(1362), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1361), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1361), + [sym_struct_specifier] = STATE(1361), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2736), + [anon_sym_signed] = ACTIONS(2738), + [anon_sym_long] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2736), + [anon_sym_unsigned] = ACTIONS(2738), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(2740), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(2738), }, [549] = { - [sym_destructor_name] = STATE(662), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1210), - [sym_operator_name] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_delete] = ACTIONS(2746), + [sym_template_function] = STATE(1364), + [sym__expression] = STATE(1364), + [sym_logical_expression] = STATE(1364), + [sym_bitwise_expression] = STATE(1364), + [sym_cast_expression] = STATE(1364), + [sym_delete_expression] = STATE(1364), + [sym_field_expression] = STATE(1364), + [sym_compound_literal_expression] = STATE(1364), + [sym_lambda_expression] = STATE(1364), + [sym_char_literal] = STATE(1364), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1364), + [sym_equality_expression] = STATE(1364), + [sym_relational_expression] = STATE(1364), + [sym_sizeof_expression] = STATE(1364), + [sym_subscript_expression] = STATE(1364), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1364), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(1364), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1364), + [sym_pointer_expression] = STATE(1364), + [sym_shift_expression] = STATE(1364), + [sym_math_expression] = STATE(1364), + [sym_call_expression] = STATE(1364), + [sym_new_expression] = STATE(1364), + [sym_raw_string_literal] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(2742), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, [550] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(665), - [sym_logical_expression] = STATE(665), - [sym_bitwise_expression] = STATE(665), - [sym_cast_expression] = STATE(665), - [sym_new_expression] = STATE(665), - [sym_field_expression] = STATE(665), - [sym_compound_literal_expression] = STATE(665), - [sym_char_literal] = STATE(665), - [sym_template_function] = STATE(665), - [sym_conditional_expression] = STATE(665), - [sym_equality_expression] = STATE(665), - [sym_relational_expression] = STATE(665), - [sym_delete_expression] = STATE(665), - [sym_sizeof_expression] = STATE(665), - [sym_parenthesized_expression] = STATE(665), - [sym_lambda_expression] = STATE(665), - [sym_concatenated_string] = STATE(665), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(665), - [sym_assignment_expression] = STATE(665), - [sym_pointer_expression] = STATE(665), - [sym_shift_expression] = STATE(665), - [sym_math_expression] = STATE(665), - [sym_call_expression] = STATE(665), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(1220), - [sym_null] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [sym_destructor_name] = STATE(663), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1216), + [sym_operator_name] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(2748), }, [551] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1372), - [sym_logical_expression] = STATE(1372), - [sym_bitwise_expression] = STATE(1372), - [sym_cast_expression] = STATE(1372), - [sym_new_expression] = STATE(1372), - [sym_field_expression] = STATE(1372), - [sym_compound_literal_expression] = STATE(1372), - [sym_char_literal] = STATE(1372), - [sym_template_function] = STATE(1372), - [sym_conditional_expression] = STATE(1372), - [sym_equality_expression] = STATE(1372), - [sym_relational_expression] = STATE(1372), - [sym_delete_expression] = STATE(1372), - [sym_sizeof_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_lambda_expression] = STATE(1372), - [sym_concatenated_string] = STATE(1372), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1372), - [sym_assignment_expression] = STATE(1372), - [sym_pointer_expression] = STATE(1372), - [sym_shift_expression] = STATE(1372), - [sym_math_expression] = STATE(1372), - [sym_call_expression] = STATE(1372), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(666), + [sym__expression] = STATE(666), + [sym_logical_expression] = STATE(666), + [sym_bitwise_expression] = STATE(666), + [sym_cast_expression] = STATE(666), + [sym_delete_expression] = STATE(666), + [sym_field_expression] = STATE(666), + [sym_compound_literal_expression] = STATE(666), + [sym_lambda_expression] = STATE(666), + [sym_char_literal] = STATE(666), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(666), + [sym_equality_expression] = STATE(666), + [sym_relational_expression] = STATE(666), + [sym_sizeof_expression] = STATE(666), + [sym_subscript_expression] = STATE(666), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2750), - [sym_true] = ACTIONS(2752), - [sym_null] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(2748), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [sym_parenthesized_expression] = STATE(666), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(666), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(666), + [sym_pointer_expression] = STATE(666), + [sym_shift_expression] = STATE(666), + [sym_math_expression] = STATE(666), + [sym_call_expression] = STATE(666), + [sym_new_expression] = STATE(666), + [sym_raw_string_literal] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, [552] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(1367), + [sym__expression] = STATE(1367), + [sym_logical_expression] = STATE(1367), + [sym_bitwise_expression] = STATE(1367), + [sym_cast_expression] = STATE(1367), + [sym_delete_expression] = STATE(1367), + [sym_field_expression] = STATE(1367), + [sym_compound_literal_expression] = STATE(1367), + [sym_lambda_expression] = STATE(1367), + [sym_char_literal] = STATE(1367), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1367), + [sym_equality_expression] = STATE(1367), + [sym_relational_expression] = STATE(1367), + [sym_sizeof_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [sym_parenthesized_expression] = STATE(1367), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(1367), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1367), + [sym_pointer_expression] = STATE(1367), + [sym_shift_expression] = STATE(1367), + [sym_math_expression] = STATE(1367), + [sym_call_expression] = STATE(1367), + [sym_new_expression] = STATE(1367), + [sym_raw_string_literal] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2752), + [sym_true] = ACTIONS(2754), + [sym_null] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(2750), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, [553] = { - [sym_parameter_list] = STATE(582), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(589), - [sym_comment] = ACTIONS(3), + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1238), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, [554] = { - [sym_string_literal] = STATE(1384), - [aux_sym_concatenated_string_repeat1] = STATE(1384), + [sym_parameter_list] = STATE(583), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(616), + [sym_comment] = ACTIONS(3), + }, + [555] = { + [sym_string_literal] = STATE(1379), + [aux_sym_concatenated_string_repeat1] = STATE(1379), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -35272,7 +35304,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -35289,49 +35321,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [555] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(1385), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [556] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1380), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -35339,20 +35371,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -35369,1205 +35401,1209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [556] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [557] = { - [sym_parameter_list] = STATE(582), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(589), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [558] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(1386), - [sym_pointer_declarator] = STATE(1386), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(694), - [sym_template_function] = STATE(1386), - [sym_destructor_name] = STATE(1386), - [sym__declarator] = STATE(1386), - [sym_array_declarator] = STATE(1386), - [sym_scoped_identifier] = STATE(286), - [sym_type_qualifier] = STATE(694), - [sym_function_declarator] = STATE(1386), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_parameter_list] = STATE(583), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(616), + [sym_comment] = ACTIONS(3), + }, + [559] = { + [aux_sym_type_definition_repeat1] = STATE(695), + [sym_template_function] = STATE(1381), + [sym_destructor_name] = STATE(1381), + [sym_pointer_declarator] = STATE(1381), + [sym_structured_binding_declarator] = STATE(1381), + [sym__declarator] = STATE(1381), + [sym_scoped_identifier] = STATE(282), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(1381), + [sym_array_declarator] = STATE(1381), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(695), + [sym_function_declarator] = STATE(1381), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1026), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(292), - [sym_operator_name] = ACTIONS(2758), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(294), + [sym_operator_name] = ACTIONS(2760), [anon_sym_restrict] = ACTIONS(11), }, - [559] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1387), - [sym_logical_expression] = STATE(1387), - [sym_bitwise_expression] = STATE(1387), - [sym_cast_expression] = STATE(1387), - [sym_new_expression] = STATE(1387), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1387), - [sym_char_literal] = STATE(1387), - [sym_template_function] = STATE(1387), - [sym_conditional_expression] = STATE(1387), - [sym_equality_expression] = STATE(1387), - [sym_relational_expression] = STATE(1387), - [sym_delete_expression] = STATE(1387), - [sym_sizeof_expression] = STATE(1387), - [sym_parenthesized_expression] = STATE(1387), - [sym_lambda_expression] = STATE(1387), - [sym_concatenated_string] = STATE(1387), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(1387), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1387), - [sym_math_expression] = STATE(1387), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2760), + [560] = { + [sym_template_function] = STATE(1382), + [sym__expression] = STATE(1382), + [sym_logical_expression] = STATE(1382), + [sym_bitwise_expression] = STATE(1382), + [sym_cast_expression] = STATE(1382), + [sym_delete_expression] = STATE(1382), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1382), + [sym_lambda_expression] = STATE(1382), + [sym_char_literal] = STATE(1382), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1382), + [sym_equality_expression] = STATE(1382), + [sym_relational_expression] = STATE(1382), + [sym_sizeof_expression] = STATE(1382), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1382), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(1382), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1382), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1382), + [sym_math_expression] = STATE(1382), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1382), + [sym_raw_string_literal] = ACTIONS(2762), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2762), - [sym_null] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2764), + [sym_null] = ACTIONS(2764), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2760), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2762), + [sym_false] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2764), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [560] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(561), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(1010), + [561] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(562), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(1014), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(1010), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(1014), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1010), + [anon_sym_long] = ACTIONS(1014), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(1012), + [anon_sym_typename] = ACTIONS(1016), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(1010), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(1014), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), - }, - [561] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1388), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(2764), - [anon_sym_long] = ACTIONS(2764), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(2764), - [sym_identifier] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [sym_primitive_type] = ACTIONS(358), }, [562] = { - [sym_initializer_list] = STATE(709), - [sym_new_declarator] = STATE(708), - [sym_argument_list] = STATE(709), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(1283), + [aux_sym_sized_type_specifier_repeat1] = STATE(1383), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(2766), + [anon_sym_long] = ACTIONS(2766), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(2766), + [sym_identifier] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_unsigned] = ACTIONS(2766), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, [563] = { - [sym_union_specifier] = STATE(1390), - [sym_macro_type_specifier] = STATE(1390), - [sym_class_specifier] = STATE(1390), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1390), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1390), - [aux_sym_sized_type_specifier_repeat1] = STATE(561), - [sym_struct_specifier] = STATE(1390), - [sym_enum_specifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(1390), - [anon_sym_unsigned] = ACTIONS(1010), + [sym_new_declarator] = STATE(709), + [sym_argument_list] = STATE(710), + [sym_initializer_list] = STATE(710), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_GT_GT] = ACTIONS(1286), + }, + [564] = { + [sym_union_specifier] = STATE(1385), + [sym_macro_type_specifier] = STATE(1385), + [sym_class_specifier] = STATE(1385), + [aux_sym_sized_type_specifier_repeat1] = STATE(562), + [sym_sized_type_specifier] = STATE(1385), + [sym__type_specifier] = STATE(1385), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(1385), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1385), + [sym_struct_specifier] = STATE(1385), + [anon_sym_unsigned] = ACTIONS(1014), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(1010), + [sym_auto] = ACTIONS(2770), + [anon_sym_signed] = ACTIONS(1014), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1010), + [anon_sym_long] = ACTIONS(1014), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(1012), + [anon_sym_typename] = ACTIONS(1016), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(1010), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(1014), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2770), }, - [564] = { - [sym_template_type] = STATE(239), + [565] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(2770), - }, - [565] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(2772), }, [566] = { - [sym_template_argument_list] = STATE(377), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [567] = { [sym_initializer_list] = STATE(100), - [anon_sym_LPAREN2] = ACTIONS(1651), + [sym_template_argument_list] = STATE(378), + [anon_sym_LPAREN2] = ACTIONS(1661), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_PERCENT_EQ] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1010), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1010), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1661), [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1010), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_AMP_EQ] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1661), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [567] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(557), - [sym_pointer_declarator] = STATE(557), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(558), - [sym_template_function] = STATE(557), - [sym_destructor_name] = STATE(557), - [sym__declarator] = STATE(557), - [sym_array_declarator] = STATE(557), - [sym_scoped_identifier] = STATE(286), - [sym_type_qualifier] = STATE(558), - [sym_function_declarator] = STATE(557), - [anon_sym_LPAREN2] = ACTIONS(456), + [568] = { + [aux_sym_type_definition_repeat1] = STATE(559), + [sym_template_function] = STATE(558), + [sym_destructor_name] = STATE(558), + [sym_pointer_declarator] = STATE(558), + [sym_structured_binding_declarator] = STATE(558), + [sym__declarator] = STATE(558), + [sym_scoped_identifier] = STATE(282), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(558), + [sym_array_declarator] = STATE(558), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(559), + [sym_function_declarator] = STATE(558), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1026), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(292), - [sym_operator_name] = ACTIONS(1002), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(294), + [sym_operator_name] = ACTIONS(1006), [anon_sym_restrict] = ACTIONS(11), }, - [568] = { - [sym_template_type] = STATE(71), + [569] = { + [sym_template_function] = STATE(1387), + [sym__expression] = STATE(1387), + [sym_logical_expression] = STATE(1387), + [sym_bitwise_expression] = STATE(1387), + [sym_cast_expression] = STATE(1387), + [sym_delete_expression] = STATE(1387), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1387), + [sym_lambda_expression] = STATE(1387), + [sym_char_literal] = STATE(1387), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1387), + [sym_equality_expression] = STATE(1387), + [sym_relational_expression] = STATE(1387), + [sym_sizeof_expression] = STATE(1387), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1387), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(1387), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1387), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1387), + [sym_math_expression] = STATE(1387), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1387), + [sym_raw_string_literal] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2776), + [sym_null] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(272), + [sym_false] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_sizeof] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(690), + [anon_sym_new] = ACTIONS(284), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(296), + }, + [570] = { + [sym_template_function] = STATE(1388), + [sym__expression] = STATE(1388), + [sym_logical_expression] = STATE(1388), + [sym_bitwise_expression] = STATE(1388), + [sym_cast_expression] = STATE(1388), + [sym_delete_expression] = STATE(1388), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1388), + [sym_lambda_expression] = STATE(1388), + [sym_char_literal] = STATE(1388), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1388), + [sym_equality_expression] = STATE(1388), + [sym_relational_expression] = STATE(1388), + [sym_sizeof_expression] = STATE(1388), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1388), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(1388), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1388), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1388), + [sym_math_expression] = STATE(1388), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1388), + [sym_raw_string_literal] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2780), + [sym_null] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2778), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(272), + [sym_false] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_sizeof] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(690), + [anon_sym_new] = ACTIONS(284), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(296), + }, + [571] = { + [sym_template_function] = STATE(1389), + [sym__expression] = STATE(1389), + [sym_logical_expression] = STATE(1389), + [sym_bitwise_expression] = STATE(1389), + [sym_cast_expression] = STATE(1389), + [sym_delete_expression] = STATE(1389), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1389), + [sym_lambda_expression] = STATE(1389), + [sym_char_literal] = STATE(1389), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1389), + [sym_equality_expression] = STATE(1389), + [sym_relational_expression] = STATE(1389), + [sym_sizeof_expression] = STATE(1389), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1389), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(1389), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1389), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1389), + [sym_math_expression] = STATE(1389), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1389), + [sym_raw_string_literal] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2784), + [sym_null] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(272), + [sym_false] = ACTIONS(2784), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_sizeof] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(690), + [anon_sym_new] = ACTIONS(284), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(296), + }, + [572] = { + [sym_template_function] = STATE(1390), + [sym__expression] = STATE(1390), + [sym_logical_expression] = STATE(1390), + [sym_bitwise_expression] = STATE(1390), + [sym_cast_expression] = STATE(1390), + [sym_delete_expression] = STATE(1390), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1390), + [sym_lambda_expression] = STATE(1390), + [sym_char_literal] = STATE(1390), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_comma_expression] = STATE(982), + [sym_conditional_expression] = STATE(1390), + [sym_equality_expression] = STATE(1390), + [sym_relational_expression] = STATE(1390), + [sym_sizeof_expression] = STATE(1390), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1390), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(1390), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1390), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1390), + [sym_math_expression] = STATE(1390), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1390), + [sym_raw_string_literal] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2788), + [sym_null] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(272), + [sym_false] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_sizeof] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(690), + [anon_sym_new] = ACTIONS(284), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(296), + }, + [573] = { + [sym_template_function] = STATE(1391), + [sym__expression] = STATE(1391), + [sym_logical_expression] = STATE(1391), + [sym_bitwise_expression] = STATE(1391), + [sym_cast_expression] = STATE(1391), + [sym_delete_expression] = STATE(1391), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1391), + [sym_lambda_expression] = STATE(1391), + [sym_char_literal] = STATE(1391), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1391), + [sym_equality_expression] = STATE(1391), + [sym_relational_expression] = STATE(1391), + [sym_sizeof_expression] = STATE(1391), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1391), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(1391), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1391), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1391), + [sym_math_expression] = STATE(1391), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1391), + [sym_raw_string_literal] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2792), + [sym_null] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(272), + [sym_false] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_sizeof] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(690), + [anon_sym_new] = ACTIONS(284), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(296), + }, + [574] = { + [sym_template_function] = STATE(1392), [sym__expression] = STATE(1392), [sym_logical_expression] = STATE(1392), [sym_bitwise_expression] = STATE(1392), [sym_cast_expression] = STATE(1392), - [sym_new_expression] = STATE(1392), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(1392), + [sym_field_expression] = STATE(150), [sym_compound_literal_expression] = STATE(1392), + [sym_lambda_expression] = STATE(1392), [sym_char_literal] = STATE(1392), - [sym_template_function] = STATE(1392), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1392), [sym_equality_expression] = STATE(1392), [sym_relational_expression] = STATE(1392), - [sym_delete_expression] = STATE(1392), [sym_sizeof_expression] = STATE(1392), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1392), - [sym_lambda_expression] = STATE(1392), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), [sym_concatenated_string] = STATE(1392), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1392), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(150), [sym_shift_expression] = STATE(1392), [sym_math_expression] = STATE(1392), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2772), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1392), + [sym_raw_string_literal] = ACTIONS(2794), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2774), - [sym_null] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2796), + [sym_null] = ACTIONS(2796), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2772), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(2794), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2774), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2774), + [sym_false] = ACTIONS(2796), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2796), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [569] = { - [sym_template_type] = STATE(71), + [575] = { + [sym_template_function] = STATE(990), + [sym__expression] = STATE(990), + [sym_logical_expression] = STATE(990), + [sym_bitwise_expression] = STATE(990), + [sym_cast_expression] = STATE(990), + [sym_delete_expression] = STATE(990), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(990), + [sym_lambda_expression] = STATE(990), + [sym_char_literal] = STATE(990), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(990), + [sym_equality_expression] = STATE(990), + [sym_relational_expression] = STATE(990), + [sym_sizeof_expression] = STATE(990), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(990), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(990), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(990), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(990), + [sym_math_expression] = STATE(990), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(990), + [sym_raw_string_literal] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(272), + [sym_false] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_sizeof] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(690), + [anon_sym_new] = ACTIONS(284), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(296), + }, + [576] = { + [sym_template_function] = STATE(1393), [sym__expression] = STATE(1393), [sym_logical_expression] = STATE(1393), [sym_bitwise_expression] = STATE(1393), [sym_cast_expression] = STATE(1393), - [sym_new_expression] = STATE(1393), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(1393), + [sym_field_expression] = STATE(150), [sym_compound_literal_expression] = STATE(1393), + [sym_lambda_expression] = STATE(1393), [sym_char_literal] = STATE(1393), - [sym_template_function] = STATE(1393), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1393), [sym_equality_expression] = STATE(1393), [sym_relational_expression] = STATE(1393), - [sym_delete_expression] = STATE(1393), [sym_sizeof_expression] = STATE(1393), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1393), - [sym_lambda_expression] = STATE(1393), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), [sym_concatenated_string] = STATE(1393), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1393), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(150), [sym_shift_expression] = STATE(1393), [sym_math_expression] = STATE(1393), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2776), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1393), + [sym_raw_string_literal] = ACTIONS(2798), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2778), - [sym_null] = ACTIONS(2778), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2800), + [sym_null] = ACTIONS(2800), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(2798), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2778), + [sym_false] = ACTIONS(2800), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2800), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [570] = { - [sym_template_type] = STATE(71), + [577] = { + [sym_template_function] = STATE(1394), [sym__expression] = STATE(1394), [sym_logical_expression] = STATE(1394), [sym_bitwise_expression] = STATE(1394), [sym_cast_expression] = STATE(1394), - [sym_new_expression] = STATE(1394), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(1394), + [sym_field_expression] = STATE(150), [sym_compound_literal_expression] = STATE(1394), + [sym_lambda_expression] = STATE(1394), [sym_char_literal] = STATE(1394), - [sym_template_function] = STATE(1394), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1394), [sym_equality_expression] = STATE(1394), [sym_relational_expression] = STATE(1394), - [sym_delete_expression] = STATE(1394), [sym_sizeof_expression] = STATE(1394), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1394), - [sym_lambda_expression] = STATE(1394), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), [sym_concatenated_string] = STATE(1394), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1394), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(150), [sym_shift_expression] = STATE(1394), [sym_math_expression] = STATE(1394), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2780), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1394), + [sym_raw_string_literal] = ACTIONS(2802), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2782), - [sym_null] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2804), + [sym_null] = ACTIONS(2804), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(2802), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2782), + [sym_false] = ACTIONS(2804), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2804), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [571] = { - [sym_template_type] = STATE(71), + [578] = { + [sym_template_function] = STATE(1395), [sym__expression] = STATE(1395), [sym_logical_expression] = STATE(1395), [sym_bitwise_expression] = STATE(1395), [sym_cast_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(1395), + [sym_field_expression] = STATE(150), [sym_compound_literal_expression] = STATE(1395), + [sym_lambda_expression] = STATE(1395), [sym_char_literal] = STATE(1395), - [sym_comma_expression] = STATE(944), - [sym_template_function] = STATE(1395), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1395), [sym_equality_expression] = STATE(1395), - [sym_delete_expression] = STATE(1395), [sym_relational_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), [sym_sizeof_expression] = STATE(1395), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1395), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), [sym_concatenated_string] = STATE(1395), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(1395), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1395), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(150), [sym_shift_expression] = STATE(1395), [sym_math_expression] = STATE(1395), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2784), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1395), + [sym_raw_string_literal] = ACTIONS(2806), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2786), - [sym_null] = ACTIONS(2786), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2808), + [sym_null] = ACTIONS(2808), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(2806), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2786), + [sym_false] = ACTIONS(2808), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2808), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [572] = { - [sym_template_type] = STATE(71), + [579] = { + [sym_template_function] = STATE(1396), [sym__expression] = STATE(1396), [sym_logical_expression] = STATE(1396), [sym_bitwise_expression] = STATE(1396), [sym_cast_expression] = STATE(1396), - [sym_new_expression] = STATE(1396), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(1396), + [sym_field_expression] = STATE(1006), [sym_compound_literal_expression] = STATE(1396), + [sym_lambda_expression] = STATE(1396), [sym_char_literal] = STATE(1396), - [sym_template_function] = STATE(1396), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1396), [sym_equality_expression] = STATE(1396), [sym_relational_expression] = STATE(1396), - [sym_delete_expression] = STATE(1396), [sym_sizeof_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1396), - [sym_lambda_expression] = STATE(1396), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), [sym_concatenated_string] = STATE(1396), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1396), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(1006), [sym_shift_expression] = STATE(1396), [sym_math_expression] = STATE(1396), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2790), - [sym_null] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1396), + [sym_raw_string_literal] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(2812), + [sym_null] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2810), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [573] = { - [sym_template_type] = STATE(71), + [580] = { + [sym_template_function] = STATE(1397), [sym__expression] = STATE(1397), [sym_logical_expression] = STATE(1397), [sym_bitwise_expression] = STATE(1397), [sym_cast_expression] = STATE(1397), - [sym_new_expression] = STATE(1397), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(1397), + [sym_field_expression] = STATE(150), [sym_compound_literal_expression] = STATE(1397), + [sym_lambda_expression] = STATE(1397), [sym_char_literal] = STATE(1397), - [sym_template_function] = STATE(1397), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1397), [sym_equality_expression] = STATE(1397), [sym_relational_expression] = STATE(1397), - [sym_delete_expression] = STATE(1397), [sym_sizeof_expression] = STATE(1397), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1397), - [sym_lambda_expression] = STATE(1397), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), [sym_concatenated_string] = STATE(1397), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1397), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(150), [sym_shift_expression] = STATE(1397), [sym_math_expression] = STATE(1397), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2792), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1397), + [sym_raw_string_literal] = ACTIONS(2814), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2794), - [sym_null] = ACTIONS(2794), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2816), + [sym_null] = ACTIONS(2816), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2792), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(2814), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2794), + [sym_false] = ACTIONS(2816), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2816), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [574] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(952), - [sym_logical_expression] = STATE(952), - [sym_bitwise_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_new_expression] = STATE(952), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(952), - [sym_char_literal] = STATE(952), - [sym_template_function] = STATE(952), - [sym_conditional_expression] = STATE(952), - [sym_equality_expression] = STATE(952), - [sym_relational_expression] = STATE(952), - [sym_delete_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(952), - [sym_lambda_expression] = STATE(952), - [sym_concatenated_string] = STATE(952), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(952), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(952), - [sym_math_expression] = STATE(952), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1741), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [581] = { + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_else] = ACTIONS(2818), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_COLON] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2818), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_DASH_GT] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), }, - [575] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1398), - [sym_logical_expression] = STATE(1398), - [sym_bitwise_expression] = STATE(1398), - [sym_cast_expression] = STATE(1398), - [sym_new_expression] = STATE(1398), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1398), - [sym_char_literal] = STATE(1398), - [sym_template_function] = STATE(1398), - [sym_conditional_expression] = STATE(1398), - [sym_equality_expression] = STATE(1398), - [sym_relational_expression] = STATE(1398), - [sym_delete_expression] = STATE(1398), - [sym_sizeof_expression] = STATE(1398), - [sym_parenthesized_expression] = STATE(1398), - [sym_lambda_expression] = STATE(1398), - [sym_concatenated_string] = STATE(1398), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(1398), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1398), - [sym_math_expression] = STATE(1398), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2798), - [sym_null] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2796), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [582] = { + [anon_sym_LPAREN2] = ACTIONS(2822), + [anon_sym_COMMA] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_COLON] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_EQ] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), }, - [576] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1399), - [sym_logical_expression] = STATE(1399), - [sym_bitwise_expression] = STATE(1399), - [sym_cast_expression] = STATE(1399), - [sym_new_expression] = STATE(1399), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1399), - [sym_char_literal] = STATE(1399), - [sym_template_function] = STATE(1399), - [sym_conditional_expression] = STATE(1399), - [sym_equality_expression] = STATE(1399), - [sym_relational_expression] = STATE(1399), - [sym_delete_expression] = STATE(1399), - [sym_sizeof_expression] = STATE(1399), - [sym_parenthesized_expression] = STATE(1399), - [sym_lambda_expression] = STATE(1399), - [sym_concatenated_string] = STATE(1399), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(1399), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1399), - [sym_math_expression] = STATE(1399), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2802), - [sym_null] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [583] = { + [sym_virtual_specifier] = STATE(1399), + [aux_sym_function_declarator_repeat1] = STATE(1399), + [sym_type_qualifier] = STATE(1399), + [sym_trailing_return_type] = STATE(1399), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(2824), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(2826), + [anon_sym_restrict] = ACTIONS(1070), }, - [577] = { - [sym_template_type] = STATE(71), + [584] = { + [sym_template_function] = STATE(1400), [sym__expression] = STATE(1400), [sym_logical_expression] = STATE(1400), [sym_bitwise_expression] = STATE(1400), [sym_cast_expression] = STATE(1400), - [sym_new_expression] = STATE(1400), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(47), [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), [sym_char_literal] = STATE(1400), - [sym_template_function] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1400), [sym_equality_expression] = STATE(1400), [sym_relational_expression] = STATE(1400), - [sym_delete_expression] = STATE(1400), [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(47), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), [sym_parenthesized_expression] = STATE(1400), - [sym_lambda_expression] = STATE(1400), + [sym_string_literal] = STATE(53), + [sym_lambda_capture_specifier] = STATE(50), [sym_concatenated_string] = STATE(1400), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1400), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(47), [sym_shift_expression] = STATE(1400), [sym_math_expression] = STATE(1400), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [578] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1401), - [sym_logical_expression] = STATE(1401), - [sym_bitwise_expression] = STATE(1401), - [sym_cast_expression] = STATE(1401), - [sym_new_expression] = STATE(1401), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1401), - [sym_char_literal] = STATE(1401), - [sym_template_function] = STATE(1401), - [sym_conditional_expression] = STATE(1401), - [sym_equality_expression] = STATE(1401), - [sym_relational_expression] = STATE(1401), - [sym_delete_expression] = STATE(1401), - [sym_sizeof_expression] = STATE(1401), - [sym_parenthesized_expression] = STATE(1401), - [sym_lambda_expression] = STATE(1401), - [sym_concatenated_string] = STATE(1401), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1401), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1401), - [sym_math_expression] = STATE(1401), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(2810), - [sym_null] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, - [579] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1402), - [sym_logical_expression] = STATE(1402), - [sym_bitwise_expression] = STATE(1402), - [sym_cast_expression] = STATE(1402), - [sym_new_expression] = STATE(1402), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1402), - [sym_char_literal] = STATE(1402), - [sym_template_function] = STATE(1402), - [sym_conditional_expression] = STATE(1402), - [sym_equality_expression] = STATE(1402), - [sym_relational_expression] = STATE(1402), - [sym_delete_expression] = STATE(1402), - [sym_sizeof_expression] = STATE(1402), - [sym_parenthesized_expression] = STATE(1402), - [sym_lambda_expression] = STATE(1402), - [sym_concatenated_string] = STATE(1402), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(1402), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1402), - [sym_math_expression] = STATE(1402), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2814), - [sym_null] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [580] = { - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2816), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_DASH_GT] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - }, - [581] = { - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2820), - [anon_sym_GT2] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - }, - [582] = { - [sym_virtual_specifier] = STATE(1404), - [aux_sym_function_declarator_repeat1] = STATE(1404), - [sym_trailing_return_type] = STATE(1404), - [sym_type_qualifier] = STATE(1404), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(2822), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_DASH_GT] = ACTIONS(2824), - [anon_sym_restrict] = ACTIONS(1062), - }, - [583] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(52), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2826), + [sym_new_expression] = STATE(1400), + [sym_raw_string_literal] = ACTIONS(2828), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), [anon_sym_DASH_DASH] = ACTIONS(45), - [sym_null] = ACTIONS(2828), + [sym_null] = ACTIONS(2830), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2826), + [sym_number_literal] = ACTIONS(2828), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(2828), + [sym_false] = ACTIONS(2830), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(2828), + [sym_nullptr] = ACTIONS(2830), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -36580,371 +36616,371 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(175), }, - [584] = { - [sym_string_literal] = STATE(1407), - [aux_sym_concatenated_string_repeat1] = STATE(1407), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_RPAREN] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - }, [585] = { - [sym_parameter_list] = STATE(587), - [sym_abstract_array_declarator] = STATE(1408), - [sym_abstract_pointer_declarator] = STATE(1408), - [sym_abstract_reference_declarator] = STATE(1408), - [sym_abstract_function_declarator] = STATE(1408), - [sym__abstract_declarator] = STATE(1408), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(585), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(2832), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(2832), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1783), }, [586] = { - [sym_abstract_array_declarator] = STATE(1410), - [sym_parameter_list] = STATE(587), - [sym_abstract_reference_declarator] = STATE(1410), - [sym_abstract_function_declarator] = STATE(1410), - [aux_sym_type_definition_repeat1] = STATE(1409), - [sym_abstract_pointer_declarator] = STATE(1410), - [sym_type_qualifier] = STATE(1409), - [sym__abstract_declarator] = STATE(1410), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), + [sym_string_literal] = STATE(1402), + [aux_sym_concatenated_string_repeat1] = STATE(1402), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, [587] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(1412), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1412), - [anon_sym_LPAREN2] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(2834), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_DASH_GT] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [sym_abstract_reference_declarator] = STATE(1403), + [sym_abstract_array_declarator] = STATE(1403), + [sym_abstract_pointer_declarator] = STATE(1403), + [sym_parameter_list] = STATE(590), + [sym_abstract_function_declarator] = STATE(1403), + [sym__abstract_declarator] = STATE(1403), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, [588] = { - [sym_abstract_array_declarator] = STATE(1414), - [sym_parameter_list] = STATE(587), - [sym_abstract_reference_declarator] = STATE(1414), - [sym_abstract_function_declarator] = STATE(1414), - [aux_sym_type_definition_repeat1] = STATE(1413), - [sym_abstract_pointer_declarator] = STATE(1414), - [sym_type_qualifier] = STATE(1413), - [sym__abstract_declarator] = STATE(1414), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), + [sym_abstract_reference_declarator] = STATE(1405), + [aux_sym_type_definition_repeat1] = STATE(1404), + [sym_abstract_array_declarator] = STATE(1405), + [sym_parameter_list] = STATE(590), + [sym_abstract_function_declarator] = STATE(1405), + [sym_abstract_pointer_declarator] = STATE(1405), + [sym_type_qualifier] = STATE(1404), + [sym__abstract_declarator] = STATE(1405), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, [589] = { - [sym_parameter_list] = STATE(1415), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2067), + [sym_abstract_reference_declarator] = STATE(1407), + [aux_sym_type_definition_repeat1] = STATE(1406), + [sym_abstract_array_declarator] = STATE(1407), + [sym_parameter_list] = STATE(590), + [sym_abstract_function_declarator] = STATE(1407), + [sym_abstract_pointer_declarator] = STATE(1407), + [sym_type_qualifier] = STATE(1406), + [sym__abstract_declarator] = STATE(1407), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, [590] = { - [sym_abstract_array_declarator] = STATE(1414), - [sym_parameter_list] = STATE(587), - [sym_abstract_reference_declarator] = STATE(1414), - [sym_abstract_function_declarator] = STATE(1414), - [aux_sym_type_definition_repeat1] = STATE(1416), - [sym_abstract_pointer_declarator] = STATE(1414), - [sym_type_qualifier] = STATE(1416), - [sym__abstract_declarator] = STATE(1414), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1409), + [sym_type_qualifier] = STATE(1409), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(2843), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, [591] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(591), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(2840), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(2840), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), + [sym_parameter_list] = STATE(1410), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), }, [592] = { - [sym_template_type] = STATE(1418), - [sym_scoped_type_identifier] = STATE(1419), - [sym_scoped_namespace_identifier] = STATE(88), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(2843), + [sym_abstract_reference_declarator] = STATE(1407), + [aux_sym_type_definition_repeat1] = STATE(1411), + [sym_abstract_array_declarator] = STATE(1407), + [sym_parameter_list] = STATE(590), + [sym_abstract_function_declarator] = STATE(1407), + [sym_abstract_pointer_declarator] = STATE(1407), + [sym_type_qualifier] = STATE(1411), + [sym__abstract_declarator] = STATE(1407), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, [593] = { - [sym_template_argument_list] = STATE(385), - [aux_sym_base_class_clause_repeat1] = STATE(1421), - [anon_sym_COLON_COLON] = ACTIONS(670), + [sym_scoped_type_identifier] = STATE(1413), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_template_type] = STATE(1414), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(2845), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_COMMA] = ACTIONS(2847), }, [594] = { - [aux_sym_base_class_clause_repeat1] = STATE(1422), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2849), + [aux_sym_base_class_clause_repeat1] = STATE(1416), + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(674), [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_COMMA] = ACTIONS(2849), }, [595] = { - [sym_template_argument_list] = STATE(354), - [aux_sym_base_class_clause_repeat1] = STATE(1422), + [aux_sym_base_class_clause_repeat1] = STATE(1417), + [sym_template_argument_list] = STATE(312), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_COMMA] = ACTIONS(2847), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_COMMA] = ACTIONS(2849), }, [596] = { - [sym_field_declaration_list] = STATE(1423), - [sym_base_class_clause] = STATE(1424), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(302), + [aux_sym_base_class_clause_repeat1] = STATE(1417), + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), [sym_comment] = ACTIONS(3), }, [597] = { - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2851), - [anon_sym_EQ] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_final] = ACTIONS(2853), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), - [anon_sym_COLON] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_override] = ACTIONS(2853), - [sym_operator_name] = ACTIONS(2851), - [sym_noexcept] = ACTIONS(2853), - [anon_sym_CARET] = ACTIONS(2851), - [anon_sym_GT] = ACTIONS(2853), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_register] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2853), - [anon_sym_LT_LT] = ACTIONS(2851), - [anon_sym_constexpr] = ACTIONS(2853), + [sym_field_declaration_list] = STATE(1418), + [sym_base_class_clause] = STATE(1419), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2851), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym_RPAREN] = ACTIONS(2851), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym_GT_GT] = ACTIONS(2851), - [anon_sym_DASH_GT] = ACTIONS(2851), }, [598] = { - [sym_field_declaration_list] = STATE(1423), - [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2853), + [anon_sym_EQ] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_final] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2853), + [anon_sym_COLON] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_override] = ACTIONS(2855), + [sym_operator_name] = ACTIONS(2853), + [sym_noexcept] = ACTIONS(2855), + [anon_sym_CARET] = ACTIONS(2853), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2853), + [anon_sym_register] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_DOT] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2853), + [anon_sym_constexpr] = ACTIONS(2855), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(2853), + [anon_sym_QMARK] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym_GT_GT] = ACTIONS(2853), + [anon_sym_DASH_GT] = ACTIONS(2853), }, [599] = { - [sym_destructor_name] = STATE(166), - [sym_identifier] = ACTIONS(2855), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), + [sym_field_declaration_list] = STATE(1418), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), }, [600] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), + [sym_destructor_name] = STATE(167), [sym_identifier] = ACTIONS(2857), - [anon_sym_namespace] = ACTIONS(2859), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, [601] = { - [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(2861), - [sym_preproc_arg] = ACTIONS(2863), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(1423), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(2859), + [anon_sym_namespace] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), }, [602] = { + [sym_comment] = ACTIONS(244), + [anon_sym_LF] = ACTIONS(2863), [sym_preproc_arg] = ACTIONS(2865), - [sym_comment] = ACTIONS(3), }, [603] = { - [anon_sym_LPAREN2] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2867), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2867), - [anon_sym_final] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2867), - [anon_sym_COLON] = ACTIONS(2869), - [anon_sym_explicit] = ACTIONS(2869), - [sym_identifier] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_override] = ACTIONS(2869), - [sym_operator_name] = ACTIONS(2867), - [sym_noexcept] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_register] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2867), - [anon_sym_constexpr] = ACTIONS(2869), + [sym_preproc_arg] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2867), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_TILDE] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym_RPAREN] = ACTIONS(2867), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2867), - [anon_sym_DASH_GT] = ACTIONS(2867), }, [604] = { - [sym_union_specifier] = STATE(1433), - [sym_macro_type_specifier] = STATE(1433), - [sym_class_specifier] = STATE(1433), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1433), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(1432), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(1433), - [sym_enum_specifier] = STATE(1433), - [sym_dependent_type] = STATE(1433), - [sym_struct_specifier] = STATE(1433), - [sym_scoped_type_identifier] = STATE(87), - [sym_type_qualifier] = STATE(1432), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_final] = ACTIONS(2871), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2869), + [anon_sym_COLON] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_override] = ACTIONS(2871), + [sym_operator_name] = ACTIONS(2869), + [sym_noexcept] = ACTIONS(2871), + [anon_sym_CARET] = ACTIONS(2869), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_register] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(2871), + [anon_sym_LT_LT] = ACTIONS(2869), + [anon_sym_constexpr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(2869), + [anon_sym_QMARK] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), + [anon_sym_LT_EQ] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_DASH_GT] = ACTIONS(2869), + }, + [605] = { + [sym_union_specifier] = STATE(1428), + [sym_macro_type_specifier] = STATE(1428), + [sym_class_specifier] = STATE(1428), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(1428), + [aux_sym_type_definition_repeat1] = STATE(1427), + [sym__type_specifier] = STATE(1428), + [sym_struct_specifier] = STATE(1428), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(1428), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_type_qualifier] = STATE(1427), + [sym_dependent_type] = STATE(1428), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2871), + [sym_auto] = ACTIONS(2873), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -36954,7 +36990,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2873), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -36965,50 +37001,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [605] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(1092), + [606] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(1096), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(1096), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1096), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_short] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [606] = { - [anon_sym_COLON] = ACTIONS(2873), + [607] = { + [anon_sym_COLON] = ACTIONS(2875), [sym_comment] = ACTIONS(3), }, - [607] = { - [sym_template_argument_list] = STATE(1436), - [anon_sym_LPAREN2] = ACTIONS(1556), + [608] = { + [sym_template_argument_list] = STATE(1431), + [anon_sym_LPAREN2] = ACTIONS(1570), [sym_operator_name] = ACTIONS(185), [anon_sym_mutable] = ACTIONS(169), [anon_sym_register] = ACTIONS(169), [anon_sym__Atomic] = ACTIONS(169), [anon_sym_const] = ACTIONS(169), [anon_sym_extern] = ACTIONS(169), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(534), [anon_sym_constexpr] = ACTIONS(169), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(169), @@ -37025,93 +37061,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(185), [sym_identifier] = ACTIONS(169), }, - [608] = { - [sym_identifier] = ACTIONS(2877), + [609] = { + [sym_identifier] = ACTIONS(2879), [sym_comment] = ACTIONS(3), }, - [609] = { - [sym_function_declarator] = STATE(1441), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_type] = STATE(613), - [sym_destructor_name] = STATE(1438), - [sym__declarator] = STATE(1438), - [sym_array_declarator] = STATE(1438), - [aux_sym__declaration_specifiers_repeat1] = STATE(1439), - [sym_storage_class_specifier] = STATE(1439), - [sym_dependent_type] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_type_qualifier] = STATE(1439), - [sym_pointer_declarator] = STATE(1438), - [sym_scoped_namespace_identifier] = STATE(621), - [sym_template_function] = STATE(1438), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym__declaration_specifiers] = STATE(1440), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(1438), - [anon_sym_LPAREN2] = ACTIONS(456), + [610] = { + [sym_template_function] = STATE(1433), + [sym_macro_type_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(1433), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(1433), + [sym_array_declarator] = STATE(1433), + [sym_template_type] = STATE(622), + [sym_storage_class_specifier] = STATE(1434), + [sym_dependent_type] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_destructor_name] = STATE(1433), + [sym_type_qualifier] = STATE(1434), + [sym_pointer_declarator] = STATE(1433), + [sym_structured_binding_declarator] = STATE(1433), + [aux_sym__declaration_specifiers_repeat1] = STATE(1434), + [sym_enum_specifier] = STATE(620), + [sym__declaration_specifiers] = STATE(1435), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(1436), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(2879), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(2881), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1096), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [610] = { - [aux_sym_function_definition_repeat1] = STATE(1442), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(1443), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(1444), - [sym_declaration] = STATE(1444), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(1442), - [sym_type_qualifier] = STATE(281), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(1445), - [sym_scoped_type_identifier] = STATE(87), + [611] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(1437), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_function_definition] = STATE(1438), + [sym_declaration] = STATE(1438), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(1439), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_type_qualifier] = STATE(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(1439), + [sym__declaration_specifiers] = STATE(1440), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -37120,964 +37158,968 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, - [611] = { - [sym_template_parameter_list] = STATE(1446), - [anon_sym_LT] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - }, [612] = { - [sym_identifier] = ACTIONS(2881), + [sym_template_parameter_list] = STATE(1441), + [anon_sym_LT] = ACTIONS(466), [sym_comment] = ACTIONS(3), }, [613] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [sym_operator_name] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(547), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(545), - [sym_identifier] = ACTIONS(547), + [sym_identifier] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), }, [614] = { - [sym_parameter_list] = STATE(1449), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(589), + [sym_parameter_list] = STATE(1443), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(616), [sym_comment] = ACTIONS(3), }, [615] = { - [sym_function_declarator] = STATE(1451), - [sym_macro_type_specifier] = STATE(1450), - [sym_class_specifier] = STATE(1450), - [sym_template_type] = STATE(613), - [sym_sized_type_specifier] = STATE(1450), - [sym__type_specifier] = STATE(1450), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_array_declarator] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(313), - [sym_storage_class_specifier] = STATE(313), - [sym_dependent_type] = STATE(1450), - [sym_struct_specifier] = STATE(1450), - [sym_union_specifier] = STATE(1450), - [sym_type_qualifier] = STATE(313), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(621), - [sym_template_function] = STATE(56), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(1450), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(56), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(1445), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(1434), + [sym_type_qualifier] = STATE(1434), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [aux_sym__declaration_specifiers_repeat1] = STATE(1434), + [sym_enum_specifier] = STATE(620), + [sym_attribute] = STATE(1445), + [sym__declaration_specifiers] = STATE(1446), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(2885), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(75), + [anon_sym_long] = ACTIONS(1096), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_virtual] = ACTIONS(2885), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(1096), [anon_sym_restrict] = ACTIONS(11), }, [616] = { - [sym_function_field_declarator] = STATE(1459), - [sym_reference_field_declarator] = STATE(1459), - [sym_template_method] = STATE(1459), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(1459), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(1459), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(1459), - [sym_bitfield_clause] = STATE(1461), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(1461), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(2901), - [sym_operator_name] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - }, - [617] = { - [sym_compound_statement] = STATE(1465), - [sym_field_initializer_list] = STATE(1466), - [sym_default_method_clause] = STATE(1465), - [sym_delete_method_clause] = STATE(1465), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2909), - }, - [618] = { - [aux_sym_function_definition_repeat1] = STATE(1468), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(1439), - [sym_storage_class_specifier] = STATE(1439), - [sym_type_qualifier] = STATE(1439), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_attribute] = STATE(1468), - [sym_struct_specifier] = STATE(619), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym__declaration_specifiers] = STATE(1469), - [sym_scoped_type_identifier] = STATE(87), + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(1448), + [sym_preproc_function_def] = STATE(1448), + [sym__declarator] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), + [sym_array_declarator] = STATE(614), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1448), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(1448), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(1448), + [sym_preproc_if_in_field_declaration_list] = STATE(1448), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1448), + [sym_type_definition] = STATE(1448), + [sym_using_declaration] = STATE(1448), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(1448), + [sym_inline_method_definition] = STATE(1448), + [sym_constructor_or_destructor_definition] = STATE(1448), + [sym_access_specifier] = STATE(1448), + [sym_reference_declarator] = STATE(614), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(1448), + [sym_alias_declaration] = STATE(1448), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(1448), + [sym_constructor_or_destructor_declaration] = STATE(1448), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1092), [anon_sym_restrict] = ACTIONS(11), }, + [617] = { + [sym_function_field_declarator] = STATE(1458), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(1458), + [sym_pointer_field_declarator] = STATE(1458), + [sym__field_declarator] = STATE(1458), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(1456), + [sym_array_field_declarator] = STATE(1458), + [sym_initializer_list] = STATE(1456), + [sym_template_method] = STATE(1458), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(2895), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(2903), + [sym_operator_name] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + }, + [618] = { + [anon_sym_COLON_COLON] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + }, [619] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(1470), - [sym_storage_class_specifier] = STATE(1470), - [sym_type_qualifier] = STATE(1470), - [anon_sym_LPAREN2] = ACTIONS(541), + [sym_compound_statement] = STATE(1463), + [sym_field_initializer_list] = STATE(1464), + [sym_delete_method_clause] = STATE(1463), + [sym_default_method_clause] = STATE(1463), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2913), + }, + [620] = { + [sym_storage_class_specifier] = STATE(1465), + [sym_type_qualifier] = STATE(1465), + [aux_sym__declaration_specifiers_repeat1] = STATE(1465), + [anon_sym_LPAREN2] = ACTIONS(565), [anon_sym_restrict] = ACTIONS(11), [anon_sym_mutable] = ACTIONS(11), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(541), + [anon_sym_COLON_COLON] = ACTIONS(565), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(567), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_COLON] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(567), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(541), - [sym_operator_name] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(565), + [sym_operator_name] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_inline] = ACTIONS(63), }, - [620] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(1472), - [sym_preproc_function_def] = STATE(1472), - [sym_alias_declaration] = STATE(1472), - [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), - [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(1472), - [sym_preproc_if_in_field_declaration_list] = STATE(1472), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1472), - [sym_type_definition] = STATE(1472), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(1472), - [sym__field_declaration_list_item] = STATE(1472), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1472), - [sym_inline_method_definition] = STATE(1472), - [sym_friend_declaration] = STATE(1472), - [sym_access_specifier] = STATE(1472), - [sym_using_declaration] = STATE(1472), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(1472), - [sym_constructor_or_destructor_definition] = STATE(1472), - [sym_constructor_or_destructor_declaration] = STATE(1472), - [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [621] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1466), + [anon_sym_LPAREN2] = ACTIONS(554), + [sym_operator_name] = ACTIONS(554), + [anon_sym_short] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(558), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_static] = ACTIONS(558), + [anon_sym_volatile] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(558), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_inline] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(554), + [sym_identifier] = ACTIONS(562), + }, + [622] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [sym_operator_name] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_COLON_COLON] = ACTIONS(2907), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(532), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [sym_identifier] = ACTIONS(532), + }, + [623] = { + [sym_template_function] = STATE(60), + [sym_macro_type_specifier] = STATE(1467), + [sym_class_specifier] = STATE(1467), + [sym_sized_type_specifier] = STATE(1467), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym__type_specifier] = STATE(1467), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(60), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(60), + [sym_array_declarator] = STATE(60), + [sym_template_type] = STATE(622), + [sym_storage_class_specifier] = STATE(336), + [sym_dependent_type] = STATE(1467), + [sym_struct_specifier] = STATE(1467), + [sym_union_specifier] = STATE(1467), + [sym_destructor_name] = STATE(60), + [sym_type_qualifier] = STATE(336), + [sym_pointer_declarator] = STATE(60), + [sym_structured_binding_declarator] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(336), + [sym_enum_specifier] = STATE(1467), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(1468), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(2917), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(75), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(1096), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [621] = { - [anon_sym_COLON_COLON] = ACTIONS(2883), - [sym_comment] = ACTIONS(3), - }, - [622] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1473), - [anon_sym_LPAREN2] = ACTIONS(621), - [sym_operator_name] = ACTIONS(621), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(621), - [sym_identifier] = ACTIONS(629), - }, - [623] = { - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_final] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2917), - [anon_sym_COLON] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_override] = ACTIONS(2919), - [sym_operator_name] = ACTIONS(2917), - [sym_noexcept] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - }, [624] = { - [sym_field_declaration_list] = STATE(1474), - [anon_sym_LBRACE] = ACTIONS(302), + [sym_field_declaration_list] = STATE(1469), + [sym_base_class_clause] = STATE(1470), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), }, [625] = { - [sym_field_declaration_list] = STATE(1474), - [sym_base_class_clause] = STATE(1475), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), - }, - [626] = { - [anon_sym_LPAREN2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(2919), [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1651), - [anon_sym_EQ_EQ] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(2919), + [anon_sym_final] = ACTIONS(2921), + [anon_sym_EQ_EQ] = ACTIONS(2919), [anon_sym_PIPE] = ACTIONS(2921), [anon_sym_LT] = ACTIONS(2921), [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_GT_EQ] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2919), [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_COLON] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2919), + [anon_sym_COLON] = ACTIONS(2921), + [anon_sym_explicit] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_override] = ACTIONS(2921), + [sym_operator_name] = ACTIONS(2919), + [sym_noexcept] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2919), [anon_sym_GT] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_PIPE_PIPE] = ACTIONS(1651), - [anon_sym_DOT] = ACTIONS(1651), - [anon_sym_LT_LT] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_PERCENT] = ACTIONS(1651), + [anon_sym_COMMA] = ACTIONS(2919), + [anon_sym_register] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(2921), + [anon_sym_LT_LT] = ACTIONS(2919), + [anon_sym_constexpr] = ACTIONS(2921), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(2919), + [anon_sym_QMARK] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2919), + [anon_sym_DASH_GT] = ACTIONS(2919), + }, + [626] = { + [sym_field_declaration_list] = STATE(1469), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_DASH_GT] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1651), }, [627] = { - [sym_template_type] = STATE(239), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1661), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_COLON] = ACTIONS(1661), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_COMMA] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_DOT] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_DASH_GT] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_EQ] = ACTIONS(2923), + [anon_sym_GT_GT] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1661), + }, + [628] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(2923), - }, - [628] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(2925), }, [629] = { - [anon_sym_COLON_COLON] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1141), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [630] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [anon_sym_COLON_COLON] = ACTIONS(1145), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1147), }, [631] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(2929), }, [632] = { - [sym_destructor_name] = STATE(399), - [sym_identifier] = ACTIONS(2929), - [sym_operator_name] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(308), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2929), }, [633] = { - [sym_macro_type_specifier] = STATE(1480), - [sym_class_specifier] = STATE(1480), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1480), - [sym__type_specifier] = STATE(1480), - [sym_type_descriptor] = STATE(1481), - [sym_type_qualifier] = STATE(1482), - [sym_struct_specifier] = STATE(1480), - [sym_union_specifier] = STATE(1480), - [sym_dependent_type] = STATE(1480), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(1482), - [aux_sym_sized_type_specifier_repeat1] = STATE(1483), - [sym_enum_specifier] = STATE(1480), - [sym_scoped_type_identifier] = STATE(87), + [sym_destructor_name] = STATE(400), + [sym_identifier] = ACTIONS(2931), + [sym_operator_name] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [634] = { + [aux_sym_type_definition_repeat1] = STATE(1475), + [sym_macro_type_specifier] = STATE(1477), + [sym_class_specifier] = STATE(1477), + [aux_sym_sized_type_specifier_repeat1] = STATE(1476), + [sym_sized_type_specifier] = STATE(1477), + [sym__type_specifier] = STATE(1477), + [sym_type_descriptor] = STATE(1478), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_type_qualifier] = STATE(1475), + [sym_struct_specifier] = STATE(1477), + [sym_union_specifier] = STATE(1477), + [sym_dependent_type] = STATE(1477), + [sym_enum_specifier] = STATE(1477), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2933), + [sym_auto] = ACTIONS(2933), + [anon_sym_signed] = ACTIONS(2935), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2935), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(147), [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2935), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2937), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2935), [anon_sym_restrict] = ACTIONS(11), }, - [634] = { - [anon_sym_DASH] = ACTIONS(2937), - [sym_raw_string_literal] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [sym_null] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym_namespace] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2937), - [sym_auto] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [sym_operator_name] = ACTIONS(2939), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [sym_nullptr] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2939), - [ts_builtin_sym_end] = ACTIONS(2939), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_restrict] = ACTIONS(2937), - }, [635] = { - [sym_destructor_name] = STATE(938), - [sym_identifier] = ACTIONS(2941), - [sym_operator_name] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(2939), + [sym_raw_string_literal] = ACTIONS(2941), + [sym_true] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [sym_null] = ACTIONS(2939), + [anon_sym_break] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_switch] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2939), + [anon_sym_delete] = ACTIONS(2939), + [anon_sym_continue] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [sym_number_literal] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [anon_sym_namespace] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2939), + [sym_auto] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [anon_sym_new] = ACTIONS(2939), + [anon_sym_goto] = ACTIONS(2939), + [sym_operator_name] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2939), + [aux_sym_preproc_include_token1] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [sym_false] = ACTIONS(2939), + [sym_nullptr] = ACTIONS(2939), + [anon_sym_do] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_return] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2941), + [ts_builtin_sym_end] = ACTIONS(2941), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2941), + [anon_sym_restrict] = ACTIONS(2939), }, [636] = { - [anon_sym_DASH] = ACTIONS(2943), - [sym_raw_string_literal] = ACTIONS(2945), - [sym_true] = ACTIONS(2943), - [anon_sym_mutable] = ACTIONS(2943), - [sym_null] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_volatile] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_typedef] = ACTIONS(2943), - [anon_sym_switch] = ACTIONS(2943), - [anon_sym_explicit] = ACTIONS(2943), + [sym_destructor_name] = STATE(960), [sym_identifier] = ACTIONS(2943), - [anon_sym_delete] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), - [anon_sym__Atomic] = ACTIONS(2943), - [sym_number_literal] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_constexpr] = ACTIONS(2943), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2943), - [sym_auto] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2943), - [anon_sym_long] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2943), - [sym_preproc_directive] = ACTIONS(2943), - [aux_sym_preproc_if_token1] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_typename] = ACTIONS(2943), - [anon_sym_short] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [sym_operator_name] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [aux_sym_preproc_include_token1] = ACTIONS(2943), - [anon_sym_register] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nullptr] = ACTIONS(2943), - [anon_sym_do] = ACTIONS(2943), - [anon_sym_template] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2945), - [ts_builtin_sym_end] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2943), + [sym_operator_name] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), }, [637] = { - [anon_sym_DASH] = ACTIONS(2947), - [sym_raw_string_literal] = ACTIONS(2949), - [sym_true] = ACTIONS(2947), - [anon_sym_mutable] = ACTIONS(2947), - [sym_null] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_sizeof] = ACTIONS(2947), - [anon_sym_volatile] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_typedef] = ACTIONS(2947), - [anon_sym_switch] = ACTIONS(2947), - [anon_sym_explicit] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2947), - [anon_sym_delete] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), - [anon_sym__Atomic] = ACTIONS(2947), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_constexpr] = ACTIONS(2947), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2947), - [sym_auto] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2947), - [anon_sym_long] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2947), - [sym_preproc_directive] = ACTIONS(2947), - [aux_sym_preproc_if_token1] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_typename] = ACTIONS(2947), - [anon_sym_short] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [sym_operator_name] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [aux_sym_preproc_include_token1] = ACTIONS(2947), - [anon_sym_register] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [sym_primitive_type] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nullptr] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_template] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2949), - [ts_builtin_sym_end] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2945), + [sym_raw_string_literal] = ACTIONS(2947), + [sym_true] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [sym_null] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_sizeof] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_explicit] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2945), + [anon_sym_delete] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [sym_number_literal] = ACTIONS(2947), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [anon_sym_namespace] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2945), + [sym_auto] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2945), + [sym_preproc_directive] = ACTIONS(2945), + [aux_sym_preproc_if_token1] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_goto] = ACTIONS(2945), + [sym_operator_name] = ACTIONS(2947), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [aux_sym_preproc_include_token1] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_nullptr] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2947), + [ts_builtin_sym_end] = ACTIONS(2947), + [aux_sym_preproc_def_token1] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_restrict] = ACTIONS(2945), }, [638] = { - [aux_sym_preproc_if_token2] = ACTIONS(2951), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(2949), + [sym_raw_string_literal] = ACTIONS(2951), + [sym_true] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [sym_null] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_explicit] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2949), + [anon_sym_delete] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), + [anon_sym__Atomic] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2951), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_constexpr] = ACTIONS(2949), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), + [anon_sym_namespace] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_LPAREN2] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2949), + [sym_auto] = ACTIONS(2949), + [anon_sym_signed] = ACTIONS(2949), + [anon_sym_long] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2949), + [sym_preproc_directive] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_typename] = ACTIONS(2949), + [anon_sym_short] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [sym_operator_name] = ACTIONS(2951), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [aux_sym_preproc_include_token1] = ACTIONS(2949), + [anon_sym_register] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_nullptr] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_template] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2951), + [ts_builtin_sym_end] = ACTIONS(2951), + [aux_sym_preproc_def_token1] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_restrict] = ACTIONS(2949), }, [639] = { + [aux_sym_preproc_if_token2] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + }, + [640] = { [sym_goto_statement] = STATE(1296), [sym_preproc_function_def] = STATE(1296), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(1296), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(1296), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(1296), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(1486), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1296), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(1481), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), [sym_switch_statement] = STATE(1296), + [sym_structured_binding_declarator] = STATE(60), [sym_return_statement] = STATE(1296), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_namespace_definition] = STATE(1296), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(51), [sym_type_definition] = STATE(1296), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1296), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1296), + [sym_constructor_or_destructor_definition] = STATE(1296), + [sym_reference_declarator] = STATE(60), [sym_break_statement] = STATE(1296), [sym_preproc_include] = STATE(1296), - [sym_assignment_expression] = STATE(482), + [sym_assignment_expression] = STATE(484), [sym_preproc_ifdef] = STATE(1296), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(1296), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(1296), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), [sym_compound_statement] = STATE(1296), - [sym_template_instantiation] = STATE(1296), - [sym_constructor_or_destructor_definition] = STATE(1296), [sym_expression_statement] = STATE(1296), - [sym_reference_declarator] = STATE(56), [sym_do_statement] = STATE(1296), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), [sym_preproc_def] = STATE(1296), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_function_definition] = STATE(1296), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), [sym__empty_declaration] = STATE(1296), - [aux_sym_translation_unit_repeat1] = STATE(1296), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(1296), - [sym_preproc_else] = STATE(1486), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(1481), [sym_if_statement] = STATE(1296), [sym_for_statement] = STATE(1296), - [sym_comma_expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_preproc_call] = STATE(1296), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(1296), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(1296), - [sym_sized_type_specifier] = STATE(53), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(1296), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1296), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), [sym_continue_statement] = STATE(1296), [sym_preproc_if] = STATE(1296), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1296), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), [sym_linkage_specification] = STATE(1296), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1296), + [aux_sym_translation_unit_repeat1] = STATE(1296), + [sym_enum_specifier] = STATE(55), [sym_labeled_statement] = STATE(1296), [sym_while_statement] = STATE(1296), - [sym_raw_string_literal] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(2953), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(2955), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -38085,10 +38127,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -38096,180 +38138,180 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [640] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(2955), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, [641] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), [anon_sym_RPAREN] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [642] = { - [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_RPAREN] = ACTIONS(2959), [sym_comment] = ACTIONS(3), }, [643] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(654), - [anon_sym_STAR_EQ] = ACTIONS(654), - [anon_sym_LT_LT_EQ] = ACTIONS(654), - [anon_sym_PERCENT_EQ] = ACTIONS(654), - [anon_sym_RBRACK_RBRACK] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_SLASH_EQ] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(654), - [anon_sym_GT_GT_EQ] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_RPAREN] = ACTIONS(2957), + [sym_comment] = ACTIONS(3), }, [644] = { - [sym_virtual_specifier] = STATE(1491), - [sym_template_type] = STATE(1492), - [sym_scoped_namespace_identifier] = STATE(653), - [sym_field_declaration_list] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1494), - [sym_base_class_clause] = STATE(1495), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_override] = ACTIONS(298), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(654), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [645] = { - [sym_virtual_specifier] = STATE(1497), - [sym_template_type] = STATE(1498), - [sym_scoped_namespace_identifier] = STATE(653), - [sym_field_declaration_list] = STATE(1499), - [sym_scoped_type_identifier] = STATE(1500), - [sym_base_class_clause] = STATE(1501), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_override] = ACTIONS(298), + [sym_scoped_type_identifier] = STATE(1486), + [sym_virtual_specifier] = STATE(1487), + [sym_template_type] = STATE(1488), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_field_declaration_list] = STATE(1489), + [sym_base_class_clause] = STATE(1490), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(2963), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_override] = ACTIONS(300), }, [646] = { - [sym_union_specifier] = STATE(1502), - [sym_macro_type_specifier] = STATE(1502), - [sym_class_specifier] = STATE(1502), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1502), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1502), - [aux_sym_sized_type_specifier_repeat1] = STATE(654), - [sym_struct_specifier] = STATE(1502), - [sym_enum_specifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1502), - [anon_sym_unsigned] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(1196), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2967), + [sym_scoped_type_identifier] = STATE(1492), + [sym_virtual_specifier] = STATE(1493), + [sym_template_type] = STATE(1494), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_field_declaration_list] = STATE(1495), + [sym_base_class_clause] = STATE(1496), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_override] = ACTIONS(300), }, [647] = { - [sym_identifier] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), + [sym_union_specifier] = STATE(1497), + [sym_macro_type_specifier] = STATE(1497), + [sym_class_specifier] = STATE(1497), + [aux_sym_sized_type_specifier_repeat1] = STATE(652), + [sym_sized_type_specifier] = STATE(1497), + [sym__type_specifier] = STATE(1497), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1497), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1497), + [sym_struct_specifier] = STATE(1497), + [anon_sym_unsigned] = ACTIONS(1192), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1192), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(1202), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1192), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2969), }, [648] = { - [sym_template_argument_list] = STATE(1505), + [sym_identifier] = ACTIONS(2971), + [sym_comment] = ACTIONS(3), + }, + [649] = { + [sym_template_argument_list] = STATE(1500), [anon_sym_LPAREN2] = ACTIONS(185), [anon_sym_DASH] = ACTIONS(169), [anon_sym_DASH_DASH] = ACTIONS(185), @@ -38278,11 +38320,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(185), [anon_sym_PERCENT_EQ] = ACTIONS(185), - [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), [anon_sym_RBRACK_RBRACK] = ACTIONS(185), [anon_sym_EQ_EQ] = ACTIONS(185), [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_AMP] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(169), @@ -38316,739 +38358,739 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(185), [anon_sym_GT_GT] = ACTIONS(169), }, - [649] = { - [sym_enumerator_list] = STATE(1508), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2978), - }, [650] = { - [sym_virtual_specifier] = STATE(1510), - [sym_template_type] = STATE(1511), - [sym_scoped_namespace_identifier] = STATE(653), - [sym_field_declaration_list] = STATE(1512), - [sym_scoped_type_identifier] = STATE(1513), - [sym_base_class_clause] = STATE(1514), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(2980), - [anon_sym_COLON_COLON] = ACTIONS(1188), + [sym_enumerator_list] = STATE(1503), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), }, [651] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_LT_LT_EQ] = ACTIONS(545), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_RBRACK_RBRACK] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_CARET_EQ] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(547), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_PIPE_EQ] = ACTIONS(545), - [anon_sym_GT_GT_EQ] = ACTIONS(545), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(547), + [sym_scoped_type_identifier] = STATE(1505), + [sym_virtual_specifier] = STATE(1506), + [sym_template_type] = STATE(1507), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_field_declaration_list] = STATE(1508), + [sym_base_class_clause] = STATE(1509), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(2982), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_override] = ACTIONS(300), }, [652] = { - [sym_template_argument_list] = STATE(1516), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_LT_LT_EQ] = ACTIONS(545), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_RBRACK_RBRACK] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_CARET_EQ] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(545), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_PIPE_EQ] = ACTIONS(545), - [anon_sym_GT_GT_EQ] = ACTIONS(545), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(547), + [aux_sym_sized_type_specifier_repeat1] = STATE(1512), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(2984), + [anon_sym_long] = ACTIONS(2984), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(2984), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(2986), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), }, [653] = { - [anon_sym_COLON_COLON] = ACTIONS(2982), - [sym_comment] = ACTIONS(3), + [sym_new_declarator] = STATE(1514), + [sym_argument_list] = STATE(1515), + [sym_initializer_list] = STATE(1515), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, [654] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1519), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(2987), - [anon_sym_long] = ACTIONS(2987), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(2987), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2991), - [anon_sym_unsigned] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), + [sym_union_specifier] = STATE(1516), + [sym_macro_type_specifier] = STATE(1516), + [sym_class_specifier] = STATE(1516), + [aux_sym_sized_type_specifier_repeat1] = STATE(652), + [sym_sized_type_specifier] = STATE(1516), + [sym__type_specifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1516), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1516), + [sym_struct_specifier] = STATE(1516), + [anon_sym_unsigned] = ACTIONS(1192), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2992), + [anon_sym_signed] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1192), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(1202), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1192), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2992), }, [655] = { - [sym_initializer_list] = STATE(1522), - [sym_new_declarator] = STATE(1521), - [sym_argument_list] = STATE(1522), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [sym_template_argument_list] = STATE(1517), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_RBRACK_RBRACK] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(530), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(532), }, [656] = { - [sym_union_specifier] = STATE(1523), - [sym_macro_type_specifier] = STATE(1523), - [sym_class_specifier] = STATE(1523), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1523), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1523), - [aux_sym_sized_type_specifier_repeat1] = STATE(654), - [sym_struct_specifier] = STATE(1523), - [sym_enum_specifier] = STATE(1523), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1523), - [anon_sym_unsigned] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2995), - [anon_sym_signed] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(1196), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(2997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(532), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(532), }, [657] = { - [sym_template_type] = STATE(239), + [anon_sym_COLON_COLON] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + }, + [658] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(2997), - }, - [658] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(2999), }, [659] = { - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_DASH_GT] = ACTIONS(1317), - [anon_sym_RPAREN] = ACTIONS(1317), - [anon_sym_STAR_EQ] = ACTIONS(1317), - [anon_sym_LT_LT_EQ] = ACTIONS(1317), - [anon_sym_PERCENT_EQ] = ACTIONS(1317), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_CARET_EQ] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_COLON] = ACTIONS(1317), - [anon_sym_SLASH_EQ] = ACTIONS(1317), - [anon_sym_PLUS_EQ] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_PIPE_EQ] = ACTIONS(1317), - [anon_sym_GT_GT_EQ] = ACTIONS(1317), - [anon_sym_COMMA] = ACTIONS(1317), - [anon_sym_PIPE_PIPE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_PERCENT] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_DASH_EQ] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_AMP_EQ] = ACTIONS(1317), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1317), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [660] = { - [aux_sym_string_literal_repeat1] = STATE(731), - [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_STAR_EQ] = ACTIONS(1325), + [anon_sym_LT_LT_EQ] = ACTIONS(1325), + [anon_sym_PERCENT_EQ] = ACTIONS(1325), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(1325), + [anon_sym_SLASH_EQ] = ACTIONS(1325), + [anon_sym_PLUS_EQ] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_EQ] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1325), + [anon_sym_DASH_EQ] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1325), + [anon_sym_AMP_EQ] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1325), }, [661] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_STAR_EQ] = ACTIONS(1141), - [anon_sym_LT_LT_EQ] = ACTIONS(1141), - [anon_sym_PERCENT_EQ] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1141), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_CARET_EQ] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1141), - [anon_sym_PLUS_EQ] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1141), - [anon_sym_GT_GT_EQ] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_DASH_EQ] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), + [aux_sym_string_literal_repeat1] = STATE(732), + [sym_comment] = ACTIONS(244), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(3025), }, [662] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_STAR_EQ] = ACTIONS(1141), - [anon_sym_LT_LT_EQ] = ACTIONS(1141), - [anon_sym_PERCENT_EQ] = ACTIONS(1141), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1141), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_CARET_EQ] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1141), - [anon_sym_SLASH_EQ] = ACTIONS(1141), - [anon_sym_PLUS_EQ] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1141), - [anon_sym_GT_GT_EQ] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_DASH_EQ] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_STAR_EQ] = ACTIONS(1147), + [anon_sym_LT_LT_EQ] = ACTIONS(1147), + [anon_sym_PERCENT_EQ] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_COLON] = ACTIONS(1139), + [anon_sym_SLASH_EQ] = ACTIONS(1147), + [anon_sym_PLUS_EQ] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_PIPE_EQ] = ACTIONS(1147), + [anon_sym_GT_GT_EQ] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_DASH_EQ] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), }, [663] = { - [sym_identifier] = ACTIONS(3025), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_STAR_EQ] = ACTIONS(1147), + [anon_sym_LT_LT_EQ] = ACTIONS(1147), + [anon_sym_PERCENT_EQ] = ACTIONS(1147), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_CARET_EQ] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_SLASH_EQ] = ACTIONS(1147), + [anon_sym_PLUS_EQ] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_PIPE_EQ] = ACTIONS(1147), + [anon_sym_GT_GT_EQ] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_DASH_EQ] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), }, [664] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1528), - [sym_logical_expression] = STATE(1528), - [sym_bitwise_expression] = STATE(1528), - [sym_cast_expression] = STATE(1528), - [sym_new_expression] = STATE(1528), - [sym_field_expression] = STATE(1528), - [sym_compound_literal_expression] = STATE(1528), - [sym_char_literal] = STATE(1528), - [sym_template_function] = STATE(1528), - [sym_conditional_expression] = STATE(1528), - [sym_equality_expression] = STATE(1528), - [sym_relational_expression] = STATE(1528), - [sym_delete_expression] = STATE(1528), - [sym_sizeof_expression] = STATE(1528), - [sym_parenthesized_expression] = STATE(1528), - [sym_lambda_expression] = STATE(1528), - [sym_concatenated_string] = STATE(1528), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1528), - [sym_assignment_expression] = STATE(1528), - [sym_pointer_expression] = STATE(1528), - [sym_shift_expression] = STATE(1528), - [sym_math_expression] = STATE(1528), - [sym_call_expression] = STATE(1528), - [sym_lambda_capture_specifier] = STATE(196), + [sym_identifier] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + }, + [665] = { + [sym_template_function] = STATE(1523), + [sym__expression] = STATE(1523), + [sym_logical_expression] = STATE(1523), + [sym_bitwise_expression] = STATE(1523), + [sym_cast_expression] = STATE(1523), + [sym_delete_expression] = STATE(1523), + [sym_field_expression] = STATE(1523), + [sym_compound_literal_expression] = STATE(1523), + [sym_lambda_expression] = STATE(1523), + [sym_char_literal] = STATE(1523), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1523), + [sym_equality_expression] = STATE(1523), + [sym_relational_expression] = STATE(1523), + [sym_sizeof_expression] = STATE(1523), + [sym_subscript_expression] = STATE(1523), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3029), - [sym_null] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3029), + [sym_parenthesized_expression] = STATE(1523), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(1523), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1523), + [sym_pointer_expression] = STATE(1523), + [sym_shift_expression] = STATE(1523), + [sym_math_expression] = STATE(1523), + [sym_call_expression] = STATE(1523), + [sym_new_expression] = STATE(1523), + [sym_raw_string_literal] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3031), + [sym_null] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3031), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), - }, - [665] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_RBRACK_RBRACK] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(660), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_PIPE_PIPE] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(660), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_SEMI] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(662), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, [666] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(1529), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_STAR_EQ] = ACTIONS(666), + [anon_sym_LT_LT_EQ] = ACTIONS(666), + [anon_sym_PERCENT_EQ] = ACTIONS(666), + [anon_sym_RBRACK_RBRACK] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_SLASH_EQ] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(666), + [anon_sym_GT_GT_EQ] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(664), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_DASH_EQ] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_AMP_EQ] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(664), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(666), + }, + [667] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1524), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [667] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [668] = { - [sym_template_argument_list] = STATE(673), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [669] = { [sym_initializer_list] = STATE(674), - [anon_sym_LPAREN2] = ACTIONS(1651), + [sym_template_argument_list] = STATE(675), + [anon_sym_LPAREN2] = ACTIONS(1661), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1661), [anon_sym_STAR_EQ] = ACTIONS(165), [anon_sym_LT_LT_EQ] = ACTIONS(165), [anon_sym_PERCENT_EQ] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(1242), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT] = ACTIONS(1244), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -39066,7 +39108,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1661), [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), @@ -39081,1130 +39123,1131 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [669] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1655), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_EQ] = ACTIONS(1653), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - }, [670] = { - [sym_destructor_name] = STATE(1531), - [sym_identifier] = ACTIONS(3033), - [sym_operator_name] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_STAR_EQ] = ACTIONS(1665), + [anon_sym_LT_LT_EQ] = ACTIONS(1665), + [anon_sym_PERCENT_EQ] = ACTIONS(1665), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_CARET_EQ] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_SLASH_EQ] = ACTIONS(1665), + [anon_sym_PLUS_EQ] = ACTIONS(1665), + [anon_sym_CARET] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_PIPE_EQ] = ACTIONS(1665), + [anon_sym_GT_GT_EQ] = ACTIONS(1665), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(1663), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_DASH_EQ] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_AMP_EQ] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1665), }, [671] = { - [sym_template_type] = STATE(419), - [sym__expression] = STATE(1534), - [sym_logical_expression] = STATE(1534), - [sym_bitwise_expression] = STATE(1534), - [sym_cast_expression] = STATE(1534), - [sym_new_expression] = STATE(1534), + [sym_destructor_name] = STATE(1526), + [sym_identifier] = ACTIONS(3035), + [sym_operator_name] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + }, + [672] = { + [sym_template_function] = STATE(1529), + [sym__expression] = STATE(1529), + [sym_logical_expression] = STATE(1529), + [sym_bitwise_expression] = STATE(1529), + [sym_cast_expression] = STATE(1529), + [sym_delete_expression] = STATE(1529), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(1534), - [sym_type_descriptor] = STATE(1535), - [sym_char_literal] = STATE(1534), + [sym_scoped_type_identifier] = STATE(422), + [sym_compound_literal_expression] = STATE(1529), + [sym_char_literal] = STATE(1529), + [sym_lambda_expression] = STATE(1529), + [sym_scoped_identifier] = STATE(423), + [sym_type_descriptor] = STATE(1530), + [sym_dependent_type] = STATE(428), + [sym_struct_specifier] = STATE(428), + [sym_union_specifier] = STATE(428), [sym_type_qualifier] = STATE(429), - [sym_dependent_type] = STATE(426), - [sym_union_specifier] = STATE(426), - [sym_struct_specifier] = STATE(426), - [sym_template_function] = STATE(1534), - [sym_conditional_expression] = STATE(1534), - [sym_equality_expression] = STATE(1534), - [sym_relational_expression] = STATE(1534), - [sym_delete_expression] = STATE(1534), - [sym_sizeof_expression] = STATE(1534), + [sym_conditional_expression] = STATE(1529), + [sym_equality_expression] = STATE(1529), + [sym_relational_expression] = STATE(1529), + [sym_sizeof_expression] = STATE(1529), [sym_subscript_expression] = STATE(421), - [sym_parenthesized_expression] = STATE(1534), - [sym_scoped_type_identifier] = STATE(423), - [sym_string_literal] = STATE(424), - [sym_macro_type_specifier] = STATE(426), - [sym_class_specifier] = STATE(426), - [sym_concatenated_string] = STATE(1534), - [sym_sized_type_specifier] = STATE(426), - [sym_lambda_expression] = STATE(1534), - [sym_scoped_identifier] = STATE(425), - [sym__type_specifier] = STATE(426), - [sym_assignment_expression] = STATE(1534), + [sym_parenthesized_expression] = STATE(1529), + [sym_lambda_capture_specifier] = STATE(425), + [sym_concatenated_string] = STATE(1529), + [sym_string_literal] = STATE(426), + [sym_macro_type_specifier] = STATE(428), + [sym_class_specifier] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(428), + [sym__type_specifier] = STATE(428), + [aux_sym_type_definition_repeat1] = STATE(429), + [sym_scoped_namespace_identifier] = STATE(430), + [sym_template_type] = STATE(431), + [sym_assignment_expression] = STATE(1529), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(1534), - [sym_math_expression] = STATE(1534), + [sym_shift_expression] = STATE(1529), + [sym_math_expression] = STATE(1529), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_enum_specifier] = STATE(426), - [sym_raw_string_literal] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(702), - [sym_true] = ACTIONS(3039), + [sym_new_expression] = STATE(1529), + [sym_enum_specifier] = STATE(428), + [sym_raw_string_literal] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(706), + [sym_true] = ACTIONS(3041), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(710), - [anon_sym_signed] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_GT2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(720), + [sym_null] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_GT2] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_sizeof] = ACTIONS(724), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_short] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_short] = ACTIONS(716), + [anon_sym_delete] = ACTIONS(734), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(732), + [sym_number_literal] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(702), - [sym_false] = ACTIONS(3039), - [anon_sym_unsigned] = ACTIONS(712), - [sym_nullptr] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(706), + [sym_false] = ACTIONS(3041), + [anon_sym_unsigned] = ACTIONS(716), + [sym_nullptr] = ACTIONS(3041), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [672] = { - [sym_template_type] = STATE(71), + [673] = { + [sym_template_function] = STATE(1533), + [sym__expression] = STATE(1533), + [sym_logical_expression] = STATE(1533), + [sym_bitwise_expression] = STATE(1533), + [sym_cast_expression] = STATE(1533), + [sym_delete_expression] = STATE(1533), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(1533), + [sym_lambda_expression] = STATE(1533), + [sym_char_literal] = STATE(1533), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(1533), + [sym_equality_expression] = STATE(1533), + [sym_relational_expression] = STATE(1533), + [sym_sizeof_expression] = STATE(1533), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1534), + [sym_parenthesized_expression] = STATE(1533), + [sym_string_literal] = STATE(450), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1533), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1533), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(1533), + [sym_math_expression] = STATE(1533), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(1533), + [sym_initializer_pair] = STATE(1534), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [674] = { + [anon_sym_LPAREN2] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_STAR_EQ] = ACTIONS(784), + [anon_sym_LT_LT_EQ] = ACTIONS(784), + [anon_sym_PERCENT_EQ] = ACTIONS(784), + [anon_sym_RBRACK_RBRACK] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_CARET_EQ] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(784), + [anon_sym_SLASH_EQ] = ACTIONS(784), + [anon_sym_PLUS_EQ] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_PIPE_EQ] = ACTIONS(784), + [anon_sym_GT_GT_EQ] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_DASH_EQ] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_AMP_EQ] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(784), + }, + [675] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_STAR_EQ] = ACTIONS(793), + [anon_sym_LT_LT_EQ] = ACTIONS(793), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_PERCENT_EQ] = ACTIONS(793), + [anon_sym_RBRACK_RBRACK] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_CARET_EQ] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(791), + [anon_sym_SLASH_EQ] = ACTIONS(793), + [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_PIPE_EQ] = ACTIONS(793), + [anon_sym_GT_GT_EQ] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_DASH_EQ] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(791), + }, + [676] = { + [anon_sym_SQUOTE] = ACTIONS(3053), + [sym_comment] = ACTIONS(3), + }, + [677] = { + [sym_template_function] = STATE(1536), + [sym__expression] = STATE(1536), + [sym_logical_expression] = STATE(1536), + [sym_bitwise_expression] = STATE(1536), + [sym_cast_expression] = STATE(1536), + [sym_delete_expression] = STATE(1536), + [sym_field_expression] = STATE(1536), + [sym_compound_literal_expression] = STATE(1536), + [sym_lambda_expression] = STATE(1536), + [sym_char_literal] = STATE(1536), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1536), + [sym_equality_expression] = STATE(1536), + [sym_relational_expression] = STATE(1536), + [sym_sizeof_expression] = STATE(1536), + [sym_subscript_expression] = STATE(1536), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1536), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(1536), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1536), + [sym_pointer_expression] = STATE(1536), + [sym_shift_expression] = STATE(1536), + [sym_math_expression] = STATE(1536), + [sym_call_expression] = STATE(1536), + [sym_new_expression] = STATE(1536), + [sym_raw_string_literal] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3057), + [sym_null] = ACTIONS(3057), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3055), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(119), + [sym_nullptr] = ACTIONS(3057), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), + }, + [678] = { + [sym_template_function] = STATE(1537), + [sym__expression] = STATE(1537), + [sym_logical_expression] = STATE(1537), + [sym_bitwise_expression] = STATE(1537), + [sym_cast_expression] = STATE(1537), + [sym_delete_expression] = STATE(1537), + [sym_field_expression] = STATE(1537), + [sym_compound_literal_expression] = STATE(1537), + [sym_lambda_expression] = STATE(1537), + [sym_char_literal] = STATE(1537), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1537), + [sym_equality_expression] = STATE(1537), + [sym_relational_expression] = STATE(1537), + [sym_sizeof_expression] = STATE(1537), + [sym_subscript_expression] = STATE(1537), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1537), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(1537), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1537), + [sym_pointer_expression] = STATE(1537), + [sym_shift_expression] = STATE(1537), + [sym_math_expression] = STATE(1537), + [sym_call_expression] = STATE(1537), + [sym_new_expression] = STATE(1537), + [sym_raw_string_literal] = ACTIONS(3059), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3061), + [sym_null] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(119), + [sym_nullptr] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), + }, + [679] = { + [sym_template_function] = STATE(1538), [sym__expression] = STATE(1538), [sym_logical_expression] = STATE(1538), [sym_bitwise_expression] = STATE(1538), [sym_cast_expression] = STATE(1538), - [sym_new_expression] = STATE(1538), - [sym_field_expression] = STATE(448), + [sym_delete_expression] = STATE(1538), + [sym_field_expression] = STATE(1538), [sym_compound_literal_expression] = STATE(1538), - [sym_field_designator] = STATE(449), + [sym_lambda_expression] = STATE(1538), [sym_char_literal] = STATE(1538), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(1538), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), [sym_conditional_expression] = STATE(1538), [sym_equality_expression] = STATE(1538), [sym_relational_expression] = STATE(1538), - [sym_delete_expression] = STATE(1538), [sym_sizeof_expression] = STATE(1538), + [sym_subscript_expression] = STATE(1538), + [sym_scoped_namespace_identifier] = STATE(197), [sym_parenthesized_expression] = STATE(1538), - [sym_initializer_list] = STATE(1539), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), [sym_concatenated_string] = STATE(1538), - [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(1538), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), + [sym_template_type] = STATE(198), [sym_assignment_expression] = STATE(1538), - [sym_pointer_expression] = STATE(448), + [sym_pointer_expression] = STATE(1538), [sym_shift_expression] = STATE(1538), [sym_math_expression] = STATE(1538), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(1539), - [sym_raw_string_literal] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [673] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_STAR_EQ] = ACTIONS(785), - [anon_sym_LT_LT_EQ] = ACTIONS(785), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(785), - [anon_sym_RBRACK_RBRACK] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_CARET_EQ] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_SLASH_EQ] = ACTIONS(785), - [anon_sym_PLUS_EQ] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_PIPE_EQ] = ACTIONS(785), - [anon_sym_GT_GT_EQ] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_DASH_EQ] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(783), + [sym_call_expression] = STATE(1538), + [sym_new_expression] = STATE(1538), + [sym_raw_string_literal] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3065), + [sym_null] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(119), + [sym_nullptr] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [674] = { - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_DASH_GT] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_STAR_EQ] = ACTIONS(794), - [anon_sym_LT_LT_EQ] = ACTIONS(794), - [anon_sym_PERCENT_EQ] = ACTIONS(794), - [anon_sym_RBRACK_RBRACK] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_CARET_EQ] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_COLON] = ACTIONS(794), - [anon_sym_SLASH_EQ] = ACTIONS(794), - [anon_sym_PLUS_EQ] = ACTIONS(794), - [anon_sym_CARET] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_PIPE_EQ] = ACTIONS(794), - [anon_sym_GT_GT_EQ] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_DOT] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_PERCENT] = ACTIONS(796), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(794), - [anon_sym_DASH_EQ] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_BANG_EQ] = ACTIONS(794), - [anon_sym_AMP_EQ] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_LT_EQ] = ACTIONS(794), - [anon_sym_EQ] = ACTIONS(796), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(794), + [680] = { + [sym_template_function] = STATE(1539), + [sym__expression] = STATE(1539), + [sym_logical_expression] = STATE(1539), + [sym_bitwise_expression] = STATE(1539), + [sym_cast_expression] = STATE(1539), + [sym_delete_expression] = STATE(1539), + [sym_field_expression] = STATE(1539), + [sym_compound_literal_expression] = STATE(1539), + [sym_lambda_expression] = STATE(1539), + [sym_char_literal] = STATE(1539), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1539), + [sym_equality_expression] = STATE(1539), + [sym_relational_expression] = STATE(1539), + [sym_sizeof_expression] = STATE(1539), + [sym_subscript_expression] = STATE(1539), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1539), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(1539), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1539), + [sym_pointer_expression] = STATE(1539), + [sym_shift_expression] = STATE(1539), + [sym_math_expression] = STATE(1539), + [sym_call_expression] = STATE(1539), + [sym_new_expression] = STATE(1539), + [sym_raw_string_literal] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3069), + [sym_null] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3069), + [anon_sym_AMP] = ACTIONS(119), + [sym_nullptr] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [675] = { - [anon_sym_SQUOTE] = ACTIONS(3051), + [681] = { + [sym_template_function] = STATE(1540), + [sym__expression] = STATE(1540), + [sym_logical_expression] = STATE(1540), + [sym_bitwise_expression] = STATE(1540), + [sym_cast_expression] = STATE(1540), + [sym_delete_expression] = STATE(1540), + [sym_field_expression] = STATE(1540), + [sym_compound_literal_expression] = STATE(1540), + [sym_lambda_expression] = STATE(1540), + [sym_char_literal] = STATE(1540), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1540), + [sym_equality_expression] = STATE(1540), + [sym_relational_expression] = STATE(1540), + [sym_sizeof_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1540), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(1540), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1540), + [sym_pointer_expression] = STATE(1540), + [sym_shift_expression] = STATE(1540), + [sym_math_expression] = STATE(1540), + [sym_call_expression] = STATE(1540), + [sym_new_expression] = STATE(1540), + [sym_raw_string_literal] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3073), + [sym_null] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(119), + [sym_nullptr] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [676] = { - [sym_destructor_name] = STATE(1541), - [sym_identifier] = ACTIONS(3053), - [sym_operator_name] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(1214), + [682] = { + [sym_template_function] = STATE(1541), + [sym__expression] = STATE(1541), + [sym_logical_expression] = STATE(1541), + [sym_bitwise_expression] = STATE(1541), + [sym_cast_expression] = STATE(1541), + [sym_delete_expression] = STATE(1541), + [sym_field_expression] = STATE(1541), + [sym_compound_literal_expression] = STATE(1541), + [sym_lambda_expression] = STATE(1541), + [sym_char_literal] = STATE(1541), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1541), + [sym_equality_expression] = STATE(1541), + [sym_relational_expression] = STATE(1541), + [sym_sizeof_expression] = STATE(1541), + [sym_subscript_expression] = STATE(1541), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1541), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(1541), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1541), + [sym_pointer_expression] = STATE(1541), + [sym_shift_expression] = STATE(1541), + [sym_math_expression] = STATE(1541), + [sym_call_expression] = STATE(1541), + [sym_new_expression] = STATE(1541), + [sym_raw_string_literal] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(119), + [sym_nullptr] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [677] = { - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_DASH_GT] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(1709), - [anon_sym_LT_LT_EQ] = ACTIONS(1709), - [anon_sym_PERCENT_EQ] = ACTIONS(1709), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_CARET_EQ] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_COLON] = ACTIONS(1709), - [anon_sym_SLASH_EQ] = ACTIONS(1709), - [anon_sym_PLUS_EQ] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_PIPE_EQ] = ACTIONS(1709), - [anon_sym_GT_GT_EQ] = ACTIONS(1709), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_PERCENT] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_DASH_EQ] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_AMP_EQ] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1709), + [683] = { + [sym_template_function] = STATE(1542), + [sym__expression] = STATE(1542), + [sym_logical_expression] = STATE(1542), + [sym_bitwise_expression] = STATE(1542), + [sym_cast_expression] = STATE(1542), + [sym_delete_expression] = STATE(1542), + [sym_field_expression] = STATE(1542), + [sym_compound_literal_expression] = STATE(1542), + [sym_lambda_expression] = STATE(1542), + [sym_char_literal] = STATE(1542), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1542), + [sym_equality_expression] = STATE(1542), + [sym_relational_expression] = STATE(1542), + [sym_sizeof_expression] = STATE(1542), + [sym_subscript_expression] = STATE(1542), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1542), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(1542), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1542), + [sym_pointer_expression] = STATE(1542), + [sym_shift_expression] = STATE(1542), + [sym_math_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_new_expression] = STATE(1542), + [sym_raw_string_literal] = ACTIONS(3079), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3081), + [sym_null] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(119), + [sym_nullptr] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [678] = { - [sym_template_type] = STATE(189), + [684] = { + [sym_template_function] = STATE(1543), [sym__expression] = STATE(1543), [sym_logical_expression] = STATE(1543), [sym_bitwise_expression] = STATE(1543), [sym_cast_expression] = STATE(1543), - [sym_new_expression] = STATE(1543), + [sym_delete_expression] = STATE(1543), [sym_field_expression] = STATE(1543), [sym_compound_literal_expression] = STATE(1543), + [sym_lambda_expression] = STATE(1543), [sym_char_literal] = STATE(1543), - [sym_template_function] = STATE(1543), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), [sym_conditional_expression] = STATE(1543), [sym_equality_expression] = STATE(1543), [sym_relational_expression] = STATE(1543), - [sym_delete_expression] = STATE(1543), [sym_sizeof_expression] = STATE(1543), + [sym_subscript_expression] = STATE(1543), + [sym_scoped_namespace_identifier] = STATE(197), [sym_parenthesized_expression] = STATE(1543), - [sym_lambda_expression] = STATE(1543), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), [sym_concatenated_string] = STATE(1543), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1543), + [sym_template_type] = STATE(198), [sym_assignment_expression] = STATE(1543), [sym_pointer_expression] = STATE(1543), [sym_shift_expression] = STATE(1543), [sym_math_expression] = STATE(1543), [sym_call_expression] = STATE(1543), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3059), - [sym_null] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3059), + [sym_new_expression] = STATE(1543), + [sym_raw_string_literal] = ACTIONS(3083), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3085), + [sym_null] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3085), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [679] = { - [sym_template_type] = STATE(189), + [685] = { + [sym_template_function] = STATE(1544), [sym__expression] = STATE(1544), [sym_logical_expression] = STATE(1544), [sym_bitwise_expression] = STATE(1544), [sym_cast_expression] = STATE(1544), - [sym_new_expression] = STATE(1544), + [sym_delete_expression] = STATE(1544), [sym_field_expression] = STATE(1544), [sym_compound_literal_expression] = STATE(1544), + [sym_lambda_expression] = STATE(1544), [sym_char_literal] = STATE(1544), - [sym_template_function] = STATE(1544), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), [sym_conditional_expression] = STATE(1544), [sym_equality_expression] = STATE(1544), [sym_relational_expression] = STATE(1544), - [sym_delete_expression] = STATE(1544), [sym_sizeof_expression] = STATE(1544), + [sym_subscript_expression] = STATE(1544), + [sym_scoped_namespace_identifier] = STATE(197), [sym_parenthesized_expression] = STATE(1544), - [sym_lambda_expression] = STATE(1544), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), [sym_concatenated_string] = STATE(1544), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1544), + [sym_template_type] = STATE(198), [sym_assignment_expression] = STATE(1544), [sym_pointer_expression] = STATE(1544), [sym_shift_expression] = STATE(1544), [sym_math_expression] = STATE(1544), [sym_call_expression] = STATE(1544), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3063), - [sym_null] = ACTIONS(3063), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3063), + [sym_new_expression] = STATE(1544), + [sym_raw_string_literal] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3089), + [sym_null] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3089), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [680] = { - [sym_template_type] = STATE(189), + [686] = { + [sym_template_function] = STATE(1545), [sym__expression] = STATE(1545), [sym_logical_expression] = STATE(1545), [sym_bitwise_expression] = STATE(1545), [sym_cast_expression] = STATE(1545), - [sym_new_expression] = STATE(1545), - [sym_field_expression] = STATE(1545), + [sym_delete_expression] = STATE(1545), + [sym_field_expression] = STATE(1006), [sym_compound_literal_expression] = STATE(1545), + [sym_lambda_expression] = STATE(1545), [sym_char_literal] = STATE(1545), - [sym_template_function] = STATE(1545), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1545), [sym_equality_expression] = STATE(1545), [sym_relational_expression] = STATE(1545), - [sym_delete_expression] = STATE(1545), [sym_sizeof_expression] = STATE(1545), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1545), - [sym_lambda_expression] = STATE(1545), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), [sym_concatenated_string] = STATE(1545), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1545), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1545), - [sym_pointer_expression] = STATE(1545), + [sym_pointer_expression] = STATE(1006), [sym_shift_expression] = STATE(1545), [sym_math_expression] = STATE(1545), - [sym_call_expression] = STATE(1545), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3067), - [sym_null] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1545), + [sym_raw_string_literal] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(3093), + [sym_null] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [681] = { - [sym_template_type] = STATE(189), + [687] = { + [sym_template_function] = STATE(1546), [sym__expression] = STATE(1546), [sym_logical_expression] = STATE(1546), [sym_bitwise_expression] = STATE(1546), [sym_cast_expression] = STATE(1546), - [sym_new_expression] = STATE(1546), + [sym_delete_expression] = STATE(1546), [sym_field_expression] = STATE(1546), [sym_compound_literal_expression] = STATE(1546), + [sym_lambda_expression] = STATE(1546), [sym_char_literal] = STATE(1546), - [sym_template_function] = STATE(1546), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), [sym_conditional_expression] = STATE(1546), [sym_equality_expression] = STATE(1546), [sym_relational_expression] = STATE(1546), - [sym_delete_expression] = STATE(1546), [sym_sizeof_expression] = STATE(1546), + [sym_subscript_expression] = STATE(1546), + [sym_scoped_namespace_identifier] = STATE(197), [sym_parenthesized_expression] = STATE(1546), - [sym_lambda_expression] = STATE(1546), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), [sym_concatenated_string] = STATE(1546), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1546), + [sym_template_type] = STATE(198), [sym_assignment_expression] = STATE(1546), [sym_pointer_expression] = STATE(1546), [sym_shift_expression] = STATE(1546), [sym_math_expression] = STATE(1546), [sym_call_expression] = STATE(1546), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3071), + [sym_new_expression] = STATE(1546), + [sym_raw_string_literal] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(3097), + [sym_null] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(3097), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, - [682] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1547), - [sym_logical_expression] = STATE(1547), - [sym_bitwise_expression] = STATE(1547), - [sym_cast_expression] = STATE(1547), - [sym_new_expression] = STATE(1547), - [sym_field_expression] = STATE(1547), - [sym_compound_literal_expression] = STATE(1547), - [sym_char_literal] = STATE(1547), - [sym_template_function] = STATE(1547), - [sym_conditional_expression] = STATE(1547), - [sym_equality_expression] = STATE(1547), - [sym_relational_expression] = STATE(1547), - [sym_delete_expression] = STATE(1547), - [sym_sizeof_expression] = STATE(1547), - [sym_parenthesized_expression] = STATE(1547), - [sym_lambda_expression] = STATE(1547), - [sym_concatenated_string] = STATE(1547), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1547), - [sym_assignment_expression] = STATE(1547), - [sym_pointer_expression] = STATE(1547), - [sym_shift_expression] = STATE(1547), - [sym_math_expression] = STATE(1547), - [sym_call_expression] = STATE(1547), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [688] = { + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_DASH_GT] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_COLON] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PERCENT] = ACTIONS(654), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(656), }, - [683] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1548), - [sym_logical_expression] = STATE(1548), - [sym_bitwise_expression] = STATE(1548), - [sym_cast_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_field_expression] = STATE(1548), - [sym_compound_literal_expression] = STATE(1548), - [sym_char_literal] = STATE(1548), - [sym_template_function] = STATE(1548), - [sym_conditional_expression] = STATE(1548), - [sym_equality_expression] = STATE(1548), - [sym_relational_expression] = STATE(1548), - [sym_delete_expression] = STATE(1548), - [sym_sizeof_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_lambda_expression] = STATE(1548), - [sym_concatenated_string] = STATE(1548), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1548), - [sym_assignment_expression] = STATE(1548), - [sym_pointer_expression] = STATE(1548), - [sym_shift_expression] = STATE(1548), - [sym_math_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3079), - [sym_null] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [689] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_STAR_EQ] = ACTIONS(793), + [anon_sym_LT_LT_EQ] = ACTIONS(793), + [anon_sym_PERCENT_EQ] = ACTIONS(793), + [anon_sym_RBRACK_RBRACK] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_CARET_EQ] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(793), + [anon_sym_SLASH_EQ] = ACTIONS(793), + [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_PIPE_EQ] = ACTIONS(793), + [anon_sym_GT_GT_EQ] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_DASH_EQ] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), }, - [684] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1549), - [sym_logical_expression] = STATE(1549), - [sym_bitwise_expression] = STATE(1549), - [sym_cast_expression] = STATE(1549), - [sym_new_expression] = STATE(1549), - [sym_field_expression] = STATE(1549), - [sym_compound_literal_expression] = STATE(1549), - [sym_char_literal] = STATE(1549), - [sym_template_function] = STATE(1549), - [sym_conditional_expression] = STATE(1549), - [sym_equality_expression] = STATE(1549), - [sym_relational_expression] = STATE(1549), - [sym_delete_expression] = STATE(1549), - [sym_sizeof_expression] = STATE(1549), - [sym_parenthesized_expression] = STATE(1549), - [sym_lambda_expression] = STATE(1549), - [sym_concatenated_string] = STATE(1549), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1549), - [sym_assignment_expression] = STATE(1549), - [sym_pointer_expression] = STATE(1549), - [sym_shift_expression] = STATE(1549), - [sym_math_expression] = STATE(1549), - [sym_call_expression] = STATE(1549), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3083), - [sym_null] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [690] = { + [sym_virtual_specifier] = STATE(1548), + [aux_sym_function_declarator_repeat1] = STATE(1548), + [sym_type_qualifier] = STATE(1548), + [sym_trailing_return_type] = STATE(1548), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(3099), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), }, - [685] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1550), - [sym_logical_expression] = STATE(1550), - [sym_bitwise_expression] = STATE(1550), - [sym_cast_expression] = STATE(1550), - [sym_new_expression] = STATE(1550), - [sym_field_expression] = STATE(1550), - [sym_compound_literal_expression] = STATE(1550), - [sym_char_literal] = STATE(1550), - [sym_template_function] = STATE(1550), - [sym_conditional_expression] = STATE(1550), - [sym_equality_expression] = STATE(1550), - [sym_relational_expression] = STATE(1550), - [sym_delete_expression] = STATE(1550), - [sym_sizeof_expression] = STATE(1550), - [sym_parenthesized_expression] = STATE(1550), - [sym_lambda_expression] = STATE(1550), - [sym_concatenated_string] = STATE(1550), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1550), - [sym_assignment_expression] = STATE(1550), - [sym_pointer_expression] = STATE(1550), - [sym_shift_expression] = STATE(1550), - [sym_math_expression] = STATE(1550), - [sym_call_expression] = STATE(1550), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3087), - [sym_null] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [691] = { + [anon_sym_LPAREN2] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_DASH_GT] = ACTIONS(1679), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_STAR_EQ] = ACTIONS(1679), + [anon_sym_LT_LT_EQ] = ACTIONS(1679), + [anon_sym_PERCENT_EQ] = ACTIONS(1679), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_CARET_EQ] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_COLON] = ACTIONS(1679), + [anon_sym_SLASH_EQ] = ACTIONS(1679), + [anon_sym_PLUS_EQ] = ACTIONS(1679), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_PIPE_EQ] = ACTIONS(1679), + [anon_sym_GT_GT_EQ] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_PERCENT] = ACTIONS(1681), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(1679), + [anon_sym_DASH_EQ] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_AMP_EQ] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_EQ] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1679), }, - [686] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1551), - [sym_logical_expression] = STATE(1551), - [sym_bitwise_expression] = STATE(1551), - [sym_cast_expression] = STATE(1551), - [sym_new_expression] = STATE(1551), - [sym_field_expression] = STATE(1551), - [sym_compound_literal_expression] = STATE(1551), - [sym_char_literal] = STATE(1551), - [sym_template_function] = STATE(1551), - [sym_conditional_expression] = STATE(1551), - [sym_equality_expression] = STATE(1551), - [sym_relational_expression] = STATE(1551), - [sym_delete_expression] = STATE(1551), - [sym_sizeof_expression] = STATE(1551), - [sym_parenthesized_expression] = STATE(1551), - [sym_lambda_expression] = STATE(1551), - [sym_concatenated_string] = STATE(1551), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1551), - [sym_assignment_expression] = STATE(1551), - [sym_pointer_expression] = STATE(1551), - [sym_shift_expression] = STATE(1551), - [sym_math_expression] = STATE(1551), - [sym_call_expression] = STATE(1551), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3091), - [sym_null] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [692] = { + [sym_compound_statement] = STATE(1550), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), }, - [687] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1552), - [sym_logical_expression] = STATE(1552), - [sym_bitwise_expression] = STATE(1552), - [sym_cast_expression] = STATE(1552), - [sym_new_expression] = STATE(1552), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1552), - [sym_char_literal] = STATE(1552), - [sym_template_function] = STATE(1552), - [sym_conditional_expression] = STATE(1552), - [sym_equality_expression] = STATE(1552), - [sym_relational_expression] = STATE(1552), - [sym_delete_expression] = STATE(1552), - [sym_sizeof_expression] = STATE(1552), - [sym_parenthesized_expression] = STATE(1552), - [sym_lambda_expression] = STATE(1552), - [sym_concatenated_string] = STATE(1552), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1552), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1552), - [sym_math_expression] = STATE(1552), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(3095), - [sym_null] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [693] = { + [sym_string_literal] = STATE(1551), + [aux_sym_concatenated_string_repeat1] = STATE(1551), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [688] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1553), - [sym_logical_expression] = STATE(1553), - [sym_bitwise_expression] = STATE(1553), - [sym_cast_expression] = STATE(1553), - [sym_new_expression] = STATE(1553), - [sym_field_expression] = STATE(1553), - [sym_compound_literal_expression] = STATE(1553), - [sym_char_literal] = STATE(1553), - [sym_template_function] = STATE(1553), - [sym_conditional_expression] = STATE(1553), - [sym_equality_expression] = STATE(1553), - [sym_relational_expression] = STATE(1553), - [sym_delete_expression] = STATE(1553), - [sym_sizeof_expression] = STATE(1553), - [sym_parenthesized_expression] = STATE(1553), - [sym_lambda_expression] = STATE(1553), - [sym_concatenated_string] = STATE(1553), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1553), - [sym_assignment_expression] = STATE(1553), - [sym_pointer_expression] = STATE(1553), - [sym_shift_expression] = STATE(1553), - [sym_math_expression] = STATE(1553), - [sym_call_expression] = STATE(1553), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [694] = { + [sym_destructor_name] = STATE(1552), + [sym_identifier] = ACTIONS(3105), + [sym_operator_name] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(1220), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), }, - [689] = { - [anon_sym_LPAREN2] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_GT] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(654), - [anon_sym_STAR_EQ] = ACTIONS(654), - [anon_sym_LT_LT_EQ] = ACTIONS(654), - [anon_sym_PERCENT_EQ] = ACTIONS(654), - [anon_sym_RBRACK_RBRACK] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_SLASH_EQ] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(654), - [anon_sym_GT_GT_EQ] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(654), - }, - [690] = { - [sym_virtual_specifier] = STATE(1555), - [aux_sym_function_declarator_repeat1] = STATE(1555), - [sym_trailing_return_type] = STATE(1555), - [sym_type_qualifier] = STATE(1555), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(3101), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [691] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_STAR_EQ] = ACTIONS(785), - [anon_sym_LT_LT_EQ] = ACTIONS(785), - [anon_sym_PERCENT_EQ] = ACTIONS(785), - [anon_sym_RBRACK_RBRACK] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_CARET_EQ] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_COLON] = ACTIONS(785), - [anon_sym_SLASH_EQ] = ACTIONS(785), - [anon_sym_PLUS_EQ] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_PIPE_EQ] = ACTIONS(785), - [anon_sym_GT_GT_EQ] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_DASH_EQ] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - }, - [692] = { - [sym_string_literal] = STATE(1556), - [aux_sym_concatenated_string_repeat1] = STATE(1556), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), - }, - [693] = { - [sym_compound_statement] = STATE(1558), - [anon_sym_LPAREN2] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - }, - [694] = { - [sym_type_qualifier] = STATE(694), - [aux_sym_type_definition_repeat1] = STATE(694), + [695] = { + [aux_sym_type_definition_repeat1] = STATE(695), + [sym_type_qualifier] = STATE(695), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_mutable] = ACTIONS(2103), [anon_sym__Atomic] = ACTIONS(2103), [anon_sym_const] = ACTIONS(2103), [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), [anon_sym_constexpr] = ACTIONS(2103), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), @@ -40217,855 +40260,855 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(2103), [sym_operator_name] = ACTIONS(2106), }, - [695] = { - [sym_field_declaration_list] = STATE(1559), - [sym_base_class_clause] = STATE(1560), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), - }, [696] = { - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3107), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_explicit] = ACTIONS(3109), - [sym_identifier] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3109), - [sym_operator_name] = ACTIONS(3107), - [sym_noexcept] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3109), - [anon_sym__Atomic] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_PIPE_PIPE] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3109), + [sym_field_declaration_list] = STATE(1554), + [sym_base_class_clause] = STATE(1555), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3107), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_DASH_GT] = ACTIONS(3107), }, [697] = { - [sym_field_declaration_list] = STATE(1559), - [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), + [anon_sym_COLON] = ACTIONS(3111), + [anon_sym_explicit] = ACTIONS(3111), + [sym_identifier] = ACTIONS(3111), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_override] = ACTIONS(3111), + [sym_operator_name] = ACTIONS(3109), + [sym_noexcept] = ACTIONS(3111), + [anon_sym_CARET] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3111), + [anon_sym__Atomic] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3111), + [anon_sym_LT_LT] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3111), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(3109), + [anon_sym_DASH_GT] = ACTIONS(3109), }, [698] = { - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_mutable] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3111), - [anon_sym_EQ] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3113), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_static] = ACTIONS(3113), - [anon_sym_volatile] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_COLON] = ACTIONS(3113), - [anon_sym_explicit] = ACTIONS(3113), - [sym_identifier] = ACTIONS(3113), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_override] = ACTIONS(3113), - [sym_operator_name] = ACTIONS(3111), - [sym_noexcept] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_register] = ACTIONS(3113), - [anon_sym__Atomic] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_extern] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_constexpr] = ACTIONS(3113), + [sym_field_declaration_list] = STATE(1554), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3111), - [anon_sym_QMARK] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_inline] = ACTIONS(3113), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_restrict] = ACTIONS(3113), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_DASH_GT] = ACTIONS(3111), }, [699] = { - [sym_field_declaration_list] = STATE(1561), - [anon_sym_LBRACE] = ACTIONS(302), + [sym_field_declaration_list] = STATE(1556), + [sym_base_class_clause] = STATE(1557), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), }, [700] = { - [sym_field_declaration_list] = STATE(1561), - [sym_base_class_clause] = STATE(1562), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_volatile] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_explicit] = ACTIONS(3115), + [sym_identifier] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3115), + [sym_operator_name] = ACTIONS(3113), + [sym_noexcept] = ACTIONS(3115), + [anon_sym_CARET] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3115), + [anon_sym__Atomic] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT_LT] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3115), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3115), + [anon_sym_GT_GT] = ACTIONS(3113), + [anon_sym_DASH_GT] = ACTIONS(3113), }, [701] = { - [anon_sym_LPAREN2] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3117), - [sym_auto] = ACTIONS(3117), - [anon_sym_signed] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_long] = ACTIONS(3117), - [anon_sym_STAR_EQ] = ACTIONS(3115), - [anon_sym_LT_LT_EQ] = ACTIONS(3115), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_PERCENT_EQ] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_EQ_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_CARET_EQ] = ACTIONS(3115), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3117), - [anon_sym_typename] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_short] = ACTIONS(3117), - [sym_identifier] = ACTIONS(3117), - [anon_sym_SLASH_EQ] = ACTIONS(3115), - [anon_sym_PLUS_EQ] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_PIPE_EQ] = ACTIONS(3115), - [anon_sym_GT_GT_EQ] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PIPE_PIPE] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_enum] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3117), - [sym_primitive_type] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3115), - [anon_sym_DASH_EQ] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3115), - [anon_sym_AMP_EQ] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3117), + [sym_field_declaration_list] = STATE(1556), + [anon_sym_LBRACE] = ACTIONS(304), + [sym_comment] = ACTIONS(3), }, [702] = { - [aux_sym_argument_list_repeat1] = STATE(1565), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(3121), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3119), + [sym_auto] = ACTIONS(3119), + [anon_sym_signed] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_long] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_LT_LT_EQ] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_CARET_EQ] = ACTIONS(3117), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_typename] = ACTIONS(3119), + [anon_sym_SLASH] = ACTIONS(3119), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3119), + [sym_identifier] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_CARET] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3119), + [anon_sym_PIPE_EQ] = ACTIONS(3117), + [anon_sym_GT_GT_EQ] = ACTIONS(3117), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3117), + [anon_sym_LT_LT] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_enum] = ACTIONS(3119), + [anon_sym_class] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3119), + [sym_primitive_type] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_AMP_EQ] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_DASH_GT] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_EQ] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_GT_GT] = ACTIONS(3119), }, [703] = { - [aux_sym_argument_list_repeat1] = STATE(1565), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), + [aux_sym_argument_list_repeat1] = STATE(1560), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [704] = { - [sym_enumerator_list] = STATE(495), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(872), - [anon_sym_inline] = ACTIONS(874), - [anon_sym_mutable] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_RBRACK_RBRACK] = ACTIONS(872), - [anon_sym_restrict] = ACTIONS(874), - [anon_sym_COLON_COLON] = ACTIONS(872), - [anon_sym_final] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_volatile] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(872), - [anon_sym_COLON] = ACTIONS(874), - [anon_sym_explicit] = ACTIONS(874), - [sym_identifier] = ACTIONS(874), - [anon_sym_override] = ACTIONS(874), - [sym_operator_name] = ACTIONS(872), - [sym_noexcept] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(872), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_DOT] = ACTIONS(872), - [anon_sym_register] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PERCENT] = ACTIONS(872), - [anon_sym__Atomic] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_constexpr] = ACTIONS(874), - [anon_sym_QMARK] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(872), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(872), + [aux_sym_argument_list_repeat1] = STATE(1560), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), }, [705] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(705), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(3123), - [anon_sym_long] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(3123), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), + [sym_enumerator_list] = STATE(496), + [anon_sym_LPAREN2] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_inline] = ACTIONS(878), + [anon_sym_mutable] = ACTIONS(878), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_RBRACK_RBRACK] = ACTIONS(876), + [anon_sym_restrict] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(876), + [anon_sym_final] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_static] = ACTIONS(878), + [anon_sym_volatile] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_explicit] = ACTIONS(878), + [sym_identifier] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [sym_operator_name] = ACTIONS(876), + [sym_noexcept] = ACTIONS(878), + [anon_sym_CARET] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_COMMA] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_register] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PERCENT] = ACTIONS(876), + [anon_sym__Atomic] = ACTIONS(878), + [anon_sym_const] = ACTIONS(878), + [anon_sym_extern] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_constexpr] = ACTIONS(878), + [anon_sym_QMARK] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_DASH_GT] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), }, [706] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1567), - [sym_logical_expression] = STATE(1567), - [sym_bitwise_expression] = STATE(1567), - [sym_cast_expression] = STATE(1567), - [sym_new_expression] = STATE(1567), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1567), - [sym_char_literal] = STATE(1567), - [sym_template_function] = STATE(1567), - [sym_conditional_expression] = STATE(1567), - [sym_equality_expression] = STATE(1567), - [sym_relational_expression] = STATE(1567), - [sym_delete_expression] = STATE(1567), - [sym_sizeof_expression] = STATE(1567), - [sym_parenthesized_expression] = STATE(1567), - [sym_initializer_list] = STATE(1568), - [sym_concatenated_string] = STATE(1567), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(1567), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(1567), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1567), - [sym_math_expression] = STATE(1567), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3126), + [aux_sym_sized_type_specifier_repeat1] = STATE(706), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(3125), + [anon_sym_long] = ACTIONS(3125), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(3125), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), + }, + [707] = { + [sym_template_function] = STATE(1562), + [sym__expression] = STATE(1562), + [sym_logical_expression] = STATE(1562), + [sym_bitwise_expression] = STATE(1562), + [sym_cast_expression] = STATE(1562), + [sym_delete_expression] = STATE(1562), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1562), + [sym_lambda_expression] = STATE(1562), + [sym_char_literal] = STATE(1562), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1562), + [sym_equality_expression] = STATE(1562), + [sym_relational_expression] = STATE(1562), + [sym_sizeof_expression] = STATE(1562), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1563), + [sym_parenthesized_expression] = STATE(1562), + [sym_string_literal] = STATE(154), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1562), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1562), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1562), + [sym_math_expression] = STATE(1562), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1562), + [sym_raw_string_literal] = ACTIONS(3128), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(3130), [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(294), + [sym_null] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(296), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(3128), + [sym_false] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(3130), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3130), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(3132), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_delete] = ACTIONS(288), [anon_sym_SQUOTE] = ACTIONS(41), }, - [707] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1569), - [sym_logical_expression] = STATE(1569), - [sym_bitwise_expression] = STATE(1569), - [sym_cast_expression] = STATE(1569), - [sym_new_expression] = STATE(1569), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(1569), - [sym_char_literal] = STATE(1569), - [sym_template_function] = STATE(1569), - [sym_conditional_expression] = STATE(1569), - [sym_equality_expression] = STATE(1569), - [sym_relational_expression] = STATE(1569), - [sym_delete_expression] = STATE(1569), - [sym_sizeof_expression] = STATE(1569), - [sym_parenthesized_expression] = STATE(1569), - [sym_lambda_expression] = STATE(1569), - [sym_concatenated_string] = STATE(1569), - [sym_string_literal] = STATE(967), + [708] = { + [sym_template_function] = STATE(1564), + [sym__expression] = STATE(1564), + [sym_logical_expression] = STATE(1564), + [sym_bitwise_expression] = STATE(1564), + [sym_cast_expression] = STATE(1564), + [sym_delete_expression] = STATE(1564), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(1564), + [sym_lambda_expression] = STATE(1564), + [sym_char_literal] = STATE(1564), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(1569), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(1569), - [sym_math_expression] = STATE(1569), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(1564), + [sym_equality_expression] = STATE(1564), + [sym_relational_expression] = STATE(1564), + [sym_sizeof_expression] = STATE(1564), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(3134), - [sym_null] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3132), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(3134), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [708] = { - [sym_argument_list] = STATE(1570), - [sym_initializer_list] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(3138), + [sym_parenthesized_expression] = STATE(1564), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(1564), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1564), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(1564), + [sym_math_expression] = STATE(1564), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(1564), + [sym_raw_string_literal] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(3136), + [sym_null] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, [709] = { - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [sym_argument_list] = STATE(1565), + [sym_initializer_list] = STATE(1565), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_GT_GT] = ACTIONS(3140), }, [710] = { - [sym_initializer_list] = STATE(1570), - [sym_new_declarator] = STATE(1571), - [sym_argument_list] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, [711] = { - [anon_sym_DASH] = ACTIONS(3140), - [sym_raw_string_literal] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [sym_identifier] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym_namespace] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_struct] = ACTIONS(3140), - [sym_auto] = ACTIONS(3140), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_using] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [sym_operator_name] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [aux_sym_preproc_include_token1] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [ts_builtin_sym_end] = ACTIONS(3142), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_restrict] = ACTIONS(3140), + [sym_new_declarator] = STATE(1566), + [sym_argument_list] = STATE(1565), + [sym_initializer_list] = STATE(1565), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_GT_GT] = ACTIONS(3140), }, [712] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(3144), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(3142), + [sym_raw_string_literal] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [anon_sym_mutable] = ACTIONS(3142), + [sym_null] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_sizeof] = ACTIONS(3142), + [anon_sym_volatile] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_typedef] = ACTIONS(3142), + [anon_sym_switch] = ACTIONS(3142), + [anon_sym_explicit] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3142), + [anon_sym_delete] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3142), + [anon_sym__Atomic] = ACTIONS(3142), + [sym_number_literal] = ACTIONS(3144), + [anon_sym_extern] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), + [anon_sym_constexpr] = ACTIONS(3142), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3144), + [anon_sym_namespace] = ACTIONS(3142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3142), + [anon_sym_SQUOTE] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_struct] = ACTIONS(3142), + [sym_auto] = ACTIONS(3142), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_COLON_COLON] = ACTIONS(3144), + [anon_sym_using] = ACTIONS(3142), + [sym_preproc_directive] = ACTIONS(3142), + [aux_sym_preproc_if_token1] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_union] = ACTIONS(3142), + [anon_sym_typename] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_goto] = ACTIONS(3142), + [sym_operator_name] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [aux_sym_preproc_include_token1] = ACTIONS(3142), + [anon_sym_register] = ACTIONS(3142), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_class] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [sym_primitive_type] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_nullptr] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3144), + [ts_builtin_sym_end] = ACTIONS(3144), + [aux_sym_preproc_def_token1] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_restrict] = ACTIONS(3142), }, [713] = { - [anon_sym_RPAREN] = ACTIONS(3144), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [714] = { - [anon_sym_DASH] = ACTIONS(3146), - [sym_raw_string_literal] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [anon_sym_mutable] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_sizeof] = ACTIONS(3146), - [anon_sym_volatile] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_typedef] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_explicit] = ACTIONS(3146), - [sym_identifier] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3146), - [anon_sym__Atomic] = ACTIONS(3146), - [sym_number_literal] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [anon_sym_constexpr] = ACTIONS(3146), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3146), - [sym_auto] = ACTIONS(3146), - [anon_sym_signed] = ACTIONS(3146), - [anon_sym_long] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3146), - [sym_preproc_directive] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3146), - [anon_sym_typename] = ACTIONS(3146), - [anon_sym_short] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_goto] = ACTIONS(3146), - [sym_operator_name] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [aux_sym_preproc_include_token1] = ACTIONS(3146), - [anon_sym_register] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [sym_primitive_type] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_nullptr] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_template] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [ts_builtin_sym_end] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [sym_comment] = ACTIONS(3), }, [715] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_else] = ACTIONS(964), - [anon_sym_RBRACK_RBRACK] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_COLON] = ACTIONS(964), - [anon_sym_catch] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_PERCENT] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_DASH_GT] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_GT_GT] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(3148), + [sym_raw_string_literal] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_sizeof] = ACTIONS(3148), + [anon_sym_volatile] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_explicit] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), + [anon_sym__Atomic] = ACTIONS(3148), + [sym_number_literal] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [anon_sym_constexpr] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), + [anon_sym_LPAREN2] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3148), + [sym_auto] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3148), + [anon_sym_long] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3148), + [sym_preproc_directive] = ACTIONS(3148), + [aux_sym_preproc_if_token1] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3148), + [anon_sym_typename] = ACTIONS(3148), + [anon_sym_short] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_goto] = ACTIONS(3148), + [sym_operator_name] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [aux_sym_preproc_include_token1] = ACTIONS(3148), + [anon_sym_register] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [sym_primitive_type] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_nullptr] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_template] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3150), + [ts_builtin_sym_end] = ACTIONS(3150), + [aux_sym_preproc_def_token1] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_restrict] = ACTIONS(3148), }, [716] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_else] = ACTIONS(968), + [anon_sym_RBRACK_RBRACK] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_DASH_GT] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + }, + [717] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -41107,7 +41150,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_RBRACE] = ACTIONS(3152), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -41139,114 +41182,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [717] = { - [sym_parameter_list] = STATE(1574), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - }, [718] = { - [aux_sym_try_statement_repeat1] = STATE(1575), - [sym_catch_clause] = STATE(1575), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [sym_operator_name] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [ts_builtin_sym_end] = ACTIONS(3154), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [sym_parameter_list] = STATE(1569), + [anon_sym_LPAREN2] = ACTIONS(614), + [sym_comment] = ACTIONS(3), }, [719] = { - [sym_destructor_name] = STATE(166), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(3158), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(1583), + [sym_catch_clause] = STATE(1570), + [aux_sym_try_statement_repeat1] = STATE(1570), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [sym_preproc_directive] = ACTIONS(3154), + [aux_sym_preproc_if_token1] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [sym_operator_name] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [aux_sym_preproc_include_token1] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_template] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [ts_builtin_sym_end] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, [720] = { - [sym_template_argument_list] = STATE(1578), + [sym_destructor_name] = STATE(167), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3160), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(1593), + }, + [721] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(1573), [anon_sym_LPAREN2] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1615), + [anon_sym_AMP_EQ] = ACTIONS(1625), [anon_sym_mutable] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(1613), - [anon_sym_STAR_EQ] = ACTIONS(1615), - [anon_sym_LT_LT_EQ] = ACTIONS(1615), - [anon_sym_COLON_COLON] = ACTIONS(3160), - [anon_sym_PERCENT_EQ] = ACTIONS(1615), + [anon_sym_EQ] = ACTIONS(1623), + [anon_sym_STAR_EQ] = ACTIONS(1625), + [anon_sym_LT_LT_EQ] = ACTIONS(1625), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(1625), [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(1615), + [anon_sym_CARET_EQ] = ACTIONS(1625), [anon_sym_AMP] = ACTIONS(180), [anon_sym_static] = ACTIONS(169), [anon_sym_volatile] = ACTIONS(169), @@ -41256,26 +41299,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(163), [anon_sym_explicit] = ACTIONS(169), [sym_identifier] = ACTIONS(169), - [anon_sym_SLASH_EQ] = ACTIONS(1615), + [anon_sym_SLASH_EQ] = ACTIONS(1625), [sym_operator_name] = ACTIONS(185), - [anon_sym_PLUS_EQ] = ACTIONS(1615), + [anon_sym_PLUS_EQ] = ACTIONS(1625), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1615), - [anon_sym_GT_GT_EQ] = ACTIONS(1615), + [anon_sym_PIPE_EQ] = ACTIONS(1625), + [anon_sym_GT_GT_EQ] = ACTIONS(1625), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_register] = ACTIONS(169), [anon_sym__Atomic] = ACTIONS(169), [anon_sym_const] = ACTIONS(169), [anon_sym_extern] = ACTIONS(169), - [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(187), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(163), [anon_sym_DOT] = ACTIONS(165), [anon_sym_constexpr] = ACTIONS(169), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1615), + [anon_sym_DASH_EQ] = ACTIONS(1625), [anon_sym_TILDE] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), @@ -41287,163 +41330,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [721] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1580), - [sym_logical_expression] = STATE(1580), - [sym_bitwise_expression] = STATE(1580), - [sym_cast_expression] = STATE(1580), - [sym_new_expression] = STATE(1580), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1580), - [sym_char_literal] = STATE(1580), - [sym_template_function] = STATE(1580), - [sym_conditional_expression] = STATE(1580), - [sym_equality_expression] = STATE(1580), - [sym_relational_expression] = STATE(1580), - [sym_delete_expression] = STATE(1580), - [sym_sizeof_expression] = STATE(1580), - [sym_parenthesized_expression] = STATE(1580), - [sym_lambda_expression] = STATE(1580), - [sym_concatenated_string] = STATE(1580), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1580), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1580), - [sym_math_expression] = STATE(1580), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(3166), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, [722] = { - [sym_initializer_list] = STATE(324), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(175), + [sym_template_function] = STATE(1575), + [sym__expression] = STATE(1575), + [sym_logical_expression] = STATE(1575), + [sym_bitwise_expression] = STATE(1575), + [sym_cast_expression] = STATE(1575), + [sym_delete_expression] = STATE(1575), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1575), + [sym_lambda_expression] = STATE(1575), + [sym_char_literal] = STATE(1575), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1575), + [sym_equality_expression] = STATE(1575), + [sym_relational_expression] = STATE(1575), + [sym_sizeof_expression] = STATE(1575), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1575), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(1575), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1575), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1575), + [sym_math_expression] = STATE(1575), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1575), + [sym_raw_string_literal] = ACTIONS(3164), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3166), + [sym_null] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [723] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [724] = { - [sym_reference_declarator] = STATE(1585), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(1585), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(1585), - [sym_destructor_name] = STATE(1585), - [sym__declarator] = STATE(1585), - [sym_init_declarator] = STATE(1586), - [sym_array_declarator] = STATE(1585), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(1585), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [sym_operator_name] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - }, - [725] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(278), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(1588), - [sym_scoped_type_identifier] = STATE(87), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_struct_specifier] = STATE(280), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(1577), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -41452,747 +41448,801 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, + [725] = { + [anon_sym_COLON] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + }, [726] = { - [anon_sym_COLON] = ACTIONS(3180), + [sym_template_function] = STATE(1582), + [sym_destructor_name] = STATE(1582), + [sym_pointer_declarator] = STATE(1582), + [sym_structured_binding_declarator] = STATE(1582), + [sym__declarator] = STATE(1582), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1581), + [sym_reference_declarator] = STATE(1582), + [sym_array_declarator] = STATE(1582), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(1583), + [sym_function_declarator] = STATE(1582), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(3180), [sym_comment] = ACTIONS(3), }, [727] = { - [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3182), [sym_comment] = ACTIONS(3), }, [728] = { - [anon_sym_DASH] = ACTIONS(1319), - [sym_raw_string_literal] = ACTIONS(1317), - [sym_true] = ACTIONS(1319), - [anon_sym_mutable] = ACTIONS(1319), - [sym_null] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_explicit] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1319), - [anon_sym_delete] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym_namespace] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1319), - [sym_auto] = ACTIONS(1319), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_COLON_COLON] = ACTIONS(1317), - [anon_sym_using] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_typename] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [sym_operator_name] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_try] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_class] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [sym_nullptr] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_template] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [ts_builtin_sym_end] = ACTIONS(1317), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1319), + [sym_initializer_list] = STATE(311), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(175), }, [729] = { - [aux_sym_string_literal_repeat1] = STATE(731), - [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(1327), + [sym_raw_string_literal] = ACTIONS(1325), + [sym_true] = ACTIONS(1327), + [anon_sym_mutable] = ACTIONS(1327), + [sym_null] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_explicit] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1327), + [anon_sym_delete] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_namespace] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1327), + [sym_auto] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_using] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_typename] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [sym_operator_name] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [sym_nullptr] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_template] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [ts_builtin_sym_end] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1327), }, [730] = { - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3184), - [anon_sym_EQ_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_GT_EQ] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_COLON] = ACTIONS(3184), - [anon_sym_CARET] = ACTIONS(3184), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PIPE_PIPE] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3184), + [aux_sym_string_literal_repeat1] = STATE(732), + [sym_comment] = ACTIONS(244), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_LT_LT] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3184), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_DASH_GT] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), }, [731] = { - [aux_sym_string_literal_repeat1] = STATE(731), - [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(3188), - [aux_sym_string_literal_token1] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), }, [732] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(654), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_RBRACK] = ACTIONS(654), + [aux_sym_string_literal_repeat1] = STATE(732), + [sym_comment] = ACTIONS(244), + [sym_escape_sequence] = ACTIONS(3190), + [aux_sym_string_literal_token1] = ACTIONS(3190), + [anon_sym_DQUOTE] = ACTIONS(3193), }, [733] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_RBRACK] = ACTIONS(656), }, [734] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), [anon_sym_RPAREN] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [735] = { - [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3197), [sym_comment] = ACTIONS(3), }, [736] = { - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1317), - [anon_sym_PIPE_PIPE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_LT_LT] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_PERCENT] = ACTIONS(1317), + [anon_sym_RPAREN] = ACTIONS(3195), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_DASH_GT] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), }, [737] = { - [aux_sym_string_literal_repeat1] = STATE(731), - [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(3197), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_RBRACK] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1325), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1325), }, [738] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1141), - [anon_sym_RBRACK] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1141), + [aux_sym_string_literal_repeat1] = STATE(732), + [sym_comment] = ACTIONS(244), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(3199), }, [739] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1141), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_GT_GT] = ACTIONS(1141), - [anon_sym_RBRACK] = ACTIONS(1141), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_DASH_DASH] = ACTIONS(1147), }, [740] = { - [sym_identifier] = ACTIONS(3199), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_PERCENT] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1147), }, [741] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1596), - [sym_logical_expression] = STATE(1596), - [sym_bitwise_expression] = STATE(1596), - [sym_cast_expression] = STATE(1596), - [sym_new_expression] = STATE(1596), + [sym_identifier] = ACTIONS(3201), + [sym_comment] = ACTIONS(3), + }, + [742] = { + [sym_template_function] = STATE(1591), + [sym__expression] = STATE(1591), + [sym_logical_expression] = STATE(1591), + [sym_bitwise_expression] = STATE(1591), + [sym_cast_expression] = STATE(1591), + [sym_delete_expression] = STATE(1591), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(1596), - [sym_char_literal] = STATE(1596), - [sym_template_function] = STATE(1596), - [sym_conditional_expression] = STATE(1596), - [sym_equality_expression] = STATE(1596), - [sym_relational_expression] = STATE(1596), - [sym_delete_expression] = STATE(1596), - [sym_sizeof_expression] = STATE(1596), - [sym_parenthesized_expression] = STATE(1596), - [sym_lambda_expression] = STATE(1596), - [sym_concatenated_string] = STATE(1596), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(1591), + [sym_lambda_expression] = STATE(1591), + [sym_char_literal] = STATE(1591), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1591), + [sym_equality_expression] = STATE(1591), + [sym_relational_expression] = STATE(1591), + [sym_sizeof_expression] = STATE(1591), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(1596), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1591), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(1591), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1591), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(1596), - [sym_math_expression] = STATE(1596), + [sym_shift_expression] = STATE(1591), + [sym_math_expression] = STATE(1591), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3203), - [sym_null] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), - }, - [742] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_PIPE_PIPE] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_PERCENT] = ACTIONS(662), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(662), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_RBRACK] = ACTIONS(662), + [sym_new_expression] = STATE(1591), + [sym_raw_string_literal] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3205), + [sym_null] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3203), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, [743] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(1597), - [sym_logical_expression] = STATE(1597), - [sym_bitwise_expression] = STATE(1597), - [sym_cast_expression] = STATE(1597), - [sym_new_expression] = STATE(1597), - [sym_field_expression] = STATE(1597), - [sym_compound_literal_expression] = STATE(1597), - [sym_char_literal] = STATE(1597), - [sym_template_function] = STATE(1597), - [sym_conditional_expression] = STATE(1597), - [sym_equality_expression] = STATE(1597), - [sym_relational_expression] = STATE(1597), - [sym_delete_expression] = STATE(1597), - [sym_sizeof_expression] = STATE(1597), - [sym_parenthesized_expression] = STATE(1597), - [sym_lambda_expression] = STATE(1597), - [sym_concatenated_string] = STATE(1597), - [sym_string_literal] = STATE(758), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_PERCENT] = ACTIONS(666), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_RBRACK] = ACTIONS(666), + }, + [744] = { + [sym_template_function] = STATE(1592), + [sym__expression] = STATE(1592), + [sym_logical_expression] = STATE(1592), + [sym_bitwise_expression] = STATE(1592), + [sym_cast_expression] = STATE(1592), + [sym_delete_expression] = STATE(1592), + [sym_field_expression] = STATE(1592), + [sym_compound_literal_expression] = STATE(1592), + [sym_lambda_expression] = STATE(1592), + [sym_char_literal] = STATE(1592), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(1597), - [sym_assignment_expression] = STATE(1597), - [sym_pointer_expression] = STATE(1597), - [sym_shift_expression] = STATE(1597), - [sym_math_expression] = STATE(1597), - [sym_call_expression] = STATE(1597), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(1592), + [sym_equality_expression] = STATE(1592), + [sym_relational_expression] = STATE(1592), + [sym_sizeof_expression] = STATE(1592), + [sym_subscript_expression] = STATE(1592), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(3209), - [sym_null] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(1592), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(1592), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(1592), + [sym_pointer_expression] = STATE(1592), + [sym_shift_expression] = STATE(1592), + [sym_math_expression] = STATE(1592), + [sym_call_expression] = STATE(1592), + [sym_new_expression] = STATE(1592), + [sym_raw_string_literal] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(3209), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(3211), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [744] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(1598), - [sym_logical_expression] = STATE(1598), - [sym_bitwise_expression] = STATE(1598), - [sym_cast_expression] = STATE(1598), - [sym_new_expression] = STATE(1598), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1598), - [sym_type_descriptor] = STATE(1599), - [sym_char_literal] = STATE(1598), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(1598), - [sym_conditional_expression] = STATE(1598), - [sym_equality_expression] = STATE(1598), - [sym_relational_expression] = STATE(1598), - [sym_delete_expression] = STATE(1598), - [sym_sizeof_expression] = STATE(1598), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(1598), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(1598), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(1598), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(1600), - [sym_assignment_expression] = STATE(1598), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1598), - [sym_math_expression] = STATE(1598), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(3211), + [745] = { + [sym_template_function] = STATE(1593), + [sym__expression] = STATE(1593), + [sym_logical_expression] = STATE(1593), + [sym_bitwise_expression] = STATE(1593), + [sym_cast_expression] = STATE(1593), + [sym_delete_expression] = STATE(1593), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(1593), + [sym_char_literal] = STATE(1593), + [sym_lambda_expression] = STATE(1593), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1594), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(1595), + [sym_conditional_expression] = STATE(1593), + [sym_equality_expression] = STATE(1593), + [sym_relational_expression] = STATE(1593), + [sym_sizeof_expression] = STATE(1593), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(1593), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1593), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(1593), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1593), + [sym_math_expression] = STATE(1593), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1593), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(3213), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(3213), + [sym_true] = ACTIONS(3215), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(3213), + [sym_null] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3211), + [sym_number_literal] = ACTIONS(3213), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(3213), + [sym_false] = ACTIONS(3215), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(3213), + [sym_nullptr] = ACTIONS(3215), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [745] = { - [aux_sym_string_literal_repeat1] = STATE(1602), + [746] = { + [aux_sym_string_literal_repeat1] = STATE(1597), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(3215), - [aux_sym_string_literal_token1] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(3217), + [sym_escape_sequence] = ACTIONS(3217), + [aux_sym_string_literal_token1] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3219), }, - [746] = { - [sym_destructor_name] = STATE(1604), + [747] = { + [sym_destructor_name] = STATE(1599), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(3219), - [sym_operator_name] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3221), + [sym_operator_name] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3227), }, - [747] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(1607), - [sym_logical_expression] = STATE(1607), - [sym_bitwise_expression] = STATE(1607), - [sym_cast_expression] = STATE(1607), - [sym_new_expression] = STATE(1607), - [sym_field_expression] = STATE(1607), - [sym_compound_literal_expression] = STATE(1607), - [sym_char_literal] = STATE(1607), - [sym_template_function] = STATE(1607), - [sym_conditional_expression] = STATE(1607), - [sym_equality_expression] = STATE(1607), - [sym_relational_expression] = STATE(1607), - [sym_delete_expression] = STATE(1607), - [sym_sizeof_expression] = STATE(1607), - [sym_parenthesized_expression] = STATE(1607), - [sym_lambda_expression] = STATE(1607), - [sym_concatenated_string] = STATE(1607), - [sym_string_literal] = STATE(758), + [748] = { + [sym_template_function] = STATE(1602), + [sym__expression] = STATE(1602), + [sym_logical_expression] = STATE(1602), + [sym_bitwise_expression] = STATE(1602), + [sym_cast_expression] = STATE(1602), + [sym_delete_expression] = STATE(1602), + [sym_field_expression] = STATE(1602), + [sym_compound_literal_expression] = STATE(1602), + [sym_lambda_expression] = STATE(1602), + [sym_char_literal] = STATE(1602), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(1607), - [sym_assignment_expression] = STATE(1607), - [sym_pointer_expression] = STATE(1607), - [sym_shift_expression] = STATE(1607), - [sym_math_expression] = STATE(1607), - [sym_call_expression] = STATE(1607), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(1602), + [sym_equality_expression] = STATE(1602), + [sym_relational_expression] = STATE(1602), + [sym_sizeof_expression] = STATE(1602), + [sym_subscript_expression] = STATE(1602), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(1602), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(1602), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(1602), + [sym_pointer_expression] = STATE(1602), + [sym_shift_expression] = STATE(1602), + [sym_math_expression] = STATE(1602), + [sym_call_expression] = STATE(1602), + [sym_new_expression] = STATE(1602), + [sym_raw_string_literal] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(3229), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(3231), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [748] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(1609), - [sym_logical_expression] = STATE(1609), - [sym_bitwise_expression] = STATE(1609), - [sym_cast_expression] = STATE(1609), - [sym_new_expression] = STATE(1609), - [sym_field_expression] = STATE(1609), - [sym_compound_literal_expression] = STATE(1609), - [sym_char_literal] = STATE(1609), - [sym_template_function] = STATE(1609), - [sym_conditional_expression] = STATE(1609), - [sym_equality_expression] = STATE(1609), - [sym_relational_expression] = STATE(1609), - [sym_delete_expression] = STATE(1609), - [sym_sizeof_expression] = STATE(1609), - [sym_parenthesized_expression] = STATE(1609), - [sym_lambda_expression] = STATE(1609), - [sym_concatenated_string] = STATE(1609), - [sym_string_literal] = STATE(758), + [749] = { + [sym_template_function] = STATE(1604), + [sym__expression] = STATE(1604), + [sym_logical_expression] = STATE(1604), + [sym_bitwise_expression] = STATE(1604), + [sym_cast_expression] = STATE(1604), + [sym_delete_expression] = STATE(1604), + [sym_field_expression] = STATE(1604), + [sym_compound_literal_expression] = STATE(1604), + [sym_lambda_expression] = STATE(1604), + [sym_char_literal] = STATE(1604), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(1609), - [sym_assignment_expression] = STATE(1609), - [sym_pointer_expression] = STATE(1609), - [sym_shift_expression] = STATE(1609), - [sym_math_expression] = STATE(1609), - [sym_call_expression] = STATE(1609), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(1604), + [sym_equality_expression] = STATE(1604), + [sym_relational_expression] = STATE(1604), + [sym_sizeof_expression] = STATE(1604), + [sym_subscript_expression] = STATE(1604), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(3233), - [sym_true] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(1604), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(1604), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(1604), + [sym_pointer_expression] = STATE(1604), + [sym_shift_expression] = STATE(1604), + [sym_math_expression] = STATE(1604), + [sym_call_expression] = STATE(1604), + [sym_new_expression] = STATE(1604), + [sym_raw_string_literal] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(3235), + [sym_true] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(3233), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [749] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(1610), - [sym_logical_expression] = STATE(1610), - [sym_bitwise_expression] = STATE(1610), - [sym_cast_expression] = STATE(1610), - [sym_new_expression] = STATE(1610), - [sym_field_expression] = STATE(1610), - [sym_compound_literal_expression] = STATE(1610), - [sym_char_literal] = STATE(1610), - [sym_template_function] = STATE(1610), - [sym_conditional_expression] = STATE(1610), - [sym_equality_expression] = STATE(1610), - [sym_relational_expression] = STATE(1610), - [sym_delete_expression] = STATE(1610), - [sym_sizeof_expression] = STATE(1610), - [sym_parenthesized_expression] = STATE(1610), - [sym_lambda_expression] = STATE(1610), - [sym_concatenated_string] = STATE(1610), - [sym_string_literal] = STATE(758), + [750] = { + [sym_template_function] = STATE(1605), + [sym__expression] = STATE(1605), + [sym_logical_expression] = STATE(1605), + [sym_bitwise_expression] = STATE(1605), + [sym_cast_expression] = STATE(1605), + [sym_delete_expression] = STATE(1605), + [sym_field_expression] = STATE(1605), + [sym_compound_literal_expression] = STATE(1605), + [sym_lambda_expression] = STATE(1605), + [sym_char_literal] = STATE(1605), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(1610), - [sym_assignment_expression] = STATE(1610), - [sym_pointer_expression] = STATE(1610), - [sym_shift_expression] = STATE(1610), - [sym_math_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(1605), + [sym_equality_expression] = STATE(1605), + [sym_relational_expression] = STATE(1605), + [sym_sizeof_expression] = STATE(1605), + [sym_subscript_expression] = STATE(1605), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(1605), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(1605), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(1605), + [sym_pointer_expression] = STATE(1605), + [sym_shift_expression] = STATE(1605), + [sym_math_expression] = STATE(1605), + [sym_call_expression] = STATE(1605), + [sym_new_expression] = STATE(1605), + [sym_raw_string_literal] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(3239), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [750] = { - [sym_template_argument_list] = STATE(1614), - [sym_initializer_list] = STATE(1615), + [751] = { + [sym_initializer_list] = STATE(1609), + [sym_template_argument_list] = STATE(1610), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3243), [anon_sym_STAR_EQ] = ACTIONS(165), [anon_sym_LT_LT_EQ] = ACTIONS(165), [anon_sym_PERCENT_EQ] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(3243), + [anon_sym_COLON_COLON] = ACTIONS(3245), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -42224,146 +42274,140 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_RBRACK] = ACTIONS(165), }, - [751] = { - [sym_union_specifier] = STATE(1627), - [sym_macro_type_specifier] = STATE(1627), - [sym_class_specifier] = STATE(1627), - [sym_template_type] = STATE(1623), - [sym_sized_type_specifier] = STATE(1627), - [sym_scoped_namespace_identifier] = STATE(1625), - [sym__type_specifier] = STATE(1627), - [aux_sym_sized_type_specifier_repeat1] = STATE(1626), - [sym_argument_list] = STATE(1628), - [sym_enum_specifier] = STATE(1627), - [sym_struct_specifier] = STATE(1627), - [sym_scoped_type_identifier] = STATE(1624), - [sym_dependent_type] = STATE(1627), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(3248), - [sym_auto] = ACTIONS(3250), - [anon_sym_signed] = ACTIONS(3252), - [anon_sym_long] = ACTIONS(3252), - [anon_sym_COLON_COLON] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3258), - [sym_primitive_type] = ACTIONS(3250), - [anon_sym_unsigned] = ACTIONS(3252), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [anon_sym_short] = ACTIONS(3252), - }, [752] = { - [sym_escape_sequence] = ACTIONS(3266), - [aux_sym_char_literal_token1] = ACTIONS(3268), - [sym_comment] = ACTIONS(244), + [sym_union_specifier] = STATE(1619), + [sym_macro_type_specifier] = STATE(1619), + [sym_class_specifier] = STATE(1619), + [aux_sym_sized_type_specifier_repeat1] = STATE(1618), + [sym_sized_type_specifier] = STATE(1619), + [sym__type_specifier] = STATE(1619), + [sym_argument_list] = STATE(1620), + [sym_scoped_type_identifier] = STATE(1621), + [sym_enum_specifier] = STATE(1619), + [sym_template_type] = STATE(1622), + [sym_scoped_namespace_identifier] = STATE(1623), + [sym_dependent_type] = STATE(1619), + [sym_struct_specifier] = STATE(1619), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(3250), + [sym_auto] = ACTIONS(3252), + [anon_sym_signed] = ACTIONS(3254), + [anon_sym_long] = ACTIONS(3254), + [anon_sym_COLON_COLON] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3260), + [sym_primitive_type] = ACTIONS(3252), + [anon_sym_unsigned] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3254), }, [753] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(1631), - [sym_logical_expression] = STATE(1631), - [sym_bitwise_expression] = STATE(1631), - [sym_cast_expression] = STATE(1631), - [sym_new_expression] = STATE(1631), - [sym_field_expression] = STATE(1631), - [sym_compound_literal_expression] = STATE(1631), - [sym_char_literal] = STATE(1631), - [sym_template_function] = STATE(1631), - [sym_conditional_expression] = STATE(1631), - [sym_equality_expression] = STATE(1631), - [sym_relational_expression] = STATE(1631), - [sym_delete_expression] = STATE(1631), - [sym_sizeof_expression] = STATE(1631), - [sym_parenthesized_expression] = STATE(1631), - [sym_lambda_expression] = STATE(1631), - [sym_concatenated_string] = STATE(1631), - [sym_string_literal] = STATE(758), + [sym_escape_sequence] = ACTIONS(3268), + [aux_sym_char_literal_token1] = ACTIONS(3270), + [sym_comment] = ACTIONS(244), + }, + [754] = { + [sym_template_function] = STATE(1626), + [sym__expression] = STATE(1626), + [sym_logical_expression] = STATE(1626), + [sym_bitwise_expression] = STATE(1626), + [sym_cast_expression] = STATE(1626), + [sym_delete_expression] = STATE(1626), + [sym_field_expression] = STATE(1626), + [sym_compound_literal_expression] = STATE(1626), + [sym_lambda_expression] = STATE(1626), + [sym_char_literal] = STATE(1626), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(1631), - [sym_assignment_expression] = STATE(1631), - [sym_pointer_expression] = STATE(1631), - [sym_shift_expression] = STATE(1631), - [sym_math_expression] = STATE(1631), - [sym_call_expression] = STATE(1631), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(1626), + [sym_equality_expression] = STATE(1626), + [sym_relational_expression] = STATE(1626), + [sym_sizeof_expression] = STATE(1626), + [sym_subscript_expression] = STATE(1626), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), - }, - [754] = { - [sym_initializer_list] = STATE(1633), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), + [sym_parenthesized_expression] = STATE(1626), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(1626), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(1626), + [sym_pointer_expression] = STATE(1626), + [sym_shift_expression] = STATE(1626), + [sym_math_expression] = STATE(1626), + [sym_call_expression] = STATE(1626), + [sym_new_expression] = STATE(1626), + [sym_raw_string_literal] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, [755] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_LT_LT_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_CARET_EQ] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_PIPE_EQ] = ACTIONS(1249), - [anon_sym_GT_GT_EQ] = ACTIONS(1249), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_AMP_EQ] = ACTIONS(1249), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_RBRACK] = ACTIONS(1249), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_RBRACK] = ACTIONS(1253), }, [756] = { - [sym_template_argument_list] = STATE(1646), + [sym_template_argument_list] = STATE(1639), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), @@ -42372,7 +42416,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT_EQ] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -42405,15 +42449,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(165), }, [757] = { - [sym_template_argument_list] = STATE(354), - [sym_initializer_list] = STATE(1633), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(3241), + [sym_initializer_list] = STATE(1640), + [sym_template_argument_list] = STATE(312), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(3243), [sym_comment] = ACTIONS(3), }, [758] = { - [sym_string_literal] = STATE(1647), - [aux_sym_concatenated_string_repeat1] = STATE(1647), + [sym_abstract_reference_declarator] = STATE(321), + [sym_abstract_array_declarator] = STATE(321), + [sym_abstract_pointer_declarator] = STATE(321), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(1641), + [sym__abstract_declarator] = STATE(321), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(544), + [sym_comment] = ACTIONS(3), + }, + [759] = { + [sym_string_literal] = STATE(1642), + [aux_sym_concatenated_string_repeat1] = STATE(1642), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), @@ -42438,7 +42496,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1373), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -42455,518 +42513,532 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_RBRACK] = ACTIONS(165), }, - [759] = { - [sym_parameter_list] = STATE(361), - [sym_abstract_array_declarator] = STATE(363), - [sym_abstract_pointer_declarator] = STATE(363), - [sym_abstract_reference_declarator] = STATE(363), - [sym_abstract_function_declarator] = STATE(1648), - [sym__abstract_declarator] = STATE(363), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - }, [760] = { - [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_COLON_COLON] = ACTIONS(3278), [sym_comment] = ACTIONS(3), }, [761] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(733), - [sym_logical_expression] = STATE(733), - [sym_bitwise_expression] = STATE(733), - [sym_cast_expression] = STATE(733), - [sym_new_expression] = STATE(733), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(733), - [sym_type_descriptor] = STATE(1649), - [sym_char_literal] = STATE(733), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(733), - [sym_conditional_expression] = STATE(733), - [sym_equality_expression] = STATE(733), - [sym_relational_expression] = STATE(733), - [sym_delete_expression] = STATE(733), - [sym_sizeof_expression] = STATE(733), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(733), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(733), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(733), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(735), - [sym_assignment_expression] = STATE(733), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(733), - [sym_math_expression] = STATE(733), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1329), + [sym_initializer_list] = STATE(1640), + [anon_sym_COLON_COLON] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3243), + [sym_comment] = ACTIONS(3), + }, + [762] = { + [sym_template_function] = STATE(734), + [sym__expression] = STATE(734), + [sym_logical_expression] = STATE(734), + [sym_bitwise_expression] = STATE(734), + [sym_cast_expression] = STATE(734), + [sym_delete_expression] = STATE(734), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(734), + [sym_char_literal] = STATE(734), + [sym_lambda_expression] = STATE(734), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1644), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(736), + [sym_conditional_expression] = STATE(734), + [sym_equality_expression] = STATE(734), + [sym_relational_expression] = STATE(734), + [sym_sizeof_expression] = STATE(734), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(734), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(734), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(734), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(734), + [sym_math_expression] = STATE(734), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(734), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1337), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1331), + [sym_true] = ACTIONS(1339), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1331), + [sym_null] = ACTIONS(1339), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1337), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1331), + [sym_false] = ACTIONS(1339), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1331), + [sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [762] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [763] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_PERCENT] = ACTIONS(1655), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_RBRACK] = ACTIONS(1655), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(668), }, [764] = { - [sym_template_type] = STATE(239), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(1665), + }, + [765] = { + [sym_template_function] = STATE(1645), + [sym__expression] = STATE(1645), + [sym_logical_expression] = STATE(1645), + [sym_bitwise_expression] = STATE(1645), + [sym_cast_expression] = STATE(1645), + [sym_delete_expression] = STATE(1645), + [sym_field_expression] = STATE(241), + [sym_compound_literal_expression] = STATE(1645), + [sym_lambda_expression] = STATE(1645), + [sym_char_literal] = STATE(1645), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1645), + [sym_equality_expression] = STATE(1645), + [sym_relational_expression] = STATE(1645), + [sym_sizeof_expression] = STATE(1645), + [sym_subscript_expression] = STATE(241), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1645), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(1645), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1645), + [sym_pointer_expression] = STATE(241), + [sym_shift_expression] = STATE(1645), + [sym_math_expression] = STATE(1645), + [sym_call_expression] = STATE(241), + [sym_new_expression] = STATE(1645), + [sym_raw_string_literal] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), + }, + [766] = { + [sym_identifier] = ACTIONS(3284), + [sym_comment] = ACTIONS(3), + }, + [767] = { + [sym_destructor_name] = STATE(1647), + [sym_identifier] = ACTIONS(3286), + [sym_operator_name] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(1355), + [sym_comment] = ACTIONS(3), + }, + [768] = { + [sym_template_function] = STATE(1650), [sym__expression] = STATE(1650), [sym_logical_expression] = STATE(1650), [sym_bitwise_expression] = STATE(1650), [sym_cast_expression] = STATE(1650), - [sym_new_expression] = STATE(1650), - [sym_field_expression] = STATE(241), + [sym_delete_expression] = STATE(1650), + [sym_field_expression] = STATE(421), + [sym_scoped_type_identifier] = STATE(422), [sym_compound_literal_expression] = STATE(1650), [sym_char_literal] = STATE(1650), - [sym_template_function] = STATE(1650), + [sym_lambda_expression] = STATE(1650), + [sym_scoped_identifier] = STATE(423), + [sym_type_descriptor] = STATE(1651), + [sym_dependent_type] = STATE(428), + [sym_struct_specifier] = STATE(428), + [sym_union_specifier] = STATE(428), + [sym_type_qualifier] = STATE(429), [sym_conditional_expression] = STATE(1650), [sym_equality_expression] = STATE(1650), [sym_relational_expression] = STATE(1650), - [sym_delete_expression] = STATE(1650), [sym_sizeof_expression] = STATE(1650), + [sym_subscript_expression] = STATE(421), [sym_parenthesized_expression] = STATE(1650), - [sym_lambda_expression] = STATE(1650), + [sym_lambda_capture_specifier] = STATE(425), [sym_concatenated_string] = STATE(1650), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_string_literal] = STATE(426), + [sym_macro_type_specifier] = STATE(428), + [sym_class_specifier] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(428), + [sym__type_specifier] = STATE(428), + [aux_sym_type_definition_repeat1] = STATE(429), + [sym_scoped_namespace_identifier] = STATE(430), + [sym_template_type] = STATE(431), [sym_assignment_expression] = STATE(1650), - [sym_pointer_expression] = STATE(241), + [sym_pointer_expression] = STATE(421), [sym_shift_expression] = STATE(1650), [sym_math_expression] = STATE(1650), - [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3280), - [sym_null] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), - }, - [765] = { - [sym_destructor_name] = STATE(1651), - [sym_identifier] = ACTIONS(3282), - [sym_operator_name] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(1347), + [sym_call_expression] = STATE(421), + [sym_new_expression] = STATE(1650), + [sym_enum_specifier] = STATE(428), + [sym_raw_string_literal] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(706), + [sym_true] = ACTIONS(3292), + [anon_sym_mutable] = ACTIONS(11), + [sym_null] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_GT2] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_short] = ACTIONS(716), + [anon_sym_delete] = ACTIONS(734), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [sym_number_literal] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(706), + [sym_false] = ACTIONS(3292), + [anon_sym_unsigned] = ACTIONS(716), + [sym_nullptr] = ACTIONS(3292), [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_restrict] = ACTIONS(11), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [766] = { - [sym_template_type] = STATE(419), + [769] = { + [sym_template_function] = STATE(1654), [sym__expression] = STATE(1654), [sym_logical_expression] = STATE(1654), [sym_bitwise_expression] = STATE(1654), [sym_cast_expression] = STATE(1654), - [sym_new_expression] = STATE(1654), - [sym_field_expression] = STATE(421), + [sym_delete_expression] = STATE(1654), + [sym_field_expression] = STATE(449), [sym_compound_literal_expression] = STATE(1654), - [sym_type_descriptor] = STATE(1655), + [sym_lambda_expression] = STATE(1654), [sym_char_literal] = STATE(1654), - [sym_type_qualifier] = STATE(429), - [sym_dependent_type] = STATE(426), - [sym_union_specifier] = STATE(426), - [sym_struct_specifier] = STATE(426), - [sym_template_function] = STATE(1654), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), [sym_conditional_expression] = STATE(1654), [sym_equality_expression] = STATE(1654), [sym_relational_expression] = STATE(1654), - [sym_delete_expression] = STATE(1654), [sym_sizeof_expression] = STATE(1654), - [sym_subscript_expression] = STATE(421), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1655), [sym_parenthesized_expression] = STATE(1654), - [sym_scoped_type_identifier] = STATE(423), - [sym_string_literal] = STATE(424), - [sym_macro_type_specifier] = STATE(426), - [sym_class_specifier] = STATE(426), + [sym_string_literal] = STATE(450), + [sym_lambda_capture_specifier] = STATE(50), [sym_concatenated_string] = STATE(1654), - [sym_sized_type_specifier] = STATE(426), - [sym_lambda_expression] = STATE(1654), - [sym_scoped_identifier] = STATE(425), - [sym__type_specifier] = STATE(426), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1654), - [sym_pointer_expression] = STATE(421), + [sym_pointer_expression] = STATE(449), [sym_shift_expression] = STATE(1654), [sym_math_expression] = STATE(1654), - [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_enum_specifier] = STATE(426), - [sym_raw_string_literal] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(702), - [sym_true] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(710), - [anon_sym_signed] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_GT2] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_short] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(730), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(702), - [sym_false] = ACTIONS(3288), - [anon_sym_unsigned] = ACTIONS(712), - [sym_nullptr] = ACTIONS(3288), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(740), - }, - [767] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1658), - [sym_logical_expression] = STATE(1658), - [sym_bitwise_expression] = STATE(1658), - [sym_cast_expression] = STATE(1658), - [sym_new_expression] = STATE(1658), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(1658), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(1658), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(1658), - [sym_conditional_expression] = STATE(1658), - [sym_equality_expression] = STATE(1658), - [sym_relational_expression] = STATE(1658), - [sym_delete_expression] = STATE(1658), - [sym_sizeof_expression] = STATE(1658), - [sym_parenthesized_expression] = STATE(1658), - [sym_initializer_list] = STATE(1659), - [sym_concatenated_string] = STATE(1658), - [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(1658), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(1658), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(1658), - [sym_math_expression] = STATE(1658), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(1659), - [sym_raw_string_literal] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(3294), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(1654), + [sym_initializer_pair] = STATE(1655), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [768] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(785), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(785), - [anon_sym_DASH_DASH] = ACTIONS(785), - }, - [769] = { - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_CARET] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_DOT] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_PERCENT] = ACTIONS(794), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_QMARK] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_LT_EQ] = ACTIONS(794), - [anon_sym_BANG_EQ] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_DASH_GT] = ACTIONS(794), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_RBRACK] = ACTIONS(794), - }, [770] = { - [sym_virtual_specifier] = STATE(1662), - [sym_template_type] = STATE(1663), - [sym_scoped_namespace_identifier] = STATE(779), - [sym_field_declaration_list] = STATE(1664), - [sym_scoped_type_identifier] = STATE(1665), - [sym_base_class_clause] = STATE(1666), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(3300), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_GT2] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_RPAREN] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), }, [771] = { - [sym_virtual_specifier] = STATE(1668), - [sym_template_type] = STATE(1669), - [sym_scoped_namespace_identifier] = STATE(779), - [sym_field_declaration_list] = STATE(1670), - [sym_scoped_type_identifier] = STATE(1671), - [sym_base_class_clause] = STATE(1672), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(3304), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(298), + [aux_sym_structured_binding_declarator_repeat1] = STATE(1657), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_RBRACK] = ACTIONS(3308), }, [772] = { - [sym_union_specifier] = STATE(1673), - [sym_macro_type_specifier] = STATE(1673), - [sym_class_specifier] = STATE(1673), - [sym_template_type] = STATE(777), - [sym_sized_type_specifier] = STATE(1673), - [sym_scoped_namespace_identifier] = STATE(779), - [sym__type_specifier] = STATE(1673), - [aux_sym_sized_type_specifier_repeat1] = STATE(780), - [sym_struct_specifier] = STATE(1673), - [sym_enum_specifier] = STATE(1673), - [sym_scoped_type_identifier] = STATE(778), - [sym_dependent_type] = STATE(1673), - [anon_sym_unsigned] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1404), - [sym_auto] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_typename] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_PERCENT] = ACTIONS(784), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_RBRACK] = ACTIONS(784), }, [773] = { - [sym_identifier] = ACTIONS(3308), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_RBRACK] = ACTIONS(793), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), }, [774] = { - [sym_template_argument_list] = STATE(1676), + [sym_scoped_type_identifier] = STATE(1660), + [sym_virtual_specifier] = STATE(1661), + [sym_template_type] = STATE(1662), + [sym_scoped_namespace_identifier] = STATE(786), + [sym_field_declaration_list] = STATE(1663), + [sym_base_class_clause] = STATE(1664), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(300), + }, + [775] = { + [sym_scoped_type_identifier] = STATE(1666), + [sym_virtual_specifier] = STATE(1667), + [sym_template_type] = STATE(1668), + [sym_scoped_namespace_identifier] = STATE(786), + [sym_field_declaration_list] = STATE(1669), + [sym_base_class_clause] = STATE(1670), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(300), + }, + [776] = { + [sym_union_specifier] = STATE(1671), + [sym_macro_type_specifier] = STATE(1671), + [sym_class_specifier] = STATE(1671), + [aux_sym_sized_type_specifier_repeat1] = STATE(781), + [sym_sized_type_specifier] = STATE(1671), + [sym__type_specifier] = STATE(1671), + [sym_scoped_type_identifier] = STATE(784), + [sym_enum_specifier] = STATE(1671), + [sym_template_type] = STATE(785), + [sym_scoped_namespace_identifier] = STATE(786), + [sym_dependent_type] = STATE(1671), + [sym_struct_specifier] = STATE(1671), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1418), + [sym_auto] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_typename] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(3316), + }, + [777] = { + [sym_identifier] = ACTIONS(3318), + [sym_comment] = ACTIONS(3), + }, + [778] = { + [sym_template_argument_list] = STATE(1674), [anon_sym_LPAREN2] = ACTIONS(185), [anon_sym_DASH] = ACTIONS(169), [anon_sym_LBRACE] = ACTIONS(185), [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3320), [anon_sym_EQ_EQ] = ACTIONS(185), [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3322), [anon_sym_AMP] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(169), [anon_sym_GT_EQ] = ACTIONS(185), @@ -42990,1497 +43062,1497 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(185), [anon_sym_DASH_DASH] = ACTIONS(185), }, - [775] = { - [sym_enumerator_list] = STATE(1679), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3315), - [sym_identifier] = ACTIONS(3317), - }, - [776] = { - [sym_virtual_specifier] = STATE(1681), - [sym_template_type] = STATE(1682), - [sym_scoped_namespace_identifier] = STATE(779), - [sym_field_declaration_list] = STATE(1683), - [sym_scoped_type_identifier] = STATE(1684), - [sym_base_class_clause] = STATE(1685), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(3319), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(298), - }, - [777] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(545), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), - }, - [778] = { - [sym_template_argument_list] = STATE(1687), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(545), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), - }, [779] = { - [anon_sym_COLON_COLON] = ACTIONS(3321), + [sym_enumerator_list] = STATE(1677), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3327), }, [780] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1690), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(3326), - [anon_sym_long] = ACTIONS(3326), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(3330), - [anon_sym_unsigned] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [sym_scoped_type_identifier] = STATE(1679), + [sym_virtual_specifier] = STATE(1680), + [sym_template_type] = STATE(1681), + [sym_scoped_namespace_identifier] = STATE(786), + [sym_field_declaration_list] = STATE(1682), + [sym_base_class_clause] = STATE(1683), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(3329), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(300), }, [781] = { - [sym_initializer_list] = STATE(1694), - [sym_new_declarator] = STATE(1693), - [sym_argument_list] = STATE(1694), - [anon_sym_LPAREN2] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_GT_GT] = ACTIONS(1283), - [anon_sym_RBRACK] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [aux_sym_sized_type_specifier_repeat1] = STATE(1686), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACK] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(3331), + [anon_sym_long] = ACTIONS(3331), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3333), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(3335), + [anon_sym_unsigned] = ACTIONS(3331), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, [782] = { - [sym_union_specifier] = STATE(1695), - [sym_macro_type_specifier] = STATE(1695), - [sym_class_specifier] = STATE(1695), - [sym_template_type] = STATE(777), - [sym_sized_type_specifier] = STATE(1695), - [sym_scoped_namespace_identifier] = STATE(779), - [sym__type_specifier] = STATE(1695), - [aux_sym_sized_type_specifier_repeat1] = STATE(780), - [sym_struct_specifier] = STATE(1695), - [sym_enum_specifier] = STATE(1695), - [sym_scoped_type_identifier] = STATE(778), - [sym_dependent_type] = STATE(1695), - [anon_sym_unsigned] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1404), - [sym_auto] = ACTIONS(3336), - [anon_sym_signed] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_typename] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(3336), + [sym_new_declarator] = STATE(1689), + [sym_argument_list] = STATE(1690), + [sym_initializer_list] = STATE(1690), + [anon_sym_LPAREN2] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_GT_GT] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, [783] = { - [anon_sym_SQUOTE] = ACTIONS(3338), - [sym_comment] = ACTIONS(3), + [sym_union_specifier] = STATE(1691), + [sym_macro_type_specifier] = STATE(1691), + [sym_class_specifier] = STATE(1691), + [aux_sym_sized_type_specifier_repeat1] = STATE(781), + [sym_sized_type_specifier] = STATE(1691), + [sym__type_specifier] = STATE(1691), + [sym_scoped_type_identifier] = STATE(784), + [sym_enum_specifier] = STATE(1691), + [sym_template_type] = STATE(785), + [sym_scoped_namespace_identifier] = STATE(786), + [sym_dependent_type] = STATE(1691), + [sym_struct_specifier] = STATE(1691), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1418), + [sym_auto] = ACTIONS(3341), + [anon_sym_signed] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_typename] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(3341), }, [784] = { - [sym_template_type] = STATE(239), + [sym_template_argument_list] = STATE(1692), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACK] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(530), + }, + [785] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(530), + }, + [786] = { + [anon_sym_COLON_COLON] = ACTIONS(3346), + [sym_comment] = ACTIONS(3), + }, + [787] = { + [anon_sym_SQUOTE] = ACTIONS(3348), + [sym_comment] = ACTIONS(3), + }, + [788] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(3340), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(3350), }, - [785] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(800), + [789] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(804), }, - [786] = { - [sym_destructor_name] = STATE(1698), - [sym_identifier] = ACTIONS(3342), - [sym_operator_name] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(1347), + [790] = { + [sym_template_function] = STATE(1697), + [sym__expression] = STATE(1697), + [sym_logical_expression] = STATE(1697), + [sym_bitwise_expression] = STATE(1697), + [sym_cast_expression] = STATE(1697), + [sym_delete_expression] = STATE(1697), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1697), + [sym_lambda_expression] = STATE(1697), + [sym_char_literal] = STATE(1697), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1697), + [sym_equality_expression] = STATE(1697), + [sym_relational_expression] = STATE(1697), + [sym_sizeof_expression] = STATE(1697), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1698), + [sym_parenthesized_expression] = STATE(1697), + [sym_string_literal] = STATE(154), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1697), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1697), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1697), + [sym_math_expression] = STATE(1697), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1697), + [sym_raw_string_literal] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_null] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3352), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(272), + [sym_false] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_sizeof] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3356), + [sym_identifier] = ACTIONS(690), + [anon_sym_new] = ACTIONS(284), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_delete] = ACTIONS(288), + [anon_sym_SQUOTE] = ACTIONS(41), }, - [787] = { - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_PERCENT] = ACTIONS(1709), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_DASH_GT] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1709), - [anon_sym_RBRACK] = ACTIONS(1709), + [791] = { + [sym_template_function] = STATE(1699), + [sym__expression] = STATE(1699), + [sym_logical_expression] = STATE(1699), + [sym_bitwise_expression] = STATE(1699), + [sym_cast_expression] = STATE(1699), + [sym_delete_expression] = STATE(1699), + [sym_field_expression] = STATE(241), + [sym_compound_literal_expression] = STATE(1699), + [sym_lambda_expression] = STATE(1699), + [sym_char_literal] = STATE(1699), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1699), + [sym_equality_expression] = STATE(1699), + [sym_relational_expression] = STATE(1699), + [sym_sizeof_expression] = STATE(1699), + [sym_subscript_expression] = STATE(241), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1699), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(1699), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1699), + [sym_pointer_expression] = STATE(241), + [sym_shift_expression] = STATE(1699), + [sym_math_expression] = STATE(1699), + [sym_call_expression] = STATE(241), + [sym_new_expression] = STATE(1699), + [sym_raw_string_literal] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3360), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [788] = { - [sym_template_type] = STATE(71), + [792] = { + [sym_template_function] = STATE(1700), + [sym__expression] = STATE(1700), + [sym_logical_expression] = STATE(1700), + [sym_bitwise_expression] = STATE(1700), + [sym_cast_expression] = STATE(1700), + [sym_delete_expression] = STATE(1700), + [sym_field_expression] = STATE(241), + [sym_compound_literal_expression] = STATE(1700), + [sym_lambda_expression] = STATE(1700), + [sym_char_literal] = STATE(1700), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1700), + [sym_equality_expression] = STATE(1700), + [sym_relational_expression] = STATE(1700), + [sym_sizeof_expression] = STATE(1700), + [sym_subscript_expression] = STATE(241), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1700), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(1700), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1700), + [sym_pointer_expression] = STATE(241), + [sym_shift_expression] = STATE(1700), + [sym_math_expression] = STATE(1700), + [sym_call_expression] = STATE(241), + [sym_new_expression] = STATE(1700), + [sym_raw_string_literal] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), + }, + [793] = { + [sym_template_function] = STATE(1701), [sym__expression] = STATE(1701), [sym_logical_expression] = STATE(1701), [sym_bitwise_expression] = STATE(1701), [sym_cast_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(1701), + [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(1701), + [sym_lambda_expression] = STATE(1701), [sym_char_literal] = STATE(1701), - [sym_template_function] = STATE(1701), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(1701), [sym_equality_expression] = STATE(1701), [sym_relational_expression] = STATE(1701), - [sym_delete_expression] = STATE(1701), [sym_sizeof_expression] = STATE(1701), + [sym_subscript_expression] = STATE(241), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(1701), - [sym_initializer_list] = STATE(1702), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), [sym_concatenated_string] = STATE(1701), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(1701), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(1701), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(1701), [sym_math_expression] = STATE(1701), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [sym_call_expression] = STATE(241), + [sym_new_expression] = STATE(1701), + [sym_raw_string_literal] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), + }, + [794] = { + [anon_sym_LPAREN2] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3350), - [sym_identifier] = ACTIONS(686), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_delete] = ACTIONS(288), - [anon_sym_SQUOTE] = ACTIONS(41), }, - [789] = { - [sym_template_type] = STATE(239), + [795] = { + [sym_template_function] = STATE(1702), + [sym__expression] = STATE(1702), + [sym_logical_expression] = STATE(1702), + [sym_bitwise_expression] = STATE(1702), + [sym_cast_expression] = STATE(1702), + [sym_delete_expression] = STATE(1702), + [sym_field_expression] = STATE(241), + [sym_compound_literal_expression] = STATE(1702), + [sym_lambda_expression] = STATE(1702), + [sym_char_literal] = STATE(1702), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1702), + [sym_equality_expression] = STATE(1702), + [sym_relational_expression] = STATE(1702), + [sym_sizeof_expression] = STATE(1702), + [sym_subscript_expression] = STATE(241), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1702), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(1702), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1702), + [sym_pointer_expression] = STATE(241), + [sym_shift_expression] = STATE(1702), + [sym_math_expression] = STATE(1702), + [sym_call_expression] = STATE(241), + [sym_new_expression] = STATE(1702), + [sym_raw_string_literal] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3376), + [sym_null] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3374), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), + }, + [796] = { + [sym_template_function] = STATE(1703), [sym__expression] = STATE(1703), [sym_logical_expression] = STATE(1703), [sym_bitwise_expression] = STATE(1703), [sym_cast_expression] = STATE(1703), - [sym_new_expression] = STATE(1703), + [sym_delete_expression] = STATE(1703), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(1703), + [sym_lambda_expression] = STATE(1703), [sym_char_literal] = STATE(1703), - [sym_template_function] = STATE(1703), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(1703), [sym_equality_expression] = STATE(1703), [sym_relational_expression] = STATE(1703), - [sym_delete_expression] = STATE(1703), [sym_sizeof_expression] = STATE(1703), + [sym_subscript_expression] = STATE(241), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(1703), - [sym_lambda_expression] = STATE(1703), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), [sym_concatenated_string] = STATE(1703), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(1703), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(1703), [sym_math_expression] = STATE(1703), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3352), - [anon_sym_COLON_COLON] = ACTIONS(400), + [sym_new_expression] = STATE(1703), + [sym_raw_string_literal] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3380), + [sym_null] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3378), + [anon_sym_COLON_COLON] = ACTIONS(402), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [790] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1704), - [sym_logical_expression] = STATE(1704), - [sym_bitwise_expression] = STATE(1704), - [sym_cast_expression] = STATE(1704), - [sym_new_expression] = STATE(1704), + [797] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_destructor_name] = STATE(1705), + [sym_scoped_field_identifier] = STATE(1706), + [sym_template_type] = STATE(988), + [sym_template_method] = STATE(1705), + [sym_scoped_namespace_identifier] = STATE(988), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3225), + [sym_comment] = ACTIONS(3), + }, + [798] = { + [sym_template_function] = STATE(1707), + [sym__expression] = STATE(1707), + [sym_logical_expression] = STATE(1707), + [sym_bitwise_expression] = STATE(1707), + [sym_cast_expression] = STATE(1707), + [sym_delete_expression] = STATE(1707), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(1704), - [sym_char_literal] = STATE(1704), - [sym_template_function] = STATE(1704), - [sym_conditional_expression] = STATE(1704), - [sym_equality_expression] = STATE(1704), - [sym_relational_expression] = STATE(1704), - [sym_delete_expression] = STATE(1704), - [sym_sizeof_expression] = STATE(1704), - [sym_parenthesized_expression] = STATE(1704), - [sym_lambda_expression] = STATE(1704), - [sym_concatenated_string] = STATE(1704), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(1707), + [sym_lambda_expression] = STATE(1707), + [sym_char_literal] = STATE(1707), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1707), + [sym_equality_expression] = STATE(1707), + [sym_relational_expression] = STATE(1707), + [sym_sizeof_expression] = STATE(1707), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(1704), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1707), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(1707), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1707), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(1704), - [sym_math_expression] = STATE(1704), + [sym_shift_expression] = STATE(1707), + [sym_math_expression] = STATE(1707), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_new_expression] = STATE(1707), + [sym_raw_string_literal] = ACTIONS(3384), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3386), + [sym_null] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [791] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1705), - [sym_logical_expression] = STATE(1705), - [sym_bitwise_expression] = STATE(1705), - [sym_cast_expression] = STATE(1705), - [sym_new_expression] = STATE(1705), + [799] = { + [sym_template_function] = STATE(1708), + [sym__expression] = STATE(1708), + [sym_logical_expression] = STATE(1708), + [sym_bitwise_expression] = STATE(1708), + [sym_cast_expression] = STATE(1708), + [sym_delete_expression] = STATE(1708), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(1705), - [sym_char_literal] = STATE(1705), - [sym_template_function] = STATE(1705), - [sym_conditional_expression] = STATE(1705), - [sym_equality_expression] = STATE(1705), - [sym_relational_expression] = STATE(1705), - [sym_delete_expression] = STATE(1705), - [sym_sizeof_expression] = STATE(1705), - [sym_parenthesized_expression] = STATE(1705), - [sym_lambda_expression] = STATE(1705), - [sym_concatenated_string] = STATE(1705), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(1708), + [sym_lambda_expression] = STATE(1708), + [sym_char_literal] = STATE(1708), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1708), + [sym_equality_expression] = STATE(1708), + [sym_relational_expression] = STATE(1708), + [sym_sizeof_expression] = STATE(1708), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(1705), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1708), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(1708), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1708), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(1705), - [sym_math_expression] = STATE(1705), + [sym_shift_expression] = STATE(1708), + [sym_math_expression] = STATE(1708), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3362), - [sym_null] = ACTIONS(3362), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), - }, - [792] = { - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3364), - [sym_comment] = ACTIONS(3), + [sym_new_expression] = STATE(1708), + [sym_raw_string_literal] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3390), + [sym_null] = ACTIONS(3390), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [793] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1706), - [sym_logical_expression] = STATE(1706), - [sym_bitwise_expression] = STATE(1706), - [sym_cast_expression] = STATE(1706), - [sym_new_expression] = STATE(1706), + [800] = { + [sym_template_function] = STATE(1709), + [sym__expression] = STATE(1709), + [sym_logical_expression] = STATE(1709), + [sym_bitwise_expression] = STATE(1709), + [sym_cast_expression] = STATE(1709), + [sym_delete_expression] = STATE(1709), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(1706), - [sym_char_literal] = STATE(1706), - [sym_template_function] = STATE(1706), - [sym_conditional_expression] = STATE(1706), - [sym_equality_expression] = STATE(1706), - [sym_relational_expression] = STATE(1706), - [sym_delete_expression] = STATE(1706), - [sym_sizeof_expression] = STATE(1706), - [sym_parenthesized_expression] = STATE(1706), - [sym_lambda_expression] = STATE(1706), - [sym_concatenated_string] = STATE(1706), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(1709), + [sym_lambda_expression] = STATE(1709), + [sym_char_literal] = STATE(1709), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1709), + [sym_equality_expression] = STATE(1709), + [sym_relational_expression] = STATE(1709), + [sym_sizeof_expression] = STATE(1709), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(1706), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1709), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(1709), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1709), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(1706), - [sym_math_expression] = STATE(1706), + [sym_shift_expression] = STATE(1709), + [sym_math_expression] = STATE(1709), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3370), - [sym_null] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3370), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_new_expression] = STATE(1709), + [sym_raw_string_literal] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3394), + [sym_null] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [794] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1707), - [sym_logical_expression] = STATE(1707), - [sym_bitwise_expression] = STATE(1707), - [sym_cast_expression] = STATE(1707), - [sym_new_expression] = STATE(1707), + [801] = { + [sym_template_function] = STATE(1710), + [sym__expression] = STATE(1710), + [sym_logical_expression] = STATE(1710), + [sym_bitwise_expression] = STATE(1710), + [sym_cast_expression] = STATE(1710), + [sym_delete_expression] = STATE(1710), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(1707), - [sym_char_literal] = STATE(1707), - [sym_template_function] = STATE(1707), - [sym_conditional_expression] = STATE(1707), - [sym_equality_expression] = STATE(1707), - [sym_relational_expression] = STATE(1707), - [sym_delete_expression] = STATE(1707), - [sym_sizeof_expression] = STATE(1707), - [sym_parenthesized_expression] = STATE(1707), - [sym_lambda_expression] = STATE(1707), - [sym_concatenated_string] = STATE(1707), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(1710), + [sym_lambda_expression] = STATE(1710), + [sym_char_literal] = STATE(1710), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1710), + [sym_equality_expression] = STATE(1710), + [sym_relational_expression] = STATE(1710), + [sym_sizeof_expression] = STATE(1710), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(1707), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1710), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(1710), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1710), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(1707), - [sym_math_expression] = STATE(1707), + [sym_shift_expression] = STATE(1710), + [sym_math_expression] = STATE(1710), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3374), - [sym_null] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3372), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3374), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), - }, - [795] = { - [sym_scoped_field_identifier] = STATE(1709), - [sym_template_type] = STATE(949), - [sym_template_method] = STATE(1710), - [sym_scoped_namespace_identifier] = STATE(949), - [sym_scoped_type_identifier] = STATE(174), - [sym_destructor_name] = STATE(1710), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), + [sym_new_expression] = STATE(1710), + [sym_raw_string_literal] = ACTIONS(3396), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3398), + [sym_null] = ACTIONS(3398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3396), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [796] = { - [sym_template_type] = STATE(239), + [802] = { + [sym_template_function] = STATE(1711), [sym__expression] = STATE(1711), [sym_logical_expression] = STATE(1711), [sym_bitwise_expression] = STATE(1711), [sym_cast_expression] = STATE(1711), - [sym_new_expression] = STATE(1711), - [sym_field_expression] = STATE(241), + [sym_delete_expression] = STATE(1711), + [sym_field_expression] = STATE(950), [sym_compound_literal_expression] = STATE(1711), + [sym_lambda_expression] = STATE(1711), [sym_char_literal] = STATE(1711), - [sym_template_function] = STATE(1711), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(1711), [sym_equality_expression] = STATE(1711), [sym_relational_expression] = STATE(1711), - [sym_delete_expression] = STATE(1711), [sym_sizeof_expression] = STATE(1711), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(1711), - [sym_lambda_expression] = STATE(1711), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), [sym_concatenated_string] = STATE(1711), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(1711), - [sym_pointer_expression] = STATE(241), + [sym_pointer_expression] = STATE(950), [sym_shift_expression] = STATE(1711), [sym_math_expression] = STATE(1711), - [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3380), - [sym_null] = ACTIONS(3380), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3378), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(1711), + [sym_raw_string_literal] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(3402), + [sym_null] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3400), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [797] = { - [sym_template_type] = STATE(239), + [803] = { + [sym_template_function] = STATE(1712), [sym__expression] = STATE(1712), [sym_logical_expression] = STATE(1712), [sym_bitwise_expression] = STATE(1712), [sym_cast_expression] = STATE(1712), - [sym_new_expression] = STATE(1712), + [sym_delete_expression] = STATE(1712), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(1712), + [sym_lambda_expression] = STATE(1712), [sym_char_literal] = STATE(1712), - [sym_template_function] = STATE(1712), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(1712), [sym_equality_expression] = STATE(1712), [sym_relational_expression] = STATE(1712), - [sym_delete_expression] = STATE(1712), [sym_sizeof_expression] = STATE(1712), + [sym_subscript_expression] = STATE(241), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(1712), - [sym_lambda_expression] = STATE(1712), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), [sym_concatenated_string] = STATE(1712), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(1712), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(1712), [sym_math_expression] = STATE(1712), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3384), - [sym_null] = ACTIONS(3384), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_new_expression] = STATE(1712), + [sym_raw_string_literal] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3406), + [sym_null] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [798] = { - [sym_template_type] = STATE(239), + [804] = { + [sym_template_function] = STATE(1713), [sym__expression] = STATE(1713), [sym_logical_expression] = STATE(1713), [sym_bitwise_expression] = STATE(1713), [sym_cast_expression] = STATE(1713), - [sym_new_expression] = STATE(1713), - [sym_field_expression] = STATE(241), + [sym_delete_expression] = STATE(1713), + [sym_field_expression] = STATE(1006), [sym_compound_literal_expression] = STATE(1713), + [sym_lambda_expression] = STATE(1713), [sym_char_literal] = STATE(1713), - [sym_template_function] = STATE(1713), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1713), [sym_equality_expression] = STATE(1713), [sym_relational_expression] = STATE(1713), - [sym_delete_expression] = STATE(1713), [sym_sizeof_expression] = STATE(1713), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1713), - [sym_lambda_expression] = STATE(1713), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), [sym_concatenated_string] = STATE(1713), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1713), - [sym_pointer_expression] = STATE(241), + [sym_pointer_expression] = STATE(1006), [sym_shift_expression] = STATE(1713), [sym_math_expression] = STATE(1713), - [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3388), - [sym_null] = ACTIONS(3388), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3388), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1713), + [sym_raw_string_literal] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(3410), + [sym_null] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [799] = { - [sym_template_type] = STATE(239), + [805] = { + [sym_template_function] = STATE(1714), [sym__expression] = STATE(1714), [sym_logical_expression] = STATE(1714), [sym_bitwise_expression] = STATE(1714), [sym_cast_expression] = STATE(1714), - [sym_new_expression] = STATE(1714), + [sym_delete_expression] = STATE(1714), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(1714), + [sym_lambda_expression] = STATE(1714), [sym_char_literal] = STATE(1714), - [sym_template_function] = STATE(1714), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(1714), [sym_equality_expression] = STATE(1714), [sym_relational_expression] = STATE(1714), - [sym_delete_expression] = STATE(1714), [sym_sizeof_expression] = STATE(1714), + [sym_subscript_expression] = STATE(241), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(1714), - [sym_lambda_expression] = STATE(1714), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), [sym_concatenated_string] = STATE(1714), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(1714), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(1714), [sym_math_expression] = STATE(1714), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3392), - [sym_null] = ACTIONS(3392), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), - }, - [800] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1715), - [sym_logical_expression] = STATE(1715), - [sym_bitwise_expression] = STATE(1715), - [sym_cast_expression] = STATE(1715), - [sym_new_expression] = STATE(1715), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(1715), - [sym_char_literal] = STATE(1715), - [sym_template_function] = STATE(1715), - [sym_conditional_expression] = STATE(1715), - [sym_equality_expression] = STATE(1715), - [sym_relational_expression] = STATE(1715), - [sym_delete_expression] = STATE(1715), - [sym_sizeof_expression] = STATE(1715), - [sym_parenthesized_expression] = STATE(1715), - [sym_lambda_expression] = STATE(1715), - [sym_concatenated_string] = STATE(1715), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(1715), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(1715), - [sym_math_expression] = STATE(1715), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(3396), - [sym_null] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3394), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [801] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1716), - [sym_logical_expression] = STATE(1716), - [sym_bitwise_expression] = STATE(1716), - [sym_cast_expression] = STATE(1716), - [sym_new_expression] = STATE(1716), - [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(1716), - [sym_char_literal] = STATE(1716), - [sym_template_function] = STATE(1716), - [sym_conditional_expression] = STATE(1716), - [sym_equality_expression] = STATE(1716), - [sym_relational_expression] = STATE(1716), - [sym_delete_expression] = STATE(1716), - [sym_sizeof_expression] = STATE(1716), - [sym_parenthesized_expression] = STATE(1716), - [sym_lambda_expression] = STATE(1716), - [sym_concatenated_string] = STATE(1716), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(1716), - [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(1716), - [sym_math_expression] = STATE(1716), - [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3400), - [sym_null] = ACTIONS(3400), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), - }, - [802] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1717), - [sym_logical_expression] = STATE(1717), - [sym_bitwise_expression] = STATE(1717), - [sym_cast_expression] = STATE(1717), - [sym_new_expression] = STATE(1717), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1717), - [sym_char_literal] = STATE(1717), - [sym_template_function] = STATE(1717), - [sym_conditional_expression] = STATE(1717), - [sym_equality_expression] = STATE(1717), - [sym_relational_expression] = STATE(1717), - [sym_delete_expression] = STATE(1717), - [sym_sizeof_expression] = STATE(1717), - [sym_parenthesized_expression] = STATE(1717), - [sym_lambda_expression] = STATE(1717), - [sym_concatenated_string] = STATE(1717), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1717), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1717), - [sym_math_expression] = STATE(1717), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(3404), - [sym_null] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, - [803] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1718), - [sym_logical_expression] = STATE(1718), - [sym_bitwise_expression] = STATE(1718), - [sym_cast_expression] = STATE(1718), - [sym_new_expression] = STATE(1718), - [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(1718), - [sym_char_literal] = STATE(1718), - [sym_template_function] = STATE(1718), - [sym_conditional_expression] = STATE(1718), - [sym_equality_expression] = STATE(1718), - [sym_relational_expression] = STATE(1718), - [sym_delete_expression] = STATE(1718), - [sym_sizeof_expression] = STATE(1718), - [sym_parenthesized_expression] = STATE(1718), - [sym_lambda_expression] = STATE(1718), - [sym_concatenated_string] = STATE(1718), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(1718), - [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(1718), - [sym_math_expression] = STATE(1718), - [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(3408), - [sym_null] = ACTIONS(3408), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), - }, - [804] = { - [anon_sym_LPAREN2] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(654), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_RBRACK] = ACTIONS(654), - }, - [805] = { - [aux_sym_for_statement_repeat1] = STATE(1720), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_RBRACK] = ACTIONS(3410), + [sym_new_expression] = STATE(1714), + [sym_raw_string_literal] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3412), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, [806] = { - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_STAR_EQ] = ACTIONS(1817), - [anon_sym_LT_LT_EQ] = ACTIONS(1817), - [anon_sym_PERCENT_EQ] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_CARET_EQ] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1819), - [anon_sym_SLASH_EQ] = ACTIONS(1817), - [anon_sym_PLUS_EQ] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1819), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_PIPE_EQ] = ACTIONS(1817), - [anon_sym_GT_GT_EQ] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1817), - [anon_sym_DASH_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_AMP_EQ] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_RBRACK] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(656), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_RBRACK] = ACTIONS(656), }, [807] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_PERCENT] = ACTIONS(785), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(785), - [anon_sym_RBRACK] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_STAR_EQ] = ACTIONS(1887), + [anon_sym_LT_LT_EQ] = ACTIONS(1887), + [anon_sym_PERCENT_EQ] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_CARET_EQ] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_SLASH_EQ] = ACTIONS(1887), + [anon_sym_PLUS_EQ] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_PIPE_EQ] = ACTIONS(1887), + [anon_sym_GT_GT_EQ] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1889), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_DASH_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_AMP_EQ] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_DASH_GT] = ACTIONS(1887), + [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(1887), }, [808] = { - [sym_string_literal] = STATE(1721), - [aux_sym_concatenated_string_repeat1] = STATE(1721), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_RBRACK] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_for_statement_repeat1] = STATE(1716), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_RBRACK] = ACTIONS(3416), }, [809] = { - [sym_compound_statement] = STATE(1723), - [anon_sym_LPAREN2] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_PERCENT] = ACTIONS(793), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_RBRACK] = ACTIONS(793), }, [810] = { - [sym_field_declaration_list] = STATE(1724), - [sym_base_class_clause] = STATE(1725), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_LPAREN2] = ACTIONS(1679), + [anon_sym_CARET] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_PERCENT] = ACTIONS(1679), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_QMARK] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_DASH_GT] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_GT_GT] = ACTIONS(1679), + [anon_sym_RBRACK] = ACTIONS(1679), }, [811] = { - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3414), - [anon_sym_EQ] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3414), - [anon_sym_final] = ACTIONS(3416), - [anon_sym_EQ_EQ] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_volatile] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3414), - [anon_sym_COLON] = ACTIONS(3416), - [anon_sym_explicit] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3416), - [anon_sym_RBRACE] = ACTIONS(3414), - [anon_sym_override] = ACTIONS(3416), - [sym_operator_name] = ACTIONS(3414), - [sym_noexcept] = ACTIONS(3416), - [anon_sym_CARET] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3416), - [anon_sym_COMMA] = ACTIONS(3414), - [anon_sym_register] = ACTIONS(3416), - [anon_sym__Atomic] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_extern] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_DOT] = ACTIONS(3416), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_constexpr] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3414), - [anon_sym_QMARK] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_BANG_EQ] = ACTIONS(3414), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_inline] = ACTIONS(3416), - [anon_sym_RPAREN] = ACTIONS(3414), - [anon_sym_restrict] = ACTIONS(3416), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_DASH_GT] = ACTIONS(3414), + [sym_compound_statement] = STATE(1718), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(3418), + [sym_comment] = ACTIONS(3), }, [812] = { - [sym_field_declaration_list] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), + [sym_string_literal] = STATE(1719), + [aux_sym_concatenated_string_repeat1] = STATE(1719), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, [813] = { - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_mutable] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3418), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3418), - [anon_sym_final] = ACTIONS(3420), - [anon_sym_EQ_EQ] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3420), - [anon_sym_volatile] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_GT_EQ] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3418), - [anon_sym_COLON] = ACTIONS(3420), - [anon_sym_explicit] = ACTIONS(3420), + [sym_destructor_name] = STATE(1720), [sym_identifier] = ACTIONS(3420), - [anon_sym_RBRACE] = ACTIONS(3418), - [anon_sym_override] = ACTIONS(3420), - [sym_operator_name] = ACTIONS(3418), - [sym_noexcept] = ACTIONS(3420), - [anon_sym_CARET] = ACTIONS(3418), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_COMMA] = ACTIONS(3418), - [anon_sym_register] = ACTIONS(3420), - [anon_sym__Atomic] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_extern] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_LT_LT] = ACTIONS(3418), - [anon_sym_constexpr] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3418), - [anon_sym_QMARK] = ACTIONS(3418), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym_BANG_EQ] = ACTIONS(3418), - [anon_sym_LT_EQ] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym_RPAREN] = ACTIONS(3418), - [anon_sym_restrict] = ACTIONS(3420), - [anon_sym_GT_GT] = ACTIONS(3418), - [anon_sym_DASH_GT] = ACTIONS(3418), + [sym_operator_name] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(1355), + [sym_comment] = ACTIONS(3), }, [814] = { - [sym_field_declaration_list] = STATE(1726), - [anon_sym_LBRACE] = ACTIONS(302), + [sym_field_declaration_list] = STATE(1722), + [sym_base_class_clause] = STATE(1723), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), }, [815] = { - [sym_field_declaration_list] = STATE(1726), - [sym_base_class_clause] = STATE(1727), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_mutable] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3424), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_final] = ACTIONS(3426), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_static] = ACTIONS(3426), + [anon_sym_volatile] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3424), + [anon_sym_COLON] = ACTIONS(3426), + [anon_sym_explicit] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_override] = ACTIONS(3426), + [sym_operator_name] = ACTIONS(3424), + [sym_noexcept] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_register] = ACTIONS(3426), + [anon_sym__Atomic] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_extern] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3426), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_constexpr] = ACTIONS(3426), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_inline] = ACTIONS(3426), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_restrict] = ACTIONS(3426), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_DASH_GT] = ACTIONS(3424), }, [816] = { - [sym_template_type] = STATE(71), + [sym_field_declaration_list] = STATE(1722), + [anon_sym_LBRACE] = ACTIONS(304), + [sym_comment] = ACTIONS(3), + }, + [817] = { + [sym_field_declaration_list] = STATE(1724), + [sym_base_class_clause] = STATE(1725), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(304), + [sym_comment] = ACTIONS(3), + }, + [818] = { + [anon_sym_LPAREN2] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3428), + [anon_sym_EQ] = ACTIONS(3430), + [anon_sym_COLON_COLON] = ACTIONS(3428), + [anon_sym_final] = ACTIONS(3430), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_static] = ACTIONS(3430), + [anon_sym_volatile] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3428), + [anon_sym_COLON] = ACTIONS(3430), + [anon_sym_explicit] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3430), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_override] = ACTIONS(3430), + [sym_operator_name] = ACTIONS(3428), + [sym_noexcept] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3430), + [anon_sym__Atomic] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_extern] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_DOT] = ACTIONS(3430), + [anon_sym_LT_LT] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3430), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3428), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3430), + [anon_sym_GT_GT] = ACTIONS(3428), + [anon_sym_DASH_GT] = ACTIONS(3428), + }, + [819] = { + [sym_field_declaration_list] = STATE(1724), + [anon_sym_LBRACE] = ACTIONS(304), + [sym_comment] = ACTIONS(3), + }, + [820] = { + [sym_template_function] = STATE(72), [sym__expression] = STATE(72), [sym_logical_expression] = STATE(72), [sym_bitwise_expression] = STATE(72), [sym_cast_expression] = STATE(72), - [sym_new_expression] = STATE(72), - [sym_field_expression] = STATE(827), + [sym_delete_expression] = STATE(72), + [sym_field_expression] = STATE(831), [sym_compound_literal_expression] = STATE(72), + [sym_lambda_expression] = STATE(72), [sym_char_literal] = STATE(72), - [sym_template_function] = STATE(72), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(72), [sym_equality_expression] = STATE(72), [sym_relational_expression] = STATE(72), - [sym_delete_expression] = STATE(72), [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(72), - [sym_lambda_expression] = STATE(72), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), [sym_concatenated_string] = STATE(72), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(72), - [sym_pointer_expression] = STATE(827), + [sym_pointer_expression] = STATE(831), [sym_shift_expression] = STATE(72), [sym_math_expression] = STATE(72), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(72), [sym_raw_string_literal] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), [sym_true] = ACTIONS(113), [sym_null] = ACTIONS(113), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(109), - [anon_sym_COLON_COLON] = ACTIONS(1488), + [anon_sym_COLON_COLON] = ACTIONS(1502), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1504), [sym_false] = ACTIONS(113), - [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1506), [sym_nullptr] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [817] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(1728), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [821] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1726), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -44488,20 +44560,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -44518,266 +44590,266 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [818] = { - [sym_destructor_name] = STATE(166), + [822] = { + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(640), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(3422), + [sym_identifier] = ACTIONS(642), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(3432), }, - [819] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_new_expression] = STATE(77), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_template_function] = STATE(77), - [sym_conditional_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_delete_expression] = STATE(77), - [sym_sizeof_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_lambda_expression] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [823] = { + [sym_template_function] = STATE(78), + [sym__expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_delete_expression] = STATE(78), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(78), + [sym_lambda_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(78), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(78), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(78), [sym_raw_string_literal] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), [sym_true] = ACTIONS(133), [sym_null] = ACTIONS(133), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(131), - [anon_sym_COLON_COLON] = ACTIONS(1488), + [anon_sym_COLON_COLON] = ACTIONS(1502), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1504), [sym_false] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1506), [sym_nullptr] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [820] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(190), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_parenthesized_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), + [824] = { + [sym_template_function] = STATE(191), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_char_literal] = STATE(191), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(330), - [sym_null] = ACTIONS(330), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(330), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(191), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(191), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_call_expression] = STATE(191), + [sym_new_expression] = STATE(191), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(332), + [sym_null] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [821] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1740), - [sym_logical_expression] = STATE(1740), - [sym_bitwise_expression] = STATE(1740), - [sym_cast_expression] = STATE(1740), - [sym_new_expression] = STATE(1740), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(1740), - [sym_char_literal] = STATE(1740), - [sym_template_function] = STATE(1740), - [sym_conditional_expression] = STATE(1740), - [sym_equality_expression] = STATE(1740), - [sym_relational_expression] = STATE(1740), - [sym_delete_expression] = STATE(1740), - [sym_sizeof_expression] = STATE(1740), - [sym_parenthesized_expression] = STATE(1740), - [sym_lambda_expression] = STATE(1740), - [sym_concatenated_string] = STATE(1740), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(1740), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(1740), - [sym_math_expression] = STATE(1740), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3442), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(3444), - [sym_true] = ACTIONS(3446), - [sym_null] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3442), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(3446), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [825] = { + [sym_template_function] = STATE(1738), + [sym__expression] = STATE(1738), + [sym_logical_expression] = STATE(1738), + [sym_bitwise_expression] = STATE(1738), + [sym_cast_expression] = STATE(1738), + [sym_delete_expression] = STATE(1738), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(1738), + [sym_lambda_expression] = STATE(1738), + [sym_char_literal] = STATE(1738), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1738), + [sym_equality_expression] = STATE(1738), + [sym_relational_expression] = STATE(1738), + [sym_sizeof_expression] = STATE(1738), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1738), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(1738), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1738), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(1738), + [sym_math_expression] = STATE(1738), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(1738), + [sym_raw_string_literal] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(3454), + [sym_true] = ACTIONS(3456), + [sym_null] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(3456), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [822] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(303), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [826] = { + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [823] = { - [sym_template_argument_list] = STATE(377), + [827] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(3458), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(3450), - [anon_sym_LT_LT_EQ] = ACTIONS(3450), - [anon_sym_PERCENT_EQ] = ACTIONS(3450), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(3460), + [anon_sym_LT_LT_EQ] = ACTIONS(3460), + [anon_sym_PERCENT_EQ] = ACTIONS(3460), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(3450), + [anon_sym_CARET_EQ] = ACTIONS(3460), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(3450), - [anon_sym_PLUS_EQ] = ACTIONS(3450), + [anon_sym_SLASH_EQ] = ACTIONS(3460), + [anon_sym_PLUS_EQ] = ACTIONS(3460), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(3450), - [anon_sym_GT_GT_EQ] = ACTIONS(3450), + [anon_sym_PIPE_EQ] = ACTIONS(3460), + [anon_sym_GT_GT_EQ] = ACTIONS(3460), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), @@ -44785,10 +44857,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(3450), + [anon_sym_DASH_EQ] = ACTIONS(3460), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(3450), + [anon_sym_AMP_EQ] = ACTIONS(3460), [anon_sym_RPAREN] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), @@ -44796,143 +44868,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [824] = { - [sym_union_specifier] = STATE(1744), - [sym_macro_type_specifier] = STATE(1744), - [sym_class_specifier] = STATE(1744), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1744), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1744), - [aux_sym_sized_type_specifier_repeat1] = STATE(1743), - [sym_argument_list] = STATE(1745), - [sym_enum_specifier] = STATE(1744), - [sym_struct_specifier] = STATE(1744), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(1744), - [anon_sym_LPAREN2] = ACTIONS(358), + [828] = { + [sym_union_specifier] = STATE(1742), + [sym_macro_type_specifier] = STATE(1742), + [sym_class_specifier] = STATE(1742), + [aux_sym_sized_type_specifier_repeat1] = STATE(1741), + [sym_sized_type_specifier] = STATE(1742), + [sym__type_specifier] = STATE(1742), + [sym_argument_list] = STATE(1743), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(1742), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1742), + [sym_struct_specifier] = STATE(1742), + [anon_sym_LPAREN2] = ACTIONS(360), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(3452), - [anon_sym_signed] = ACTIONS(3454), - [anon_sym_long] = ACTIONS(3454), + [sym_auto] = ACTIONS(3462), + [anon_sym_signed] = ACTIONS(3464), + [anon_sym_long] = ACTIONS(3464), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(3452), - [anon_sym_unsigned] = ACTIONS(3454), + [sym_primitive_type] = ACTIONS(3462), + [anon_sym_unsigned] = ACTIONS(3464), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(3456), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(3454), + [anon_sym_typename] = ACTIONS(3466), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(3464), }, - [825] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1747), - [sym_logical_expression] = STATE(1747), - [sym_bitwise_expression] = STATE(1747), - [sym_cast_expression] = STATE(1747), - [sym_new_expression] = STATE(1747), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(1747), - [sym_char_literal] = STATE(1747), - [sym_template_function] = STATE(1747), - [sym_conditional_expression] = STATE(1747), - [sym_equality_expression] = STATE(1747), - [sym_relational_expression] = STATE(1747), - [sym_delete_expression] = STATE(1747), - [sym_sizeof_expression] = STATE(1747), - [sym_parenthesized_expression] = STATE(1747), - [sym_lambda_expression] = STATE(1747), - [sym_concatenated_string] = STATE(1747), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(1747), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(1747), - [sym_math_expression] = STATE(1747), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(3460), - [sym_null] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3458), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [829] = { + [sym_template_function] = STATE(1745), + [sym__expression] = STATE(1745), + [sym_logical_expression] = STATE(1745), + [sym_bitwise_expression] = STATE(1745), + [sym_cast_expression] = STATE(1745), + [sym_delete_expression] = STATE(1745), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(1745), + [sym_lambda_expression] = STATE(1745), + [sym_char_literal] = STATE(1745), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1745), + [sym_equality_expression] = STATE(1745), + [sym_relational_expression] = STATE(1745), + [sym_sizeof_expression] = STATE(1745), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1745), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(1745), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1745), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(1745), + [sym_math_expression] = STATE(1745), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(1745), + [sym_raw_string_literal] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3468), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [826] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [830] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [827] = { + [831] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(3448), - [anon_sym_STAR_EQ] = ACTIONS(3450), - [anon_sym_LT_LT_EQ] = ACTIONS(3450), - [anon_sym_PERCENT_EQ] = ACTIONS(3450), + [anon_sym_EQ] = ACTIONS(3458), + [anon_sym_STAR_EQ] = ACTIONS(3460), + [anon_sym_LT_LT_EQ] = ACTIONS(3460), + [anon_sym_PERCENT_EQ] = ACTIONS(3460), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(3450), + [anon_sym_CARET_EQ] = ACTIONS(3460), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(3450), - [anon_sym_PLUS_EQ] = ACTIONS(3450), + [anon_sym_SLASH_EQ] = ACTIONS(3460), + [anon_sym_PLUS_EQ] = ACTIONS(3460), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(3450), - [anon_sym_GT_GT_EQ] = ACTIONS(3450), + [anon_sym_PIPE_EQ] = ACTIONS(3460), + [anon_sym_GT_GT_EQ] = ACTIONS(3460), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), @@ -44940,10 +45012,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(3450), + [anon_sym_DASH_EQ] = ACTIONS(3460), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(3450), + [anon_sym_AMP_EQ] = ACTIONS(3460), [anon_sym_RPAREN] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), @@ -44951,9 +45023,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [828] = { - [sym_string_literal] = STATE(1760), - [aux_sym_concatenated_string_repeat1] = STATE(1760), + [832] = { + [sym_string_literal] = STATE(1758), + [aux_sym_concatenated_string_repeat1] = STATE(1758), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_GT] = ACTIONS(163), @@ -44983,598 +45055,598 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [829] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1761), - [sym_logical_expression] = STATE(1761), - [sym_bitwise_expression] = STATE(1761), - [sym_cast_expression] = STATE(1761), - [sym_new_expression] = STATE(1761), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(1761), - [sym_char_literal] = STATE(1761), - [sym_template_function] = STATE(1761), - [sym_conditional_expression] = STATE(1761), - [sym_equality_expression] = STATE(1761), - [sym_relational_expression] = STATE(1761), - [sym_delete_expression] = STATE(1761), - [sym_sizeof_expression] = STATE(1761), - [sym_parenthesized_expression] = STATE(1761), - [sym_lambda_expression] = STATE(1761), - [sym_concatenated_string] = STATE(1761), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(1761), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(1761), - [sym_math_expression] = STATE(1761), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(3494), - [sym_null] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3492), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(3494), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [833] = { + [sym_template_function] = STATE(1759), + [sym__expression] = STATE(1759), + [sym_logical_expression] = STATE(1759), + [sym_bitwise_expression] = STATE(1759), + [sym_cast_expression] = STATE(1759), + [sym_delete_expression] = STATE(1759), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(1759), + [sym_lambda_expression] = STATE(1759), + [sym_char_literal] = STATE(1759), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1759), + [sym_equality_expression] = STATE(1759), + [sym_relational_expression] = STATE(1759), + [sym_sizeof_expression] = STATE(1759), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1759), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(1759), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1759), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(1759), + [sym_math_expression] = STATE(1759), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(1759), + [sym_raw_string_literal] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(3504), + [sym_null] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3502), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(3504), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(3504), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [830] = { - [anon_sym_else] = ACTIONS(658), - [anon_sym_while] = ACTIONS(658), + [834] = { + [anon_sym_else] = ACTIONS(662), + [anon_sym_while] = ACTIONS(662), [sym_comment] = ACTIONS(3), }, - [831] = { - [sym_switch_body] = STATE(1763), - [anon_sym_LBRACE] = ACTIONS(3496), + [835] = { + [sym_switch_body] = STATE(1761), + [anon_sym_LBRACE] = ACTIONS(3506), [sym_comment] = ACTIONS(3), }, - [832] = { - [sym_do_statement] = STATE(1764), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [836] = { + [sym_do_statement] = STATE(1762), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(1764), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(1764), - [sym_if_statement] = STATE(1764), - [sym_switch_statement] = STATE(1764), - [sym_for_statement] = STATE(1764), - [sym_return_statement] = STATE(1764), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(1762), + [sym_try_statement] = STATE(1762), + [sym_if_statement] = STATE(1762), + [sym_switch_statement] = STATE(1762), + [sym_for_statement] = STATE(1762), + [sym_return_statement] = STATE(1762), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(1764), - [sym_break_statement] = STATE(1764), - [sym_continue_statement] = STATE(1764), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(1762), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(1764), - [sym_labeled_statement] = STATE(1764), - [sym_expression_statement] = STATE(1764), - [sym_while_statement] = STATE(1764), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(1762), + [sym_for_range_loop] = STATE(1762), + [sym_compound_statement] = STATE(1762), + [sym_labeled_statement] = STATE(1762), + [sym_expression_statement] = STATE(1762), + [sym_while_statement] = STATE(1762), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [833] = { + [837] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3508), }, - [834] = { - [sym_do_statement] = STATE(1766), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [838] = { + [sym_do_statement] = STATE(1764), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(1766), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(1766), - [sym_if_statement] = STATE(1766), - [sym_switch_statement] = STATE(1766), - [sym_for_statement] = STATE(1766), - [sym_return_statement] = STATE(1766), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(1764), + [sym_try_statement] = STATE(1764), + [sym_if_statement] = STATE(1764), + [sym_switch_statement] = STATE(1764), + [sym_for_statement] = STATE(1764), + [sym_return_statement] = STATE(1764), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(1766), - [sym_break_statement] = STATE(1766), - [sym_continue_statement] = STATE(1766), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(1764), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(1766), - [sym_labeled_statement] = STATE(1766), - [sym_expression_statement] = STATE(1766), - [sym_while_statement] = STATE(1766), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(1764), + [sym_for_range_loop] = STATE(1764), + [sym_compound_statement] = STATE(1764), + [sym_labeled_statement] = STATE(1764), + [sym_expression_statement] = STATE(1764), + [sym_while_statement] = STATE(1764), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [835] = { - [anon_sym_else] = ACTIONS(804), - [anon_sym_while] = ACTIONS(804), + [839] = { + [anon_sym_else] = ACTIONS(808), + [anon_sym_while] = ACTIONS(808), [sym_comment] = ACTIONS(3), }, - [836] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(1768), - [sym_logical_expression] = STATE(1768), - [sym_bitwise_expression] = STATE(1768), - [sym_cast_expression] = STATE(1768), - [sym_new_expression] = STATE(1768), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1768), - [sym_declaration] = STATE(1767), - [sym_char_literal] = STATE(1768), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(1768), - [sym_conditional_expression] = STATE(1768), - [sym_equality_expression] = STATE(1768), - [sym_relational_expression] = STATE(1768), - [sym_sizeof_expression] = STATE(1768), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(1768), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(1768), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(1768), - [sym_lambda_expression] = STATE(1768), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(1769), - [sym_assignment_expression] = STATE(1768), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1768), - [sym_math_expression] = STATE(1768), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [840] = { + [sym_template_function] = STATE(1766), + [sym__expression] = STATE(1766), + [sym_logical_expression] = STATE(1766), + [sym_bitwise_expression] = STATE(1766), + [sym_cast_expression] = STATE(1766), + [sym_delete_expression] = STATE(1766), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(1766), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(1766), + [sym_lambda_expression] = STATE(1766), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(1765), + [sym_for_range_declaration] = STATE(1767), + [sym_conditional_expression] = STATE(1766), + [sym_equality_expression] = STATE(1766), + [sym_relational_expression] = STATE(1766), + [sym_sizeof_expression] = STATE(1766), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(1766), + [sym_concatenated_string] = STATE(1766), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(3500), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(1766), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1766), + [sym_math_expression] = STATE(1766), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1766), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(3510), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(3502), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(3512), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(3502), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(3500), + [sym_number_literal] = ACTIONS(3510), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(3502), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(3512), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(3514), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [837] = { - [aux_sym_try_statement_repeat1] = STATE(1771), - [sym_catch_clause] = STATE(1771), - [anon_sym_catch] = ACTIONS(3506), - [sym_comment] = ACTIONS(3), - }, - [838] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1772), - [sym_logical_expression] = STATE(1772), - [sym_bitwise_expression] = STATE(1772), - [sym_cast_expression] = STATE(1772), - [sym_new_expression] = STATE(1772), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(1772), - [sym_char_literal] = STATE(1772), - [sym_template_function] = STATE(1772), - [sym_conditional_expression] = STATE(1772), - [sym_equality_expression] = STATE(1772), - [sym_relational_expression] = STATE(1772), - [sym_delete_expression] = STATE(1772), - [sym_sizeof_expression] = STATE(1772), - [sym_parenthesized_expression] = STATE(1772), - [sym_lambda_expression] = STATE(1772), - [sym_concatenated_string] = STATE(1772), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(1772), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(1772), - [sym_math_expression] = STATE(1772), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(3510), - [sym_null] = ACTIONS(3510), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(3510), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), - }, - [839] = { - [anon_sym_LPAREN2] = ACTIONS(3512), - [sym_comment] = ACTIONS(3), - }, - [840] = { - [anon_sym_while] = ACTIONS(3514), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [841] = { - [anon_sym_else] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), + [sym_catch_clause] = STATE(1769), + [aux_sym_try_statement_repeat1] = STATE(1769), + [anon_sym_catch] = ACTIONS(3516), [sym_comment] = ACTIONS(3), }, [842] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_template_function] = STATE(1770), + [sym__expression] = STATE(1770), + [sym_logical_expression] = STATE(1770), + [sym_bitwise_expression] = STATE(1770), + [sym_cast_expression] = STATE(1770), + [sym_delete_expression] = STATE(1770), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(1770), + [sym_lambda_expression] = STATE(1770), + [sym_char_literal] = STATE(1770), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1770), + [sym_equality_expression] = STATE(1770), + [sym_relational_expression] = STATE(1770), + [sym_sizeof_expression] = STATE(1770), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1770), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(1770), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1770), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(1770), + [sym_math_expression] = STATE(1770), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(1770), + [sym_raw_string_literal] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(3520), + [sym_null] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [843] = { + [anon_sym_LPAREN2] = ACTIONS(3522), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3516), }, [844] = { - [sym_parenthesized_expression] = STATE(1777), - [anon_sym_LPAREN2] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3524), [sym_comment] = ACTIONS(3), }, [845] = { - [anon_sym_else] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), + [anon_sym_else] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), [sym_comment] = ACTIONS(3), }, [846] = { - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_mutable] = ACTIONS(1137), - [anon_sym_register] = ACTIONS(1137), - [anon_sym__Atomic] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_constexpr] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_explicit] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [anon_sym_restrict] = ACTIONS(1137), - [sym_operator_name] = ACTIONS(1135), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [847] = { - [sym_virtual_specifier] = STATE(1072), - [sym_template_type] = STATE(1073), - [sym_scoped_namespace_identifier] = STATE(859), - [sym_field_declaration_list] = STATE(1074), - [sym_scoped_type_identifier] = STATE(1778), - [sym_base_class_clause] = STATE(1076), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(2178), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(298), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3526), }, [848] = { - [sym_identifier] = ACTIONS(3520), + [sym_parenthesized_expression] = STATE(1775), + [anon_sym_LPAREN2] = ACTIONS(3528), [sym_comment] = ACTIONS(3), }, [849] = { - [anon_sym_struct] = ACTIONS(3522), - [sym_auto] = ACTIONS(3522), - [anon_sym_signed] = ACTIONS(3522), - [anon_sym_mutable] = ACTIONS(3522), - [anon_sym_long] = ACTIONS(3522), - [anon_sym_register] = ACTIONS(3522), - [anon_sym__Atomic] = ACTIONS(3522), - [anon_sym_const] = ACTIONS(3522), - [anon_sym_extern] = ACTIONS(3522), - [anon_sym_COLON_COLON] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3522), - [anon_sym_class] = ACTIONS(3522), - [anon_sym_constexpr] = ACTIONS(3522), - [sym_primitive_type] = ACTIONS(3522), - [anon_sym_unsigned] = ACTIONS(3522), - [anon_sym_static] = ACTIONS(3522), - [anon_sym_volatile] = ACTIONS(3522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3524), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(3522), - [anon_sym_typename] = ACTIONS(3522), - [anon_sym_explicit] = ACTIONS(3522), - [anon_sym_short] = ACTIONS(3522), - [anon_sym_inline] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3522), - [anon_sym_restrict] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [850] = { - [sym_virtual_specifier] = STATE(1139), - [sym_template_type] = STATE(1140), - [sym_scoped_namespace_identifier] = STATE(859), - [sym_field_declaration_list] = STATE(1141), - [sym_scoped_type_identifier] = STATE(1782), - [sym_base_class_clause] = STATE(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3526), - [anon_sym_final] = ACTIONS(298), - [anon_sym_override] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_mutable] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_constexpr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_explicit] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [sym_operator_name] = ACTIONS(1141), }, [851] = { - [sym_virtual_specifier] = STATE(1112), - [sym_template_type] = STATE(1113), - [sym_scoped_namespace_identifier] = STATE(859), - [sym_field_declaration_list] = STATE(1114), - [sym_scoped_type_identifier] = STATE(1783), - [sym_base_class_clause] = STATE(1116), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(2244), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(298), + [sym_scoped_type_identifier] = STATE(1776), + [sym_virtual_specifier] = STATE(1069), + [sym_template_type] = STATE(1070), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_field_declaration_list] = STATE(1071), + [sym_base_class_clause] = STATE(1072), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(2180), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(300), }, [852] = { - [sym_union_specifier] = STATE(1117), - [sym_macro_type_specifier] = STATE(1117), - [sym_class_specifier] = STATE(1117), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1117), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1117), - [aux_sym_sized_type_specifier_repeat1] = STATE(860), - [sym_struct_specifier] = STATE(1117), - [sym_enum_specifier] = STATE(1117), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(1117), - [anon_sym_struct] = ACTIONS(1534), - [sym_auto] = ACTIONS(2246), - [anon_sym_signed] = ACTIONS(1538), - [anon_sym_long] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(3530), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_unsigned] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3526), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_typename] = ACTIONS(3532), - [sym_identifier] = ACTIONS(3534), - [anon_sym_short] = ACTIONS(1538), + [sym_identifier] = ACTIONS(3530), + [sym_comment] = ACTIONS(3), }, [853] = { - [sym_template_argument_list] = STATE(1788), + [anon_sym_struct] = ACTIONS(3532), + [sym_auto] = ACTIONS(3532), + [anon_sym_signed] = ACTIONS(3532), + [anon_sym_mutable] = ACTIONS(3532), + [anon_sym_long] = ACTIONS(3532), + [anon_sym_register] = ACTIONS(3532), + [anon_sym__Atomic] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_extern] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_constexpr] = ACTIONS(3532), + [sym_primitive_type] = ACTIONS(3532), + [anon_sym_unsigned] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_volatile] = ACTIONS(3532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(3532), + [anon_sym_typename] = ACTIONS(3532), + [anon_sym_explicit] = ACTIONS(3532), + [anon_sym_short] = ACTIONS(3532), + [anon_sym_inline] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3532), + [anon_sym_restrict] = ACTIONS(3532), + }, + [854] = { + [sym_scoped_type_identifier] = STATE(1780), + [sym_virtual_specifier] = STATE(1136), + [sym_template_type] = STATE(1137), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_field_declaration_list] = STATE(1138), + [sym_base_class_clause] = STATE(1139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3536), + [anon_sym_final] = ACTIONS(300), + [anon_sym_override] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + }, + [855] = { + [sym_scoped_type_identifier] = STATE(1781), + [sym_virtual_specifier] = STATE(1109), + [sym_template_type] = STATE(1110), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_field_declaration_list] = STATE(1111), + [sym_base_class_clause] = STATE(1112), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(2246), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(300), + }, + [856] = { + [sym_union_specifier] = STATE(1113), + [sym_macro_type_specifier] = STATE(1113), + [sym_class_specifier] = STATE(1113), + [aux_sym_sized_type_specifier_repeat1] = STATE(859), + [sym_sized_type_specifier] = STATE(1113), + [sym__type_specifier] = STATE(1113), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(1113), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1113), + [sym_struct_specifier] = STATE(1113), + [anon_sym_struct] = ACTIONS(1548), + [sym_auto] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(1552), + [anon_sym_long] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(3540), + [sym_primitive_type] = ACTIONS(2248), + [anon_sym_unsigned] = ACTIONS(1552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3536), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_typename] = ACTIONS(3542), + [sym_identifier] = ACTIONS(3544), + [anon_sym_short] = ACTIONS(1552), + }, + [857] = { + [sym_template_argument_list] = STATE(1786), [anon_sym_LPAREN2] = ACTIONS(185), [anon_sym_final] = ACTIONS(169), [anon_sym_mutable] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_COLON_COLON] = ACTIONS(3546), [anon_sym_GT2] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2335), [anon_sym_AMP] = ACTIONS(169), [anon_sym_static] = ACTIONS(169), [anon_sym_volatile] = ACTIONS(169), @@ -45599,716 +45671,674 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(169), [anon_sym_DASH_GT] = ACTIONS(185), }, - [854] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(1790), - [sym_class_specifier] = STATE(1790), - [sym__type_specifier] = STATE(1790), - [sym_sized_type_specifier] = STATE(1790), - [sym_template_type] = STATE(856), - [aux_sym__declaration_specifiers_repeat1] = STATE(1791), - [sym_storage_class_specifier] = STATE(1791), - [sym_type_qualifier] = STATE(1791), - [sym_dependent_type] = STATE(1790), - [sym_union_specifier] = STATE(1790), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(1790), - [sym_scoped_namespace_identifier] = STATE(859), - [aux_sym_sized_type_specifier_repeat1] = STATE(1792), - [sym_enum_specifier] = STATE(1790), - [sym__declaration_specifiers] = STATE(1793), - [sym_scoped_type_identifier] = STATE(862), - [anon_sym_struct] = ACTIONS(1534), - [sym_auto] = ACTIONS(3538), - [anon_sym_signed] = ACTIONS(3540), + [858] = { + [sym_storage_class_specifier] = STATE(1787), + [sym_type_qualifier] = STATE(1787), + [aux_sym__declaration_specifiers_repeat1] = STATE(1787), + [anon_sym_LPAREN2] = ACTIONS(565), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(3540), + [anon_sym_COMMA] = ACTIONS(565), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(565), + [anon_sym_GT2] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(565), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(3530), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(3538), - [anon_sym_unsigned] = ACTIONS(3540), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(567), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_typename] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(565), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(565), + [sym_operator_name] = ACTIONS(565), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(3540), [anon_sym_restrict] = ACTIONS(11), }, - [855] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(1794), - [sym_storage_class_specifier] = STATE(1794), - [sym_type_qualifier] = STATE(1794), - [anon_sym_LPAREN2] = ACTIONS(541), + [859] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1788), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(3548), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_GT2] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_static] = ACTIONS(558), + [anon_sym_volatile] = ACTIONS(558), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_short] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3550), + [sym_operator_name] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_register] = ACTIONS(558), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(3548), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_inline] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + }, + [860] = { + [aux_sym_template_parameter_list_repeat1] = STATE(1791), + [anon_sym_COMMA] = ACTIONS(3553), + [anon_sym_GT2] = ACTIONS(3555), + [sym_comment] = ACTIONS(3), + }, + [861] = { + [sym_template_argument_list] = STATE(1162), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_final] = ACTIONS(532), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym_GT2] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_override] = ACTIONS(532), + [anon_sym_explicit] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + [sym_noexcept] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(532), + [anon_sym_DASH_GT] = ACTIONS(530), + }, + [862] = { + [sym_macro_type_specifier] = STATE(1793), + [sym_class_specifier] = STATE(1793), + [sym__type_specifier] = STATE(1793), + [sym_sized_type_specifier] = STATE(1793), + [aux_sym_sized_type_specifier_repeat1] = STATE(1794), + [sym_scoped_type_identifier] = STATE(861), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(863), + [sym_storage_class_specifier] = STATE(1795), + [sym_type_qualifier] = STATE(1795), + [sym_dependent_type] = STATE(1793), + [sym_union_specifier] = STATE(1793), + [sym_struct_specifier] = STATE(1793), + [aux_sym__declaration_specifiers_repeat1] = STATE(1795), + [sym_enum_specifier] = STATE(1793), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(1796), + [sym_scoped_namespace_identifier] = STATE(866), + [anon_sym_struct] = ACTIONS(1548), + [sym_auto] = ACTIONS(3557), + [anon_sym_signed] = ACTIONS(3559), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(541), + [anon_sym_long] = ACTIONS(3559), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(541), - [anon_sym_GT2] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(541), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(3540), [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(543), + [sym_primitive_type] = ACTIONS(3557), + [anon_sym_unsigned] = ACTIONS(3559), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_typename] = ACTIONS(3561), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(541), - [sym_operator_name] = ACTIONS(541), + [sym_identifier] = ACTIONS(1564), [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(3559), [anon_sym_restrict] = ACTIONS(11), }, - [856] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_final] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(3544), - [anon_sym_GT2] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_override] = ACTIONS(547), - [anon_sym_explicit] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - [sym_noexcept] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [anon_sym_GT_GT] = ACTIONS(547), - [anon_sym_DASH_GT] = ACTIONS(545), - }, - [857] = { - [aux_sym_template_parameter_list_repeat1] = STATE(1798), - [anon_sym_COMMA] = ACTIONS(3546), - [anon_sym_GT2] = ACTIONS(3548), - [sym_comment] = ACTIONS(3), + [863] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_final] = ACTIONS(532), + [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_GT2] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_override] = ACTIONS(532), + [anon_sym_explicit] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + [sym_noexcept] = ACTIONS(532), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(530), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_DASH_GT] = ACTIONS(530), }, - [858] = { - [sym_macro_type_specifier] = STATE(1799), - [sym_class_specifier] = STATE(1799), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1799), - [sym__type_specifier] = STATE(1799), - [aux_sym__declaration_specifiers_repeat1] = STATE(873), - [sym_storage_class_specifier] = STATE(873), - [sym_type_qualifier] = STATE(873), - [sym_struct_specifier] = STATE(1799), - [sym_union_specifier] = STATE(1799), - [sym_dependent_type] = STATE(1799), - [sym_scoped_namespace_identifier] = STATE(859), - [aux_sym_sized_type_specifier_repeat1] = STATE(860), - [sym_enum_specifier] = STATE(1799), - [sym_scoped_type_identifier] = STATE(862), - [anon_sym_struct] = ACTIONS(1534), - [sym_auto] = ACTIONS(3550), - [anon_sym_signed] = ACTIONS(1538), + [864] = { + [sym_macro_type_specifier] = STATE(1798), + [sym_class_specifier] = STATE(1798), + [aux_sym_sized_type_specifier_repeat1] = STATE(859), + [sym_sized_type_specifier] = STATE(1798), + [sym__type_specifier] = STATE(1798), + [sym_scoped_type_identifier] = STATE(861), + [sym_template_type] = STATE(863), + [sym_storage_class_specifier] = STATE(879), + [sym_type_qualifier] = STATE(879), + [sym_struct_specifier] = STATE(1798), + [sym_union_specifier] = STATE(1798), + [sym_dependent_type] = STATE(1798), + [aux_sym__declaration_specifiers_repeat1] = STATE(879), + [sym_enum_specifier] = STATE(1798), + [sym_scoped_namespace_identifier] = STATE(866), + [anon_sym_struct] = ACTIONS(1548), + [sym_auto] = ACTIONS(3565), + [anon_sym_signed] = ACTIONS(1552), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1552), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(3540), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(3550), - [anon_sym_unsigned] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(3565), + [anon_sym_unsigned] = ACTIONS(1552), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_typename] = ACTIONS(3532), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_typename] = ACTIONS(3542), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1564), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1538), - [anon_sym_restrict] = ACTIONS(11), - }, - [859] = { - [anon_sym_COLON_COLON] = ACTIONS(3544), - [sym_comment] = ACTIONS(3), - }, - [860] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1800), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(3552), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(3552), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_GT2] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_short] = ACTIONS(3552), - [sym_identifier] = ACTIONS(3554), - [sym_operator_name] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_register] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2349), - [anon_sym_unsigned] = ACTIONS(3552), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - }, - [861] = { - [sym__abstract_declarator] = STATE(1810), - [sym_template_type] = STATE(1807), - [sym_abstract_array_declarator] = STATE(1810), - [sym_function_declarator] = STATE(1808), - [sym_destructor_name] = STATE(1808), - [sym__declarator] = STATE(1808), - [sym_abstract_pointer_declarator] = STATE(1810), - [sym_array_declarator] = STATE(1808), - [sym_parameter_list] = STATE(1174), - [sym_pointer_declarator] = STATE(1808), - [sym_scoped_namespace_identifier] = STATE(1807), - [sym_abstract_reference_declarator] = STATE(1810), - [sym_abstract_function_declarator] = STATE(1810), - [sym_template_function] = STATE(1808), - [sym_scoped_identifier] = STATE(1809), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(1808), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3559), - [anon_sym_COMMA] = ACTIONS(3561), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_TILDE] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(3565), - [anon_sym_GT2] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3567), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [sym_operator_name] = ACTIONS(3571), - [anon_sym_EQ] = ACTIONS(3573), - [sym_comment] = ACTIONS(3), - }, - [862] = { - [sym_template_argument_list] = STATE(1169), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_final] = ACTIONS(547), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(545), - [anon_sym_GT2] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_override] = ACTIONS(547), - [anon_sym_explicit] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - [sym_noexcept] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(547), - [anon_sym_DASH_GT] = ACTIONS(545), - }, - [863] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(2754), - }, - [864] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(1811), - [sym_pointer_declarator] = STATE(1811), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(694), - [sym_template_function] = STATE(1811), - [sym_destructor_name] = STATE(1811), - [sym__declarator] = STATE(1811), - [sym_array_declarator] = STATE(1811), - [sym_scoped_identifier] = STATE(286), - [sym_type_qualifier] = STATE(694), - [sym_function_declarator] = STATE(1811), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(466), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(476), - [sym_operator_name] = ACTIONS(3575), + [anon_sym_short] = ACTIONS(1552), [anon_sym_restrict] = ACTIONS(11), }, [865] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), + [sym_abstract_reference_declarator] = STATE(1809), + [sym_template_function] = STATE(1807), + [sym_abstract_array_declarator] = STATE(1809), + [sym__declarator] = STATE(1807), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1806), + [sym_reference_declarator] = STATE(1807), + [sym_array_declarator] = STATE(1807), + [sym_abstract_pointer_declarator] = STATE(1809), + [sym_template_type] = STATE(1808), + [sym_destructor_name] = STATE(1807), + [sym_parameter_list] = STATE(1174), + [sym_pointer_declarator] = STATE(1807), + [sym_structured_binding_declarator] = STATE(1807), + [sym_abstract_function_declarator] = STATE(1809), + [sym_scoped_namespace_identifier] = STATE(1808), + [sym__abstract_declarator] = STATE(1809), + [sym_function_declarator] = STATE(1807), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3569), + [anon_sym_COMMA] = ACTIONS(3571), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(3575), + [anon_sym_GT2] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [sym_operator_name] = ACTIONS(3583), + [anon_sym_EQ] = ACTIONS(3585), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(2756), }, [866] = { - [sym_destructor_name] = STATE(399), - [sym_identifier] = ACTIONS(3577), - [sym_operator_name] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_COLON_COLON] = ACTIONS(3563), [sym_comment] = ACTIONS(3), }, [867] = { - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_mutable] = ACTIONS(787), - [anon_sym_register] = ACTIONS(787), - [anon_sym__Atomic] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_extern] = ACTIONS(787), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_constexpr] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_static] = ACTIONS(787), - [anon_sym_volatile] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_explicit] = ACTIONS(787), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_inline] = ACTIONS(787), - [sym_identifier] = ACTIONS(787), - [anon_sym_restrict] = ACTIONS(787), - [sym_operator_name] = ACTIONS(789), + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(2756), }, [868] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(1813), - [sym_storage_class_specifier] = STATE(1813), - [sym_type_qualifier] = STATE(1813), - [anon_sym_LPAREN2] = ACTIONS(1675), + [aux_sym_type_definition_repeat1] = STATE(695), + [sym_template_function] = STATE(1810), + [sym_destructor_name] = STATE(1810), + [sym_pointer_declarator] = STATE(1810), + [sym_structured_binding_declarator] = STATE(1810), + [sym__declarator] = STATE(1810), + [sym_scoped_identifier] = STATE(282), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(1810), + [sym_array_declarator] = STATE(1810), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(695), + [sym_function_declarator] = STATE(1810), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(468), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(1675), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(480), + [sym_operator_name] = ACTIONS(3587), [anon_sym_restrict] = ACTIONS(11), }, [869] = { - [sym_destructor_name] = STATE(938), - [sym_identifier] = ACTIONS(3579), - [sym_operator_name] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(308), + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(2758), }, [870] = { - [anon_sym_DASH] = ACTIONS(3581), - [sym_raw_string_literal] = ACTIONS(3583), - [sym_true] = ACTIONS(3581), - [anon_sym_mutable] = ACTIONS(3581), - [sym_null] = ACTIONS(3581), - [anon_sym_break] = ACTIONS(3581), - [anon_sym_BANG] = ACTIONS(3583), - [anon_sym_sizeof] = ACTIONS(3581), - [anon_sym_volatile] = ACTIONS(3581), - [anon_sym_PLUS] = ACTIONS(3581), - [anon_sym_typedef] = ACTIONS(3581), - [anon_sym_switch] = ACTIONS(3581), - [anon_sym_explicit] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3581), - [anon_sym_delete] = ACTIONS(3581), - [anon_sym_continue] = ACTIONS(3581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), - [anon_sym__Atomic] = ACTIONS(3581), - [sym_number_literal] = ACTIONS(3583), - [anon_sym_extern] = ACTIONS(3581), - [anon_sym_enum] = ACTIONS(3581), - [anon_sym_constexpr] = ACTIONS(3581), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), - [anon_sym_namespace] = ACTIONS(3581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), - [anon_sym_SQUOTE] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_DASH_DASH] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_struct] = ACTIONS(3581), - [sym_auto] = ACTIONS(3581), - [anon_sym_signed] = ACTIONS(3581), - [anon_sym_long] = ACTIONS(3581), - [anon_sym_COLON_COLON] = ACTIONS(3583), - [anon_sym_using] = ACTIONS(3581), - [sym_preproc_directive] = ACTIONS(3581), - [aux_sym_preproc_if_token1] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3581), - [anon_sym_static] = ACTIONS(3581), - [anon_sym_RBRACE] = ACTIONS(3583), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_union] = ACTIONS(3581), - [anon_sym_typename] = ACTIONS(3581), - [anon_sym_short] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3581), - [anon_sym_goto] = ACTIONS(3581), - [sym_operator_name] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3581), - [anon_sym_try] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3581), - [aux_sym_preproc_include_token1] = ACTIONS(3581), - [anon_sym_register] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_const] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_class] = ACTIONS(3581), - [anon_sym_if] = ACTIONS(3581), - [sym_primitive_type] = ACTIONS(3581), - [sym_false] = ACTIONS(3581), - [sym_nullptr] = ACTIONS(3581), - [anon_sym_do] = ACTIONS(3581), - [anon_sym_template] = ACTIONS(3581), - [anon_sym_return] = ACTIONS(3581), - [anon_sym_TILDE] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3583), - [ts_builtin_sym_end] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3581), - [anon_sym_AMP_AMP] = ACTIONS(3583), - [anon_sym_inline] = ACTIONS(3581), - [anon_sym_PLUS_PLUS] = ACTIONS(3583), - [anon_sym_restrict] = ACTIONS(3581), + [sym_destructor_name] = STATE(400), + [sym_identifier] = ACTIONS(3589), + [sym_operator_name] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), }, [871] = { - [sym_virtual_specifier] = STATE(1816), - [aux_sym_function_declarator_repeat1] = STATE(1816), - [sym_trailing_return_type] = STATE(1816), - [sym_type_qualifier] = STATE(1816), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(3585), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(3587), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_LPAREN2] = ACTIONS(788), + [anon_sym_mutable] = ACTIONS(795), + [anon_sym_register] = ACTIONS(795), + [anon_sym__Atomic] = ACTIONS(795), + [anon_sym_const] = ACTIONS(795), + [anon_sym_extern] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_constexpr] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_static] = ACTIONS(795), + [anon_sym_volatile] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_explicit] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_inline] = ACTIONS(795), + [sym_identifier] = ACTIONS(795), + [anon_sym_restrict] = ACTIONS(795), + [sym_operator_name] = ACTIONS(797), }, [872] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(1817), - [sym_storage_class_specifier] = STATE(1817), - [sym_type_qualifier] = STATE(1817), - [anon_sym_LPAREN2] = ACTIONS(1675), + [aux_sym_structured_binding_declarator_repeat1] = STATE(771), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_RBRACK] = ACTIONS(3591), + }, + [873] = { + [sym_storage_class_specifier] = STATE(1812), + [sym_type_qualifier] = STATE(1812), + [aux_sym__declaration_specifiers_repeat1] = STATE(1812), + [anon_sym_LPAREN2] = ACTIONS(1785), [anon_sym_mutable] = ACTIONS(11), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(1785), [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1787), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(1675), + [sym_operator_name] = ACTIONS(1785), [anon_sym_restrict] = ACTIONS(11), }, - [873] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(873), - [sym_storage_class_specifier] = STATE(873), - [sym_type_qualifier] = STATE(873), - [anon_sym_struct] = ACTIONS(1681), - [sym_auto] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_class] = ACTIONS(1681), - [anon_sym_constexpr] = ACTIONS(1683), - [sym_primitive_type] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_typename] = ACTIONS(1681), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1681), - [anon_sym_inline] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1683), - }, [874] = { [aux_sym_sized_type_specifier_repeat1] = STATE(874), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(3589), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(3589), - [anon_sym_register] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(3589), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(3589), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), - [sym_operator_name] = ACTIONS(2077), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(1783), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1783), + [sym_operator_name] = ACTIONS(1778), }, [875] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(879), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(1571), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1571), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1573), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(1571), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [sym_primitive_type] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(3596), + [sym_raw_string_literal] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym_namespace] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_struct] = ACTIONS(3596), + [sym_auto] = ACTIONS(3596), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_using] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3598), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [sym_operator_name] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [aux_sym_preproc_include_token1] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_nullptr] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(3598), + [ts_builtin_sym_end] = ACTIONS(3598), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_restrict] = ACTIONS(3596), }, [876] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(1818), - [sym_storage_class_specifier] = STATE(1818), - [sym_type_qualifier] = STATE(1818), - [anon_sym_LPAREN2] = ACTIONS(541), + [sym_virtual_specifier] = STATE(1814), + [aux_sym_function_declarator_repeat1] = STATE(1814), + [sym_type_qualifier] = STATE(1814), + [sym_trailing_return_type] = STATE(1814), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(3600), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(3602), + [anon_sym_restrict] = ACTIONS(1070), + }, + [877] = { + [sym_destructor_name] = STATE(960), + [sym_identifier] = ACTIONS(3604), + [sym_operator_name] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [878] = { + [sym_storage_class_specifier] = STATE(1816), + [sym_type_qualifier] = STATE(1816), + [aux_sym__declaration_specifiers_repeat1] = STATE(1816), + [anon_sym_LPAREN2] = ACTIONS(1785), [anon_sym_mutable] = ACTIONS(11), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(541), + [anon_sym_COLON_COLON] = ACTIONS(1785), [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(1787), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(541), + [sym_operator_name] = ACTIONS(1785), [anon_sym_restrict] = ACTIONS(11), }, - [877] = { - [anon_sym_DASH] = ACTIONS(3592), - [sym_raw_string_literal] = ACTIONS(3594), - [sym_true] = ACTIONS(3592), - [anon_sym_mutable] = ACTIONS(3592), - [sym_null] = ACTIONS(3592), - [anon_sym_break] = ACTIONS(3592), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_sizeof] = ACTIONS(3592), - [anon_sym_volatile] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_typedef] = ACTIONS(3592), - [anon_sym_switch] = ACTIONS(3592), - [anon_sym_explicit] = ACTIONS(3592), - [sym_identifier] = ACTIONS(3592), - [anon_sym_delete] = ACTIONS(3592), - [anon_sym_continue] = ACTIONS(3592), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), - [anon_sym__Atomic] = ACTIONS(3592), - [sym_number_literal] = ACTIONS(3594), - [anon_sym_extern] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_constexpr] = ACTIONS(3592), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), - [anon_sym_namespace] = ACTIONS(3592), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), - [anon_sym_SQUOTE] = ACTIONS(3594), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_DASH_DASH] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3594), - [anon_sym_struct] = ACTIONS(3592), - [sym_auto] = ACTIONS(3592), - [anon_sym_signed] = ACTIONS(3592), - [anon_sym_long] = ACTIONS(3592), - [anon_sym_COLON_COLON] = ACTIONS(3594), - [anon_sym_using] = ACTIONS(3592), - [sym_preproc_directive] = ACTIONS(3592), - [aux_sym_preproc_if_token1] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_RBRACE] = ACTIONS(3594), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_union] = ACTIONS(3592), - [anon_sym_typename] = ACTIONS(3592), - [anon_sym_short] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3592), - [anon_sym_goto] = ACTIONS(3592), - [sym_operator_name] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3592), - [anon_sym_try] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3592), - [aux_sym_preproc_include_token1] = ACTIONS(3592), - [anon_sym_register] = ACTIONS(3592), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_if] = ACTIONS(3592), - [sym_primitive_type] = ACTIONS(3592), - [sym_false] = ACTIONS(3592), - [sym_nullptr] = ACTIONS(3592), - [anon_sym_do] = ACTIONS(3592), - [anon_sym_template] = ACTIONS(3592), - [anon_sym_return] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_SEMI] = ACTIONS(3594), - [ts_builtin_sym_end] = ACTIONS(3594), - [aux_sym_preproc_def_token1] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_inline] = ACTIONS(3592), - [anon_sym_PLUS_PLUS] = ACTIONS(3594), - [anon_sym_restrict] = ACTIONS(3592), + [879] = { + [sym_storage_class_specifier] = STATE(879), + [sym_type_qualifier] = STATE(879), + [aux_sym__declaration_specifiers_repeat1] = STATE(879), + [anon_sym_struct] = ACTIONS(1797), + [sym_auto] = ACTIONS(1797), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_mutable] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_register] = ACTIONS(1802), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_constexpr] = ACTIONS(1799), + [sym_primitive_type] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_volatile] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1797), + [anon_sym_typename] = ACTIONS(1797), + [anon_sym_explicit] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_inline] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1797), + [anon_sym_restrict] = ACTIONS(1799), }, - [878] = { - [sym_macro_type_specifier] = STATE(1819), - [sym_class_specifier] = STATE(1819), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1819), - [sym__type_specifier] = STATE(1819), - [aux_sym__declaration_specifiers_repeat1] = STATE(873), - [sym_storage_class_specifier] = STATE(873), - [sym_type_qualifier] = STATE(873), - [sym_struct_specifier] = STATE(1819), - [sym_union_specifier] = STATE(1819), - [sym_dependent_type] = STATE(1819), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(879), - [sym_enum_specifier] = STATE(1819), - [sym_scoped_type_identifier] = STATE(87), + [880] = { + [anon_sym_DASH] = ACTIONS(3606), + [sym_raw_string_literal] = ACTIONS(3608), + [sym_true] = ACTIONS(3606), + [anon_sym_mutable] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_sizeof] = ACTIONS(3606), + [anon_sym_volatile] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_typedef] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_explicit] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3606), + [anon_sym__Atomic] = ACTIONS(3606), + [sym_number_literal] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [anon_sym_constexpr] = ACTIONS(3606), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3606), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3606), + [sym_auto] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3606), + [anon_sym_long] = ACTIONS(3606), + [anon_sym_COLON_COLON] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3606), + [sym_preproc_directive] = ACTIONS(3606), + [aux_sym_preproc_if_token1] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3606), + [anon_sym_typename] = ACTIONS(3606), + [anon_sym_short] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_goto] = ACTIONS(3606), + [sym_operator_name] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [aux_sym_preproc_include_token1] = ACTIONS(3606), + [anon_sym_register] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [sym_primitive_type] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_nullptr] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_template] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3608), + [ts_builtin_sym_end] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3606), + }, + [881] = { + [sym_macro_type_specifier] = STATE(334), + [sym_class_specifier] = STATE(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_sized_type_specifier] = STATE(334), + [sym__type_specifier] = STATE(334), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(879), + [sym_type_qualifier] = STATE(879), + [sym_struct_specifier] = STATE(334), + [sym_union_specifier] = STATE(334), + [sym_dependent_type] = STATE(334), + [aux_sym__declaration_specifiers_repeat1] = STATE(879), + [sym_enum_specifier] = STATE(334), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(3596), - [anon_sym_signed] = ACTIONS(1571), + [sym_auto] = ACTIONS(569), + [anon_sym_signed] = ACTIONS(35), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(35), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -46317,628 +46347,575 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(3596), - [anon_sym_unsigned] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(569), + [anon_sym_unsigned] = ACTIONS(35), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1573), + [anon_sym_typename] = ACTIONS(69), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(35), [anon_sym_restrict] = ACTIONS(11), }, - [879] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1820), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(3598), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(3598), - [anon_sym_register] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(3598), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(625), - [sym_identifier] = ACTIONS(629), - [anon_sym_restrict] = ACTIONS(625), - [sym_operator_name] = ACTIONS(621), - [anon_sym_short] = ACTIONS(3598), - }, - [880] = { - [sym_reference_declarator] = STATE(352), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(352), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(352), - [sym_destructor_name] = STATE(352), - [sym__declarator] = STATE(352), - [sym_init_declarator] = STATE(353), - [sym_array_declarator] = STATE(352), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(352), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(607), - [sym_comment] = ACTIONS(3), - }, - [881] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(3600), - }, [882] = { - [anon_sym_RPAREN] = ACTIONS(3602), + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(3610), }, [883] = { - [sym_template_type] = STATE(239), + [anon_sym_RPAREN] = ACTIONS(3612), + [sym_comment] = ACTIONS(3), + }, + [884] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(3604), - }, - [884] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(3614), }, [885] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1825), - [sym_logical_expression] = STATE(1825), - [sym_bitwise_expression] = STATE(1825), - [sym_cast_expression] = STATE(1825), - [sym_new_expression] = STATE(1825), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1825), - [sym_char_literal] = STATE(1825), - [sym_template_function] = STATE(1825), - [sym_conditional_expression] = STATE(1825), - [sym_equality_expression] = STATE(1825), - [sym_relational_expression] = STATE(1825), - [sym_delete_expression] = STATE(1825), - [sym_sizeof_expression] = STATE(1825), - [sym_parenthesized_expression] = STATE(1825), - [sym_lambda_expression] = STATE(1825), - [sym_concatenated_string] = STATE(1825), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1825), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1825), - [sym_math_expression] = STATE(1825), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3608), - [sym_null] = ACTIONS(3608), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [886] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(643), - [sym_logical_expression] = STATE(643), - [sym_bitwise_expression] = STATE(643), - [sym_cast_expression] = STATE(643), - [sym_new_expression] = STATE(643), - [sym_field_expression] = STATE(643), - [sym_compound_literal_expression] = STATE(643), - [sym_char_literal] = STATE(643), - [sym_template_function] = STATE(643), - [sym_conditional_expression] = STATE(643), - [sym_equality_expression] = STATE(643), - [sym_relational_expression] = STATE(643), - [sym_delete_expression] = STATE(643), - [sym_sizeof_expression] = STATE(643), - [sym_parenthesized_expression] = STATE(643), - [sym_lambda_expression] = STATE(643), - [sym_concatenated_string] = STATE(643), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(643), - [sym_assignment_expression] = STATE(643), - [sym_pointer_expression] = STATE(643), - [sym_shift_expression] = STATE(643), - [sym_math_expression] = STATE(643), - [sym_call_expression] = STATE(643), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(1180), - [sym_null] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_template_function] = STATE(1821), + [sym__expression] = STATE(1821), + [sym_logical_expression] = STATE(1821), + [sym_bitwise_expression] = STATE(1821), + [sym_cast_expression] = STATE(1821), + [sym_delete_expression] = STATE(1821), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1821), + [sym_lambda_expression] = STATE(1821), + [sym_char_literal] = STATE(1821), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1821), + [sym_equality_expression] = STATE(1821), + [sym_relational_expression] = STATE(1821), + [sym_sizeof_expression] = STATE(1821), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1821), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(1821), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1821), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1821), + [sym_math_expression] = STATE(1821), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1821), + [sym_raw_string_literal] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [887] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(1826), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [sym_template_function] = STATE(644), + [sym__expression] = STATE(644), + [sym_logical_expression] = STATE(644), + [sym_bitwise_expression] = STATE(644), + [sym_cast_expression] = STATE(644), + [sym_delete_expression] = STATE(644), + [sym_field_expression] = STATE(644), + [sym_compound_literal_expression] = STATE(644), + [sym_lambda_expression] = STATE(644), + [sym_char_literal] = STATE(644), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(644), + [sym_equality_expression] = STATE(644), + [sym_relational_expression] = STATE(644), + [sym_sizeof_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(644), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(644), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(644), + [sym_pointer_expression] = STATE(644), + [sym_shift_expression] = STATE(644), + [sym_math_expression] = STATE(644), + [sym_call_expression] = STATE(644), + [sym_new_expression] = STATE(644), + [sym_raw_string_literal] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + }, + [888] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1822), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [888] = { - [sym_destructor_name] = STATE(662), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1210), - [sym_operator_name] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_delete] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [889] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(665), - [sym_logical_expression] = STATE(665), - [sym_bitwise_expression] = STATE(665), - [sym_cast_expression] = STATE(665), - [sym_new_expression] = STATE(665), - [sym_field_expression] = STATE(665), - [sym_compound_literal_expression] = STATE(665), - [sym_char_literal] = STATE(665), - [sym_template_function] = STATE(665), - [sym_conditional_expression] = STATE(665), - [sym_equality_expression] = STATE(665), - [sym_relational_expression] = STATE(665), - [sym_delete_expression] = STATE(665), - [sym_sizeof_expression] = STATE(665), - [sym_parenthesized_expression] = STATE(665), - [sym_lambda_expression] = STATE(665), - [sym_concatenated_string] = STATE(665), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(665), - [sym_assignment_expression] = STATE(665), - [sym_pointer_expression] = STATE(665), - [sym_shift_expression] = STATE(665), - [sym_math_expression] = STATE(665), - [sym_call_expression] = STATE(665), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(1220), - [sym_null] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_destructor_name] = STATE(663), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1216), + [sym_operator_name] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(3622), }, [890] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1829), - [sym_logical_expression] = STATE(1829), - [sym_bitwise_expression] = STATE(1829), - [sym_cast_expression] = STATE(1829), - [sym_new_expression] = STATE(1829), - [sym_field_expression] = STATE(1829), - [sym_compound_literal_expression] = STATE(1829), - [sym_char_literal] = STATE(1829), - [sym_template_function] = STATE(1829), - [sym_conditional_expression] = STATE(1829), - [sym_equality_expression] = STATE(1829), - [sym_relational_expression] = STATE(1829), - [sym_delete_expression] = STATE(1829), - [sym_sizeof_expression] = STATE(1829), - [sym_parenthesized_expression] = STATE(1829), - [sym_lambda_expression] = STATE(1829), - [sym_concatenated_string] = STATE(1829), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1829), - [sym_assignment_expression] = STATE(1829), - [sym_pointer_expression] = STATE(1829), - [sym_shift_expression] = STATE(1829), - [sym_math_expression] = STATE(1829), - [sym_call_expression] = STATE(1829), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(666), + [sym__expression] = STATE(666), + [sym_logical_expression] = STATE(666), + [sym_bitwise_expression] = STATE(666), + [sym_cast_expression] = STATE(666), + [sym_delete_expression] = STATE(666), + [sym_field_expression] = STATE(666), + [sym_compound_literal_expression] = STATE(666), + [sym_lambda_expression] = STATE(666), + [sym_char_literal] = STATE(666), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(666), + [sym_equality_expression] = STATE(666), + [sym_relational_expression] = STATE(666), + [sym_sizeof_expression] = STATE(666), + [sym_subscript_expression] = STATE(666), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(3616), - [sym_true] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(1589), + [sym_parenthesized_expression] = STATE(666), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(666), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(666), + [sym_pointer_expression] = STATE(666), + [sym_shift_expression] = STATE(666), + [sym_math_expression] = STATE(666), + [sym_call_expression] = STATE(666), + [sym_new_expression] = STATE(666), + [sym_raw_string_literal] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(3618), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, [891] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), - }, - [892] = { - [sym_union_specifier] = STATE(1832), - [sym_macro_type_specifier] = STATE(1832), - [sym_class_specifier] = STATE(1832), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1832), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1832), - [aux_sym_sized_type_specifier_repeat1] = STATE(1831), - [sym_argument_list] = STATE(1833), - [sym_enum_specifier] = STATE(1832), - [sym_struct_specifier] = STATE(1832), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1832), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(3620), - [anon_sym_unsigned] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(3624), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(3622), - }, - [893] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1835), - [sym_logical_expression] = STATE(1835), - [sym_bitwise_expression] = STATE(1835), - [sym_cast_expression] = STATE(1835), - [sym_new_expression] = STATE(1835), - [sym_field_expression] = STATE(1835), - [sym_compound_literal_expression] = STATE(1835), - [sym_char_literal] = STATE(1835), - [sym_template_function] = STATE(1835), - [sym_conditional_expression] = STATE(1835), - [sym_equality_expression] = STATE(1835), - [sym_relational_expression] = STATE(1835), - [sym_delete_expression] = STATE(1835), - [sym_sizeof_expression] = STATE(1835), - [sym_parenthesized_expression] = STATE(1835), - [sym_lambda_expression] = STATE(1835), - [sym_concatenated_string] = STATE(1835), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1835), - [sym_assignment_expression] = STATE(1835), - [sym_pointer_expression] = STATE(1835), - [sym_shift_expression] = STATE(1835), - [sym_math_expression] = STATE(1835), - [sym_call_expression] = STATE(1835), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(1825), + [sym__expression] = STATE(1825), + [sym_logical_expression] = STATE(1825), + [sym_bitwise_expression] = STATE(1825), + [sym_cast_expression] = STATE(1825), + [sym_delete_expression] = STATE(1825), + [sym_field_expression] = STATE(1825), + [sym_compound_literal_expression] = STATE(1825), + [sym_lambda_expression] = STATE(1825), + [sym_char_literal] = STATE(1825), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1825), + [sym_equality_expression] = STATE(1825), + [sym_relational_expression] = STATE(1825), + [sym_sizeof_expression] = STATE(1825), + [sym_subscript_expression] = STATE(1825), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), + [sym_parenthesized_expression] = STATE(1825), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(1825), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1825), + [sym_pointer_expression] = STATE(1825), + [sym_shift_expression] = STATE(1825), + [sym_math_expression] = STATE(1825), + [sym_call_expression] = STATE(1825), + [sym_new_expression] = STATE(1825), + [sym_raw_string_literal] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(3626), [sym_true] = ACTIONS(3628), [sym_null] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), [sym_false] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(496), [sym_nullptr] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + }, + [892] = { + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + }, + [893] = { + [sym_union_specifier] = STATE(1828), + [sym_macro_type_specifier] = STATE(1828), + [sym_class_specifier] = STATE(1828), + [aux_sym_sized_type_specifier_repeat1] = STATE(1827), + [sym_sized_type_specifier] = STATE(1828), + [sym__type_specifier] = STATE(1828), + [sym_argument_list] = STATE(1829), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1828), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1828), + [sym_struct_specifier] = STATE(1828), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3632), + [anon_sym_long] = ACTIONS(3632), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3632), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(3634), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(3632), }, [894] = { - [sym_string_literal] = STATE(1847), - [aux_sym_concatenated_string_repeat1] = STATE(1847), + [sym_template_function] = STATE(1831), + [sym__expression] = STATE(1831), + [sym_logical_expression] = STATE(1831), + [sym_bitwise_expression] = STATE(1831), + [sym_cast_expression] = STATE(1831), + [sym_delete_expression] = STATE(1831), + [sym_field_expression] = STATE(1831), + [sym_compound_literal_expression] = STATE(1831), + [sym_lambda_expression] = STATE(1831), + [sym_char_literal] = STATE(1831), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1831), + [sym_equality_expression] = STATE(1831), + [sym_relational_expression] = STATE(1831), + [sym_sizeof_expression] = STATE(1831), + [sym_subscript_expression] = STATE(1831), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1831), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(1831), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1831), + [sym_pointer_expression] = STATE(1831), + [sym_shift_expression] = STATE(1831), + [sym_math_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_new_expression] = STATE(1831), + [sym_raw_string_literal] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(3638), + [sym_null] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + }, + [895] = { + [sym_string_literal] = STATE(1843), + [aux_sym_concatenated_string_repeat1] = STATE(1843), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -46962,7 +46939,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -46979,49 +46956,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [895] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(1848), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [896] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1844), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -47029,20 +47006,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -47059,943 +47036,777 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [896] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [897] = { - [sym_template_type] = STATE(71), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [898] = { + [sym_template_function] = STATE(1845), + [sym__expression] = STATE(1845), + [sym_logical_expression] = STATE(1845), + [sym_bitwise_expression] = STATE(1845), + [sym_cast_expression] = STATE(1845), + [sym_delete_expression] = STATE(1845), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1845), + [sym_lambda_expression] = STATE(1845), + [sym_char_literal] = STATE(1845), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1845), + [sym_equality_expression] = STATE(1845), + [sym_relational_expression] = STATE(1845), + [sym_sizeof_expression] = STATE(1845), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1845), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(1845), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1845), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1845), + [sym_math_expression] = STATE(1845), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1845), + [sym_raw_string_literal] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3644), + [sym_null] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), + }, + [899] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(900), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(358), + }, + [900] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1846), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(3646), + [anon_sym_long] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(3646), + [sym_identifier] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_unsigned] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), + }, + [901] = { + [sym_new_declarator] = STATE(709), + [sym_argument_list] = STATE(710), + [sym_initializer_list] = STATE(710), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1286), + }, + [902] = { + [sym_union_specifier] = STATE(1848), + [sym_macro_type_specifier] = STATE(1848), + [sym_class_specifier] = STATE(1848), + [aux_sym_sized_type_specifier_repeat1] = STATE(900), + [sym_sized_type_specifier] = STATE(1848), + [sym__type_specifier] = STATE(1848), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(1848), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1848), + [sym_struct_specifier] = STATE(1848), + [anon_sym_unsigned] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(3650), + }, + [903] = { + [sym_template_function] = STATE(1849), [sym__expression] = STATE(1849), [sym_logical_expression] = STATE(1849), [sym_bitwise_expression] = STATE(1849), [sym_cast_expression] = STATE(1849), - [sym_new_expression] = STATE(1849), - [sym_field_expression] = STATE(299), + [sym_delete_expression] = STATE(1849), + [sym_field_expression] = STATE(301), [sym_compound_literal_expression] = STATE(1849), + [sym_lambda_expression] = STATE(1849), [sym_char_literal] = STATE(1849), - [sym_template_function] = STATE(1849), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1849), [sym_equality_expression] = STATE(1849), [sym_relational_expression] = STATE(1849), - [sym_delete_expression] = STATE(1849), [sym_sizeof_expression] = STATE(1849), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1849), - [sym_lambda_expression] = STATE(1849), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), [sym_concatenated_string] = STATE(1849), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1849), - [sym_pointer_expression] = STATE(299), + [sym_pointer_expression] = STATE(301), [sym_shift_expression] = STATE(1849), [sym_math_expression] = STATE(1849), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3634), - [sym_null] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [898] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(899), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(1619), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1849), + [sym_raw_string_literal] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [899] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1850), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(3636), - [anon_sym_long] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(3636), - [sym_identifier] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [904] = { + [sym_template_function] = STATE(1850), + [sym__expression] = STATE(1850), + [sym_logical_expression] = STATE(1850), + [sym_bitwise_expression] = STATE(1850), + [sym_cast_expression] = STATE(1850), + [sym_delete_expression] = STATE(1850), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1850), + [sym_lambda_expression] = STATE(1850), + [sym_char_literal] = STATE(1850), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1850), + [sym_equality_expression] = STATE(1850), + [sym_relational_expression] = STATE(1850), + [sym_sizeof_expression] = STATE(1850), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1850), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(1850), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1850), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1850), + [sym_math_expression] = STATE(1850), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1850), + [sym_raw_string_literal] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3658), + [sym_null] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [900] = { - [sym_initializer_list] = STATE(709), - [sym_new_declarator] = STATE(708), - [sym_argument_list] = STATE(709), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [905] = { + [sym_template_function] = STATE(1851), + [sym__expression] = STATE(1851), + [sym_logical_expression] = STATE(1851), + [sym_bitwise_expression] = STATE(1851), + [sym_cast_expression] = STATE(1851), + [sym_delete_expression] = STATE(1851), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1851), + [sym_lambda_expression] = STATE(1851), + [sym_char_literal] = STATE(1851), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1851), + [sym_equality_expression] = STATE(1851), + [sym_relational_expression] = STATE(1851), + [sym_sizeof_expression] = STATE(1851), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1851), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(1851), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1851), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1851), + [sym_math_expression] = STATE(1851), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1851), + [sym_raw_string_literal] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3662), + [sym_null] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [901] = { - [sym_union_specifier] = STATE(1852), - [sym_macro_type_specifier] = STATE(1852), - [sym_class_specifier] = STATE(1852), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1852), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1852), - [aux_sym_sized_type_specifier_repeat1] = STATE(899), - [sym_struct_specifier] = STATE(1852), - [sym_enum_specifier] = STATE(1852), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(1852), - [anon_sym_unsigned] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(1619), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(3640), + [906] = { + [sym_template_function] = STATE(1852), + [sym__expression] = STATE(1852), + [sym_logical_expression] = STATE(1852), + [sym_bitwise_expression] = STATE(1852), + [sym_cast_expression] = STATE(1852), + [sym_delete_expression] = STATE(1852), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1852), + [sym_lambda_expression] = STATE(1852), + [sym_char_literal] = STATE(1852), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1852), + [sym_equality_expression] = STATE(1852), + [sym_relational_expression] = STATE(1852), + [sym_sizeof_expression] = STATE(1852), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1852), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(1852), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1852), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1852), + [sym_math_expression] = STATE(1852), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1852), + [sym_raw_string_literal] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3666), + [sym_null] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [902] = { - [sym_template_type] = STATE(71), + [907] = { + [sym_template_function] = STATE(1853), [sym__expression] = STATE(1853), [sym_logical_expression] = STATE(1853), [sym_bitwise_expression] = STATE(1853), [sym_cast_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_field_expression] = STATE(299), + [sym_delete_expression] = STATE(1853), + [sym_field_expression] = STATE(301), [sym_compound_literal_expression] = STATE(1853), + [sym_lambda_expression] = STATE(1853), [sym_char_literal] = STATE(1853), - [sym_template_function] = STATE(1853), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1853), [sym_equality_expression] = STATE(1853), [sym_relational_expression] = STATE(1853), - [sym_delete_expression] = STATE(1853), [sym_sizeof_expression] = STATE(1853), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1853), - [sym_lambda_expression] = STATE(1853), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), [sym_concatenated_string] = STATE(1853), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1853), - [sym_pointer_expression] = STATE(299), + [sym_pointer_expression] = STATE(301), [sym_shift_expression] = STATE(1853), [sym_math_expression] = STATE(1853), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3644), - [sym_null] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3642), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1853), + [sym_raw_string_literal] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3670), + [sym_null] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [903] = { - [sym_template_type] = STATE(71), + [908] = { + [sym_template_function] = STATE(990), + [sym__expression] = STATE(990), + [sym_logical_expression] = STATE(990), + [sym_bitwise_expression] = STATE(990), + [sym_cast_expression] = STATE(990), + [sym_delete_expression] = STATE(990), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(990), + [sym_lambda_expression] = STATE(990), + [sym_char_literal] = STATE(990), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(990), + [sym_equality_expression] = STATE(990), + [sym_relational_expression] = STATE(990), + [sym_sizeof_expression] = STATE(990), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(990), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(990), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(990), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(990), + [sym_math_expression] = STATE(990), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(990), + [sym_raw_string_literal] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), + }, + [909] = { + [sym_template_function] = STATE(1854), [sym__expression] = STATE(1854), [sym_logical_expression] = STATE(1854), [sym_bitwise_expression] = STATE(1854), [sym_cast_expression] = STATE(1854), - [sym_new_expression] = STATE(1854), - [sym_field_expression] = STATE(299), + [sym_delete_expression] = STATE(1854), + [sym_field_expression] = STATE(301), [sym_compound_literal_expression] = STATE(1854), + [sym_lambda_expression] = STATE(1854), [sym_char_literal] = STATE(1854), - [sym_template_function] = STATE(1854), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1854), [sym_equality_expression] = STATE(1854), [sym_relational_expression] = STATE(1854), - [sym_delete_expression] = STATE(1854), [sym_sizeof_expression] = STATE(1854), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1854), - [sym_lambda_expression] = STATE(1854), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), [sym_concatenated_string] = STATE(1854), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1854), - [sym_pointer_expression] = STATE(299), + [sym_pointer_expression] = STATE(301), [sym_shift_expression] = STATE(1854), [sym_math_expression] = STATE(1854), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3648), - [sym_null] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3648), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1854), + [sym_raw_string_literal] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3674), + [sym_null] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [904] = { - [sym_template_type] = STATE(71), + [910] = { + [sym_template_function] = STATE(1855), [sym__expression] = STATE(1855), [sym_logical_expression] = STATE(1855), [sym_bitwise_expression] = STATE(1855), [sym_cast_expression] = STATE(1855), - [sym_new_expression] = STATE(1855), - [sym_field_expression] = STATE(299), + [sym_delete_expression] = STATE(1855), + [sym_field_expression] = STATE(301), [sym_compound_literal_expression] = STATE(1855), + [sym_lambda_expression] = STATE(1855), [sym_char_literal] = STATE(1855), - [sym_template_function] = STATE(1855), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1855), [sym_equality_expression] = STATE(1855), [sym_relational_expression] = STATE(1855), - [sym_delete_expression] = STATE(1855), [sym_sizeof_expression] = STATE(1855), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1855), - [sym_lambda_expression] = STATE(1855), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), [sym_concatenated_string] = STATE(1855), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1855), - [sym_pointer_expression] = STATE(299), + [sym_pointer_expression] = STATE(301), [sym_shift_expression] = STATE(1855), [sym_math_expression] = STATE(1855), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3652), - [sym_null] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1855), + [sym_raw_string_literal] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [905] = { - [sym_template_type] = STATE(71), + [911] = { + [sym_template_function] = STATE(1856), [sym__expression] = STATE(1856), [sym_logical_expression] = STATE(1856), [sym_bitwise_expression] = STATE(1856), [sym_cast_expression] = STATE(1856), - [sym_new_expression] = STATE(1856), - [sym_field_expression] = STATE(299), + [sym_delete_expression] = STATE(1856), + [sym_field_expression] = STATE(301), [sym_compound_literal_expression] = STATE(1856), + [sym_lambda_expression] = STATE(1856), [sym_char_literal] = STATE(1856), - [sym_template_function] = STATE(1856), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1856), [sym_equality_expression] = STATE(1856), [sym_relational_expression] = STATE(1856), - [sym_delete_expression] = STATE(1856), [sym_sizeof_expression] = STATE(1856), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1856), - [sym_lambda_expression] = STATE(1856), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), [sym_concatenated_string] = STATE(1856), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1856), - [sym_pointer_expression] = STATE(299), + [sym_pointer_expression] = STATE(301), [sym_shift_expression] = STATE(1856), [sym_math_expression] = STATE(1856), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3656), - [sym_null] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3656), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1856), + [sym_raw_string_literal] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3682), + [sym_null] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [906] = { - [sym_template_type] = STATE(71), + [912] = { + [sym_template_function] = STATE(1857), [sym__expression] = STATE(1857), [sym_logical_expression] = STATE(1857), [sym_bitwise_expression] = STATE(1857), [sym_cast_expression] = STATE(1857), - [sym_new_expression] = STATE(1857), - [sym_field_expression] = STATE(299), + [sym_delete_expression] = STATE(1857), + [sym_field_expression] = STATE(1006), [sym_compound_literal_expression] = STATE(1857), + [sym_lambda_expression] = STATE(1857), [sym_char_literal] = STATE(1857), - [sym_template_function] = STATE(1857), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(1857), [sym_equality_expression] = STATE(1857), [sym_relational_expression] = STATE(1857), - [sym_delete_expression] = STATE(1857), [sym_sizeof_expression] = STATE(1857), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(1857), - [sym_lambda_expression] = STATE(1857), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), [sym_concatenated_string] = STATE(1857), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(1857), - [sym_pointer_expression] = STATE(299), + [sym_pointer_expression] = STATE(1006), [sym_shift_expression] = STATE(1857), [sym_math_expression] = STATE(1857), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3660), - [sym_null] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [907] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(952), - [sym_logical_expression] = STATE(952), - [sym_bitwise_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_new_expression] = STATE(952), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(952), - [sym_char_literal] = STATE(952), - [sym_template_function] = STATE(952), - [sym_conditional_expression] = STATE(952), - [sym_equality_expression] = STATE(952), - [sym_relational_expression] = STATE(952), - [sym_delete_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(952), - [sym_lambda_expression] = STATE(952), - [sym_concatenated_string] = STATE(952), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(952), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(952), - [sym_math_expression] = STATE(952), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1741), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [908] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1858), - [sym_logical_expression] = STATE(1858), - [sym_bitwise_expression] = STATE(1858), - [sym_cast_expression] = STATE(1858), - [sym_new_expression] = STATE(1858), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1858), - [sym_char_literal] = STATE(1858), - [sym_template_function] = STATE(1858), - [sym_conditional_expression] = STATE(1858), - [sym_equality_expression] = STATE(1858), - [sym_relational_expression] = STATE(1858), - [sym_delete_expression] = STATE(1858), - [sym_sizeof_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1858), - [sym_lambda_expression] = STATE(1858), - [sym_concatenated_string] = STATE(1858), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1858), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1858), - [sym_math_expression] = STATE(1858), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3664), - [sym_null] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [909] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1859), - [sym_logical_expression] = STATE(1859), - [sym_bitwise_expression] = STATE(1859), - [sym_cast_expression] = STATE(1859), - [sym_new_expression] = STATE(1859), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1859), - [sym_char_literal] = STATE(1859), - [sym_template_function] = STATE(1859), - [sym_conditional_expression] = STATE(1859), - [sym_equality_expression] = STATE(1859), - [sym_relational_expression] = STATE(1859), - [sym_delete_expression] = STATE(1859), - [sym_sizeof_expression] = STATE(1859), - [sym_parenthesized_expression] = STATE(1859), - [sym_lambda_expression] = STATE(1859), - [sym_concatenated_string] = STATE(1859), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1859), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1859), - [sym_math_expression] = STATE(1859), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3668), - [sym_null] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3666), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [910] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1860), - [sym_logical_expression] = STATE(1860), - [sym_bitwise_expression] = STATE(1860), - [sym_cast_expression] = STATE(1860), - [sym_new_expression] = STATE(1860), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1860), - [sym_char_literal] = STATE(1860), - [sym_template_function] = STATE(1860), - [sym_conditional_expression] = STATE(1860), - [sym_equality_expression] = STATE(1860), - [sym_relational_expression] = STATE(1860), - [sym_delete_expression] = STATE(1860), - [sym_sizeof_expression] = STATE(1860), - [sym_parenthesized_expression] = STATE(1860), - [sym_lambda_expression] = STATE(1860), - [sym_concatenated_string] = STATE(1860), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1860), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1860), - [sym_math_expression] = STATE(1860), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3672), - [sym_null] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3670), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [911] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1861), - [sym_logical_expression] = STATE(1861), - [sym_bitwise_expression] = STATE(1861), - [sym_cast_expression] = STATE(1861), - [sym_new_expression] = STATE(1861), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1861), - [sym_char_literal] = STATE(1861), - [sym_template_function] = STATE(1861), - [sym_conditional_expression] = STATE(1861), - [sym_equality_expression] = STATE(1861), - [sym_relational_expression] = STATE(1861), - [sym_delete_expression] = STATE(1861), - [sym_sizeof_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_lambda_expression] = STATE(1861), - [sym_concatenated_string] = STATE(1861), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1861), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1861), - [sym_math_expression] = STATE(1861), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(3676), - [sym_null] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3674), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(3676), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, - [912] = { - [anon_sym_DASH] = ACTIONS(3678), - [sym_raw_string_literal] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3678), - [sym_true] = ACTIONS(3678), - [anon_sym_mutable] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_sizeof] = ACTIONS(3678), - [anon_sym_volatile] = ACTIONS(3678), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_typedef] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3678), - [anon_sym_explicit] = ACTIONS(3678), - [sym_identifier] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), - [anon_sym__Atomic] = ACTIONS(3678), - [sym_number_literal] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), - [anon_sym_constexpr] = ACTIONS(3678), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3678), - [sym_auto] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3678), - [anon_sym_long] = ACTIONS(3678), - [anon_sym_COLON_COLON] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3678), - [sym_preproc_directive] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3678), - [anon_sym_typename] = ACTIONS(3678), - [anon_sym_short] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_goto] = ACTIONS(3678), - [sym_operator_name] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [aux_sym_preproc_include_token1] = ACTIONS(3678), - [anon_sym_register] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_if] = ACTIONS(3678), - [sym_primitive_type] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_nullptr] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_template] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3680), - [ts_builtin_sym_end] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3678), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1857), + [sym_raw_string_literal] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(3686), + [sym_null] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, [913] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1862), - [sym_logical_expression] = STATE(1862), - [sym_bitwise_expression] = STATE(1862), - [sym_cast_expression] = STATE(1862), - [sym_new_expression] = STATE(1862), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1862), - [sym_char_literal] = STATE(1862), - [sym_template_function] = STATE(1862), - [sym_conditional_expression] = STATE(1862), - [sym_equality_expression] = STATE(1862), - [sym_relational_expression] = STATE(1862), - [sym_delete_expression] = STATE(1862), - [sym_sizeof_expression] = STATE(1862), - [sym_parenthesized_expression] = STATE(1862), - [sym_lambda_expression] = STATE(1862), - [sym_concatenated_string] = STATE(1862), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1862), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1862), - [sym_math_expression] = STATE(1862), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3682), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(3684), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [914] = { - [sym_string_literal] = STATE(1863), - [aux_sym_concatenated_string_repeat1] = STATE(1863), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - }, - [915] = { - [anon_sym_LF] = ACTIONS(3686), - [sym_comment] = ACTIONS(244), - }, - [916] = { [anon_sym_DASH] = ACTIONS(3688), [sym_raw_string_literal] = ACTIONS(3690), + [anon_sym_else] = ACTIONS(3688), [sym_true] = ACTIONS(3688), [anon_sym_mutable] = ACTIONS(3688), [sym_null] = ACTIONS(3688), @@ -48068,1203 +47879,958 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3690), [anon_sym_restrict] = ACTIONS(3688), }, + [914] = { + [sym_template_function] = STATE(1858), + [sym__expression] = STATE(1858), + [sym_logical_expression] = STATE(1858), + [sym_bitwise_expression] = STATE(1858), + [sym_cast_expression] = STATE(1858), + [sym_delete_expression] = STATE(1858), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1858), + [sym_lambda_expression] = STATE(1858), + [sym_char_literal] = STATE(1858), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1858), + [sym_equality_expression] = STATE(1858), + [sym_relational_expression] = STATE(1858), + [sym_sizeof_expression] = STATE(1858), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1858), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(1858), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1858), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1858), + [sym_math_expression] = STATE(1858), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1858), + [sym_raw_string_literal] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(3694), + [sym_null] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3692), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), + }, + [915] = { + [sym_string_literal] = STATE(1859), + [aux_sym_concatenated_string_repeat1] = STATE(1859), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), + }, + [916] = { + [anon_sym_LF] = ACTIONS(3696), + [sym_comment] = ACTIONS(244), + }, [917] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(3694), - [sym_identifier] = ACTIONS(3692), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(3698), + [sym_raw_string_literal] = ACTIONS(3700), + [sym_true] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_sizeof] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [sym_number_literal] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3698), + [sym_auto] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_goto] = ACTIONS(3698), + [sym_operator_name] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [aux_sym_preproc_include_token1] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_nullptr] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3700), + [ts_builtin_sym_end] = ACTIONS(3700), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3698), }, [918] = { - [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(3696), - [sym_preproc_arg] = ACTIONS(3698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3702), + [anon_sym_RPAREN] = ACTIONS(3704), + [sym_identifier] = ACTIONS(3702), + [sym_comment] = ACTIONS(3), }, [919] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_GT2] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_EQ] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1141), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(244), + [anon_sym_LF] = ACTIONS(3706), + [sym_preproc_arg] = ACTIONS(3708), }, [920] = { - [sym_destructor_name] = STATE(399), - [sym_identifier] = ACTIONS(3700), - [sym_operator_name] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_GT2] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_COLON] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1147), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [921] = { - [sym_destructor_name] = STATE(938), - [sym_identifier] = ACTIONS(3702), - [sym_operator_name] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(308), + [sym_destructor_name] = STATE(400), + [sym_identifier] = ACTIONS(3710), + [sym_operator_name] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, [922] = { - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_mutable] = ACTIONS(1137), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_register] = ACTIONS(1137), - [anon_sym__Atomic] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_constexpr] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_explicit] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [anon_sym_restrict] = ACTIONS(1137), - [sym_operator_name] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1130), + [sym_destructor_name] = STATE(960), + [sym_identifier] = ACTIONS(3712), + [sym_operator_name] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), }, [923] = { - [sym_destructor_name] = STATE(399), - [sym_identifier] = ACTIONS(3704), - [sym_operator_name] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), + [sym_compound_statement] = STATE(1868), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(1869), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(3714), }, [924] = { - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_EQ] = ACTIONS(789), - [anon_sym_mutable] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_register] = ACTIONS(787), - [anon_sym__Atomic] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_extern] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(780), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_constexpr] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_static] = ACTIONS(787), - [anon_sym_volatile] = ACTIONS(787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_explicit] = ACTIONS(787), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_inline] = ACTIONS(787), - [sym_identifier] = ACTIONS(787), - [anon_sym_restrict] = ACTIONS(787), - [sym_operator_name] = ACTIONS(789), - [anon_sym_RPAREN] = ACTIONS(780), + [aux_sym_declaration_repeat1] = STATE(1869), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(3714), }, [925] = { - [sym_destructor_name] = STATE(938), - [sym_identifier] = ACTIONS(3706), - [sym_operator_name] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(308), + [aux_sym_parameter_list_repeat1] = STATE(1872), + [anon_sym_COMMA] = ACTIONS(3716), + [anon_sym_RPAREN] = ACTIONS(3718), [sym_comment] = ACTIONS(3), }, [926] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(937), - [sym_storage_class_specifier] = STATE(937), - [sym_type_qualifier] = STATE(937), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(929), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(1698), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(1698), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3708), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [sym_identifier] = ACTIONS(3710), - [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(11), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(358), }, [927] = { - [anon_sym_DASH] = ACTIONS(3712), - [sym_raw_string_literal] = ACTIONS(3714), - [sym_true] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [sym_null] = ACTIONS(3712), - [anon_sym_break] = ACTIONS(3712), - [anon_sym_BANG] = ACTIONS(3714), - [anon_sym_sizeof] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [sym_identifier] = ACTIONS(3712), - [anon_sym_delete] = ACTIONS(3712), - [anon_sym_continue] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [sym_number_literal] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [anon_sym_namespace] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_struct] = ACTIONS(3712), - [sym_auto] = ACTIONS(3712), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_using] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_RBRACE] = ACTIONS(3714), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_goto] = ACTIONS(3712), - [sym_operator_name] = ACTIONS(3714), - [anon_sym_while] = ACTIONS(3712), - [anon_sym_try] = ACTIONS(3712), - [anon_sym_for] = ACTIONS(3712), - [aux_sym_preproc_include_token1] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [sym_false] = ACTIONS(3712), - [sym_nullptr] = ACTIONS(3712), - [anon_sym_do] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_return] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3714), - [anon_sym_SEMI] = ACTIONS(3714), - [ts_builtin_sym_end] = ACTIONS(3714), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3720), + [sym_noexcept] = ACTIONS(3720), + [anon_sym_final] = ACTIONS(3720), + [anon_sym_mutable] = ACTIONS(3720), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym__Atomic] = ACTIONS(3720), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_GT2] = ACTIONS(3720), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_constexpr] = ACTIONS(3720), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(3720), + [anon_sym_override] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3720), + [anon_sym_explicit] = ACTIONS(3720), + [anon_sym_RPAREN] = ACTIONS(3720), + [anon_sym_DASH_GT] = ACTIONS(3720), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_restrict] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3720), }, [928] = { - [sym_compound_statement] = STATE(1873), - [sym_delete_method_clause] = STATE(1873), - [sym_default_method_clause] = STATE(1873), - [anon_sym_EQ] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(43), + [sym_storage_class_specifier] = STATE(1873), + [sym_type_qualifier] = STATE(1873), + [aux_sym__declaration_specifiers_repeat1] = STATE(1873), + [anon_sym_LPAREN2] = ACTIONS(565), + [anon_sym_restrict] = ACTIONS(11), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(565), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(567), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), + [sym_operator_name] = ACTIONS(565), + [anon_sym_inline] = ACTIONS(63), }, [929] = { - [sym_destructor_name] = STATE(1874), - [sym_identifier] = ACTIONS(3716), - [sym_operator_name] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(1874), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(3724), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(3724), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_static] = ACTIONS(558), + [anon_sym_volatile] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_short] = ACTIONS(3724), + [sym_identifier] = ACTIONS(562), + [sym_operator_name] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_register] = ACTIONS(558), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_unsigned] = ACTIONS(3724), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_inline] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), }, [930] = { - [sym_template_argument_list] = STATE(385), - [sym_argument_list] = STATE(1877), - [sym_initializer_list] = STATE(1877), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_COLON_COLON] = ACTIONS(3720), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(175), + [sym_macro_type_specifier] = STATE(1876), + [sym_class_specifier] = STATE(1876), + [sym__type_specifier] = STATE(1876), + [sym_sized_type_specifier] = STATE(1876), + [aux_sym_sized_type_specifier_repeat1] = STATE(1877), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(1878), + [sym_type_qualifier] = STATE(1878), + [sym_dependent_type] = STATE(1876), + [sym_union_specifier] = STATE(1876), + [sym_struct_specifier] = STATE(1876), + [aux_sym__declaration_specifiers_repeat1] = STATE(1878), + [sym_enum_specifier] = STATE(1876), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(1879), + [sym_scoped_namespace_identifier] = STATE(92), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(3726), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(3726), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(11), }, [931] = { - [sym_argument_list] = STATE(1878), - [sym_initializer_list] = STATE(1878), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(175), + [sym_macro_type_specifier] = STATE(1880), + [sym_class_specifier] = STATE(1880), + [aux_sym_sized_type_specifier_repeat1] = STATE(929), + [sym_sized_type_specifier] = STATE(1880), + [sym__type_specifier] = STATE(1880), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(879), + [sym_type_qualifier] = STATE(879), + [sym_struct_specifier] = STATE(1880), + [sym_union_specifier] = STATE(1880), + [sym_dependent_type] = STATE(1880), + [aux_sym__declaration_specifiers_repeat1] = STATE(879), + [sym_enum_specifier] = STATE(1880), + [sym_scoped_namespace_identifier] = STATE(92), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(3732), + [anon_sym_signed] = ACTIONS(1698), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(3732), + [anon_sym_unsigned] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(1698), + [anon_sym_restrict] = ACTIONS(11), }, [932] = { - [anon_sym_COLON_COLON] = ACTIONS(3722), - [sym_comment] = ACTIONS(3), + [sym_abstract_reference_declarator] = STATE(1888), + [sym_template_function] = STATE(1885), + [sym_abstract_array_declarator] = STATE(1888), + [sym__declarator] = STATE(1885), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(1885), + [sym_array_declarator] = STATE(1885), + [sym_abstract_pointer_declarator] = STATE(1888), + [sym_template_type] = STATE(310), + [sym_destructor_name] = STATE(1885), + [sym_parameter_list] = STATE(1886), + [sym_pointer_declarator] = STATE(1885), + [sym_structured_binding_declarator] = STATE(1885), + [sym_abstract_function_declarator] = STATE(1888), + [sym_variadic_declarator] = STATE(1887), + [sym_variadic_reference_declarator] = STATE(1887), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(1888), + [sym_function_declarator] = STATE(1885), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3736), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(3571), + [anon_sym_STAR] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(3571), + [sym_identifier] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [sym_operator_name] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), }, [933] = { - [aux_sym_field_initializer_list_repeat1] = STATE(1881), - [anon_sym_EQ] = ACTIONS(3724), - [anon_sym_COMMA] = ACTIONS(3726), - [anon_sym_LBRACE] = ACTIONS(3724), + [sym_parameter_list] = STATE(1410), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_RPAREN] = ACTIONS(3746), [sym_comment] = ACTIONS(3), }, [934] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(1891), + [sym_type_qualifier] = STATE(1891), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(3748), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3728), }, [935] = { + [sym_parameter_list] = STATE(1892), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3730), }, [936] = { - [sym_string_literal] = STATE(936), - [aux_sym_concatenated_string_repeat1] = STATE(936), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - }, - [937] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(937), - [sym_storage_class_specifier] = STATE(937), - [sym_type_qualifier] = STATE(937), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1683), - [sym_operator_name] = ACTIONS(1679), - }, - [938] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_EQ] = ACTIONS(3741), - [anon_sym_LBRACE] = ACTIONS(3739), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3739), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3741), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3739), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_COLON] = ACTIONS(3739), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3739), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_SEMI] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_GT_GT] = ACTIONS(3739), - [anon_sym_DASH_DASH] = ACTIONS(3739), - }, - [939] = { - [anon_sym_LPAREN2] = ACTIONS(3743), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_restrict] = ACTIONS(3748), - [anon_sym_mutable] = ACTIONS(3748), - [anon_sym_RPAREN] = ACTIONS(3743), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3752), - [anon_sym_static] = ACTIONS(3748), - [anon_sym_volatile] = ACTIONS(3748), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_explicit] = ACTIONS(3748), - [sym_identifier] = ACTIONS(3748), - [sym_operator_name] = ACTIONS(3746), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_PERCENT] = ACTIONS(3739), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym__Atomic] = ACTIONS(3748), - [anon_sym_constexpr] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3743), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_inline] = ACTIONS(3748), - [anon_sym_GT_GT] = ACTIONS(3739), - [anon_sym_DASH_DASH] = ACTIONS(3739), - }, - [940] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [941] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [942] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [943] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3767), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [944] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3767), - [anon_sym_SEMI] = ACTIONS(3767), - }, - [945] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [946] = { - [sym_destructor_name] = STATE(1874), - [sym_identifier] = ACTIONS(3771), - [sym_operator_name] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - }, - [947] = { - [sym_template_argument_list] = STATE(1886), - [anon_sym_LPAREN2] = ACTIONS(3773), - [anon_sym_DASH] = ACTIONS(3775), - [anon_sym_DASH_GT] = ACTIONS(3773), - [anon_sym_RPAREN] = ACTIONS(3773), - [anon_sym_STAR_EQ] = ACTIONS(3773), - [anon_sym_LT_LT_EQ] = ACTIONS(3773), - [anon_sym_PERCENT_EQ] = ACTIONS(3773), - [anon_sym_COLON_COLON] = ACTIONS(3777), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3773), - [anon_sym_EQ_EQ] = ACTIONS(3773), - [anon_sym_PIPE] = ACTIONS(3775), - [anon_sym_LT] = ACTIONS(3779), - [anon_sym_CARET_EQ] = ACTIONS(3773), - [anon_sym_AMP] = ACTIONS(3775), - [anon_sym_PLUS] = ACTIONS(3775), - [anon_sym_GT_EQ] = ACTIONS(3773), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_SLASH] = ACTIONS(3775), - [anon_sym_RBRACE] = ACTIONS(3773), - [anon_sym_COLON] = ACTIONS(3775), - [anon_sym_SLASH_EQ] = ACTIONS(3773), - [anon_sym_PLUS_EQ] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_PIPE_EQ] = ACTIONS(3773), - [anon_sym_GT_GT_EQ] = ACTIONS(3773), - [anon_sym_COMMA] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3773), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_LT_LT] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3775), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3773), - [anon_sym_DASH_EQ] = ACTIONS(3773), - [anon_sym_SEMI] = ACTIONS(3773), - [anon_sym_BANG_EQ] = ACTIONS(3773), - [anon_sym_AMP_EQ] = ACTIONS(3773), - [anon_sym_AMP_AMP] = ACTIONS(3773), - [anon_sym_LT_EQ] = ACTIONS(3773), - [anon_sym_EQ] = ACTIONS(3775), - [anon_sym_PLUS_PLUS] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3775), - [anon_sym_DASH_DASH] = ACTIONS(3773), - }, - [948] = { - [sym_template_argument_list] = STATE(1887), - [anon_sym_LT] = ACTIONS(3782), - [sym_comment] = ACTIONS(3), - }, - [949] = { - [anon_sym_COLON_COLON] = ACTIONS(3784), - [sym_comment] = ACTIONS(3), - }, - [950] = { - [anon_sym_LPAREN2] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_DASH_GT] = ACTIONS(3786), - [anon_sym_RPAREN] = ACTIONS(3786), - [anon_sym_STAR_EQ] = ACTIONS(3786), - [anon_sym_LT_LT_EQ] = ACTIONS(3786), - [anon_sym_PERCENT_EQ] = ACTIONS(3786), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3786), - [anon_sym_EQ_EQ] = ACTIONS(3786), - [anon_sym_PIPE] = ACTIONS(3788), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_CARET_EQ] = ACTIONS(3786), - [anon_sym_AMP] = ACTIONS(3788), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_GT_EQ] = ACTIONS(3786), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_RBRACE] = ACTIONS(3786), - [anon_sym_COLON] = ACTIONS(3786), - [anon_sym_SLASH_EQ] = ACTIONS(3786), - [anon_sym_PLUS_EQ] = ACTIONS(3786), - [anon_sym_CARET] = ACTIONS(3788), - [anon_sym_GT] = ACTIONS(3788), - [anon_sym_PIPE_EQ] = ACTIONS(3786), - [anon_sym_GT_GT_EQ] = ACTIONS(3786), - [anon_sym_COMMA] = ACTIONS(3786), - [anon_sym_PIPE_PIPE] = ACTIONS(3786), - [anon_sym_DOT] = ACTIONS(3786), - [anon_sym_LT_LT] = ACTIONS(3788), - [anon_sym_LBRACK] = ACTIONS(3786), - [anon_sym_PERCENT] = ACTIONS(3788), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3786), - [anon_sym_DASH_EQ] = ACTIONS(3786), - [anon_sym_SEMI] = ACTIONS(3786), - [anon_sym_BANG_EQ] = ACTIONS(3786), - [anon_sym_AMP_EQ] = ACTIONS(3786), - [anon_sym_AMP_AMP] = ACTIONS(3786), - [anon_sym_LT_EQ] = ACTIONS(3786), - [anon_sym_EQ] = ACTIONS(3788), - [anon_sym_PLUS_PLUS] = ACTIONS(3786), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_DASH_DASH] = ACTIONS(3786), - }, - [951] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [952] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_SLASH] = ACTIONS(3765), - [anon_sym_RBRACE] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3763), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_SEMI] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(3763), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [953] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [954] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [955] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(732), - [sym_logical_expression] = STATE(732), - [sym_bitwise_expression] = STATE(732), - [sym_cast_expression] = STATE(732), - [sym_new_expression] = STATE(732), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(732), - [sym_char_literal] = STATE(732), - [sym_template_function] = STATE(732), - [sym_conditional_expression] = STATE(732), - [sym_equality_expression] = STATE(732), - [sym_relational_expression] = STATE(732), - [sym_delete_expression] = STATE(732), - [sym_sizeof_expression] = STATE(732), - [sym_parenthesized_expression] = STATE(732), - [sym_lambda_expression] = STATE(732), - [sym_concatenated_string] = STATE(732), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(732), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(732), - [sym_math_expression] = STATE(732), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(1327), - [sym_null] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [956] = { - [sym_template_type] = STATE(54), + [sym_template_function] = STATE(733), [sym__expression] = STATE(733), [sym_logical_expression] = STATE(733), [sym_bitwise_expression] = STATE(733), [sym_cast_expression] = STATE(733), - [sym_new_expression] = STATE(733), - [sym_field_expression] = STATE(149), + [sym_delete_expression] = STATE(733), + [sym_field_expression] = STATE(950), [sym_compound_literal_expression] = STATE(733), - [sym_type_descriptor] = STATE(1889), + [sym_lambda_expression] = STATE(733), [sym_char_literal] = STATE(733), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(733), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(733), [sym_equality_expression] = STATE(733), [sym_relational_expression] = STATE(733), - [sym_delete_expression] = STATE(733), [sym_sizeof_expression] = STATE(733), - [sym_subscript_expression] = STATE(149), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(733), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), [sym_concatenated_string] = STATE(733), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(733), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(735), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(733), - [sym_pointer_expression] = STATE(149), + [sym_pointer_expression] = STATE(950), [sym_shift_expression] = STATE(733), [sym_math_expression] = STATE(733), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1329), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(733), + [sym_raw_string_literal] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(1335), + [sym_null] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), + }, + [937] = { + [sym_template_function] = STATE(734), + [sym__expression] = STATE(734), + [sym_logical_expression] = STATE(734), + [sym_bitwise_expression] = STATE(734), + [sym_cast_expression] = STATE(734), + [sym_delete_expression] = STATE(734), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(734), + [sym_char_literal] = STATE(734), + [sym_lambda_expression] = STATE(734), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1893), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(736), + [sym_conditional_expression] = STATE(734), + [sym_equality_expression] = STATE(734), + [sym_relational_expression] = STATE(734), + [sym_sizeof_expression] = STATE(734), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(734), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(734), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(734), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(734), + [sym_math_expression] = STATE(734), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(734), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1337), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1331), + [sym_true] = ACTIONS(1339), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1331), + [sym_null] = ACTIONS(1339), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1337), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1331), + [sym_false] = ACTIONS(1339), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1331), + [sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [957] = { - [sym_destructor_name] = STATE(739), + [938] = { + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(125), + [sym_true] = ACTIONS(127), + [anon_sym_mutable] = ACTIONS(127), + [sym_null] = ACTIONS(127), + [sym_raw_string_literal] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(125), + [anon_sym_sizeof] = ACTIONS(127), + [anon_sym_volatile] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [sym_identifier] = ACTIONS(127), + [anon_sym_new] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym__Atomic] = ACTIONS(127), + [anon_sym_const] = ACTIONS(127), + [sym_number_literal] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_DQUOTE] = ACTIONS(125), + [anon_sym_constexpr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(127), + [sym_nullptr] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_restrict] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + }, + [939] = { + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_final] = ACTIONS(3752), + [sym_noexcept] = ACTIONS(3752), + [anon_sym_mutable] = ACTIONS(3752), + [anon_sym_COMMA] = ACTIONS(3752), + [anon_sym__Atomic] = ACTIONS(3752), + [anon_sym_const] = ACTIONS(3754), + [anon_sym_GT2] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3752), + [anon_sym_constexpr] = ACTIONS(3752), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(3752), + [anon_sym_override] = ACTIONS(3752), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_COLON] = ACTIONS(3752), + [anon_sym_explicit] = ACTIONS(3752), + [anon_sym_RPAREN] = ACTIONS(3752), + [anon_sym_DASH_GT] = ACTIONS(3752), + [anon_sym_EQ] = ACTIONS(3752), + [anon_sym_restrict] = ACTIONS(3752), + [anon_sym_LBRACE] = ACTIONS(3752), + }, + [940] = { + [sym_destructor_name] = STATE(740), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1343), - [sym_operator_name] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(3798), + [sym_identifier] = ACTIONS(1351), + [sym_operator_name] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_delete] = ACTIONS(3756), }, - [958] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(742), - [sym_logical_expression] = STATE(742), - [sym_bitwise_expression] = STATE(742), - [sym_cast_expression] = STATE(742), - [sym_new_expression] = STATE(742), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(742), - [sym_char_literal] = STATE(742), - [sym_template_function] = STATE(742), - [sym_conditional_expression] = STATE(742), - [sym_equality_expression] = STATE(742), - [sym_relational_expression] = STATE(742), - [sym_delete_expression] = STATE(742), - [sym_sizeof_expression] = STATE(742), - [sym_parenthesized_expression] = STATE(742), - [sym_lambda_expression] = STATE(742), - [sym_concatenated_string] = STATE(742), - [sym_string_literal] = STATE(967), + [941] = { + [sym_template_function] = STATE(743), + [sym__expression] = STATE(743), + [sym_logical_expression] = STATE(743), + [sym_bitwise_expression] = STATE(743), + [sym_cast_expression] = STATE(743), + [sym_delete_expression] = STATE(743), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(743), + [sym_lambda_expression] = STATE(743), + [sym_char_literal] = STATE(743), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(742), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(742), - [sym_math_expression] = STATE(742), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(743), + [sym_equality_expression] = STATE(743), + [sym_relational_expression] = STATE(743), + [sym_sizeof_expression] = STATE(743), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(1353), - [sym_null] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(743), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(743), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(743), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(743), + [sym_math_expression] = STATE(743), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(743), + [sym_raw_string_literal] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(1361), + [sym_null] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [959] = { - [sym_template_type] = STATE(754), + [942] = { + [sym_template_function] = STATE(755), [sym__expression] = STATE(755), [sym_logical_expression] = STATE(755), [sym_bitwise_expression] = STATE(755), [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), + [sym_delete_expression] = STATE(755), [sym_field_expression] = STATE(755), [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), [sym_conditional_expression] = STATE(755), [sym_equality_expression] = STATE(755), [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), + [sym_template_type] = STATE(761), [sym_assignment_expression] = STATE(755), [sym_pointer_expression] = STATE(755), [sym_shift_expression] = STATE(755), [sym_math_expression] = STATE(755), [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [960] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1901), - [sym_logical_expression] = STATE(1901), - [sym_bitwise_expression] = STATE(1901), - [sym_cast_expression] = STATE(1901), - [sym_new_expression] = STATE(1901), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(1901), - [sym_char_literal] = STATE(1901), - [sym_template_function] = STATE(1901), - [sym_conditional_expression] = STATE(1901), - [sym_equality_expression] = STATE(1901), - [sym_relational_expression] = STATE(1901), - [sym_delete_expression] = STATE(1901), - [sym_sizeof_expression] = STATE(1901), - [sym_parenthesized_expression] = STATE(1901), - [sym_lambda_expression] = STATE(1901), - [sym_concatenated_string] = STATE(1901), - [sym_string_literal] = STATE(967), + [943] = { + [sym_template_function] = STATE(1905), + [sym__expression] = STATE(1905), + [sym_logical_expression] = STATE(1905), + [sym_bitwise_expression] = STATE(1905), + [sym_cast_expression] = STATE(1905), + [sym_delete_expression] = STATE(1905), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(1905), + [sym_lambda_expression] = STATE(1905), + [sym_char_literal] = STATE(1905), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(1901), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(1901), - [sym_math_expression] = STATE(1901), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(1905), + [sym_equality_expression] = STATE(1905), + [sym_relational_expression] = STATE(1905), + [sym_sizeof_expression] = STATE(1905), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(3820), - [sym_true] = ACTIONS(3822), - [sym_null] = ACTIONS(3822), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(3822), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(3822), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(1905), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(1905), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1905), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(1905), + [sym_math_expression] = STATE(1905), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(1905), + [sym_raw_string_literal] = ACTIONS(3776), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(3778), + [sym_true] = ACTIONS(3780), + [sym_null] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(3780), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [961] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(763), - [sym_logical_expression] = STATE(763), - [sym_bitwise_expression] = STATE(763), - [sym_cast_expression] = STATE(763), - [sym_new_expression] = STATE(763), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(763), - [sym_char_literal] = STATE(763), - [sym_template_function] = STATE(763), - [sym_conditional_expression] = STATE(763), - [sym_equality_expression] = STATE(763), - [sym_relational_expression] = STATE(763), - [sym_delete_expression] = STATE(763), - [sym_sizeof_expression] = STATE(763), - [sym_parenthesized_expression] = STATE(763), - [sym_lambda_expression] = STATE(763), - [sym_concatenated_string] = STATE(763), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(763), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(763), - [sym_math_expression] = STATE(763), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(1391), - [sym_null] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [944] = { + [sym_template_function] = STATE(755), + [sym__expression] = STATE(755), + [sym_logical_expression] = STATE(755), + [sym_bitwise_expression] = STATE(755), + [sym_cast_expression] = STATE(755), + [sym_delete_expression] = STATE(755), + [sym_field_expression] = STATE(755), + [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), + [sym_char_literal] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), + [sym_conditional_expression] = STATE(755), + [sym_equality_expression] = STATE(755), + [sym_relational_expression] = STATE(755), + [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), + [sym_parenthesized_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(755), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(755), + [sym_pointer_expression] = STATE(755), + [sym_shift_expression] = STATE(755), + [sym_math_expression] = STATE(755), + [sym_call_expression] = STATE(755), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(3782), }, - [962] = { - [sym_template_argument_list] = STATE(768), - [sym_initializer_list] = STATE(769), + [945] = { + [sym_initializer_list] = STATE(772), + [sym_template_argument_list] = STATE(773), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_RBRACK] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(3824), - [anon_sym_LT_LT_EQ] = ACTIONS(3824), - [anon_sym_PERCENT_EQ] = ACTIONS(3824), - [anon_sym_COLON_COLON] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(3784), + [anon_sym_LT_LT_EQ] = ACTIONS(3784), + [anon_sym_PERCENT_EQ] = ACTIONS(3784), + [anon_sym_COLON_COLON] = ACTIONS(1408), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_CARET_EQ] = ACTIONS(3824), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_CARET_EQ] = ACTIONS(3784), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(3824), - [anon_sym_PLUS_EQ] = ACTIONS(3824), + [anon_sym_SLASH_EQ] = ACTIONS(3784), + [anon_sym_PLUS_EQ] = ACTIONS(3784), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(3824), - [anon_sym_GT_GT_EQ] = ACTIONS(3824), + [anon_sym_PIPE_EQ] = ACTIONS(3784), + [anon_sym_GT_GT_EQ] = ACTIONS(3784), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), @@ -49272,154 +48838,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(3824), + [anon_sym_DASH_EQ] = ACTIONS(3784), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(3824), + [anon_sym_AMP_EQ] = ACTIONS(3784), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(3826), + [anon_sym_EQ] = ACTIONS(3786), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [963] = { - [sym_union_specifier] = STATE(1905), - [sym_macro_type_specifier] = STATE(1905), - [sym_class_specifier] = STATE(1905), - [sym_template_type] = STATE(777), - [sym_sized_type_specifier] = STATE(1905), - [sym_scoped_namespace_identifier] = STATE(779), - [sym__type_specifier] = STATE(1905), - [aux_sym_sized_type_specifier_repeat1] = STATE(1904), - [sym_argument_list] = STATE(1906), - [sym_enum_specifier] = STATE(1905), - [sym_struct_specifier] = STATE(1905), - [sym_scoped_type_identifier] = STATE(778), - [sym_dependent_type] = STATE(1905), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1404), - [sym_auto] = ACTIONS(3828), - [anon_sym_signed] = ACTIONS(3830), - [anon_sym_long] = ACTIONS(3830), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(3828), - [anon_sym_unsigned] = ACTIONS(3830), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_typename] = ACTIONS(3832), - [sym_identifier] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(3830), + [946] = { + [sym_union_specifier] = STATE(1910), + [sym_macro_type_specifier] = STATE(1910), + [sym_class_specifier] = STATE(1910), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_sized_type_specifier] = STATE(1910), + [sym__type_specifier] = STATE(1910), + [sym_argument_list] = STATE(1911), + [sym_scoped_type_identifier] = STATE(784), + [sym_enum_specifier] = STATE(1910), + [sym_template_type] = STATE(785), + [sym_scoped_namespace_identifier] = STATE(786), + [sym_dependent_type] = STATE(1910), + [sym_struct_specifier] = STATE(1910), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1418), + [sym_auto] = ACTIONS(3788), + [anon_sym_signed] = ACTIONS(3790), + [anon_sym_long] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3790), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_typename] = ACTIONS(3792), + [sym_identifier] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(3790), }, - [964] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1908), - [sym_logical_expression] = STATE(1908), - [sym_bitwise_expression] = STATE(1908), - [sym_cast_expression] = STATE(1908), - [sym_new_expression] = STATE(1908), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(1908), - [sym_char_literal] = STATE(1908), - [sym_template_function] = STATE(1908), - [sym_conditional_expression] = STATE(1908), - [sym_equality_expression] = STATE(1908), - [sym_relational_expression] = STATE(1908), - [sym_delete_expression] = STATE(1908), - [sym_sizeof_expression] = STATE(1908), - [sym_parenthesized_expression] = STATE(1908), - [sym_lambda_expression] = STATE(1908), - [sym_concatenated_string] = STATE(1908), - [sym_string_literal] = STATE(967), + [947] = { + [sym_template_function] = STATE(1913), + [sym__expression] = STATE(1913), + [sym_logical_expression] = STATE(1913), + [sym_bitwise_expression] = STATE(1913), + [sym_cast_expression] = STATE(1913), + [sym_delete_expression] = STATE(1913), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(1913), + [sym_lambda_expression] = STATE(1913), + [sym_char_literal] = STATE(1913), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(1908), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(1908), - [sym_math_expression] = STATE(1908), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(1913), + [sym_equality_expression] = STATE(1913), + [sym_relational_expression] = STATE(1913), + [sym_sizeof_expression] = STATE(1913), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(3836), - [sym_null] = ACTIONS(3836), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3834), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(3836), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(3836), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(1913), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(1913), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1913), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(1913), + [sym_math_expression] = STATE(1913), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(1913), + [sym_raw_string_literal] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(3796), + [sym_null] = ACTIONS(3796), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(3796), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [965] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(3866), + [948] = { + [sym_template_function] = STATE(764), + [sym__expression] = STATE(764), + [sym_logical_expression] = STATE(764), + [sym_bitwise_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_delete_expression] = STATE(764), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(764), + [sym_lambda_expression] = STATE(764), + [sym_char_literal] = STATE(764), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(764), + [sym_equality_expression] = STATE(764), + [sym_relational_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(764), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(764), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(764), + [sym_math_expression] = STATE(764), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(764), + [sym_raw_string_literal] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(1399), + [sym_null] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [966] = { + [949] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(3782), + }, + [950] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_RBRACK] = ACTIONS(165), - [anon_sym_STAR_EQ] = ACTIONS(3824), - [anon_sym_LT_LT_EQ] = ACTIONS(3824), - [anon_sym_PERCENT_EQ] = ACTIONS(3824), + [anon_sym_STAR_EQ] = ACTIONS(3784), + [anon_sym_LT_LT_EQ] = ACTIONS(3784), + [anon_sym_PERCENT_EQ] = ACTIONS(3784), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(3824), + [anon_sym_CARET_EQ] = ACTIONS(3784), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(3824), - [anon_sym_PLUS_EQ] = ACTIONS(3824), + [anon_sym_SLASH_EQ] = ACTIONS(3784), + [anon_sym_PLUS_EQ] = ACTIONS(3784), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(3824), - [anon_sym_GT_GT_EQ] = ACTIONS(3824), + [anon_sym_PIPE_EQ] = ACTIONS(3784), + [anon_sym_GT_GT_EQ] = ACTIONS(3784), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), @@ -49427,20 +49048,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(3824), + [anon_sym_DASH_EQ] = ACTIONS(3784), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(3824), + [anon_sym_AMP_EQ] = ACTIONS(3784), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(3826), + [anon_sym_EQ] = ACTIONS(3786), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [967] = { - [sym_string_literal] = STATE(1921), - [aux_sym_concatenated_string_repeat1] = STATE(1921), + [951] = { + [sym_string_literal] = STATE(1925), + [aux_sym_concatenated_string_repeat1] = STATE(1925), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_GT] = ACTIONS(163), @@ -49448,7 +49069,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), [anon_sym_LT_LT] = ACTIONS(165), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), @@ -49470,135 +49091,1202 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_RBRACK] = ACTIONS(165), }, + [952] = { + [sym_template_function] = STATE(1927), + [sym__expression] = STATE(1927), + [sym_logical_expression] = STATE(1927), + [sym_bitwise_expression] = STATE(1927), + [sym_cast_expression] = STATE(1927), + [sym_delete_expression] = STATE(1927), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(1927), + [sym_lambda_expression] = STATE(1927), + [sym_char_literal] = STATE(1927), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_type_qualifier] = STATE(1928), + [sym_conditional_expression] = STATE(1927), + [sym_equality_expression] = STATE(1927), + [sym_relational_expression] = STATE(1927), + [sym_sizeof_expression] = STATE(1927), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1927), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(1928), + [sym_concatenated_string] = STATE(1927), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1927), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(1927), + [sym_math_expression] = STATE(1927), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(1927), + [sym_raw_string_literal] = ACTIONS(3826), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(3828), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(3828), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(3830), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(3826), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3828), + [sym_nullptr] = ACTIONS(3828), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(3782), + }, + [953] = { + [sym_abstract_reference_declarator] = STATE(935), + [aux_sym_type_definition_repeat1] = STATE(1929), + [sym_abstract_array_declarator] = STATE(935), + [sym_parameter_list] = STATE(934), + [sym_abstract_function_declarator] = STATE(935), + [sym_abstract_pointer_declarator] = STATE(935), + [sym_type_qualifier] = STATE(1929), + [sym__abstract_declarator] = STATE(935), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [954] = { + [sym_union_specifier] = STATE(1932), + [sym_macro_type_specifier] = STATE(1932), + [sym_class_specifier] = STATE(1932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [sym_sized_type_specifier] = STATE(1932), + [sym__type_specifier] = STATE(1932), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(1932), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1932), + [sym_struct_specifier] = STATE(1932), + [anon_sym_unsigned] = ACTIONS(3832), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(3834), + [anon_sym_signed] = ACTIONS(3832), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3832), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(3832), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(3834), + }, + [955] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(1933), + [sym_type_qualifier] = STATE(1933), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(3840), + [anon_sym_volatile] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), + }, + [956] = { + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(3838), + [anon_sym_mutable] = ACTIONS(3838), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(3838), + [anon_sym_const] = ACTIONS(3842), + [anon_sym_GT2] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(3838), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(3838), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(3838), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(3838), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3838), + }, + [957] = { + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3844), + [anon_sym_EQ_EQ] = ACTIONS(3844), + [anon_sym_PIPE] = ACTIONS(3846), + [anon_sym_LT] = ACTIONS(3846), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PLUS] = ACTIONS(3846), + [anon_sym_GT_EQ] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_RBRACE] = ACTIONS(3844), + [anon_sym_COLON] = ACTIONS(3844), + [anon_sym_CARET] = ACTIONS(3844), + [anon_sym_GT] = ACTIONS(3846), + [anon_sym_COMMA] = ACTIONS(3844), + [anon_sym_PIPE_PIPE] = ACTIONS(3844), + [anon_sym_DOT] = ACTIONS(3844), + [anon_sym_LT_LT] = ACTIONS(3844), + [anon_sym_LBRACK] = ACTIONS(3844), + [anon_sym_PERCENT] = ACTIONS(3844), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3844), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym_BANG_EQ] = ACTIONS(3844), + [anon_sym_LT_EQ] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_DASH_GT] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_RPAREN] = ACTIONS(3844), + [anon_sym_GT_GT] = ACTIONS(3844), + [anon_sym_DASH_DASH] = ACTIONS(3844), + }, + [958] = { + [sym_template_function] = STATE(1927), + [sym__expression] = STATE(1927), + [sym_logical_expression] = STATE(1927), + [sym_bitwise_expression] = STATE(1927), + [sym_cast_expression] = STATE(1927), + [sym_delete_expression] = STATE(1927), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(1927), + [sym_lambda_expression] = STATE(1927), + [sym_char_literal] = STATE(1927), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_type_qualifier] = STATE(1935), + [sym_conditional_expression] = STATE(1927), + [sym_equality_expression] = STATE(1927), + [sym_relational_expression] = STATE(1927), + [sym_sizeof_expression] = STATE(1927), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1927), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(1935), + [sym_concatenated_string] = STATE(1927), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1927), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(1927), + [sym_math_expression] = STATE(1927), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(1927), + [sym_raw_string_literal] = ACTIONS(3826), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(3828), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(3828), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(3830), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(3826), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3828), + [sym_nullptr] = ACTIONS(3828), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(3782), + }, + [959] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(1936), + [sym_type_qualifier] = STATE(1936), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(3848), + [anon_sym_volatile] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), + }, + [960] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_EQ] = ACTIONS(3852), + [anon_sym_LBRACE] = ACTIONS(3850), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3850), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3852), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3850), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_RBRACE] = ACTIONS(3850), + [anon_sym_COLON] = ACTIONS(3850), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_RPAREN] = ACTIONS(3850), + [anon_sym_GT_GT] = ACTIONS(3850), + [anon_sym_DASH_DASH] = ACTIONS(3850), + }, + [961] = { + [anon_sym_LPAREN2] = ACTIONS(3854), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_restrict] = ACTIONS(3859), + [anon_sym_mutable] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_static] = ACTIONS(3859), + [anon_sym_volatile] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3854), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_RBRACE] = ACTIONS(3850), + [anon_sym_explicit] = ACTIONS(3859), + [sym_identifier] = ACTIONS(3859), + [sym_operator_name] = ACTIONS(3857), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_register] = ACTIONS(3859), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_PERCENT] = ACTIONS(3850), + [anon_sym_extern] = ACTIONS(3859), + [anon_sym_const] = ACTIONS(3859), + [anon_sym__Atomic] = ACTIONS(3859), + [anon_sym_constexpr] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3854), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_inline] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3850), + [anon_sym_DASH_DASH] = ACTIONS(3850), + }, + [962] = { + [sym_destructor_name] = STATE(1937), + [sym_identifier] = ACTIONS(3866), + [sym_operator_name] = ACTIONS(3868), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [963] = { + [sym_initializer_list] = STATE(1940), + [sym_template_argument_list] = STATE(386), + [sym_argument_list] = STATE(1940), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_COLON_COLON] = ACTIONS(3870), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + }, + [964] = { + [sym_argument_list] = STATE(1941), + [sym_initializer_list] = STATE(1941), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + }, + [965] = { + [anon_sym_COLON_COLON] = ACTIONS(3872), + [sym_comment] = ACTIONS(3), + }, + [966] = { + [aux_sym_field_initializer_list_repeat1] = STATE(1944), + [anon_sym_EQ] = ACTIONS(3874), + [anon_sym_COMMA] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3874), + [sym_comment] = ACTIONS(3), + }, + [967] = { + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3878), + }, [968] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3880), }, [969] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1922), - [sym_logical_expression] = STATE(1922), - [sym_bitwise_expression] = STATE(1922), - [sym_cast_expression] = STATE(1922), - [sym_new_expression] = STATE(1922), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1922), - [sym_char_literal] = STATE(1922), - [sym_template_function] = STATE(1922), - [sym_conditional_expression] = STATE(1922), - [sym_equality_expression] = STATE(1922), - [sym_relational_expression] = STATE(1922), - [sym_delete_expression] = STATE(1922), - [sym_sizeof_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_lambda_expression] = STATE(1922), - [sym_concatenated_string] = STATE(1922), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1922), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1922), - [sym_math_expression] = STATE(1922), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(3870), - [sym_null] = ACTIONS(3870), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3868), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(3870), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(3870), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(3882), + [sym_raw_string_literal] = ACTIONS(3884), + [sym_true] = ACTIONS(3882), + [anon_sym_mutable] = ACTIONS(3882), + [sym_null] = ACTIONS(3882), + [anon_sym_break] = ACTIONS(3882), + [anon_sym_BANG] = ACTIONS(3884), + [anon_sym_sizeof] = ACTIONS(3882), + [anon_sym_volatile] = ACTIONS(3882), + [anon_sym_PLUS] = ACTIONS(3882), + [anon_sym_typedef] = ACTIONS(3882), + [anon_sym_switch] = ACTIONS(3882), + [anon_sym_explicit] = ACTIONS(3882), + [sym_identifier] = ACTIONS(3882), + [anon_sym_delete] = ACTIONS(3882), + [anon_sym_continue] = ACTIONS(3882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3882), + [anon_sym__Atomic] = ACTIONS(3882), + [sym_number_literal] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3882), + [anon_sym_enum] = ACTIONS(3882), + [anon_sym_constexpr] = ACTIONS(3882), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3884), + [anon_sym_namespace] = ACTIONS(3882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3882), + [anon_sym_SQUOTE] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_DASH_DASH] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3882), + [sym_auto] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3882), + [anon_sym_long] = ACTIONS(3882), + [anon_sym_COLON_COLON] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3882), + [sym_preproc_directive] = ACTIONS(3882), + [aux_sym_preproc_if_token1] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3882), + [anon_sym_static] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3884), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3882), + [anon_sym_typename] = ACTIONS(3882), + [anon_sym_short] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(3882), + [anon_sym_goto] = ACTIONS(3882), + [sym_operator_name] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3882), + [anon_sym_try] = ACTIONS(3882), + [anon_sym_for] = ACTIONS(3882), + [aux_sym_preproc_include_token1] = ACTIONS(3882), + [anon_sym_register] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3882), + [anon_sym_LBRACK] = ACTIONS(3882), + [anon_sym_class] = ACTIONS(3882), + [anon_sym_if] = ACTIONS(3882), + [sym_primitive_type] = ACTIONS(3882), + [sym_false] = ACTIONS(3882), + [sym_nullptr] = ACTIONS(3882), + [anon_sym_do] = ACTIONS(3882), + [anon_sym_template] = ACTIONS(3882), + [anon_sym_return] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3884), + [ts_builtin_sym_end] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3882), + [anon_sym_PLUS_PLUS] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3882), + }, + [970] = { + [sym_string_literal] = STATE(970), + [aux_sym_concatenated_string_repeat1] = STATE(970), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3890), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), + }, + [971] = { + [sym_storage_class_specifier] = STATE(971), + [sym_type_qualifier] = STATE(971), + [aux_sym__declaration_specifiers_repeat1] = STATE(971), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1802), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_volatile] = ACTIONS(1799), [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_inline] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1797), + [anon_sym_restrict] = ACTIONS(1799), + [sym_operator_name] = ACTIONS(1795), + }, + [972] = { + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_EQ] = ACTIONS(1141), + [anon_sym_mutable] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_constexpr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_explicit] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [sym_operator_name] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1136), }, - [970] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(1923), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [973] = { + [sym_destructor_name] = STATE(400), + [sym_identifier] = ACTIONS(3893), + [sym_operator_name] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [974] = { + [anon_sym_LPAREN2] = ACTIONS(788), + [anon_sym_EQ] = ACTIONS(797), + [anon_sym_mutable] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_register] = ACTIONS(795), + [anon_sym__Atomic] = ACTIONS(795), + [anon_sym_const] = ACTIONS(795), + [anon_sym_extern] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_constexpr] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_static] = ACTIONS(795), + [anon_sym_volatile] = ACTIONS(795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(797), + [anon_sym_explicit] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_inline] = ACTIONS(795), + [sym_identifier] = ACTIONS(795), + [anon_sym_restrict] = ACTIONS(795), + [sym_operator_name] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(788), + }, + [975] = { + [sym_storage_class_specifier] = STATE(971), + [sym_type_qualifier] = STATE(971), + [aux_sym__declaration_specifiers_repeat1] = STATE(971), + [anon_sym_LPAREN2] = ACTIONS(3895), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(3895), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [sym_identifier] = ACTIONS(3897), + [anon_sym_inline] = ACTIONS(63), + [sym_operator_name] = ACTIONS(3895), + [anon_sym_restrict] = ACTIONS(11), + }, + [976] = { + [sym_destructor_name] = STATE(960), + [sym_identifier] = ACTIONS(3899), + [sym_operator_name] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [977] = { + [sym_compound_statement] = STATE(1949), + [sym_default_method_clause] = STATE(1949), + [sym_delete_method_clause] = STATE(1949), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + }, + [978] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [979] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [980] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [981] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [982] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + }, + [983] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [984] = { + [sym_destructor_name] = STATE(1937), + [sym_identifier] = ACTIONS(3917), + [sym_operator_name] = ACTIONS(3868), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [985] = { + [sym_template_argument_list] = STATE(1952), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_DASH_GT] = ACTIONS(3919), + [anon_sym_RPAREN] = ACTIONS(3919), + [anon_sym_STAR_EQ] = ACTIONS(3919), + [anon_sym_LT_LT_EQ] = ACTIONS(3919), + [anon_sym_PERCENT_EQ] = ACTIONS(3919), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3919), + [anon_sym_EQ_EQ] = ACTIONS(3919), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3925), + [anon_sym_CARET_EQ] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3919), + [anon_sym_STAR] = ACTIONS(3921), + [anon_sym_SLASH] = ACTIONS(3921), + [anon_sym_RBRACE] = ACTIONS(3919), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_SLASH_EQ] = ACTIONS(3919), + [anon_sym_PLUS_EQ] = ACTIONS(3919), + [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_PIPE_EQ] = ACTIONS(3919), + [anon_sym_GT_GT_EQ] = ACTIONS(3919), + [anon_sym_COMMA] = ACTIONS(3919), + [anon_sym_PIPE_PIPE] = ACTIONS(3919), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_LT_LT] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3919), + [anon_sym_DASH_EQ] = ACTIONS(3919), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym_BANG_EQ] = ACTIONS(3919), + [anon_sym_AMP_EQ] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_LT_EQ] = ACTIONS(3919), + [anon_sym_EQ] = ACTIONS(3921), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3919), + }, + [986] = { + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_DASH] = ACTIONS(3930), + [anon_sym_DASH_GT] = ACTIONS(3928), + [anon_sym_RPAREN] = ACTIONS(3928), + [anon_sym_STAR_EQ] = ACTIONS(3928), + [anon_sym_LT_LT_EQ] = ACTIONS(3928), + [anon_sym_PERCENT_EQ] = ACTIONS(3928), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3928), + [anon_sym_PIPE] = ACTIONS(3930), + [anon_sym_LT] = ACTIONS(3930), + [anon_sym_CARET_EQ] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_PLUS] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3930), + [anon_sym_SLASH] = ACTIONS(3930), + [anon_sym_RBRACE] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3928), + [anon_sym_SLASH_EQ] = ACTIONS(3928), + [anon_sym_PLUS_EQ] = ACTIONS(3928), + [anon_sym_CARET] = ACTIONS(3930), + [anon_sym_GT] = ACTIONS(3930), + [anon_sym_PIPE_EQ] = ACTIONS(3928), + [anon_sym_GT_GT_EQ] = ACTIONS(3928), + [anon_sym_COMMA] = ACTIONS(3928), + [anon_sym_PIPE_PIPE] = ACTIONS(3928), + [anon_sym_DOT] = ACTIONS(3928), + [anon_sym_LT_LT] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_PERCENT] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3928), + [anon_sym_DASH_EQ] = ACTIONS(3928), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym_BANG_EQ] = ACTIONS(3928), + [anon_sym_AMP_EQ] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3928), + [anon_sym_EQ] = ACTIONS(3930), + [anon_sym_PLUS_PLUS] = ACTIONS(3928), + [anon_sym_GT_GT] = ACTIONS(3930), + [anon_sym_DASH_DASH] = ACTIONS(3928), + }, + [987] = { + [sym_template_argument_list] = STATE(1953), + [anon_sym_LT] = ACTIONS(3932), + [sym_comment] = ACTIONS(3), + }, + [988] = { + [anon_sym_COLON_COLON] = ACTIONS(3934), + [sym_comment] = ACTIONS(3), + }, + [989] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [990] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3909), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [991] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [992] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [993] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(3944), + }, + [994] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [995] = { + [sym_template_function] = STATE(1956), + [sym__expression] = STATE(1956), + [sym_logical_expression] = STATE(1956), + [sym_bitwise_expression] = STATE(1956), + [sym_cast_expression] = STATE(1956), + [sym_delete_expression] = STATE(1956), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(1956), + [sym_lambda_expression] = STATE(1956), + [sym_char_literal] = STATE(1956), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1956), + [sym_equality_expression] = STATE(1956), + [sym_relational_expression] = STATE(1956), + [sym_sizeof_expression] = STATE(1956), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1956), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(1956), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1956), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(1956), + [sym_math_expression] = STATE(1956), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1956), + [sym_raw_string_literal] = ACTIONS(3946), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(3948), + [sym_null] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3946), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(3948), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), + }, + [996] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1957), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -49606,20 +50294,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -49636,266 +50324,266 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [971] = { - [sym_destructor_name] = STATE(166), + [997] = { + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(640), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(3872), + [sym_identifier] = ACTIONS(642), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(3950), }, - [972] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1925), - [sym_logical_expression] = STATE(1925), - [sym_bitwise_expression] = STATE(1925), - [sym_cast_expression] = STATE(1925), - [sym_new_expression] = STATE(1925), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1925), - [sym_char_literal] = STATE(1925), - [sym_template_function] = STATE(1925), - [sym_conditional_expression] = STATE(1925), - [sym_equality_expression] = STATE(1925), - [sym_relational_expression] = STATE(1925), - [sym_delete_expression] = STATE(1925), - [sym_sizeof_expression] = STATE(1925), - [sym_parenthesized_expression] = STATE(1925), - [sym_lambda_expression] = STATE(1925), - [sym_concatenated_string] = STATE(1925), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1925), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1925), - [sym_math_expression] = STATE(1925), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(3876), - [sym_null] = ACTIONS(3876), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(3876), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [998] = { + [sym_template_function] = STATE(1959), + [sym__expression] = STATE(1959), + [sym_logical_expression] = STATE(1959), + [sym_bitwise_expression] = STATE(1959), + [sym_cast_expression] = STATE(1959), + [sym_delete_expression] = STATE(1959), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(1959), + [sym_lambda_expression] = STATE(1959), + [sym_char_literal] = STATE(1959), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1959), + [sym_equality_expression] = STATE(1959), + [sym_relational_expression] = STATE(1959), + [sym_sizeof_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1959), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(1959), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1959), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(1959), + [sym_math_expression] = STATE(1959), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1959), + [sym_raw_string_literal] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(3954), + [sym_null] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3952), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(3954), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(3954), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [973] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1934), - [sym_logical_expression] = STATE(1934), - [sym_bitwise_expression] = STATE(1934), - [sym_cast_expression] = STATE(1934), - [sym_new_expression] = STATE(1934), - [sym_field_expression] = STATE(1934), - [sym_compound_literal_expression] = STATE(1934), - [sym_char_literal] = STATE(1934), - [sym_template_function] = STATE(1934), - [sym_conditional_expression] = STATE(1934), - [sym_equality_expression] = STATE(1934), - [sym_relational_expression] = STATE(1934), - [sym_delete_expression] = STATE(1934), - [sym_sizeof_expression] = STATE(1934), - [sym_parenthesized_expression] = STATE(1934), - [sym_lambda_expression] = STATE(1934), - [sym_concatenated_string] = STATE(1934), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1934), - [sym_assignment_expression] = STATE(1934), - [sym_pointer_expression] = STATE(1934), - [sym_shift_expression] = STATE(1934), - [sym_math_expression] = STATE(1934), - [sym_call_expression] = STATE(1934), - [sym_lambda_capture_specifier] = STATE(196), + [999] = { + [sym_template_function] = STATE(1968), + [sym__expression] = STATE(1968), + [sym_logical_expression] = STATE(1968), + [sym_bitwise_expression] = STATE(1968), + [sym_cast_expression] = STATE(1968), + [sym_delete_expression] = STATE(1968), + [sym_field_expression] = STATE(1968), + [sym_compound_literal_expression] = STATE(1968), + [sym_lambda_expression] = STATE(1968), + [sym_char_literal] = STATE(1968), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1968), + [sym_equality_expression] = STATE(1968), + [sym_relational_expression] = STATE(1968), + [sym_sizeof_expression] = STATE(1968), + [sym_subscript_expression] = STATE(1968), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(3884), - [sym_null] = ACTIONS(3884), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_parenthesized_expression] = STATE(1968), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(1968), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1968), + [sym_pointer_expression] = STATE(1968), + [sym_shift_expression] = STATE(1968), + [sym_math_expression] = STATE(1968), + [sym_call_expression] = STATE(1968), + [sym_new_expression] = STATE(1968), + [sym_raw_string_literal] = ACTIONS(3956), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(3962), + [sym_null] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3956), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(3962), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [974] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1938), - [sym_logical_expression] = STATE(1938), - [sym_bitwise_expression] = STATE(1938), - [sym_cast_expression] = STATE(1938), - [sym_new_expression] = STATE(1938), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1938), - [sym_char_literal] = STATE(1938), - [sym_template_function] = STATE(1938), - [sym_conditional_expression] = STATE(1938), - [sym_equality_expression] = STATE(1938), - [sym_relational_expression] = STATE(1938), - [sym_delete_expression] = STATE(1938), - [sym_sizeof_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_lambda_expression] = STATE(1938), - [sym_concatenated_string] = STATE(1938), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1938), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1938), - [sym_math_expression] = STATE(1938), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3900), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(3902), - [sym_true] = ACTIONS(3904), - [sym_null] = ACTIONS(3904), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3900), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(3904), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(3904), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1000] = { + [sym_template_function] = STATE(1972), + [sym__expression] = STATE(1972), + [sym_logical_expression] = STATE(1972), + [sym_bitwise_expression] = STATE(1972), + [sym_cast_expression] = STATE(1972), + [sym_delete_expression] = STATE(1972), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(1972), + [sym_lambda_expression] = STATE(1972), + [sym_char_literal] = STATE(1972), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1972), + [sym_equality_expression] = STATE(1972), + [sym_relational_expression] = STATE(1972), + [sym_sizeof_expression] = STATE(1972), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1972), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(1972), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1972), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(1972), + [sym_math_expression] = STATE(1972), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1972), + [sym_raw_string_literal] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(3980), + [sym_true] = ACTIONS(3982), + [sym_null] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [975] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1939), - [sym_logical_expression] = STATE(1939), - [sym_bitwise_expression] = STATE(1939), - [sym_cast_expression] = STATE(1939), - [sym_new_expression] = STATE(1939), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1939), - [sym_char_literal] = STATE(1939), - [sym_template_function] = STATE(1939), - [sym_conditional_expression] = STATE(1939), - [sym_equality_expression] = STATE(1939), - [sym_relational_expression] = STATE(1939), - [sym_delete_expression] = STATE(1939), - [sym_sizeof_expression] = STATE(1939), - [sym_parenthesized_expression] = STATE(1939), - [sym_lambda_expression] = STATE(1939), - [sym_concatenated_string] = STATE(1939), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1939), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1939), - [sym_math_expression] = STATE(1939), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3906), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(3908), - [sym_null] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3906), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(3908), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(3908), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1001] = { + [sym_template_function] = STATE(1973), + [sym__expression] = STATE(1973), + [sym_logical_expression] = STATE(1973), + [sym_bitwise_expression] = STATE(1973), + [sym_cast_expression] = STATE(1973), + [sym_delete_expression] = STATE(1973), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(1973), + [sym_lambda_expression] = STATE(1973), + [sym_char_literal] = STATE(1973), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1973), + [sym_equality_expression] = STATE(1973), + [sym_relational_expression] = STATE(1973), + [sym_sizeof_expression] = STATE(1973), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1973), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(1973), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1973), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(1973), + [sym_math_expression] = STATE(1973), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1973), + [sym_raw_string_literal] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(3986), + [sym_null] = ACTIONS(3986), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(3984), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [976] = { - [sym_template_argument_list] = STATE(377), + [1002] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(3910), - [anon_sym_LT_LT_EQ] = ACTIONS(3910), - [anon_sym_PERCENT_EQ] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(3988), + [anon_sym_LT_LT_EQ] = ACTIONS(3988), + [anon_sym_PERCENT_EQ] = ACTIONS(3988), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(3910), + [anon_sym_CARET_EQ] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(3910), - [anon_sym_PLUS_EQ] = ACTIONS(3910), + [anon_sym_SLASH_EQ] = ACTIONS(3988), + [anon_sym_PLUS_EQ] = ACTIONS(3988), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(3910), - [anon_sym_GT_GT_EQ] = ACTIONS(3910), + [anon_sym_PIPE_EQ] = ACTIONS(3988), + [anon_sym_GT_GT_EQ] = ACTIONS(3988), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), @@ -49903,154 +50591,154 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(3910), + [anon_sym_DASH_EQ] = ACTIONS(3988), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(3910), + [anon_sym_AMP_EQ] = ACTIONS(3988), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [977] = { - [sym_union_specifier] = STATE(1946), - [sym_macro_type_specifier] = STATE(1946), - [sym_class_specifier] = STATE(1946), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1946), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1946), - [aux_sym_sized_type_specifier_repeat1] = STATE(1945), - [sym_argument_list] = STATE(1947), - [sym_enum_specifier] = STATE(1946), - [sym_struct_specifier] = STATE(1946), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(1946), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(3914), - [sym_auto] = ACTIONS(3916), - [anon_sym_signed] = ACTIONS(3918), - [anon_sym_long] = ACTIONS(3918), + [1003] = { + [sym_union_specifier] = STATE(1980), + [sym_macro_type_specifier] = STATE(1980), + [sym_class_specifier] = STATE(1980), + [aux_sym_sized_type_specifier_repeat1] = STATE(1979), + [sym_sized_type_specifier] = STATE(1980), + [sym__type_specifier] = STATE(1980), + [sym_argument_list] = STATE(1981), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(1980), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1980), + [sym_struct_specifier] = STATE(1980), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(3992), + [sym_auto] = ACTIONS(3994), + [anon_sym_signed] = ACTIONS(3996), + [anon_sym_long] = ACTIONS(3996), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(3920), - [sym_primitive_type] = ACTIONS(3916), - [anon_sym_unsigned] = ACTIONS(3918), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3994), + [anon_sym_unsigned] = ACTIONS(3996), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3924), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(3918), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4002), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(3996), }, - [978] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1949), - [sym_logical_expression] = STATE(1949), - [sym_bitwise_expression] = STATE(1949), - [sym_cast_expression] = STATE(1949), - [sym_new_expression] = STATE(1949), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(1949), - [sym_char_literal] = STATE(1949), - [sym_template_function] = STATE(1949), - [sym_conditional_expression] = STATE(1949), - [sym_equality_expression] = STATE(1949), - [sym_relational_expression] = STATE(1949), - [sym_delete_expression] = STATE(1949), - [sym_sizeof_expression] = STATE(1949), - [sym_parenthesized_expression] = STATE(1949), - [sym_lambda_expression] = STATE(1949), - [sym_concatenated_string] = STATE(1949), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(1949), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(1949), - [sym_math_expression] = STATE(1949), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(3926), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(3928), - [sym_null] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(3926), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(3928), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1004] = { + [sym_template_function] = STATE(1983), + [sym__expression] = STATE(1983), + [sym_logical_expression] = STATE(1983), + [sym_bitwise_expression] = STATE(1983), + [sym_cast_expression] = STATE(1983), + [sym_delete_expression] = STATE(1983), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(1983), + [sym_lambda_expression] = STATE(1983), + [sym_char_literal] = STATE(1983), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1983), + [sym_equality_expression] = STATE(1983), + [sym_relational_expression] = STATE(1983), + [sym_sizeof_expression] = STATE(1983), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(1983), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(1983), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1983), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(1983), + [sym_math_expression] = STATE(1983), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(1983), + [sym_raw_string_literal] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(4006), + [sym_null] = ACTIONS(4006), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [979] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(3958), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1005] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [980] = { + [1006] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(3910), - [anon_sym_LT_LT_EQ] = ACTIONS(3910), - [anon_sym_PERCENT_EQ] = ACTIONS(3910), + [anon_sym_STAR_EQ] = ACTIONS(3988), + [anon_sym_LT_LT_EQ] = ACTIONS(3988), + [anon_sym_PERCENT_EQ] = ACTIONS(3988), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(3910), + [anon_sym_CARET_EQ] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_SLASH_EQ] = ACTIONS(3910), - [anon_sym_PLUS_EQ] = ACTIONS(3910), + [anon_sym_SLASH_EQ] = ACTIONS(3988), + [anon_sym_PLUS_EQ] = ACTIONS(3988), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(3910), - [anon_sym_GT_GT_EQ] = ACTIONS(3910), + [anon_sym_PIPE_EQ] = ACTIONS(3988), + [anon_sym_GT_GT_EQ] = ACTIONS(3988), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), @@ -50058,19 +50746,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(3910), + [anon_sym_DASH_EQ] = ACTIONS(3988), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(3910), + [anon_sym_AMP_EQ] = ACTIONS(3988), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [981] = { - [sym_template_argument_list] = STATE(316), + [1007] = { + [sym_template_argument_list] = STATE(356), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_GT] = ACTIONS(163), @@ -50081,7 +50769,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(3962), + [anon_sym_LT] = ACTIONS(4040), [anon_sym_PERCENT] = ACTIONS(165), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(163), @@ -50099,9 +50787,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [982] = { - [sym_string_literal] = STATE(1964), - [aux_sym_concatenated_string_repeat1] = STATE(1964), + [1008] = { + [sym_string_literal] = STATE(1998), + [aux_sym_concatenated_string_repeat1] = STATE(1998), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_GT] = ACTIONS(163), @@ -50131,478 +50819,201 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [983] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [984] = { - [aux_sym_parameter_list_repeat1] = STATE(1967), - [anon_sym_COMMA] = ACTIONS(3965), - [anon_sym_RPAREN] = ACTIONS(3967), - [sym_comment] = ACTIONS(3), + [1009] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [985] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(990), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(1823), + [1010] = { + [anon_sym_LPAREN2] = ACTIONS(4043), + [anon_sym_COMMA] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4043), + [anon_sym_COLON] = ACTIONS(4043), + [anon_sym_GT2] = ACTIONS(4043), + [anon_sym_LBRACK] = ACTIONS(4043), + [anon_sym_RPAREN] = ACTIONS(4043), + [anon_sym_EQ] = ACTIONS(4043), + [anon_sym_LBRACE] = ACTIONS(4043), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [sym_primitive_type] = ACTIONS(356), - }, - [986] = { - [anon_sym_LPAREN2] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [sym_noexcept] = ACTIONS(3969), - [anon_sym_mutable] = ACTIONS(3969), - [anon_sym_COMMA] = ACTIONS(3969), - [anon_sym__Atomic] = ACTIONS(3969), - [anon_sym_const] = ACTIONS(3971), - [anon_sym_GT2] = ACTIONS(3969), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_constexpr] = ACTIONS(3969), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_SEMI] = ACTIONS(3969), - [anon_sym_COLON] = ACTIONS(3969), - [anon_sym_explicit] = ACTIONS(3969), - [anon_sym_RPAREN] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3969), - [anon_sym_restrict] = ACTIONS(3969), - [anon_sym_LBRACE] = ACTIONS(3969), }, - [987] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(1969), - [sym_class_specifier] = STATE(1969), - [sym__type_specifier] = STATE(1969), - [sym_sized_type_specifier] = STATE(1969), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(1970), - [sym_storage_class_specifier] = STATE(1970), - [sym_type_qualifier] = STATE(1970), - [sym_dependent_type] = STATE(1969), - [sym_union_specifier] = STATE(1969), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(1969), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(1971), - [sym_enum_specifier] = STATE(1969), - [sym__declaration_specifiers] = STATE(1972), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(3973), - [anon_sym_signed] = ACTIONS(3975), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(3975), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(3973), - [anon_sym_unsigned] = ACTIONS(3975), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(3977), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(3975), - [anon_sym_restrict] = ACTIONS(11), - }, - [988] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(1973), - [sym_storage_class_specifier] = STATE(1973), - [sym_type_qualifier] = STATE(1973), - [anon_sym_LPAREN2] = ACTIONS(541), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(541), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(541), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_EQ] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [sym_operator_name] = ACTIONS(541), - [anon_sym_inline] = ACTIONS(63), - }, - [989] = { - [sym_macro_type_specifier] = STATE(1974), - [sym_class_specifier] = STATE(1974), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1974), - [sym__type_specifier] = STATE(1974), - [aux_sym__declaration_specifiers_repeat1] = STATE(873), - [sym_storage_class_specifier] = STATE(873), - [sym_type_qualifier] = STATE(873), - [sym_struct_specifier] = STATE(1974), - [sym_union_specifier] = STATE(1974), - [sym_dependent_type] = STATE(1974), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(990), - [sym_enum_specifier] = STATE(1974), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(3979), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(3979), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(11), - }, - [990] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1975), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(3981), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(3981), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(621), - [anon_sym_static] = ACTIONS(625), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_short] = ACTIONS(3981), - [sym_identifier] = ACTIONS(629), - [sym_operator_name] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_register] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(3981), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - }, - [991] = { - [sym__abstract_declarator] = STATE(1983), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(1983), - [sym_function_declarator] = STATE(1980), - [sym_destructor_name] = STATE(1980), - [sym__declarator] = STATE(1980), - [sym_abstract_pointer_declarator] = STATE(1983), - [sym_array_declarator] = STATE(1980), - [sym_variadic_reference_declarator] = STATE(1981), - [sym_parameter_list] = STATE(1982), - [sym_pointer_declarator] = STATE(1980), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(1983), - [sym_abstract_function_declarator] = STATE(1983), - [sym_template_function] = STATE(1980), - [sym_variadic_declarator] = STATE(1981), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(1980), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(3985), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3561), - [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(3561), - [sym_identifier] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(3989), - [sym_operator_name] = ACTIONS(3991), - [anon_sym_EQ] = ACTIONS(3993), - }, - [992] = { - [anon_sym_LPAREN2] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_RBRACK] = ACTIONS(125), - [sym_true] = ACTIONS(127), - [anon_sym_mutable] = ACTIONS(127), - [sym_null] = ACTIONS(127), - [sym_raw_string_literal] = ACTIONS(125), - [anon_sym_COLON_COLON] = ACTIONS(125), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_sizeof] = ACTIONS(127), - [anon_sym_volatile] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_explicit] = ACTIONS(127), - [sym_identifier] = ACTIONS(127), - [anon_sym_new] = ACTIONS(127), - [anon_sym_delete] = ACTIONS(127), - [anon_sym__Atomic] = ACTIONS(127), - [anon_sym_const] = ACTIONS(127), - [sym_number_literal] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(125), - [anon_sym_constexpr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(127), - [sym_nullptr] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_restrict] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - }, - [993] = { - [anon_sym_LPAREN2] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3995), - [anon_sym_GT2] = ACTIONS(3995), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_RPAREN] = ACTIONS(3995), - [anon_sym_EQ] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(3995), - [sym_comment] = ACTIONS(3), - }, - [994] = { - [sym_template_type] = STATE(754), + [1011] = { + [sym_template_function] = STATE(755), [sym__expression] = STATE(755), [sym_logical_expression] = STATE(755), [sym_bitwise_expression] = STATE(755), [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), + [sym_delete_expression] = STATE(755), [sym_field_expression] = STATE(755), [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), [sym_conditional_expression] = STATE(755), [sym_equality_expression] = STATE(755), [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), + [sym_template_type] = STATE(761), [sym_assignment_expression] = STATE(755), [sym_pointer_expression] = STATE(755), [sym_shift_expression] = STATE(755), [sym_math_expression] = STATE(755), [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_RBRACK] = ACTIONS(3997), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(4045), }, - [995] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(3997), + [1012] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(4045), }, - [996] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1986), - [sym_logical_expression] = STATE(1986), - [sym_bitwise_expression] = STATE(1986), - [sym_cast_expression] = STATE(1986), - [sym_new_expression] = STATE(1986), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(1986), - [sym_char_literal] = STATE(1986), - [sym_type_qualifier] = STATE(1987), - [sym_template_function] = STATE(1986), - [sym_conditional_expression] = STATE(1986), - [sym_equality_expression] = STATE(1986), - [sym_relational_expression] = STATE(1986), - [sym_delete_expression] = STATE(1986), - [sym_sizeof_expression] = STATE(1986), - [sym_parenthesized_expression] = STATE(1986), - [sym_lambda_expression] = STATE(1986), - [sym_concatenated_string] = STATE(1986), - [sym_string_literal] = STATE(967), + [1013] = { + [sym_template_function] = STATE(2001), + [sym__expression] = STATE(2001), + [sym_logical_expression] = STATE(2001), + [sym_bitwise_expression] = STATE(2001), + [sym_cast_expression] = STATE(2001), + [sym_delete_expression] = STATE(2001), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2001), + [sym_lambda_expression] = STATE(2001), + [sym_char_literal] = STATE(2001), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(1986), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(1986), - [sym_math_expression] = STATE(1986), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_type_qualifier] = STATE(1928), + [sym_conditional_expression] = STATE(2001), + [sym_equality_expression] = STATE(2001), + [sym_relational_expression] = STATE(2001), + [sym_sizeof_expression] = STATE(2001), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(1987), - [sym_raw_string_literal] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(4001), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(4001), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(4003), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(3999), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(4001), - [sym_nullptr] = ACTIONS(4001), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(3997), + [sym_parenthesized_expression] = STATE(2001), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(1928), + [sym_concatenated_string] = STATE(2001), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2001), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2001), + [sym_math_expression] = STATE(2001), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2001), + [sym_raw_string_literal] = ACTIONS(4047), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(4049), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(4049), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(4051), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(4047), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(4049), + [sym_nullptr] = ACTIONS(4049), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(4045), }, - [997] = { + [1014] = { [anon_sym_LPAREN2] = ACTIONS(125), [anon_sym_final] = ACTIONS(125), [sym_noexcept] = ACTIONS(125), @@ -50626,360 +51037,267 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(125), }, - [998] = { - [sym_union_specifier] = STATE(1991), - [sym_macro_type_specifier] = STATE(1991), - [sym_class_specifier] = STATE(1991), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1991), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1991), - [aux_sym_sized_type_specifier_repeat1] = STATE(1990), - [sym_struct_specifier] = STATE(1991), - [sym_enum_specifier] = STATE(1991), - [sym_scoped_type_identifier] = STATE(1989), - [sym_dependent_type] = STATE(1991), - [anon_sym_unsigned] = ACTIONS(4005), - [anon_sym_struct] = ACTIONS(3914), - [sym_auto] = ACTIONS(4007), - [anon_sym_signed] = ACTIONS(4005), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4005), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(4009), + [1015] = { + [sym_union_specifier] = STATE(2004), + [sym_macro_type_specifier] = STATE(2004), + [sym_class_specifier] = STATE(2004), + [aux_sym_sized_type_specifier_repeat1] = STATE(2003), + [sym_sized_type_specifier] = STATE(2004), + [sym__type_specifier] = STATE(2004), + [sym_scoped_type_identifier] = STATE(2005), + [sym_enum_specifier] = STATE(2004), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(2004), + [sym_struct_specifier] = STATE(2004), + [anon_sym_unsigned] = ACTIONS(4053), + [anon_sym_struct] = ACTIONS(3992), + [sym_auto] = ACTIONS(4055), + [anon_sym_signed] = ACTIONS(4053), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(4053), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4057), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(4005), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(3920), - [sym_primitive_type] = ACTIONS(4007), + [anon_sym_short] = ACTIONS(4053), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(4055), }, - [999] = { - [sym_virtual_specifier] = STATE(1992), - [aux_sym_function_declarator_repeat1] = STATE(1992), - [sym_trailing_return_type] = STATE(1992), - [sym_type_qualifier] = STATE(1992), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(4013), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(4011), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4011), - }, - [1000] = { - [sym_reference_declarator] = STATE(1001), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(1001), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(1001), - [sym_destructor_name] = STATE(1001), - [sym__declarator] = STATE(1001), - [sym_array_declarator] = STATE(1001), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(1001), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(2012), - [sym_comment] = ACTIONS(3), - }, - [1001] = { - [sym_parameter_list] = STATE(1015), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), + [1016] = { + [sym_virtual_specifier] = STATE(2006), + [aux_sym_function_declarator_repeat1] = STATE(2006), + [sym_type_qualifier] = STATE(2006), + [sym_trailing_return_type] = STATE(2006), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(4061), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(4059), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(4059), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(4059), }, - [1002] = { - [anon_sym_LPAREN2] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), + [1017] = { + [sym_parameter_list] = STATE(1028), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(2756), + [anon_sym_COMMA] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2756), }, - [1003] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(1993), - [sym_pointer_declarator] = STATE(1993), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(694), - [sym_template_function] = STATE(1993), - [sym_destructor_name] = STATE(1993), - [sym__declarator] = STATE(1993), - [sym_array_declarator] = STATE(1993), - [sym_scoped_identifier] = STATE(286), - [sym_type_qualifier] = STATE(694), - [sym_function_declarator] = STATE(1993), - [anon_sym_LPAREN2] = ACTIONS(456), + [1018] = { + [aux_sym_type_definition_repeat1] = STATE(695), + [sym_template_function] = STATE(2007), + [sym_destructor_name] = STATE(2007), + [sym_pointer_declarator] = STATE(2007), + [sym_structured_binding_declarator] = STATE(2007), + [sym__declarator] = STATE(2007), + [sym_scoped_identifier] = STATE(282), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(2007), + [sym_array_declarator] = STATE(2007), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(695), + [sym_function_declarator] = STATE(2007), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(620), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(4017), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [sym_operator_name] = ACTIONS(4063), [anon_sym_restrict] = ACTIONS(11), }, - [1004] = { - [sym_parameter_list] = STATE(1015), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - }, - [1005] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(785), - [sym_comment] = ACTIONS(3), - }, - [1006] = { - [aux_sym_structured_binding_declarator_repeat1] = STATE(1996), + [1019] = { + [sym_parameter_list] = STATE(1028), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4019), - [anon_sym_RBRACK] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), }, - [1007] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1997), - [sym_logical_expression] = STATE(1997), - [sym_bitwise_expression] = STATE(1997), - [sym_cast_expression] = STATE(1997), - [sym_new_expression] = STATE(1997), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1997), - [sym_char_literal] = STATE(1997), - [sym_template_function] = STATE(1997), - [sym_conditional_expression] = STATE(1997), - [sym_equality_expression] = STATE(1997), - [sym_relational_expression] = STATE(1997), - [sym_delete_expression] = STATE(1997), - [sym_sizeof_expression] = STATE(1997), - [sym_parenthesized_expression] = STATE(1997), - [sym_initializer_list] = STATE(1998), - [sym_concatenated_string] = STATE(1997), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(1997), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1997), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1997), - [sym_math_expression] = STATE(1997), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(4025), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(4025), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4023), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(4025), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [1008] = { + [1020] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(793), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4027), }, - [1009] = { - [sym_template_type] = STATE(2003), - [sym__expression] = STATE(702), - [sym_logical_expression] = STATE(702), - [sym_bitwise_expression] = STATE(702), - [sym_cast_expression] = STATE(702), - [sym_new_expression] = STATE(702), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(702), - [sym_char_literal] = STATE(702), - [aux_sym__declaration_specifiers_repeat1] = STATE(989), - [sym_storage_class_specifier] = STATE(989), - [sym_dependent_type] = STATE(988), - [sym_struct_specifier] = STATE(988), - [sym_union_specifier] = STATE(988), - [sym_type_qualifier] = STATE(989), - [sym_template_function] = STATE(702), - [sym_conditional_expression] = STATE(702), - [sym_equality_expression] = STATE(702), - [sym_relational_expression] = STATE(702), - [sym_sizeof_expression] = STATE(702), - [sym__declaration_specifiers] = STATE(991), - [sym_subscript_expression] = STATE(149), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(702), - [aux_sym_function_definition_repeat1] = STATE(987), - [sym_macro_type_specifier] = STATE(988), - [sym_class_specifier] = STATE(988), - [sym__type_specifier] = STATE(988), - [sym_sized_type_specifier] = STATE(988), - [sym_concatenated_string] = STATE(702), - [sym_string_literal] = STATE(151), - [sym_delete_expression] = STATE(702), - [sym_lambda_expression] = STATE(702), - [sym_scoped_identifier] = STATE(73), - [sym_parameter_declaration] = STATE(984), - [sym_optional_parameter_declaration] = STATE(984), - [sym_initializer_list] = STATE(703), - [sym_assignment_expression] = STATE(702), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(702), - [sym_math_expression] = STATE(702), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(2004), - [sym_attribute] = STATE(987), - [aux_sym_sized_type_specifier_repeat1] = STATE(990), - [sym_enum_specifier] = STATE(988), - [sym_variadic_parameter_declaration] = STATE(984), - [sym_raw_string_literal] = ACTIONS(1263), + [1021] = { + [sym_template_function] = STATE(703), + [sym__expression] = STATE(703), + [sym_logical_expression] = STATE(703), + [sym_bitwise_expression] = STATE(703), + [sym_cast_expression] = STATE(703), + [sym_delete_expression] = STATE(703), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(703), + [aux_sym_function_definition_repeat1] = STATE(930), + [sym_char_literal] = STATE(703), + [sym_lambda_expression] = STATE(703), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(928), + [sym_struct_specifier] = STATE(928), + [sym_union_specifier] = STATE(928), + [sym_storage_class_specifier] = STATE(931), + [sym_type_qualifier] = STATE(931), + [sym_conditional_expression] = STATE(703), + [sym_equality_expression] = STATE(703), + [sym_relational_expression] = STATE(703), + [sym_sizeof_expression] = STATE(703), + [sym__declaration_specifiers] = STATE(932), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(703), + [sym_concatenated_string] = STATE(703), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(928), + [sym_class_specifier] = STATE(928), + [sym__type_specifier] = STATE(928), + [sym_sized_type_specifier] = STATE(928), + [aux_sym_sized_type_specifier_repeat1] = STATE(929), + [sym_lambda_capture_specifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(727), + [sym_attribute] = STATE(930), + [sym_parameter_declaration] = STATE(925), + [sym_optional_parameter_declaration] = STATE(925), + [sym_template_type] = STATE(728), + [sym_variadic_parameter_declaration] = STATE(925), + [sym_assignment_expression] = STATE(703), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(703), + [sym_math_expression] = STATE(703), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(703), + [sym_initializer_list] = STATE(704), + [aux_sym__declaration_specifiers_repeat1] = STATE(931), + [sym_enum_specifier] = STATE(928), + [sym_raw_string_literal] = ACTIONS(1269), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1821), - [sym_true] = ACTIONS(1265), + [sym_auto] = ACTIONS(1696), + [sym_true] = ACTIONS(1271), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1265), + [sym_null] = ACTIONS(1271), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [anon_sym_COLON_COLON] = ACTIONS(4029), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_LPAREN2] = ACTIONS(634), + [anon_sym_COLON_COLON] = ACTIONS(4065), + [anon_sym_signed] = ACTIONS(1698), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(296), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1700), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(4031), + [sym_identifier] = ACTIONS(4067), [anon_sym_new] = ACTIONS(284), - [anon_sym_short] = ACTIONS(1823), + [anon_sym_short] = ACTIONS(1698), [anon_sym_delete] = ACTIONS(288), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1269), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1821), - [sym_false] = ACTIONS(1265), + [sym_primitive_type] = ACTIONS(1696), + [sym_false] = ACTIONS(1271), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(1823), + [sym_nullptr] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1698), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(4033), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(4069), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_restrict] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(175), }, - [1010] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2005), - [sym_logical_expression] = STATE(2005), - [sym_bitwise_expression] = STATE(2005), - [sym_cast_expression] = STATE(2005), - [sym_new_expression] = STATE(2005), + [1022] = { + [sym_template_function] = STATE(2011), + [sym__expression] = STATE(2011), + [sym_logical_expression] = STATE(2011), + [sym_bitwise_expression] = STATE(2011), + [sym_cast_expression] = STATE(2011), + [sym_delete_expression] = STATE(2011), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(2005), - [sym_char_literal] = STATE(2005), - [sym_template_function] = STATE(2005), - [sym_conditional_expression] = STATE(2005), - [sym_equality_expression] = STATE(2005), - [sym_relational_expression] = STATE(2005), - [sym_delete_expression] = STATE(2005), - [sym_sizeof_expression] = STATE(2005), - [sym_parenthesized_expression] = STATE(2005), - [sym_initializer_list] = STATE(2006), - [sym_concatenated_string] = STATE(2005), - [sym_string_literal] = STATE(52), - [sym_lambda_expression] = STATE(2005), + [sym_compound_literal_expression] = STATE(2011), + [sym_lambda_expression] = STATE(2011), + [sym_char_literal] = STATE(2011), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2011), + [sym_equality_expression] = STATE(2011), + [sym_relational_expression] = STATE(2011), + [sym_sizeof_expression] = STATE(2011), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(2005), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2012), + [sym_parenthesized_expression] = STATE(2011), + [sym_string_literal] = STATE(53), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2011), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2011), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(2005), - [sym_math_expression] = STATE(2005), + [sym_shift_expression] = STATE(2011), + [sym_math_expression] = STATE(2011), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4035), + [sym_new_expression] = STATE(2011), + [sym_raw_string_literal] = ACTIONS(4071), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(4037), + [sym_true] = ACTIONS(4073), [anon_sym_DASH_DASH] = ACTIONS(45), - [sym_null] = ACTIONS(4037), + [sym_null] = ACTIONS(4073), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4035), + [sym_number_literal] = ACTIONS(4071), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(4037), + [sym_false] = ACTIONS(4073), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(4037), + [sym_nullptr] = ACTIONS(4073), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -50992,140 +51310,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(175), }, - [1011] = { - [sym_reference_declarator] = STATE(2007), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2007), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(2007), - [sym_destructor_name] = STATE(2007), - [sym__declarator] = STATE(2007), - [sym_init_declarator] = STATE(2008), - [sym_array_declarator] = STATE(2007), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2007), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(4039), + [1023] = { + [sym_template_function] = STATE(2013), + [sym_destructor_name] = STATE(2013), + [sym_pointer_declarator] = STATE(2013), + [sym_structured_binding_declarator] = STATE(2013), + [sym__declarator] = STATE(2013), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2013), + [sym_array_declarator] = STATE(2013), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(2014), + [sym_function_declarator] = STATE(2013), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(4075), [sym_comment] = ACTIONS(3), }, - [1012] = { - [sym_goto_statement] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_logical_expression] = STATE(2024), - [sym_for_range_loop] = STATE(133), - [sym_cast_expression] = STATE(2024), - [sym_declaration] = STATE(133), - [sym_field_expression] = STATE(2022), - [sym_field_designator] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_switch_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(2024), - [sym_relational_expression] = STATE(2024), - [sym_delete_expression] = STATE(2024), - [sym_subscript_expression] = STATE(2022), - [sym_scoped_identifier] = STATE(50), + [1024] = { + [sym_goto_statement] = STATE(134), + [sym_preproc_function_def] = STATE(134), + [sym_logical_expression] = STATE(2031), + [sym_try_statement] = STATE(134), + [sym_cast_expression] = STATE(2031), + [sym_lambda_expression] = STATE(2031), + [sym_field_expression] = STATE(2029), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(134), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_field_designator] = STATE(452), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(134), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(134), + [sym_namespace_definition] = STATE(134), + [sym_conditional_expression] = STATE(2031), + [sym_relational_expression] = STATE(2031), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(134), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(2030), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(134), [sym_initializer_list] = STATE(451), - [sym_type_definition] = STATE(133), - [sym_string_literal] = STATE(2023), - [sym_function_declarator] = STATE(51), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_preproc_include] = STATE(133), - [sym_assignment_expression] = STATE(2024), - [sym_preproc_ifdef] = STATE(133), - [sym_shift_expression] = STATE(2024), - [sym_using_declaration] = STATE(133), - [sym_call_expression] = STATE(2022), - [sym_attribute] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(134), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(134), + [sym_preproc_include] = STATE(134), + [sym_assignment_expression] = STATE(2031), + [sym_preproc_ifdef] = STATE(134), + [sym_shift_expression] = STATE(2031), + [sym_for_range_loop] = STATE(134), + [sym_call_expression] = STATE(2029), [sym_initializer_pair] = STATE(451), - [sym_compound_statement] = STATE(133), - [sym_template_instantiation] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(133), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(2024), - [sym_preproc_def] = STATE(133), - [sym_bitwise_expression] = STATE(2024), - [sym_new_expression] = STATE(2024), - [sym_function_definition] = STATE(133), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(2024), - [sym_char_literal] = STATE(2024), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [aux_sym_translation_unit_repeat1] = STATE(133), - [sym_storage_class_specifier] = STATE(48), - [sym_if_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(133), - [sym_equality_expression] = STATE(2024), - [sym_try_statement] = STATE(133), - [sym_sizeof_expression] = STATE(2024), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(2024), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(2024), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(2024), - [sym_structured_binding_declaration] = STATE(133), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(133), - [sym_preproc_if] = STATE(133), - [sym_pointer_expression] = STATE(2022), - [sym_namespace_definition] = STATE(133), - [sym_math_expression] = STATE(2024), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(133), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [sym_subscript_designator] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_raw_string_literal] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4043), - [sym_true] = ACTIONS(4045), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(134), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_expression_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(2031), + [sym_preproc_def] = STATE(134), + [sym_bitwise_expression] = STATE(2031), + [sym_delete_expression] = STATE(2031), + [sym_function_definition] = STATE(134), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(2031), + [sym_char_literal] = STATE(2031), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(134), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(134), + [sym_equality_expression] = STATE(2031), + [sym_using_declaration] = STATE(134), + [sym_sizeof_expression] = STATE(2031), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(2031), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(2031), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(134), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(134), + [sym_preproc_if] = STATE(134), + [sym_pointer_expression] = STATE(2029), + [sym_new_expression] = STATE(2031), + [sym_math_expression] = STATE(2031), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(134), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(134), + [aux_sym_translation_unit_repeat1] = STATE(134), + [sym_subscript_designator] = STATE(452), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_raw_string_literal] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4079), + [sym_true] = ACTIONS(4081), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4045), + [sym_null] = ACTIONS(4081), [anon_sym_break] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_sizeof] = ACTIONS(4049), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_sizeof] = ACTIONS(4085), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4079), [anon_sym_typedef] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(4051), - [anon_sym_delete] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4087), + [anon_sym_delete] = ACTIONS(4089), [anon_sym_continue] = ACTIONS(27), [aux_sym_preproc_ifdef_token1] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(760), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4041), + [sym_number_literal] = ACTIONS(4077), [anon_sym_extern] = ACTIONS(31), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), @@ -51135,25 +51455,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(39), [aux_sym_preproc_ifdef_token2] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [anon_sym_LPAREN2] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [anon_sym_LPAREN2] = ACTIONS(4095), [anon_sym_struct] = ACTIONS(49), [sym_auto] = ACTIONS(51), [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4097), [anon_sym_using] = ACTIONS(55), [sym_preproc_directive] = ACTIONS(57), [aux_sym_preproc_if_token1] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4099), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_RBRACE] = ACTIONS(4101), + [anon_sym_STAR] = ACTIONS(4103), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), - [anon_sym_new] = ACTIONS(4069), + [anon_sym_new] = ACTIONS(4105), [anon_sym_goto] = ACTIONS(73), [sym_operator_name] = ACTIONS(75), [anon_sym_while] = ACTIONS(250), @@ -51163,1057 +51483,569 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_LBRACK] = ACTIONS(4107), [anon_sym_class] = ACTIONS(89), [anon_sym_if] = ACTIONS(256), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(4045), - [sym_nullptr] = ACTIONS(4045), + [sym_false] = ACTIONS(4081), + [sym_nullptr] = ACTIONS(4081), [anon_sym_do] = ACTIONS(95), [anon_sym_template] = ACTIONS(97), [anon_sym_return] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4109), [anon_sym_SEMI] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_restrict] = ACTIONS(11), }, - [1013] = { - [anon_sym_DASH] = ACTIONS(4075), - [sym_raw_string_literal] = ACTIONS(4077), - [sym_true] = ACTIONS(4075), - [anon_sym_mutable] = ACTIONS(4075), - [sym_null] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [anon_sym_BANG] = ACTIONS(4077), - [anon_sym_sizeof] = ACTIONS(4075), - [anon_sym_volatile] = ACTIONS(4075), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_typedef] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(4075), - [anon_sym_explicit] = ACTIONS(4075), - [sym_identifier] = ACTIONS(4075), - [anon_sym_delete] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4075), - [anon_sym__Atomic] = ACTIONS(4075), - [sym_number_literal] = ACTIONS(4077), - [anon_sym_extern] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_constexpr] = ACTIONS(4075), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4077), - [anon_sym_namespace] = ACTIONS(4075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4075), - [anon_sym_SQUOTE] = ACTIONS(4077), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_LPAREN2] = ACTIONS(4077), - [anon_sym_struct] = ACTIONS(4075), - [sym_auto] = ACTIONS(4075), - [anon_sym_signed] = ACTIONS(4075), - [anon_sym_long] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_using] = ACTIONS(4075), - [sym_preproc_directive] = ACTIONS(4075), - [aux_sym_preproc_if_token1] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_STAR] = ACTIONS(4077), - [anon_sym_union] = ACTIONS(4075), - [anon_sym_typename] = ACTIONS(4075), - [anon_sym_short] = ACTIONS(4075), - [anon_sym_new] = ACTIONS(4075), - [anon_sym_goto] = ACTIONS(4075), - [sym_operator_name] = ACTIONS(4077), - [anon_sym_while] = ACTIONS(4075), - [anon_sym_try] = ACTIONS(4075), - [anon_sym_for] = ACTIONS(4075), - [aux_sym_preproc_include_token1] = ACTIONS(4075), - [anon_sym_register] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(4077), - [anon_sym_const] = ACTIONS(4075), - [anon_sym_LBRACK] = ACTIONS(4075), - [anon_sym_class] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [sym_primitive_type] = ACTIONS(4075), - [sym_false] = ACTIONS(4075), - [sym_nullptr] = ACTIONS(4075), - [anon_sym_do] = ACTIONS(4075), - [anon_sym_template] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_TILDE] = ACTIONS(4077), - [anon_sym_SEMI] = ACTIONS(4077), - [ts_builtin_sym_end] = ACTIONS(4077), - [aux_sym_preproc_def_token1] = ACTIONS(4075), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_restrict] = ACTIONS(4075), - }, - [1014] = { - [anon_sym_DASH] = ACTIONS(4079), - [sym_raw_string_literal] = ACTIONS(4081), - [sym_true] = ACTIONS(4079), - [anon_sym_mutable] = ACTIONS(4079), - [sym_null] = ACTIONS(4079), - [anon_sym_break] = ACTIONS(4079), - [anon_sym_BANG] = ACTIONS(4081), - [anon_sym_sizeof] = ACTIONS(4079), - [anon_sym_volatile] = ACTIONS(4079), - [anon_sym_PLUS] = ACTIONS(4079), - [anon_sym_typedef] = ACTIONS(4079), - [anon_sym_switch] = ACTIONS(4079), - [anon_sym_explicit] = ACTIONS(4079), - [sym_identifier] = ACTIONS(4079), - [anon_sym_delete] = ACTIONS(4079), - [anon_sym_continue] = ACTIONS(4079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4079), - [anon_sym__Atomic] = ACTIONS(4079), - [sym_number_literal] = ACTIONS(4081), - [anon_sym_extern] = ACTIONS(4079), - [anon_sym_enum] = ACTIONS(4079), - [anon_sym_constexpr] = ACTIONS(4079), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4081), - [anon_sym_namespace] = ACTIONS(4079), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4079), - [anon_sym_SQUOTE] = ACTIONS(4081), - [anon_sym_LBRACE] = ACTIONS(4081), - [anon_sym_DASH_DASH] = ACTIONS(4081), - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_struct] = ACTIONS(4079), - [sym_auto] = ACTIONS(4079), - [anon_sym_signed] = ACTIONS(4079), - [anon_sym_long] = ACTIONS(4079), - [anon_sym_COLON_COLON] = ACTIONS(4081), - [anon_sym_using] = ACTIONS(4079), - [sym_preproc_directive] = ACTIONS(4079), - [aux_sym_preproc_if_token1] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(4079), - [anon_sym_static] = ACTIONS(4079), - [anon_sym_RBRACE] = ACTIONS(4081), - [anon_sym_STAR] = ACTIONS(4081), - [anon_sym_union] = ACTIONS(4079), - [anon_sym_typename] = ACTIONS(4079), - [anon_sym_short] = ACTIONS(4079), - [anon_sym_new] = ACTIONS(4079), - [anon_sym_goto] = ACTIONS(4079), - [sym_operator_name] = ACTIONS(4081), - [anon_sym_while] = ACTIONS(4079), - [anon_sym_try] = ACTIONS(4079), - [anon_sym_for] = ACTIONS(4079), - [aux_sym_preproc_include_token1] = ACTIONS(4079), - [anon_sym_register] = ACTIONS(4079), - [anon_sym_DQUOTE] = ACTIONS(4081), - [anon_sym_const] = ACTIONS(4079), - [anon_sym_LBRACK] = ACTIONS(4079), - [anon_sym_class] = ACTIONS(4079), - [anon_sym_if] = ACTIONS(4079), - [sym_primitive_type] = ACTIONS(4079), - [sym_false] = ACTIONS(4079), - [sym_nullptr] = ACTIONS(4079), - [anon_sym_do] = ACTIONS(4079), - [anon_sym_template] = ACTIONS(4079), - [anon_sym_return] = ACTIONS(4079), - [anon_sym_TILDE] = ACTIONS(4081), - [anon_sym_SEMI] = ACTIONS(4081), - [ts_builtin_sym_end] = ACTIONS(4081), - [aux_sym_preproc_def_token1] = ACTIONS(4079), - [anon_sym_AMP_AMP] = ACTIONS(4081), - [anon_sym_inline] = ACTIONS(4079), - [anon_sym_PLUS_PLUS] = ACTIONS(4081), - [anon_sym_restrict] = ACTIONS(4079), - }, - [1015] = { - [sym_virtual_specifier] = STATE(2026), - [aux_sym_function_declarator_repeat1] = STATE(2026), - [sym_trailing_return_type] = STATE(2026), - [sym_type_qualifier] = STATE(2026), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(4083), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(1841), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1841), - }, - [1016] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_SEMI] = ACTIONS(4087), - }, - [1017] = { - [aux_sym_declaration_repeat1] = STATE(2028), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(4089), - }, - [1018] = { - [sym_compound_statement] = STATE(2029), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(2030), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(4089), - }, - [1019] = { - [aux_sym_declaration_repeat1] = STATE(2030), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(4089), - }, - [1020] = { - [sym_parameter_list] = STATE(1415), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_RPAREN] = ACTIONS(4091), - [sym_comment] = ACTIONS(3), - }, - [1021] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(2033), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2033), - [anon_sym_LPAREN2] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(4093), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_DASH_GT] = ACTIONS(4095), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [1022] = { - [sym_parameter_list] = STATE(2034), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(2067), - [sym_comment] = ACTIONS(3), - }, - [1023] = { - [anon_sym_LPAREN2] = ACTIONS(4097), - [anon_sym_final] = ACTIONS(4097), - [sym_noexcept] = ACTIONS(4097), - [anon_sym_mutable] = ACTIONS(4097), - [anon_sym_COMMA] = ACTIONS(4097), - [anon_sym__Atomic] = ACTIONS(4097), - [anon_sym_const] = ACTIONS(4099), - [anon_sym_GT2] = ACTIONS(4097), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_constexpr] = ACTIONS(4097), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4097), - [anon_sym_override] = ACTIONS(4097), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_COLON] = ACTIONS(4097), - [anon_sym_explicit] = ACTIONS(4097), - [anon_sym_RPAREN] = ACTIONS(4097), - [anon_sym_DASH_GT] = ACTIONS(4097), - [anon_sym_EQ] = ACTIONS(4097), - [anon_sym_restrict] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4097), - }, - [1024] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(755), - [sym_logical_expression] = STATE(755), - [sym_bitwise_expression] = STATE(755), - [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), - [sym_field_expression] = STATE(755), - [sym_compound_literal_expression] = STATE(755), - [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), - [sym_conditional_expression] = STATE(755), - [sym_equality_expression] = STATE(755), - [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), - [sym_sizeof_expression] = STATE(755), - [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), - [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), - [sym_assignment_expression] = STATE(755), - [sym_pointer_expression] = STATE(755), - [sym_shift_expression] = STATE(755), - [sym_math_expression] = STATE(755), - [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_RBRACK] = ACTIONS(4101), - }, [1025] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(4101), - }, - [1026] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2037), - [sym_logical_expression] = STATE(2037), - [sym_bitwise_expression] = STATE(2037), - [sym_cast_expression] = STATE(2037), - [sym_new_expression] = STATE(2037), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2037), - [sym_char_literal] = STATE(2037), - [sym_type_qualifier] = STATE(1987), - [sym_template_function] = STATE(2037), - [sym_conditional_expression] = STATE(2037), - [sym_equality_expression] = STATE(2037), - [sym_relational_expression] = STATE(2037), - [sym_delete_expression] = STATE(2037), - [sym_sizeof_expression] = STATE(2037), - [sym_parenthesized_expression] = STATE(2037), - [sym_lambda_expression] = STATE(2037), - [sym_concatenated_string] = STATE(2037), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2037), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2037), - [sym_math_expression] = STATE(2037), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(1987), - [sym_raw_string_literal] = ACTIONS(4103), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(4105), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(4105), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(4107), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(4103), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(4105), - [sym_nullptr] = ACTIONS(4105), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(4101), - }, - [1027] = { - [sym_abstract_array_declarator] = STATE(1022), - [sym_parameter_list] = STATE(1021), - [sym_abstract_reference_declarator] = STATE(1022), - [sym_abstract_function_declarator] = STATE(1022), - [aux_sym_type_definition_repeat1] = STATE(2038), - [sym_abstract_pointer_declarator] = STATE(1022), - [sym_type_qualifier] = STATE(2038), - [sym__abstract_declarator] = STATE(1022), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [1028] = { - [sym_union_specifier] = STATE(2041), - [sym_macro_type_specifier] = STATE(2041), - [sym_class_specifier] = STATE(2041), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2041), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(2041), - [aux_sym_sized_type_specifier_repeat1] = STATE(2040), - [sym_struct_specifier] = STATE(2041), - [sym_enum_specifier] = STATE(2041), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(2041), - [anon_sym_unsigned] = ACTIONS(4109), - [anon_sym_struct] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(4111), + [sym_raw_string_literal] = ACTIONS(4113), + [sym_true] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [sym_null] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_switch] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [sym_identifier] = ACTIONS(4111), + [anon_sym_delete] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [sym_number_literal] = ACTIONS(4113), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym_namespace] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_DASH_DASH] = ACTIONS(4113), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_struct] = ACTIONS(4111), [sym_auto] = ACTIONS(4111), - [anon_sym_signed] = ACTIONS(4109), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4109), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(4113), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(4109), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_using] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_RBRACE] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_goto] = ACTIONS(4111), + [sym_operator_name] = ACTIONS(4113), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [aux_sym_preproc_include_token1] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_DQUOTE] = ACTIONS(4113), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), [sym_primitive_type] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [sym_nullptr] = ACTIONS(4111), + [anon_sym_do] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4113), + [ts_builtin_sym_end] = ACTIONS(4113), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym_PLUS_PLUS] = ACTIONS(4113), + [anon_sym_restrict] = ACTIONS(4111), }, - [1029] = { - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(4115), + [1026] = { + [anon_sym_DASH] = ACTIONS(4115), + [sym_raw_string_literal] = ACTIONS(4117), + [sym_true] = ACTIONS(4115), [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_COMMA] = ACTIONS(4115), + [sym_null] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_sizeof] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [sym_identifier] = ACTIONS(4115), + [anon_sym_delete] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4117), - [anon_sym_GT2] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), + [sym_number_literal] = ACTIONS(4117), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), [anon_sym_constexpr] = ACTIONS(4115), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_COLON] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(4115), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(4115), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4115), - }, - [1030] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(2043), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2043), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(4119), - [anon_sym_volatile] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym_namespace] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_struct] = ACTIONS(4115), + [sym_auto] = ACTIONS(4115), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_using] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_new] = ACTIONS(4115), + [anon_sym_goto] = ACTIONS(4115), + [sym_operator_name] = ACTIONS(4117), + [anon_sym_while] = ACTIONS(4115), + [anon_sym_try] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [aux_sym_preproc_include_token1] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_const] = ACTIONS(4115), [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(2063), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), - }, - [1031] = { - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4123), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4123), - [anon_sym_AMP] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4123), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4121), - [anon_sym_GT] = ACTIONS(4123), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LT_LT] = ACTIONS(4121), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_PERCENT] = ACTIONS(4121), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4121), - [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [sym_nullptr] = ACTIONS(4115), + [anon_sym_do] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4117), + [ts_builtin_sym_end] = ACTIONS(4117), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_restrict] = ACTIONS(4115), }, - [1032] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2037), - [sym_logical_expression] = STATE(2037), - [sym_bitwise_expression] = STATE(2037), - [sym_cast_expression] = STATE(2037), - [sym_new_expression] = STATE(2037), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2037), - [sym_char_literal] = STATE(2037), - [sym_type_qualifier] = STATE(2044), - [sym_template_function] = STATE(2037), - [sym_conditional_expression] = STATE(2037), - [sym_equality_expression] = STATE(2037), - [sym_relational_expression] = STATE(2037), - [sym_delete_expression] = STATE(2037), - [sym_sizeof_expression] = STATE(2037), - [sym_parenthesized_expression] = STATE(2037), - [sym_lambda_expression] = STATE(2037), - [sym_concatenated_string] = STATE(2037), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2037), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2037), - [sym_math_expression] = STATE(2037), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(2044), - [sym_raw_string_literal] = ACTIONS(4103), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(4105), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(4105), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(4107), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(4103), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(4105), - [sym_nullptr] = ACTIONS(4105), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(4101), + [1027] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4119), + [anon_sym_SEMI] = ACTIONS(4119), }, - [1033] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(2045), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2045), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(4125), - [anon_sym_volatile] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [1028] = { + [sym_virtual_specifier] = STATE(2033), + [aux_sym_function_declarator_repeat1] = STATE(2033), + [sym_type_qualifier] = STATE(2033), + [sym_trailing_return_type] = STATE(2033), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(4121), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(2063), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1899), }, - [1034] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(1363), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [1029] = { + [aux_sym_declaration_repeat1] = STATE(2034), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(3714), + }, + [1030] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(1358), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1035] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), + [1031] = { + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1036] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_COLON] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), + [1032] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_COLON] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2164), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2164), }, - [1037] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3739), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3739), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_COLON] = ACTIONS(3741), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3739), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_SEMI] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3739), + [1033] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3850), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3850), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_RBRACE] = ACTIONS(3850), + [anon_sym_COLON] = ACTIONS(3852), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_RPAREN] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3850), }, - [1038] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), + [1034] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(52), - [sym_lambda_expression] = STATE(1405), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(1405), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(53), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_new_expression] = STATE(1400), [anon_sym_LPAREN2] = ACTIONS(111), [anon_sym_DASH] = ACTIONS(7), - [sym_raw_string_literal] = ACTIONS(2826), - [sym_true] = ACTIONS(2828), + [sym_raw_string_literal] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(2828), + [sym_null] = ACTIONS(2830), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(4131), - [anon_sym_AMP] = ACTIONS(4133), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4131), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_GT_EQ] = ACTIONS(4127), + [anon_sym_GT_EQ] = ACTIONS(4125), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4127), [sym_identifier] = ACTIONS(123), [anon_sym_new] = ACTIONS(71), [anon_sym_delete] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LT_LT] = ACTIONS(4125), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_number_literal] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_number_literal] = ACTIONS(2828), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(2828), + [sym_false] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(2830), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_GT_GT] = ACTIONS(4125), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [1039] = { - [anon_sym_LPAREN2] = ACTIONS(2169), - [anon_sym_final] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_mutable] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_override] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_COLON] = ACTIONS(2171), - [anon_sym_explicit] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2169), - [sym_operator_name] = ACTIONS(2169), - [sym_noexcept] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_register] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_constexpr] = ACTIONS(2171), + [1035] = { + [anon_sym_LPAREN2] = ACTIONS(2171), + [anon_sym_final] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_mutable] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2173), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_volatile] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_explicit] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [sym_operator_name] = ACTIONS(2171), + [sym_noexcept] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_register] = ACTIONS(2173), + [anon_sym__Atomic] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_constexpr] = ACTIONS(2173), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2171), - [anon_sym_DASH_GT] = ACTIONS(2169), - [anon_sym_restrict] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - }, - [1040] = { - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_final] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_mutable] = ACTIONS(3748), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3746), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ] = ACTIONS(3748), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(3748), - [anon_sym_AMP] = ACTIONS(3748), - [anon_sym_static] = ACTIONS(3748), - [anon_sym_volatile] = ACTIONS(3748), - [anon_sym_PLUS] = ACTIONS(3748), - [anon_sym_GT_EQ] = ACTIONS(3746), - [anon_sym_STAR] = ACTIONS(3746), - [anon_sym_override] = ACTIONS(3748), - [anon_sym_SLASH] = ACTIONS(3748), - [anon_sym_COLON] = ACTIONS(3748), - [anon_sym_explicit] = ACTIONS(3748), - [sym_identifier] = ACTIONS(3748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), - [anon_sym_RBRACE] = ACTIONS(3746), - [sym_operator_name] = ACTIONS(3746), - [sym_noexcept] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3748), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_register] = ACTIONS(3748), - [anon_sym__Atomic] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3746), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3748), - [anon_sym_LT_LT] = ACTIONS(3746), - [anon_sym_constexpr] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3746), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_inline] = ACTIONS(3748), - [anon_sym_DASH_GT] = ACTIONS(3746), - [anon_sym_restrict] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_inline] = ACTIONS(2173), + [anon_sym_DASH_GT] = ACTIONS(2171), + [anon_sym_restrict] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2171), }, - [1041] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(2047), - [anon_sym_LPAREN2] = ACTIONS(587), + [1036] = { + [aux_sym_type_definition_repeat2] = STATE(2036), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(4135), + [anon_sym_SEMI] = ACTIONS(4133), }, - [1042] = { - [sym_type_qualifier] = STATE(2048), - [sym_pointer_type_declarator] = STATE(1045), - [sym_array_type_declarator] = STATE(1045), - [sym_function_type_declarator] = STATE(1045), - [aux_sym_type_definition_repeat1] = STATE(2048), - [sym__type_declarator] = STATE(1045), - [anon_sym_LPAREN2] = ACTIONS(678), + [1037] = { + [aux_sym_type_definition_repeat1] = STATE(2037), + [sym_pointer_type_declarator] = STATE(1040), + [sym_array_type_declarator] = STATE(1040), + [sym_function_type_declarator] = STATE(1040), + [sym__type_declarator] = STATE(1040), + [sym_type_qualifier] = STATE(2037), + [anon_sym_LPAREN2] = ACTIONS(680), [anon_sym_volatile] = ACTIONS(11), [anon_sym_mutable] = ACTIONS(11), [anon_sym_STAR] = ACTIONS(2108), @@ -52225,24 +52057,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), }, - [1043] = { - [sym_parameter_list] = STATE(1049), - [anon_sym_LPAREN2] = ACTIONS(587), + [1038] = { + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4135), [sym_comment] = ACTIONS(3), }, - [1044] = { - [sym_type_qualifier] = STATE(2050), - [sym_pointer_type_declarator] = STATE(2051), - [sym_array_type_declarator] = STATE(2051), - [sym_function_type_declarator] = STATE(2051), - [aux_sym_type_definition_repeat1] = STATE(2050), - [sym__type_declarator] = STATE(2051), - [anon_sym_LPAREN2] = ACTIONS(678), + [1039] = { + [aux_sym_type_definition_repeat1] = STATE(2039), + [sym_pointer_type_declarator] = STATE(2040), + [sym_array_type_declarator] = STATE(2040), + [sym_function_type_declarator] = STATE(2040), + [sym__type_declarator] = STATE(2040), + [sym_type_qualifier] = STATE(2039), + [anon_sym_LPAREN2] = ACTIONS(680), [anon_sym_volatile] = ACTIONS(11), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_explicit] = ACTIONS(11), @@ -52251,271 +52083,326 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), }, - [1045] = { - [sym_parameter_list] = STATE(1049), - [anon_sym_LPAREN2] = ACTIONS(587), + [1040] = { + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4137), }, - [1046] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2054), - [sym_logical_expression] = STATE(2054), - [sym_bitwise_expression] = STATE(2054), - [sym_cast_expression] = STATE(2054), - [sym_new_expression] = STATE(2054), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2054), - [sym_char_literal] = STATE(2054), - [sym_type_qualifier] = STATE(2055), - [sym_template_function] = STATE(2054), - [sym_conditional_expression] = STATE(2054), - [sym_equality_expression] = STATE(2054), - [sym_relational_expression] = STATE(2054), - [sym_delete_expression] = STATE(2054), - [sym_sizeof_expression] = STATE(2054), - [sym_parenthesized_expression] = STATE(2054), - [sym_lambda_expression] = STATE(2054), - [sym_concatenated_string] = STATE(2054), - [sym_string_literal] = STATE(967), + [1041] = { + [sym_template_function] = STATE(2043), + [sym__expression] = STATE(2043), + [sym_logical_expression] = STATE(2043), + [sym_bitwise_expression] = STATE(2043), + [sym_cast_expression] = STATE(2043), + [sym_delete_expression] = STATE(2043), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2043), + [sym_lambda_expression] = STATE(2043), + [sym_char_literal] = STATE(2043), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2054), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2054), - [sym_math_expression] = STATE(2054), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_type_qualifier] = STATE(2044), + [sym_conditional_expression] = STATE(2043), + [sym_equality_expression] = STATE(2043), + [sym_relational_expression] = STATE(2043), + [sym_sizeof_expression] = STATE(2043), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(2055), - [sym_raw_string_literal] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(4143), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(4143), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(4145), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(4141), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(4143), - [sym_nullptr] = ACTIONS(4143), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(4147), + [sym_parenthesized_expression] = STATE(2043), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(2044), + [sym_concatenated_string] = STATE(2043), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2043), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2043), + [sym_math_expression] = STATE(2043), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2043), + [sym_raw_string_literal] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(4141), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(4143), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(4139), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4141), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(4145), }, - [1047] = { - [sym_pointer_type_declarator] = STATE(2056), - [sym_array_type_declarator] = STATE(2056), - [sym_function_type_declarator] = STATE(2056), - [sym__type_declarator] = STATE(2056), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [1042] = { + [sym_pointer_type_declarator] = STATE(2045), + [sym_array_type_declarator] = STATE(2045), + [sym_function_type_declarator] = STATE(2045), + [sym__type_declarator] = STATE(2045), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [1048] = { - [anon_sym_DASH] = ACTIONS(4149), - [sym_raw_string_literal] = ACTIONS(4151), - [sym_true] = ACTIONS(4149), - [anon_sym_mutable] = ACTIONS(4149), - [sym_null] = ACTIONS(4149), - [anon_sym_break] = ACTIONS(4149), - [anon_sym_BANG] = ACTIONS(4151), - [anon_sym_sizeof] = ACTIONS(4149), - [anon_sym_volatile] = ACTIONS(4149), - [anon_sym_PLUS] = ACTIONS(4149), - [anon_sym_typedef] = ACTIONS(4149), - [anon_sym_switch] = ACTIONS(4149), - [anon_sym_explicit] = ACTIONS(4149), - [sym_identifier] = ACTIONS(4149), - [anon_sym_delete] = ACTIONS(4149), - [anon_sym_continue] = ACTIONS(4149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4149), - [anon_sym__Atomic] = ACTIONS(4149), - [sym_number_literal] = ACTIONS(4151), - [anon_sym_extern] = ACTIONS(4149), - [anon_sym_enum] = ACTIONS(4149), - [anon_sym_constexpr] = ACTIONS(4149), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4151), - [anon_sym_namespace] = ACTIONS(4149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4149), - [anon_sym_SQUOTE] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4151), - [anon_sym_DASH_DASH] = ACTIONS(4151), - [anon_sym_LPAREN2] = ACTIONS(4151), - [anon_sym_struct] = ACTIONS(4149), - [sym_auto] = ACTIONS(4149), - [anon_sym_signed] = ACTIONS(4149), - [anon_sym_long] = ACTIONS(4149), - [anon_sym_COLON_COLON] = ACTIONS(4151), - [anon_sym_using] = ACTIONS(4149), - [sym_preproc_directive] = ACTIONS(4149), - [aux_sym_preproc_if_token1] = ACTIONS(4149), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_RBRACE] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_union] = ACTIONS(4149), - [anon_sym_typename] = ACTIONS(4149), - [anon_sym_short] = ACTIONS(4149), - [anon_sym_new] = ACTIONS(4149), - [anon_sym_goto] = ACTIONS(4149), - [sym_operator_name] = ACTIONS(4151), - [anon_sym_while] = ACTIONS(4149), - [anon_sym_try] = ACTIONS(4149), - [anon_sym_for] = ACTIONS(4149), - [aux_sym_preproc_include_token1] = ACTIONS(4149), - [anon_sym_register] = ACTIONS(4149), - [anon_sym_DQUOTE] = ACTIONS(4151), - [anon_sym_const] = ACTIONS(4149), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_if] = ACTIONS(4149), - [sym_primitive_type] = ACTIONS(4149), - [sym_false] = ACTIONS(4149), - [sym_nullptr] = ACTIONS(4149), - [anon_sym_do] = ACTIONS(4149), - [anon_sym_template] = ACTIONS(4149), - [anon_sym_return] = ACTIONS(4149), - [anon_sym_TILDE] = ACTIONS(4151), - [anon_sym_SEMI] = ACTIONS(4151), - [ts_builtin_sym_end] = ACTIONS(4151), - [aux_sym_preproc_def_token1] = ACTIONS(4149), - [anon_sym_AMP_AMP] = ACTIONS(4151), - [anon_sym_inline] = ACTIONS(4149), - [anon_sym_PLUS_PLUS] = ACTIONS(4151), - [anon_sym_restrict] = ACTIONS(4149), + [1043] = { + [anon_sym_DASH] = ACTIONS(4147), + [sym_raw_string_literal] = ACTIONS(4149), + [sym_true] = ACTIONS(4147), + [anon_sym_mutable] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_BANG] = ACTIONS(4149), + [anon_sym_sizeof] = ACTIONS(4147), + [anon_sym_volatile] = ACTIONS(4147), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_typedef] = ACTIONS(4147), + [anon_sym_switch] = ACTIONS(4147), + [anon_sym_explicit] = ACTIONS(4147), + [sym_identifier] = ACTIONS(4147), + [anon_sym_delete] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4147), + [anon_sym__Atomic] = ACTIONS(4147), + [sym_number_literal] = ACTIONS(4149), + [anon_sym_extern] = ACTIONS(4147), + [anon_sym_enum] = ACTIONS(4147), + [anon_sym_constexpr] = ACTIONS(4147), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4149), + [anon_sym_namespace] = ACTIONS(4147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_struct] = ACTIONS(4147), + [sym_auto] = ACTIONS(4147), + [anon_sym_signed] = ACTIONS(4147), + [anon_sym_long] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_using] = ACTIONS(4147), + [sym_preproc_directive] = ACTIONS(4147), + [aux_sym_preproc_if_token1] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_static] = ACTIONS(4147), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_union] = ACTIONS(4147), + [anon_sym_typename] = ACTIONS(4147), + [anon_sym_short] = ACTIONS(4147), + [anon_sym_new] = ACTIONS(4147), + [anon_sym_goto] = ACTIONS(4147), + [sym_operator_name] = ACTIONS(4149), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_for] = ACTIONS(4147), + [aux_sym_preproc_include_token1] = ACTIONS(4147), + [anon_sym_register] = ACTIONS(4147), + [anon_sym_DQUOTE] = ACTIONS(4149), + [anon_sym_const] = ACTIONS(4147), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [sym_primitive_type] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_nullptr] = ACTIONS(4147), + [anon_sym_do] = ACTIONS(4147), + [anon_sym_template] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_TILDE] = ACTIONS(4149), + [anon_sym_SEMI] = ACTIONS(4149), + [ts_builtin_sym_end] = ACTIONS(4149), + [aux_sym_preproc_def_token1] = ACTIONS(4147), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_restrict] = ACTIONS(4147), }, - [1049] = { - [anon_sym_LPAREN2] = ACTIONS(4153), + [1044] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(4153), - [anon_sym_RPAREN] = ACTIONS(4153), - [anon_sym_COMMA] = ACTIONS(4153), - [anon_sym_SEMI] = ACTIONS(4153), + [anon_sym_COMMA] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(4133), }, - [1050] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [1045] = { + [anon_sym_LPAREN2] = ACTIONS(4151), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(4135), + [anon_sym_LBRACK] = ACTIONS(4151), + [anon_sym_RPAREN] = ACTIONS(4151), + [anon_sym_COMMA] = ACTIONS(4151), + [anon_sym_SEMI] = ACTIONS(4151), }, - [1051] = { - [anon_sym_COLON] = ACTIONS(4155), + [1046] = { + [anon_sym_LPAREN2] = ACTIONS(3857), + [anon_sym_final] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_mutable] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3857), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3857), + [anon_sym_RPAREN] = ACTIONS(3857), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(3859), + [anon_sym_volatile] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_STAR] = ACTIONS(3857), + [anon_sym_override] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_explicit] = ACTIONS(3859), + [sym_identifier] = ACTIONS(3859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3857), + [anon_sym_RBRACE] = ACTIONS(3857), + [sym_operator_name] = ACTIONS(3857), + [sym_noexcept] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3857), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3857), + [anon_sym_register] = ACTIONS(3859), + [anon_sym__Atomic] = ACTIONS(3859), + [anon_sym_const] = ACTIONS(3859), + [anon_sym_extern] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LT_LT] = ACTIONS(3857), + [anon_sym_constexpr] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_inline] = ACTIONS(3859), + [anon_sym_DASH_GT] = ACTIONS(3857), + [anon_sym_restrict] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3857), + }, + [1047] = { + [anon_sym_COLON] = ACTIONS(4153), [sym_comment] = ACTIONS(3), }, - [1052] = { + [1048] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4157), + [anon_sym_SEMI] = ACTIONS(4155), }, - [1053] = { - [anon_sym_DASH] = ACTIONS(4159), - [sym_raw_string_literal] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [sym_true] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [sym_null] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_BANG] = ACTIONS(4161), - [anon_sym_sizeof] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_typedef] = ACTIONS(4159), - [anon_sym_switch] = ACTIONS(4159), - [anon_sym_explicit] = ACTIONS(4159), - [sym_identifier] = ACTIONS(4159), - [anon_sym_delete] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [sym_number_literal] = ACTIONS(4161), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym_enum] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4161), - [anon_sym_namespace] = ACTIONS(4159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [anon_sym_LBRACE] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_struct] = ACTIONS(4159), - [sym_auto] = ACTIONS(4159), - [anon_sym_signed] = ACTIONS(4159), - [anon_sym_long] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_using] = ACTIONS(4159), - [sym_preproc_directive] = ACTIONS(4159), - [aux_sym_preproc_if_token1] = ACTIONS(4159), - [anon_sym_AMP] = ACTIONS(4159), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_STAR] = ACTIONS(4161), - [anon_sym_union] = ACTIONS(4159), - [anon_sym_typename] = ACTIONS(4159), - [anon_sym_short] = ACTIONS(4159), - [anon_sym_new] = ACTIONS(4159), - [anon_sym_goto] = ACTIONS(4159), - [sym_operator_name] = ACTIONS(4161), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_for] = ACTIONS(4159), - [aux_sym_preproc_include_token1] = ACTIONS(4159), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_DQUOTE] = ACTIONS(4161), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_LBRACK] = ACTIONS(4159), - [anon_sym_class] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [sym_primitive_type] = ACTIONS(4159), - [sym_false] = ACTIONS(4159), - [sym_nullptr] = ACTIONS(4159), - [anon_sym_do] = ACTIONS(4159), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4161), - [anon_sym_SEMI] = ACTIONS(4161), - [ts_builtin_sym_end] = ACTIONS(4161), - [aux_sym_preproc_def_token1] = ACTIONS(4159), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_restrict] = ACTIONS(4159), + [1049] = { + [anon_sym_DASH] = ACTIONS(4157), + [sym_raw_string_literal] = ACTIONS(4159), + [anon_sym_else] = ACTIONS(4157), + [sym_true] = ACTIONS(4157), + [anon_sym_mutable] = ACTIONS(4157), + [sym_null] = ACTIONS(4157), + [anon_sym_break] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(4159), + [anon_sym_sizeof] = ACTIONS(4157), + [anon_sym_volatile] = ACTIONS(4157), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_typedef] = ACTIONS(4157), + [anon_sym_switch] = ACTIONS(4157), + [anon_sym_explicit] = ACTIONS(4157), + [sym_identifier] = ACTIONS(4157), + [anon_sym_delete] = ACTIONS(4157), + [anon_sym_continue] = ACTIONS(4157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4157), + [anon_sym__Atomic] = ACTIONS(4157), + [sym_number_literal] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4157), + [anon_sym_enum] = ACTIONS(4157), + [anon_sym_constexpr] = ACTIONS(4157), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4159), + [anon_sym_namespace] = ACTIONS(4157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4157), + [anon_sym_SQUOTE] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4159), + [anon_sym_DASH_DASH] = ACTIONS(4159), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_struct] = ACTIONS(4157), + [sym_auto] = ACTIONS(4157), + [anon_sym_signed] = ACTIONS(4157), + [anon_sym_long] = ACTIONS(4157), + [anon_sym_COLON_COLON] = ACTIONS(4159), + [anon_sym_using] = ACTIONS(4157), + [sym_preproc_directive] = ACTIONS(4157), + [aux_sym_preproc_if_token1] = ACTIONS(4157), + [anon_sym_AMP] = ACTIONS(4157), + [anon_sym_static] = ACTIONS(4157), + [anon_sym_RBRACE] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_union] = ACTIONS(4157), + [anon_sym_typename] = ACTIONS(4157), + [anon_sym_short] = ACTIONS(4157), + [anon_sym_new] = ACTIONS(4157), + [anon_sym_goto] = ACTIONS(4157), + [sym_operator_name] = ACTIONS(4159), + [anon_sym_while] = ACTIONS(4157), + [anon_sym_try] = ACTIONS(4157), + [anon_sym_for] = ACTIONS(4157), + [aux_sym_preproc_include_token1] = ACTIONS(4157), + [anon_sym_register] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4157), + [anon_sym_LBRACK] = ACTIONS(4157), + [anon_sym_class] = ACTIONS(4157), + [anon_sym_if] = ACTIONS(4157), + [sym_primitive_type] = ACTIONS(4157), + [sym_false] = ACTIONS(4157), + [sym_nullptr] = ACTIONS(4157), + [anon_sym_do] = ACTIONS(4157), + [anon_sym_template] = ACTIONS(4157), + [anon_sym_return] = ACTIONS(4157), + [anon_sym_TILDE] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4159), + [ts_builtin_sym_end] = ACTIONS(4159), + [aux_sym_preproc_def_token1] = ACTIONS(4157), + [anon_sym_AMP_AMP] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4157), + [anon_sym_PLUS_PLUS] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4157), }, - [1054] = { - [sym_parenthesized_expression] = STATE(2060), + [1050] = { + [sym_parenthesized_expression] = STATE(2049), [anon_sym_LPAREN2] = ACTIONS(157), [sym_comment] = ACTIONS(3), }, - [1055] = { - [sym_template_argument_list] = STATE(377), + [1051] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -52523,7 +52410,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -52533,7 +52420,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(4163), + [anon_sym_COLON] = ACTIONS(4161), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -52559,355 +52446,355 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1056] = { - [sym_identifier] = ACTIONS(4165), + [1052] = { + [sym_identifier] = ACTIONS(4163), [sym_comment] = ACTIONS(3), }, - [1057] = { - [sym_parenthesized_expression] = STATE(2063), - [anon_sym_LPAREN2] = ACTIONS(372), + [1053] = { + [sym_parenthesized_expression] = STATE(2052), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [1058] = { + [1054] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_SEMI] = ACTIONS(4165), }, - [1059] = { - [anon_sym_LPAREN2] = ACTIONS(4169), + [1055] = { + [anon_sym_LPAREN2] = ACTIONS(4167), [sym_comment] = ACTIONS(3), }, - [1060] = { - [sym_compound_statement] = STATE(2066), - [anon_sym_LBRACE] = ACTIONS(374), + [1056] = { + [sym_compound_statement] = STATE(2055), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [1061] = { - [anon_sym_LPAREN2] = ACTIONS(4171), - [anon_sym_constexpr] = ACTIONS(4173), + [1057] = { + [anon_sym_LPAREN2] = ACTIONS(4169), + [anon_sym_constexpr] = ACTIONS(4171), [sym_comment] = ACTIONS(3), }, - [1062] = { - [sym_do_statement] = STATE(2069), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [1058] = { + [sym_do_statement] = STATE(2058), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(2069), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2058), + [sym_try_statement] = STATE(2058), + [sym_if_statement] = STATE(2058), + [sym_switch_statement] = STATE(2058), + [sym_for_statement] = STATE(2058), + [sym_return_statement] = STATE(2058), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(2069), - [sym_break_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2058), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(2058), + [sym_for_range_loop] = STATE(2058), + [sym_compound_statement] = STATE(2058), + [sym_labeled_statement] = STATE(2058), + [sym_expression_statement] = STATE(2058), + [sym_while_statement] = STATE(2058), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [1063] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2070), - [sym_logical_expression] = STATE(2070), - [sym_bitwise_expression] = STATE(2070), - [sym_cast_expression] = STATE(2070), - [sym_new_expression] = STATE(2070), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2070), - [sym_char_literal] = STATE(2070), - [sym_template_function] = STATE(2070), - [sym_conditional_expression] = STATE(2070), - [sym_equality_expression] = STATE(2070), - [sym_relational_expression] = STATE(2070), - [sym_delete_expression] = STATE(2070), - [sym_sizeof_expression] = STATE(2070), - [sym_parenthesized_expression] = STATE(2070), - [sym_lambda_expression] = STATE(2070), - [sym_concatenated_string] = STATE(2070), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2070), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2070), - [sym_math_expression] = STATE(2070), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(4177), - [sym_null] = ACTIONS(4177), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1059] = { + [sym_template_function] = STATE(2059), + [sym__expression] = STATE(2059), + [sym_logical_expression] = STATE(2059), + [sym_bitwise_expression] = STATE(2059), + [sym_cast_expression] = STATE(2059), + [sym_delete_expression] = STATE(2059), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2059), + [sym_lambda_expression] = STATE(2059), + [sym_char_literal] = STATE(2059), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2059), + [sym_equality_expression] = STATE(2059), + [sym_relational_expression] = STATE(2059), + [sym_sizeof_expression] = STATE(2059), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2059), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2059), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2059), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2059), + [sym_math_expression] = STATE(2059), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2059), + [sym_raw_string_literal] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(4175), + [sym_null] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(4175), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1064] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2072), - [sym_logical_expression] = STATE(2072), - [sym_bitwise_expression] = STATE(2072), - [sym_cast_expression] = STATE(2072), - [sym_new_expression] = STATE(2072), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(2072), - [sym_char_literal] = STATE(2072), - [sym_template_function] = STATE(2072), - [sym_conditional_expression] = STATE(2072), - [sym_equality_expression] = STATE(2072), - [sym_relational_expression] = STATE(2072), - [sym_delete_expression] = STATE(2072), - [sym_sizeof_expression] = STATE(2072), - [sym_parenthesized_expression] = STATE(2072), - [sym_initializer_list] = STATE(2073), - [sym_concatenated_string] = STATE(2072), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(2072), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(2072), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(2072), - [sym_math_expression] = STATE(2072), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(4183), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [1060] = { + [sym_template_function] = STATE(2061), + [sym__expression] = STATE(2061), + [sym_logical_expression] = STATE(2061), + [sym_bitwise_expression] = STATE(2061), + [sym_cast_expression] = STATE(2061), + [sym_delete_expression] = STATE(2061), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(2061), + [sym_lambda_expression] = STATE(2061), + [sym_char_literal] = STATE(2061), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2061), + [sym_equality_expression] = STATE(2061), + [sym_relational_expression] = STATE(2061), + [sym_sizeof_expression] = STATE(2061), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2062), + [sym_parenthesized_expression] = STATE(2061), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2061), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2061), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(2061), + [sym_math_expression] = STATE(2061), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(2061), + [sym_raw_string_literal] = ACTIONS(4177), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(4179), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4177), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(4181), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [1065] = { - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(514), - [sym_true] = ACTIONS(512), - [anon_sym_else] = ACTIONS(512), - [sym_null] = ACTIONS(512), - [anon_sym_COLON_COLON] = ACTIONS(514), - [anon_sym_default] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_sizeof] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_switch] = ACTIONS(512), - [sym_identifier] = ACTIONS(512), - [anon_sym_new] = ACTIONS(512), - [anon_sym_goto] = ACTIONS(512), - [anon_sym_while] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [anon_sym_delete] = ACTIONS(512), - [anon_sym_try] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(514), - [sym_number_literal] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(514), - [anon_sym_if] = ACTIONS(512), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(512), - [sym_nullptr] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_case] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_PLUS_PLUS] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(514), - [anon_sym_DASH_DASH] = ACTIONS(514), + [1061] = { + [anon_sym_LPAREN2] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(516), + [sym_raw_string_literal] = ACTIONS(518), + [sym_true] = ACTIONS(516), + [anon_sym_else] = ACTIONS(516), + [sym_null] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(518), + [anon_sym_default] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(518), + [anon_sym_sizeof] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_switch] = ACTIONS(516), + [sym_identifier] = ACTIONS(516), + [anon_sym_new] = ACTIONS(516), + [anon_sym_goto] = ACTIONS(516), + [anon_sym_while] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [anon_sym_delete] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(518), + [sym_number_literal] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(516), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(516), + [sym_nullptr] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_SQUOTE] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), }, - [1066] = { - [sym_goto_statement] = STATE(2075), - [sym_preproc_function_def] = STATE(2075), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(2075), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(2075), + [1062] = { + [sym_goto_statement] = STATE(2064), + [sym_preproc_function_def] = STATE(2064), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(2064), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2075), - [sym_return_statement] = STATE(2075), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2064), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2064), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2064), + [sym_namespace_definition] = STATE(2064), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2075), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2075), - [sym_break_statement] = STATE(2075), - [sym_preproc_include] = STATE(2075), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(2075), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(2075), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2064), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2064), + [sym_constructor_or_destructor_definition] = STATE(2064), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2064), + [sym_preproc_include] = STATE(2064), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(2064), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(2064), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(2075), - [sym_template_instantiation] = STATE(2075), - [sym_constructor_or_destructor_definition] = STATE(2075), - [sym_expression_statement] = STATE(2075), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2075), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(2075), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(2075), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2075), - [aux_sym_translation_unit_repeat1] = STATE(2075), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(2075), - [sym_if_statement] = STATE(2075), - [sym_for_statement] = STATE(2075), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(2075), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(2075), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(2075), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2075), - [sym_preproc_if] = STATE(2075), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(2064), + [sym_expression_statement] = STATE(2064), + [sym_do_statement] = STATE(2064), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(2064), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(2064), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2064), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2064), + [sym_for_statement] = STATE(2064), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(2064), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(2064), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2064), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2064), + [sym_preproc_if] = STATE(2064), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2075), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2075), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2075), - [sym_while_statement] = STATE(2075), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2064), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2064), + [aux_sym_translation_unit_repeat1] = STATE(2064), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2064), + [sym_while_statement] = STATE(2064), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -52949,7 +52836,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4183), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -52981,471 +52868,473 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1067] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(4187), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [1068] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4187), + [1063] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1069] = { - [sym_do_statement] = STATE(2078), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [1064] = { + [sym_do_statement] = STATE(2067), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(2078), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(2078), - [sym_if_statement] = STATE(2078), - [sym_switch_statement] = STATE(2078), - [sym_for_statement] = STATE(2078), - [sym_return_statement] = STATE(2078), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2067), + [sym_try_statement] = STATE(2067), + [aux_sym_switch_body_repeat1] = STATE(2067), + [sym_if_statement] = STATE(2067), + [sym_switch_statement] = STATE(2067), + [sym_for_statement] = STATE(2067), + [sym_return_statement] = STATE(2067), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(2078), - [aux_sym_switch_body_repeat1] = STATE(2078), - [sym_case_statement] = STATE(2078), - [sym_break_statement] = STATE(2078), - [sym_continue_statement] = STATE(2078), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(2067), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2067), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2078), - [sym_labeled_statement] = STATE(2078), - [sym_expression_statement] = STATE(2078), - [sym_while_statement] = STATE(2078), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(2067), + [sym_for_range_loop] = STATE(2067), + [sym_compound_statement] = STATE(2067), + [sym_labeled_statement] = STATE(2067), + [sym_expression_statement] = STATE(2067), + [sym_while_statement] = STATE(2067), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4187), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [1070] = { - [sym_template_argument_list] = STATE(1788), - [sym_virtual_specifier] = STATE(2079), - [sym_field_declaration_list] = STATE(2080), - [sym_base_class_clause] = STATE(2081), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_DASH_GT] = ACTIONS(1084), - [anon_sym_mutable] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_GT2] = ACTIONS(1084), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(4191), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1086), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1086), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1086), - [sym_operator_name] = ACTIONS(1084), - [sym_noexcept] = ACTIONS(1086), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_extern] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1084), - [anon_sym_constexpr] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_TILDE] = ACTIONS(1084), - [anon_sym_LT_EQ] = ACTIONS(1084), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(1086), + [1065] = { + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(4185), }, - [1071] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(2083), - [sym_preproc_function_def] = STATE(2083), - [sym_alias_declaration] = STATE(2083), + [1066] = { + [sym_virtual_specifier] = STATE(2068), + [sym_template_argument_list] = STATE(1786), + [sym_field_declaration_list] = STATE(2069), + [sym_base_class_clause] = STATE(2070), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DASH_GT] = ACTIONS(1088), + [anon_sym_mutable] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_GT2] = ACTIONS(1088), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1090), + [sym_operator_name] = ACTIONS(1088), + [sym_noexcept] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1088), + [anon_sym_constexpr] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(1090), + }, + [1067] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(2072), + [sym_preproc_function_def] = STATE(2072), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(2083), - [sym_preproc_if_in_field_declaration_list] = STATE(2083), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2083), - [sym_type_definition] = STATE(2083), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(2083), - [sym__field_declaration_list_item] = STATE(2083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2083), - [sym_inline_method_definition] = STATE(2083), - [sym_friend_declaration] = STATE(2083), - [sym_access_specifier] = STATE(2083), - [sym_using_declaration] = STATE(2083), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(2083), - [sym_constructor_or_destructor_definition] = STATE(2083), - [sym_constructor_or_destructor_declaration] = STATE(2083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2072), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(2072), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(2072), + [sym_preproc_if_in_field_declaration_list] = STATE(2072), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2072), + [sym_type_definition] = STATE(2072), + [sym_using_declaration] = STATE(2072), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(2072), + [sym_inline_method_definition] = STATE(2072), + [sym_constructor_or_destructor_definition] = STATE(2072), + [sym_access_specifier] = STATE(2072), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(2072), + [sym_alias_declaration] = STATE(2072), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(2072), + [sym_constructor_or_destructor_declaration] = STATE(2072), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(4193), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(4191), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [1072] = { - [sym_field_declaration_list] = STATE(2084), - [sym_base_class_clause] = STATE(2085), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2180), + [1068] = { + [sym_virtual_specifier] = STATE(2073), + [sym_template_argument_list] = STATE(1162), + [sym_field_declaration_list] = STATE(2074), + [sym_base_class_clause] = STATE(2075), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_mutable] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_GT2] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_explicit] = ACTIONS(1130), + [sym_noexcept] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(1132), }, - [1073] = { - [sym_virtual_specifier] = STATE(2086), - [sym_field_declaration_list] = STATE(2084), - [sym_base_class_clause] = STATE(2085), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_mutable] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(3544), - [anon_sym_GT2] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [sym_operator_name] = ACTIONS(1126), - [sym_noexcept] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(1128), - }, - [1074] = { - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_mutable] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1128), - [anon_sym_COLON_COLON] = ACTIONS(1126), - [anon_sym_GT2] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1128), - [anon_sym_explicit] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [sym_operator_name] = ACTIONS(1126), - [sym_noexcept] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_DASH_GT] = ACTIONS(1126), - }, - [1075] = { - [sym_template_argument_list] = STATE(1169), - [sym_virtual_specifier] = STATE(2086), - [sym_field_declaration_list] = STATE(2084), - [sym_base_class_clause] = STATE(2085), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_mutable] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_GT2] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(4191), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_explicit] = ACTIONS(1126), - [sym_noexcept] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(1128), - }, - [1076] = { - [sym_field_declaration_list] = STATE(2084), - [anon_sym_LBRACE] = ACTIONS(2180), + [1069] = { + [sym_field_declaration_list] = STATE(2074), + [sym_base_class_clause] = STATE(2075), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [1077] = { - [sym_destructor_name] = STATE(1087), + [1070] = { + [sym_virtual_specifier] = STATE(2073), + [sym_field_declaration_list] = STATE(2074), + [sym_base_class_clause] = STATE(2075), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_mutable] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_GT2] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1132), + [sym_operator_name] = ACTIONS(1130), + [sym_noexcept] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(1132), + }, + [1071] = { + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_mutable] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1130), + [anon_sym_GT2] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1132), + [anon_sym_explicit] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1132), + [sym_operator_name] = ACTIONS(1130), + [sym_noexcept] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_DASH_GT] = ACTIONS(1130), + }, + [1072] = { + [sym_field_declaration_list] = STATE(2074), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(4195), - [sym_operator_name] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2198), - [anon_sym_delete] = ACTIONS(2200), }, - [1078] = { - [sym_template_argument_list] = STATE(2089), - [sym_initializer_list] = STATE(1123), + [1073] = { + [sym_destructor_name] = STATE(1083), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(4193), + [sym_operator_name] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2202), + }, + [1074] = { + [sym_initializer_list] = STATE(1118), + [sym_template_argument_list] = STATE(2078), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_STAR_EQ] = ACTIONS(2252), - [anon_sym_LT_LT_EQ] = ACTIONS(2252), - [anon_sym_PERCENT_EQ] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_STAR_EQ] = ACTIONS(2254), + [anon_sym_LT_LT_EQ] = ACTIONS(2254), + [anon_sym_PERCENT_EQ] = ACTIONS(2254), [anon_sym_GT2] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(4197), + [anon_sym_COLON_COLON] = ACTIONS(4195), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_CARET_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2258), + [anon_sym_CARET_EQ] = ACTIONS(2254), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(2252), - [anon_sym_PLUS_EQ] = ACTIONS(2252), + [anon_sym_SLASH_EQ] = ACTIONS(2254), + [anon_sym_PLUS_EQ] = ACTIONS(2254), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(2252), - [anon_sym_GT_GT_EQ] = ACTIONS(2248), + [anon_sym_PIPE_EQ] = ACTIONS(2254), + [anon_sym_GT_GT_EQ] = ACTIONS(2250), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -53454,599 +53343,599 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(2252), + [anon_sym_DASH_EQ] = ACTIONS(2254), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(2252), + [anon_sym_AMP_EQ] = ACTIONS(2254), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(2248), + [anon_sym_EQ] = ACTIONS(2250), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1079] = { - [sym_initializer_list] = STATE(1147), - [anon_sym_COLON_COLON] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(2250), - [sym_comment] = ACTIONS(3), - }, - [1080] = { - [sym_argument_list] = STATE(1165), + [1075] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_LT_LT] = ACTIONS(656), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_GT2] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_QMARK] = ACTIONS(654), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_GT2] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(656), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [1081] = { - [sym_template_argument_list] = STATE(354), - [sym_initializer_list] = STATE(1147), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(2250), + [1076] = { + [sym_initializer_list] = STATE(1161), + [sym_template_argument_list] = STATE(312), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(2252), [sym_comment] = ACTIONS(3), }, - [1082] = { - [anon_sym_COLON_COLON] = ACTIONS(4199), + [1077] = { + [anon_sym_COLON_COLON] = ACTIONS(4197), [sym_comment] = ACTIONS(3), }, - [1083] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(4201), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [1084] = { - [anon_sym_RPAREN] = ACTIONS(4203), + [1078] = { + [sym_initializer_list] = STATE(1161), + [anon_sym_COLON_COLON] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(2252), [sym_comment] = ACTIONS(3), }, - [1085] = { + [1079] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(4199), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1080] = { [anon_sym_RPAREN] = ACTIONS(4201), [sym_comment] = ACTIONS(3), }, - [1086] = { - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_mutable] = ACTIONS(1135), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_GT2] = ACTIONS(1130), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_explicit] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1141), - [anon_sym__Atomic] = ACTIONS(1135), - [anon_sym_constexpr] = ACTIONS(1135), + [1081] = { + [anon_sym_RPAREN] = ACTIONS(4199), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_restrict] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), }, - [1087] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_GT2] = ACTIONS(1141), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), + [1082] = { + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_mutable] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_GT2] = ACTIONS(1136), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_volatile] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_explicit] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1136), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1141), + [anon_sym_constexpr] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1136), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1139), }, - [1088] = { - [sym_identifier] = ACTIONS(4205), + [1083] = { + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_GT2] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), + }, + [1084] = { + [sym_identifier] = ACTIONS(4203), [sym_comment] = ACTIONS(3), }, - [1089] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2095), - [sym_logical_expression] = STATE(2095), - [sym_bitwise_expression] = STATE(2095), - [sym_cast_expression] = STATE(2095), - [sym_new_expression] = STATE(2095), + [1085] = { + [sym_template_function] = STATE(2084), + [sym__expression] = STATE(2084), + [sym_logical_expression] = STATE(2084), + [sym_bitwise_expression] = STATE(2084), + [sym_cast_expression] = STATE(2084), + [sym_delete_expression] = STATE(2084), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2095), - [sym_char_literal] = STATE(2095), - [sym_template_function] = STATE(2095), - [sym_conditional_expression] = STATE(2095), - [sym_equality_expression] = STATE(2095), - [sym_relational_expression] = STATE(2095), - [sym_delete_expression] = STATE(2095), - [sym_sizeof_expression] = STATE(2095), - [sym_parenthesized_expression] = STATE(2095), - [sym_lambda_expression] = STATE(2095), - [sym_concatenated_string] = STATE(2095), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2084), + [sym_lambda_expression] = STATE(2084), + [sym_char_literal] = STATE(2084), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2084), + [sym_equality_expression] = STATE(2084), + [sym_relational_expression] = STATE(2084), + [sym_sizeof_expression] = STATE(2084), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2095), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2084), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2084), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2084), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2095), - [sym_math_expression] = STATE(2095), + [sym_shift_expression] = STATE(2084), + [sym_math_expression] = STATE(2084), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4207), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4209), - [sym_null] = ACTIONS(4209), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4207), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4209), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4209), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2084), + [sym_raw_string_literal] = ACTIONS(4205), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4207), + [sym_null] = ACTIONS(4207), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4205), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(4209), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4207), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4207), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1090] = { - [sym_argument_list] = STATE(1165), + [1086] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_PIPE_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_LT_LT] = ACTIONS(666), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_GT2] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_QMARK] = ACTIONS(662), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_GT2] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(666), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(666), }, - [1091] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(2096), - [sym_logical_expression] = STATE(2096), - [sym_bitwise_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_new_expression] = STATE(2096), - [sym_field_expression] = STATE(2096), - [sym_compound_literal_expression] = STATE(2096), - [sym_char_literal] = STATE(2096), - [sym_template_function] = STATE(2096), - [sym_conditional_expression] = STATE(2096), - [sym_equality_expression] = STATE(2096), - [sym_relational_expression] = STATE(2096), - [sym_delete_expression] = STATE(2096), - [sym_sizeof_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_lambda_expression] = STATE(2096), - [sym_concatenated_string] = STATE(2096), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2096), - [sym_pointer_expression] = STATE(2096), - [sym_shift_expression] = STATE(2096), - [sym_math_expression] = STATE(2096), - [sym_call_expression] = STATE(2096), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(4213), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(4215), - [sym_null] = ACTIONS(4215), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(4213), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(4215), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4215), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [1087] = { + [sym_template_function] = STATE(2085), + [sym__expression] = STATE(2085), + [sym_logical_expression] = STATE(2085), + [sym_bitwise_expression] = STATE(2085), + [sym_cast_expression] = STATE(2085), + [sym_delete_expression] = STATE(2085), + [sym_field_expression] = STATE(2085), + [sym_compound_literal_expression] = STATE(2085), + [sym_lambda_expression] = STATE(2085), + [sym_char_literal] = STATE(2085), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(2085), + [sym_equality_expression] = STATE(2085), + [sym_relational_expression] = STATE(2085), + [sym_sizeof_expression] = STATE(2085), + [sym_subscript_expression] = STATE(2085), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(2085), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(2085), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(2085), + [sym_pointer_expression] = STATE(2085), + [sym_shift_expression] = STATE(2085), + [sym_math_expression] = STATE(2085), + [sym_call_expression] = STATE(2085), + [sym_new_expression] = STATE(2085), + [sym_raw_string_literal] = ACTIONS(4211), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(4211), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), }, - [1092] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(2097), - [sym_logical_expression] = STATE(2097), - [sym_bitwise_expression] = STATE(2097), - [sym_cast_expression] = STATE(2097), - [sym_new_expression] = STATE(2097), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(2097), - [sym_type_descriptor] = STATE(2098), - [sym_char_literal] = STATE(2097), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(2097), - [sym_conditional_expression] = STATE(2097), - [sym_equality_expression] = STATE(2097), - [sym_relational_expression] = STATE(2097), - [sym_delete_expression] = STATE(2097), - [sym_sizeof_expression] = STATE(2097), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(2097), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(2097), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(2097), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(2099), - [sym_assignment_expression] = STATE(2097), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(2097), - [sym_math_expression] = STATE(2097), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(4217), + [1088] = { + [sym_template_function] = STATE(2086), + [sym__expression] = STATE(2086), + [sym_logical_expression] = STATE(2086), + [sym_bitwise_expression] = STATE(2086), + [sym_cast_expression] = STATE(2086), + [sym_delete_expression] = STATE(2086), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(2086), + [sym_char_literal] = STATE(2086), + [sym_lambda_expression] = STATE(2086), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2087), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(2088), + [sym_conditional_expression] = STATE(2086), + [sym_equality_expression] = STATE(2086), + [sym_relational_expression] = STATE(2086), + [sym_sizeof_expression] = STATE(2086), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(2086), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2086), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(2086), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(2086), + [sym_math_expression] = STATE(2086), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(2086), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(4215), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(4219), + [sym_true] = ACTIONS(4217), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4219), + [sym_null] = ACTIONS(4217), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4217), + [sym_number_literal] = ACTIONS(4215), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(4219), + [sym_false] = ACTIONS(4217), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(4219), + [sym_nullptr] = ACTIONS(4217), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1093] = { - [aux_sym_string_literal_repeat1] = STATE(2101), + [1089] = { + [aux_sym_string_literal_repeat1] = STATE(2090), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(4221), - [aux_sym_string_literal_token1] = ACTIONS(4221), - [anon_sym_DQUOTE] = ACTIONS(4223), + [sym_escape_sequence] = ACTIONS(4219), + [aux_sym_string_literal_token1] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4221), }, - [1094] = { - [sym_destructor_name] = STATE(2103), + [1090] = { + [sym_destructor_name] = STATE(2092), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(4225), - [sym_operator_name] = ACTIONS(4227), - [anon_sym_TILDE] = ACTIONS(4229), - [anon_sym_delete] = ACTIONS(4231), + [sym_identifier] = ACTIONS(4223), + [sym_operator_name] = ACTIONS(4225), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_delete] = ACTIONS(4229), }, - [1095] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(2106), - [sym_logical_expression] = STATE(2106), - [sym_bitwise_expression] = STATE(2106), - [sym_cast_expression] = STATE(2106), - [sym_new_expression] = STATE(2106), - [sym_field_expression] = STATE(2106), - [sym_compound_literal_expression] = STATE(2106), - [sym_char_literal] = STATE(2106), - [sym_template_function] = STATE(2106), - [sym_conditional_expression] = STATE(2106), - [sym_equality_expression] = STATE(2106), - [sym_relational_expression] = STATE(2106), - [sym_delete_expression] = STATE(2106), - [sym_sizeof_expression] = STATE(2106), - [sym_parenthesized_expression] = STATE(2106), - [sym_lambda_expression] = STATE(2106), - [sym_concatenated_string] = STATE(2106), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(2106), - [sym_assignment_expression] = STATE(2106), - [sym_pointer_expression] = STATE(2106), - [sym_shift_expression] = STATE(2106), - [sym_math_expression] = STATE(2106), - [sym_call_expression] = STATE(2106), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(4233), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(4235), - [sym_null] = ACTIONS(4235), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(4233), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(4235), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4235), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [1091] = { + [sym_template_function] = STATE(2095), + [sym__expression] = STATE(2095), + [sym_logical_expression] = STATE(2095), + [sym_bitwise_expression] = STATE(2095), + [sym_cast_expression] = STATE(2095), + [sym_delete_expression] = STATE(2095), + [sym_field_expression] = STATE(2095), + [sym_compound_literal_expression] = STATE(2095), + [sym_lambda_expression] = STATE(2095), + [sym_char_literal] = STATE(2095), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(2095), + [sym_equality_expression] = STATE(2095), + [sym_relational_expression] = STATE(2095), + [sym_sizeof_expression] = STATE(2095), + [sym_subscript_expression] = STATE(2095), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(2095), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(2095), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(2095), + [sym_pointer_expression] = STATE(2095), + [sym_shift_expression] = STATE(2095), + [sym_math_expression] = STATE(2095), + [sym_call_expression] = STATE(2095), + [sym_new_expression] = STATE(2095), + [sym_raw_string_literal] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(4231), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), }, - [1096] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(2108), - [sym_logical_expression] = STATE(2108), - [sym_bitwise_expression] = STATE(2108), - [sym_cast_expression] = STATE(2108), - [sym_new_expression] = STATE(2108), - [sym_field_expression] = STATE(2108), - [sym_compound_literal_expression] = STATE(2108), - [sym_char_literal] = STATE(2108), - [sym_template_function] = STATE(2108), - [sym_conditional_expression] = STATE(2108), - [sym_equality_expression] = STATE(2108), - [sym_relational_expression] = STATE(2108), - [sym_delete_expression] = STATE(2108), - [sym_sizeof_expression] = STATE(2108), - [sym_parenthesized_expression] = STATE(2108), - [sym_lambda_expression] = STATE(2108), - [sym_concatenated_string] = STATE(2108), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(2108), - [sym_assignment_expression] = STATE(2108), - [sym_pointer_expression] = STATE(2108), - [sym_shift_expression] = STATE(2108), - [sym_math_expression] = STATE(2108), - [sym_call_expression] = STATE(2108), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(4237), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(4239), - [sym_true] = ACTIONS(4241), - [sym_null] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(4237), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(4241), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4241), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [1092] = { + [sym_template_function] = STATE(2097), + [sym__expression] = STATE(2097), + [sym_logical_expression] = STATE(2097), + [sym_bitwise_expression] = STATE(2097), + [sym_cast_expression] = STATE(2097), + [sym_delete_expression] = STATE(2097), + [sym_field_expression] = STATE(2097), + [sym_compound_literal_expression] = STATE(2097), + [sym_lambda_expression] = STATE(2097), + [sym_char_literal] = STATE(2097), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(2097), + [sym_equality_expression] = STATE(2097), + [sym_relational_expression] = STATE(2097), + [sym_sizeof_expression] = STATE(2097), + [sym_subscript_expression] = STATE(2097), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(2097), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(2097), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(2097), + [sym_pointer_expression] = STATE(2097), + [sym_shift_expression] = STATE(2097), + [sym_math_expression] = STATE(2097), + [sym_call_expression] = STATE(2097), + [sym_new_expression] = STATE(2097), + [sym_raw_string_literal] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(4237), + [sym_true] = ACTIONS(4239), + [sym_null] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(4235), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), }, - [1097] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(2109), - [sym_logical_expression] = STATE(2109), - [sym_bitwise_expression] = STATE(2109), - [sym_cast_expression] = STATE(2109), - [sym_new_expression] = STATE(2109), - [sym_field_expression] = STATE(2109), - [sym_compound_literal_expression] = STATE(2109), - [sym_char_literal] = STATE(2109), - [sym_template_function] = STATE(2109), - [sym_conditional_expression] = STATE(2109), - [sym_equality_expression] = STATE(2109), - [sym_relational_expression] = STATE(2109), - [sym_delete_expression] = STATE(2109), - [sym_sizeof_expression] = STATE(2109), - [sym_parenthesized_expression] = STATE(2109), - [sym_lambda_expression] = STATE(2109), - [sym_concatenated_string] = STATE(2109), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(2109), - [sym_assignment_expression] = STATE(2109), - [sym_pointer_expression] = STATE(2109), - [sym_shift_expression] = STATE(2109), - [sym_math_expression] = STATE(2109), - [sym_call_expression] = STATE(2109), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(4243), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(4245), - [sym_null] = ACTIONS(4245), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(4243), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(4245), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4245), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [1093] = { + [sym_template_function] = STATE(2098), + [sym__expression] = STATE(2098), + [sym_logical_expression] = STATE(2098), + [sym_bitwise_expression] = STATE(2098), + [sym_cast_expression] = STATE(2098), + [sym_delete_expression] = STATE(2098), + [sym_field_expression] = STATE(2098), + [sym_compound_literal_expression] = STATE(2098), + [sym_lambda_expression] = STATE(2098), + [sym_char_literal] = STATE(2098), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(2098), + [sym_equality_expression] = STATE(2098), + [sym_relational_expression] = STATE(2098), + [sym_sizeof_expression] = STATE(2098), + [sym_subscript_expression] = STATE(2098), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(2098), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(2098), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(2098), + [sym_pointer_expression] = STATE(2098), + [sym_shift_expression] = STATE(2098), + [sym_math_expression] = STATE(2098), + [sym_call_expression] = STATE(2098), + [sym_new_expression] = STATE(2098), + [sym_raw_string_literal] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(4243), + [sym_null] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), }, - [1098] = { - [sym_template_argument_list] = STATE(2113), - [sym_initializer_list] = STATE(2114), + [1094] = { + [sym_initializer_list] = STATE(2102), + [sym_template_argument_list] = STATE(2103), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4245), [anon_sym_STAR_EQ] = ACTIONS(165), [anon_sym_LT_LT_EQ] = ACTIONS(165), [anon_sym_PERCENT_EQ] = ACTIONS(165), [anon_sym_GT2] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_COLON_COLON] = ACTIONS(4247), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4249), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -54078,146 +53967,140 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1099] = { - [sym_union_specifier] = STATE(2126), - [sym_macro_type_specifier] = STATE(2126), - [sym_class_specifier] = STATE(2126), - [sym_template_type] = STATE(2122), - [sym_sized_type_specifier] = STATE(2126), - [sym_scoped_namespace_identifier] = STATE(2124), - [sym__type_specifier] = STATE(2126), - [aux_sym_sized_type_specifier_repeat1] = STATE(2125), - [sym_argument_list] = STATE(2127), - [sym_enum_specifier] = STATE(2126), - [sym_struct_specifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2123), - [sym_dependent_type] = STATE(2126), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(4254), - [sym_auto] = ACTIONS(4256), - [anon_sym_signed] = ACTIONS(4258), - [anon_sym_long] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4264), - [sym_primitive_type] = ACTIONS(4256), - [anon_sym_unsigned] = ACTIONS(4258), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4268), - [sym_identifier] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4258), + [1095] = { + [sym_union_specifier] = STATE(2112), + [sym_macro_type_specifier] = STATE(2112), + [sym_class_specifier] = STATE(2112), + [aux_sym_sized_type_specifier_repeat1] = STATE(2111), + [sym_sized_type_specifier] = STATE(2112), + [sym__type_specifier] = STATE(2112), + [sym_argument_list] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_enum_specifier] = STATE(2112), + [sym_template_type] = STATE(2115), + [sym_scoped_namespace_identifier] = STATE(2116), + [sym_dependent_type] = STATE(2112), + [sym_struct_specifier] = STATE(2112), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(4252), + [sym_auto] = ACTIONS(4254), + [anon_sym_signed] = ACTIONS(4256), + [anon_sym_long] = ACTIONS(4256), + [anon_sym_COLON_COLON] = ACTIONS(4258), + [anon_sym_enum] = ACTIONS(4260), + [anon_sym_class] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(4254), + [anon_sym_unsigned] = ACTIONS(4256), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(4264), + [anon_sym_typename] = ACTIONS(4266), + [sym_identifier] = ACTIONS(4268), + [anon_sym_short] = ACTIONS(4256), }, - [1100] = { - [sym_escape_sequence] = ACTIONS(4272), - [aux_sym_char_literal_token1] = ACTIONS(4274), + [1096] = { + [sym_escape_sequence] = ACTIONS(4270), + [aux_sym_char_literal_token1] = ACTIONS(4272), [sym_comment] = ACTIONS(244), }, - [1101] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(2130), - [sym_logical_expression] = STATE(2130), - [sym_bitwise_expression] = STATE(2130), - [sym_cast_expression] = STATE(2130), - [sym_new_expression] = STATE(2130), - [sym_field_expression] = STATE(2130), - [sym_compound_literal_expression] = STATE(2130), - [sym_char_literal] = STATE(2130), - [sym_template_function] = STATE(2130), - [sym_conditional_expression] = STATE(2130), - [sym_equality_expression] = STATE(2130), - [sym_relational_expression] = STATE(2130), - [sym_delete_expression] = STATE(2130), - [sym_sizeof_expression] = STATE(2130), - [sym_parenthesized_expression] = STATE(2130), - [sym_lambda_expression] = STATE(2130), - [sym_concatenated_string] = STATE(2130), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(2130), - [sym_assignment_expression] = STATE(2130), - [sym_pointer_expression] = STATE(2130), - [sym_shift_expression] = STATE(2130), - [sym_math_expression] = STATE(2130), - [sym_call_expression] = STATE(2130), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(4278), - [sym_null] = ACTIONS(4278), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(4280), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), - }, - [1102] = { - [sym_initializer_list] = STATE(2132), - [anon_sym_COLON_COLON] = ACTIONS(4282), - [anon_sym_LBRACE] = ACTIONS(4247), - [sym_comment] = ACTIONS(3), + [1097] = { + [sym_template_function] = STATE(2119), + [sym__expression] = STATE(2119), + [sym_logical_expression] = STATE(2119), + [sym_bitwise_expression] = STATE(2119), + [sym_cast_expression] = STATE(2119), + [sym_delete_expression] = STATE(2119), + [sym_field_expression] = STATE(2119), + [sym_compound_literal_expression] = STATE(2119), + [sym_lambda_expression] = STATE(2119), + [sym_char_literal] = STATE(2119), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(2119), + [sym_equality_expression] = STATE(2119), + [sym_relational_expression] = STATE(2119), + [sym_sizeof_expression] = STATE(2119), + [sym_subscript_expression] = STATE(2119), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(2119), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(2119), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(2119), + [sym_pointer_expression] = STATE(2119), + [sym_shift_expression] = STATE(2119), + [sym_math_expression] = STATE(2119), + [sym_call_expression] = STATE(2119), + [sym_new_expression] = STATE(2119), + [sym_raw_string_literal] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(4276), + [sym_null] = ACTIONS(4276), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), }, - [1103] = { - [sym_argument_list] = STATE(1165), + [1098] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_LT_LT_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_GT2] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_CARET_EQ] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_PIPE_EQ] = ACTIONS(1249), - [anon_sym_GT_GT_EQ] = ACTIONS(1247), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_GT2] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1251), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1251), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_AMP_EQ] = ACTIONS(1249), - [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), }, - [1104] = { - [sym_template_argument_list] = STATE(2145), + [1099] = { + [sym_template_argument_list] = STATE(2132), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_STAR_EQ] = ACTIONS(165), @@ -54226,7 +54109,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4249), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -54258,16 +54141,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1105] = { - [sym_template_argument_list] = STATE(354), - [sym_initializer_list] = STATE(2132), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(4247), + [1100] = { + [sym_initializer_list] = STATE(2133), + [sym_template_argument_list] = STATE(312), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(4245), [sym_comment] = ACTIONS(3), }, - [1106] = { - [sym_string_literal] = STATE(2146), - [aux_sym_concatenated_string_repeat1] = STATE(2146), + [1101] = { + [sym_abstract_reference_declarator] = STATE(321), + [sym_abstract_array_declarator] = STATE(321), + [sym_abstract_pointer_declarator] = STATE(321), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(2134), + [sym__abstract_declarator] = STATE(321), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(544), + [sym_comment] = ACTIONS(3), + }, + [1102] = { + [sym_string_literal] = STATE(2135), + [aux_sym_concatenated_string_repeat1] = STATE(2135), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_STAR_EQ] = ACTIONS(165), @@ -54292,7 +54189,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2220), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -54309,728 +54206,720 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1107] = { - [sym_parameter_list] = STATE(361), - [sym_abstract_array_declarator] = STATE(363), - [sym_abstract_pointer_declarator] = STATE(363), - [sym_abstract_reference_declarator] = STATE(363), - [sym_abstract_function_declarator] = STATE(2147), - [sym__abstract_declarator] = STATE(363), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), + [1103] = { + [anon_sym_COLON_COLON] = ACTIONS(4280), [sym_comment] = ACTIONS(3), }, - [1108] = { - [anon_sym_COLON_COLON] = ACTIONS(4282), + [1104] = { + [sym_initializer_list] = STATE(2133), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_LBRACE] = ACTIONS(4245), [sym_comment] = ACTIONS(3), }, - [1109] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(1083), - [sym_logical_expression] = STATE(1083), - [sym_bitwise_expression] = STATE(1083), - [sym_cast_expression] = STATE(1083), - [sym_new_expression] = STATE(1083), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1083), - [sym_type_descriptor] = STATE(2148), - [sym_char_literal] = STATE(1083), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(1083), - [sym_conditional_expression] = STATE(1083), - [sym_equality_expression] = STATE(1083), - [sym_relational_expression] = STATE(1083), - [sym_delete_expression] = STATE(1083), - [sym_sizeof_expression] = STATE(1083), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(1083), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(1083), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(1083), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(1085), - [sym_assignment_expression] = STATE(1083), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1083), - [sym_math_expression] = STATE(1083), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(2190), + [1105] = { + [sym_template_function] = STATE(1079), + [sym__expression] = STATE(1079), + [sym_logical_expression] = STATE(1079), + [sym_bitwise_expression] = STATE(1079), + [sym_cast_expression] = STATE(1079), + [sym_delete_expression] = STATE(1079), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(1079), + [sym_char_literal] = STATE(1079), + [sym_lambda_expression] = STATE(1079), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2137), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(1081), + [sym_conditional_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_relational_expression] = STATE(1079), + [sym_sizeof_expression] = STATE(1079), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(1079), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1079), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(1079), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1079), + [sym_math_expression] = STATE(1079), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1079), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(2192), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(2192), + [sym_true] = ACTIONS(2194), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(2192), + [sym_null] = ACTIONS(2194), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(2190), + [sym_number_literal] = ACTIONS(2192), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(2192), + [sym_false] = ACTIONS(2194), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(2192), + [sym_nullptr] = ACTIONS(2194), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1110] = { - [sym_argument_list] = STATE(1165), + [1106] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_GT2] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_GT_EQ] = ACTIONS(670), [anon_sym_STAR] = ACTIONS(2311), [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [1111] = { - [sym_template_argument_list] = STATE(1788), - [sym_virtual_specifier] = STATE(2149), - [sym_field_declaration_list] = STATE(2150), - [sym_base_class_clause] = STATE(2151), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_DASH_GT] = ACTIONS(1251), - [anon_sym_mutable] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_GT2] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(4191), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1253), - [sym_operator_name] = ACTIONS(1251), - [sym_noexcept] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1251), - [anon_sym_register] = ACTIONS(1253), - [anon_sym__Atomic] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_constexpr] = ACTIONS(1253), + [1107] = { + [sym_virtual_specifier] = STATE(2138), + [sym_template_argument_list] = STATE(1786), + [sym_field_declaration_list] = STATE(2139), + [sym_base_class_clause] = STATE(2140), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_DASH_GT] = ACTIONS(1257), + [anon_sym_mutable] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_GT2] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1259), + [sym_operator_name] = ACTIONS(1257), + [sym_noexcept] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_constexpr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_inline] = ACTIONS(1253), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(1259), }, - [1112] = { - [sym_field_declaration_list] = STATE(2152), - [sym_base_class_clause] = STATE(2153), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2180), + [1108] = { + [sym_virtual_specifier] = STATE(2141), + [sym_template_argument_list] = STATE(1162), + [sym_field_declaration_list] = STATE(2142), + [sym_base_class_clause] = STATE(2143), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_mutable] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_explicit] = ACTIONS(1261), + [sym_noexcept] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym__Atomic] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1261), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(1263), }, - [1113] = { - [sym_virtual_specifier] = STATE(2154), - [sym_field_declaration_list] = STATE(2152), - [sym_base_class_clause] = STATE(2153), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_mutable] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(3544), - [anon_sym_GT2] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1257), - [sym_operator_name] = ACTIONS(1255), - [sym_noexcept] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1257), + [1109] = { + [sym_field_declaration_list] = STATE(2142), + [sym_base_class_clause] = STATE(2143), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(1257), }, - [1114] = { - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_mutable] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1255), - [anon_sym_GT2] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1257), - [anon_sym_explicit] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1257), - [sym_operator_name] = ACTIONS(1255), - [sym_noexcept] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1257), + [1110] = { + [sym_virtual_specifier] = STATE(2141), + [sym_field_declaration_list] = STATE(2142), + [sym_base_class_clause] = STATE(2143), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_mutable] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_GT2] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1263), + [sym_operator_name] = ACTIONS(1261), + [sym_noexcept] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(1255), - }, - [1115] = { - [sym_template_argument_list] = STATE(1169), - [sym_virtual_specifier] = STATE(2154), - [sym_field_declaration_list] = STATE(2152), - [sym_base_class_clause] = STATE(2153), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_mutable] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_GT2] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(4191), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_explicit] = ACTIONS(1255), - [sym_noexcept] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(1263), }, - [1116] = { - [sym_field_declaration_list] = STATE(2152), - [anon_sym_LBRACE] = ACTIONS(2180), + [1111] = { + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_mutable] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1263), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_GT2] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1263), + [anon_sym_explicit] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1263), + [sym_operator_name] = ACTIONS(1261), + [sym_noexcept] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_DASH_GT] = ACTIONS(1261), }, - [1117] = { - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_mutable] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_final] = ACTIONS(1261), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_GT2] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_override] = ACTIONS(1261), - [anon_sym_explicit] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1261), - [sym_operator_name] = ACTIONS(1259), - [sym_noexcept] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1261), - [anon_sym__Atomic] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT_LT] = ACTIONS(1259), - [anon_sym_constexpr] = ACTIONS(1261), + [1112] = { + [sym_field_declaration_list] = STATE(2142), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1259), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1261), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_restrict] = ACTIONS(1261), - [anon_sym_GT_GT] = ACTIONS(1261), - [anon_sym_DASH_GT] = ACTIONS(1259), }, - [1118] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2155), - [sym_logical_expression] = STATE(2155), - [sym_bitwise_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), + [1113] = { + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_mutable] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_final] = ACTIONS(1267), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_GT2] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_override] = ACTIONS(1267), + [anon_sym_explicit] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1267), + [sym_operator_name] = ACTIONS(1265), + [sym_noexcept] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1265), + [anon_sym_constexpr] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_DASH_GT] = ACTIONS(1265), + }, + [1114] = { + [sym_template_function] = STATE(2144), + [sym__expression] = STATE(2144), + [sym_logical_expression] = STATE(2144), + [sym_bitwise_expression] = STATE(2144), + [sym_cast_expression] = STATE(2144), + [sym_delete_expression] = STATE(2144), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2155), - [sym_char_literal] = STATE(2155), - [sym_template_function] = STATE(2155), - [sym_conditional_expression] = STATE(2155), - [sym_equality_expression] = STATE(2155), - [sym_relational_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_concatenated_string] = STATE(2155), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2144), + [sym_lambda_expression] = STATE(2144), + [sym_char_literal] = STATE(2144), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2144), + [sym_equality_expression] = STATE(2144), + [sym_relational_expression] = STATE(2144), + [sym_sizeof_expression] = STATE(2144), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2155), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2144), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2144), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2144), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2155), - [sym_math_expression] = STATE(2155), + [sym_shift_expression] = STATE(2144), + [sym_math_expression] = STATE(2144), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4286), - [sym_null] = ACTIONS(4286), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2144), + [sym_raw_string_literal] = ACTIONS(4282), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4284), + [sym_null] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4282), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1119] = { - [sym_destructor_name] = STATE(2156), - [sym_identifier] = ACTIONS(4288), - [sym_operator_name] = ACTIONS(4290), - [anon_sym_TILDE] = ACTIONS(2198), + [1115] = { + [sym_destructor_name] = STATE(2145), + [sym_identifier] = ACTIONS(4286), + [sym_operator_name] = ACTIONS(4288), + [anon_sym_TILDE] = ACTIONS(2200), [sym_comment] = ACTIONS(3), }, - [1120] = { - [sym_template_type] = STATE(419), - [sym__expression] = STATE(2159), - [sym_logical_expression] = STATE(2159), - [sym_bitwise_expression] = STATE(2159), - [sym_cast_expression] = STATE(2159), - [sym_new_expression] = STATE(2159), + [1116] = { + [sym_template_function] = STATE(2148), + [sym__expression] = STATE(2148), + [sym_logical_expression] = STATE(2148), + [sym_bitwise_expression] = STATE(2148), + [sym_cast_expression] = STATE(2148), + [sym_delete_expression] = STATE(2148), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2159), - [sym_type_descriptor] = STATE(2160), - [sym_char_literal] = STATE(2159), + [sym_scoped_type_identifier] = STATE(422), + [sym_compound_literal_expression] = STATE(2148), + [sym_char_literal] = STATE(2148), + [sym_lambda_expression] = STATE(2148), + [sym_scoped_identifier] = STATE(423), + [sym_type_descriptor] = STATE(2149), + [sym_dependent_type] = STATE(428), + [sym_struct_specifier] = STATE(428), + [sym_union_specifier] = STATE(428), [sym_type_qualifier] = STATE(429), - [sym_dependent_type] = STATE(426), - [sym_union_specifier] = STATE(426), - [sym_struct_specifier] = STATE(426), - [sym_template_function] = STATE(2159), - [sym_conditional_expression] = STATE(2159), - [sym_equality_expression] = STATE(2159), - [sym_relational_expression] = STATE(2159), - [sym_delete_expression] = STATE(2159), - [sym_sizeof_expression] = STATE(2159), + [sym_conditional_expression] = STATE(2148), + [sym_equality_expression] = STATE(2148), + [sym_relational_expression] = STATE(2148), + [sym_sizeof_expression] = STATE(2148), [sym_subscript_expression] = STATE(421), - [sym_parenthesized_expression] = STATE(2159), - [sym_scoped_type_identifier] = STATE(423), - [sym_string_literal] = STATE(424), - [sym_macro_type_specifier] = STATE(426), - [sym_class_specifier] = STATE(426), - [sym_concatenated_string] = STATE(2159), - [sym_sized_type_specifier] = STATE(426), - [sym_lambda_expression] = STATE(2159), - [sym_scoped_identifier] = STATE(425), - [sym__type_specifier] = STATE(426), - [sym_assignment_expression] = STATE(2159), + [sym_parenthesized_expression] = STATE(2148), + [sym_lambda_capture_specifier] = STATE(425), + [sym_concatenated_string] = STATE(2148), + [sym_string_literal] = STATE(426), + [sym_macro_type_specifier] = STATE(428), + [sym_class_specifier] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(428), + [sym__type_specifier] = STATE(428), + [aux_sym_type_definition_repeat1] = STATE(429), + [sym_scoped_namespace_identifier] = STATE(430), + [sym_template_type] = STATE(431), + [sym_assignment_expression] = STATE(2148), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2159), - [sym_math_expression] = STATE(2159), + [sym_shift_expression] = STATE(2148), + [sym_math_expression] = STATE(2148), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_enum_specifier] = STATE(426), - [sym_raw_string_literal] = ACTIONS(4292), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(702), - [sym_true] = ACTIONS(4294), + [sym_new_expression] = STATE(2148), + [sym_enum_specifier] = STATE(428), + [sym_raw_string_literal] = ACTIONS(4290), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(706), + [sym_true] = ACTIONS(4292), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4294), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(710), - [anon_sym_signed] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_GT2] = ACTIONS(4296), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(720), + [sym_null] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_GT2] = ACTIONS(4294), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_sizeof] = ACTIONS(724), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_short] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_short] = ACTIONS(716), + [anon_sym_delete] = ACTIONS(734), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4292), - [anon_sym_DQUOTE] = ACTIONS(732), + [sym_number_literal] = ACTIONS(4290), + [anon_sym_DQUOTE] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(702), - [sym_false] = ACTIONS(4294), - [anon_sym_unsigned] = ACTIONS(712), - [sym_nullptr] = ACTIONS(4294), + [sym_primitive_type] = ACTIONS(706), + [sym_false] = ACTIONS(4292), + [anon_sym_unsigned] = ACTIONS(716), + [sym_nullptr] = ACTIONS(4292), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1121] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2163), - [sym_logical_expression] = STATE(2163), - [sym_bitwise_expression] = STATE(2163), - [sym_cast_expression] = STATE(2163), - [sym_new_expression] = STATE(2163), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2163), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2163), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2163), - [sym_conditional_expression] = STATE(2163), - [sym_equality_expression] = STATE(2163), - [sym_relational_expression] = STATE(2163), - [sym_delete_expression] = STATE(2163), - [sym_sizeof_expression] = STATE(2163), - [sym_parenthesized_expression] = STATE(2163), - [sym_initializer_list] = STATE(2164), - [sym_concatenated_string] = STATE(2163), + [1117] = { + [sym_template_function] = STATE(2152), + [sym__expression] = STATE(2152), + [sym_logical_expression] = STATE(2152), + [sym_bitwise_expression] = STATE(2152), + [sym_cast_expression] = STATE(2152), + [sym_delete_expression] = STATE(2152), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2152), + [sym_lambda_expression] = STATE(2152), + [sym_char_literal] = STATE(2152), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2152), + [sym_equality_expression] = STATE(2152), + [sym_relational_expression] = STATE(2152), + [sym_sizeof_expression] = STATE(2152), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2153), + [sym_parenthesized_expression] = STATE(2152), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2163), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2163), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2163), - [sym_math_expression] = STATE(2163), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2164), - [sym_raw_string_literal] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4298), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(4302), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4300), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(4304), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2152), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2152), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2152), + [sym_math_expression] = STATE(2152), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2152), + [sym_initializer_pair] = STATE(2153), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4296), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4298), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4296), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4298), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4298), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(4302), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [1122] = { - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - [anon_sym_mutable] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(780), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_volatile] = ACTIONS(789), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_explicit] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym__Atomic] = ACTIONS(789), - [anon_sym_const] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(780), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_constexpr] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(780), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_restrict] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(783), + [1118] = { + [anon_sym_LPAREN2] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_GT2] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(784), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(784), }, - [1123] = { - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_CARET] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_DOT] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_PERCENT] = ACTIONS(794), - [anon_sym_GT2] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_QMARK] = ACTIONS(794), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_LT_EQ] = ACTIONS(794), - [anon_sym_BANG_EQ] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_DASH_GT] = ACTIONS(794), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(794), + [1119] = { + [anon_sym_LPAREN2] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_mutable] = ACTIONS(797), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_GT2] = ACTIONS(788), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_explicit] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym__Atomic] = ACTIONS(797), + [anon_sym_const] = ACTIONS(795), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_constexpr] = ACTIONS(797), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_restrict] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(791), }, - [1124] = { - [sym_union_specifier] = STATE(1117), - [sym_macro_type_specifier] = STATE(1117), - [sym_class_specifier] = STATE(1117), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1117), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1117), - [aux_sym_sized_type_specifier_repeat1] = STATE(1128), - [sym_struct_specifier] = STATE(1117), - [sym_enum_specifier] = STATE(1117), - [sym_scoped_type_identifier] = STATE(1127), - [sym_dependent_type] = STATE(1117), - [anon_sym_unsigned] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(2246), - [anon_sym_signed] = ACTIONS(2261), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(2265), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(2267), - [anon_sym_short] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(2246), + [1120] = { + [sym_union_specifier] = STATE(1113), + [sym_macro_type_specifier] = STATE(1113), + [sym_class_specifier] = STATE(1113), + [aux_sym_sized_type_specifier_repeat1] = STATE(1123), + [sym_sized_type_specifier] = STATE(1113), + [sym__type_specifier] = STATE(1113), + [sym_scoped_type_identifier] = STATE(1126), + [sym_enum_specifier] = STATE(1113), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1113), + [sym_struct_specifier] = STATE(1113), + [anon_sym_unsigned] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(2263), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2263), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(2267), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(2248), }, - [1125] = { - [sym_template_argument_list] = STATE(1788), + [1121] = { + [sym_template_argument_list] = STATE(1786), [anon_sym_LPAREN2] = ACTIONS(185), [anon_sym_DASH] = ACTIONS(169), [anon_sym_GT_GT] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_COLON_COLON] = ACTIONS(3546), [anon_sym_GT2] = ACTIONS(185), [anon_sym_EQ_EQ] = ACTIONS(185), [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(4306), + [anon_sym_LT] = ACTIONS(4304), [anon_sym_AMP] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(169), [anon_sym_GT_EQ] = ACTIONS(169), @@ -55054,209 +54943,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(185), [anon_sym_DASH_DASH] = ACTIONS(185), }, - [1126] = { - [sym_enumerator_list] = STATE(1137), + [1122] = { + [sym_enumerator_list] = STATE(1133), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2279), - [sym_identifier] = ACTIONS(4309), + [anon_sym_LBRACE] = ACTIONS(2281), + [sym_identifier] = ACTIONS(4307), }, - [1127] = { - [sym_template_argument_list] = STATE(1169), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_GT_GT] = ACTIONS(547), - [anon_sym_GT2] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(545), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), + [1123] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2155), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(4309), + [anon_sym_long] = ACTIONS(4309), + [anon_sym_GT2] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(4309), + [sym_identifier] = ACTIONS(2343), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(4309), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, - [1128] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2166), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(4314), - [anon_sym_long] = ACTIONS(4314), - [anon_sym_GT2] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(4314), - [sym_identifier] = ACTIONS(2351), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(2349), - [anon_sym_unsigned] = ACTIONS(4314), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [1124] = { + [sym_new_declarator] = STATE(2158), + [sym_argument_list] = STATE(2159), + [sym_initializer_list] = STATE(2159), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_GT2] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_GT_GT] = ACTIONS(1284), }, - [1129] = { - [sym_initializer_list] = STATE(2170), - [sym_new_declarator] = STATE(2169), - [sym_argument_list] = STATE(2170), - [anon_sym_LPAREN2] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_GT2] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(1281), + [1125] = { + [sym_union_specifier] = STATE(2160), + [sym_macro_type_specifier] = STATE(2160), + [sym_class_specifier] = STATE(2160), + [aux_sym_sized_type_specifier_repeat1] = STATE(1123), + [sym_sized_type_specifier] = STATE(2160), + [sym__type_specifier] = STATE(2160), + [sym_scoped_type_identifier] = STATE(1126), + [sym_enum_specifier] = STATE(2160), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(2160), + [sym_struct_specifier] = STATE(2160), + [anon_sym_unsigned] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(4315), + [anon_sym_signed] = ACTIONS(2263), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2263), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(2267), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(4315), }, - [1130] = { - [sym_union_specifier] = STATE(2171), - [sym_macro_type_specifier] = STATE(2171), - [sym_class_specifier] = STATE(2171), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(2171), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(2171), - [aux_sym_sized_type_specifier_repeat1] = STATE(1128), - [sym_struct_specifier] = STATE(2171), - [sym_enum_specifier] = STATE(2171), - [sym_scoped_type_identifier] = STATE(1127), - [sym_dependent_type] = STATE(2171), - [anon_sym_unsigned] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(4320), - [anon_sym_signed] = ACTIONS(2261), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(2265), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(2267), - [anon_sym_short] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(4320), + [1126] = { + [sym_template_argument_list] = STATE(1162), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_GT2] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(530), }, - [1131] = { - [sym_template_type] = STATE(239), + [1127] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(4322), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(4320), }, - [1132] = { - [sym_argument_list] = STATE(1165), + [1128] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(804), [anon_sym_PIPE_PIPE] = ACTIONS(2305), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), @@ -55265,9 +55154,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(800), + [anon_sym_GT2] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(804), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -55281,2419 +55170,2419 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [1133] = { - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_GT2] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1317), - [anon_sym_PIPE_PIPE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_LT_LT] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_PERCENT] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_DASH_GT] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1317), + [1129] = { + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_GT2] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1325), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1325), }, - [1134] = { - [aux_sym_string_literal_repeat1] = STATE(731), + [1130] = { + [aux_sym_string_literal_repeat1] = STATE(732), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(4324), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(4322), }, - [1135] = { - [sym_enumerator] = STATE(2176), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4328), + [1131] = { + [sym_enumerator] = STATE(2165), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(4324), + [anon_sym_COMMA] = ACTIONS(4326), [sym_comment] = ACTIONS(3), }, - [1136] = { - [sym_enumerator_list] = STATE(2177), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_final] = ACTIONS(874), - [anon_sym_mutable] = ACTIONS(874), - [anon_sym_COLON_COLON] = ACTIONS(872), - [anon_sym_GT2] = ACTIONS(872), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_volatile] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_override] = ACTIONS(874), - [anon_sym_explicit] = ACTIONS(874), - [sym_identifier] = ACTIONS(874), - [sym_operator_name] = ACTIONS(872), - [sym_noexcept] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_register] = ACTIONS(874), - [anon_sym__Atomic] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_constexpr] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_inline] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(872), - [anon_sym_restrict] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_DASH_GT] = ACTIONS(872), - }, - [1137] = { + [1132] = { + [sym_enumerator_list] = STATE(2166), [anon_sym_LPAREN2] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_mutable] = ACTIONS(878), - [anon_sym_DASH_DASH] = ACTIONS(876), [anon_sym_final] = ACTIONS(878), + [anon_sym_mutable] = ACTIONS(878), [anon_sym_COLON_COLON] = ACTIONS(876), [anon_sym_GT2] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), [anon_sym_AMP] = ACTIONS(878), [anon_sym_static] = ACTIONS(878), [anon_sym_volatile] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(878), [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(878), [anon_sym_override] = ACTIONS(878), [anon_sym_explicit] = ACTIONS(878), [sym_identifier] = ACTIONS(878), [sym_operator_name] = ACTIONS(876), [sym_noexcept] = ACTIONS(878), - [anon_sym_CARET] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), [anon_sym_COMMA] = ACTIONS(876), [anon_sym_register] = ACTIONS(878), [anon_sym__Atomic] = ACTIONS(878), [anon_sym_const] = ACTIONS(878), [anon_sym_extern] = ACTIONS(878), [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), [anon_sym_constexpr] = ACTIONS(878), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_QMARK] = ACTIONS(876), [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), [anon_sym_AMP_AMP] = ACTIONS(876), [anon_sym_inline] = ACTIONS(878), - [anon_sym_EQ] = ACTIONS(878), + [anon_sym_EQ] = ACTIONS(876), [anon_sym_restrict] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(2281), [anon_sym_DASH_GT] = ACTIONS(876), }, - [1138] = { - [sym_template_argument_list] = STATE(1788), - [sym_virtual_specifier] = STATE(2178), - [sym_field_declaration_list] = STATE(2179), - [sym_base_class_clause] = STATE(2180), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_mutable] = ACTIONS(1474), - [anon_sym_inline] = ACTIONS(1474), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_GT2] = ACTIONS(1472), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(4191), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_volatile] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1474), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1474), - [sym_operator_name] = ACTIONS(1472), - [sym_noexcept] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_constexpr] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_DASH_GT] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(1474), + [1133] = { + [anon_sym_LPAREN2] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_mutable] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_final] = ACTIONS(882), + [anon_sym_COLON_COLON] = ACTIONS(880), + [anon_sym_GT2] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_static] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_override] = ACTIONS(882), + [anon_sym_explicit] = ACTIONS(882), + [sym_identifier] = ACTIONS(882), + [sym_operator_name] = ACTIONS(880), + [sym_noexcept] = ACTIONS(882), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_register] = ACTIONS(882), + [anon_sym__Atomic] = ACTIONS(882), + [anon_sym_const] = ACTIONS(882), + [anon_sym_extern] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_constexpr] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_QMARK] = ACTIONS(880), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_inline] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_restrict] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_DASH_GT] = ACTIONS(880), }, - [1139] = { - [sym_field_declaration_list] = STATE(2181), - [sym_base_class_clause] = STATE(2182), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), + [1134] = { + [sym_virtual_specifier] = STATE(2167), + [sym_template_argument_list] = STATE(1786), + [sym_field_declaration_list] = STATE(2168), + [sym_base_class_clause] = STATE(2169), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_mutable] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_GT2] = ACTIONS(1486), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1488), + [sym_operator_name] = ACTIONS(1486), + [sym_noexcept] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_DASH_GT] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(1488), }, - [1140] = { - [sym_virtual_specifier] = STATE(2183), - [sym_field_declaration_list] = STATE(2181), - [sym_base_class_clause] = STATE(2182), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_mutable] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(3544), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [sym_operator_name] = ACTIONS(1476), - [sym_noexcept] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(1478), + [1135] = { + [sym_virtual_specifier] = STATE(2170), + [sym_template_argument_list] = STATE(1162), + [sym_field_declaration_list] = STATE(2171), + [sym_base_class_clause] = STATE(2172), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_mutable] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_explicit] = ACTIONS(1490), + [sym_noexcept] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(1492), }, - [1141] = { - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_mutable] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1478), - [anon_sym_explicit] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [sym_operator_name] = ACTIONS(1476), - [sym_noexcept] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_DASH_GT] = ACTIONS(1476), + [1136] = { + [sym_field_declaration_list] = STATE(2171), + [sym_base_class_clause] = STATE(2172), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), }, - [1142] = { - [sym_template_argument_list] = STATE(1169), - [sym_virtual_specifier] = STATE(2183), - [sym_field_declaration_list] = STATE(2181), - [sym_base_class_clause] = STATE(2182), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_mutable] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(4191), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_explicit] = ACTIONS(1476), - [sym_noexcept] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(1478), + [1137] = { + [sym_virtual_specifier] = STATE(2170), + [sym_field_declaration_list] = STATE(2171), + [sym_base_class_clause] = STATE(2172), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_mutable] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_override] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [sym_operator_name] = ACTIONS(1490), + [sym_noexcept] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_GT_GT] = ACTIONS(1492), }, - [1143] = { - [sym_field_declaration_list] = STATE(2181), - [anon_sym_LBRACE] = ACTIONS(2180), + [1138] = { + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_mutable] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1492), + [anon_sym_explicit] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [sym_operator_name] = ACTIONS(1490), + [sym_noexcept] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_DASH_GT] = ACTIONS(1490), + }, + [1139] = { + [sym_field_declaration_list] = STATE(2171), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [1144] = { - [sym_argument_list] = STATE(1165), + [1140] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1665), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_QMARK] = ACTIONS(1655), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_GT2] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1665), }, - [1145] = { - [anon_sym_SQUOTE] = ACTIONS(4330), - [sym_comment] = ACTIONS(3), - }, - [1146] = { - [sym_destructor_name] = STATE(2185), - [sym_identifier] = ACTIONS(4332), - [sym_operator_name] = ACTIONS(4334), - [anon_sym_TILDE] = ACTIONS(2198), + [1141] = { + [anon_sym_SQUOTE] = ACTIONS(4328), [sym_comment] = ACTIONS(3), }, - [1147] = { - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_PERCENT] = ACTIONS(1709), - [anon_sym_GT2] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_QMARK] = ACTIONS(1709), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_DASH_GT] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1709), - }, - [1148] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2188), - [sym_logical_expression] = STATE(2188), - [sym_bitwise_expression] = STATE(2188), - [sym_cast_expression] = STATE(2188), - [sym_new_expression] = STATE(2188), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(2188), - [sym_char_literal] = STATE(2188), - [sym_template_function] = STATE(2188), - [sym_conditional_expression] = STATE(2188), - [sym_equality_expression] = STATE(2188), - [sym_relational_expression] = STATE(2188), - [sym_delete_expression] = STATE(2188), - [sym_sizeof_expression] = STATE(2188), - [sym_parenthesized_expression] = STATE(2188), - [sym_initializer_list] = STATE(2189), - [sym_concatenated_string] = STATE(2188), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(2188), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(2188), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(2188), - [sym_math_expression] = STATE(2188), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4336), + [1142] = { + [sym_template_function] = STATE(2175), + [sym__expression] = STATE(2175), + [sym_logical_expression] = STATE(2175), + [sym_bitwise_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_delete_expression] = STATE(2175), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(2175), + [sym_lambda_expression] = STATE(2175), + [sym_char_literal] = STATE(2175), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2175), + [sym_equality_expression] = STATE(2175), + [sym_relational_expression] = STATE(2175), + [sym_sizeof_expression] = STATE(2175), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2176), + [sym_parenthesized_expression] = STATE(2175), + [sym_string_literal] = STATE(154), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2175), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2175), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(2175), + [sym_math_expression] = STATE(2175), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(2175), + [sym_raw_string_literal] = ACTIONS(4330), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(4338), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(4332), [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(4338), - [anon_sym_DASH_DASH] = ACTIONS(294), + [sym_null] = ACTIONS(4332), + [anon_sym_DASH_DASH] = ACTIONS(296), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(4330), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(4338), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(4338), + [sym_false] = ACTIONS(4332), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(4332), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4340), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(4334), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_delete] = ACTIONS(288), [anon_sym_SQUOTE] = ACTIONS(41), }, - [1149] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2190), - [sym_logical_expression] = STATE(2190), - [sym_bitwise_expression] = STATE(2190), - [sym_cast_expression] = STATE(2190), - [sym_new_expression] = STATE(2190), + [1143] = { + [sym_template_function] = STATE(2177), + [sym__expression] = STATE(2177), + [sym_logical_expression] = STATE(2177), + [sym_bitwise_expression] = STATE(2177), + [sym_cast_expression] = STATE(2177), + [sym_delete_expression] = STATE(2177), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2190), - [sym_char_literal] = STATE(2190), - [sym_template_function] = STATE(2190), - [sym_conditional_expression] = STATE(2190), - [sym_equality_expression] = STATE(2190), - [sym_relational_expression] = STATE(2190), - [sym_delete_expression] = STATE(2190), - [sym_sizeof_expression] = STATE(2190), - [sym_parenthesized_expression] = STATE(2190), - [sym_lambda_expression] = STATE(2190), - [sym_concatenated_string] = STATE(2190), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2177), + [sym_lambda_expression] = STATE(2177), + [sym_char_literal] = STATE(2177), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2177), + [sym_equality_expression] = STATE(2177), + [sym_relational_expression] = STATE(2177), + [sym_sizeof_expression] = STATE(2177), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2190), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2177), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2177), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2177), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2190), - [sym_math_expression] = STATE(2190), + [sym_shift_expression] = STATE(2177), + [sym_math_expression] = STATE(2177), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4342), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4344), - [sym_null] = ACTIONS(4344), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4342), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4344), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4344), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2177), + [sym_raw_string_literal] = ACTIONS(4336), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4338), + [sym_null] = ACTIONS(4338), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4338), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4338), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1150] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2191), - [sym_logical_expression] = STATE(2191), - [sym_bitwise_expression] = STATE(2191), - [sym_cast_expression] = STATE(2191), - [sym_new_expression] = STATE(2191), + [1144] = { + [sym_template_function] = STATE(2178), + [sym__expression] = STATE(2178), + [sym_logical_expression] = STATE(2178), + [sym_bitwise_expression] = STATE(2178), + [sym_cast_expression] = STATE(2178), + [sym_delete_expression] = STATE(2178), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2191), - [sym_char_literal] = STATE(2191), - [sym_template_function] = STATE(2191), - [sym_conditional_expression] = STATE(2191), - [sym_equality_expression] = STATE(2191), - [sym_relational_expression] = STATE(2191), - [sym_delete_expression] = STATE(2191), - [sym_sizeof_expression] = STATE(2191), - [sym_parenthesized_expression] = STATE(2191), - [sym_lambda_expression] = STATE(2191), - [sym_concatenated_string] = STATE(2191), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2178), + [sym_lambda_expression] = STATE(2178), + [sym_char_literal] = STATE(2178), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2178), + [sym_equality_expression] = STATE(2178), + [sym_relational_expression] = STATE(2178), + [sym_sizeof_expression] = STATE(2178), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2191), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2178), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2178), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2178), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2191), - [sym_math_expression] = STATE(2191), + [sym_shift_expression] = STATE(2178), + [sym_math_expression] = STATE(2178), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4346), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4348), - [sym_null] = ACTIONS(4348), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4346), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4348), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2178), + [sym_raw_string_literal] = ACTIONS(4340), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4342), + [sym_null] = ACTIONS(4342), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1151] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2192), - [sym_logical_expression] = STATE(2192), - [sym_bitwise_expression] = STATE(2192), - [sym_cast_expression] = STATE(2192), - [sym_new_expression] = STATE(2192), + [1145] = { + [sym_template_function] = STATE(2179), + [sym__expression] = STATE(2179), + [sym_logical_expression] = STATE(2179), + [sym_bitwise_expression] = STATE(2179), + [sym_cast_expression] = STATE(2179), + [sym_delete_expression] = STATE(2179), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2192), - [sym_char_literal] = STATE(2192), - [sym_template_function] = STATE(2192), - [sym_conditional_expression] = STATE(2192), - [sym_equality_expression] = STATE(2192), - [sym_relational_expression] = STATE(2192), - [sym_delete_expression] = STATE(2192), - [sym_sizeof_expression] = STATE(2192), - [sym_parenthesized_expression] = STATE(2192), - [sym_lambda_expression] = STATE(2192), - [sym_concatenated_string] = STATE(2192), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2179), + [sym_lambda_expression] = STATE(2179), + [sym_char_literal] = STATE(2179), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2179), + [sym_equality_expression] = STATE(2179), + [sym_relational_expression] = STATE(2179), + [sym_sizeof_expression] = STATE(2179), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2192), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2179), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2179), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2179), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2192), - [sym_math_expression] = STATE(2192), + [sym_shift_expression] = STATE(2179), + [sym_math_expression] = STATE(2179), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4350), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4352), - [sym_null] = ACTIONS(4352), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4350), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4352), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4352), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2179), + [sym_raw_string_literal] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4346), + [sym_null] = ACTIONS(4346), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4344), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4346), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1152] = { - [sym_template_type] = STATE(419), - [sym__expression] = STATE(2193), - [sym_logical_expression] = STATE(2193), - [sym_bitwise_expression] = STATE(2193), - [sym_cast_expression] = STATE(2193), - [sym_new_expression] = STATE(2193), + [1146] = { + [sym_template_function] = STATE(2180), + [sym__expression] = STATE(2180), + [sym_logical_expression] = STATE(2180), + [sym_bitwise_expression] = STATE(2180), + [sym_cast_expression] = STATE(2180), + [sym_delete_expression] = STATE(2180), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2193), - [sym_type_descriptor] = STATE(2194), - [sym_char_literal] = STATE(2193), + [sym_scoped_type_identifier] = STATE(422), + [sym_compound_literal_expression] = STATE(2180), + [sym_char_literal] = STATE(2180), + [sym_lambda_expression] = STATE(2180), + [sym_scoped_identifier] = STATE(423), + [sym_type_descriptor] = STATE(2181), + [sym_dependent_type] = STATE(428), + [sym_struct_specifier] = STATE(428), + [sym_union_specifier] = STATE(428), [sym_type_qualifier] = STATE(429), - [sym_dependent_type] = STATE(426), - [sym_union_specifier] = STATE(426), - [sym_struct_specifier] = STATE(426), - [sym_template_function] = STATE(2193), - [sym_conditional_expression] = STATE(2193), - [sym_equality_expression] = STATE(2193), - [sym_relational_expression] = STATE(2193), - [sym_delete_expression] = STATE(2193), - [sym_sizeof_expression] = STATE(2193), + [sym_conditional_expression] = STATE(2180), + [sym_equality_expression] = STATE(2180), + [sym_relational_expression] = STATE(2180), + [sym_sizeof_expression] = STATE(2180), [sym_subscript_expression] = STATE(421), - [sym_parenthesized_expression] = STATE(2193), - [sym_scoped_type_identifier] = STATE(423), - [sym_string_literal] = STATE(424), - [sym_macro_type_specifier] = STATE(426), - [sym_class_specifier] = STATE(426), - [sym_concatenated_string] = STATE(2193), - [sym_sized_type_specifier] = STATE(426), - [sym_lambda_expression] = STATE(2193), - [sym_scoped_identifier] = STATE(425), - [sym__type_specifier] = STATE(426), - [sym_assignment_expression] = STATE(2193), + [sym_parenthesized_expression] = STATE(2180), + [sym_lambda_capture_specifier] = STATE(425), + [sym_concatenated_string] = STATE(2180), + [sym_string_literal] = STATE(426), + [sym_macro_type_specifier] = STATE(428), + [sym_class_specifier] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(428), + [sym__type_specifier] = STATE(428), + [aux_sym_type_definition_repeat1] = STATE(429), + [sym_scoped_namespace_identifier] = STATE(430), + [sym_template_type] = STATE(431), + [sym_assignment_expression] = STATE(2180), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2193), - [sym_math_expression] = STATE(2193), + [sym_shift_expression] = STATE(2180), + [sym_math_expression] = STATE(2180), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_enum_specifier] = STATE(426), - [sym_raw_string_literal] = ACTIONS(4354), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(702), - [sym_true] = ACTIONS(4356), + [sym_new_expression] = STATE(2180), + [sym_enum_specifier] = STATE(428), + [sym_raw_string_literal] = ACTIONS(4348), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(706), + [sym_true] = ACTIONS(4350), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4356), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(710), - [anon_sym_signed] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(720), + [sym_null] = ACTIONS(4350), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_sizeof] = ACTIONS(724), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_short] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_short] = ACTIONS(716), + [anon_sym_delete] = ACTIONS(734), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4354), - [anon_sym_DQUOTE] = ACTIONS(732), + [sym_number_literal] = ACTIONS(4348), + [anon_sym_DQUOTE] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(702), - [sym_false] = ACTIONS(4356), - [anon_sym_unsigned] = ACTIONS(712), - [sym_nullptr] = ACTIONS(4356), + [sym_primitive_type] = ACTIONS(706), + [sym_false] = ACTIONS(4350), + [anon_sym_unsigned] = ACTIONS(716), + [sym_nullptr] = ACTIONS(4350), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1153] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2195), - [sym_logical_expression] = STATE(2195), - [sym_bitwise_expression] = STATE(2195), - [sym_cast_expression] = STATE(2195), - [sym_new_expression] = STATE(2195), + [1147] = { + [sym_template_function] = STATE(2182), + [sym__expression] = STATE(2182), + [sym_logical_expression] = STATE(2182), + [sym_bitwise_expression] = STATE(2182), + [sym_cast_expression] = STATE(2182), + [sym_delete_expression] = STATE(2182), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2195), - [sym_char_literal] = STATE(2195), - [sym_template_function] = STATE(2195), - [sym_conditional_expression] = STATE(2195), - [sym_equality_expression] = STATE(2195), - [sym_relational_expression] = STATE(2195), - [sym_delete_expression] = STATE(2195), - [sym_sizeof_expression] = STATE(2195), - [sym_parenthesized_expression] = STATE(2195), - [sym_lambda_expression] = STATE(2195), - [sym_concatenated_string] = STATE(2195), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2182), + [sym_lambda_expression] = STATE(2182), + [sym_char_literal] = STATE(2182), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2182), + [sym_equality_expression] = STATE(2182), + [sym_relational_expression] = STATE(2182), + [sym_sizeof_expression] = STATE(2182), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2195), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2182), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2182), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2182), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2195), - [sym_math_expression] = STATE(2195), + [sym_shift_expression] = STATE(2182), + [sym_math_expression] = STATE(2182), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4358), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4360), - [sym_null] = ACTIONS(4360), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4358), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4360), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2182), + [sym_raw_string_literal] = ACTIONS(4352), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4354), + [sym_null] = ACTIONS(4354), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4354), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4354), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1154] = { - [sym_scoped_field_identifier] = STATE(2197), - [sym_template_type] = STATE(949), - [sym_template_method] = STATE(2198), - [sym_scoped_namespace_identifier] = STATE(949), - [sym_scoped_type_identifier] = STATE(174), - [sym_destructor_name] = STATE(2198), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(4362), - [anon_sym_TILDE] = ACTIONS(4229), + [1148] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_destructor_name] = STATE(2184), + [sym_scoped_field_identifier] = STATE(2185), + [sym_template_type] = STATE(988), + [sym_template_method] = STATE(2184), + [sym_scoped_namespace_identifier] = STATE(988), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(4356), + [anon_sym_TILDE] = ACTIONS(4227), [sym_comment] = ACTIONS(3), }, - [1155] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2199), - [sym_logical_expression] = STATE(2199), - [sym_bitwise_expression] = STATE(2199), - [sym_cast_expression] = STATE(2199), - [sym_new_expression] = STATE(2199), + [1149] = { + [sym_template_function] = STATE(2186), + [sym__expression] = STATE(2186), + [sym_logical_expression] = STATE(2186), + [sym_bitwise_expression] = STATE(2186), + [sym_cast_expression] = STATE(2186), + [sym_delete_expression] = STATE(2186), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2199), - [sym_char_literal] = STATE(2199), - [sym_template_function] = STATE(2199), - [sym_conditional_expression] = STATE(2199), - [sym_equality_expression] = STATE(2199), - [sym_relational_expression] = STATE(2199), - [sym_delete_expression] = STATE(2199), - [sym_sizeof_expression] = STATE(2199), - [sym_parenthesized_expression] = STATE(2199), - [sym_lambda_expression] = STATE(2199), - [sym_concatenated_string] = STATE(2199), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2186), + [sym_lambda_expression] = STATE(2186), + [sym_char_literal] = STATE(2186), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2186), + [sym_equality_expression] = STATE(2186), + [sym_relational_expression] = STATE(2186), + [sym_sizeof_expression] = STATE(2186), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2199), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2186), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2186), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2186), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2199), - [sym_math_expression] = STATE(2199), + [sym_shift_expression] = STATE(2186), + [sym_math_expression] = STATE(2186), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4364), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4366), - [sym_null] = ACTIONS(4366), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4364), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4366), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4366), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2186), + [sym_raw_string_literal] = ACTIONS(4358), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4360), + [sym_null] = ACTIONS(4360), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4358), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4360), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4360), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1156] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2200), - [sym_logical_expression] = STATE(2200), - [sym_bitwise_expression] = STATE(2200), - [sym_cast_expression] = STATE(2200), - [sym_new_expression] = STATE(2200), + [1150] = { + [sym_template_function] = STATE(2187), + [sym__expression] = STATE(2187), + [sym_logical_expression] = STATE(2187), + [sym_bitwise_expression] = STATE(2187), + [sym_cast_expression] = STATE(2187), + [sym_delete_expression] = STATE(2187), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2200), - [sym_char_literal] = STATE(2200), - [sym_template_function] = STATE(2200), - [sym_conditional_expression] = STATE(2200), - [sym_equality_expression] = STATE(2200), - [sym_relational_expression] = STATE(2200), - [sym_delete_expression] = STATE(2200), - [sym_sizeof_expression] = STATE(2200), - [sym_parenthesized_expression] = STATE(2200), - [sym_lambda_expression] = STATE(2200), - [sym_concatenated_string] = STATE(2200), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2187), + [sym_lambda_expression] = STATE(2187), + [sym_char_literal] = STATE(2187), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2187), + [sym_equality_expression] = STATE(2187), + [sym_relational_expression] = STATE(2187), + [sym_sizeof_expression] = STATE(2187), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2200), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2187), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2187), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2187), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2200), - [sym_math_expression] = STATE(2200), + [sym_shift_expression] = STATE(2187), + [sym_math_expression] = STATE(2187), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4368), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4370), - [sym_null] = ACTIONS(4370), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4368), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4370), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4370), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2187), + [sym_raw_string_literal] = ACTIONS(4362), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4364), + [sym_null] = ACTIONS(4364), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4362), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4364), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4364), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1157] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2201), - [sym_logical_expression] = STATE(2201), - [sym_bitwise_expression] = STATE(2201), - [sym_cast_expression] = STATE(2201), - [sym_new_expression] = STATE(2201), + [1151] = { + [sym_template_function] = STATE(2188), + [sym__expression] = STATE(2188), + [sym_logical_expression] = STATE(2188), + [sym_bitwise_expression] = STATE(2188), + [sym_cast_expression] = STATE(2188), + [sym_delete_expression] = STATE(2188), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2201), - [sym_char_literal] = STATE(2201), - [sym_template_function] = STATE(2201), - [sym_conditional_expression] = STATE(2201), - [sym_equality_expression] = STATE(2201), - [sym_relational_expression] = STATE(2201), - [sym_delete_expression] = STATE(2201), - [sym_sizeof_expression] = STATE(2201), - [sym_parenthesized_expression] = STATE(2201), - [sym_lambda_expression] = STATE(2201), - [sym_concatenated_string] = STATE(2201), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2188), + [sym_lambda_expression] = STATE(2188), + [sym_char_literal] = STATE(2188), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2188), + [sym_equality_expression] = STATE(2188), + [sym_relational_expression] = STATE(2188), + [sym_sizeof_expression] = STATE(2188), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2201), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2188), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2188), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2188), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2201), - [sym_math_expression] = STATE(2201), + [sym_shift_expression] = STATE(2188), + [sym_math_expression] = STATE(2188), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4372), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4374), - [sym_null] = ACTIONS(4374), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4372), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4374), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4374), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2188), + [sym_raw_string_literal] = ACTIONS(4366), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4368), + [sym_null] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4368), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1158] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2202), - [sym_logical_expression] = STATE(2202), - [sym_bitwise_expression] = STATE(2202), - [sym_cast_expression] = STATE(2202), - [sym_new_expression] = STATE(2202), + [1152] = { + [sym_template_function] = STATE(2189), + [sym__expression] = STATE(2189), + [sym_logical_expression] = STATE(2189), + [sym_bitwise_expression] = STATE(2189), + [sym_cast_expression] = STATE(2189), + [sym_delete_expression] = STATE(2189), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2202), - [sym_char_literal] = STATE(2202), - [sym_template_function] = STATE(2202), - [sym_conditional_expression] = STATE(2202), - [sym_equality_expression] = STATE(2202), - [sym_relational_expression] = STATE(2202), - [sym_delete_expression] = STATE(2202), - [sym_sizeof_expression] = STATE(2202), - [sym_parenthesized_expression] = STATE(2202), - [sym_lambda_expression] = STATE(2202), - [sym_concatenated_string] = STATE(2202), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2189), + [sym_lambda_expression] = STATE(2189), + [sym_char_literal] = STATE(2189), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2189), + [sym_equality_expression] = STATE(2189), + [sym_relational_expression] = STATE(2189), + [sym_sizeof_expression] = STATE(2189), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2202), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2189), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2189), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2189), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2202), - [sym_math_expression] = STATE(2202), + [sym_shift_expression] = STATE(2189), + [sym_math_expression] = STATE(2189), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4378), - [sym_null] = ACTIONS(4378), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4376), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4378), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4378), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2189), + [sym_raw_string_literal] = ACTIONS(4370), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4372), + [sym_null] = ACTIONS(4372), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4370), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4372), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4372), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1159] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2203), - [sym_logical_expression] = STATE(2203), - [sym_bitwise_expression] = STATE(2203), - [sym_cast_expression] = STATE(2203), - [sym_new_expression] = STATE(2203), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2203), - [sym_char_literal] = STATE(2203), - [sym_template_function] = STATE(2203), - [sym_conditional_expression] = STATE(2203), - [sym_equality_expression] = STATE(2203), - [sym_relational_expression] = STATE(2203), - [sym_delete_expression] = STATE(2203), - [sym_sizeof_expression] = STATE(2203), - [sym_parenthesized_expression] = STATE(2203), - [sym_lambda_expression] = STATE(2203), - [sym_concatenated_string] = STATE(2203), - [sym_string_literal] = STATE(967), + [1153] = { + [sym_template_function] = STATE(2190), + [sym__expression] = STATE(2190), + [sym_logical_expression] = STATE(2190), + [sym_bitwise_expression] = STATE(2190), + [sym_cast_expression] = STATE(2190), + [sym_delete_expression] = STATE(2190), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2190), + [sym_lambda_expression] = STATE(2190), + [sym_char_literal] = STATE(2190), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2203), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2203), - [sym_math_expression] = STATE(2203), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(2190), + [sym_equality_expression] = STATE(2190), + [sym_relational_expression] = STATE(2190), + [sym_sizeof_expression] = STATE(2190), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(4380), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(4382), - [sym_null] = ACTIONS(4382), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(4382), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(2190), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2190), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2190), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2190), + [sym_math_expression] = STATE(2190), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2190), + [sym_raw_string_literal] = ACTIONS(4374), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(4376), + [sym_null] = ACTIONS(4376), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(4374), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(4376), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(4376), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1160] = { - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_DASH_GT] = ACTIONS(4384), - [anon_sym_mutable] = ACTIONS(4386), - [anon_sym_RPAREN] = ACTIONS(4384), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4386), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_PIPE] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4386), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_static] = ACTIONS(4386), - [anon_sym_volatile] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4386), - [anon_sym_override] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(4386), - [anon_sym_explicit] = ACTIONS(4386), - [sym_identifier] = ACTIONS(4386), - [anon_sym_RBRACE] = ACTIONS(4384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4384), - [sym_operator_name] = ACTIONS(4384), - [sym_noexcept] = ACTIONS(4386), - [anon_sym_CARET] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4384), - [anon_sym_register] = ACTIONS(4386), - [anon_sym__Atomic] = ACTIONS(4386), - [anon_sym_const] = ACTIONS(4386), - [anon_sym_extern] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4384), - [anon_sym_PIPE_PIPE] = ACTIONS(4384), - [anon_sym_LT_LT] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_constexpr] = ACTIONS(4386), - [anon_sym_DOT] = ACTIONS(4386), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_TILDE] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4384), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_LT_EQ] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_restrict] = ACTIONS(4386), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_GT_GT] = ACTIONS(4384), + [1154] = { + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_DASH_DASH] = ACTIONS(4378), + [anon_sym_DASH_GT] = ACTIONS(4378), + [anon_sym_mutable] = ACTIONS(4380), + [anon_sym_RPAREN] = ACTIONS(4378), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4378), + [anon_sym_final] = ACTIONS(4380), + [anon_sym_COLON_COLON] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4380), + [anon_sym_EQ_EQ] = ACTIONS(4378), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_static] = ACTIONS(4380), + [anon_sym_volatile] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_GT_EQ] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4378), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_override] = ACTIONS(4380), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_explicit] = ACTIONS(4380), + [sym_identifier] = ACTIONS(4380), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4378), + [sym_operator_name] = ACTIONS(4378), + [sym_noexcept] = ACTIONS(4380), + [anon_sym_CARET] = ACTIONS(4378), + [anon_sym_GT] = ACTIONS(4380), + [anon_sym_COMMA] = ACTIONS(4378), + [anon_sym_register] = ACTIONS(4380), + [anon_sym__Atomic] = ACTIONS(4380), + [anon_sym_const] = ACTIONS(4380), + [anon_sym_extern] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4378), + [anon_sym_PIPE_PIPE] = ACTIONS(4378), + [anon_sym_LT_LT] = ACTIONS(4378), + [anon_sym_PERCENT] = ACTIONS(4378), + [anon_sym_constexpr] = ACTIONS(4380), + [anon_sym_DOT] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4378), + [anon_sym_TILDE] = ACTIONS(4378), + [anon_sym_SEMI] = ACTIONS(4378), + [anon_sym_BANG_EQ] = ACTIONS(4378), + [anon_sym_LT_EQ] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_inline] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4378), + [anon_sym_restrict] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4378), + [anon_sym_GT_GT] = ACTIONS(4378), }, - [1161] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2204), - [sym_logical_expression] = STATE(2204), - [sym_bitwise_expression] = STATE(2204), - [sym_cast_expression] = STATE(2204), - [sym_new_expression] = STATE(2204), + [1155] = { + [sym_template_function] = STATE(2191), + [sym__expression] = STATE(2191), + [sym_logical_expression] = STATE(2191), + [sym_bitwise_expression] = STATE(2191), + [sym_cast_expression] = STATE(2191), + [sym_delete_expression] = STATE(2191), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2204), - [sym_char_literal] = STATE(2204), - [sym_template_function] = STATE(2204), - [sym_conditional_expression] = STATE(2204), - [sym_equality_expression] = STATE(2204), - [sym_relational_expression] = STATE(2204), - [sym_delete_expression] = STATE(2204), - [sym_sizeof_expression] = STATE(2204), - [sym_parenthesized_expression] = STATE(2204), - [sym_lambda_expression] = STATE(2204), - [sym_concatenated_string] = STATE(2204), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2191), + [sym_lambda_expression] = STATE(2191), + [sym_char_literal] = STATE(2191), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2191), + [sym_equality_expression] = STATE(2191), + [sym_relational_expression] = STATE(2191), + [sym_sizeof_expression] = STATE(2191), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2204), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2191), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2191), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2191), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2204), - [sym_math_expression] = STATE(2204), + [sym_shift_expression] = STATE(2191), + [sym_math_expression] = STATE(2191), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4388), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4390), - [sym_null] = ACTIONS(4390), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4388), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4390), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4390), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2191), + [sym_raw_string_literal] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4384), + [sym_null] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4384), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1162] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2205), - [sym_logical_expression] = STATE(2205), - [sym_bitwise_expression] = STATE(2205), - [sym_cast_expression] = STATE(2205), - [sym_new_expression] = STATE(2205), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2205), - [sym_char_literal] = STATE(2205), - [sym_template_function] = STATE(2205), - [sym_conditional_expression] = STATE(2205), - [sym_equality_expression] = STATE(2205), - [sym_relational_expression] = STATE(2205), - [sym_delete_expression] = STATE(2205), - [sym_sizeof_expression] = STATE(2205), - [sym_parenthesized_expression] = STATE(2205), - [sym_lambda_expression] = STATE(2205), - [sym_concatenated_string] = STATE(2205), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2205), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2205), - [sym_math_expression] = STATE(2205), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4392), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(4394), - [sym_null] = ACTIONS(4394), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4392), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(4394), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(4394), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1156] = { + [sym_template_function] = STATE(2192), + [sym__expression] = STATE(2192), + [sym_logical_expression] = STATE(2192), + [sym_bitwise_expression] = STATE(2192), + [sym_cast_expression] = STATE(2192), + [sym_delete_expression] = STATE(2192), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2192), + [sym_lambda_expression] = STATE(2192), + [sym_char_literal] = STATE(2192), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2192), + [sym_equality_expression] = STATE(2192), + [sym_relational_expression] = STATE(2192), + [sym_sizeof_expression] = STATE(2192), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2192), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2192), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2192), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2192), + [sym_math_expression] = STATE(2192), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2192), + [sym_raw_string_literal] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(4388), + [sym_null] = ACTIONS(4388), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1163] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2206), - [sym_logical_expression] = STATE(2206), - [sym_bitwise_expression] = STATE(2206), - [sym_cast_expression] = STATE(2206), - [sym_new_expression] = STATE(2206), + [1157] = { + [sym_template_function] = STATE(2193), + [sym__expression] = STATE(2193), + [sym_logical_expression] = STATE(2193), + [sym_bitwise_expression] = STATE(2193), + [sym_cast_expression] = STATE(2193), + [sym_delete_expression] = STATE(2193), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2206), - [sym_char_literal] = STATE(2206), - [sym_template_function] = STATE(2206), - [sym_conditional_expression] = STATE(2206), - [sym_equality_expression] = STATE(2206), - [sym_relational_expression] = STATE(2206), - [sym_delete_expression] = STATE(2206), - [sym_sizeof_expression] = STATE(2206), - [sym_parenthesized_expression] = STATE(2206), - [sym_lambda_expression] = STATE(2206), - [sym_concatenated_string] = STATE(2206), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2193), + [sym_lambda_expression] = STATE(2193), + [sym_char_literal] = STATE(2193), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2193), + [sym_equality_expression] = STATE(2193), + [sym_relational_expression] = STATE(2193), + [sym_sizeof_expression] = STATE(2193), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2206), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2193), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2193), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2193), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2206), - [sym_math_expression] = STATE(2206), + [sym_shift_expression] = STATE(2193), + [sym_math_expression] = STATE(2193), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(4396), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(4398), - [sym_null] = ACTIONS(4398), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(4396), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(4398), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(4398), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2193), + [sym_raw_string_literal] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(4392), + [sym_null] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1164] = { - [anon_sym_LPAREN2] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_GT2] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_QMARK] = ACTIONS(654), + [1158] = { + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_GT2] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(656), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(656), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(656), + }, + [1159] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_GT2] = ACTIONS(4394), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(654), - [anon_sym_PLUS_PLUS] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(654), }, - [1165] = { - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_STAR_EQ] = ACTIONS(1817), - [anon_sym_LT_LT_EQ] = ACTIONS(1817), - [anon_sym_PERCENT_EQ] = ACTIONS(1817), - [anon_sym_GT2] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_CARET_EQ] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_GT_EQ] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1819), - [anon_sym_SLASH_EQ] = ACTIONS(1817), - [anon_sym_PLUS_EQ] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1819), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_PIPE_EQ] = ACTIONS(1817), - [anon_sym_GT_GT_EQ] = ACTIONS(1819), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1817), - [anon_sym_DASH_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_AMP_EQ] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_DASH_DASH] = ACTIONS(1817), + [1160] = { + [anon_sym_LPAREN2] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR_EQ] = ACTIONS(1887), + [anon_sym_LT_LT_EQ] = ACTIONS(1887), + [anon_sym_PERCENT_EQ] = ACTIONS(1887), + [anon_sym_GT2] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_CARET_EQ] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_SLASH_EQ] = ACTIONS(1887), + [anon_sym_PLUS_EQ] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_PIPE_EQ] = ACTIONS(1887), + [anon_sym_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1889), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_DASH_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_AMP_EQ] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_DASH_GT] = ACTIONS(1887), + [anon_sym_EQ] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1887), }, - [1166] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [1161] = { + [anon_sym_LPAREN2] = ACTIONS(1679), + [anon_sym_CARET] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_COMMA] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_QMARK] = ACTIONS(1679), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_DASH_GT] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1679), + }, + [1162] = { + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_final] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_DASH_GT] = ACTIONS(1683), + [anon_sym_mutable] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_GT2] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1685), + [anon_sym_volatile] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_override] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_explicit] = ACTIONS(1685), + [sym_identifier] = ACTIONS(1685), + [sym_operator_name] = ACTIONS(1683), + [sym_noexcept] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1685), + [anon_sym__Atomic] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1683), + [anon_sym_LT_LT] = ACTIONS(1683), + [anon_sym_constexpr] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1683), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_inline] = ACTIONS(1685), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_restrict] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_GT_GT] = ACTIONS(1685), + }, + [1163] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + }, + [1164] = { + [anon_sym_LPAREN2] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4396), + [anon_sym_mutable] = ACTIONS(4398), + [anon_sym_RPAREN] = ACTIONS(4396), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4398), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_PIPE] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_static] = ACTIONS(4398), + [anon_sym_volatile] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_override] = ACTIONS(4398), + [anon_sym_COLON] = ACTIONS(4398), + [anon_sym_explicit] = ACTIONS(4398), + [sym_identifier] = ACTIONS(4398), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4396), + [sym_operator_name] = ACTIONS(4396), + [sym_noexcept] = ACTIONS(4398), + [anon_sym_CARET] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_register] = ACTIONS(4398), + [anon_sym__Atomic] = ACTIONS(4398), + [anon_sym_const] = ACTIONS(4398), + [anon_sym_extern] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_LT_LT] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_constexpr] = ACTIONS(4398), + [anon_sym_DOT] = ACTIONS(4398), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4396), + [anon_sym_TILDE] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_restrict] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_GT_GT] = ACTIONS(4396), + }, + [1165] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), [anon_sym_GT2] = ACTIONS(4400), [sym_comment] = ACTIONS(3), }, - [1167] = { - [anon_sym_LPAREN2] = ACTIONS(4402), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_mutable] = ACTIONS(4404), - [anon_sym_RPAREN] = ACTIONS(4402), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4402), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ] = ACTIONS(4402), - [anon_sym_PIPE] = ACTIONS(4404), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_static] = ACTIONS(4404), - [anon_sym_volatile] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_STAR] = ACTIONS(4402), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_COLON] = ACTIONS(4404), - [anon_sym_explicit] = ACTIONS(4404), - [sym_identifier] = ACTIONS(4404), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4402), - [sym_operator_name] = ACTIONS(4402), - [sym_noexcept] = ACTIONS(4404), - [anon_sym_CARET] = ACTIONS(4402), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_register] = ACTIONS(4404), - [anon_sym__Atomic] = ACTIONS(4404), - [anon_sym_const] = ACTIONS(4404), - [anon_sym_extern] = ACTIONS(4404), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_LT_LT] = ACTIONS(4402), - [anon_sym_PERCENT] = ACTIONS(4402), - [anon_sym_constexpr] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4402), - [anon_sym_TILDE] = ACTIONS(4402), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_restrict] = ACTIONS(4404), + [1166] = { + [sym_compound_statement] = STATE(2198), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_GT_GT] = ACTIONS(4402), + [sym_comment] = ACTIONS(3), + }, + [1167] = { + [sym_string_literal] = STATE(2199), + [aux_sym_concatenated_string_repeat1] = STATE(2199), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, [1168] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(4406), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_mutable] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_final] = ACTIONS(1772), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_volatile] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_GT_EQ] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_override] = ACTIONS(1772), + [anon_sym_explicit] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1772), + [sym_operator_name] = ACTIONS(1770), + [sym_noexcept] = ACTIONS(1772), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_register] = ACTIONS(1772), + [anon_sym__Atomic] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_constexpr] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_inline] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_restrict] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1772), + [anon_sym_DASH_GT] = ACTIONS(1770), }, [1169] = { - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_final] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_DASH_GT] = ACTIONS(2036), - [anon_sym_mutable] = ACTIONS(2038), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2036), - [anon_sym_GT2] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_override] = ACTIONS(2038), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_COLON] = ACTIONS(2038), - [anon_sym_explicit] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2038), - [sym_operator_name] = ACTIONS(2036), - [sym_noexcept] = ACTIONS(2038), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2038), - [anon_sym_COMMA] = ACTIONS(2036), - [anon_sym_register] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_constexpr] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2036), - [anon_sym_QMARK] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_LT_EQ] = ACTIONS(2036), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_inline] = ACTIONS(2038), - [anon_sym_EQ] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2038), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_mutable] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_final] = ACTIONS(1776), + [anon_sym_COLON_COLON] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1774), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_volatile] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_override] = ACTIONS(1776), + [anon_sym_explicit] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1776), + [sym_operator_name] = ACTIONS(1774), + [sym_noexcept] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_register] = ACTIONS(1776), + [anon_sym__Atomic] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_inline] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_restrict] = ACTIONS(1776), + [anon_sym_GT_GT] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1774), }, [1170] = { - [sym_string_literal] = STATE(2210), - [aux_sym_concatenated_string_repeat1] = STATE(2210), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_GT2] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_sized_type_specifier_repeat1] = STATE(1170), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(4404), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(4404), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_GT2] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_restrict] = ACTIONS(1783), }, [1171] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), + [sym_abstract_reference_declarator] = STATE(2200), + [sym_abstract_array_declarator] = STATE(2200), + [sym_abstract_pointer_declarator] = STATE(2200), + [sym_parameter_list] = STATE(1174), + [sym_abstract_function_declarator] = STATE(2200), + [sym__abstract_declarator] = STATE(2200), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), }, [1172] = { + [sym_abstract_reference_declarator] = STATE(2202), + [aux_sym_type_definition_repeat1] = STATE(2201), + [sym_abstract_array_declarator] = STATE(2202), [sym_parameter_list] = STATE(1174), - [sym_abstract_array_declarator] = STATE(2211), - [sym_abstract_pointer_declarator] = STATE(2211), - [sym_abstract_reference_declarator] = STATE(2211), - [sym_abstract_function_declarator] = STATE(2211), - [sym__abstract_declarator] = STATE(2211), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_GT2] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(2343), + [sym_abstract_function_declarator] = STATE(2202), + [sym_abstract_pointer_declarator] = STATE(2202), + [sym_type_qualifier] = STATE(2201), + [sym__abstract_declarator] = STATE(2202), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_GT2] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(1070), }, [1173] = { - [sym_abstract_array_declarator] = STATE(2213), + [sym_abstract_reference_declarator] = STATE(2204), + [aux_sym_type_definition_repeat1] = STATE(2203), + [sym_abstract_array_declarator] = STATE(2204), [sym_parameter_list] = STATE(1174), - [sym_abstract_reference_declarator] = STATE(2213), - [sym_abstract_function_declarator] = STATE(2213), - [aux_sym_type_definition_repeat1] = STATE(2212), - [sym_abstract_pointer_declarator] = STATE(2213), - [sym_type_qualifier] = STATE(2212), - [sym__abstract_declarator] = STATE(2213), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(1062), + [sym_abstract_function_declarator] = STATE(2204), + [sym_abstract_pointer_declarator] = STATE(2204), + [sym_type_qualifier] = STATE(2203), + [sym__abstract_declarator] = STATE(2204), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2839), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(1070), }, [1174] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(2215), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2215), - [anon_sym_LPAREN2] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(4408), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(1062), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2206), + [sym_type_qualifier] = STATE(2206), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(4407), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4410), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4409), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, [1175] = { - [sym_abstract_array_declarator] = STATE(2217), - [sym_parameter_list] = STATE(1174), - [sym_abstract_reference_declarator] = STATE(2217), - [sym_abstract_function_declarator] = STATE(2217), - [aux_sym_type_definition_repeat1] = STATE(2216), - [sym_abstract_pointer_declarator] = STATE(2217), - [sym_type_qualifier] = STATE(2216), - [sym__abstract_declarator] = STATE(2217), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), + [sym_parameter_list] = STATE(2207), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(2839), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_restrict] = ACTIONS(1062), }, [1176] = { - [sym_parameter_list] = STATE(2218), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2838), + [sym_abstract_reference_declarator] = STATE(2204), + [aux_sym_type_definition_repeat1] = STATE(2208), + [sym_abstract_array_declarator] = STATE(2204), + [sym_parameter_list] = STATE(1174), + [sym_abstract_function_declarator] = STATE(2204), + [sym_abstract_pointer_declarator] = STATE(2204), + [sym_type_qualifier] = STATE(2208), + [sym__abstract_declarator] = STATE(2204), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2839), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_GT2] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(1070), }, [1177] = { - [sym_compound_statement] = STATE(2220), - [anon_sym_LPAREN2] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(4412), + [sym_destructor_name] = STATE(2209), + [sym_identifier] = ACTIONS(4411), + [sym_operator_name] = ACTIONS(4413), + [anon_sym_TILDE] = ACTIONS(2200), [sym_comment] = ACTIONS(3), }, [1178] = { - [sym_abstract_array_declarator] = STATE(2217), - [sym_parameter_list] = STATE(1174), - [sym_abstract_reference_declarator] = STATE(2217), - [sym_abstract_function_declarator] = STATE(2217), - [aux_sym_type_definition_repeat1] = STATE(2221), - [sym_abstract_pointer_declarator] = STATE(2217), - [sym_type_qualifier] = STATE(2221), - [sym__abstract_declarator] = STATE(2217), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(4415), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_restrict] = ACTIONS(1062), }, [1179] = { - [anon_sym_LPAREN2] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_mutable] = ACTIONS(2071), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_final] = ACTIONS(2071), - [anon_sym_COLON_COLON] = ACTIONS(2069), - [anon_sym_GT2] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_volatile] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_GT_EQ] = ACTIONS(2071), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_SLASH] = ACTIONS(2071), - [anon_sym_override] = ACTIONS(2071), - [anon_sym_explicit] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2071), - [sym_operator_name] = ACTIONS(2069), - [sym_noexcept] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_GT] = ACTIONS(2071), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_register] = ACTIONS(2071), - [anon_sym__Atomic] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_constexpr] = ACTIONS(2071), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2069), - [anon_sym_QMARK] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_inline] = ACTIONS(2071), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_restrict] = ACTIONS(2071), - [anon_sym_GT_GT] = ACTIONS(2071), - [anon_sym_DASH_GT] = ACTIONS(2069), - }, - [1180] = { - [anon_sym_LPAREN2] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_mutable] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_final] = ACTIONS(2075), - [anon_sym_COLON_COLON] = ACTIONS(2073), - [anon_sym_GT2] = ACTIONS(2073), - [anon_sym_EQ_EQ] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_AMP] = ACTIONS(2075), - [anon_sym_static] = ACTIONS(2075), - [anon_sym_volatile] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2075), - [anon_sym_GT_EQ] = ACTIONS(2075), - [anon_sym_STAR] = ACTIONS(2073), - [anon_sym_SLASH] = ACTIONS(2075), - [anon_sym_override] = ACTIONS(2075), - [anon_sym_explicit] = ACTIONS(2075), - [sym_identifier] = ACTIONS(2075), - [sym_operator_name] = ACTIONS(2073), - [sym_noexcept] = ACTIONS(2075), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_GT] = ACTIONS(2075), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2075), - [anon_sym__Atomic] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(2073), - [anon_sym_DOT] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_constexpr] = ACTIONS(2075), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2073), - [anon_sym_QMARK] = ACTIONS(2073), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_LT_EQ] = ACTIONS(2073), - [anon_sym_BANG_EQ] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(2073), - [anon_sym_inline] = ACTIONS(2075), - [anon_sym_EQ] = ACTIONS(2075), - [anon_sym_restrict] = ACTIONS(2075), - [anon_sym_GT_GT] = ACTIONS(2075), - [anon_sym_DASH_GT] = ACTIONS(2073), - }, - [1181] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1181), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(4414), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(4414), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(4414), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(4414), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_restrict] = ACTIONS(2082), - }, - [1182] = { - [anon_sym_RPAREN] = ACTIONS(4417), - [sym_comment] = ACTIONS(3), - }, - [1183] = { - [sym_template_type] = STATE(239), + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(4419), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(4417), }, - [1184] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1180] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1185] = { - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_EQ] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4421), + [1181] = { + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_DOT] = ACTIONS(4419), [sym_comment] = ACTIONS(3), }, - [1186] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2225), - [sym_logical_expression] = STATE(2225), - [sym_bitwise_expression] = STATE(2225), - [sym_cast_expression] = STATE(2225), - [sym_new_expression] = STATE(2225), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2225), - [sym_char_literal] = STATE(2225), - [sym_template_function] = STATE(2225), - [sym_conditional_expression] = STATE(2225), - [sym_equality_expression] = STATE(2225), - [sym_relational_expression] = STATE(2225), - [sym_delete_expression] = STATE(2225), - [sym_sizeof_expression] = STATE(2225), - [sym_parenthesized_expression] = STATE(2225), - [sym_lambda_expression] = STATE(2225), - [sym_concatenated_string] = STATE(2225), + [1182] = { + [sym_template_function] = STATE(2214), + [sym__expression] = STATE(2214), + [sym_logical_expression] = STATE(2214), + [sym_bitwise_expression] = STATE(2214), + [sym_cast_expression] = STATE(2214), + [sym_delete_expression] = STATE(2214), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2214), + [sym_lambda_expression] = STATE(2214), + [sym_char_literal] = STATE(2214), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_relational_expression] = STATE(2214), + [sym_sizeof_expression] = STATE(2214), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2214), + [sym_lambda_capture_specifier] = STATE(50), [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2225), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2225), - [sym_math_expression] = STATE(2225), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4425), - [sym_null] = ACTIONS(4425), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(4427), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4425), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [sym_concatenated_string] = STATE(2214), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2214), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2214), + [sym_math_expression] = STATE(2214), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2214), + [sym_raw_string_literal] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4423), + [sym_null] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4423), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [1187] = { - [aux_sym_for_statement_repeat1] = STATE(805), - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(4429), + [1183] = { + [sym_argument_list] = STATE(807), + [aux_sym_for_statement_repeat1] = STATE(808), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(4427), }, - [1188] = { - [anon_sym_LPAREN2] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_AMP] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_COLON] = ACTIONS(4431), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), + [1184] = { + [anon_sym_LPAREN2] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_EQ] = ACTIONS(4431), + [anon_sym_LBRACE] = ACTIONS(4429), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4429), + [anon_sym_PIPE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4431), + [anon_sym_AMP] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4429), + [anon_sym_SLASH] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4429), + [anon_sym_COLON] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4429), + [anon_sym_GT] = ACTIONS(4431), + [anon_sym_COMMA] = ACTIONS(4429), + [anon_sym_PIPE_PIPE] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_LT_LT] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4429), + [anon_sym_PERCENT] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_SEMI] = ACTIONS(4429), + [anon_sym_BANG_EQ] = ACTIONS(4429), + [anon_sym_LT_EQ] = ACTIONS(4429), + [anon_sym_AMP_AMP] = ACTIONS(4429), + [anon_sym_DASH_GT] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4429), + [anon_sym_RPAREN] = ACTIONS(4429), + [anon_sym_GT_GT] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4429), }, - [1189] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(643), - [sym_logical_expression] = STATE(643), - [sym_bitwise_expression] = STATE(643), - [sym_cast_expression] = STATE(643), - [sym_new_expression] = STATE(643), - [sym_field_expression] = STATE(643), - [sym_compound_literal_expression] = STATE(643), - [sym_char_literal] = STATE(643), - [sym_template_function] = STATE(643), - [sym_conditional_expression] = STATE(643), - [sym_equality_expression] = STATE(643), - [sym_relational_expression] = STATE(643), - [sym_delete_expression] = STATE(643), - [sym_sizeof_expression] = STATE(643), - [sym_parenthesized_expression] = STATE(643), - [sym_lambda_expression] = STATE(643), - [sym_concatenated_string] = STATE(643), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(643), - [sym_assignment_expression] = STATE(643), - [sym_pointer_expression] = STATE(643), - [sym_shift_expression] = STATE(643), - [sym_math_expression] = STATE(643), - [sym_call_expression] = STATE(643), - [sym_lambda_capture_specifier] = STATE(196), + [1185] = { + [sym_template_function] = STATE(644), + [sym__expression] = STATE(644), + [sym_logical_expression] = STATE(644), + [sym_bitwise_expression] = STATE(644), + [sym_cast_expression] = STATE(644), + [sym_delete_expression] = STATE(644), + [sym_field_expression] = STATE(644), + [sym_compound_literal_expression] = STATE(644), + [sym_lambda_expression] = STATE(644), + [sym_char_literal] = STATE(644), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(644), + [sym_equality_expression] = STATE(644), + [sym_relational_expression] = STATE(644), + [sym_sizeof_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(1180), - [sym_null] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(644), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(644), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(644), + [sym_pointer_expression] = STATE(644), + [sym_shift_expression] = STATE(644), + [sym_math_expression] = STATE(644), + [sym_call_expression] = STATE(644), + [sym_new_expression] = STATE(644), + [sym_raw_string_literal] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [1190] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(2227), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [1186] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2216), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1191] = { - [sym_destructor_name] = STATE(662), + [1187] = { + [sym_destructor_name] = STATE(663), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1210), - [sym_operator_name] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_delete] = ACTIONS(4435), + [sym_identifier] = ACTIONS(1216), + [sym_operator_name] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(4433), }, - [1192] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(665), - [sym_logical_expression] = STATE(665), - [sym_bitwise_expression] = STATE(665), - [sym_cast_expression] = STATE(665), - [sym_new_expression] = STATE(665), - [sym_field_expression] = STATE(665), - [sym_compound_literal_expression] = STATE(665), - [sym_char_literal] = STATE(665), - [sym_template_function] = STATE(665), - [sym_conditional_expression] = STATE(665), - [sym_equality_expression] = STATE(665), - [sym_relational_expression] = STATE(665), - [sym_delete_expression] = STATE(665), - [sym_sizeof_expression] = STATE(665), - [sym_parenthesized_expression] = STATE(665), - [sym_lambda_expression] = STATE(665), - [sym_concatenated_string] = STATE(665), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(665), - [sym_assignment_expression] = STATE(665), - [sym_pointer_expression] = STATE(665), - [sym_shift_expression] = STATE(665), - [sym_math_expression] = STATE(665), - [sym_call_expression] = STATE(665), - [sym_lambda_capture_specifier] = STATE(196), + [1188] = { + [sym_template_function] = STATE(666), + [sym__expression] = STATE(666), + [sym_logical_expression] = STATE(666), + [sym_bitwise_expression] = STATE(666), + [sym_cast_expression] = STATE(666), + [sym_delete_expression] = STATE(666), + [sym_field_expression] = STATE(666), + [sym_compound_literal_expression] = STATE(666), + [sym_lambda_expression] = STATE(666), + [sym_char_literal] = STATE(666), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(666), + [sym_equality_expression] = STATE(666), + [sym_relational_expression] = STATE(666), + [sym_sizeof_expression] = STATE(666), + [sym_subscript_expression] = STATE(666), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(1220), - [sym_null] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(666), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(666), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(666), + [sym_pointer_expression] = STATE(666), + [sym_shift_expression] = STATE(666), + [sym_math_expression] = STATE(666), + [sym_call_expression] = STATE(666), + [sym_new_expression] = STATE(666), + [sym_raw_string_literal] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [1193] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2230), - [sym_logical_expression] = STATE(2230), - [sym_bitwise_expression] = STATE(2230), - [sym_cast_expression] = STATE(2230), - [sym_new_expression] = STATE(2230), - [sym_field_expression] = STATE(2230), - [sym_compound_literal_expression] = STATE(2230), - [sym_char_literal] = STATE(2230), - [sym_template_function] = STATE(2230), - [sym_conditional_expression] = STATE(2230), - [sym_equality_expression] = STATE(2230), - [sym_relational_expression] = STATE(2230), - [sym_delete_expression] = STATE(2230), - [sym_sizeof_expression] = STATE(2230), - [sym_parenthesized_expression] = STATE(2230), - [sym_lambda_expression] = STATE(2230), - [sym_concatenated_string] = STATE(2230), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2230), - [sym_assignment_expression] = STATE(2230), - [sym_pointer_expression] = STATE(2230), - [sym_shift_expression] = STATE(2230), - [sym_math_expression] = STATE(2230), - [sym_call_expression] = STATE(2230), - [sym_lambda_capture_specifier] = STATE(196), + [1189] = { + [sym_template_function] = STATE(2219), + [sym__expression] = STATE(2219), + [sym_logical_expression] = STATE(2219), + [sym_bitwise_expression] = STATE(2219), + [sym_cast_expression] = STATE(2219), + [sym_delete_expression] = STATE(2219), + [sym_field_expression] = STATE(2219), + [sym_compound_literal_expression] = STATE(2219), + [sym_lambda_expression] = STATE(2219), + [sym_char_literal] = STATE(2219), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2219), + [sym_equality_expression] = STATE(2219), + [sym_relational_expression] = STATE(2219), + [sym_sizeof_expression] = STATE(2219), + [sym_subscript_expression] = STATE(2219), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(4439), - [sym_true] = ACTIONS(4441), - [sym_null] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(4437), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(4441), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4441), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(2219), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(2219), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2219), + [sym_pointer_expression] = STATE(2219), + [sym_shift_expression] = STATE(2219), + [sym_math_expression] = STATE(2219), + [sym_call_expression] = STATE(2219), + [sym_new_expression] = STATE(2219), + [sym_raw_string_literal] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(4437), + [sym_true] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(4439), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4439), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [1194] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), + [1190] = { + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [1195] = { - [sym_union_specifier] = STATE(2233), - [sym_macro_type_specifier] = STATE(2233), - [sym_class_specifier] = STATE(2233), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(2233), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(2233), - [aux_sym_sized_type_specifier_repeat1] = STATE(2232), - [sym_argument_list] = STATE(2234), - [sym_enum_specifier] = STATE(2233), - [sym_struct_specifier] = STATE(2233), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(2233), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(4443), - [anon_sym_signed] = ACTIONS(4445), - [anon_sym_long] = ACTIONS(4445), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(4443), - [anon_sym_unsigned] = ACTIONS(4445), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(4447), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(4445), + [1191] = { + [sym_union_specifier] = STATE(2222), + [sym_macro_type_specifier] = STATE(2222), + [sym_class_specifier] = STATE(2222), + [aux_sym_sized_type_specifier_repeat1] = STATE(2221), + [sym_sized_type_specifier] = STATE(2222), + [sym__type_specifier] = STATE(2222), + [sym_argument_list] = STATE(2223), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(2222), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(2222), + [sym_struct_specifier] = STATE(2222), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(4441), + [anon_sym_signed] = ACTIONS(4443), + [anon_sym_long] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(4441), + [anon_sym_unsigned] = ACTIONS(4443), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(4445), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(4443), }, - [1196] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2236), - [sym_logical_expression] = STATE(2236), - [sym_bitwise_expression] = STATE(2236), - [sym_cast_expression] = STATE(2236), - [sym_new_expression] = STATE(2236), - [sym_field_expression] = STATE(2236), - [sym_compound_literal_expression] = STATE(2236), - [sym_char_literal] = STATE(2236), - [sym_template_function] = STATE(2236), - [sym_conditional_expression] = STATE(2236), - [sym_equality_expression] = STATE(2236), - [sym_relational_expression] = STATE(2236), - [sym_delete_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2236), - [sym_parenthesized_expression] = STATE(2236), - [sym_lambda_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2236), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2236), - [sym_assignment_expression] = STATE(2236), - [sym_pointer_expression] = STATE(2236), - [sym_shift_expression] = STATE(2236), - [sym_math_expression] = STATE(2236), - [sym_call_expression] = STATE(2236), - [sym_lambda_capture_specifier] = STATE(196), + [1192] = { + [sym_template_function] = STATE(2225), + [sym__expression] = STATE(2225), + [sym_logical_expression] = STATE(2225), + [sym_bitwise_expression] = STATE(2225), + [sym_cast_expression] = STATE(2225), + [sym_delete_expression] = STATE(2225), + [sym_field_expression] = STATE(2225), + [sym_compound_literal_expression] = STATE(2225), + [sym_lambda_expression] = STATE(2225), + [sym_char_literal] = STATE(2225), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2225), + [sym_equality_expression] = STATE(2225), + [sym_relational_expression] = STATE(2225), + [sym_sizeof_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(4451), - [sym_null] = ACTIONS(4451), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(4449), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(4453), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4451), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(2225), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(2225), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2225), + [sym_pointer_expression] = STATE(2225), + [sym_shift_expression] = STATE(2225), + [sym_math_expression] = STATE(2225), + [sym_call_expression] = STATE(2225), + [sym_new_expression] = STATE(2225), + [sym_raw_string_literal] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(4449), + [sym_null] = ACTIONS(4449), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(4449), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [1197] = { - [sym_string_literal] = STATE(2248), - [aux_sym_concatenated_string_repeat1] = STATE(2248), + [1193] = { + [sym_string_literal] = STATE(2237), + [aux_sym_concatenated_string_repeat1] = STATE(2237), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_STAR_EQ] = ACTIONS(165), @@ -57718,7 +57607,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -57735,49 +57624,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1198] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(2249), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [1194] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2238), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -57785,20 +57674,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -57815,1179 +57704,1179 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + }, + [1195] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1196] = { + [sym_template_function] = STATE(2239), + [sym__expression] = STATE(2239), + [sym_logical_expression] = STATE(2239), + [sym_bitwise_expression] = STATE(2239), + [sym_cast_expression] = STATE(2239), + [sym_delete_expression] = STATE(2239), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2239), + [sym_lambda_expression] = STATE(2239), + [sym_char_literal] = STATE(2239), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2239), + [sym_equality_expression] = STATE(2239), + [sym_relational_expression] = STATE(2239), + [sym_sizeof_expression] = STATE(2239), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2239), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(2239), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2239), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2239), + [sym_math_expression] = STATE(2239), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2239), + [sym_raw_string_literal] = ACTIONS(4453), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4455), + [sym_null] = ACTIONS(4455), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4453), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4455), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), + }, + [1197] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(1198), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(2409), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(358), + }, + [1198] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2240), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(4457), + [anon_sym_long] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(4457), + [sym_identifier] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_unsigned] = ACTIONS(4457), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, [1199] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_new_declarator] = STATE(709), + [sym_argument_list] = STATE(710), + [sym_initializer_list] = STATE(710), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_GT_GT] = ACTIONS(1286), }, [1200] = { - [sym_template_type] = STATE(71), + [sym_union_specifier] = STATE(2242), + [sym_macro_type_specifier] = STATE(2242), + [sym_class_specifier] = STATE(2242), + [aux_sym_sized_type_specifier_repeat1] = STATE(1198), + [sym_sized_type_specifier] = STATE(2242), + [sym__type_specifier] = STATE(2242), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(2242), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(2242), + [sym_struct_specifier] = STATE(2242), + [anon_sym_unsigned] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(4461), + [anon_sym_signed] = ACTIONS(2409), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(4461), + }, + [1201] = { + [sym_template_function] = STATE(2243), + [sym__expression] = STATE(2243), + [sym_logical_expression] = STATE(2243), + [sym_bitwise_expression] = STATE(2243), + [sym_cast_expression] = STATE(2243), + [sym_delete_expression] = STATE(2243), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2243), + [sym_lambda_expression] = STATE(2243), + [sym_char_literal] = STATE(2243), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2243), + [sym_equality_expression] = STATE(2243), + [sym_relational_expression] = STATE(2243), + [sym_sizeof_expression] = STATE(2243), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2243), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(2243), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2243), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2243), + [sym_math_expression] = STATE(2243), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2243), + [sym_raw_string_literal] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4465), + [sym_null] = ACTIONS(4465), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), + }, + [1202] = { + [sym_template_function] = STATE(2244), + [sym__expression] = STATE(2244), + [sym_logical_expression] = STATE(2244), + [sym_bitwise_expression] = STATE(2244), + [sym_cast_expression] = STATE(2244), + [sym_delete_expression] = STATE(2244), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2244), + [sym_lambda_expression] = STATE(2244), + [sym_char_literal] = STATE(2244), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_relational_expression] = STATE(2244), + [sym_sizeof_expression] = STATE(2244), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2244), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(2244), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2244), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2244), + [sym_math_expression] = STATE(2244), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2244), + [sym_raw_string_literal] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4469), + [sym_null] = ACTIONS(4469), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4469), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), + }, + [1203] = { + [sym_template_function] = STATE(2245), + [sym__expression] = STATE(2245), + [sym_logical_expression] = STATE(2245), + [sym_bitwise_expression] = STATE(2245), + [sym_cast_expression] = STATE(2245), + [sym_delete_expression] = STATE(2245), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2245), + [sym_lambda_expression] = STATE(2245), + [sym_char_literal] = STATE(2245), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2245), + [sym_equality_expression] = STATE(2245), + [sym_relational_expression] = STATE(2245), + [sym_sizeof_expression] = STATE(2245), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2245), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(2245), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2245), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2245), + [sym_math_expression] = STATE(2245), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2245), + [sym_raw_string_literal] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4473), + [sym_null] = ACTIONS(4473), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4471), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4473), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), + }, + [1204] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), + [sym_string_literal] = STATE(450), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(4479), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [1205] = { + [sym_template_function] = STATE(2249), + [sym__expression] = STATE(2249), + [sym_logical_expression] = STATE(2249), + [sym_bitwise_expression] = STATE(2249), + [sym_cast_expression] = STATE(2249), + [sym_delete_expression] = STATE(2249), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2249), + [sym_lambda_expression] = STATE(2249), + [sym_char_literal] = STATE(2249), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2249), + [sym_equality_expression] = STATE(2249), + [sym_relational_expression] = STATE(2249), + [sym_sizeof_expression] = STATE(2249), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2249), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(2249), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2249), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2249), + [sym_math_expression] = STATE(2249), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2249), + [sym_raw_string_literal] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4483), + [sym_null] = ACTIONS(4483), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4483), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), + }, + [1206] = { + [sym_template_function] = STATE(2250), [sym__expression] = STATE(2250), [sym_logical_expression] = STATE(2250), [sym_bitwise_expression] = STATE(2250), [sym_cast_expression] = STATE(2250), - [sym_new_expression] = STATE(2250), - [sym_field_expression] = STATE(448), + [sym_delete_expression] = STATE(2250), + [sym_field_expression] = STATE(449), [sym_compound_literal_expression] = STATE(2250), + [sym_lambda_expression] = STATE(2250), [sym_char_literal] = STATE(2250), - [sym_template_function] = STATE(2250), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(2250), [sym_equality_expression] = STATE(2250), [sym_relational_expression] = STATE(2250), - [sym_delete_expression] = STATE(2250), [sym_sizeof_expression] = STATE(2250), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(2250), - [sym_lambda_expression] = STATE(2250), - [sym_concatenated_string] = STATE(2250), + [sym_lambda_capture_specifier] = STATE(50), [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), + [sym_concatenated_string] = STATE(2250), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(2250), - [sym_pointer_expression] = STATE(448), + [sym_pointer_expression] = STATE(449), [sym_shift_expression] = STATE(2250), [sym_math_expression] = STATE(2250), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4457), - [sym_null] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4455), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4457), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4457), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2250), + [sym_raw_string_literal] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4487), + [sym_null] = ACTIONS(4487), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4485), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4487), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [1201] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(1202), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(2407), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [1207] = { + [sym_template_function] = STATE(990), + [sym__expression] = STATE(990), + [sym_logical_expression] = STATE(990), + [sym_bitwise_expression] = STATE(990), + [sym_cast_expression] = STATE(990), + [sym_delete_expression] = STATE(990), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(990), + [sym_lambda_expression] = STATE(990), + [sym_char_literal] = STATE(990), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(990), + [sym_equality_expression] = STATE(990), + [sym_relational_expression] = STATE(990), + [sym_sizeof_expression] = STATE(990), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(990), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(990), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(990), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(990), + [sym_math_expression] = STATE(990), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(990), + [sym_raw_string_literal] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [1202] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2251), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(4459), - [anon_sym_long] = ACTIONS(4459), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(4459), - [sym_identifier] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(4459), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [1208] = { + [sym_template_function] = STATE(2251), + [sym__expression] = STATE(2251), + [sym_logical_expression] = STATE(2251), + [sym_bitwise_expression] = STATE(2251), + [sym_cast_expression] = STATE(2251), + [sym_delete_expression] = STATE(2251), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2251), + [sym_lambda_expression] = STATE(2251), + [sym_char_literal] = STATE(2251), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2251), + [sym_equality_expression] = STATE(2251), + [sym_relational_expression] = STATE(2251), + [sym_sizeof_expression] = STATE(2251), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2251), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(2251), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2251), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2251), + [sym_math_expression] = STATE(2251), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2251), + [sym_raw_string_literal] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4491), + [sym_null] = ACTIONS(4491), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4489), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4491), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [1203] = { - [sym_initializer_list] = STATE(709), - [sym_new_declarator] = STATE(708), - [sym_argument_list] = STATE(709), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(1283), + [1209] = { + [sym_template_function] = STATE(2252), + [sym__expression] = STATE(2252), + [sym_logical_expression] = STATE(2252), + [sym_bitwise_expression] = STATE(2252), + [sym_cast_expression] = STATE(2252), + [sym_delete_expression] = STATE(2252), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2252), + [sym_lambda_expression] = STATE(2252), + [sym_char_literal] = STATE(2252), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2252), + [sym_equality_expression] = STATE(2252), + [sym_relational_expression] = STATE(2252), + [sym_sizeof_expression] = STATE(2252), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2252), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(2252), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2252), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2252), + [sym_math_expression] = STATE(2252), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2252), + [sym_raw_string_literal] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4495), + [sym_null] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [1204] = { - [sym_union_specifier] = STATE(2253), - [sym_macro_type_specifier] = STATE(2253), - [sym_class_specifier] = STATE(2253), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2253), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(2253), - [aux_sym_sized_type_specifier_repeat1] = STATE(1202), - [sym_struct_specifier] = STATE(2253), - [sym_enum_specifier] = STATE(2253), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(2253), - [anon_sym_unsigned] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(4463), - [anon_sym_signed] = ACTIONS(2407), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(4463), + [1210] = { + [sym_template_function] = STATE(2253), + [sym__expression] = STATE(2253), + [sym_logical_expression] = STATE(2253), + [sym_bitwise_expression] = STATE(2253), + [sym_cast_expression] = STATE(2253), + [sym_delete_expression] = STATE(2253), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2253), + [sym_lambda_expression] = STATE(2253), + [sym_char_literal] = STATE(2253), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2253), + [sym_equality_expression] = STATE(2253), + [sym_relational_expression] = STATE(2253), + [sym_sizeof_expression] = STATE(2253), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2253), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(2253), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2253), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2253), + [sym_math_expression] = STATE(2253), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2253), + [sym_raw_string_literal] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4499), + [sym_null] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [1205] = { - [sym_template_type] = STATE(71), + [1211] = { + [sym_template_function] = STATE(2254), [sym__expression] = STATE(2254), [sym_logical_expression] = STATE(2254), [sym_bitwise_expression] = STATE(2254), [sym_cast_expression] = STATE(2254), - [sym_new_expression] = STATE(2254), - [sym_field_expression] = STATE(448), + [sym_delete_expression] = STATE(2254), + [sym_field_expression] = STATE(1006), [sym_compound_literal_expression] = STATE(2254), + [sym_lambda_expression] = STATE(2254), [sym_char_literal] = STATE(2254), - [sym_template_function] = STATE(2254), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(2254), [sym_equality_expression] = STATE(2254), [sym_relational_expression] = STATE(2254), - [sym_delete_expression] = STATE(2254), [sym_sizeof_expression] = STATE(2254), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(2254), - [sym_lambda_expression] = STATE(2254), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), [sym_concatenated_string] = STATE(2254), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(2254), - [sym_pointer_expression] = STATE(448), + [sym_pointer_expression] = STATE(1006), [sym_shift_expression] = STATE(2254), [sym_math_expression] = STATE(2254), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4467), - [sym_null] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4465), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4467), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2254), + [sym_raw_string_literal] = ACTIONS(4501), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(4503), + [sym_null] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4501), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1206] = { - [sym_template_type] = STATE(71), + [1212] = { + [sym_template_function] = STATE(2255), [sym__expression] = STATE(2255), [sym_logical_expression] = STATE(2255), [sym_bitwise_expression] = STATE(2255), [sym_cast_expression] = STATE(2255), - [sym_new_expression] = STATE(2255), - [sym_field_expression] = STATE(448), + [sym_delete_expression] = STATE(2255), + [sym_field_expression] = STATE(449), [sym_compound_literal_expression] = STATE(2255), + [sym_lambda_expression] = STATE(2255), [sym_char_literal] = STATE(2255), - [sym_template_function] = STATE(2255), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(2255), [sym_equality_expression] = STATE(2255), [sym_relational_expression] = STATE(2255), - [sym_delete_expression] = STATE(2255), [sym_sizeof_expression] = STATE(2255), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(2255), - [sym_lambda_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2255), + [sym_lambda_capture_specifier] = STATE(50), [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), + [sym_concatenated_string] = STATE(2255), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(2255), - [sym_pointer_expression] = STATE(448), + [sym_pointer_expression] = STATE(449), [sym_shift_expression] = STATE(2255), [sym_math_expression] = STATE(2255), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4471), - [sym_null] = ACTIONS(4471), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2255), + [sym_raw_string_literal] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4507), + [sym_null] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [1207] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2256), - [sym_logical_expression] = STATE(2256), - [sym_bitwise_expression] = STATE(2256), - [sym_cast_expression] = STATE(2256), - [sym_new_expression] = STATE(2256), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2256), - [sym_char_literal] = STATE(2256), - [sym_template_function] = STATE(2256), - [sym_conditional_expression] = STATE(2256), - [sym_equality_expression] = STATE(2256), - [sym_relational_expression] = STATE(2256), - [sym_delete_expression] = STATE(2256), - [sym_sizeof_expression] = STATE(2256), - [sym_parenthesized_expression] = STATE(2256), - [sym_lambda_expression] = STATE(2256), - [sym_concatenated_string] = STATE(2256), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2256), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2256), - [sym_math_expression] = STATE(2256), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4475), - [sym_null] = ACTIONS(4475), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4473), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4475), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4475), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), + [1213] = { + [aux_sym_initializer_list_repeat1] = STATE(2257), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_RBRACE] = ACTIONS(4479), }, - [1208] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [1214] = { + [sym_string_literal] = STATE(2258), + [aux_sym_concatenated_string_repeat1] = STATE(2258), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), + }, + [1215] = { + [sym_template_function] = STATE(2259), + [sym__expression] = STATE(2259), + [sym_logical_expression] = STATE(2259), + [sym_bitwise_expression] = STATE(2259), + [sym_cast_expression] = STATE(2259), + [sym_delete_expression] = STATE(2259), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2259), + [sym_lambda_expression] = STATE(2259), + [sym_char_literal] = STATE(2259), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2259), + [sym_equality_expression] = STATE(2259), + [sym_relational_expression] = STATE(2259), + [sym_sizeof_expression] = STATE(2259), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2260), + [sym_parenthesized_expression] = STATE(2259), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(4481), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2259), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2259), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2259), + [sym_math_expression] = STATE(2259), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2259), + [sym_raw_string_literal] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4513), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4513), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4511), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4513), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [1209] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2260), - [sym_logical_expression] = STATE(2260), - [sym_bitwise_expression] = STATE(2260), - [sym_cast_expression] = STATE(2260), - [sym_new_expression] = STATE(2260), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2260), - [sym_char_literal] = STATE(2260), - [sym_template_function] = STATE(2260), - [sym_conditional_expression] = STATE(2260), - [sym_equality_expression] = STATE(2260), - [sym_relational_expression] = STATE(2260), - [sym_delete_expression] = STATE(2260), - [sym_sizeof_expression] = STATE(2260), - [sym_parenthesized_expression] = STATE(2260), - [sym_lambda_expression] = STATE(2260), - [sym_concatenated_string] = STATE(2260), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2260), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2260), - [sym_math_expression] = STATE(2260), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4485), - [sym_null] = ACTIONS(4485), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4485), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), - }, - [1210] = { - [sym_template_type] = STATE(71), + [1216] = { + [sym_template_function] = STATE(2261), [sym__expression] = STATE(2261), [sym_logical_expression] = STATE(2261), [sym_bitwise_expression] = STATE(2261), [sym_cast_expression] = STATE(2261), - [sym_new_expression] = STATE(2261), - [sym_field_expression] = STATE(448), + [sym_delete_expression] = STATE(2261), + [sym_field_expression] = STATE(950), [sym_compound_literal_expression] = STATE(2261), + [sym_lambda_expression] = STATE(2261), [sym_char_literal] = STATE(2261), - [sym_template_function] = STATE(2261), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(2261), [sym_equality_expression] = STATE(2261), [sym_relational_expression] = STATE(2261), - [sym_delete_expression] = STATE(2261), [sym_sizeof_expression] = STATE(2261), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(2261), - [sym_lambda_expression] = STATE(2261), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), [sym_concatenated_string] = STATE(2261), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(2261), - [sym_pointer_expression] = STATE(448), + [sym_pointer_expression] = STATE(950), [sym_shift_expression] = STATE(2261), [sym_math_expression] = STATE(2261), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4489), - [sym_null] = ACTIONS(4489), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4487), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4489), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), - }, - [1211] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(952), - [sym_logical_expression] = STATE(952), - [sym_bitwise_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_new_expression] = STATE(952), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(952), - [sym_char_literal] = STATE(952), - [sym_template_function] = STATE(952), - [sym_conditional_expression] = STATE(952), - [sym_equality_expression] = STATE(952), - [sym_relational_expression] = STATE(952), - [sym_delete_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(952), - [sym_lambda_expression] = STATE(952), - [sym_concatenated_string] = STATE(952), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(952), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(952), - [sym_math_expression] = STATE(952), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1741), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), - }, - [1212] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2262), - [sym_logical_expression] = STATE(2262), - [sym_bitwise_expression] = STATE(2262), - [sym_cast_expression] = STATE(2262), - [sym_new_expression] = STATE(2262), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2262), - [sym_char_literal] = STATE(2262), - [sym_template_function] = STATE(2262), - [sym_conditional_expression] = STATE(2262), - [sym_equality_expression] = STATE(2262), - [sym_relational_expression] = STATE(2262), - [sym_delete_expression] = STATE(2262), - [sym_sizeof_expression] = STATE(2262), - [sym_parenthesized_expression] = STATE(2262), - [sym_lambda_expression] = STATE(2262), - [sym_concatenated_string] = STATE(2262), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2262), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2262), - [sym_math_expression] = STATE(2262), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4493), - [sym_null] = ACTIONS(4493), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4491), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4493), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4493), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), - }, - [1213] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2263), - [sym_logical_expression] = STATE(2263), - [sym_bitwise_expression] = STATE(2263), - [sym_cast_expression] = STATE(2263), - [sym_new_expression] = STATE(2263), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2263), - [sym_char_literal] = STATE(2263), - [sym_template_function] = STATE(2263), - [sym_conditional_expression] = STATE(2263), - [sym_equality_expression] = STATE(2263), - [sym_relational_expression] = STATE(2263), - [sym_delete_expression] = STATE(2263), - [sym_sizeof_expression] = STATE(2263), - [sym_parenthesized_expression] = STATE(2263), - [sym_lambda_expression] = STATE(2263), - [sym_concatenated_string] = STATE(2263), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2263), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2263), - [sym_math_expression] = STATE(2263), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4497), - [sym_null] = ACTIONS(4497), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4495), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4497), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), - }, - [1214] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2264), - [sym_logical_expression] = STATE(2264), - [sym_bitwise_expression] = STATE(2264), - [sym_cast_expression] = STATE(2264), - [sym_new_expression] = STATE(2264), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2264), - [sym_char_literal] = STATE(2264), - [sym_template_function] = STATE(2264), - [sym_conditional_expression] = STATE(2264), - [sym_equality_expression] = STATE(2264), - [sym_relational_expression] = STATE(2264), - [sym_delete_expression] = STATE(2264), - [sym_sizeof_expression] = STATE(2264), - [sym_parenthesized_expression] = STATE(2264), - [sym_lambda_expression] = STATE(2264), - [sym_concatenated_string] = STATE(2264), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2264), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2264), - [sym_math_expression] = STATE(2264), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4499), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4501), - [sym_null] = ACTIONS(4501), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4499), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4501), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), - }, - [1215] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2265), - [sym_logical_expression] = STATE(2265), - [sym_bitwise_expression] = STATE(2265), - [sym_cast_expression] = STATE(2265), - [sym_new_expression] = STATE(2265), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2265), - [sym_char_literal] = STATE(2265), - [sym_template_function] = STATE(2265), - [sym_conditional_expression] = STATE(2265), - [sym_equality_expression] = STATE(2265), - [sym_relational_expression] = STATE(2265), - [sym_delete_expression] = STATE(2265), - [sym_sizeof_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(2265), - [sym_lambda_expression] = STATE(2265), - [sym_concatenated_string] = STATE(2265), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2265), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2265), - [sym_math_expression] = STATE(2265), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4503), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(4505), - [sym_null] = ACTIONS(4505), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4503), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(4505), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(4505), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, - [1216] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2266), - [sym_logical_expression] = STATE(2266), - [sym_bitwise_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_new_expression] = STATE(2266), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2266), - [sym_char_literal] = STATE(2266), - [sym_template_function] = STATE(2266), - [sym_conditional_expression] = STATE(2266), - [sym_equality_expression] = STATE(2266), - [sym_relational_expression] = STATE(2266), - [sym_delete_expression] = STATE(2266), - [sym_sizeof_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_lambda_expression] = STATE(2266), - [sym_concatenated_string] = STATE(2266), - [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2266), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2266), - [sym_math_expression] = STATE(2266), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4509), - [sym_null] = ACTIONS(4509), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4509), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2261), + [sym_raw_string_literal] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(4517), + [sym_null] = ACTIONS(4517), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(4515), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, [1217] = { - [aux_sym_initializer_list_repeat1] = STATE(2268), + [sym_subscript_designator] = STATE(1217), + [sym_field_designator] = STATE(1217), + [aux_sym_initializer_pair_repeat1] = STATE(1217), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4524), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4481), }, [1218] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2269), - [sym_logical_expression] = STATE(2269), - [sym_bitwise_expression] = STATE(2269), - [sym_cast_expression] = STATE(2269), - [sym_new_expression] = STATE(2269), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2269), - [sym_char_literal] = STATE(2269), - [sym_template_function] = STATE(2269), - [sym_conditional_expression] = STATE(2269), - [sym_equality_expression] = STATE(2269), - [sym_relational_expression] = STATE(2269), - [sym_delete_expression] = STATE(2269), - [sym_sizeof_expression] = STATE(2269), - [sym_parenthesized_expression] = STATE(2269), - [sym_initializer_list] = STATE(2270), - [sym_concatenated_string] = STATE(2269), - [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2269), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2269), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2269), - [sym_math_expression] = STATE(2269), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4515), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4515), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4513), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4515), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(175), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1219] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2271), - [sym_logical_expression] = STATE(2271), - [sym_bitwise_expression] = STATE(2271), - [sym_cast_expression] = STATE(2271), - [sym_new_expression] = STATE(2271), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2271), - [sym_char_literal] = STATE(2271), - [sym_template_function] = STATE(2271), - [sym_conditional_expression] = STATE(2271), - [sym_equality_expression] = STATE(2271), - [sym_relational_expression] = STATE(2271), - [sym_delete_expression] = STATE(2271), - [sym_sizeof_expression] = STATE(2271), - [sym_parenthesized_expression] = STATE(2271), - [sym_lambda_expression] = STATE(2271), - [sym_concatenated_string] = STATE(2271), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2271), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2271), - [sym_math_expression] = STATE(2271), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(4519), - [sym_null] = ACTIONS(4519), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(4519), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(662), + [anon_sym_else] = ACTIONS(660), + [sym_true] = ACTIONS(660), + [anon_sym_mutable] = ACTIONS(660), + [sym_null] = ACTIONS(660), + [anon_sym_break] = ACTIONS(660), + [aux_sym_preproc_if_token2] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_sizeof] = ACTIONS(660), + [anon_sym_volatile] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_typedef] = ACTIONS(660), + [anon_sym_switch] = ACTIONS(660), + [anon_sym_explicit] = ACTIONS(660), + [sym_identifier] = ACTIONS(660), + [anon_sym_delete] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(660), + [anon_sym__Atomic] = ACTIONS(660), + [sym_number_literal] = ACTIONS(662), + [anon_sym_extern] = ACTIONS(660), + [anon_sym_enum] = ACTIONS(660), + [anon_sym_constexpr] = ACTIONS(660), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(662), + [anon_sym_namespace] = ACTIONS(660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(660), + [aux_sym_preproc_elif_token1] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_LPAREN2] = ACTIONS(662), + [anon_sym_struct] = ACTIONS(660), + [sym_auto] = ACTIONS(660), + [anon_sym_signed] = ACTIONS(660), + [anon_sym_long] = ACTIONS(660), + [anon_sym_COLON_COLON] = ACTIONS(662), + [anon_sym_using] = ACTIONS(660), + [aux_sym_preproc_else_token1] = ACTIONS(660), + [sym_preproc_directive] = ACTIONS(660), + [aux_sym_preproc_if_token1] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(660), + [anon_sym_static] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_union] = ACTIONS(660), + [anon_sym_typename] = ACTIONS(660), + [anon_sym_short] = ACTIONS(660), + [anon_sym_new] = ACTIONS(660), + [anon_sym_goto] = ACTIONS(660), + [sym_operator_name] = ACTIONS(662), + [anon_sym_while] = ACTIONS(660), + [anon_sym_try] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [aux_sym_preproc_include_token1] = ACTIONS(660), + [anon_sym_register] = ACTIONS(660), + [anon_sym_DQUOTE] = ACTIONS(662), + [anon_sym_const] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_class] = ACTIONS(660), + [anon_sym_if] = ACTIONS(660), + [sym_primitive_type] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_nullptr] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_template] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(662), + [aux_sym_preproc_def_token1] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(662), + [anon_sym_inline] = ACTIONS(660), + [anon_sym_PLUS_PLUS] = ACTIONS(662), + [anon_sym_restrict] = ACTIONS(660), }, [1220] = { - [sym_subscript_designator] = STATE(1220), - [sym_field_designator] = STATE(1220), - [aux_sym_initializer_pair_repeat1] = STATE(1220), - [anon_sym_LBRACK] = ACTIONS(4521), - [anon_sym_EQ] = ACTIONS(4524), - [anon_sym_DOT] = ACTIONS(4526), - [sym_comment] = ACTIONS(3), - }, - [1221] = { - [sym_string_literal] = STATE(2272), - [aux_sym_concatenated_string_repeat1] = STATE(2272), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - }, - [1222] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(4529), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [1223] = { - [anon_sym_DASH] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(658), - [anon_sym_else] = ACTIONS(656), - [sym_true] = ACTIONS(656), - [anon_sym_mutable] = ACTIONS(656), - [sym_null] = ACTIONS(656), - [anon_sym_break] = ACTIONS(656), - [aux_sym_preproc_if_token2] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_sizeof] = ACTIONS(656), - [anon_sym_volatile] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_typedef] = ACTIONS(656), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_explicit] = ACTIONS(656), - [sym_identifier] = ACTIONS(656), - [anon_sym_delete] = ACTIONS(656), - [anon_sym_continue] = ACTIONS(656), - [aux_sym_preproc_ifdef_token1] = ACTIONS(656), - [anon_sym__Atomic] = ACTIONS(656), - [sym_number_literal] = ACTIONS(658), - [anon_sym_extern] = ACTIONS(656), - [anon_sym_enum] = ACTIONS(656), - [anon_sym_constexpr] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(658), - [anon_sym_namespace] = ACTIONS(656), - [aux_sym_preproc_ifdef_token2] = ACTIONS(656), - [aux_sym_preproc_elif_token1] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(658), - [anon_sym_LPAREN2] = ACTIONS(658), - [anon_sym_struct] = ACTIONS(656), - [sym_auto] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(656), - [anon_sym_long] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(658), - [anon_sym_using] = ACTIONS(656), - [aux_sym_preproc_else_token1] = ACTIONS(656), - [sym_preproc_directive] = ACTIONS(656), - [aux_sym_preproc_if_token1] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_static] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_union] = ACTIONS(656), - [anon_sym_typename] = ACTIONS(656), - [anon_sym_short] = ACTIONS(656), - [anon_sym_new] = ACTIONS(656), - [anon_sym_goto] = ACTIONS(656), - [sym_operator_name] = ACTIONS(658), - [anon_sym_while] = ACTIONS(656), - [anon_sym_try] = ACTIONS(656), - [anon_sym_for] = ACTIONS(656), - [aux_sym_preproc_include_token1] = ACTIONS(656), - [anon_sym_register] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_const] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_class] = ACTIONS(656), - [anon_sym_if] = ACTIONS(656), - [sym_primitive_type] = ACTIONS(656), - [sym_false] = ACTIONS(656), - [sym_nullptr] = ACTIONS(656), - [anon_sym_do] = ACTIONS(656), - [anon_sym_template] = ACTIONS(656), - [anon_sym_return] = ACTIONS(656), - [anon_sym_TILDE] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(658), - [aux_sym_preproc_def_token1] = ACTIONS(656), - [anon_sym_AMP_AMP] = ACTIONS(658), - [anon_sym_inline] = ACTIONS(656), - [anon_sym_PLUS_PLUS] = ACTIONS(658), - [anon_sym_restrict] = ACTIONS(656), - }, - [1224] = { - [sym_union_specifier] = STATE(2273), - [sym_macro_type_specifier] = STATE(2273), - [sym_class_specifier] = STATE(2273), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2273), - [sym_scoped_namespace_identifier] = STATE(88), + [sym_union_specifier] = STATE(2262), + [sym_macro_type_specifier] = STATE(2262), + [sym_class_specifier] = STATE(2262), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(2262), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(2273), - [sym_enum_specifier] = STATE(2273), - [sym_dependent_type] = STATE(2273), - [sym_struct_specifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(87), + [sym__type_specifier] = STATE(2262), + [sym_struct_specifier] = STATE(2262), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(2262), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_type_qualifier] = STATE(388), + [sym_dependent_type] = STATE(2262), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(4531), + [sym_auto] = ACTIONS(4529), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -58997,7 +58886,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(4531), + [sym_primitive_type] = ACTIONS(4529), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -59008,298 +58897,298 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [1225] = { - [sym_pointer_type_declarator] = STATE(2274), - [sym_array_type_declarator] = STATE(2274), - [sym_function_type_declarator] = STATE(2274), - [sym__type_declarator] = STATE(2274), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [1221] = { + [sym_pointer_type_declarator] = STATE(2263), + [sym_array_type_declarator] = STATE(2263), + [sym_function_type_declarator] = STATE(2263), + [sym__type_declarator] = STATE(2263), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [1226] = { - [sym_switch_body] = STATE(2276), - [anon_sym_LBRACE] = ACTIONS(4533), + [1222] = { + [sym_switch_body] = STATE(2265), + [anon_sym_LBRACE] = ACTIONS(4531), [sym_comment] = ACTIONS(3), }, - [1227] = { - [sym_do_statement] = STATE(2278), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [1223] = { + [sym_do_statement] = STATE(2267), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(2278), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(2278), - [sym_if_statement] = STATE(2278), - [sym_switch_statement] = STATE(2278), - [sym_for_statement] = STATE(2278), - [sym_return_statement] = STATE(2278), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2267), + [sym_try_statement] = STATE(2267), + [sym_if_statement] = STATE(2267), + [sym_switch_statement] = STATE(2267), + [sym_for_statement] = STATE(2267), + [sym_return_statement] = STATE(2267), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(2278), - [sym_break_statement] = STATE(2278), - [sym_continue_statement] = STATE(2278), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2267), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2278), - [sym_labeled_statement] = STATE(2278), - [sym_expression_statement] = STATE(2278), - [sym_while_statement] = STATE(2278), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(2267), + [sym_for_range_loop] = STATE(2267), + [sym_compound_statement] = STATE(2267), + [sym_labeled_statement] = STATE(2267), + [sym_expression_statement] = STATE(2267), + [sym_while_statement] = STATE(2267), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [1228] = { - [anon_sym_DASH] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(804), - [anon_sym_else] = ACTIONS(802), - [sym_true] = ACTIONS(802), - [anon_sym_mutable] = ACTIONS(802), - [sym_null] = ACTIONS(802), - [anon_sym_break] = ACTIONS(802), - [aux_sym_preproc_if_token2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(804), - [anon_sym_sizeof] = ACTIONS(802), - [anon_sym_volatile] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_typedef] = ACTIONS(802), - [anon_sym_switch] = ACTIONS(802), - [anon_sym_explicit] = ACTIONS(802), - [sym_identifier] = ACTIONS(802), - [anon_sym_delete] = ACTIONS(802), - [anon_sym_continue] = ACTIONS(802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(802), - [anon_sym__Atomic] = ACTIONS(802), - [sym_number_literal] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(802), - [anon_sym_enum] = ACTIONS(802), - [anon_sym_constexpr] = ACTIONS(802), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(802), - [aux_sym_preproc_elif_token1] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_struct] = ACTIONS(802), - [sym_auto] = ACTIONS(802), - [anon_sym_signed] = ACTIONS(802), - [anon_sym_long] = ACTIONS(802), - [anon_sym_COLON_COLON] = ACTIONS(804), - [anon_sym_using] = ACTIONS(802), - [aux_sym_preproc_else_token1] = ACTIONS(802), - [sym_preproc_directive] = ACTIONS(802), - [aux_sym_preproc_if_token1] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - [anon_sym_static] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_union] = ACTIONS(802), - [anon_sym_typename] = ACTIONS(802), - [anon_sym_short] = ACTIONS(802), - [anon_sym_new] = ACTIONS(802), - [anon_sym_goto] = ACTIONS(802), - [sym_operator_name] = ACTIONS(804), - [anon_sym_while] = ACTIONS(802), - [anon_sym_try] = ACTIONS(802), - [anon_sym_for] = ACTIONS(802), - [aux_sym_preproc_include_token1] = ACTIONS(802), - [anon_sym_register] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_const] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_class] = ACTIONS(802), - [anon_sym_if] = ACTIONS(802), - [sym_primitive_type] = ACTIONS(802), - [sym_false] = ACTIONS(802), - [sym_nullptr] = ACTIONS(802), - [anon_sym_do] = ACTIONS(802), - [anon_sym_template] = ACTIONS(802), - [anon_sym_return] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(804), - [aux_sym_preproc_def_token1] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_inline] = ACTIONS(802), - [anon_sym_PLUS_PLUS] = ACTIONS(804), - [anon_sym_restrict] = ACTIONS(802), + [1224] = { + [anon_sym_DASH] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(808), + [anon_sym_else] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [anon_sym_mutable] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [aux_sym_preproc_if_token2] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(806), + [anon_sym_volatile] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_typedef] = ACTIONS(806), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_explicit] = ACTIONS(806), + [sym_identifier] = ACTIONS(806), + [anon_sym_delete] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(806), + [anon_sym__Atomic] = ACTIONS(806), + [sym_number_literal] = ACTIONS(808), + [anon_sym_extern] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_constexpr] = ACTIONS(806), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(806), + [aux_sym_preproc_elif_token1] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_LPAREN2] = ACTIONS(808), + [anon_sym_struct] = ACTIONS(806), + [sym_auto] = ACTIONS(806), + [anon_sym_signed] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_using] = ACTIONS(806), + [aux_sym_preproc_else_token1] = ACTIONS(806), + [sym_preproc_directive] = ACTIONS(806), + [aux_sym_preproc_if_token1] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_union] = ACTIONS(806), + [anon_sym_typename] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_new] = ACTIONS(806), + [anon_sym_goto] = ACTIONS(806), + [sym_operator_name] = ACTIONS(808), + [anon_sym_while] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [aux_sym_preproc_include_token1] = ACTIONS(806), + [anon_sym_register] = ACTIONS(806), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_const] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [sym_primitive_type] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_nullptr] = ACTIONS(806), + [anon_sym_do] = ACTIONS(806), + [anon_sym_template] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(808), + [aux_sym_preproc_def_token1] = ACTIONS(806), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_restrict] = ACTIONS(806), }, - [1229] = { - [sym_goto_statement] = STATE(2281), - [sym_preproc_function_def] = STATE(2281), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(2281), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(2281), + [1225] = { + [sym_goto_statement] = STATE(2270), + [sym_preproc_function_def] = STATE(2270), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(2270), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(2280), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2281), - [sym_return_statement] = STATE(2281), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2270), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(2269), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2270), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2270), + [sym_namespace_definition] = STATE(2270), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2281), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2281), - [sym_break_statement] = STATE(2281), - [sym_preproc_include] = STATE(2281), - [sym_assignment_expression] = STATE(482), - [sym_preproc_ifdef] = STATE(2281), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(2281), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2270), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2270), + [sym_constructor_or_destructor_definition] = STATE(2270), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2270), + [sym_preproc_include] = STATE(2270), + [sym_assignment_expression] = STATE(484), + [sym_preproc_ifdef] = STATE(2270), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(2270), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), - [sym_compound_statement] = STATE(2281), - [sym_template_instantiation] = STATE(2281), - [sym_constructor_or_destructor_definition] = STATE(2281), - [sym_expression_statement] = STATE(2281), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2281), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), - [sym_preproc_def] = STATE(2281), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), - [sym_function_definition] = STATE(2281), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2281), - [aux_sym_translation_unit_repeat1] = STATE(2281), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(2281), - [sym_preproc_else] = STATE(2280), - [sym_if_statement] = STATE(2281), - [sym_for_statement] = STATE(2281), - [sym_comma_expression] = STATE(484), - [sym_preproc_call] = STATE(2281), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(2281), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(2281), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2281), - [sym_preproc_if] = STATE(2281), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), + [sym_compound_statement] = STATE(2270), + [sym_expression_statement] = STATE(2270), + [sym_do_statement] = STATE(2270), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), + [sym_preproc_def] = STATE(2270), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), + [sym_function_definition] = STATE(2270), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2270), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(2269), + [sym_if_statement] = STATE(2270), + [sym_for_statement] = STATE(2270), + [sym_comma_expression] = STATE(485), + [sym_preproc_call] = STATE(2270), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(2270), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2270), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2270), + [sym_preproc_if] = STATE(2270), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2281), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2281), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2281), - [sym_while_statement] = STATE(2281), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2270), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2270), + [aux_sym_translation_unit_repeat1] = STATE(2270), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2270), + [sym_while_statement] = STATE(2270), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(4537), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(4535), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -59307,10 +59196,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -59318,59 +59207,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1230] = { - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(2282), - [sym_declaration] = STATE(2282), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(486), - [sym_type_qualifier] = STATE(281), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_declaration_list] = STATE(2282), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(2283), - [sym_scoped_type_identifier] = STATE(87), + [1226] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_function_definition] = STATE(2271), + [sym_declaration] = STATE(2271), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_type_qualifier] = STATE(285), + [sym_declaration_list] = STATE(2271), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(480), + [sym__declaration_specifiers] = STATE(2272), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -59379,106 +59268,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2465), }, - [1231] = { - [sym_goto_statement] = STATE(2285), - [sym_preproc_function_def] = STATE(2285), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(2285), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(2285), + [1227] = { + [sym_goto_statement] = STATE(2274), + [sym_preproc_function_def] = STATE(2274), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(2274), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2285), - [sym_return_statement] = STATE(2285), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2274), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2274), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2274), + [sym_namespace_definition] = STATE(2274), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2285), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2285), - [sym_break_statement] = STATE(2285), - [sym_preproc_include] = STATE(2285), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(2285), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(2285), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2274), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2274), + [sym_constructor_or_destructor_definition] = STATE(2274), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2274), + [sym_preproc_include] = STATE(2274), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(2274), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(2274), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(2285), - [sym_template_instantiation] = STATE(2285), - [sym_constructor_or_destructor_definition] = STATE(2285), - [sym_expression_statement] = STATE(2285), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2285), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(2285), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(2285), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2285), - [aux_sym_translation_unit_repeat1] = STATE(2285), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(2285), - [sym_if_statement] = STATE(2285), - [sym_for_statement] = STATE(2285), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(2285), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(2285), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(2285), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2285), - [sym_preproc_if] = STATE(2285), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(2274), + [sym_expression_statement] = STATE(2274), + [sym_do_statement] = STATE(2274), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(2274), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(2274), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2274), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2274), + [sym_for_statement] = STATE(2274), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(2274), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(2274), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2274), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2274), + [sym_preproc_if] = STATE(2274), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2285), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2285), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2285), - [sym_while_statement] = STATE(2285), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2274), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2274), + [aux_sym_translation_unit_repeat1] = STATE(2274), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2274), + [sym_while_statement] = STATE(2274), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -59520,7 +59409,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(4539), + [anon_sym_RBRACE] = ACTIONS(4537), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -59552,205 +59441,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1232] = { - [sym_declaration_list] = STATE(2286), - [anon_sym_LBRACE] = ACTIONS(2463), + [1228] = { + [sym_declaration_list] = STATE(2275), + [anon_sym_LBRACE] = ACTIONS(2465), [sym_comment] = ACTIONS(3), }, - [1233] = { - [anon_sym_DASH] = ACTIONS(954), - [sym_raw_string_literal] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [anon_sym_mutable] = ACTIONS(954), - [sym_null] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_explicit] = ACTIONS(954), - [sym_identifier] = ACTIONS(954), - [anon_sym_delete] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [aux_sym_preproc_elif_token1] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(954), - [sym_auto] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_COLON_COLON] = ACTIONS(956), - [anon_sym_using] = ACTIONS(954), - [aux_sym_preproc_else_token1] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_union] = ACTIONS(954), - [anon_sym_typename] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [anon_sym_new] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [sym_operator_name] = ACTIONS(956), - [anon_sym_while] = ACTIONS(954), - [anon_sym_try] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(956), - [anon_sym_const] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_class] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_nullptr] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_template] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(954), + [1229] = { + [anon_sym_DASH] = ACTIONS(958), + [sym_raw_string_literal] = ACTIONS(960), + [sym_true] = ACTIONS(958), + [anon_sym_mutable] = ACTIONS(958), + [sym_null] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [aux_sym_preproc_if_token2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(960), + [anon_sym_sizeof] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(958), + [anon_sym_explicit] = ACTIONS(958), + [sym_identifier] = ACTIONS(958), + [anon_sym_delete] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [sym_number_literal] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_enum] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [aux_sym_preproc_elif_token1] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(958), + [sym_auto] = ACTIONS(958), + [anon_sym_signed] = ACTIONS(958), + [anon_sym_long] = ACTIONS(958), + [anon_sym_COLON_COLON] = ACTIONS(960), + [anon_sym_using] = ACTIONS(958), + [aux_sym_preproc_else_token1] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_static] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_union] = ACTIONS(958), + [anon_sym_typename] = ACTIONS(958), + [anon_sym_short] = ACTIONS(958), + [anon_sym_new] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(958), + [sym_operator_name] = ACTIONS(960), + [anon_sym_while] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [anon_sym_const] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_class] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(958), + [sym_false] = ACTIONS(958), + [sym_nullptr] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_template] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(958), }, - [1234] = { - [sym_goto_statement] = STATE(2288), - [sym_preproc_function_def] = STATE(2288), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(2288), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(2288), + [1230] = { + [sym_goto_statement] = STATE(2277), + [sym_preproc_function_def] = STATE(2277), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(2277), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(2287), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2288), - [sym_return_statement] = STATE(2288), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2277), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(2276), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2277), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2277), + [sym_namespace_definition] = STATE(2277), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2288), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2288), - [sym_break_statement] = STATE(2288), - [sym_preproc_include] = STATE(2288), - [sym_assignment_expression] = STATE(482), - [sym_preproc_ifdef] = STATE(2288), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(2288), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2277), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2277), + [sym_constructor_or_destructor_definition] = STATE(2277), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2277), + [sym_preproc_include] = STATE(2277), + [sym_assignment_expression] = STATE(484), + [sym_preproc_ifdef] = STATE(2277), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(2277), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), - [sym_compound_statement] = STATE(2288), - [sym_template_instantiation] = STATE(2288), - [sym_constructor_or_destructor_definition] = STATE(2288), - [sym_expression_statement] = STATE(2288), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2288), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), - [sym_preproc_def] = STATE(2288), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), - [sym_function_definition] = STATE(2288), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2288), - [aux_sym_translation_unit_repeat1] = STATE(2288), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(2288), - [sym_preproc_else] = STATE(2287), - [sym_if_statement] = STATE(2288), - [sym_for_statement] = STATE(2288), - [sym_comma_expression] = STATE(484), - [sym_preproc_call] = STATE(2288), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(2288), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(2288), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2288), - [sym_preproc_if] = STATE(2288), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), + [sym_compound_statement] = STATE(2277), + [sym_expression_statement] = STATE(2277), + [sym_do_statement] = STATE(2277), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), + [sym_preproc_def] = STATE(2277), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), + [sym_function_definition] = STATE(2277), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2277), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(2276), + [sym_if_statement] = STATE(2277), + [sym_for_statement] = STATE(2277), + [sym_comma_expression] = STATE(485), + [sym_preproc_call] = STATE(2277), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(2277), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2277), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2277), + [sym_preproc_if] = STATE(2277), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2288), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2288), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2288), - [sym_while_statement] = STATE(2288), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2277), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2277), + [aux_sym_translation_unit_repeat1] = STATE(2277), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2277), + [sym_while_statement] = STATE(2277), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(4541), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(4539), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -59758,10 +59647,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -59769,195 +59658,195 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1235] = { - [anon_sym_DASH] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(964), - [anon_sym_else] = ACTIONS(962), - [sym_true] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_delete] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym_namespace] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [aux_sym_preproc_elif_token1] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [aux_sym_preproc_else_token1] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [anon_sym_while] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [anon_sym_const] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_nullptr] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(962), + [1231] = { + [anon_sym_DASH] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(968), + [anon_sym_else] = ACTIONS(966), + [sym_true] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [sym_null] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [aux_sym_preproc_if_token2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [sym_number_literal] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_namespace] = ACTIONS(966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [aux_sym_preproc_elif_token1] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [aux_sym_preproc_else_token1] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [anon_sym_while] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [aux_sym_preproc_include_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_const] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_nullptr] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(966), }, - [1236] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [1232] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -59999,7 +59888,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4541), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -60031,48 +59920,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1237] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(2291), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(4545), + [1233] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(2280), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(4543), [sym_comment] = ACTIONS(3), }, - [1238] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [1234] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(4547), }, - [1239] = { + [1235] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4547), }, - [1240] = { + [1236] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4549), }, - [1241] = { - [sym_union_specifier] = STATE(2296), - [sym_macro_type_specifier] = STATE(2296), - [sym_class_specifier] = STATE(2296), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2296), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(2295), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(2296), - [sym_enum_specifier] = STATE(2296), - [sym_dependent_type] = STATE(2296), - [sym_struct_specifier] = STATE(2296), - [sym_scoped_type_identifier] = STATE(87), - [sym_type_qualifier] = STATE(2295), + [1237] = { + [sym_union_specifier] = STATE(2285), + [sym_macro_type_specifier] = STATE(2285), + [sym_class_specifier] = STATE(2285), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(2285), + [aux_sym_type_definition_repeat1] = STATE(2284), + [sym__type_specifier] = STATE(2285), + [sym_struct_specifier] = STATE(2285), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(2285), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_type_qualifier] = STATE(2284), + [sym_dependent_type] = STATE(2285), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(4553), + [sym_auto] = ACTIONS(4551), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -60082,7 +59971,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(4553), + [sym_primitive_type] = ACTIONS(4551), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -60093,14 +59982,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [1242] = { - [sym_parenthesized_expression] = STATE(2297), + [1238] = { + [sym_parenthesized_expression] = STATE(2286), [anon_sym_LPAREN2] = ACTIONS(157), [sym_comment] = ACTIONS(3), }, - [1243] = { - [sym_template_argument_list] = STATE(99), + [1239] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(101), [anon_sym_LPAREN2] = ACTIONS(159), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -60123,7 +60012,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4553), [anon_sym_explicit] = ACTIONS(169), [sym_identifier] = ACTIONS(169), [anon_sym_SLASH_EQ] = ACTIONS(167), @@ -60158,16 +60047,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1244] = { + [1240] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4555), }, - [1245] = { - [sym_identifier] = ACTIONS(4559), + [1241] = { + [sym_identifier] = ACTIONS(4557), [sym_comment] = ACTIONS(3), }, - [1246] = { - [sym_string_literal] = STATE(2301), + [1242] = { + [sym_string_literal] = STATE(2290), [anon_sym_LPAREN2] = ACTIONS(200), [anon_sym_struct] = ACTIONS(202), [sym_auto] = ACTIONS(202), @@ -60189,6 +60078,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(202), [anon_sym_const] = ACTIONS(202), [anon_sym_extern] = ACTIONS(202), + [anon_sym_LBRACK] = ACTIONS(200), [anon_sym_DQUOTE] = ACTIONS(204), [anon_sym_enum] = ACTIONS(202), [anon_sym_class] = ACTIONS(202), @@ -60201,97 +60091,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(202), [anon_sym_restrict] = ACTIONS(202), }, - [1247] = { - [sym_declaration_list] = STATE(2304), + [1243] = { + [sym_declaration_list] = STATE(2293), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(4561), - [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4559), + [sym_identifier] = ACTIONS(4561), }, - [1248] = { - [sym_goto_statement] = STATE(2306), - [sym_preproc_function_def] = STATE(2306), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(2306), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(2306), + [1244] = { + [sym_goto_statement] = STATE(2295), + [sym_preproc_function_def] = STATE(2295), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(2295), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2306), - [sym_return_statement] = STATE(2306), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2295), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2295), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2295), + [sym_namespace_definition] = STATE(2295), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2306), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2306), - [sym_break_statement] = STATE(2306), - [sym_preproc_include] = STATE(2306), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(2306), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(2306), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2295), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2295), + [sym_constructor_or_destructor_definition] = STATE(2295), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2295), + [sym_preproc_include] = STATE(2295), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(2295), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(2295), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(2306), - [sym_template_instantiation] = STATE(2306), - [sym_constructor_or_destructor_definition] = STATE(2306), - [sym_expression_statement] = STATE(2306), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2306), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(2306), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(2306), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2306), - [aux_sym_translation_unit_repeat1] = STATE(2306), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(2306), - [sym_if_statement] = STATE(2306), - [sym_for_statement] = STATE(2306), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(2306), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(2306), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(2306), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2306), - [sym_preproc_if] = STATE(2306), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_do_statement] = STATE(2295), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(2295), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(2295), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2295), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2295), + [sym_for_statement] = STATE(2295), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(2295), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(2295), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2295), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2295), + [sym_preproc_if] = STATE(2295), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2306), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2306), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2306), - [sym_while_statement] = STATE(2306), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2295), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2295), + [aux_sym_translation_unit_repeat1] = STATE(2295), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2295), + [sym_while_statement] = STATE(2295), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -60333,7 +60223,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4563), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -60365,546 +60255,626 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1249] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(4567), - [anon_sym_namespace] = ACTIONS(4569), + [1245] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(2298), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(4565), + [anon_sym_namespace] = ACTIONS(4567), [sym_comment] = ACTIONS(3), }, - [1250] = { + [1246] = { [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(4571), - [sym_preproc_arg] = ACTIONS(4573), + [anon_sym_LF] = ACTIONS(4569), + [sym_preproc_arg] = ACTIONS(4571), }, - [1251] = { - [sym_preproc_arg] = ACTIONS(4575), + [1247] = { + [sym_preproc_arg] = ACTIONS(4573), [sym_comment] = ACTIONS(3), }, - [1252] = { - [sym_identifier] = ACTIONS(4577), + [1248] = { + [sym_identifier] = ACTIONS(4575), [sym_comment] = ACTIONS(3), }, - [1253] = { - [sym_parenthesized_expression] = STATE(2314), - [anon_sym_LPAREN2] = ACTIONS(372), + [1249] = { + [sym_parenthesized_expression] = STATE(2303), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [1254] = { - [sym_compound_statement] = STATE(2315), - [anon_sym_LBRACE] = ACTIONS(374), + [1250] = { + [sym_compound_statement] = STATE(2304), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [1255] = { - [anon_sym_LPAREN2] = ACTIONS(4579), + [1251] = { + [anon_sym_LPAREN2] = ACTIONS(4577), [sym_comment] = ACTIONS(3), }, - [1256] = { - [sym_string_literal] = STATE(2317), + [1252] = { + [sym_string_literal] = STATE(2306), [sym_comment] = ACTIONS(3), - [sym_system_lib_string] = ACTIONS(4581), - [anon_sym_DQUOTE] = ACTIONS(4583), + [sym_system_lib_string] = ACTIONS(4579), + [anon_sym_DQUOTE] = ACTIONS(4581), }, - [1257] = { - [anon_sym_LPAREN2] = ACTIONS(4585), - [anon_sym_constexpr] = ACTIONS(4587), + [1253] = { + [anon_sym_LPAREN2] = ACTIONS(4583), + [anon_sym_constexpr] = ACTIONS(4585), [sym_comment] = ACTIONS(3), }, - [1258] = { - [sym_do_statement] = STATE(2321), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [1254] = { + [sym_do_statement] = STATE(2310), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(2321), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(2321), - [sym_if_statement] = STATE(2321), - [sym_switch_statement] = STATE(2321), - [sym_for_statement] = STATE(2321), - [sym_return_statement] = STATE(2321), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2310), + [sym_try_statement] = STATE(2310), + [sym_if_statement] = STATE(2310), + [sym_switch_statement] = STATE(2310), + [sym_for_statement] = STATE(2310), + [sym_return_statement] = STATE(2310), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(2321), - [sym_break_statement] = STATE(2321), - [sym_continue_statement] = STATE(2321), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2310), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2321), - [sym_labeled_statement] = STATE(2321), - [sym_expression_statement] = STATE(2321), - [sym_while_statement] = STATE(2321), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(2310), + [sym_for_range_loop] = STATE(2310), + [sym_compound_statement] = STATE(2310), + [sym_labeled_statement] = STATE(2310), + [sym_expression_statement] = STATE(2310), + [sym_while_statement] = STATE(2310), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [1259] = { - [sym_function_declarator] = STATE(2322), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(279), - [sym_destructor_name] = STATE(2322), - [sym__declarator] = STATE(2322), - [sym_array_declarator] = STATE(2322), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_pointer_declarator] = STATE(2322), - [sym_scoped_namespace_identifier] = STATE(282), - [sym_template_function] = STATE(2322), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_template_parameter_list] = STATE(2323), - [sym__declaration_specifiers] = STATE(2324), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(2322), - [anon_sym_LPAREN2] = ACTIONS(456), + [1255] = { + [sym_template_function] = STATE(2311), + [sym_macro_type_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(2311), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(2311), + [sym_array_declarator] = STATE(2311), + [sym_template_type] = STATE(284), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_destructor_name] = STATE(2311), + [sym_type_qualifier] = STATE(285), + [sym_pointer_declarator] = STATE(2311), + [sym_structured_binding_declarator] = STATE(2311), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_template_parameter_list] = STATE(2312), + [sym__declaration_specifiers] = STATE(2313), + [sym_scoped_namespace_identifier] = STATE(288), + [sym_function_declarator] = STATE(2311), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(466), + [anon_sym_long] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(468), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(470), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(472), - [anon_sym_short] = ACTIONS(460), - [sym_operator_name] = ACTIONS(4589), + [sym_identifier] = ACTIONS(474), + [anon_sym_short] = ACTIONS(462), + [sym_operator_name] = ACTIONS(4587), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_AMP_AMP] = ACTIONS(480), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [1260] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2326), - [sym_logical_expression] = STATE(2326), - [sym_bitwise_expression] = STATE(2326), - [sym_cast_expression] = STATE(2326), - [sym_new_expression] = STATE(2326), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(2326), - [sym_char_literal] = STATE(2326), - [sym_template_function] = STATE(2326), - [sym_conditional_expression] = STATE(2326), - [sym_equality_expression] = STATE(2326), - [sym_relational_expression] = STATE(2326), - [sym_delete_expression] = STATE(2326), - [sym_sizeof_expression] = STATE(2326), - [sym_parenthesized_expression] = STATE(2326), - [sym_initializer_list] = STATE(2327), - [sym_concatenated_string] = STATE(2326), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(2326), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(2326), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(2326), - [sym_math_expression] = STATE(2326), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(4593), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4591), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(4593), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(4595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [1256] = { + [sym_template_function] = STATE(2315), + [sym__expression] = STATE(2315), + [sym_logical_expression] = STATE(2315), + [sym_bitwise_expression] = STATE(2315), + [sym_cast_expression] = STATE(2315), + [sym_delete_expression] = STATE(2315), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(2315), + [sym_lambda_expression] = STATE(2315), + [sym_char_literal] = STATE(2315), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2315), + [sym_equality_expression] = STATE(2315), + [sym_relational_expression] = STATE(2315), + [sym_sizeof_expression] = STATE(2315), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2316), + [sym_parenthesized_expression] = STATE(2315), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2315), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2315), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(2315), + [sym_math_expression] = STATE(2315), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(2315), + [sym_raw_string_literal] = ACTIONS(4589), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(4591), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4589), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(4593), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [1261] = { - [anon_sym_DASH] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(514), - [anon_sym_else] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [anon_sym_mutable] = ACTIONS(512), - [sym_null] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [aux_sym_preproc_if_token2] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_sizeof] = ACTIONS(512), - [anon_sym_volatile] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_typedef] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(512), - [anon_sym_explicit] = ACTIONS(512), - [sym_identifier] = ACTIONS(512), - [anon_sym_delete] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(512), - [anon_sym__Atomic] = ACTIONS(512), - [sym_number_literal] = ACTIONS(514), - [anon_sym_extern] = ACTIONS(512), - [anon_sym_enum] = ACTIONS(512), - [anon_sym_constexpr] = ACTIONS(512), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(514), - [anon_sym_namespace] = ACTIONS(512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(512), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(514), - [anon_sym_DASH_DASH] = ACTIONS(514), - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(512), - [sym_auto] = ACTIONS(512), - [anon_sym_signed] = ACTIONS(512), - [anon_sym_long] = ACTIONS(512), - [anon_sym_COLON_COLON] = ACTIONS(514), - [anon_sym_using] = ACTIONS(512), - [sym_preproc_directive] = ACTIONS(512), - [aux_sym_preproc_if_token1] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_static] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_union] = ACTIONS(512), - [anon_sym_typename] = ACTIONS(512), - [anon_sym_short] = ACTIONS(512), - [anon_sym_new] = ACTIONS(512), - [anon_sym_goto] = ACTIONS(512), - [sym_operator_name] = ACTIONS(514), - [anon_sym_while] = ACTIONS(512), - [anon_sym_try] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [aux_sym_preproc_include_token1] = ACTIONS(512), - [anon_sym_register] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(514), - [anon_sym_const] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_class] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [sym_primitive_type] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_nullptr] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_template] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [aux_sym_preproc_def_token1] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(514), - [anon_sym_inline] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(514), - [anon_sym_restrict] = ACTIONS(512), + [1257] = { + [anon_sym_DASH] = ACTIONS(516), + [sym_raw_string_literal] = ACTIONS(518), + [anon_sym_else] = ACTIONS(516), + [sym_true] = ACTIONS(516), + [anon_sym_mutable] = ACTIONS(516), + [sym_null] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [aux_sym_preproc_if_token2] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_sizeof] = ACTIONS(516), + [anon_sym_volatile] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_typedef] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(516), + [anon_sym_explicit] = ACTIONS(516), + [sym_identifier] = ACTIONS(516), + [anon_sym_delete] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(516), + [anon_sym__Atomic] = ACTIONS(516), + [sym_number_literal] = ACTIONS(518), + [anon_sym_extern] = ACTIONS(516), + [anon_sym_enum] = ACTIONS(516), + [anon_sym_constexpr] = ACTIONS(516), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(518), + [anon_sym_namespace] = ACTIONS(516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [anon_sym_LPAREN2] = ACTIONS(518), + [anon_sym_struct] = ACTIONS(516), + [sym_auto] = ACTIONS(516), + [anon_sym_signed] = ACTIONS(516), + [anon_sym_long] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(518), + [anon_sym_using] = ACTIONS(516), + [sym_preproc_directive] = ACTIONS(516), + [aux_sym_preproc_if_token1] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_static] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_union] = ACTIONS(516), + [anon_sym_typename] = ACTIONS(516), + [anon_sym_short] = ACTIONS(516), + [anon_sym_new] = ACTIONS(516), + [anon_sym_goto] = ACTIONS(516), + [sym_operator_name] = ACTIONS(518), + [anon_sym_while] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [aux_sym_preproc_include_token1] = ACTIONS(516), + [anon_sym_register] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_const] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_class] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [sym_primitive_type] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_nullptr] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_template] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [aux_sym_preproc_def_token1] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_inline] = ACTIONS(516), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_restrict] = ACTIONS(516), }, - [1262] = { - [sym_identifier] = ACTIONS(4597), + [1258] = { + [sym_identifier] = ACTIONS(4595), [sym_comment] = ACTIONS(3), }, - [1263] = { - [sym_function_declarator] = STATE(2329), - [sym_macro_type_specifier] = STATE(312), - [sym_class_specifier] = STATE(312), - [sym_template_type] = STATE(311), - [sym_sized_type_specifier] = STATE(312), - [sym__type_specifier] = STATE(312), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_array_declarator] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(313), - [sym_storage_class_specifier] = STATE(313), - [sym_dependent_type] = STATE(312), - [sym_struct_specifier] = STATE(312), - [sym_union_specifier] = STATE(312), - [sym_type_qualifier] = STATE(313), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(314), - [sym_template_function] = STATE(56), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(312), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(56), - [anon_sym_LPAREN2] = ACTIONS(456), + [1259] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_struct_specifier] = STATE(280), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(2318), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(526), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(462), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(472), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(462), + [anon_sym_restrict] = ACTIONS(11), + }, + [1260] = { + [sym_compound_statement] = STATE(2320), + [sym_field_initializer_list] = STATE(2321), + [sym_delete_method_clause] = STATE(2320), + [sym_default_method_clause] = STATE(2320), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), + }, + [1261] = { + [sym_template_function] = STATE(60), + [sym_macro_type_specifier] = STATE(334), + [sym_class_specifier] = STATE(334), + [sym_sized_type_specifier] = STATE(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym__type_specifier] = STATE(334), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(60), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(60), + [sym_array_declarator] = STATE(60), + [sym_template_type] = STATE(335), + [sym_storage_class_specifier] = STATE(336), + [sym_dependent_type] = STATE(334), + [sym_struct_specifier] = STATE(334), + [sym_union_specifier] = STATE(334), + [sym_destructor_name] = STATE(60), + [sym_type_qualifier] = STATE(336), + [sym_pointer_declarator] = STATE(60), + [sym_structured_binding_declarator] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(336), + [sym_enum_specifier] = STATE(334), + [sym_scoped_namespace_identifier] = STATE(337), + [sym_function_declarator] = STATE(2322), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(569), [anon_sym_signed] = ACTIONS(35), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(530), + [sym_identifier] = ACTIONS(573), [anon_sym_short] = ACTIONS(35), [sym_operator_name] = ACTIONS(75), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(526), + [sym_primitive_type] = ACTIONS(569), [anon_sym_unsigned] = ACTIONS(35), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [1264] = { - [sym_compound_statement] = STATE(2331), - [sym_field_initializer_list] = STATE(2332), - [sym_default_method_clause] = STATE(2331), - [sym_delete_method_clause] = STATE(2331), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(2497), + [1262] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1263] = { [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(4599), }, - [1265] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), + [1264] = { + [sym_template_function] = STATE(2325), + [sym_destructor_name] = STATE(2325), + [sym_pointer_declarator] = STATE(2325), + [sym_structured_binding_declarator] = STATE(2325), + [sym__declarator] = STATE(2325), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2325), + [sym_array_declarator] = STATE(2325), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(2326), + [sym_function_declarator] = STATE(2325), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_SEMI] = ACTIONS(4601), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(4603), + [sym_comment] = ACTIONS(3), }, - [1266] = { - [sym_goto_statement] = STATE(2334), - [sym_preproc_function_def] = STATE(2334), - [sym_logical_expression] = STATE(1265), - [sym_for_range_loop] = STATE(2334), - [sym_cast_expression] = STATE(1265), - [sym_declaration] = STATE(2334), + [1265] = { + [sym_goto_statement] = STATE(2327), + [sym_preproc_function_def] = STATE(2327), + [sym_logical_expression] = STATE(1262), + [sym_try_statement] = STATE(2327), + [sym_cast_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(1263), - [sym_type_qualifier] = STATE(1263), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2334), - [sym_return_statement] = STATE(2334), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2327), + [aux_sym_function_definition_repeat1] = STATE(1259), + [sym_type_qualifier] = STATE(1261), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2327), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2327), + [sym_namespace_definition] = STATE(2327), + [sym_conditional_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2334), - [sym_function_declarator] = STATE(1264), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2334), - [sym_break_statement] = STATE(2334), - [sym_preproc_include] = STATE(2334), - [sym_assignment_expression] = STATE(1265), - [sym_preproc_ifdef] = STATE(2334), - [sym_shift_expression] = STATE(1265), - [sym_using_declaration] = STATE(2334), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2327), + [sym_function_declarator] = STATE(1260), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2327), + [sym_constructor_or_destructor_definition] = STATE(2327), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2327), + [sym_preproc_include] = STATE(2327), + [sym_assignment_expression] = STATE(1262), + [sym_preproc_ifdef] = STATE(2327), + [sym_shift_expression] = STATE(1262), + [sym_for_range_loop] = STATE(2327), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(1269), - [sym_compound_statement] = STATE(2334), - [sym_template_instantiation] = STATE(2334), - [sym_constructor_or_destructor_definition] = STATE(2334), - [sym_expression_statement] = STATE(2334), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2334), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(1265), - [sym_preproc_def] = STATE(2334), - [sym_bitwise_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), - [sym_function_definition] = STATE(2334), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(1265), - [sym_char_literal] = STATE(1265), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2334), - [aux_sym_translation_unit_repeat1] = STATE(2334), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(1263), - [sym_alias_declaration] = STATE(2334), - [sym_if_statement] = STATE(2334), - [sym_for_statement] = STATE(2334), - [sym_comma_expression] = STATE(1267), - [sym_preproc_call] = STATE(2334), - [sym_equality_expression] = STATE(1265), - [sym_try_statement] = STATE(2334), - [sym_sizeof_expression] = STATE(1265), - [sym__declaration_specifiers] = STATE(1268), - [sym_parenthesized_expression] = STATE(1265), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(1265), - [aux_sym_function_definition_repeat1] = STATE(1269), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(1265), - [sym_structured_binding_declaration] = STATE(2334), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2334), - [sym_preproc_if] = STATE(2334), + [aux_sym__declaration_specifiers_repeat1] = STATE(1261), + [sym_compound_statement] = STATE(2327), + [sym_expression_statement] = STATE(2327), + [sym_do_statement] = STATE(2327), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(1262), + [sym_preproc_def] = STATE(2327), + [sym_bitwise_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), + [sym_function_definition] = STATE(2327), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2327), + [sym_storage_class_specifier] = STATE(1261), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2327), + [sym_for_statement] = STATE(2327), + [sym_comma_expression] = STATE(1263), + [sym_preproc_call] = STATE(2327), + [sym_equality_expression] = STATE(1262), + [sym_using_declaration] = STATE(2327), + [sym_sizeof_expression] = STATE(1262), + [sym__declaration_specifiers] = STATE(1264), + [sym_parenthesized_expression] = STATE(1262), + [sym_attribute] = STATE(1259), + [sym_concatenated_string] = STATE(1262), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2327), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2327), + [sym_preproc_if] = STATE(2327), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2334), - [sym_math_expression] = STATE(1265), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2334), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2334), - [sym_while_statement] = STATE(2334), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2327), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2327), + [aux_sym_translation_unit_repeat1] = STATE(2327), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2327), + [sym_while_statement] = STATE(2327), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2479), - [aux_sym_preproc_if_token2] = ACTIONS(4603), + [sym_null] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), + [aux_sym_preproc_if_token2] = ACTIONS(4605), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2487), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(2489), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2493), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2495), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2493), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -60912,9 +60882,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(2499), - [sym_preproc_directive] = ACTIONS(2501), - [aux_sym_preproc_if_token1] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2501), + [sym_preproc_directive] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2505), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -60922,307 +60892,230 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [aux_sym_preproc_include_token1] = ACTIONS(2515), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(2523), - [aux_sym_preproc_def_token1] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [aux_sym_preproc_def_token1] = ACTIONS(2527), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1267] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4601), - }, - [1268] = { - [sym_reference_declarator] = STATE(2337), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2337), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_structured_binding_reference_declarator] = STATE(2336), - [sym_template_function] = STATE(2337), - [sym_destructor_name] = STATE(2337), - [sym__declarator] = STATE(2337), - [sym_init_declarator] = STATE(2338), - [sym_array_declarator] = STATE(2337), - [sym_structured_binding_declarator] = STATE(2336), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2337), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(605), - [sym_operator_name] = ACTIONS(4607), - [sym_comment] = ACTIONS(3), - }, - [1269] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(278), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(2339), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), - [anon_sym_restrict] = ACTIONS(11), - }, - [1270] = { - [anon_sym_DASH] = ACTIONS(1166), - [sym_raw_string_literal] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [anon_sym_mutable] = ACTIONS(1166), - [sym_null] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [aux_sym_preproc_if_token2] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_explicit] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1166), - [anon_sym_delete] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [aux_sym_preproc_elif_token1] = ACTIONS(1166), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1166), - [sym_auto] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1168), - [anon_sym_using] = ACTIONS(1166), - [aux_sym_preproc_else_token1] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_typename] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_new] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [sym_operator_name] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_try] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_class] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [sym_nullptr] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_template] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1166), + [1266] = { + [anon_sym_DASH] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(1174), + [sym_true] = ACTIONS(1172), + [anon_sym_mutable] = ACTIONS(1172), + [sym_null] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [aux_sym_preproc_if_token2] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_sizeof] = ACTIONS(1172), + [anon_sym_volatile] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1172), + [anon_sym_switch] = ACTIONS(1172), + [anon_sym_explicit] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1172), + [anon_sym_delete] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1172), + [sym_number_literal] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_constexpr] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), + [anon_sym_namespace] = ACTIONS(1172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), + [aux_sym_preproc_elif_token1] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1172), + [sym_auto] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1172), + [anon_sym_long] = ACTIONS(1172), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1172), + [aux_sym_preproc_else_token1] = ACTIONS(1172), + [sym_preproc_directive] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_typename] = ACTIONS(1172), + [anon_sym_short] = ACTIONS(1172), + [anon_sym_new] = ACTIONS(1172), + [anon_sym_goto] = ACTIONS(1172), + [sym_operator_name] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_try] = ACTIONS(1172), + [anon_sym_for] = ACTIONS(1172), + [aux_sym_preproc_include_token1] = ACTIONS(1172), + [anon_sym_register] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [sym_primitive_type] = ACTIONS(1172), + [sym_false] = ACTIONS(1172), + [sym_nullptr] = ACTIONS(1172), + [anon_sym_do] = ACTIONS(1172), + [anon_sym_template] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1172), }, - [1271] = { - [anon_sym_LF] = ACTIONS(4609), + [1267] = { + [anon_sym_LF] = ACTIONS(4607), [sym_comment] = ACTIONS(244), }, - [1272] = { - [sym_goto_statement] = STATE(2343), - [sym_preproc_function_def] = STATE(2343), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(2343), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(2343), + [1268] = { + [sym_goto_statement] = STATE(2331), + [sym_preproc_function_def] = STATE(2331), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(2331), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(2342), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2343), - [sym_return_statement] = STATE(2343), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2331), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(2330), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2331), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2331), + [sym_namespace_definition] = STATE(2331), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2343), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2343), - [sym_break_statement] = STATE(2343), - [sym_preproc_include] = STATE(2343), - [sym_assignment_expression] = STATE(482), - [sym_preproc_ifdef] = STATE(2343), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(2343), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2331), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2331), + [sym_constructor_or_destructor_definition] = STATE(2331), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2331), + [sym_preproc_include] = STATE(2331), + [sym_assignment_expression] = STATE(484), + [sym_preproc_ifdef] = STATE(2331), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(2331), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), - [sym_compound_statement] = STATE(2343), - [sym_template_instantiation] = STATE(2343), - [sym_constructor_or_destructor_definition] = STATE(2343), - [sym_expression_statement] = STATE(2343), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2343), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), - [sym_preproc_def] = STATE(2343), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), - [sym_function_definition] = STATE(2343), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2343), - [aux_sym_translation_unit_repeat1] = STATE(2343), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(2343), - [sym_preproc_else] = STATE(2342), - [sym_if_statement] = STATE(2343), - [sym_for_statement] = STATE(2343), - [sym_comma_expression] = STATE(484), - [sym_preproc_call] = STATE(2343), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(2343), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(2343), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2343), - [sym_preproc_if] = STATE(2343), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), + [sym_compound_statement] = STATE(2331), + [sym_expression_statement] = STATE(2331), + [sym_do_statement] = STATE(2331), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), + [sym_preproc_def] = STATE(2331), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), + [sym_function_definition] = STATE(2331), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2331), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(2330), + [sym_if_statement] = STATE(2331), + [sym_for_statement] = STATE(2331), + [sym_comma_expression] = STATE(485), + [sym_preproc_call] = STATE(2331), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(2331), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2331), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2331), + [sym_preproc_if] = STATE(2331), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2343), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2343), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2343), - [sym_while_statement] = STATE(2343), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2331), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2331), + [aux_sym_translation_unit_repeat1] = STATE(2331), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2331), + [sym_while_statement] = STATE(2331), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(4611), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(4609), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -61230,10 +61123,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -61241,400 +61134,400 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1273] = { + [1269] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4611), }, - [1274] = { - [sym_do_statement] = STATE(2345), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [1270] = { + [sym_do_statement] = STATE(2333), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(2345), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(2345), - [sym_if_statement] = STATE(2345), - [sym_switch_statement] = STATE(2345), - [sym_for_statement] = STATE(2345), - [sym_return_statement] = STATE(2345), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2333), + [sym_try_statement] = STATE(2333), + [sym_if_statement] = STATE(2333), + [sym_switch_statement] = STATE(2333), + [sym_for_statement] = STATE(2333), + [sym_return_statement] = STATE(2333), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(2345), - [sym_break_statement] = STATE(2345), - [sym_continue_statement] = STATE(2345), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2333), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2345), - [sym_labeled_statement] = STATE(2345), - [sym_expression_statement] = STATE(2345), - [sym_while_statement] = STATE(2345), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(2333), + [sym_for_range_loop] = STATE(2333), + [sym_compound_statement] = STATE(2333), + [sym_labeled_statement] = STATE(2333), + [sym_expression_statement] = STATE(2333), + [sym_while_statement] = STATE(2333), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [1275] = { - [aux_sym_try_statement_repeat1] = STATE(2347), - [sym_catch_clause] = STATE(2347), - [anon_sym_catch] = ACTIONS(4615), + [1271] = { + [sym_catch_clause] = STATE(2335), + [aux_sym_try_statement_repeat1] = STATE(2335), + [anon_sym_catch] = ACTIONS(4613), [sym_comment] = ACTIONS(3), }, - [1276] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(2349), - [sym_logical_expression] = STATE(2349), - [sym_bitwise_expression] = STATE(2349), - [sym_cast_expression] = STATE(2349), - [sym_new_expression] = STATE(2349), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(2349), - [sym_declaration] = STATE(2348), - [sym_char_literal] = STATE(2349), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(2349), - [sym_conditional_expression] = STATE(2349), - [sym_equality_expression] = STATE(2349), - [sym_relational_expression] = STATE(2349), - [sym_sizeof_expression] = STATE(2349), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(2349), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(2349), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(2349), - [sym_lambda_expression] = STATE(2349), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(2350), - [sym_assignment_expression] = STATE(2349), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(2349), - [sym_math_expression] = STATE(2349), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [1272] = { + [sym_template_function] = STATE(2337), + [sym__expression] = STATE(2337), + [sym_logical_expression] = STATE(2337), + [sym_bitwise_expression] = STATE(2337), + [sym_cast_expression] = STATE(2337), + [sym_delete_expression] = STATE(2337), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(2337), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(2337), + [sym_lambda_expression] = STATE(2337), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(2336), + [sym_for_range_declaration] = STATE(2338), + [sym_conditional_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_sizeof_expression] = STATE(2337), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(2337), + [sym_concatenated_string] = STATE(2337), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(4617), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(2337), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(2337), + [sym_math_expression] = STATE(2337), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(2337), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(4615), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(4619), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(4617), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(4617), + [sym_number_literal] = ACTIONS(4615), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(4619), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(4617), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(4621), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(4619), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [1277] = { - [anon_sym_DASH] = ACTIONS(1309), - [sym_raw_string_literal] = ACTIONS(1311), - [sym_true] = ACTIONS(1309), - [anon_sym_mutable] = ACTIONS(1309), - [sym_null] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [aux_sym_preproc_if_token2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_explicit] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1309), - [anon_sym_delete] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_constexpr] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), - [anon_sym_namespace] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [aux_sym_preproc_elif_token1] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1309), - [sym_auto] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_using] = ACTIONS(1309), - [aux_sym_preproc_else_token1] = ACTIONS(1309), - [sym_preproc_directive] = ACTIONS(1309), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_typename] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [anon_sym_new] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1309), - [sym_operator_name] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [sym_nullptr] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_template] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1309), - [anon_sym_AMP_AMP] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1309), + [1273] = { + [anon_sym_DASH] = ACTIONS(1317), + [sym_raw_string_literal] = ACTIONS(1319), + [sym_true] = ACTIONS(1317), + [anon_sym_mutable] = ACTIONS(1317), + [sym_null] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [aux_sym_preproc_if_token2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_explicit] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_constexpr] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), + [aux_sym_preproc_elif_token1] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1317), + [sym_auto] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1319), + [anon_sym_using] = ACTIONS(1317), + [aux_sym_preproc_else_token1] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [aux_sym_preproc_if_token1] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_typename] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_goto] = ACTIONS(1317), + [sym_operator_name] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_try] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [aux_sym_preproc_include_token1] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_class] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [sym_nullptr] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_template] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1317), + [anon_sym_AMP_AMP] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1317), }, - [1278] = { - [aux_sym_string_literal_repeat1] = STATE(2352), + [1274] = { + [aux_sym_string_literal_repeat1] = STATE(2340), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(4623), - [aux_sym_string_literal_token1] = ACTIONS(4623), - [anon_sym_DQUOTE] = ACTIONS(4625), + [sym_escape_sequence] = ACTIONS(4621), + [aux_sym_string_literal_token1] = ACTIONS(4621), + [anon_sym_DQUOTE] = ACTIONS(4623), }, - [1279] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2353), - [sym_logical_expression] = STATE(2353), - [sym_bitwise_expression] = STATE(2353), - [sym_cast_expression] = STATE(2353), - [sym_new_expression] = STATE(2353), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2353), - [sym_char_literal] = STATE(2353), - [sym_template_function] = STATE(2353), - [sym_conditional_expression] = STATE(2353), - [sym_equality_expression] = STATE(2353), - [sym_relational_expression] = STATE(2353), - [sym_delete_expression] = STATE(2353), - [sym_sizeof_expression] = STATE(2353), - [sym_parenthesized_expression] = STATE(2353), - [sym_lambda_expression] = STATE(2353), - [sym_concatenated_string] = STATE(2353), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2353), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2353), - [sym_math_expression] = STATE(2353), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(4629), - [sym_null] = ACTIONS(4629), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4627), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(4629), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(4629), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [1275] = { + [sym_template_function] = STATE(2341), + [sym__expression] = STATE(2341), + [sym_logical_expression] = STATE(2341), + [sym_bitwise_expression] = STATE(2341), + [sym_cast_expression] = STATE(2341), + [sym_delete_expression] = STATE(2341), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2341), + [sym_lambda_expression] = STATE(2341), + [sym_char_literal] = STATE(2341), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2341), + [sym_equality_expression] = STATE(2341), + [sym_relational_expression] = STATE(2341), + [sym_sizeof_expression] = STATE(2341), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2341), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2341), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2341), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2341), + [sym_math_expression] = STATE(2341), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2341), + [sym_raw_string_literal] = ACTIONS(4625), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(4627), + [sym_null] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4625), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(4627), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [1280] = { - [anon_sym_LPAREN2] = ACTIONS(4631), + [1276] = { + [anon_sym_LPAREN2] = ACTIONS(4629), [sym_comment] = ACTIONS(3), }, - [1281] = { - [anon_sym_while] = ACTIONS(4633), + [1277] = { + [anon_sym_while] = ACTIONS(4631), [sym_comment] = ACTIONS(3), }, - [1282] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), + [1278] = { + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(4633), }, - [1283] = { - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(876), - [sym_class_specifier] = STATE(876), - [sym__type_specifier] = STATE(876), - [sym_sized_type_specifier] = STATE(876), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(2357), - [sym_declaration] = STATE(2357), - [aux_sym__declaration_specifiers_repeat1] = STATE(878), - [sym_storage_class_specifier] = STATE(878), - [sym_dependent_type] = STATE(876), - [sym_struct_specifier] = STATE(876), - [sym_union_specifier] = STATE(876), - [sym_attribute] = STATE(486), - [sym_type_qualifier] = STATE(878), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__empty_declaration] = STATE(2357), - [aux_sym_sized_type_specifier_repeat1] = STATE(879), - [sym_enum_specifier] = STATE(876), - [sym__declaration_specifiers] = STATE(2358), - [sym_scoped_type_identifier] = STATE(87), + [1279] = { + [sym_macro_type_specifier] = STATE(55), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_sized_type_specifier] = STATE(55), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_function_definition] = STATE(2345), + [sym_declaration] = STATE(2345), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_template_type] = STATE(91), + [sym__empty_declaration] = STATE(2345), + [sym_storage_class_specifier] = STATE(881), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_union_specifier] = STATE(55), + [sym_type_qualifier] = STATE(881), + [aux_sym__declaration_specifiers_repeat1] = STATE(881), + [sym_enum_specifier] = STATE(55), + [sym_attribute] = STATE(480), + [sym__declaration_specifiers] = STATE(486), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1571), + [sym_auto] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(35), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(35), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -61643,161 +61536,188 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(35), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1573), + [anon_sym_typename] = ACTIONS(69), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(35), [anon_sym_restrict] = ACTIONS(11), }, - [1284] = { - [sym_reference_declarator] = STATE(2359), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2359), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(2359), - [sym_destructor_name] = STATE(2359), - [sym__declarator] = STATE(2359), - [sym_array_declarator] = STATE(2359), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2359), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(476), - [sym_operator_name] = ACTIONS(4637), + [1280] = { + [sym_template_function] = STATE(2346), + [sym_destructor_name] = STATE(2346), + [sym_pointer_declarator] = STATE(2346), + [sym_structured_binding_declarator] = STATE(2346), + [sym__declarator] = STATE(2346), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2346), + [sym_array_declarator] = STATE(2346), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_function_declarator] = STATE(2346), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(4635), [sym_comment] = ACTIONS(3), }, - [1285] = { - [anon_sym_DASH] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - [anon_sym_else] = ACTIONS(1609), - [sym_true] = ACTIONS(1609), - [anon_sym_mutable] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [aux_sym_preproc_if_token2] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_typedef] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_explicit] = ACTIONS(1609), - [sym_identifier] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1609), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_constexpr] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym_namespace] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1609), - [aux_sym_preproc_elif_token1] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1609), - [sym_auto] = ACTIONS(1609), - [anon_sym_signed] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_using] = ACTIONS(1609), - [aux_sym_preproc_else_token1] = ACTIONS(1609), - [sym_preproc_directive] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_typename] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [sym_operator_name] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_class] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1609), - [sym_false] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_template] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1611), - [aux_sym_preproc_def_token1] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_inline] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_restrict] = ACTIONS(1609), + [1281] = { + [anon_sym_DASH] = ACTIONS(1619), + [sym_raw_string_literal] = ACTIONS(1621), + [anon_sym_else] = ACTIONS(1619), + [sym_true] = ACTIONS(1619), + [anon_sym_mutable] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [aux_sym_preproc_if_token2] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_sizeof] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1619), + [anon_sym_explicit] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [anon_sym_delete] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1619), + [anon_sym__Atomic] = ACTIONS(1619), + [sym_number_literal] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_constexpr] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1621), + [anon_sym_namespace] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1619), + [aux_sym_preproc_elif_token1] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1619), + [sym_auto] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_COLON_COLON] = ACTIONS(1621), + [anon_sym_using] = ACTIONS(1619), + [aux_sym_preproc_else_token1] = ACTIONS(1619), + [sym_preproc_directive] = ACTIONS(1619), + [aux_sym_preproc_if_token1] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_typename] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [sym_operator_name] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [aux_sym_preproc_include_token1] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), + [sym_nullptr] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_template] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1621), + [anon_sym_inline] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_restrict] = ACTIONS(1619), }, - [1286] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1282] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1287] = { + [1283] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4639), + [anon_sym_SEMI] = ACTIONS(4637), }, - [1288] = { - [sym_preproc_params] = STATE(2363), - [sym_preproc_arg] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(4643), + [1284] = { + [sym_preproc_params] = STATE(2350), + [sym_preproc_arg] = ACTIONS(4639), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_LF] = ACTIONS(4641), [sym_comment] = ACTIONS(244), }, - [1289] = { + [1285] = { + [sym_template_function] = STATE(2351), + [sym_destructor_name] = STATE(2351), + [sym_pointer_declarator] = STATE(2351), + [sym_structured_binding_declarator] = STATE(2351), + [sym__declarator] = STATE(2351), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2351), + [sym_array_declarator] = STATE(2351), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(2352), + [sym_function_declarator] = STATE(2351), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(4643), + [sym_comment] = ACTIONS(3), + }, + [1286] = { [anon_sym_DASH] = ACTIONS(4645), [sym_raw_string_literal] = ACTIONS(4647), [sym_true] = ACTIONS(4645), @@ -61872,671 +61792,640 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(4647), [anon_sym_restrict] = ACTIONS(4645), }, + [1287] = { + [anon_sym_default] = ACTIONS(4649), + [anon_sym_delete] = ACTIONS(4651), + [sym_comment] = ACTIONS(3), + }, + [1288] = { + [anon_sym_DASH] = ACTIONS(1762), + [sym_raw_string_literal] = ACTIONS(1764), + [sym_true] = ACTIONS(1762), + [anon_sym_mutable] = ACTIONS(1762), + [sym_null] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [aux_sym_preproc_if_token2] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_sizeof] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1762), + [anon_sym_switch] = ACTIONS(1762), + [anon_sym_explicit] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_delete] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [sym_number_literal] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1764), + [anon_sym_namespace] = ACTIONS(1762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1762), + [aux_sym_preproc_elif_token1] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1762), + [sym_auto] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1762), + [anon_sym_long] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_using] = ACTIONS(1762), + [aux_sym_preproc_else_token1] = ACTIONS(1762), + [sym_preproc_directive] = ACTIONS(1762), + [aux_sym_preproc_if_token1] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_typename] = ACTIONS(1762), + [anon_sym_short] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_goto] = ACTIONS(1762), + [sym_operator_name] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [aux_sym_preproc_include_token1] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [sym_primitive_type] = ACTIONS(1762), + [sym_false] = ACTIONS(1762), + [sym_nullptr] = ACTIONS(1762), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_template] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [aux_sym_preproc_def_token1] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_restrict] = ACTIONS(1762), + }, + [1289] = { + [sym_compound_statement] = STATE(2355), + [sym_default_method_clause] = STATE(2355), + [sym_delete_method_clause] = STATE(2355), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(834), + [sym_comment] = ACTIONS(3), + }, [1290] = { - [sym_compound_statement] = STATE(2364), - [sym_field_initializer_list] = STATE(2365), - [sym_default_method_clause] = STATE(2364), - [sym_delete_method_clause] = STATE(2364), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(830), + [sym_compound_statement] = STATE(2355), + [sym_field_initializer_list] = STATE(2356), + [sym_delete_method_clause] = STATE(2355), + [sym_default_method_clause] = STATE(2355), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(834), [sym_comment] = ACTIONS(3), }, [1291] = { - [anon_sym_default] = ACTIONS(4649), - [anon_sym_delete] = ACTIONS(4651), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(1879), + [sym_raw_string_literal] = ACTIONS(1881), + [anon_sym_else] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [sym_null] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [aux_sym_preproc_if_token2] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_sizeof] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [sym_number_literal] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), + [anon_sym_namespace] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), + [aux_sym_preproc_elif_token1] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1879), + [sym_auto] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1881), + [anon_sym_using] = ACTIONS(1879), + [aux_sym_preproc_else_token1] = ACTIONS(1879), + [sym_preproc_directive] = ACTIONS(1879), + [aux_sym_preproc_if_token1] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [sym_operator_name] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [aux_sym_preproc_include_token1] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nullptr] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [aux_sym_preproc_def_token1] = ACTIONS(1879), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_restrict] = ACTIONS(1879), }, [1292] = { - [anon_sym_DASH] = ACTIONS(1697), - [sym_raw_string_literal] = ACTIONS(1699), - [sym_true] = ACTIONS(1697), - [anon_sym_mutable] = ACTIONS(1697), - [sym_null] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [aux_sym_preproc_if_token2] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_sizeof] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_explicit] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [sym_number_literal] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [aux_sym_preproc_elif_token1] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1697), - [aux_sym_preproc_else_token1] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1697), - [aux_sym_preproc_if_token1] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_typename] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_goto] = ACTIONS(1697), - [sym_operator_name] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [aux_sym_preproc_include_token1] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [sym_false] = ACTIONS(1697), - [sym_nullptr] = ACTIONS(1697), - [anon_sym_do] = ACTIONS(1697), - [anon_sym_template] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1915), + [sym_raw_string_literal] = ACTIONS(1917), + [sym_true] = ACTIONS(1915), + [anon_sym_mutable] = ACTIONS(1915), + [sym_null] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [aux_sym_preproc_if_token2] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_sizeof] = ACTIONS(1915), + [anon_sym_volatile] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_typedef] = ACTIONS(1915), + [anon_sym_switch] = ACTIONS(1915), + [anon_sym_explicit] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1915), + [anon_sym_delete] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), + [anon_sym__Atomic] = ACTIONS(1915), + [sym_number_literal] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_constexpr] = ACTIONS(1915), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), + [anon_sym_namespace] = ACTIONS(1915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), + [aux_sym_preproc_elif_token1] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1917), + [anon_sym_LPAREN2] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1915), + [sym_auto] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1915), + [aux_sym_preproc_else_token1] = ACTIONS(1915), + [sym_preproc_directive] = ACTIONS(1915), + [aux_sym_preproc_if_token1] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_typename] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_goto] = ACTIONS(1915), + [sym_operator_name] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [aux_sym_preproc_include_token1] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [sym_primitive_type] = ACTIONS(1915), + [sym_false] = ACTIONS(1915), + [sym_nullptr] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_template] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [aux_sym_preproc_def_token1] = ACTIONS(1915), + [anon_sym_AMP_AMP] = ACTIONS(1917), + [anon_sym_inline] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_restrict] = ACTIONS(1915), }, [1293] = { - [sym_compound_statement] = STATE(2364), - [sym_delete_method_clause] = STATE(2364), - [sym_default_method_clause] = STATE(2364), - [anon_sym_EQ] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(830), - [sym_comment] = ACTIONS(3), + [sym_compound_statement] = STATE(2359), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(2360), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4655), }, [1294] = { - [anon_sym_DASH] = ACTIONS(1809), - [sym_raw_string_literal] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [anon_sym_mutable] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [aux_sym_preproc_if_token2] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_sizeof] = ACTIONS(1809), - [anon_sym_volatile] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_typedef] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_explicit] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1809), - [anon_sym__Atomic] = ACTIONS(1809), - [sym_number_literal] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_constexpr] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1809), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1809), - [aux_sym_preproc_elif_token1] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1809), - [sym_auto] = ACTIONS(1809), - [anon_sym_signed] = ACTIONS(1809), - [anon_sym_long] = ACTIONS(1809), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1809), - [aux_sym_preproc_else_token1] = ACTIONS(1809), - [sym_preproc_directive] = ACTIONS(1809), - [aux_sym_preproc_if_token1] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_typename] = ACTIONS(1809), - [anon_sym_short] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [sym_operator_name] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [aux_sym_preproc_include_token1] = ACTIONS(1809), - [anon_sym_register] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [sym_primitive_type] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nullptr] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_template] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1811), - [aux_sym_preproc_def_token1] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1811), - [anon_sym_inline] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_restrict] = ACTIONS(1809), + [aux_sym_declaration_repeat1] = STATE(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(4655), }, [1295] = { - [aux_sym_preproc_if_token2] = ACTIONS(4653), + [aux_sym_preproc_if_token2] = ACTIONS(4657), [sym_comment] = ACTIONS(3), }, [1296] = { [sym_goto_statement] = STATE(1296), [sym_preproc_function_def] = STATE(1296), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(1296), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(1296), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(1296), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1296), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), [sym_switch_statement] = STATE(1296), + [sym_structured_binding_declarator] = STATE(60), [sym_return_statement] = STATE(1296), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_namespace_definition] = STATE(1296), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(51), [sym_type_definition] = STATE(1296), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1296), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1296), + [sym_constructor_or_destructor_definition] = STATE(1296), + [sym_reference_declarator] = STATE(60), [sym_break_statement] = STATE(1296), [sym_preproc_include] = STATE(1296), - [sym_assignment_expression] = STATE(482), + [sym_assignment_expression] = STATE(484), [sym_preproc_ifdef] = STATE(1296), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(1296), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(1296), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), [sym_compound_statement] = STATE(1296), - [sym_template_instantiation] = STATE(1296), - [sym_constructor_or_destructor_definition] = STATE(1296), [sym_expression_statement] = STATE(1296), - [sym_reference_declarator] = STATE(56), [sym_do_statement] = STATE(1296), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), [sym_preproc_def] = STATE(1296), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_function_definition] = STATE(1296), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), [sym__empty_declaration] = STATE(1296), - [aux_sym_translation_unit_repeat1] = STATE(1296), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(1296), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), [sym_if_statement] = STATE(1296), [sym_for_statement] = STATE(1296), - [sym_comma_expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_preproc_call] = STATE(1296), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(1296), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(1296), - [sym_sized_type_specifier] = STATE(53), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(1296), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1296), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), [sym_continue_statement] = STATE(1296), [sym_preproc_if] = STATE(1296), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1296), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), [sym_linkage_specification] = STATE(1296), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1296), + [aux_sym_translation_unit_repeat1] = STATE(1296), + [sym_enum_specifier] = STATE(55), [sym_labeled_statement] = STATE(1296), [sym_while_statement] = STATE(1296), - [anon_sym_DASH] = ACTIONS(1853), - [sym_raw_string_literal] = ACTIONS(4655), - [sym_true] = ACTIONS(4658), - [anon_sym_mutable] = ACTIONS(1862), - [sym_null] = ACTIONS(4658), - [anon_sym_break] = ACTIONS(4661), - [aux_sym_preproc_if_token2] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_typedef] = ACTIONS(4666), - [anon_sym_switch] = ACTIONS(4669), - [anon_sym_explicit] = ACTIONS(1862), - [sym_identifier] = ACTIONS(4672), - [anon_sym_delete] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(4675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4678), - [anon_sym__Atomic] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(4655), - [anon_sym_extern] = ACTIONS(4681), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym_namespace] = ACTIONS(4684), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4678), - [aux_sym_preproc_elif_token1] = ACTIONS(4664), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_LPAREN2] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1919), - [sym_auto] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1898), - [anon_sym_long] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(4690), - [aux_sym_preproc_else_token1] = ACTIONS(4664), - [sym_preproc_directive] = ACTIONS(4693), - [aux_sym_preproc_if_token1] = ACTIONS(4696), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_typename] = ACTIONS(1949), - [anon_sym_short] = ACTIONS(1898), - [anon_sym_new] = ACTIONS(1952), - [anon_sym_goto] = ACTIONS(4699), - [sym_operator_name] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(4702), - [anon_sym_try] = ACTIONS(4705), - [anon_sym_for] = ACTIONS(4708), - [aux_sym_preproc_include_token1] = ACTIONS(4711), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_class] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(4714), - [sym_primitive_type] = ACTIONS(1922), - [sym_false] = ACTIONS(4658), - [sym_nullptr] = ACTIONS(4658), - [anon_sym_do] = ACTIONS(4717), - [anon_sym_template] = ACTIONS(4720), - [anon_sym_return] = ACTIONS(4723), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(4726), - [aux_sym_preproc_def_token1] = ACTIONS(4729), - [anon_sym_AMP_AMP] = ACTIONS(2005), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1931), + [sym_raw_string_literal] = ACTIONS(4659), + [sym_true] = ACTIONS(4662), + [anon_sym_mutable] = ACTIONS(1940), + [sym_null] = ACTIONS(4662), + [anon_sym_break] = ACTIONS(4665), + [aux_sym_preproc_if_token2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1949), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(4670), + [anon_sym_switch] = ACTIONS(4673), + [anon_sym_explicit] = ACTIONS(1940), + [sym_identifier] = ACTIONS(4676), + [anon_sym_delete] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(4679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4682), + [anon_sym__Atomic] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(4659), + [anon_sym_extern] = ACTIONS(4685), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_constexpr] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym_namespace] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4682), + [aux_sym_preproc_elif_token1] = ACTIONS(4668), + [anon_sym_SQUOTE] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(4691), + [anon_sym_DASH_DASH] = ACTIONS(1991), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1997), + [sym_auto] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_using] = ACTIONS(4694), + [aux_sym_preproc_else_token1] = ACTIONS(4668), + [sym_preproc_directive] = ACTIONS(4697), + [aux_sym_preproc_if_token1] = ACTIONS(4700), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_typename] = ACTIONS(2027), + [anon_sym_short] = ACTIONS(1976), + [anon_sym_new] = ACTIONS(2030), + [anon_sym_goto] = ACTIONS(4703), + [sym_operator_name] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4709), + [anon_sym_for] = ACTIONS(4712), + [aux_sym_preproc_include_token1] = ACTIONS(4715), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(4718), + [sym_primitive_type] = ACTIONS(2000), + [sym_false] = ACTIONS(4662), + [sym_nullptr] = ACTIONS(4662), + [anon_sym_do] = ACTIONS(4721), + [anon_sym_template] = ACTIONS(4724), + [anon_sym_return] = ACTIONS(4727), + [anon_sym_TILDE] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(4730), + [aux_sym_preproc_def_token1] = ACTIONS(4733), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_inline] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(1991), + [anon_sym_restrict] = ACTIONS(1940), }, [1297] = { - [anon_sym_DASH] = ACTIONS(2016), - [sym_raw_string_literal] = ACTIONS(2018), - [sym_true] = ACTIONS(2016), - [anon_sym_mutable] = ACTIONS(2016), - [sym_null] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [aux_sym_preproc_if_token2] = ACTIONS(2016), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_sizeof] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2016), - [anon_sym_switch] = ACTIONS(2016), - [anon_sym_explicit] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2016), - [anon_sym_delete] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), - [anon_sym__Atomic] = ACTIONS(2016), - [sym_number_literal] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_constexpr] = ACTIONS(2016), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), - [anon_sym_namespace] = ACTIONS(2016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), - [aux_sym_preproc_elif_token1] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2016), - [sym_auto] = ACTIONS(2016), - [anon_sym_signed] = ACTIONS(2016), - [anon_sym_long] = ACTIONS(2016), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_using] = ACTIONS(2016), - [aux_sym_preproc_else_token1] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_typename] = ACTIONS(2016), - [anon_sym_short] = ACTIONS(2016), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_goto] = ACTIONS(2016), - [sym_operator_name] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [aux_sym_preproc_include_token1] = ACTIONS(2016), - [anon_sym_register] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_class] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [sym_primitive_type] = ACTIONS(2016), - [sym_false] = ACTIONS(2016), - [sym_nullptr] = ACTIONS(2016), - [anon_sym_do] = ACTIONS(2016), - [anon_sym_template] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2018), - [anon_sym_SEMI] = ACTIONS(2018), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2016), - [anon_sym_PLUS_PLUS] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(3188), + [sym_auto] = ACTIONS(3188), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_inline] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3188), + [anon_sym_restrict] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3186), }, [1298] = { - [sym_argument_list] = STATE(2370), - [sym_initializer_list] = STATE(2370), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_EQ] = ACTIONS(4732), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_mutable] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4736), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4738), + [anon_sym_COLON_COLON] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4738), + [anon_sym_static] = ACTIONS(4738), + [anon_sym_volatile] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4738), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4736), + [anon_sym_COLON] = ACTIONS(4738), + [anon_sym_explicit] = ACTIONS(4738), + [sym_identifier] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4738), + [sym_operator_name] = ACTIONS(4736), + [sym_noexcept] = ACTIONS(4738), + [anon_sym_CARET] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_register] = ACTIONS(4738), + [anon_sym__Atomic] = ACTIONS(4738), + [anon_sym_const] = ACTIONS(4738), + [anon_sym_extern] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4738), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_constexpr] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_QMARK] = ACTIONS(4736), + [anon_sym_TILDE] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_restrict] = ACTIONS(4738), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_DASH_GT] = ACTIONS(4736), }, [1299] = { - [sym_compound_statement] = STATE(2373), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(2374), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(4734), - [anon_sym_SEMI] = ACTIONS(4736), + [sym_template_function] = STATE(2362), + [sym__expression] = STATE(2362), + [sym_logical_expression] = STATE(2362), + [sym_bitwise_expression] = STATE(2362), + [sym_cast_expression] = STATE(2362), + [sym_delete_expression] = STATE(2362), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2362), + [sym_lambda_expression] = STATE(2362), + [sym_char_literal] = STATE(2362), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2362), + [sym_equality_expression] = STATE(2362), + [sym_relational_expression] = STATE(2362), + [sym_sizeof_expression] = STATE(2362), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2362), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(2362), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2362), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2362), + [sym_math_expression] = STATE(2362), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2362), + [sym_raw_string_literal] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4742), + [sym_null] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4740), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4742), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, [1300] = { - [aux_sym_declaration_repeat1] = STATE(2374), + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(4736), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(4744), }, [1301] = { - [sym_reference_declarator] = STATE(2375), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2375), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(2375), - [sym_destructor_name] = STATE(2375), - [sym__declarator] = STATE(2375), - [sym_init_declarator] = STATE(2376), - [sym_array_declarator] = STATE(2375), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2375), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(4738), + [aux_sym_enumerator_list_repeat1] = STATE(2366), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4746), + [anon_sym_RBRACE] = ACTIONS(4744), }, [1302] = { - [anon_sym_struct] = ACTIONS(3186), - [sym_auto] = ACTIONS(3186), - [anon_sym_signed] = ACTIONS(3186), - [anon_sym_mutable] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_constexpr] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_typename] = ACTIONS(3186), - [anon_sym_explicit] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3186), - [anon_sym_restrict] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3184), - }, - [1303] = { - [anon_sym_LPAREN2] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_mutable] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4740), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_COLON_COLON] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_AMP] = ACTIONS(4742), - [anon_sym_static] = ACTIONS(4742), - [anon_sym_volatile] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4740), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_explicit] = ACTIONS(4742), - [sym_identifier] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_override] = ACTIONS(4742), - [sym_operator_name] = ACTIONS(4740), - [sym_noexcept] = ACTIONS(4742), - [anon_sym_CARET] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_register] = ACTIONS(4742), - [anon_sym__Atomic] = ACTIONS(4742), - [anon_sym_const] = ACTIONS(4742), - [anon_sym_extern] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4742), - [anon_sym_LT_LT] = ACTIONS(4740), - [anon_sym_constexpr] = ACTIONS(4742), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_QMARK] = ACTIONS(4740), - [anon_sym_TILDE] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4740), - [anon_sym_restrict] = ACTIONS(4742), - [anon_sym_GT_GT] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4740), - }, - [1304] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2377), - [sym_logical_expression] = STATE(2377), - [sym_bitwise_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_new_expression] = STATE(2377), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2377), - [sym_char_literal] = STATE(2377), - [sym_template_function] = STATE(2377), - [sym_conditional_expression] = STATE(2377), - [sym_equality_expression] = STATE(2377), - [sym_relational_expression] = STATE(2377), - [sym_delete_expression] = STATE(2377), - [sym_sizeof_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym_lambda_expression] = STATE(2377), - [sym_concatenated_string] = STATE(2377), - [sym_string_literal] = STATE(450), + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2377), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2377), - [sym_math_expression] = STATE(2377), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4744), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4746), - [sym_null] = ACTIONS(4746), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4744), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), - }, - [1305] = { - [sym_enumerator] = STATE(2379), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(4748), - }, - [1306] = { - [aux_sym_enumerator_list_repeat1] = STATE(2381), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4750), - [anon_sym_RBRACE] = ACTIONS(4748), - }, - [1307] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(122), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2826), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(123), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1400), + [sym_raw_string_literal] = ACTIONS(2828), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), [anon_sym_DASH_DASH] = ACTIONS(232), - [sym_null] = ACTIONS(2828), + [sym_null] = ACTIONS(2830), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2826), + [sym_number_literal] = ACTIONS(2828), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(2828), + [sym_false] = ACTIONS(2830), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(2828), + [sym_nullptr] = ACTIONS(2830), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -62549,1885 +62438,1885 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_LBRACE] = ACTIONS(175), }, - [1308] = { - [sym_template_type] = STATE(239), + [1303] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(4752), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(4748), }, - [1309] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2925), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1304] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2927), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1310] = { - [anon_sym_RPAREN] = ACTIONS(4754), + [1305] = { + [anon_sym_RPAREN] = ACTIONS(4750), [sym_comment] = ACTIONS(3), }, - [1311] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2385), - [sym_logical_expression] = STATE(2385), - [sym_bitwise_expression] = STATE(2385), - [sym_cast_expression] = STATE(2385), - [sym_new_expression] = STATE(2385), - [sym_field_expression] = STATE(2385), - [sym_compound_literal_expression] = STATE(2385), - [sym_char_literal] = STATE(2385), - [sym_template_function] = STATE(2385), - [sym_conditional_expression] = STATE(2385), - [sym_equality_expression] = STATE(2385), - [sym_relational_expression] = STATE(2385), - [sym_delete_expression] = STATE(2385), - [sym_sizeof_expression] = STATE(2385), - [sym_parenthesized_expression] = STATE(2385), - [sym_lambda_expression] = STATE(2385), - [sym_concatenated_string] = STATE(2385), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2385), - [sym_assignment_expression] = STATE(2385), - [sym_pointer_expression] = STATE(2385), - [sym_shift_expression] = STATE(2385), - [sym_math_expression] = STATE(2385), - [sym_call_expression] = STATE(2385), - [sym_lambda_capture_specifier] = STATE(196), + [1306] = { + [sym_template_function] = STATE(2370), + [sym__expression] = STATE(2370), + [sym_logical_expression] = STATE(2370), + [sym_bitwise_expression] = STATE(2370), + [sym_cast_expression] = STATE(2370), + [sym_delete_expression] = STATE(2370), + [sym_field_expression] = STATE(2370), + [sym_compound_literal_expression] = STATE(2370), + [sym_lambda_expression] = STATE(2370), + [sym_char_literal] = STATE(2370), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2370), + [sym_equality_expression] = STATE(2370), + [sym_relational_expression] = STATE(2370), + [sym_sizeof_expression] = STATE(2370), + [sym_subscript_expression] = STATE(2370), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(4756), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(4758), - [sym_null] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(4756), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(4760), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(4758), + [sym_parenthesized_expression] = STATE(2370), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2370), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2370), + [sym_pointer_expression] = STATE(2370), + [sym_shift_expression] = STATE(2370), + [sym_math_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_new_expression] = STATE(2370), + [sym_raw_string_literal] = ACTIONS(4752), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(4754), + [sym_null] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(4752), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(4754), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(4758), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [sym_nullptr] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [1312] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(2386), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [1307] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2371), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1313] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_RBRACK_RBRACK] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [1308] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_RBRACK_RBRACK] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [1314] = { - [sym_union_specifier] = STATE(1502), - [sym_macro_type_specifier] = STATE(1502), - [sym_class_specifier] = STATE(1502), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1502), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1502), - [aux_sym_sized_type_specifier_repeat1] = STATE(1315), - [sym_struct_specifier] = STATE(1502), - [sym_enum_specifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1502), - [anon_sym_unsigned] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2607), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2607), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(2607), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2967), + [1309] = { + [sym_union_specifier] = STATE(1497), + [sym_macro_type_specifier] = STATE(1497), + [sym_class_specifier] = STATE(1497), + [aux_sym_sized_type_specifier_repeat1] = STATE(1310), + [sym_sized_type_specifier] = STATE(1497), + [sym__type_specifier] = STATE(1497), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1497), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1497), + [sym_struct_specifier] = STATE(1497), + [anon_sym_unsigned] = ACTIONS(2609), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(2609), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2609), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2969), }, - [1315] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2388), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(4768), - [anon_sym_long] = ACTIONS(4768), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_RBRACK_RBRACK] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(4768), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2991), - [anon_sym_unsigned] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), + [1310] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(4764), + [anon_sym_long] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_RBRACK_RBRACK] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(2986), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(4764), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), }, - [1316] = { - [sym_initializer_list] = STATE(1522), - [sym_new_declarator] = STATE(1521), - [sym_argument_list] = STATE(1522), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [1311] = { + [sym_new_declarator] = STATE(1514), + [sym_argument_list] = STATE(1515), + [sym_initializer_list] = STATE(1515), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [1317] = { - [sym_union_specifier] = STATE(2390), - [sym_macro_type_specifier] = STATE(2390), - [sym_class_specifier] = STATE(2390), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(2390), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(2390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1315), - [sym_struct_specifier] = STATE(2390), - [sym_enum_specifier] = STATE(2390), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(2390), - [anon_sym_unsigned] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(4772), - [anon_sym_signed] = ACTIONS(2607), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2607), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(2607), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(4772), + [1312] = { + [sym_union_specifier] = STATE(2375), + [sym_macro_type_specifier] = STATE(2375), + [sym_class_specifier] = STATE(2375), + [aux_sym_sized_type_specifier_repeat1] = STATE(1310), + [sym_sized_type_specifier] = STATE(2375), + [sym__type_specifier] = STATE(2375), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(2375), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(2375), + [sym_struct_specifier] = STATE(2375), + [anon_sym_unsigned] = ACTIONS(2609), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(4768), + [anon_sym_signed] = ACTIONS(2609), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2609), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(4768), }, - [1318] = { - [sym_template_type] = STATE(239), + [1313] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(4774), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(4770), }, - [1319] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_RBRACK_RBRACK] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [1314] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_RBRACK_RBRACK] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [1320] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2392), - [sym_logical_expression] = STATE(2392), - [sym_bitwise_expression] = STATE(2392), - [sym_cast_expression] = STATE(2392), - [sym_new_expression] = STATE(2392), - [sym_field_expression] = STATE(2392), - [sym_compound_literal_expression] = STATE(2392), - [sym_char_literal] = STATE(2392), - [sym_template_function] = STATE(2392), - [sym_conditional_expression] = STATE(2392), - [sym_equality_expression] = STATE(2392), - [sym_relational_expression] = STATE(2392), - [sym_delete_expression] = STATE(2392), - [sym_sizeof_expression] = STATE(2392), - [sym_parenthesized_expression] = STATE(2392), - [sym_lambda_expression] = STATE(2392), - [sym_concatenated_string] = STATE(2392), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2392), - [sym_assignment_expression] = STATE(2392), - [sym_pointer_expression] = STATE(2392), - [sym_shift_expression] = STATE(2392), - [sym_math_expression] = STATE(2392), - [sym_call_expression] = STATE(2392), - [sym_lambda_capture_specifier] = STATE(196), + [1315] = { + [sym_template_function] = STATE(2377), + [sym__expression] = STATE(2377), + [sym_logical_expression] = STATE(2377), + [sym_bitwise_expression] = STATE(2377), + [sym_cast_expression] = STATE(2377), + [sym_delete_expression] = STATE(2377), + [sym_field_expression] = STATE(2377), + [sym_compound_literal_expression] = STATE(2377), + [sym_lambda_expression] = STATE(2377), + [sym_char_literal] = STATE(2377), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2377), + [sym_equality_expression] = STATE(2377), + [sym_relational_expression] = STATE(2377), + [sym_sizeof_expression] = STATE(2377), + [sym_subscript_expression] = STATE(2377), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2377), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2377), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2377), + [sym_pointer_expression] = STATE(2377), + [sym_shift_expression] = STATE(2377), + [sym_math_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_new_expression] = STATE(2377), + [sym_raw_string_literal] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(4790), + [sym_null] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(4788), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(222), + [sym_nullptr] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_TILDE] = ACTIONS(896), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), + }, + [1316] = { + [sym_template_function] = STATE(2378), + [sym__expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_char_literal] = STATE(2378), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_new_expression] = STATE(2378), [sym_raw_string_literal] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), [sym_true] = ACTIONS(4794), [sym_null] = ACTIONS(4794), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4792), - [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_COLON_COLON] = ACTIONS(890), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(892), [sym_false] = ACTIONS(4794), [anon_sym_AMP] = ACTIONS(222), [sym_nullptr] = ACTIONS(4794), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [1321] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2393), - [sym_logical_expression] = STATE(2393), - [sym_bitwise_expression] = STATE(2393), - [sym_cast_expression] = STATE(2393), - [sym_new_expression] = STATE(2393), - [sym_field_expression] = STATE(2393), - [sym_compound_literal_expression] = STATE(2393), - [sym_char_literal] = STATE(2393), - [sym_template_function] = STATE(2393), - [sym_conditional_expression] = STATE(2393), - [sym_equality_expression] = STATE(2393), - [sym_relational_expression] = STATE(2393), - [sym_delete_expression] = STATE(2393), - [sym_sizeof_expression] = STATE(2393), - [sym_parenthesized_expression] = STATE(2393), - [sym_lambda_expression] = STATE(2393), - [sym_concatenated_string] = STATE(2393), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2393), - [sym_assignment_expression] = STATE(2393), - [sym_pointer_expression] = STATE(2393), - [sym_shift_expression] = STATE(2393), - [sym_math_expression] = STATE(2393), - [sym_call_expression] = STATE(2393), - [sym_lambda_capture_specifier] = STATE(196), + [1317] = { + [sym_template_function] = STATE(2379), + [sym__expression] = STATE(2379), + [sym_logical_expression] = STATE(2379), + [sym_bitwise_expression] = STATE(2379), + [sym_cast_expression] = STATE(2379), + [sym_delete_expression] = STATE(2379), + [sym_field_expression] = STATE(2379), + [sym_compound_literal_expression] = STATE(2379), + [sym_lambda_expression] = STATE(2379), + [sym_char_literal] = STATE(2379), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2379), + [sym_equality_expression] = STATE(2379), + [sym_relational_expression] = STATE(2379), + [sym_sizeof_expression] = STATE(2379), + [sym_subscript_expression] = STATE(2379), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2379), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2379), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2379), + [sym_pointer_expression] = STATE(2379), + [sym_shift_expression] = STATE(2379), + [sym_math_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_new_expression] = STATE(2379), [sym_raw_string_literal] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), [sym_true] = ACTIONS(4798), [sym_null] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4796), - [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_COLON_COLON] = ACTIONS(890), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(892), [sym_false] = ACTIONS(4798), [anon_sym_AMP] = ACTIONS(222), [sym_nullptr] = ACTIONS(4798), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [1322] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2394), - [sym_logical_expression] = STATE(2394), - [sym_bitwise_expression] = STATE(2394), - [sym_cast_expression] = STATE(2394), - [sym_new_expression] = STATE(2394), - [sym_field_expression] = STATE(2394), - [sym_compound_literal_expression] = STATE(2394), - [sym_char_literal] = STATE(2394), - [sym_template_function] = STATE(2394), - [sym_conditional_expression] = STATE(2394), - [sym_equality_expression] = STATE(2394), - [sym_relational_expression] = STATE(2394), - [sym_delete_expression] = STATE(2394), - [sym_sizeof_expression] = STATE(2394), - [sym_parenthesized_expression] = STATE(2394), - [sym_lambda_expression] = STATE(2394), - [sym_concatenated_string] = STATE(2394), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2394), - [sym_assignment_expression] = STATE(2394), - [sym_pointer_expression] = STATE(2394), - [sym_shift_expression] = STATE(2394), - [sym_math_expression] = STATE(2394), - [sym_call_expression] = STATE(2394), - [sym_lambda_capture_specifier] = STATE(196), + [1318] = { + [sym_template_function] = STATE(2380), + [sym__expression] = STATE(2380), + [sym_logical_expression] = STATE(2380), + [sym_bitwise_expression] = STATE(2380), + [sym_cast_expression] = STATE(2380), + [sym_delete_expression] = STATE(2380), + [sym_field_expression] = STATE(2380), + [sym_compound_literal_expression] = STATE(2380), + [sym_lambda_expression] = STATE(2380), + [sym_char_literal] = STATE(2380), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2380), + [sym_equality_expression] = STATE(2380), + [sym_relational_expression] = STATE(2380), + [sym_sizeof_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2380), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2380), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2380), + [sym_pointer_expression] = STATE(2380), + [sym_shift_expression] = STATE(2380), + [sym_math_expression] = STATE(2380), + [sym_call_expression] = STATE(2380), + [sym_new_expression] = STATE(2380), [sym_raw_string_literal] = ACTIONS(4800), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), [sym_true] = ACTIONS(4802), [sym_null] = ACTIONS(4802), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4800), - [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_COLON_COLON] = ACTIONS(890), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(892), [sym_false] = ACTIONS(4802), [anon_sym_AMP] = ACTIONS(222), [sym_nullptr] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [1323] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2395), - [sym_logical_expression] = STATE(2395), - [sym_bitwise_expression] = STATE(2395), - [sym_cast_expression] = STATE(2395), - [sym_new_expression] = STATE(2395), - [sym_field_expression] = STATE(2395), - [sym_compound_literal_expression] = STATE(2395), - [sym_char_literal] = STATE(2395), - [sym_template_function] = STATE(2395), - [sym_conditional_expression] = STATE(2395), - [sym_equality_expression] = STATE(2395), - [sym_relational_expression] = STATE(2395), - [sym_delete_expression] = STATE(2395), - [sym_sizeof_expression] = STATE(2395), - [sym_parenthesized_expression] = STATE(2395), - [sym_lambda_expression] = STATE(2395), - [sym_concatenated_string] = STATE(2395), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2395), - [sym_assignment_expression] = STATE(2395), - [sym_pointer_expression] = STATE(2395), - [sym_shift_expression] = STATE(2395), - [sym_math_expression] = STATE(2395), - [sym_call_expression] = STATE(2395), - [sym_lambda_capture_specifier] = STATE(196), + [1319] = { + [sym_template_function] = STATE(2381), + [sym__expression] = STATE(2381), + [sym_logical_expression] = STATE(2381), + [sym_bitwise_expression] = STATE(2381), + [sym_cast_expression] = STATE(2381), + [sym_delete_expression] = STATE(2381), + [sym_field_expression] = STATE(2381), + [sym_compound_literal_expression] = STATE(2381), + [sym_lambda_expression] = STATE(2381), + [sym_char_literal] = STATE(2381), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2381), + [sym_equality_expression] = STATE(2381), + [sym_relational_expression] = STATE(2381), + [sym_sizeof_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2381), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2381), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2381), + [sym_pointer_expression] = STATE(2381), + [sym_shift_expression] = STATE(2381), + [sym_math_expression] = STATE(2381), + [sym_call_expression] = STATE(2381), + [sym_new_expression] = STATE(2381), [sym_raw_string_literal] = ACTIONS(4804), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), [sym_true] = ACTIONS(4806), [sym_null] = ACTIONS(4806), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4804), - [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_COLON_COLON] = ACTIONS(890), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(892), [sym_false] = ACTIONS(4806), [anon_sym_AMP] = ACTIONS(222), [sym_nullptr] = ACTIONS(4806), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [1324] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2396), - [sym_logical_expression] = STATE(2396), - [sym_bitwise_expression] = STATE(2396), - [sym_cast_expression] = STATE(2396), - [sym_new_expression] = STATE(2396), - [sym_field_expression] = STATE(2396), - [sym_compound_literal_expression] = STATE(2396), - [sym_char_literal] = STATE(2396), - [sym_template_function] = STATE(2396), - [sym_conditional_expression] = STATE(2396), - [sym_equality_expression] = STATE(2396), - [sym_relational_expression] = STATE(2396), - [sym_delete_expression] = STATE(2396), - [sym_sizeof_expression] = STATE(2396), - [sym_parenthesized_expression] = STATE(2396), - [sym_lambda_expression] = STATE(2396), - [sym_concatenated_string] = STATE(2396), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(2396), - [sym_pointer_expression] = STATE(2396), - [sym_shift_expression] = STATE(2396), - [sym_math_expression] = STATE(2396), - [sym_call_expression] = STATE(2396), - [sym_lambda_capture_specifier] = STATE(196), + [1320] = { + [sym_template_function] = STATE(1541), + [sym__expression] = STATE(1541), + [sym_logical_expression] = STATE(1541), + [sym_bitwise_expression] = STATE(1541), + [sym_cast_expression] = STATE(1541), + [sym_delete_expression] = STATE(1541), + [sym_field_expression] = STATE(1541), + [sym_compound_literal_expression] = STATE(1541), + [sym_lambda_expression] = STATE(1541), + [sym_char_literal] = STATE(1541), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1541), + [sym_equality_expression] = STATE(1541), + [sym_relational_expression] = STATE(1541), + [sym_sizeof_expression] = STATE(1541), + [sym_subscript_expression] = STATE(1541), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1541), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(1541), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1541), + [sym_pointer_expression] = STATE(1541), + [sym_shift_expression] = STATE(1541), + [sym_math_expression] = STATE(1541), + [sym_call_expression] = STATE(1541), + [sym_new_expression] = STATE(1541), + [sym_raw_string_literal] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(222), + [sym_nullptr] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_TILDE] = ACTIONS(896), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), + }, + [1321] = { + [sym_template_function] = STATE(2382), + [sym__expression] = STATE(2382), + [sym_logical_expression] = STATE(2382), + [sym_bitwise_expression] = STATE(2382), + [sym_cast_expression] = STATE(2382), + [sym_delete_expression] = STATE(2382), + [sym_field_expression] = STATE(2382), + [sym_compound_literal_expression] = STATE(2382), + [sym_lambda_expression] = STATE(2382), + [sym_char_literal] = STATE(2382), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2382), + [sym_equality_expression] = STATE(2382), + [sym_relational_expression] = STATE(2382), + [sym_sizeof_expression] = STATE(2382), + [sym_subscript_expression] = STATE(2382), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2382), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2382), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2382), + [sym_pointer_expression] = STATE(2382), + [sym_shift_expression] = STATE(2382), + [sym_math_expression] = STATE(2382), + [sym_call_expression] = STATE(2382), + [sym_new_expression] = STATE(2382), [sym_raw_string_literal] = ACTIONS(4808), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), [sym_true] = ACTIONS(4810), [sym_null] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4808), - [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_COLON_COLON] = ACTIONS(890), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(892), [sym_false] = ACTIONS(4810), [anon_sym_AMP] = ACTIONS(222), [sym_nullptr] = ACTIONS(4810), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), - }, - [1325] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1548), - [sym_logical_expression] = STATE(1548), - [sym_bitwise_expression] = STATE(1548), - [sym_cast_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_field_expression] = STATE(1548), - [sym_compound_literal_expression] = STATE(1548), - [sym_char_literal] = STATE(1548), - [sym_template_function] = STATE(1548), - [sym_conditional_expression] = STATE(1548), - [sym_equality_expression] = STATE(1548), - [sym_relational_expression] = STATE(1548), - [sym_delete_expression] = STATE(1548), - [sym_sizeof_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_lambda_expression] = STATE(1548), - [sym_concatenated_string] = STATE(1548), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1548), - [sym_assignment_expression] = STATE(1548), - [sym_pointer_expression] = STATE(1548), - [sym_shift_expression] = STATE(1548), - [sym_math_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(3079), - [sym_null] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [1326] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2397), - [sym_logical_expression] = STATE(2397), - [sym_bitwise_expression] = STATE(2397), - [sym_cast_expression] = STATE(2397), - [sym_new_expression] = STATE(2397), - [sym_field_expression] = STATE(2397), - [sym_compound_literal_expression] = STATE(2397), - [sym_char_literal] = STATE(2397), - [sym_template_function] = STATE(2397), - [sym_conditional_expression] = STATE(2397), - [sym_equality_expression] = STATE(2397), - [sym_relational_expression] = STATE(2397), - [sym_delete_expression] = STATE(2397), - [sym_sizeof_expression] = STATE(2397), - [sym_parenthesized_expression] = STATE(2397), - [sym_lambda_expression] = STATE(2397), - [sym_concatenated_string] = STATE(2397), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(2397), - [sym_pointer_expression] = STATE(2397), - [sym_shift_expression] = STATE(2397), - [sym_math_expression] = STATE(2397), - [sym_call_expression] = STATE(2397), - [sym_lambda_capture_specifier] = STATE(196), + [1322] = { + [sym_template_function] = STATE(2383), + [sym__expression] = STATE(2383), + [sym_logical_expression] = STATE(2383), + [sym_bitwise_expression] = STATE(2383), + [sym_cast_expression] = STATE(2383), + [sym_delete_expression] = STATE(2383), + [sym_field_expression] = STATE(2383), + [sym_compound_literal_expression] = STATE(2383), + [sym_lambda_expression] = STATE(2383), + [sym_char_literal] = STATE(2383), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2383), + [sym_equality_expression] = STATE(2383), + [sym_relational_expression] = STATE(2383), + [sym_sizeof_expression] = STATE(2383), + [sym_subscript_expression] = STATE(2383), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2383), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2383), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2383), + [sym_pointer_expression] = STATE(2383), + [sym_shift_expression] = STATE(2383), + [sym_math_expression] = STATE(2383), + [sym_call_expression] = STATE(2383), + [sym_new_expression] = STATE(2383), [sym_raw_string_literal] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), [sym_true] = ACTIONS(4814), [sym_null] = ACTIONS(4814), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4812), - [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_COLON_COLON] = ACTIONS(890), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(892), [sym_false] = ACTIONS(4814), [anon_sym_AMP] = ACTIONS(222), [sym_nullptr] = ACTIONS(4814), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [1327] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2398), - [sym_logical_expression] = STATE(2398), - [sym_bitwise_expression] = STATE(2398), - [sym_cast_expression] = STATE(2398), - [sym_new_expression] = STATE(2398), - [sym_field_expression] = STATE(2398), - [sym_compound_literal_expression] = STATE(2398), - [sym_char_literal] = STATE(2398), - [sym_template_function] = STATE(2398), - [sym_conditional_expression] = STATE(2398), - [sym_equality_expression] = STATE(2398), - [sym_relational_expression] = STATE(2398), - [sym_delete_expression] = STATE(2398), - [sym_sizeof_expression] = STATE(2398), - [sym_parenthesized_expression] = STATE(2398), - [sym_lambda_expression] = STATE(2398), - [sym_concatenated_string] = STATE(2398), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2398), - [sym_pointer_expression] = STATE(2398), - [sym_shift_expression] = STATE(2398), - [sym_math_expression] = STATE(2398), - [sym_call_expression] = STATE(2398), - [sym_lambda_capture_specifier] = STATE(196), + [1323] = { + [sym_template_function] = STATE(2384), + [sym__expression] = STATE(2384), + [sym_logical_expression] = STATE(2384), + [sym_bitwise_expression] = STATE(2384), + [sym_cast_expression] = STATE(2384), + [sym_delete_expression] = STATE(2384), + [sym_field_expression] = STATE(2384), + [sym_compound_literal_expression] = STATE(2384), + [sym_lambda_expression] = STATE(2384), + [sym_char_literal] = STATE(2384), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2384), + [sym_equality_expression] = STATE(2384), + [sym_relational_expression] = STATE(2384), + [sym_sizeof_expression] = STATE(2384), + [sym_subscript_expression] = STATE(2384), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2384), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2384), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2384), + [sym_pointer_expression] = STATE(2384), + [sym_shift_expression] = STATE(2384), + [sym_math_expression] = STATE(2384), + [sym_call_expression] = STATE(2384), + [sym_new_expression] = STATE(2384), [sym_raw_string_literal] = ACTIONS(4816), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), [sym_true] = ACTIONS(4818), [sym_null] = ACTIONS(4818), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4816), - [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_COLON_COLON] = ACTIONS(890), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(892), [sym_false] = ACTIONS(4818), [anon_sym_AMP] = ACTIONS(222), [sym_nullptr] = ACTIONS(4818), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [1328] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2399), - [sym_logical_expression] = STATE(2399), - [sym_bitwise_expression] = STATE(2399), - [sym_cast_expression] = STATE(2399), - [sym_new_expression] = STATE(2399), - [sym_field_expression] = STATE(2399), - [sym_compound_literal_expression] = STATE(2399), - [sym_char_literal] = STATE(2399), - [sym_template_function] = STATE(2399), - [sym_conditional_expression] = STATE(2399), - [sym_equality_expression] = STATE(2399), - [sym_relational_expression] = STATE(2399), - [sym_delete_expression] = STATE(2399), - [sym_sizeof_expression] = STATE(2399), - [sym_parenthesized_expression] = STATE(2399), - [sym_lambda_expression] = STATE(2399), - [sym_concatenated_string] = STATE(2399), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2399), - [sym_assignment_expression] = STATE(2399), - [sym_pointer_expression] = STATE(2399), - [sym_shift_expression] = STATE(2399), - [sym_math_expression] = STATE(2399), - [sym_call_expression] = STATE(2399), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), + [1324] = { + [sym_template_function] = STATE(2385), + [sym__expression] = STATE(2385), + [sym_logical_expression] = STATE(2385), + [sym_bitwise_expression] = STATE(2385), + [sym_cast_expression] = STATE(2385), + [sym_delete_expression] = STATE(2385), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2385), + [sym_lambda_expression] = STATE(2385), + [sym_char_literal] = STATE(2385), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2385), + [sym_equality_expression] = STATE(2385), + [sym_relational_expression] = STATE(2385), + [sym_sizeof_expression] = STATE(2385), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2385), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2385), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2385), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2385), + [sym_math_expression] = STATE(2385), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2385), [sym_raw_string_literal] = ACTIONS(4820), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), [sym_true] = ACTIONS(4822), [sym_null] = ACTIONS(4822), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(4820), - [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_COLON_COLON] = ACTIONS(1861), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(1863), [sym_false] = ACTIONS(4822), - [anon_sym_AMP] = ACTIONS(222), + [anon_sym_AMP] = ACTIONS(1865), [sym_nullptr] = ACTIONS(4822), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1329] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2400), - [sym_logical_expression] = STATE(2400), - [sym_bitwise_expression] = STATE(2400), - [sym_cast_expression] = STATE(2400), - [sym_new_expression] = STATE(2400), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2400), - [sym_char_literal] = STATE(2400), - [sym_template_function] = STATE(2400), - [sym_conditional_expression] = STATE(2400), - [sym_equality_expression] = STATE(2400), - [sym_relational_expression] = STATE(2400), - [sym_delete_expression] = STATE(2400), - [sym_sizeof_expression] = STATE(2400), - [sym_parenthesized_expression] = STATE(2400), - [sym_lambda_expression] = STATE(2400), - [sym_concatenated_string] = STATE(2400), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2400), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2400), - [sym_math_expression] = STATE(2400), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [1325] = { + [sym_template_function] = STATE(2386), + [sym__expression] = STATE(2386), + [sym_logical_expression] = STATE(2386), + [sym_bitwise_expression] = STATE(2386), + [sym_cast_expression] = STATE(2386), + [sym_delete_expression] = STATE(2386), + [sym_field_expression] = STATE(2386), + [sym_compound_literal_expression] = STATE(2386), + [sym_lambda_expression] = STATE(2386), + [sym_char_literal] = STATE(2386), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2386), + [sym_equality_expression] = STATE(2386), + [sym_relational_expression] = STATE(2386), + [sym_sizeof_expression] = STATE(2386), + [sym_subscript_expression] = STATE(2386), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2386), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(2386), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2386), + [sym_pointer_expression] = STATE(2386), + [sym_shift_expression] = STATE(2386), + [sym_math_expression] = STATE(2386), + [sym_call_expression] = STATE(2386), + [sym_new_expression] = STATE(2386), [sym_raw_string_literal] = ACTIONS(4824), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), [sym_true] = ACTIONS(4826), [sym_null] = ACTIONS(4826), - [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4824), - [anon_sym_COLON_COLON] = ACTIONS(1791), + [anon_sym_COLON_COLON] = ACTIONS(890), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(892), [sym_false] = ACTIONS(4826), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(4826), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, - [1330] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2401), - [sym_logical_expression] = STATE(2401), - [sym_bitwise_expression] = STATE(2401), - [sym_cast_expression] = STATE(2401), - [sym_new_expression] = STATE(2401), - [sym_field_expression] = STATE(2401), - [sym_compound_literal_expression] = STATE(2401), - [sym_char_literal] = STATE(2401), - [sym_template_function] = STATE(2401), - [sym_conditional_expression] = STATE(2401), - [sym_equality_expression] = STATE(2401), - [sym_relational_expression] = STATE(2401), - [sym_delete_expression] = STATE(2401), - [sym_sizeof_expression] = STATE(2401), - [sym_parenthesized_expression] = STATE(2401), - [sym_lambda_expression] = STATE(2401), - [sym_concatenated_string] = STATE(2401), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2401), - [sym_assignment_expression] = STATE(2401), - [sym_pointer_expression] = STATE(2401), - [sym_shift_expression] = STATE(2401), - [sym_math_expression] = STATE(2401), - [sym_call_expression] = STATE(2401), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(4828), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(4830), - [sym_null] = ACTIONS(4830), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(4828), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(4830), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(4830), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [sym_nullptr] = ACTIONS(4826), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [1331] = { - [sym_string_literal] = STATE(2402), - [aux_sym_concatenated_string_repeat1] = STATE(2402), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [1326] = { + [sym_string_literal] = STATE(2387), + [aux_sym_concatenated_string_repeat1] = STATE(2387), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [1332] = { - [anon_sym_RPAREN] = ACTIONS(4832), + [1327] = { + [anon_sym_RPAREN] = ACTIONS(4828), [sym_comment] = ACTIONS(3), }, - [1333] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1328] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1334] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1334), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(4834), - [anon_sym_long] = ACTIONS(4834), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(4834), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(4834), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), + [1329] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1329), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(4830), + [anon_sym_long] = ACTIONS(4830), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(4830), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(4830), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), }, - [1335] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2404), - [sym_logical_expression] = STATE(2404), - [sym_bitwise_expression] = STATE(2404), - [sym_cast_expression] = STATE(2404), - [sym_new_expression] = STATE(2404), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2404), - [sym_char_literal] = STATE(2404), - [sym_template_function] = STATE(2404), - [sym_conditional_expression] = STATE(2404), - [sym_equality_expression] = STATE(2404), - [sym_relational_expression] = STATE(2404), - [sym_delete_expression] = STATE(2404), - [sym_sizeof_expression] = STATE(2404), - [sym_parenthesized_expression] = STATE(2404), - [sym_lambda_expression] = STATE(2404), - [sym_concatenated_string] = STATE(2404), - [sym_string_literal] = STATE(967), + [1330] = { + [sym_template_function] = STATE(2389), + [sym__expression] = STATE(2389), + [sym_logical_expression] = STATE(2389), + [sym_bitwise_expression] = STATE(2389), + [sym_cast_expression] = STATE(2389), + [sym_delete_expression] = STATE(2389), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2389), + [sym_lambda_expression] = STATE(2389), + [sym_char_literal] = STATE(2389), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2404), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2404), - [sym_math_expression] = STATE(2404), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(2389), + [sym_equality_expression] = STATE(2389), + [sym_relational_expression] = STATE(2389), + [sym_sizeof_expression] = STATE(2389), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(4839), - [sym_null] = ACTIONS(4839), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(4839), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(2389), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2389), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2389), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2389), + [sym_math_expression] = STATE(2389), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2389), + [sym_raw_string_literal] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(4835), + [sym_null] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(4833), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1336] = { - [sym_initializer_list] = STATE(1570), - [sym_new_declarator] = STATE(1571), - [sym_argument_list] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [1331] = { + [sym_new_declarator] = STATE(1566), + [sym_argument_list] = STATE(1565), + [sym_initializer_list] = STATE(1565), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_GT_GT] = ACTIONS(3140), }, - [1337] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2405), - [sym_logical_expression] = STATE(2405), - [sym_bitwise_expression] = STATE(2405), - [sym_cast_expression] = STATE(2405), - [sym_new_expression] = STATE(2405), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(2405), - [sym_char_literal] = STATE(2405), - [sym_template_function] = STATE(2405), - [sym_conditional_expression] = STATE(2405), - [sym_equality_expression] = STATE(2405), - [sym_relational_expression] = STATE(2405), - [sym_delete_expression] = STATE(2405), - [sym_sizeof_expression] = STATE(2405), - [sym_parenthesized_expression] = STATE(2405), - [sym_lambda_expression] = STATE(2405), - [sym_concatenated_string] = STATE(2405), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(2405), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(2405), - [sym_math_expression] = STATE(2405), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(4841), + [1332] = { + [sym_template_function] = STATE(2390), + [sym__expression] = STATE(2390), + [sym_logical_expression] = STATE(2390), + [sym_bitwise_expression] = STATE(2390), + [sym_cast_expression] = STATE(2390), + [sym_delete_expression] = STATE(2390), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(2390), + [sym_lambda_expression] = STATE(2390), + [sym_char_literal] = STATE(2390), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2390), + [sym_equality_expression] = STATE(2390), + [sym_relational_expression] = STATE(2390), + [sym_sizeof_expression] = STATE(2390), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2390), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(2390), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2390), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(2390), + [sym_math_expression] = STATE(2390), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(2390), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(4837), [anon_sym_DASH] = ACTIONS(212), - [sym_true] = ACTIONS(4843), + [sym_true] = ACTIONS(4839), [anon_sym_DASH_DASH] = ACTIONS(232), - [sym_null] = ACTIONS(4843), + [sym_null] = ACTIONS(4839), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4841), + [sym_number_literal] = ACTIONS(4837), [anon_sym_COLON_COLON] = ACTIONS(218), - [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1343), [anon_sym_BANG] = ACTIONS(220), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(4843), - [sym_nullptr] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(4839), + [sym_nullptr] = ACTIONS(4839), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), - [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1343), [anon_sym_TILDE] = ACTIONS(226), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1343), [sym_identifier] = ACTIONS(228), [anon_sym_new] = ACTIONS(230), [anon_sym_PLUS_PLUS] = ACTIONS(232), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(234), }, + [1333] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3901), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1334] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1335] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1336] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(4841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_PERCENT] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1337] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3915), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, [1338] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3755), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3936), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1339] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3759), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3940), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1340] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3763), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3901), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1341] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(4845), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_PERCENT] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3901), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1342] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3769), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1343] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3790), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3915), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1344] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3794), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(4845), + [sym_auto] = ACTIONS(4845), + [anon_sym_signed] = ACTIONS(4845), + [anon_sym_mutable] = ACTIONS(4845), + [anon_sym_long] = ACTIONS(4845), + [anon_sym_register] = ACTIONS(4845), + [anon_sym__Atomic] = ACTIONS(4845), + [anon_sym_const] = ACTIONS(4845), + [anon_sym_extern] = ACTIONS(4845), + [anon_sym_COLON_COLON] = ACTIONS(4847), + [anon_sym_virtual] = ACTIONS(4845), + [anon_sym_enum] = ACTIONS(4845), + [anon_sym_class] = ACTIONS(4845), + [anon_sym_constexpr] = ACTIONS(4845), + [sym_primitive_type] = ACTIONS(4845), + [anon_sym_unsigned] = ACTIONS(4845), + [anon_sym_static] = ACTIONS(4845), + [anon_sym_volatile] = ACTIONS(4845), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4847), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(4845), + [anon_sym_typename] = ACTIONS(4845), + [anon_sym_explicit] = ACTIONS(4845), + [anon_sym_short] = ACTIONS(4845), + [anon_sym_inline] = ACTIONS(4845), + [sym_identifier] = ACTIONS(4845), + [anon_sym_restrict] = ACTIONS(4845), }, [1345] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3755), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [aux_sym_for_statement_repeat1] = STATE(1345), + [anon_sym_COMMA] = ACTIONS(4849), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4841), + [sym_comment] = ACTIONS(3), }, [1346] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3755), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_string_literal] = STATE(1346), + [aux_sym_concatenated_string_repeat1] = STATE(1346), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3890), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, [1347] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(4852), + [sym_raw_string_literal] = ACTIONS(4854), + [sym_true] = ACTIONS(4852), + [anon_sym_mutable] = ACTIONS(4852), + [sym_null] = ACTIONS(4852), + [anon_sym_break] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_sizeof] = ACTIONS(4852), + [anon_sym_volatile] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_typedef] = ACTIONS(4852), + [anon_sym_switch] = ACTIONS(4852), + [anon_sym_explicit] = ACTIONS(4852), + [sym_identifier] = ACTIONS(4852), + [anon_sym_delete] = ACTIONS(4852), + [anon_sym_continue] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4852), + [anon_sym__Atomic] = ACTIONS(4852), + [sym_number_literal] = ACTIONS(4854), + [anon_sym_extern] = ACTIONS(4852), + [anon_sym_enum] = ACTIONS(4852), + [anon_sym_constexpr] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4852), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4854), + [anon_sym_namespace] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4852), + [anon_sym_SQUOTE] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4854), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_LPAREN2] = ACTIONS(4854), + [anon_sym_struct] = ACTIONS(4852), + [sym_auto] = ACTIONS(4852), + [anon_sym_signed] = ACTIONS(4852), + [anon_sym_long] = ACTIONS(4852), + [anon_sym_COLON_COLON] = ACTIONS(4854), + [anon_sym_using] = ACTIONS(4852), + [sym_preproc_directive] = ACTIONS(4852), + [aux_sym_preproc_if_token1] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4852), + [anon_sym_static] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_union] = ACTIONS(4852), + [anon_sym_typename] = ACTIONS(4852), + [anon_sym_short] = ACTIONS(4852), + [anon_sym_new] = ACTIONS(4852), + [anon_sym_goto] = ACTIONS(4852), + [sym_operator_name] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4852), + [anon_sym_for] = ACTIONS(4852), + [aux_sym_preproc_include_token1] = ACTIONS(4852), + [anon_sym_register] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4854), + [anon_sym_const] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_class] = ACTIONS(4852), + [anon_sym_if] = ACTIONS(4852), + [sym_primitive_type] = ACTIONS(4852), + [sym_false] = ACTIONS(4852), + [sym_nullptr] = ACTIONS(4852), + [anon_sym_do] = ACTIONS(4852), + [anon_sym_template] = ACTIONS(4852), + [anon_sym_return] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4854), + [ts_builtin_sym_end] = ACTIONS(4854), + [aux_sym_preproc_def_token1] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4854), + [anon_sym_restrict] = ACTIONS(4852), }, [1348] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3769), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [1349] = { - [anon_sym_struct] = ACTIONS(4849), - [sym_auto] = ACTIONS(4849), - [anon_sym_signed] = ACTIONS(4849), - [anon_sym_mutable] = ACTIONS(4849), - [anon_sym_long] = ACTIONS(4849), - [anon_sym_register] = ACTIONS(4849), - [anon_sym__Atomic] = ACTIONS(4849), - [anon_sym_const] = ACTIONS(4849), - [anon_sym_extern] = ACTIONS(4849), - [anon_sym_COLON_COLON] = ACTIONS(4851), - [anon_sym_virtual] = ACTIONS(4849), - [anon_sym_enum] = ACTIONS(4849), - [anon_sym_class] = ACTIONS(4849), - [anon_sym_constexpr] = ACTIONS(4849), - [sym_primitive_type] = ACTIONS(4849), - [anon_sym_unsigned] = ACTIONS(4849), - [anon_sym_static] = ACTIONS(4849), - [anon_sym_volatile] = ACTIONS(4849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4851), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(4849), - [anon_sym_typename] = ACTIONS(4849), - [anon_sym_explicit] = ACTIONS(4849), - [anon_sym_short] = ACTIONS(4849), - [anon_sym_inline] = ACTIONS(4849), - [sym_identifier] = ACTIONS(4849), - [anon_sym_restrict] = ACTIONS(4849), - }, - [1350] = { - [aux_sym_for_statement_repeat1] = STATE(1350), - [anon_sym_COMMA] = ACTIONS(4853), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4845), - [sym_comment] = ACTIONS(3), - }, - [1351] = { - [sym_string_literal] = STATE(1351), - [aux_sym_concatenated_string_repeat1] = STATE(1351), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - }, - [1352] = { - [anon_sym_DASH] = ACTIONS(4856), - [sym_raw_string_literal] = ACTIONS(4858), - [sym_true] = ACTIONS(4856), - [anon_sym_mutable] = ACTIONS(4856), - [sym_null] = ACTIONS(4856), - [anon_sym_break] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(4858), - [anon_sym_sizeof] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_typedef] = ACTIONS(4856), - [anon_sym_switch] = ACTIONS(4856), - [anon_sym_explicit] = ACTIONS(4856), - [sym_identifier] = ACTIONS(4856), - [anon_sym_delete] = ACTIONS(4856), - [anon_sym_continue] = ACTIONS(4856), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4856), - [anon_sym__Atomic] = ACTIONS(4856), - [sym_number_literal] = ACTIONS(4858), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym_enum] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4856), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4856), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4858), - [anon_sym_namespace] = ACTIONS(4856), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4856), - [anon_sym_SQUOTE] = ACTIONS(4858), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_struct] = ACTIONS(4856), - [sym_auto] = ACTIONS(4856), - [anon_sym_signed] = ACTIONS(4856), - [anon_sym_long] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_using] = ACTIONS(4856), - [sym_preproc_directive] = ACTIONS(4856), - [aux_sym_preproc_if_token1] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_STAR] = ACTIONS(4858), - [anon_sym_union] = ACTIONS(4856), - [anon_sym_typename] = ACTIONS(4856), - [anon_sym_short] = ACTIONS(4856), - [anon_sym_new] = ACTIONS(4856), - [anon_sym_goto] = ACTIONS(4856), - [sym_operator_name] = ACTIONS(4858), - [anon_sym_while] = ACTIONS(4856), - [anon_sym_try] = ACTIONS(4856), - [anon_sym_for] = ACTIONS(4856), - [aux_sym_preproc_include_token1] = ACTIONS(4856), - [anon_sym_register] = ACTIONS(4856), - [anon_sym_DQUOTE] = ACTIONS(4858), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_LBRACK] = ACTIONS(4856), - [anon_sym_class] = ACTIONS(4856), - [anon_sym_if] = ACTIONS(4856), - [sym_primitive_type] = ACTIONS(4856), - [sym_false] = ACTIONS(4856), - [sym_nullptr] = ACTIONS(4856), - [anon_sym_do] = ACTIONS(4856), - [anon_sym_template] = ACTIONS(4856), - [anon_sym_return] = ACTIONS(4856), - [anon_sym_TILDE] = ACTIONS(4858), - [anon_sym_SEMI] = ACTIONS(4858), - [ts_builtin_sym_end] = ACTIONS(4858), - [aux_sym_preproc_def_token1] = ACTIONS(4856), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_restrict] = ACTIONS(4856), - }, - [1353] = { - [sym_template_argument_list] = STATE(377), [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -64435,7 +64324,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -64445,7 +64334,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(960), + [anon_sym_COLON] = ACTIONS(964), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -64471,2675 +64360,2678 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1354] = { - [aux_sym_try_statement_repeat1] = STATE(2407), - [sym_catch_clause] = STATE(2407), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [sym_operator_name] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [1349] = { + [sym_catch_clause] = STATE(2392), + [aux_sym_try_statement_repeat1] = STATE(2392), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [sym_preproc_directive] = ACTIONS(3154), + [aux_sym_preproc_if_token1] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [sym_operator_name] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [aux_sym_preproc_include_token1] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_template] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, - [1355] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2409), - [sym_logical_expression] = STATE(2409), - [sym_bitwise_expression] = STATE(2409), - [sym_cast_expression] = STATE(2409), - [sym_new_expression] = STATE(2409), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(2409), - [sym_char_literal] = STATE(2409), - [sym_template_function] = STATE(2409), - [sym_conditional_expression] = STATE(2409), - [sym_equality_expression] = STATE(2409), - [sym_relational_expression] = STATE(2409), - [sym_delete_expression] = STATE(2409), - [sym_sizeof_expression] = STATE(2409), - [sym_parenthesized_expression] = STATE(2409), - [sym_lambda_expression] = STATE(2409), - [sym_concatenated_string] = STATE(2409), - [sym_string_literal] = STATE(300), + [1350] = { + [sym_template_function] = STATE(2394), + [sym__expression] = STATE(2394), + [sym_logical_expression] = STATE(2394), + [sym_bitwise_expression] = STATE(2394), + [sym_cast_expression] = STATE(2394), + [sym_delete_expression] = STATE(2394), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(2394), + [sym_lambda_expression] = STATE(2394), + [sym_char_literal] = STATE(2394), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(2409), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(2409), - [sym_math_expression] = STATE(2409), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(4862), - [sym_null] = ACTIONS(4862), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(4862), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(4864), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_conditional_expression] = STATE(2394), + [sym_equality_expression] = STATE(2394), + [sym_relational_expression] = STATE(2394), + [sym_sizeof_expression] = STATE(2394), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2394), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(2394), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2394), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(2394), + [sym_math_expression] = STATE(2394), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(2394), + [sym_raw_string_literal] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(4858), + [sym_null] = ACTIONS(4858), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(4858), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(4860), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [1356] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1351] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(4862), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1357] = { - [anon_sym_COLON] = ACTIONS(4868), + [1352] = { + [anon_sym_COLON] = ACTIONS(4864), [sym_comment] = ACTIONS(3), }, - [1358] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(4870), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1353] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(4866), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1359] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2413), - [sym_logical_expression] = STATE(2413), - [sym_bitwise_expression] = STATE(2413), - [sym_cast_expression] = STATE(2413), - [sym_new_expression] = STATE(2413), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2413), - [sym_char_literal] = STATE(2413), - [sym_template_function] = STATE(2413), - [sym_conditional_expression] = STATE(2413), - [sym_equality_expression] = STATE(2413), - [sym_relational_expression] = STATE(2413), - [sym_delete_expression] = STATE(2413), - [sym_sizeof_expression] = STATE(2413), - [sym_parenthesized_expression] = STATE(2413), - [sym_lambda_expression] = STATE(2413), - [sym_concatenated_string] = STATE(2413), - [sym_string_literal] = STATE(828), + [1354] = { + [sym_template_function] = STATE(2398), + [sym__expression] = STATE(2398), + [sym_logical_expression] = STATE(2398), + [sym_bitwise_expression] = STATE(2398), + [sym_cast_expression] = STATE(2398), + [sym_delete_expression] = STATE(2398), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2398), + [sym_lambda_expression] = STATE(2398), + [sym_char_literal] = STATE(2398), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2413), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2413), - [sym_math_expression] = STATE(2413), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), + [sym_conditional_expression] = STATE(2398), + [sym_equality_expression] = STATE(2398), + [sym_relational_expression] = STATE(2398), + [sym_sizeof_expression] = STATE(2398), + [sym_subscript_expression] = STATE(831), [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(4874), - [sym_null] = ACTIONS(4874), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4872), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(4874), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(4874), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_parenthesized_expression] = STATE(2398), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2398), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2398), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2398), + [sym_math_expression] = STATE(2398), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2398), + [sym_raw_string_literal] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(4870), + [sym_null] = ACTIONS(4870), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4868), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(4870), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(4870), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [1360] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2826), + [1355] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(154), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1400), + [sym_raw_string_literal] = ACTIONS(2828), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(2830), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(2828), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(2828), + [sym_false] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(2830), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), [anon_sym_LBRACE] = ACTIONS(175), }, - [1361] = { - [sym_template_type] = STATE(239), + [1356] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(4876), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(4872), }, - [1362] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1357] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1363] = { - [anon_sym_RPAREN] = ACTIONS(4878), + [1358] = { + [anon_sym_RPAREN] = ACTIONS(4874), [sym_comment] = ACTIONS(3), }, - [1364] = { - [sym_union_specifier] = STATE(1502), - [sym_macro_type_specifier] = STATE(1502), - [sym_class_specifier] = STATE(1502), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1502), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1502), - [aux_sym_sized_type_specifier_repeat1] = STATE(1365), - [sym_struct_specifier] = STATE(1502), - [sym_enum_specifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1502), - [anon_sym_unsigned] = ACTIONS(2736), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2967), + [1359] = { + [sym_union_specifier] = STATE(1497), + [sym_macro_type_specifier] = STATE(1497), + [sym_class_specifier] = STATE(1497), + [aux_sym_sized_type_specifier_repeat1] = STATE(1360), + [sym_sized_type_specifier] = STATE(1497), + [sym__type_specifier] = STATE(1497), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1497), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1497), + [sym_struct_specifier] = STATE(1497), + [anon_sym_unsigned] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(2738), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2738), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(2740), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(2738), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2969), }, - [1365] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2416), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(4880), - [anon_sym_long] = ACTIONS(4880), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(4880), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2991), - [anon_sym_unsigned] = ACTIONS(4880), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), + [1360] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2401), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(4876), + [anon_sym_long] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(2986), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), }, - [1366] = { - [sym_initializer_list] = STATE(1522), - [sym_new_declarator] = STATE(1521), - [sym_argument_list] = STATE(1522), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [1361] = { + [sym_new_declarator] = STATE(1514), + [sym_argument_list] = STATE(1515), + [sym_initializer_list] = STATE(1515), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [1367] = { - [sym_union_specifier] = STATE(2418), - [sym_macro_type_specifier] = STATE(2418), - [sym_class_specifier] = STATE(2418), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(2418), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(2418), - [aux_sym_sized_type_specifier_repeat1] = STATE(1365), - [sym_struct_specifier] = STATE(2418), - [sym_enum_specifier] = STATE(2418), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(2418), - [anon_sym_unsigned] = ACTIONS(2736), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(4884), - [anon_sym_signed] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(4884), + [1362] = { + [sym_union_specifier] = STATE(2403), + [sym_macro_type_specifier] = STATE(2403), + [sym_class_specifier] = STATE(2403), + [aux_sym_sized_type_specifier_repeat1] = STATE(1360), + [sym_sized_type_specifier] = STATE(2403), + [sym__type_specifier] = STATE(2403), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(2403), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(2403), + [sym_struct_specifier] = STATE(2403), + [anon_sym_unsigned] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(4880), + [anon_sym_signed] = ACTIONS(2738), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2738), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(2740), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(2738), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(4880), }, - [1368] = { - [sym_template_type] = STATE(239), + [1363] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(4886), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(4882), }, - [1369] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [1364] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [1370] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2421), - [sym_logical_expression] = STATE(2421), - [sym_bitwise_expression] = STATE(2421), - [sym_cast_expression] = STATE(2421), - [sym_new_expression] = STATE(2421), - [sym_field_expression] = STATE(2421), - [sym_compound_literal_expression] = STATE(2421), - [sym_char_literal] = STATE(2421), - [sym_template_function] = STATE(2421), - [sym_conditional_expression] = STATE(2421), - [sym_equality_expression] = STATE(2421), - [sym_relational_expression] = STATE(2421), - [sym_delete_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2421), - [sym_parenthesized_expression] = STATE(2421), - [sym_lambda_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2421), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2421), - [sym_assignment_expression] = STATE(2421), - [sym_pointer_expression] = STATE(2421), - [sym_shift_expression] = STATE(2421), - [sym_math_expression] = STATE(2421), - [sym_call_expression] = STATE(2421), - [sym_lambda_capture_specifier] = STATE(196), + [1365] = { + [sym_template_function] = STATE(2406), + [sym__expression] = STATE(2406), + [sym_logical_expression] = STATE(2406), + [sym_bitwise_expression] = STATE(2406), + [sym_cast_expression] = STATE(2406), + [sym_delete_expression] = STATE(2406), + [sym_field_expression] = STATE(2406), + [sym_compound_literal_expression] = STATE(2406), + [sym_lambda_expression] = STATE(2406), + [sym_char_literal] = STATE(2406), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2406), + [sym_equality_expression] = STATE(2406), + [sym_relational_expression] = STATE(2406), + [sym_sizeof_expression] = STATE(2406), + [sym_subscript_expression] = STATE(2406), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(4910), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(4912), - [sym_null] = ACTIONS(4912), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(4910), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(4912), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(4912), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [sym_parenthesized_expression] = STATE(2406), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2406), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2406), + [sym_pointer_expression] = STATE(2406), + [sym_shift_expression] = STATE(2406), + [sym_math_expression] = STATE(2406), + [sym_call_expression] = STATE(2406), + [sym_new_expression] = STATE(2406), + [sym_raw_string_literal] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(4908), + [sym_null] = ACTIONS(4908), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1371] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(2422), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [1366] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2407), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1372] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [1367] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [1373] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2424), - [sym_logical_expression] = STATE(2424), - [sym_bitwise_expression] = STATE(2424), - [sym_cast_expression] = STATE(2424), - [sym_new_expression] = STATE(2424), - [sym_field_expression] = STATE(2424), - [sym_compound_literal_expression] = STATE(2424), - [sym_char_literal] = STATE(2424), - [sym_template_function] = STATE(2424), - [sym_conditional_expression] = STATE(2424), - [sym_equality_expression] = STATE(2424), - [sym_relational_expression] = STATE(2424), - [sym_delete_expression] = STATE(2424), - [sym_sizeof_expression] = STATE(2424), - [sym_parenthesized_expression] = STATE(2424), - [sym_lambda_expression] = STATE(2424), - [sym_concatenated_string] = STATE(2424), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2424), - [sym_assignment_expression] = STATE(2424), - [sym_pointer_expression] = STATE(2424), - [sym_shift_expression] = STATE(2424), - [sym_math_expression] = STATE(2424), - [sym_call_expression] = STATE(2424), - [sym_lambda_capture_specifier] = STATE(196), + [1368] = { + [sym_template_function] = STATE(2409), + [sym__expression] = STATE(2409), + [sym_logical_expression] = STATE(2409), + [sym_bitwise_expression] = STATE(2409), + [sym_cast_expression] = STATE(2409), + [sym_delete_expression] = STATE(2409), + [sym_field_expression] = STATE(2409), + [sym_compound_literal_expression] = STATE(2409), + [sym_lambda_expression] = STATE(2409), + [sym_char_literal] = STATE(2409), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2409), + [sym_equality_expression] = STATE(2409), + [sym_relational_expression] = STATE(2409), + [sym_sizeof_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2409), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2409), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2409), + [sym_pointer_expression] = STATE(2409), + [sym_shift_expression] = STATE(2409), + [sym_math_expression] = STATE(2409), + [sym_call_expression] = STATE(2409), + [sym_new_expression] = STATE(2409), + [sym_raw_string_literal] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(4914), + [sym_null] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(4914), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), + }, + [1369] = { + [sym_template_function] = STATE(2410), + [sym__expression] = STATE(2410), + [sym_logical_expression] = STATE(2410), + [sym_bitwise_expression] = STATE(2410), + [sym_cast_expression] = STATE(2410), + [sym_delete_expression] = STATE(2410), + [sym_field_expression] = STATE(2410), + [sym_compound_literal_expression] = STATE(2410), + [sym_lambda_expression] = STATE(2410), + [sym_char_literal] = STATE(2410), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2410), + [sym_equality_expression] = STATE(2410), + [sym_relational_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2410), + [sym_subscript_expression] = STATE(2410), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2410), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2410), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2410), + [sym_pointer_expression] = STATE(2410), + [sym_shift_expression] = STATE(2410), + [sym_math_expression] = STATE(2410), + [sym_call_expression] = STATE(2410), + [sym_new_expression] = STATE(2410), [sym_raw_string_literal] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), [sym_true] = ACTIONS(4918), [sym_null] = ACTIONS(4918), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4916), - [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(988), [sym_false] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(4918), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1374] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2425), - [sym_logical_expression] = STATE(2425), - [sym_bitwise_expression] = STATE(2425), - [sym_cast_expression] = STATE(2425), - [sym_new_expression] = STATE(2425), - [sym_field_expression] = STATE(2425), - [sym_compound_literal_expression] = STATE(2425), - [sym_char_literal] = STATE(2425), - [sym_template_function] = STATE(2425), - [sym_conditional_expression] = STATE(2425), - [sym_equality_expression] = STATE(2425), - [sym_relational_expression] = STATE(2425), - [sym_delete_expression] = STATE(2425), - [sym_sizeof_expression] = STATE(2425), - [sym_parenthesized_expression] = STATE(2425), - [sym_lambda_expression] = STATE(2425), - [sym_concatenated_string] = STATE(2425), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2425), - [sym_assignment_expression] = STATE(2425), - [sym_pointer_expression] = STATE(2425), - [sym_shift_expression] = STATE(2425), - [sym_math_expression] = STATE(2425), - [sym_call_expression] = STATE(2425), - [sym_lambda_capture_specifier] = STATE(196), + [1370] = { + [sym_template_function] = STATE(2411), + [sym__expression] = STATE(2411), + [sym_logical_expression] = STATE(2411), + [sym_bitwise_expression] = STATE(2411), + [sym_cast_expression] = STATE(2411), + [sym_delete_expression] = STATE(2411), + [sym_field_expression] = STATE(2411), + [sym_compound_literal_expression] = STATE(2411), + [sym_lambda_expression] = STATE(2411), + [sym_char_literal] = STATE(2411), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2411), + [sym_equality_expression] = STATE(2411), + [sym_relational_expression] = STATE(2411), + [sym_sizeof_expression] = STATE(2411), + [sym_subscript_expression] = STATE(2411), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2411), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2411), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2411), + [sym_pointer_expression] = STATE(2411), + [sym_shift_expression] = STATE(2411), + [sym_math_expression] = STATE(2411), + [sym_call_expression] = STATE(2411), + [sym_new_expression] = STATE(2411), [sym_raw_string_literal] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), [sym_true] = ACTIONS(4922), [sym_null] = ACTIONS(4922), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4920), - [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(988), [sym_false] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1375] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2426), - [sym_logical_expression] = STATE(2426), - [sym_bitwise_expression] = STATE(2426), - [sym_cast_expression] = STATE(2426), - [sym_new_expression] = STATE(2426), - [sym_field_expression] = STATE(2426), - [sym_compound_literal_expression] = STATE(2426), - [sym_char_literal] = STATE(2426), - [sym_template_function] = STATE(2426), - [sym_conditional_expression] = STATE(2426), - [sym_equality_expression] = STATE(2426), - [sym_relational_expression] = STATE(2426), - [sym_delete_expression] = STATE(2426), - [sym_sizeof_expression] = STATE(2426), - [sym_parenthesized_expression] = STATE(2426), - [sym_lambda_expression] = STATE(2426), - [sym_concatenated_string] = STATE(2426), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2426), - [sym_assignment_expression] = STATE(2426), - [sym_pointer_expression] = STATE(2426), - [sym_shift_expression] = STATE(2426), - [sym_math_expression] = STATE(2426), - [sym_call_expression] = STATE(2426), - [sym_lambda_capture_specifier] = STATE(196), + [1371] = { + [sym_template_function] = STATE(2412), + [sym__expression] = STATE(2412), + [sym_logical_expression] = STATE(2412), + [sym_bitwise_expression] = STATE(2412), + [sym_cast_expression] = STATE(2412), + [sym_delete_expression] = STATE(2412), + [sym_field_expression] = STATE(2412), + [sym_compound_literal_expression] = STATE(2412), + [sym_lambda_expression] = STATE(2412), + [sym_char_literal] = STATE(2412), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2412), + [sym_equality_expression] = STATE(2412), + [sym_relational_expression] = STATE(2412), + [sym_sizeof_expression] = STATE(2412), + [sym_subscript_expression] = STATE(2412), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2412), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2412), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2412), + [sym_pointer_expression] = STATE(2412), + [sym_shift_expression] = STATE(2412), + [sym_math_expression] = STATE(2412), + [sym_call_expression] = STATE(2412), + [sym_new_expression] = STATE(2412), [sym_raw_string_literal] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), [sym_true] = ACTIONS(4926), [sym_null] = ACTIONS(4926), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(988), [sym_false] = ACTIONS(4926), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1376] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2427), - [sym_logical_expression] = STATE(2427), - [sym_bitwise_expression] = STATE(2427), - [sym_cast_expression] = STATE(2427), - [sym_new_expression] = STATE(2427), - [sym_field_expression] = STATE(2427), - [sym_compound_literal_expression] = STATE(2427), - [sym_char_literal] = STATE(2427), - [sym_template_function] = STATE(2427), - [sym_conditional_expression] = STATE(2427), - [sym_equality_expression] = STATE(2427), - [sym_relational_expression] = STATE(2427), - [sym_delete_expression] = STATE(2427), - [sym_sizeof_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_lambda_expression] = STATE(2427), - [sym_concatenated_string] = STATE(2427), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(2427), - [sym_pointer_expression] = STATE(2427), - [sym_shift_expression] = STATE(2427), - [sym_math_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_lambda_capture_specifier] = STATE(196), + [1372] = { + [sym_template_function] = STATE(2413), + [sym__expression] = STATE(2413), + [sym_logical_expression] = STATE(2413), + [sym_bitwise_expression] = STATE(2413), + [sym_cast_expression] = STATE(2413), + [sym_delete_expression] = STATE(2413), + [sym_field_expression] = STATE(2413), + [sym_compound_literal_expression] = STATE(2413), + [sym_lambda_expression] = STATE(2413), + [sym_char_literal] = STATE(2413), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2413), + [sym_equality_expression] = STATE(2413), + [sym_relational_expression] = STATE(2413), + [sym_sizeof_expression] = STATE(2413), + [sym_subscript_expression] = STATE(2413), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2413), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2413), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2413), + [sym_pointer_expression] = STATE(2413), + [sym_shift_expression] = STATE(2413), + [sym_math_expression] = STATE(2413), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2413), [sym_raw_string_literal] = ACTIONS(4928), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), [sym_true] = ACTIONS(4930), [sym_null] = ACTIONS(4930), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4928), - [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(988), [sym_false] = ACTIONS(4930), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1377] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2428), - [sym_logical_expression] = STATE(2428), - [sym_bitwise_expression] = STATE(2428), - [sym_cast_expression] = STATE(2428), - [sym_new_expression] = STATE(2428), - [sym_field_expression] = STATE(2428), - [sym_compound_literal_expression] = STATE(2428), - [sym_char_literal] = STATE(2428), - [sym_template_function] = STATE(2428), - [sym_conditional_expression] = STATE(2428), - [sym_equality_expression] = STATE(2428), - [sym_relational_expression] = STATE(2428), - [sym_delete_expression] = STATE(2428), - [sym_sizeof_expression] = STATE(2428), - [sym_parenthesized_expression] = STATE(2428), - [sym_lambda_expression] = STATE(2428), - [sym_concatenated_string] = STATE(2428), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2428), - [sym_assignment_expression] = STATE(2428), - [sym_pointer_expression] = STATE(2428), - [sym_shift_expression] = STATE(2428), - [sym_math_expression] = STATE(2428), - [sym_call_expression] = STATE(2428), - [sym_lambda_capture_specifier] = STATE(196), + [1373] = { + [sym_template_function] = STATE(1541), + [sym__expression] = STATE(1541), + [sym_logical_expression] = STATE(1541), + [sym_bitwise_expression] = STATE(1541), + [sym_cast_expression] = STATE(1541), + [sym_delete_expression] = STATE(1541), + [sym_field_expression] = STATE(1541), + [sym_compound_literal_expression] = STATE(1541), + [sym_lambda_expression] = STATE(1541), + [sym_char_literal] = STATE(1541), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1541), + [sym_equality_expression] = STATE(1541), + [sym_relational_expression] = STATE(1541), + [sym_sizeof_expression] = STATE(1541), + [sym_subscript_expression] = STATE(1541), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(1541), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(1541), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1541), + [sym_pointer_expression] = STATE(1541), + [sym_shift_expression] = STATE(1541), + [sym_math_expression] = STATE(1541), + [sym_call_expression] = STATE(1541), + [sym_new_expression] = STATE(1541), + [sym_raw_string_literal] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), + }, + [1374] = { + [sym_template_function] = STATE(2414), + [sym__expression] = STATE(2414), + [sym_logical_expression] = STATE(2414), + [sym_bitwise_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_delete_expression] = STATE(2414), + [sym_field_expression] = STATE(2414), + [sym_compound_literal_expression] = STATE(2414), + [sym_lambda_expression] = STATE(2414), + [sym_char_literal] = STATE(2414), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2414), + [sym_equality_expression] = STATE(2414), + [sym_relational_expression] = STATE(2414), + [sym_sizeof_expression] = STATE(2414), + [sym_subscript_expression] = STATE(2414), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2414), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2414), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2414), + [sym_pointer_expression] = STATE(2414), + [sym_shift_expression] = STATE(2414), + [sym_math_expression] = STATE(2414), + [sym_call_expression] = STATE(2414), + [sym_new_expression] = STATE(2414), [sym_raw_string_literal] = ACTIONS(4932), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), [sym_true] = ACTIONS(4934), [sym_null] = ACTIONS(4934), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4932), - [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(988), [sym_false] = ACTIONS(4934), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(4934), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), - }, - [1378] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1548), - [sym_logical_expression] = STATE(1548), - [sym_bitwise_expression] = STATE(1548), - [sym_cast_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_field_expression] = STATE(1548), - [sym_compound_literal_expression] = STATE(1548), - [sym_char_literal] = STATE(1548), - [sym_template_function] = STATE(1548), - [sym_conditional_expression] = STATE(1548), - [sym_equality_expression] = STATE(1548), - [sym_relational_expression] = STATE(1548), - [sym_delete_expression] = STATE(1548), - [sym_sizeof_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_lambda_expression] = STATE(1548), - [sym_concatenated_string] = STATE(1548), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1548), - [sym_assignment_expression] = STATE(1548), - [sym_pointer_expression] = STATE(1548), - [sym_shift_expression] = STATE(1548), - [sym_math_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(3079), - [sym_null] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1379] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2429), - [sym_logical_expression] = STATE(2429), - [sym_bitwise_expression] = STATE(2429), - [sym_cast_expression] = STATE(2429), - [sym_new_expression] = STATE(2429), - [sym_field_expression] = STATE(2429), - [sym_compound_literal_expression] = STATE(2429), - [sym_char_literal] = STATE(2429), - [sym_template_function] = STATE(2429), - [sym_conditional_expression] = STATE(2429), - [sym_equality_expression] = STATE(2429), - [sym_relational_expression] = STATE(2429), - [sym_delete_expression] = STATE(2429), - [sym_sizeof_expression] = STATE(2429), - [sym_parenthesized_expression] = STATE(2429), - [sym_lambda_expression] = STATE(2429), - [sym_concatenated_string] = STATE(2429), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2429), - [sym_assignment_expression] = STATE(2429), - [sym_pointer_expression] = STATE(2429), - [sym_shift_expression] = STATE(2429), - [sym_math_expression] = STATE(2429), - [sym_call_expression] = STATE(2429), - [sym_lambda_capture_specifier] = STATE(196), + [1375] = { + [sym_template_function] = STATE(2415), + [sym__expression] = STATE(2415), + [sym_logical_expression] = STATE(2415), + [sym_bitwise_expression] = STATE(2415), + [sym_cast_expression] = STATE(2415), + [sym_delete_expression] = STATE(2415), + [sym_field_expression] = STATE(2415), + [sym_compound_literal_expression] = STATE(2415), + [sym_lambda_expression] = STATE(2415), + [sym_char_literal] = STATE(2415), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2415), + [sym_equality_expression] = STATE(2415), + [sym_relational_expression] = STATE(2415), + [sym_sizeof_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2415), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2415), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2415), + [sym_pointer_expression] = STATE(2415), + [sym_shift_expression] = STATE(2415), + [sym_math_expression] = STATE(2415), + [sym_call_expression] = STATE(2415), + [sym_new_expression] = STATE(2415), [sym_raw_string_literal] = ACTIONS(4936), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), [sym_true] = ACTIONS(4938), [sym_null] = ACTIONS(4938), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4936), - [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(988), [sym_false] = ACTIONS(4938), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(4938), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1380] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2430), - [sym_logical_expression] = STATE(2430), - [sym_bitwise_expression] = STATE(2430), - [sym_cast_expression] = STATE(2430), - [sym_new_expression] = STATE(2430), - [sym_field_expression] = STATE(2430), - [sym_compound_literal_expression] = STATE(2430), - [sym_char_literal] = STATE(2430), - [sym_template_function] = STATE(2430), - [sym_conditional_expression] = STATE(2430), - [sym_equality_expression] = STATE(2430), - [sym_relational_expression] = STATE(2430), - [sym_delete_expression] = STATE(2430), - [sym_sizeof_expression] = STATE(2430), - [sym_parenthesized_expression] = STATE(2430), - [sym_lambda_expression] = STATE(2430), - [sym_concatenated_string] = STATE(2430), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2430), - [sym_assignment_expression] = STATE(2430), - [sym_pointer_expression] = STATE(2430), - [sym_shift_expression] = STATE(2430), - [sym_math_expression] = STATE(2430), - [sym_call_expression] = STATE(2430), - [sym_lambda_capture_specifier] = STATE(196), + [1376] = { + [sym_template_function] = STATE(2416), + [sym__expression] = STATE(2416), + [sym_logical_expression] = STATE(2416), + [sym_bitwise_expression] = STATE(2416), + [sym_cast_expression] = STATE(2416), + [sym_delete_expression] = STATE(2416), + [sym_field_expression] = STATE(2416), + [sym_compound_literal_expression] = STATE(2416), + [sym_lambda_expression] = STATE(2416), + [sym_char_literal] = STATE(2416), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2416), + [sym_equality_expression] = STATE(2416), + [sym_relational_expression] = STATE(2416), + [sym_sizeof_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2416), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2416), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2416), + [sym_pointer_expression] = STATE(2416), + [sym_shift_expression] = STATE(2416), + [sym_math_expression] = STATE(2416), + [sym_call_expression] = STATE(2416), + [sym_new_expression] = STATE(2416), [sym_raw_string_literal] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), [sym_true] = ACTIONS(4942), [sym_null] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(988), [sym_false] = ACTIONS(4942), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1381] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2431), - [sym_logical_expression] = STATE(2431), - [sym_bitwise_expression] = STATE(2431), - [sym_cast_expression] = STATE(2431), - [sym_new_expression] = STATE(2431), - [sym_field_expression] = STATE(2431), - [sym_compound_literal_expression] = STATE(2431), - [sym_char_literal] = STATE(2431), - [sym_template_function] = STATE(2431), - [sym_conditional_expression] = STATE(2431), - [sym_equality_expression] = STATE(2431), - [sym_relational_expression] = STATE(2431), - [sym_delete_expression] = STATE(2431), - [sym_sizeof_expression] = STATE(2431), - [sym_parenthesized_expression] = STATE(2431), - [sym_lambda_expression] = STATE(2431), - [sym_concatenated_string] = STATE(2431), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2431), - [sym_assignment_expression] = STATE(2431), - [sym_pointer_expression] = STATE(2431), - [sym_shift_expression] = STATE(2431), - [sym_math_expression] = STATE(2431), - [sym_call_expression] = STATE(2431), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), + [1377] = { + [sym_template_function] = STATE(2417), + [sym__expression] = STATE(2417), + [sym_logical_expression] = STATE(2417), + [sym_bitwise_expression] = STATE(2417), + [sym_cast_expression] = STATE(2417), + [sym_delete_expression] = STATE(2417), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2417), + [sym_lambda_expression] = STATE(2417), + [sym_char_literal] = STATE(2417), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2417), + [sym_equality_expression] = STATE(2417), + [sym_relational_expression] = STATE(2417), + [sym_sizeof_expression] = STATE(2417), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2417), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2417), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2417), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2417), + [sym_math_expression] = STATE(2417), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2417), [sym_raw_string_literal] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), [sym_true] = ACTIONS(4946), [sym_null] = ACTIONS(4946), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(1861), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(1863), [sym_false] = ACTIONS(4946), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(1865), [sym_nullptr] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1382] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2432), - [sym_logical_expression] = STATE(2432), - [sym_bitwise_expression] = STATE(2432), - [sym_cast_expression] = STATE(2432), - [sym_new_expression] = STATE(2432), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2432), - [sym_char_literal] = STATE(2432), - [sym_template_function] = STATE(2432), - [sym_conditional_expression] = STATE(2432), - [sym_equality_expression] = STATE(2432), - [sym_relational_expression] = STATE(2432), - [sym_delete_expression] = STATE(2432), - [sym_sizeof_expression] = STATE(2432), - [sym_parenthesized_expression] = STATE(2432), - [sym_lambda_expression] = STATE(2432), - [sym_concatenated_string] = STATE(2432), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2432), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2432), - [sym_math_expression] = STATE(2432), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [1378] = { + [sym_template_function] = STATE(2418), + [sym__expression] = STATE(2418), + [sym_logical_expression] = STATE(2418), + [sym_bitwise_expression] = STATE(2418), + [sym_cast_expression] = STATE(2418), + [sym_delete_expression] = STATE(2418), + [sym_field_expression] = STATE(2418), + [sym_compound_literal_expression] = STATE(2418), + [sym_lambda_expression] = STATE(2418), + [sym_char_literal] = STATE(2418), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2418), + [sym_equality_expression] = STATE(2418), + [sym_relational_expression] = STATE(2418), + [sym_sizeof_expression] = STATE(2418), + [sym_subscript_expression] = STATE(2418), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2418), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(2418), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2418), + [sym_pointer_expression] = STATE(2418), + [sym_shift_expression] = STATE(2418), + [sym_math_expression] = STATE(2418), + [sym_call_expression] = STATE(2418), + [sym_new_expression] = STATE(2418), [sym_raw_string_literal] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), [sym_true] = ACTIONS(4950), [sym_null] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(4948), - [anon_sym_COLON_COLON] = ACTIONS(1791), + [anon_sym_COLON_COLON] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(988), [sym_false] = ACTIONS(4950), - [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(636), [sym_nullptr] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, - [1383] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2433), - [sym_logical_expression] = STATE(2433), - [sym_bitwise_expression] = STATE(2433), - [sym_cast_expression] = STATE(2433), - [sym_new_expression] = STATE(2433), - [sym_field_expression] = STATE(2433), - [sym_compound_literal_expression] = STATE(2433), - [sym_char_literal] = STATE(2433), - [sym_template_function] = STATE(2433), - [sym_conditional_expression] = STATE(2433), - [sym_equality_expression] = STATE(2433), - [sym_relational_expression] = STATE(2433), - [sym_delete_expression] = STATE(2433), - [sym_sizeof_expression] = STATE(2433), - [sym_parenthesized_expression] = STATE(2433), - [sym_lambda_expression] = STATE(2433), - [sym_concatenated_string] = STATE(2433), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2433), - [sym_assignment_expression] = STATE(2433), - [sym_pointer_expression] = STATE(2433), - [sym_shift_expression] = STATE(2433), - [sym_math_expression] = STATE(2433), - [sym_call_expression] = STATE(2433), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(4954), - [sym_null] = ACTIONS(4954), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(4952), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(4954), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(4954), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [1384] = { - [sym_string_literal] = STATE(2434), - [aux_sym_concatenated_string_repeat1] = STATE(2434), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_RPAREN] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [1379] = { + [sym_string_literal] = STATE(2419), + [aux_sym_concatenated_string_repeat1] = STATE(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [1385] = { - [anon_sym_RPAREN] = ACTIONS(4956), + [1380] = { + [anon_sym_RPAREN] = ACTIONS(4952), [sym_comment] = ACTIONS(3), }, - [1386] = { - [sym_parameter_list] = STATE(582), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(589), + [1381] = { + [sym_parameter_list] = STATE(583), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(616), [sym_comment] = ACTIONS(3), }, - [1387] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1382] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1388] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1388), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(4960), - [anon_sym_long] = ACTIONS(4960), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(4960), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), + [1383] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1383), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(4956), + [anon_sym_long] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(4956), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), }, - [1389] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2436), - [sym_logical_expression] = STATE(2436), - [sym_bitwise_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_new_expression] = STATE(2436), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2436), - [sym_char_literal] = STATE(2436), - [sym_template_function] = STATE(2436), - [sym_conditional_expression] = STATE(2436), - [sym_equality_expression] = STATE(2436), - [sym_relational_expression] = STATE(2436), - [sym_delete_expression] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_lambda_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string_literal] = STATE(967), + [1384] = { + [sym_template_function] = STATE(2421), + [sym__expression] = STATE(2421), + [sym_logical_expression] = STATE(2421), + [sym_bitwise_expression] = STATE(2421), + [sym_cast_expression] = STATE(2421), + [sym_delete_expression] = STATE(2421), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2421), + [sym_lambda_expression] = STATE(2421), + [sym_char_literal] = STATE(2421), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2436), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2436), - [sym_math_expression] = STATE(2436), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(2421), + [sym_equality_expression] = STATE(2421), + [sym_relational_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2421), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(4965), - [sym_null] = ACTIONS(4965), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(4965), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(2421), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2421), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2421), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2421), + [sym_math_expression] = STATE(2421), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2421), + [sym_raw_string_literal] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(4961), + [sym_null] = ACTIONS(4961), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(4959), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(4961), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1390] = { - [sym_initializer_list] = STATE(1570), - [sym_new_declarator] = STATE(1571), - [sym_argument_list] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), + [1385] = { + [sym_new_declarator] = STATE(1566), + [sym_argument_list] = STATE(1565), + [sym_initializer_list] = STATE(1565), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_GT_GT] = ACTIONS(3140), }, - [1391] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2437), - [sym_logical_expression] = STATE(2437), - [sym_bitwise_expression] = STATE(2437), - [sym_cast_expression] = STATE(2437), - [sym_new_expression] = STATE(2437), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(2437), - [sym_char_literal] = STATE(2437), - [sym_template_function] = STATE(2437), - [sym_conditional_expression] = STATE(2437), - [sym_equality_expression] = STATE(2437), - [sym_relational_expression] = STATE(2437), - [sym_delete_expression] = STATE(2437), - [sym_sizeof_expression] = STATE(2437), - [sym_parenthesized_expression] = STATE(2437), - [sym_lambda_expression] = STATE(2437), - [sym_concatenated_string] = STATE(2437), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(2437), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(2437), - [sym_math_expression] = STATE(2437), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(4967), + [1386] = { + [sym_template_function] = STATE(2422), + [sym__expression] = STATE(2422), + [sym_logical_expression] = STATE(2422), + [sym_bitwise_expression] = STATE(2422), + [sym_cast_expression] = STATE(2422), + [sym_delete_expression] = STATE(2422), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(2422), + [sym_lambda_expression] = STATE(2422), + [sym_char_literal] = STATE(2422), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2422), + [sym_equality_expression] = STATE(2422), + [sym_relational_expression] = STATE(2422), + [sym_sizeof_expression] = STATE(2422), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2422), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(2422), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2422), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(2422), + [sym_math_expression] = STATE(2422), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(2422), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(4963), [anon_sym_DASH] = ACTIONS(266), - [sym_true] = ACTIONS(4969), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(4969), + [sym_true] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(4965), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4967), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(4963), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(1343), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(4969), - [sym_nullptr] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(4965), + [sym_nullptr] = ACTIONS(4965), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, + [1387] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1388] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1389] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1390] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1391] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, [1392] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1393] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_RPAREN] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_RPAREN] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1394] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_RPAREN] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1395] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(3767), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1396] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4967), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1397] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1398] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_RPAREN] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_union_specifier] = STATE(2426), + [sym_macro_type_specifier] = STATE(2426), + [sym_class_specifier] = STATE(2426), + [aux_sym_sized_type_specifier_repeat1] = STATE(2425), + [sym_sized_type_specifier] = STATE(2426), + [sym__type_specifier] = STATE(2426), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(2426), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(2426), + [sym_struct_specifier] = STATE(2426), + [anon_sym_unsigned] = ACTIONS(4969), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(4971), + [anon_sym_signed] = ACTIONS(4969), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(4969), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(4973), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(4969), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(4971), }, [1399] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_virtual_specifier] = STATE(2427), + [aux_sym_function_declarator_repeat1] = STATE(2427), + [sym_type_qualifier] = STATE(2427), + [sym_trailing_return_type] = STATE(2427), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(4975), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(4059), + [anon_sym_DASH_GT] = ACTIONS(2826), + [anon_sym_restrict] = ACTIONS(1070), }, [1400] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4979), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_RBRACE] = ACTIONS(4979), + [anon_sym_CARET] = ACTIONS(4979), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4979), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(4979), + [anon_sym_GT_GT] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1401] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_LPAREN2] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4981), + [anon_sym_COLON] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4981), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4981), + [anon_sym_SEMI] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_DASH_DASH] = ACTIONS(4981), }, [1402] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_string_literal] = STATE(1402), + [aux_sym_concatenated_string_repeat1] = STATE(1402), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3890), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, [1403] = { - [sym_union_specifier] = STATE(2441), - [sym_macro_type_specifier] = STATE(2441), - [sym_class_specifier] = STATE(2441), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2441), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(2441), - [aux_sym_sized_type_specifier_repeat1] = STATE(2440), - [sym_struct_specifier] = STATE(2441), - [sym_enum_specifier] = STATE(2441), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(2441), - [anon_sym_unsigned] = ACTIONS(4973), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(4975), - [anon_sym_signed] = ACTIONS(4973), + [sym_parameter_list] = STATE(1410), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4973), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(4977), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(4973), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(4975), }, [1404] = { - [sym_virtual_specifier] = STATE(2442), - [aux_sym_function_declarator_repeat1] = STATE(2442), - [sym_trailing_return_type] = STATE(2442), - [sym_type_qualifier] = STATE(2442), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(4979), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [sym_abstract_reference_declarator] = STATE(2428), + [aux_sym_type_definition_repeat1] = STATE(1406), + [sym_abstract_array_declarator] = STATE(2428), + [sym_parameter_list] = STATE(590), + [sym_abstract_function_declarator] = STATE(2428), + [sym_abstract_pointer_declarator] = STATE(2428), + [sym_type_qualifier] = STATE(1406), + [sym__abstract_declarator] = STATE(2428), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(2824), - [anon_sym_restrict] = ACTIONS(1062), }, [1405] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4983), + [sym_parameter_list] = STATE(1410), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_GT_GT] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(585), }, [1406] = { - [anon_sym_LPAREN2] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_COLON] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4985), + [aux_sym_type_definition_repeat1] = STATE(1406), + [sym_type_qualifier] = STATE(1406), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_volatile] = ACTIONS(4989), + [anon_sym_mutable] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym__Atomic] = ACTIONS(4989), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_explicit] = ACTIONS(4989), + [anon_sym_RPAREN] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_restrict] = ACTIONS(4989), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4985), - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_GT_GT] = ACTIONS(4985), - [anon_sym_DASH_DASH] = ACTIONS(4985), }, [1407] = { - [sym_string_literal] = STATE(1407), - [aux_sym_concatenated_string_repeat1] = STATE(1407), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [sym_parameter_list] = STATE(1410), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), }, [1408] = { - [sym_parameter_list] = STATE(1415), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(2067), + [sym_union_specifier] = STATE(2431), + [sym_macro_type_specifier] = STATE(2431), + [sym_class_specifier] = STATE(2431), + [aux_sym_sized_type_specifier_repeat1] = STATE(2430), + [sym_sized_type_specifier] = STATE(2431), + [sym__type_specifier] = STATE(2431), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(2431), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(2431), + [sym_struct_specifier] = STATE(2431), + [anon_sym_unsigned] = ACTIONS(4994), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(4996), + [anon_sym_signed] = ACTIONS(4994), [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(4994), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(4994), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(4996), }, [1409] = { - [sym_abstract_array_declarator] = STATE(2443), - [sym_parameter_list] = STATE(587), - [sym_abstract_reference_declarator] = STATE(2443), - [sym_abstract_function_declarator] = STATE(2443), - [aux_sym_type_definition_repeat1] = STATE(1413), - [sym_abstract_pointer_declarator] = STATE(2443), - [sym_type_qualifier] = STATE(1413), - [sym__abstract_declarator] = STATE(2443), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2432), + [sym_type_qualifier] = STATE(2432), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(5000), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(2843), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, [1410] = { - [sym_parameter_list] = STATE(1415), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(2067), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2433), + [sym_type_qualifier] = STATE(2433), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(2843), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, [1411] = { - [sym_union_specifier] = STATE(2446), - [sym_macro_type_specifier] = STATE(2446), - [sym_class_specifier] = STATE(2446), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2446), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(2446), - [aux_sym_sized_type_specifier_repeat1] = STATE(2445), - [sym_struct_specifier] = STATE(2446), - [sym_enum_specifier] = STATE(2446), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(2446), - [anon_sym_unsigned] = ACTIONS(4993), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(4995), - [anon_sym_signed] = ACTIONS(4993), + [sym_abstract_reference_declarator] = STATE(2434), + [aux_sym_type_definition_repeat1] = STATE(1406), + [sym_abstract_array_declarator] = STATE(2434), + [sym_parameter_list] = STATE(590), + [sym_abstract_function_declarator] = STATE(2434), + [sym_abstract_pointer_declarator] = STATE(2434), + [sym_type_qualifier] = STATE(1406), + [sym__abstract_declarator] = STATE(2434), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4993), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(4997), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(4993), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(4995), }, [1412] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(2447), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2447), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(4999), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [aux_sym_base_class_clause_repeat1] = STATE(2435), + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(674), [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(2849), }, [1413] = { - [sym_type_qualifier] = STATE(1413), - [aux_sym_type_definition_repeat1] = STATE(1413), - [anon_sym_LPAREN2] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), - [anon_sym_mutable] = ACTIONS(5001), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_explicit] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), - [anon_sym_constexpr] = ACTIONS(5001), + [aux_sym_base_class_clause_repeat1] = STATE(2436), + [sym_template_argument_list] = STATE(312), [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(2849), }, [1414] = { - [sym_parameter_list] = STATE(1415), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(2067), + [aux_sym_base_class_clause_repeat1] = STATE(2436), + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(5006), [sym_comment] = ACTIONS(3), }, [1415] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(2448), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2448), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(5006), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [sym_scoped_type_identifier] = STATE(2439), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_template_type] = STATE(2440), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_private] = ACTIONS(5008), + [sym_identifier] = ACTIONS(5010), + [anon_sym_public] = ACTIONS(5008), + [anon_sym_protected] = ACTIONS(5008), [sym_comment] = ACTIONS(3), }, [1416] = { - [sym_abstract_array_declarator] = STATE(2449), - [sym_parameter_list] = STATE(587), - [sym_abstract_reference_declarator] = STATE(2449), - [sym_abstract_function_declarator] = STATE(2449), - [aux_sym_type_definition_repeat1] = STATE(1413), - [sym_abstract_pointer_declarator] = STATE(2449), - [sym_type_qualifier] = STATE(1413), - [sym__abstract_declarator] = STATE(2449), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [aux_sym_base_class_clause_repeat1] = STATE(2441), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(5012), [sym_comment] = ACTIONS(3), }, [1417] = { - [sym_template_argument_list] = STATE(385), - [aux_sym_base_class_clause_repeat1] = STATE(2450), - [anon_sym_COLON_COLON] = ACTIONS(670), + [aux_sym_base_class_clause_repeat1] = STATE(2441), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(5006), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(5008), - [anon_sym_COMMA] = ACTIONS(2847), }, [1418] = { - [aux_sym_base_class_clause_repeat1] = STATE(2451), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(5010), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_COLON_COLON] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_static] = ACTIONS(5016), + [anon_sym_volatile] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_explicit] = ACTIONS(5016), + [sym_identifier] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5016), + [sym_operator_name] = ACTIONS(5014), + [sym_noexcept] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5016), + [anon_sym__Atomic] = ACTIONS(5016), + [anon_sym_const] = ACTIONS(5016), + [anon_sym_extern] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_TILDE] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_AMP_AMP] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_DASH_GT] = ACTIONS(5014), }, [1419] = { - [sym_template_argument_list] = STATE(354), - [aux_sym_base_class_clause_repeat1] = STATE(2451), + [sym_field_declaration_list] = STATE(2442), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(2847), }, [1420] = { - [sym_template_type] = STATE(2454), - [sym_scoped_type_identifier] = STATE(2455), - [sym_scoped_namespace_identifier] = STATE(88), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_private] = ACTIONS(5012), - [sym_identifier] = ACTIONS(5014), - [anon_sym_public] = ACTIONS(5012), - [anon_sym_protected] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(1136), + [sym_operator_name] = ACTIONS(1141), + [anon_sym_mutable] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_constexpr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_COLON] = ACTIONS(1143), + [anon_sym_explicit] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym_EQ] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1141), + [sym_identifier] = ACTIONS(1143), }, [1421] = { - [aux_sym_base_class_clause_repeat1] = STATE(2456), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(5016), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(2444), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(5018), [sym_comment] = ACTIONS(3), }, [1422] = { - [aux_sym_base_class_clause_repeat1] = STATE(2456), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(5010), + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(5022), }, [1423] = { - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_mutable] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_final] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_static] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_STAR] = ACTIONS(5018), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), - [anon_sym_COLON] = ACTIONS(5020), - [anon_sym_explicit] = ACTIONS(5020), - [sym_identifier] = ACTIONS(5020), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_override] = ACTIONS(5020), - [sym_operator_name] = ACTIONS(5018), - [sym_noexcept] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_register] = ACTIONS(5020), - [anon_sym__Atomic] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_extern] = ACTIONS(5020), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_LT_LT] = ACTIONS(5018), - [anon_sym_constexpr] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5018), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_TILDE] = ACTIONS(5018), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_inline] = ACTIONS(5020), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_restrict] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(5022), }, [1424] = { - [sym_field_declaration_list] = STATE(2457), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1172), + [sym_auto] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1172), + [anon_sym_mutable] = ACTIONS(1172), + [anon_sym_long] = ACTIONS(1172), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1172), + [sym_preproc_directive] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_volatile] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_typename] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_explicit] = ACTIONS(1172), + [anon_sym_short] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1172), + [sym_operator_name] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), + [anon_sym_register] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_virtual] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1172), + [anon_sym_constexpr] = ACTIONS(1172), + [sym_primitive_type] = ACTIONS(1172), + [anon_sym_unsigned] = ACTIONS(1172), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_protected] = ACTIONS(1172), + [anon_sym_friend] = ACTIONS(1172), + [anon_sym_template] = ACTIONS(1172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1172), + [anon_sym_restrict] = ACTIONS(1172), }, [1425] = { - [anon_sym_LPAREN2] = ACTIONS(1130), - [sym_operator_name] = ACTIONS(1135), - [anon_sym_mutable] = ACTIONS(1137), - [anon_sym_register] = ACTIONS(1137), - [anon_sym__Atomic] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_constexpr] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1137), - [anon_sym_explicit] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1137), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_restrict] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1135), - [sym_identifier] = ACTIONS(1137), - }, - [1426] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(2459), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(5022), - [sym_comment] = ACTIONS(3), - }, - [1427] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(5024), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(5026), - }, - [1428] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(5026), - }, - [1429] = { - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1166), - [sym_auto] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_mutable] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1168), - [anon_sym_using] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_typename] = ACTIONS(1166), - [anon_sym_private] = ACTIONS(1166), - [anon_sym_explicit] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1166), - [sym_operator_name] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym_virtual] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_class] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_public] = ACTIONS(1166), - [anon_sym_protected] = ACTIONS(1166), - [anon_sym_friend] = ACTIONS(1166), - [anon_sym_template] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1168), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - }, - [1430] = { - [anon_sym_LF] = ACTIONS(5028), + [anon_sym_LF] = ACTIONS(5024), [sym_comment] = ACTIONS(244), }, - [1431] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(2480), - [sym_preproc_function_def] = STATE(2480), - [sym_alias_declaration] = STATE(2480), + [1426] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(2462), + [sym_preproc_function_def] = STATE(2462), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(2480), - [sym_preproc_if_in_field_declaration_list] = STATE(2480), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2480), - [sym_type_definition] = STATE(2480), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(2480), - [sym__field_declaration_list_item] = STATE(2480), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2480), - [sym_inline_method_definition] = STATE(2480), - [sym_friend_declaration] = STATE(2480), - [sym_access_specifier] = STATE(2480), - [sym_using_declaration] = STATE(2480), - [sym_preproc_else_in_field_declaration_list] = STATE(2481), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(2481), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(2480), - [sym_constructor_or_destructor_definition] = STATE(2480), - [sym_constructor_or_destructor_declaration] = STATE(2480), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2462), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(2462), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(2462), + [sym_preproc_if_in_field_declaration_list] = STATE(2462), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2462), + [sym_type_definition] = STATE(2462), + [sym_using_declaration] = STATE(2462), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(2462), + [sym_inline_method_definition] = STATE(2462), + [sym_constructor_or_destructor_definition] = STATE(2462), + [sym_access_specifier] = STATE(2462), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(2462), + [sym_alias_declaration] = STATE(2462), + [sym_preproc_else_in_field_declaration_list] = STATE(2465), + [sym_preproc_elif_in_field_declaration_list] = STATE(2465), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(2462), + [sym_constructor_or_destructor_declaration] = STATE(2462), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(5034), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [1432] = { - [sym_union_specifier] = STATE(2482), - [sym_macro_type_specifier] = STATE(2482), - [sym_class_specifier] = STATE(2482), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2482), - [sym_scoped_namespace_identifier] = STATE(88), + [1427] = { + [sym_union_specifier] = STATE(2467), + [sym_macro_type_specifier] = STATE(2467), + [sym_class_specifier] = STATE(2467), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(2467), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(2482), - [sym_enum_specifier] = STATE(2482), - [sym_dependent_type] = STATE(2482), - [sym_struct_specifier] = STATE(2482), - [sym_scoped_type_identifier] = STATE(87), + [sym__type_specifier] = STATE(2467), + [sym_struct_specifier] = STATE(2467), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(2467), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_type_qualifier] = STATE(388), + [sym_dependent_type] = STATE(2467), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(5056), + [sym_auto] = ACTIONS(5052), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -67149,7 +67041,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(5056), + [sym_primitive_type] = ACTIONS(5052), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -67160,296 +67052,372 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [1433] = { - [sym_pointer_type_declarator] = STATE(2483), - [sym_array_type_declarator] = STATE(2483), - [sym_function_type_declarator] = STATE(2483), - [sym__type_declarator] = STATE(2483), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [1428] = { + [sym_pointer_type_declarator] = STATE(2468), + [sym_array_type_declarator] = STATE(2468), + [sym_function_type_declarator] = STATE(2468), + [sym__type_declarator] = STATE(2468), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [1434] = { - [anon_sym_LPAREN2] = ACTIONS(5058), - [anon_sym_struct] = ACTIONS(5060), - [sym_auto] = ACTIONS(5060), - [anon_sym_signed] = ACTIONS(5060), - [anon_sym_mutable] = ACTIONS(5060), - [anon_sym_long] = ACTIONS(5060), - [anon_sym_COLON_COLON] = ACTIONS(5058), - [anon_sym_using] = ACTIONS(5060), - [sym_preproc_directive] = ACTIONS(5060), - [aux_sym_preproc_if_token1] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5060), - [anon_sym_static] = ACTIONS(5060), - [anon_sym_volatile] = ACTIONS(5060), - [anon_sym_RBRACE] = ACTIONS(5058), - [anon_sym_typedef] = ACTIONS(5060), - [anon_sym_STAR] = ACTIONS(5058), - [anon_sym_union] = ACTIONS(5060), - [anon_sym_typename] = ACTIONS(5060), - [anon_sym_private] = ACTIONS(5060), - [anon_sym_explicit] = ACTIONS(5060), - [anon_sym_short] = ACTIONS(5060), - [sym_identifier] = ACTIONS(5060), - [sym_operator_name] = ACTIONS(5058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5060), - [anon_sym_register] = ACTIONS(5060), - [anon_sym__Atomic] = ACTIONS(5060), - [anon_sym_const] = ACTIONS(5060), - [anon_sym_extern] = ACTIONS(5060), - [anon_sym_virtual] = ACTIONS(5060), - [anon_sym_enum] = ACTIONS(5060), - [anon_sym_class] = ACTIONS(5060), - [anon_sym_constexpr] = ACTIONS(5060), - [sym_primitive_type] = ACTIONS(5060), - [anon_sym_unsigned] = ACTIONS(5060), - [anon_sym_public] = ACTIONS(5060), - [anon_sym_protected] = ACTIONS(5060), - [anon_sym_friend] = ACTIONS(5060), - [anon_sym_template] = ACTIONS(5060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5060), - [anon_sym_TILDE] = ACTIONS(5058), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5060), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_inline] = ACTIONS(5060), - [anon_sym_restrict] = ACTIONS(5060), + [1429] = { + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_struct] = ACTIONS(5056), + [sym_auto] = ACTIONS(5056), + [anon_sym_signed] = ACTIONS(5056), + [anon_sym_mutable] = ACTIONS(5056), + [anon_sym_long] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(5054), + [anon_sym_using] = ACTIONS(5056), + [sym_preproc_directive] = ACTIONS(5056), + [aux_sym_preproc_if_token1] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_static] = ACTIONS(5056), + [anon_sym_volatile] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5054), + [anon_sym_typedef] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5054), + [anon_sym_union] = ACTIONS(5056), + [anon_sym_typename] = ACTIONS(5056), + [anon_sym_private] = ACTIONS(5056), + [anon_sym_explicit] = ACTIONS(5056), + [anon_sym_short] = ACTIONS(5056), + [sym_identifier] = ACTIONS(5056), + [sym_operator_name] = ACTIONS(5054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5056), + [anon_sym_register] = ACTIONS(5056), + [anon_sym__Atomic] = ACTIONS(5056), + [anon_sym_const] = ACTIONS(5056), + [anon_sym_extern] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_virtual] = ACTIONS(5056), + [anon_sym_enum] = ACTIONS(5056), + [anon_sym_class] = ACTIONS(5056), + [anon_sym_constexpr] = ACTIONS(5056), + [sym_primitive_type] = ACTIONS(5056), + [anon_sym_unsigned] = ACTIONS(5056), + [anon_sym_public] = ACTIONS(5056), + [anon_sym_protected] = ACTIONS(5056), + [anon_sym_friend] = ACTIONS(5056), + [anon_sym_template] = ACTIONS(5056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5054), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5054), + [anon_sym_inline] = ACTIONS(5056), + [anon_sym_restrict] = ACTIONS(5056), }, - [1435] = { - [sym_destructor_name] = STATE(399), - [sym_identifier] = ACTIONS(5062), - [sym_operator_name] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(308), + [1430] = { + [sym_destructor_name] = STATE(400), + [sym_identifier] = ACTIONS(5058), + [sym_operator_name] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, - [1436] = { - [anon_sym_LPAREN2] = ACTIONS(780), - [sym_operator_name] = ACTIONS(789), - [anon_sym_mutable] = ACTIONS(787), - [anon_sym_register] = ACTIONS(787), - [anon_sym__Atomic] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_extern] = ACTIONS(787), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_constexpr] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_static] = ACTIONS(787), - [anon_sym_volatile] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_explicit] = ACTIONS(787), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_inline] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(789), - [anon_sym_restrict] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_identifier] = ACTIONS(787), + [1431] = { + [anon_sym_LPAREN2] = ACTIONS(788), + [sym_operator_name] = ACTIONS(797), + [anon_sym_mutable] = ACTIONS(795), + [anon_sym_register] = ACTIONS(795), + [anon_sym__Atomic] = ACTIONS(795), + [anon_sym_const] = ACTIONS(795), + [anon_sym_extern] = ACTIONS(795), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_constexpr] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_static] = ACTIONS(795), + [anon_sym_volatile] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_explicit] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_inline] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(797), + [anon_sym_restrict] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(797), + [sym_identifier] = ACTIONS(795), }, - [1437] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(2486), - [sym_preproc_function_def] = STATE(2486), - [sym_alias_declaration] = STATE(2486), + [1432] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(2471), + [sym_preproc_function_def] = STATE(2471), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(2486), - [sym_preproc_if_in_field_declaration_list] = STATE(2486), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2486), - [sym_type_definition] = STATE(2486), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(2486), - [sym__field_declaration_list_item] = STATE(2486), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2486), - [sym_inline_method_definition] = STATE(2486), - [sym_friend_declaration] = STATE(2486), - [sym_access_specifier] = STATE(2486), - [sym_using_declaration] = STATE(2486), - [sym_preproc_else_in_field_declaration_list] = STATE(2487), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(2487), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(2486), - [sym_constructor_or_destructor_definition] = STATE(2486), - [sym_constructor_or_destructor_declaration] = STATE(2486), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2471), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(2471), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(2471), + [sym_preproc_if_in_field_declaration_list] = STATE(2471), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2471), + [sym_type_definition] = STATE(2471), + [sym_using_declaration] = STATE(2471), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(2471), + [sym_inline_method_definition] = STATE(2471), + [sym_constructor_or_destructor_definition] = STATE(2471), + [sym_access_specifier] = STATE(2471), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(2471), + [sym_alias_declaration] = STATE(2471), + [sym_preproc_else_in_field_declaration_list] = STATE(2472), + [sym_preproc_elif_in_field_declaration_list] = STATE(2472), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(2471), + [sym_constructor_or_destructor_declaration] = STATE(2471), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(5064), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(5060), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [1438] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(589), + [1433] = { + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(616), [sym_comment] = ACTIONS(3), }, - [1439] = { - [sym_macro_type_specifier] = STATE(1450), - [sym_class_specifier] = STATE(1450), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1450), - [sym__type_specifier] = STATE(1450), - [aux_sym__declaration_specifiers_repeat1] = STATE(873), - [sym_storage_class_specifier] = STATE(873), - [sym_type_qualifier] = STATE(873), - [sym_struct_specifier] = STATE(1450), - [sym_union_specifier] = STATE(1450), - [sym_dependent_type] = STATE(1450), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(1450), - [sym_scoped_type_identifier] = STATE(87), + [1434] = { + [sym_macro_type_specifier] = STATE(1467), + [sym_class_specifier] = STATE(1467), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_sized_type_specifier] = STATE(1467), + [sym__type_specifier] = STATE(1467), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(879), + [sym_type_qualifier] = STATE(879), + [sym_struct_specifier] = STATE(1467), + [sym_union_specifier] = STATE(1467), + [sym_dependent_type] = STATE(1467), + [aux_sym__declaration_specifiers_repeat1] = STATE(879), + [sym_enum_specifier] = STATE(1467), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(2885), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(2917), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1096), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(1096), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1096), [anon_sym_restrict] = ACTIONS(11), }, - [1440] = { - [sym_function_field_declarator] = STATE(2490), - [sym_reference_field_declarator] = STATE(2490), - [sym_template_method] = STATE(2490), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(2490), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(2490), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(2490), - [sym_bitfield_clause] = STATE(2491), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(2491), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(5066), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(5068), - [sym_operator_name] = ACTIONS(5070), + [1435] = { + [sym_function_field_declarator] = STATE(2476), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(2476), + [sym_pointer_field_declarator] = STATE(2476), + [sym__field_declarator] = STATE(2476), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(2475), + [sym_array_field_declarator] = STATE(2476), + [sym_initializer_list] = STATE(2475), + [sym_template_method] = STATE(2476), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(5064), + [sym_operator_name] = ACTIONS(5066), [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), }, - [1441] = { - [anon_sym_LPAREN2] = ACTIONS(535), + [1436] = { + [anon_sym_LPAREN2] = ACTIONS(548), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(5068), }, - [1442] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(278), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(2493), - [sym_scoped_type_identifier] = STATE(87), + [1437] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(5070), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + }, + [1438] = { + [anon_sym_LPAREN2] = ACTIONS(5072), + [anon_sym_struct] = ACTIONS(5074), + [sym_auto] = ACTIONS(5074), + [anon_sym_signed] = ACTIONS(5074), + [anon_sym_mutable] = ACTIONS(5074), + [anon_sym_long] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(5072), + [anon_sym_using] = ACTIONS(5074), + [sym_preproc_directive] = ACTIONS(5074), + [aux_sym_preproc_if_token1] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_static] = ACTIONS(5074), + [anon_sym_volatile] = ACTIONS(5074), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_typedef] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_union] = ACTIONS(5074), + [anon_sym_typename] = ACTIONS(5074), + [anon_sym_private] = ACTIONS(5074), + [anon_sym_explicit] = ACTIONS(5074), + [anon_sym_short] = ACTIONS(5074), + [sym_identifier] = ACTIONS(5074), + [sym_operator_name] = ACTIONS(5072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5074), + [anon_sym_register] = ACTIONS(5074), + [anon_sym__Atomic] = ACTIONS(5074), + [anon_sym_const] = ACTIONS(5074), + [anon_sym_extern] = ACTIONS(5074), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_virtual] = ACTIONS(5074), + [anon_sym_enum] = ACTIONS(5074), + [anon_sym_class] = ACTIONS(5074), + [anon_sym_constexpr] = ACTIONS(5074), + [sym_primitive_type] = ACTIONS(5074), + [anon_sym_unsigned] = ACTIONS(5074), + [anon_sym_public] = ACTIONS(5074), + [anon_sym_protected] = ACTIONS(5074), + [anon_sym_friend] = ACTIONS(5074), + [anon_sym_template] = ACTIONS(5074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5074), + [anon_sym_TILDE] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5074), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_inline] = ACTIONS(5074), + [anon_sym_restrict] = ACTIONS(5074), + }, + [1439] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_struct_specifier] = STATE(280), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(2479), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -67458,141 +67426,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, - [1443] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(545), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(5074), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - }, - [1444] = { - [anon_sym_LPAREN2] = ACTIONS(5076), - [anon_sym_struct] = ACTIONS(5078), - [sym_auto] = ACTIONS(5078), - [anon_sym_signed] = ACTIONS(5078), - [anon_sym_mutable] = ACTIONS(5078), - [anon_sym_long] = ACTIONS(5078), - [anon_sym_COLON_COLON] = ACTIONS(5076), - [anon_sym_using] = ACTIONS(5078), - [sym_preproc_directive] = ACTIONS(5078), - [aux_sym_preproc_if_token1] = ACTIONS(5078), - [anon_sym_AMP] = ACTIONS(5078), - [anon_sym_static] = ACTIONS(5078), - [anon_sym_volatile] = ACTIONS(5078), - [anon_sym_RBRACE] = ACTIONS(5076), - [anon_sym_typedef] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5076), - [anon_sym_union] = ACTIONS(5078), - [anon_sym_typename] = ACTIONS(5078), - [anon_sym_private] = ACTIONS(5078), - [anon_sym_explicit] = ACTIONS(5078), - [anon_sym_short] = ACTIONS(5078), - [sym_identifier] = ACTIONS(5078), + [1440] = { + [sym_template_function] = STATE(2480), + [sym_destructor_name] = STATE(2480), + [sym_pointer_declarator] = STATE(2480), + [sym_structured_binding_declarator] = STATE(2480), + [sym__declarator] = STATE(2480), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2480), + [sym_array_declarator] = STATE(2480), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(2481), + [sym_function_declarator] = STATE(2480), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), [sym_operator_name] = ACTIONS(5076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5078), - [anon_sym_register] = ACTIONS(5078), - [anon_sym__Atomic] = ACTIONS(5078), - [anon_sym_const] = ACTIONS(5078), - [anon_sym_extern] = ACTIONS(5078), - [anon_sym_virtual] = ACTIONS(5078), - [anon_sym_enum] = ACTIONS(5078), - [anon_sym_class] = ACTIONS(5078), - [anon_sym_constexpr] = ACTIONS(5078), - [sym_primitive_type] = ACTIONS(5078), - [anon_sym_unsigned] = ACTIONS(5078), - [anon_sym_public] = ACTIONS(5078), - [anon_sym_protected] = ACTIONS(5078), - [anon_sym_friend] = ACTIONS(5078), - [anon_sym_template] = ACTIONS(5078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5078), - [anon_sym_TILDE] = ACTIONS(5076), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5078), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_inline] = ACTIONS(5078), - [anon_sym_restrict] = ACTIONS(5078), - }, - [1445] = { - [sym_reference_declarator] = STATE(2495), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2495), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(2495), - [sym_destructor_name] = STATE(2495), - [sym__declarator] = STATE(2495), - [sym_init_declarator] = STATE(2496), - [sym_array_declarator] = STATE(2495), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2495), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(5080), [sym_comment] = ACTIONS(3), }, - [1446] = { - [aux_sym_function_definition_repeat1] = STATE(1442), - [sym_macro_type_specifier] = STATE(876), - [sym_class_specifier] = STATE(876), - [sym__type_specifier] = STATE(876), - [sym_sized_type_specifier] = STATE(876), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(2497), - [sym_declaration] = STATE(2497), - [aux_sym__declaration_specifiers_repeat1] = STATE(878), - [sym_storage_class_specifier] = STATE(878), - [sym_dependent_type] = STATE(876), - [sym_struct_specifier] = STATE(876), - [sym_union_specifier] = STATE(876), - [sym_attribute] = STATE(1442), - [sym_type_qualifier] = STATE(878), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__empty_declaration] = STATE(2497), - [aux_sym_sized_type_specifier_repeat1] = STATE(879), - [sym_enum_specifier] = STATE(876), - [sym__declaration_specifiers] = STATE(2498), - [sym_scoped_type_identifier] = STATE(87), + [1441] = { + [sym_macro_type_specifier] = STATE(55), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_sized_type_specifier] = STATE(55), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_function_definition] = STATE(2482), + [sym_declaration] = STATE(2482), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(1439), + [sym_template_type] = STATE(91), + [sym__empty_declaration] = STATE(2482), + [sym_storage_class_specifier] = STATE(881), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_union_specifier] = STATE(55), + [sym_type_qualifier] = STATE(881), + [aux_sym__declaration_specifiers_repeat1] = STATE(881), + [sym_enum_specifier] = STATE(55), + [sym_attribute] = STATE(1439), + [sym__declaration_specifiers] = STATE(2483), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1571), + [sym_auto] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(35), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(35), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -67601,456 +67500,665 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(35), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1573), + [anon_sym_typename] = ACTIONS(69), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(35), [anon_sym_restrict] = ACTIONS(11), }, - [1447] = { - [sym_preproc_params] = STATE(2501), - [sym_preproc_arg] = ACTIONS(5082), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(5084), + [1442] = { + [sym_preproc_params] = STATE(2486), + [sym_preproc_arg] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_LF] = ACTIONS(5080), [sym_comment] = ACTIONS(244), }, - [1448] = { - [sym_destructor_name] = STATE(938), - [sym_identifier] = ACTIONS(5086), - [sym_operator_name] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - }, - [1449] = { - [sym_virtual_specifier] = STATE(2504), - [aux_sym_function_declarator_repeat1] = STATE(2504), - [sym_trailing_return_type] = STATE(2504), - [sym_type_qualifier] = STATE(2504), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(5088), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_EQ] = ACTIONS(1841), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1841), + [1443] = { + [sym_virtual_specifier] = STATE(2488), + [aux_sym_function_declarator_repeat1] = STATE(2488), + [sym_type_qualifier] = STATE(2488), + [sym_trailing_return_type] = STATE(2488), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(5082), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_COLON] = ACTIONS(1899), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1899), }, - [1450] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2505), - [sym_storage_class_specifier] = STATE(2505), - [sym_type_qualifier] = STATE(2505), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(11), + [1444] = { + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(1434), + [sym_type_qualifier] = STATE(1434), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [aux_sym__declaration_specifiers_repeat1] = STATE(1434), + [sym_enum_specifier] = STATE(620), + [sym__declaration_specifiers] = STATE(2489), + [sym_scoped_namespace_identifier] = STATE(92), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(1096), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1096), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_COLON] = ACTIONS(1677), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_EQ] = ACTIONS(1675), - [sym_operator_name] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), + [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(11), }, - [1451] = { - [sym_compound_statement] = STATE(2506), - [sym_field_initializer_list] = STATE(2507), - [sym_default_method_clause] = STATE(2506), - [sym_delete_method_clause] = STATE(2506), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [sym_comment] = ACTIONS(3), + [1445] = { + [sym_attribute] = STATE(1445), + [aux_sym_function_definition_repeat1] = STATE(1445), + [anon_sym_struct] = ACTIONS(1687), + [sym_auto] = ACTIONS(1687), + [anon_sym_signed] = ACTIONS(1687), + [anon_sym_mutable] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym__Atomic] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_COLON_COLON] = ACTIONS(1689), + [anon_sym_virtual] = ACTIONS(1687), + [anon_sym_enum] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1687), + [anon_sym_constexpr] = ACTIONS(1687), + [sym_primitive_type] = ACTIONS(1687), + [anon_sym_unsigned] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_volatile] = ACTIONS(1687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1691), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_typename] = ACTIONS(1687), + [anon_sym_explicit] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [anon_sym_inline] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1687), + [anon_sym_restrict] = ACTIONS(1687), }, - [1452] = { - [sym_function_field_declarator] = STATE(2510), - [sym_reference_field_declarator] = STATE(2510), - [sym_template_method] = STATE(2510), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(2510), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(2510), - [sym_scoped_field_identifier] = STATE(2511), - [sym_array_field_declarator] = STATE(2510), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5094), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(5096), - [sym_operator_name] = ACTIONS(5098), + [1446] = { + [sym_function_field_declarator] = STATE(2490), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(2490), + [sym_pointer_field_declarator] = STATE(2490), + [sym__field_declarator] = STATE(2490), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(2475), + [sym_array_field_declarator] = STATE(2490), + [sym_initializer_list] = STATE(2475), + [sym_template_method] = STATE(2490), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(5064), + [sym_operator_name] = ACTIONS(5086), + [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), }, - [1453] = { - [sym_function_field_declarator] = STATE(2512), - [sym_reference_field_declarator] = STATE(2512), - [sym_template_method] = STATE(2512), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(2512), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(2512), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(2512), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [sym_operator_name] = ACTIONS(5100), - [sym_comment] = ACTIONS(3), + [1447] = { + [anon_sym_LPAREN2] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5090), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5088), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_COLON_COLON] = ACTIONS(5088), + [anon_sym_final] = ACTIONS(5090), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_static] = ACTIONS(5090), + [anon_sym_volatile] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5088), + [anon_sym_COLON] = ACTIONS(5090), + [anon_sym_explicit] = ACTIONS(5090), + [sym_identifier] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_override] = ACTIONS(5090), + [sym_operator_name] = ACTIONS(5088), + [sym_noexcept] = ACTIONS(5090), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_register] = ACTIONS(5090), + [anon_sym__Atomic] = ACTIONS(5090), + [anon_sym_const] = ACTIONS(5090), + [anon_sym_extern] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_TILDE] = ACTIONS(5088), + [anon_sym_SEMI] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_inline] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), }, - [1454] = { - [sym_function_field_declarator] = STATE(2514), - [sym_reference_field_declarator] = STATE(2514), - [sym_template_method] = STATE(2514), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(2514), - [sym_scoped_namespace_identifier] = STATE(949), - [aux_sym_type_definition_repeat1] = STATE(2513), - [sym__field_declarator] = STATE(2514), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(2514), - [sym_scoped_type_identifier] = STATE(174), - [sym_type_qualifier] = STATE(2513), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2889), + [1448] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(1448), + [sym_preproc_function_def] = STATE(1448), + [sym__declarator] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), + [sym_array_declarator] = STATE(614), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1448), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(1448), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(1448), + [sym_preproc_if_in_field_declaration_list] = STATE(1448), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1448), + [sym_type_definition] = STATE(1448), + [sym_using_declaration] = STATE(1448), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(1448), + [sym_inline_method_definition] = STATE(1448), + [sym_constructor_or_destructor_definition] = STATE(1448), + [sym_access_specifier] = STATE(1448), + [sym_reference_declarator] = STATE(614), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(1448), + [sym_alias_declaration] = STATE(1448), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(1448), + [sym_constructor_or_destructor_declaration] = STATE(1448), + [anon_sym_LPAREN2] = ACTIONS(5092), + [anon_sym_struct] = ACTIONS(5095), + [sym_auto] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(5101), + [anon_sym_mutable] = ACTIONS(5104), + [anon_sym_long] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5107), + [anon_sym_using] = ACTIONS(5110), + [sym_preproc_directive] = ACTIONS(5113), + [aux_sym_preproc_if_token1] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5119), + [anon_sym_static] = ACTIONS(5122), + [anon_sym_volatile] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_typedef] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_union] = ACTIONS(5133), + [anon_sym_typename] = ACTIONS(5136), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_explicit] = ACTIONS(5104), + [anon_sym_short] = ACTIONS(5101), + [sym_identifier] = ACTIONS(5142), + [sym_operator_name] = ACTIONS(5145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5148), + [anon_sym_register] = ACTIONS(5122), + [anon_sym__Atomic] = ACTIONS(5104), + [anon_sym_const] = ACTIONS(5104), + [anon_sym_extern] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_virtual] = ACTIONS(5154), + [anon_sym_enum] = ACTIONS(5157), + [anon_sym_class] = ACTIONS(5160), + [anon_sym_constexpr] = ACTIONS(5104), + [sym_primitive_type] = ACTIONS(5098), + [anon_sym_unsigned] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_friend] = ACTIONS(5163), + [anon_sym_template] = ACTIONS(5166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5148), + [anon_sym_TILDE] = ACTIONS(5172), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5175), + [anon_sym_AMP_AMP] = ACTIONS(5178), + [anon_sym_inline] = ACTIONS(5122), + [anon_sym_restrict] = ACTIONS(5104), + }, + [1449] = { + [sym_function_field_declarator] = STATE(2494), + [sym_scoped_field_identifier] = STATE(2493), + [sym_pointer_field_declarator] = STATE(2494), + [sym__field_declarator] = STATE(2494), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_array_field_declarator] = STATE(2494), + [sym_template_method] = STATE(2494), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_reference_field_declarator] = STATE(2494), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [sym_operator_name] = ACTIONS(5187), + [sym_comment] = ACTIONS(3), + }, + [1450] = { + [sym_function_field_declarator] = STATE(2495), + [sym_scoped_field_identifier] = STATE(1457), + [sym_pointer_field_declarator] = STATE(2495), + [sym__field_declarator] = STATE(2495), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_array_field_declarator] = STATE(2495), + [sym_template_method] = STATE(2495), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_reference_field_declarator] = STATE(2495), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [sym_operator_name] = ACTIONS(5189), + [sym_comment] = ACTIONS(3), + }, + [1451] = { + [sym_function_field_declarator] = STATE(2497), + [aux_sym_type_definition_repeat1] = STATE(2496), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(2497), + [sym_pointer_field_declarator] = STATE(2497), + [sym__field_declarator] = STATE(2497), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_array_field_declarator] = STATE(2497), + [sym_template_method] = STATE(2497), + [sym_type_qualifier] = STATE(2496), + [sym_scoped_namespace_identifier] = STATE(988), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [anon_sym_constexpr] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2891), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [sym_operator_name] = ACTIONS(5102), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [sym_operator_name] = ACTIONS(5191), [anon_sym_restrict] = ACTIONS(11), }, + [1452] = { + [anon_sym_LPAREN2] = ACTIONS(5193), + [anon_sym_struct] = ACTIONS(5195), + [sym_auto] = ACTIONS(5195), + [anon_sym_signed] = ACTIONS(5195), + [anon_sym_mutable] = ACTIONS(5195), + [anon_sym_long] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_using] = ACTIONS(5195), + [sym_preproc_directive] = ACTIONS(5195), + [aux_sym_preproc_if_token1] = ACTIONS(5195), + [anon_sym_AMP] = ACTIONS(5195), + [anon_sym_static] = ACTIONS(5195), + [anon_sym_volatile] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_typedef] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_union] = ACTIONS(5195), + [anon_sym_typename] = ACTIONS(5195), + [anon_sym_private] = ACTIONS(5195), + [anon_sym_explicit] = ACTIONS(5195), + [anon_sym_short] = ACTIONS(5195), + [sym_identifier] = ACTIONS(5195), + [sym_operator_name] = ACTIONS(5193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5195), + [anon_sym_register] = ACTIONS(5195), + [anon_sym__Atomic] = ACTIONS(5195), + [anon_sym_const] = ACTIONS(5195), + [anon_sym_extern] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_virtual] = ACTIONS(5195), + [anon_sym_enum] = ACTIONS(5195), + [anon_sym_class] = ACTIONS(5195), + [anon_sym_constexpr] = ACTIONS(5195), + [sym_primitive_type] = ACTIONS(5195), + [anon_sym_unsigned] = ACTIONS(5195), + [anon_sym_public] = ACTIONS(5195), + [anon_sym_protected] = ACTIONS(5195), + [anon_sym_friend] = ACTIONS(5195), + [anon_sym_template] = ACTIONS(5195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5195), + [anon_sym_TILDE] = ACTIONS(5193), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_inline] = ACTIONS(5195), + [anon_sym_restrict] = ACTIONS(5195), + }, + [1453] = { + [sym_template_function] = STATE(2498), + [sym__expression] = STATE(2498), + [sym_logical_expression] = STATE(2498), + [sym_bitwise_expression] = STATE(2498), + [sym_cast_expression] = STATE(2498), + [sym_delete_expression] = STATE(2498), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(2498), + [sym_lambda_expression] = STATE(2498), + [sym_char_literal] = STATE(2498), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2498), + [sym_equality_expression] = STATE(2498), + [sym_relational_expression] = STATE(2498), + [sym_sizeof_expression] = STATE(2498), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2498), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(2498), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2498), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(2498), + [sym_math_expression] = STATE(2498), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(2498), + [sym_raw_string_literal] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(5199), + [sym_null] = ACTIONS(5199), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5197), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(5199), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), + }, + [1454] = { + [sym_template_argument_list] = STATE(1952), + [anon_sym_LPAREN2] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_SEMI] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5203), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_RPAREN] = ACTIONS(5201), + [anon_sym_EQ] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(5201), + [sym_comment] = ACTIONS(3), + }, [1455] = { - [anon_sym_LPAREN2] = ACTIONS(5104), - [anon_sym_struct] = ACTIONS(5106), - [sym_auto] = ACTIONS(5106), - [anon_sym_signed] = ACTIONS(5106), - [anon_sym_mutable] = ACTIONS(5106), - [anon_sym_long] = ACTIONS(5106), - [anon_sym_COLON_COLON] = ACTIONS(5104), - [anon_sym_using] = ACTIONS(5106), - [sym_preproc_directive] = ACTIONS(5106), - [aux_sym_preproc_if_token1] = ACTIONS(5106), - [anon_sym_AMP] = ACTIONS(5106), - [anon_sym_static] = ACTIONS(5106), - [anon_sym_volatile] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5104), - [anon_sym_typedef] = ACTIONS(5106), - [anon_sym_STAR] = ACTIONS(5104), - [anon_sym_union] = ACTIONS(5106), - [anon_sym_typename] = ACTIONS(5106), - [anon_sym_private] = ACTIONS(5106), - [anon_sym_explicit] = ACTIONS(5106), - [anon_sym_short] = ACTIONS(5106), - [sym_identifier] = ACTIONS(5106), - [sym_operator_name] = ACTIONS(5104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5106), - [anon_sym_register] = ACTIONS(5106), - [anon_sym__Atomic] = ACTIONS(5106), - [anon_sym_const] = ACTIONS(5106), - [anon_sym_extern] = ACTIONS(5106), - [anon_sym_virtual] = ACTIONS(5106), - [anon_sym_enum] = ACTIONS(5106), - [anon_sym_class] = ACTIONS(5106), - [anon_sym_constexpr] = ACTIONS(5106), - [sym_primitive_type] = ACTIONS(5106), - [anon_sym_unsigned] = ACTIONS(5106), - [anon_sym_public] = ACTIONS(5106), - [anon_sym_protected] = ACTIONS(5106), - [anon_sym_friend] = ACTIONS(5106), - [anon_sym_template] = ACTIONS(5106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5106), - [anon_sym_TILDE] = ACTIONS(5104), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5106), - [anon_sym_AMP_AMP] = ACTIONS(5104), - [anon_sym_inline] = ACTIONS(5106), - [anon_sym_restrict] = ACTIONS(5106), + [sym_template_function] = STATE(2499), + [sym__expression] = STATE(2499), + [sym_logical_expression] = STATE(2499), + [sym_bitwise_expression] = STATE(2499), + [sym_cast_expression] = STATE(2499), + [sym_delete_expression] = STATE(2499), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(2499), + [sym_lambda_expression] = STATE(2499), + [sym_char_literal] = STATE(2499), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2499), + [sym_equality_expression] = STATE(2499), + [sym_relational_expression] = STATE(2499), + [sym_sizeof_expression] = STATE(2499), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2475), + [sym_parenthesized_expression] = STATE(2499), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2499), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2499), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(2499), + [sym_math_expression] = STATE(2499), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(2499), + [sym_raw_string_literal] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(5207), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5205), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(5207), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(175), }, [1456] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2515), - [sym_logical_expression] = STATE(2515), - [sym_bitwise_expression] = STATE(2515), - [sym_cast_expression] = STATE(2515), - [sym_new_expression] = STATE(2515), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(2515), - [sym_char_literal] = STATE(2515), - [sym_template_function] = STATE(2515), - [sym_conditional_expression] = STATE(2515), - [sym_equality_expression] = STATE(2515), - [sym_relational_expression] = STATE(2515), - [sym_delete_expression] = STATE(2515), - [sym_sizeof_expression] = STATE(2515), - [sym_parenthesized_expression] = STATE(2515), - [sym_lambda_expression] = STATE(2515), - [sym_concatenated_string] = STATE(2515), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(2515), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(2515), - [sym_math_expression] = STATE(2515), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(5110), - [sym_null] = ACTIONS(5110), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5108), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(5062), }, [1457] = { - [sym_template_argument_list] = STATE(1886), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_COMMA] = ACTIONS(5112), - [anon_sym_SEMI] = ACTIONS(5112), - [anon_sym_COLON] = ACTIONS(5114), - [anon_sym_COLON_COLON] = ACTIONS(3777), - [anon_sym_LBRACK] = ACTIONS(5112), - [anon_sym_RPAREN] = ACTIONS(5112), - [anon_sym_EQ] = ACTIONS(5112), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(5112), + [sym_template_argument_list] = STATE(1953), + [anon_sym_LT] = ACTIONS(5209), [sym_comment] = ACTIONS(3), }, [1458] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2516), - [sym_logical_expression] = STATE(2516), - [sym_bitwise_expression] = STATE(2516), - [sym_cast_expression] = STATE(2516), - [sym_new_expression] = STATE(2516), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(2516), - [sym_char_literal] = STATE(2516), - [sym_template_function] = STATE(2516), - [sym_conditional_expression] = STATE(2516), - [sym_equality_expression] = STATE(2516), - [sym_relational_expression] = STATE(2516), - [sym_delete_expression] = STATE(2516), - [sym_sizeof_expression] = STATE(2516), - [sym_parenthesized_expression] = STATE(2516), - [sym_initializer_list] = STATE(2491), - [sym_concatenated_string] = STATE(2516), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(2516), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(2516), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(2516), - [sym_math_expression] = STATE(2516), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(5118), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(5118), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), + [sym_compound_statement] = STATE(2504), + [sym_parameter_list] = STATE(2505), + [sym_delete_method_clause] = STATE(2504), + [sym_bitfield_clause] = STATE(2475), + [sym_initializer_list] = STATE(2475), + [aux_sym_field_declaration_repeat1] = STATE(2506), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(5219), + [sym_comment] = ACTIONS(3), }, [1459] = { - [sym_compound_statement] = STATE(2521), - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(2491), - [aux_sym_field_declaration_repeat1] = STATE(2523), - [sym_initializer_list] = STATE(2491), - [sym_delete_method_clause] = STATE(2521), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(5066), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(5126), - [anon_sym_LBRACE] = ACTIONS(5128), + [sym_destructor_name] = STATE(960), + [sym_identifier] = ACTIONS(5221), + [sym_operator_name] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, [1460] = { - [sym_template_argument_list] = STATE(1887), - [anon_sym_LT] = ACTIONS(5130), + [anon_sym_default] = ACTIONS(5223), + [anon_sym_delete] = ACTIONS(5225), [sym_comment] = ACTIONS(3), }, [1461] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(5066), - }, - [1462] = { - [anon_sym_default] = ACTIONS(5132), - [anon_sym_delete] = ACTIONS(5134), - [sym_comment] = ACTIONS(3), - }, - [1463] = { - [sym_goto_statement] = STATE(2527), - [sym_preproc_function_def] = STATE(2527), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(2527), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(2527), + [sym_goto_statement] = STATE(2511), + [sym_preproc_function_def] = STATE(2511), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(2511), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2527), - [sym_return_statement] = STATE(2527), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2511), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2511), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2511), + [sym_namespace_definition] = STATE(2511), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2527), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2527), - [sym_break_statement] = STATE(2527), - [sym_preproc_include] = STATE(2527), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(2527), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(2527), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2511), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2511), + [sym_constructor_or_destructor_definition] = STATE(2511), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2511), + [sym_preproc_include] = STATE(2511), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(2511), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(2511), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(2527), - [sym_template_instantiation] = STATE(2527), - [sym_constructor_or_destructor_definition] = STATE(2527), - [sym_expression_statement] = STATE(2527), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2527), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(2527), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(2527), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2527), - [aux_sym_translation_unit_repeat1] = STATE(2527), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(2527), - [sym_if_statement] = STATE(2527), - [sym_for_statement] = STATE(2527), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(2527), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(2527), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(2527), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2527), - [sym_preproc_if] = STATE(2527), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(2511), + [sym_expression_statement] = STATE(2511), + [sym_do_statement] = STATE(2511), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(2511), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(2511), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2511), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2511), + [sym_for_statement] = STATE(2511), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(2511), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(2511), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2511), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2511), + [sym_preproc_if] = STATE(2511), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2527), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2527), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2527), - [sym_while_statement] = STATE(2527), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2511), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2511), + [aux_sym_translation_unit_repeat1] = STATE(2511), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2511), + [sym_while_statement] = STATE(2511), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -68092,7 +68200,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5227), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -68124,1639 +68232,1391 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1464] = { - [anon_sym_LPAREN2] = ACTIONS(5138), - [anon_sym_struct] = ACTIONS(5140), - [sym_auto] = ACTIONS(5140), - [anon_sym_signed] = ACTIONS(5140), - [anon_sym_mutable] = ACTIONS(5140), - [anon_sym_long] = ACTIONS(5140), - [anon_sym_COLON_COLON] = ACTIONS(5138), - [anon_sym_using] = ACTIONS(5140), - [sym_preproc_directive] = ACTIONS(5140), - [aux_sym_preproc_if_token1] = ACTIONS(5140), - [anon_sym_AMP] = ACTIONS(5140), - [anon_sym_static] = ACTIONS(5140), - [anon_sym_volatile] = ACTIONS(5140), - [anon_sym_RBRACE] = ACTIONS(5138), - [anon_sym_typedef] = ACTIONS(5140), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_union] = ACTIONS(5140), - [anon_sym_typename] = ACTIONS(5140), - [anon_sym_private] = ACTIONS(5140), - [anon_sym_explicit] = ACTIONS(5140), - [anon_sym_short] = ACTIONS(5140), - [sym_identifier] = ACTIONS(5140), - [sym_operator_name] = ACTIONS(5138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5140), - [anon_sym_register] = ACTIONS(5140), - [anon_sym__Atomic] = ACTIONS(5140), - [anon_sym_const] = ACTIONS(5140), - [anon_sym_extern] = ACTIONS(5140), - [anon_sym_virtual] = ACTIONS(5140), - [anon_sym_enum] = ACTIONS(5140), - [anon_sym_class] = ACTIONS(5140), - [anon_sym_constexpr] = ACTIONS(5140), - [sym_primitive_type] = ACTIONS(5140), - [anon_sym_unsigned] = ACTIONS(5140), - [anon_sym_public] = ACTIONS(5140), - [anon_sym_protected] = ACTIONS(5140), - [anon_sym_friend] = ACTIONS(5140), - [anon_sym_template] = ACTIONS(5140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5140), - [anon_sym_TILDE] = ACTIONS(5138), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_inline] = ACTIONS(5140), - [anon_sym_restrict] = ACTIONS(5140), + [1462] = { + [anon_sym_LPAREN2] = ACTIONS(5229), + [anon_sym_struct] = ACTIONS(5231), + [sym_auto] = ACTIONS(5231), + [anon_sym_signed] = ACTIONS(5231), + [anon_sym_mutable] = ACTIONS(5231), + [anon_sym_long] = ACTIONS(5231), + [anon_sym_COLON_COLON] = ACTIONS(5229), + [anon_sym_using] = ACTIONS(5231), + [sym_preproc_directive] = ACTIONS(5231), + [aux_sym_preproc_if_token1] = ACTIONS(5231), + [anon_sym_AMP] = ACTIONS(5231), + [anon_sym_static] = ACTIONS(5231), + [anon_sym_volatile] = ACTIONS(5231), + [anon_sym_RBRACE] = ACTIONS(5229), + [anon_sym_typedef] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_union] = ACTIONS(5231), + [anon_sym_typename] = ACTIONS(5231), + [anon_sym_private] = ACTIONS(5231), + [anon_sym_explicit] = ACTIONS(5231), + [anon_sym_short] = ACTIONS(5231), + [sym_identifier] = ACTIONS(5231), + [sym_operator_name] = ACTIONS(5229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5231), + [anon_sym_register] = ACTIONS(5231), + [anon_sym__Atomic] = ACTIONS(5231), + [anon_sym_const] = ACTIONS(5231), + [anon_sym_extern] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_virtual] = ACTIONS(5231), + [anon_sym_enum] = ACTIONS(5231), + [anon_sym_class] = ACTIONS(5231), + [anon_sym_constexpr] = ACTIONS(5231), + [sym_primitive_type] = ACTIONS(5231), + [anon_sym_unsigned] = ACTIONS(5231), + [anon_sym_public] = ACTIONS(5231), + [anon_sym_protected] = ACTIONS(5231), + [anon_sym_friend] = ACTIONS(5231), + [anon_sym_template] = ACTIONS(5231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5229), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5231), + [anon_sym_TILDE] = ACTIONS(5229), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5229), + [anon_sym_inline] = ACTIONS(5231), + [anon_sym_restrict] = ACTIONS(5231), }, - [1465] = { - [anon_sym_LPAREN2] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_mutable] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1697), - [aux_sym_preproc_if_token1] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_typename] = ACTIONS(1697), - [anon_sym_private] = ACTIONS(1697), - [anon_sym_explicit] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1697), - [sym_operator_name] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_virtual] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_protected] = ACTIONS(1697), - [anon_sym_friend] = ACTIONS(1697), - [anon_sym_template] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), + [1463] = { + [anon_sym_LPAREN2] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1762), + [sym_auto] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1762), + [anon_sym_mutable] = ACTIONS(1762), + [anon_sym_long] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_using] = ACTIONS(1762), + [sym_preproc_directive] = ACTIONS(1762), + [aux_sym_preproc_if_token1] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_typedef] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_typename] = ACTIONS(1762), + [anon_sym_private] = ACTIONS(1762), + [anon_sym_explicit] = ACTIONS(1762), + [anon_sym_short] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1762), + [sym_operator_name] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_virtual] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [sym_primitive_type] = ACTIONS(1762), + [anon_sym_unsigned] = ACTIONS(1762), + [anon_sym_public] = ACTIONS(1762), + [anon_sym_protected] = ACTIONS(1762), + [anon_sym_friend] = ACTIONS(1762), + [anon_sym_template] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), }, - [1466] = { - [sym_compound_statement] = STATE(2506), - [sym_delete_method_clause] = STATE(2506), - [sym_default_method_clause] = STATE(2506), - [anon_sym_EQ] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), + [1464] = { + [sym_compound_statement] = STATE(2512), + [sym_default_method_clause] = STATE(2512), + [sym_delete_method_clause] = STATE(2512), + [anon_sym_EQ] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), [sym_comment] = ACTIONS(3), }, - [1467] = { - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(1439), - [sym_storage_class_specifier] = STATE(1439), - [sym_type_qualifier] = STATE(1439), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym__declaration_specifiers] = STATE(2528), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [1465] = { + [sym_storage_class_specifier] = STATE(2513), + [sym_type_qualifier] = STATE(2513), + [aux_sym__declaration_specifiers_repeat1] = STATE(2513), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_restrict] = ACTIONS(11), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(1785), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1787), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(1787), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_EQ] = ACTIONS(1785), + [sym_operator_name] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1785), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(11), - }, - [1468] = { - [sym_attribute] = STATE(1468), - [aux_sym_function_definition_repeat1] = STATE(1468), - [anon_sym_struct] = ACTIONS(2040), - [sym_auto] = ACTIONS(2040), - [anon_sym_signed] = ACTIONS(2040), - [anon_sym_mutable] = ACTIONS(2040), - [anon_sym_long] = ACTIONS(2040), - [anon_sym_register] = ACTIONS(2040), - [anon_sym__Atomic] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(2042), - [anon_sym_virtual] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_constexpr] = ACTIONS(2040), - [sym_primitive_type] = ACTIONS(2040), - [anon_sym_unsigned] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_volatile] = ACTIONS(2040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_typename] = ACTIONS(2040), - [anon_sym_explicit] = ACTIONS(2040), - [anon_sym_short] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2040), - [anon_sym_restrict] = ACTIONS(2040), }, - [1469] = { - [sym_function_field_declarator] = STATE(2529), - [sym_reference_field_declarator] = STATE(2529), - [sym_template_method] = STATE(2529), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(2529), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(2529), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(2529), - [sym_bitfield_clause] = STATE(2491), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(2491), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(5066), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(5068), - [sym_operator_name] = ACTIONS(5142), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), + [1466] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1466), + [anon_sym_LPAREN2] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [sym_operator_name] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(5233), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(5233), + [anon_sym_register] = ACTIONS(1783), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(5233), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1783), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(5233), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), }, - [1470] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2530), - [sym_storage_class_specifier] = STATE(2530), - [sym_type_qualifier] = STATE(2530), - [anon_sym_LPAREN2] = ACTIONS(1675), + [1467] = { + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [anon_sym_LPAREN2] = ACTIONS(1785), [anon_sym_restrict] = ACTIONS(11), [anon_sym_mutable] = ACTIONS(11), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(1785), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1787), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_COLON] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(1787), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_EQ] = ACTIONS(1675), - [sym_operator_name] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_EQ] = ACTIONS(1785), + [sym_operator_name] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1785), [anon_sym_inline] = ACTIONS(63), }, - [1471] = { - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_LBRACE] = ACTIONS(5144), - [anon_sym_mutable] = ACTIONS(5146), - [anon_sym_DASH_DASH] = ACTIONS(5144), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5144), - [anon_sym_EQ] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(5144), - [anon_sym_final] = ACTIONS(5146), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_static] = ACTIONS(5146), - [anon_sym_volatile] = ACTIONS(5146), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5144), - [anon_sym_STAR] = ACTIONS(5144), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5144), - [anon_sym_COLON] = ACTIONS(5146), - [anon_sym_explicit] = ACTIONS(5146), - [sym_identifier] = ACTIONS(5146), - [anon_sym_RBRACE] = ACTIONS(5144), - [anon_sym_override] = ACTIONS(5146), - [sym_operator_name] = ACTIONS(5144), - [sym_noexcept] = ACTIONS(5146), - [anon_sym_CARET] = ACTIONS(5144), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_register] = ACTIONS(5146), - [anon_sym__Atomic] = ACTIONS(5146), - [anon_sym_const] = ACTIONS(5146), - [anon_sym_extern] = ACTIONS(5146), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5146), - [anon_sym_LT_LT] = ACTIONS(5144), - [anon_sym_constexpr] = ACTIONS(5146), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_TILDE] = ACTIONS(5144), - [anon_sym_SEMI] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_inline] = ACTIONS(5146), - [anon_sym_RPAREN] = ACTIONS(5144), - [anon_sym_restrict] = ACTIONS(5146), - [anon_sym_GT_GT] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5144), - }, - [1472] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(1472), - [sym_preproc_function_def] = STATE(1472), - [sym_alias_declaration] = STATE(1472), - [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), - [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(1472), - [sym_preproc_if_in_field_declaration_list] = STATE(1472), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1472), - [sym_type_definition] = STATE(1472), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(1472), - [sym__field_declaration_list_item] = STATE(1472), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1472), - [sym_inline_method_definition] = STATE(1472), - [sym_friend_declaration] = STATE(1472), - [sym_access_specifier] = STATE(1472), - [sym_using_declaration] = STATE(1472), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(1472), - [sym_constructor_or_destructor_definition] = STATE(1472), - [sym_constructor_or_destructor_declaration] = STATE(1472), - [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_struct] = ACTIONS(5151), - [sym_auto] = ACTIONS(5154), - [anon_sym_signed] = ACTIONS(5157), - [anon_sym_mutable] = ACTIONS(5160), - [anon_sym_long] = ACTIONS(5157), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_using] = ACTIONS(5166), - [sym_preproc_directive] = ACTIONS(5169), - [aux_sym_preproc_if_token1] = ACTIONS(5172), - [anon_sym_AMP] = ACTIONS(5175), - [anon_sym_static] = ACTIONS(5178), - [anon_sym_volatile] = ACTIONS(5160), - [anon_sym_RBRACE] = ACTIONS(5181), - [anon_sym_typedef] = ACTIONS(5183), - [anon_sym_STAR] = ACTIONS(5186), - [anon_sym_union] = ACTIONS(5189), - [anon_sym_typename] = ACTIONS(5192), - [anon_sym_private] = ACTIONS(5195), - [anon_sym_explicit] = ACTIONS(5160), - [anon_sym_short] = ACTIONS(5157), - [sym_identifier] = ACTIONS(5198), - [sym_operator_name] = ACTIONS(5201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5204), - [anon_sym_register] = ACTIONS(5178), - [anon_sym__Atomic] = ACTIONS(5160), - [anon_sym_const] = ACTIONS(5160), - [anon_sym_extern] = ACTIONS(5178), - [anon_sym_virtual] = ACTIONS(5207), - [anon_sym_enum] = ACTIONS(5210), - [anon_sym_class] = ACTIONS(5213), - [anon_sym_constexpr] = ACTIONS(5160), - [sym_primitive_type] = ACTIONS(5154), - [anon_sym_unsigned] = ACTIONS(5157), - [anon_sym_public] = ACTIONS(5195), - [anon_sym_protected] = ACTIONS(5195), - [anon_sym_friend] = ACTIONS(5216), - [anon_sym_template] = ACTIONS(5219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5204), - [anon_sym_TILDE] = ACTIONS(5225), + [1468] = { + [sym_compound_statement] = STATE(2512), + [sym_field_initializer_list] = STATE(2515), + [sym_delete_method_clause] = STATE(2512), + [sym_default_method_clause] = STATE(2512), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5231), - [anon_sym_inline] = ACTIONS(5178), - [anon_sym_restrict] = ACTIONS(5160), - }, - [1473] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1473), - [anon_sym_LPAREN2] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [sym_operator_name] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(5234), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(5234), - [anon_sym_register] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(5234), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_COLON] = ACTIONS(2082), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(5234), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), }, - [1474] = { - [anon_sym_LPAREN2] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_mutable] = ACTIONS(5239), - [anon_sym_DASH_DASH] = ACTIONS(5237), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_COLON_COLON] = ACTIONS(5237), - [anon_sym_final] = ACTIONS(5239), - [anon_sym_EQ_EQ] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_AMP] = ACTIONS(5239), - [anon_sym_static] = ACTIONS(5239), - [anon_sym_volatile] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_GT_EQ] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5239), - [anon_sym_explicit] = ACTIONS(5239), - [sym_identifier] = ACTIONS(5239), - [anon_sym_RBRACE] = ACTIONS(5237), - [anon_sym_override] = ACTIONS(5239), - [sym_operator_name] = ACTIONS(5237), - [sym_noexcept] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_register] = ACTIONS(5239), - [anon_sym__Atomic] = ACTIONS(5239), - [anon_sym_const] = ACTIONS(5239), - [anon_sym_extern] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5239), - [anon_sym_LT_LT] = ACTIONS(5237), - [anon_sym_constexpr] = ACTIONS(5239), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5237), - [anon_sym_QMARK] = ACTIONS(5237), - [anon_sym_TILDE] = ACTIONS(5237), - [anon_sym_SEMI] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_inline] = ACTIONS(5239), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_restrict] = ACTIONS(5239), - [anon_sym_GT_GT] = ACTIONS(5237), - [anon_sym_DASH_GT] = ACTIONS(5237), + [1469] = { + [anon_sym_LPAREN2] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5236), + [anon_sym_LBRACE] = ACTIONS(5236), + [anon_sym_mutable] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5236), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_COLON_COLON] = ACTIONS(5236), + [anon_sym_final] = ACTIONS(5238), + [anon_sym_EQ_EQ] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_static] = ACTIONS(5238), + [anon_sym_volatile] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_explicit] = ACTIONS(5238), + [sym_identifier] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_override] = ACTIONS(5238), + [sym_operator_name] = ACTIONS(5236), + [sym_noexcept] = ACTIONS(5238), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_register] = ACTIONS(5238), + [anon_sym__Atomic] = ACTIONS(5238), + [anon_sym_const] = ACTIONS(5238), + [anon_sym_extern] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5238), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_constexpr] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_TILDE] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym_BANG_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_inline] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_restrict] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_DASH_GT] = ACTIONS(5236), }, - [1475] = { - [sym_field_declaration_list] = STATE(2531), - [anon_sym_LBRACE] = ACTIONS(302), + [1470] = { + [sym_field_declaration_list] = STATE(2516), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), }, - [1476] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2532), - [sym_logical_expression] = STATE(2532), - [sym_bitwise_expression] = STATE(2532), - [sym_cast_expression] = STATE(2532), - [sym_new_expression] = STATE(2532), + [1471] = { + [sym_template_function] = STATE(2517), + [sym__expression] = STATE(2517), + [sym_logical_expression] = STATE(2517), + [sym_bitwise_expression] = STATE(2517), + [sym_cast_expression] = STATE(2517), + [sym_delete_expression] = STATE(2517), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(2532), - [sym_char_literal] = STATE(2532), - [sym_template_function] = STATE(2532), - [sym_conditional_expression] = STATE(2532), - [sym_equality_expression] = STATE(2532), - [sym_relational_expression] = STATE(2532), - [sym_delete_expression] = STATE(2532), - [sym_sizeof_expression] = STATE(2532), - [sym_parenthesized_expression] = STATE(2532), - [sym_lambda_expression] = STATE(2532), - [sym_concatenated_string] = STATE(2532), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(2517), + [sym_lambda_expression] = STATE(2517), + [sym_char_literal] = STATE(2517), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2517), + [sym_equality_expression] = STATE(2517), + [sym_relational_expression] = STATE(2517), + [sym_sizeof_expression] = STATE(2517), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(2532), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2517), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(2517), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2517), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(2532), - [sym_math_expression] = STATE(2532), + [sym_shift_expression] = STATE(2517), + [sym_math_expression] = STATE(2517), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(5241), + [sym_new_expression] = STATE(2517), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(5240), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(5243), + [sym_true] = ACTIONS(5242), [anon_sym_DASH_DASH] = ACTIONS(45), - [sym_null] = ACTIONS(5243), + [sym_null] = ACTIONS(5242), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5241), + [sym_number_literal] = ACTIONS(5240), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1343), [anon_sym_BANG] = ACTIONS(15), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(5243), - [sym_nullptr] = ACTIONS(5243), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(5242), + [sym_nullptr] = ACTIONS(5242), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1343), [anon_sym_TILDE] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1343), [sym_identifier] = ACTIONS(123), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(25), }, - [1477] = { - [anon_sym_DASH] = ACTIONS(5245), - [sym_raw_string_literal] = ACTIONS(5247), - [sym_true] = ACTIONS(5245), - [anon_sym_mutable] = ACTIONS(5245), - [sym_null] = ACTIONS(5245), - [anon_sym_break] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_sizeof] = ACTIONS(5245), - [anon_sym_volatile] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_typedef] = ACTIONS(5245), - [anon_sym_switch] = ACTIONS(5245), - [anon_sym_explicit] = ACTIONS(5245), - [sym_identifier] = ACTIONS(5245), - [anon_sym_delete] = ACTIONS(5245), - [anon_sym_continue] = ACTIONS(5245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5245), - [anon_sym__Atomic] = ACTIONS(5245), - [sym_number_literal] = ACTIONS(5247), - [anon_sym_extern] = ACTIONS(5245), - [anon_sym_enum] = ACTIONS(5245), - [anon_sym_constexpr] = ACTIONS(5245), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5247), - [anon_sym_namespace] = ACTIONS(5245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5245), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5247), - [anon_sym_DASH_DASH] = ACTIONS(5247), - [anon_sym_LPAREN2] = ACTIONS(5247), - [anon_sym_struct] = ACTIONS(5245), - [sym_auto] = ACTIONS(5245), - [anon_sym_signed] = ACTIONS(5245), - [anon_sym_long] = ACTIONS(5245), - [anon_sym_COLON_COLON] = ACTIONS(5247), - [anon_sym_using] = ACTIONS(5245), - [sym_preproc_directive] = ACTIONS(5245), - [aux_sym_preproc_if_token1] = ACTIONS(5245), - [anon_sym_AMP] = ACTIONS(5245), - [anon_sym_static] = ACTIONS(5245), - [anon_sym_RBRACE] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_union] = ACTIONS(5245), - [anon_sym_typename] = ACTIONS(5245), - [anon_sym_short] = ACTIONS(5245), - [anon_sym_new] = ACTIONS(5245), - [anon_sym_goto] = ACTIONS(5245), - [sym_operator_name] = ACTIONS(5247), - [anon_sym_while] = ACTIONS(5245), - [anon_sym_try] = ACTIONS(5245), - [anon_sym_for] = ACTIONS(5245), - [aux_sym_preproc_include_token1] = ACTIONS(5245), - [anon_sym_register] = ACTIONS(5245), - [anon_sym_DQUOTE] = ACTIONS(5247), - [anon_sym_const] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_class] = ACTIONS(5245), - [anon_sym_if] = ACTIONS(5245), - [sym_primitive_type] = ACTIONS(5245), - [sym_false] = ACTIONS(5245), - [sym_nullptr] = ACTIONS(5245), - [anon_sym_do] = ACTIONS(5245), - [anon_sym_template] = ACTIONS(5245), - [anon_sym_return] = ACTIONS(5245), - [anon_sym_TILDE] = ACTIONS(5247), - [anon_sym_SEMI] = ACTIONS(5247), - [ts_builtin_sym_end] = ACTIONS(5247), - [aux_sym_preproc_def_token1] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5247), - [anon_sym_inline] = ACTIONS(5245), - [anon_sym_PLUS_PLUS] = ACTIONS(5247), - [anon_sym_restrict] = ACTIONS(5245), + [1472] = { + [anon_sym_DASH] = ACTIONS(5244), + [sym_raw_string_literal] = ACTIONS(5246), + [sym_true] = ACTIONS(5244), + [anon_sym_mutable] = ACTIONS(5244), + [sym_null] = ACTIONS(5244), + [anon_sym_break] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5246), + [anon_sym_sizeof] = ACTIONS(5244), + [anon_sym_volatile] = ACTIONS(5244), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_typedef] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5244), + [anon_sym_explicit] = ACTIONS(5244), + [sym_identifier] = ACTIONS(5244), + [anon_sym_delete] = ACTIONS(5244), + [anon_sym_continue] = ACTIONS(5244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5244), + [anon_sym__Atomic] = ACTIONS(5244), + [sym_number_literal] = ACTIONS(5246), + [anon_sym_extern] = ACTIONS(5244), + [anon_sym_enum] = ACTIONS(5244), + [anon_sym_constexpr] = ACTIONS(5244), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5246), + [anon_sym_namespace] = ACTIONS(5244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5246), + [anon_sym_LPAREN2] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(5244), + [sym_auto] = ACTIONS(5244), + [anon_sym_signed] = ACTIONS(5244), + [anon_sym_long] = ACTIONS(5244), + [anon_sym_COLON_COLON] = ACTIONS(5246), + [anon_sym_using] = ACTIONS(5244), + [sym_preproc_directive] = ACTIONS(5244), + [aux_sym_preproc_if_token1] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_static] = ACTIONS(5244), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_union] = ACTIONS(5244), + [anon_sym_typename] = ACTIONS(5244), + [anon_sym_short] = ACTIONS(5244), + [anon_sym_new] = ACTIONS(5244), + [anon_sym_goto] = ACTIONS(5244), + [sym_operator_name] = ACTIONS(5246), + [anon_sym_while] = ACTIONS(5244), + [anon_sym_try] = ACTIONS(5244), + [anon_sym_for] = ACTIONS(5244), + [aux_sym_preproc_include_token1] = ACTIONS(5244), + [anon_sym_register] = ACTIONS(5244), + [anon_sym_DQUOTE] = ACTIONS(5246), + [anon_sym_const] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5244), + [anon_sym_class] = ACTIONS(5244), + [anon_sym_if] = ACTIONS(5244), + [sym_primitive_type] = ACTIONS(5244), + [sym_false] = ACTIONS(5244), + [sym_nullptr] = ACTIONS(5244), + [anon_sym_do] = ACTIONS(5244), + [anon_sym_template] = ACTIONS(5244), + [anon_sym_return] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(5246), + [ts_builtin_sym_end] = ACTIONS(5246), + [aux_sym_preproc_def_token1] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_inline] = ACTIONS(5244), + [anon_sym_PLUS_PLUS] = ACTIONS(5246), + [anon_sym_restrict] = ACTIONS(5244), }, - [1478] = { - [anon_sym_COLON_COLON] = ACTIONS(2173), + [1473] = { + [anon_sym_COLON_COLON] = ACTIONS(2175), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2164), }, - [1479] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(1483), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(2933), + [1474] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(1476), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(2935), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(2933), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(2935), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2935), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2937), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2935), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), - }, - [1480] = { - [sym_abstract_array_declarator] = STATE(2537), - [sym_parameter_list] = STATE(2535), - [sym_abstract_reference_declarator] = STATE(2537), - [sym_abstract_function_declarator] = STATE(2537), - [aux_sym_type_definition_repeat1] = STATE(2536), - [sym_abstract_pointer_declarator] = STATE(2537), - [sym_type_qualifier] = STATE(2536), - [sym__abstract_declarator] = STATE(2537), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(5249), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), + [sym_primitive_type] = ACTIONS(358), }, - [1481] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(5255), - }, - [1482] = { - [sym_union_specifier] = STATE(2539), - [sym_macro_type_specifier] = STATE(2539), - [sym_class_specifier] = STATE(2539), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2539), - [sym_scoped_namespace_identifier] = STATE(88), + [1475] = { + [sym_union_specifier] = STATE(2518), + [sym_macro_type_specifier] = STATE(2518), + [sym_class_specifier] = STATE(2518), + [aux_sym_sized_type_specifier_repeat1] = STATE(1476), + [sym_sized_type_specifier] = STATE(2518), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(1483), - [sym__type_specifier] = STATE(2539), - [sym_enum_specifier] = STATE(2539), - [sym_dependent_type] = STATE(2539), - [sym_struct_specifier] = STATE(2539), - [sym_scoped_type_identifier] = STATE(87), + [sym__type_specifier] = STATE(2518), + [sym_struct_specifier] = STATE(2518), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(2518), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_type_qualifier] = STATE(388), + [sym_dependent_type] = STATE(2518), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(5257), - [anon_sym_signed] = ACTIONS(2933), + [sym_auto] = ACTIONS(5248), + [anon_sym_signed] = ACTIONS(2935), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2935), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(147), [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(5257), - [anon_sym_unsigned] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(5248), + [anon_sym_unsigned] = ACTIONS(2935), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2937), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2935), [anon_sym_restrict] = ACTIONS(11), }, - [1483] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2540), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(5259), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(5259), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(5259), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_short] = ACTIONS(5259), - [sym_identifier] = ACTIONS(1074), - [anon_sym_restrict] = ACTIONS(625), + [1476] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2519), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(5250), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(5250), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(5250), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_short] = ACTIONS(5250), + [sym_identifier] = ACTIONS(1066), + [anon_sym_restrict] = ACTIONS(558), }, - [1484] = { - [anon_sym_COLON_COLON] = ACTIONS(3750), + [1477] = { + [sym_abstract_reference_declarator] = STATE(2524), + [aux_sym_type_definition_repeat1] = STATE(2522), + [sym_abstract_array_declarator] = STATE(2524), + [sym_parameter_list] = STATE(2523), + [sym_abstract_function_declarator] = STATE(2524), + [sym_abstract_pointer_declarator] = STATE(2524), + [sym_type_qualifier] = STATE(2522), + [sym__abstract_declarator] = STATE(2524), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(5256), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3739), }, - [1485] = { - [anon_sym_DASH] = ACTIONS(5261), - [sym_raw_string_literal] = ACTIONS(5263), - [sym_true] = ACTIONS(5261), - [anon_sym_mutable] = ACTIONS(5261), - [sym_null] = ACTIONS(5261), - [anon_sym_break] = ACTIONS(5261), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_sizeof] = ACTIONS(5261), - [anon_sym_volatile] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_typedef] = ACTIONS(5261), - [anon_sym_switch] = ACTIONS(5261), - [anon_sym_explicit] = ACTIONS(5261), - [sym_identifier] = ACTIONS(5261), - [anon_sym_delete] = ACTIONS(5261), - [anon_sym_continue] = ACTIONS(5261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5261), - [anon_sym__Atomic] = ACTIONS(5261), - [sym_number_literal] = ACTIONS(5263), - [anon_sym_extern] = ACTIONS(5261), - [anon_sym_enum] = ACTIONS(5261), - [anon_sym_constexpr] = ACTIONS(5261), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5263), - [anon_sym_namespace] = ACTIONS(5261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5261), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_LBRACE] = ACTIONS(5263), - [anon_sym_DASH_DASH] = ACTIONS(5263), - [anon_sym_LPAREN2] = ACTIONS(5263), - [anon_sym_struct] = ACTIONS(5261), - [sym_auto] = ACTIONS(5261), - [anon_sym_signed] = ACTIONS(5261), - [anon_sym_long] = ACTIONS(5261), - [anon_sym_COLON_COLON] = ACTIONS(5263), - [anon_sym_using] = ACTIONS(5261), - [sym_preproc_directive] = ACTIONS(5261), - [aux_sym_preproc_if_token1] = ACTIONS(5261), - [anon_sym_AMP] = ACTIONS(5261), - [anon_sym_static] = ACTIONS(5261), - [anon_sym_RBRACE] = ACTIONS(5263), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_union] = ACTIONS(5261), - [anon_sym_typename] = ACTIONS(5261), - [anon_sym_short] = ACTIONS(5261), - [anon_sym_new] = ACTIONS(5261), - [anon_sym_goto] = ACTIONS(5261), - [sym_operator_name] = ACTIONS(5263), - [anon_sym_while] = ACTIONS(5261), - [anon_sym_try] = ACTIONS(5261), - [anon_sym_for] = ACTIONS(5261), - [aux_sym_preproc_include_token1] = ACTIONS(5261), - [anon_sym_register] = ACTIONS(5261), - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_const] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_class] = ACTIONS(5261), - [anon_sym_if] = ACTIONS(5261), - [sym_primitive_type] = ACTIONS(5261), - [sym_false] = ACTIONS(5261), - [sym_nullptr] = ACTIONS(5261), - [anon_sym_do] = ACTIONS(5261), - [anon_sym_template] = ACTIONS(5261), - [anon_sym_return] = ACTIONS(5261), - [anon_sym_TILDE] = ACTIONS(5263), - [anon_sym_SEMI] = ACTIONS(5263), - [ts_builtin_sym_end] = ACTIONS(5263), - [aux_sym_preproc_def_token1] = ACTIONS(5261), - [anon_sym_AMP_AMP] = ACTIONS(5263), - [anon_sym_inline] = ACTIONS(5261), - [anon_sym_PLUS_PLUS] = ACTIONS(5263), - [anon_sym_restrict] = ACTIONS(5261), + [1478] = { + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(5258), }, - [1486] = { - [aux_sym_preproc_if_token2] = ACTIONS(5265), + [1479] = { + [anon_sym_COLON_COLON] = ACTIONS(3861), [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3850), }, - [1487] = { - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_DASH_GT] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_STAR_EQ] = ACTIONS(2816), - [anon_sym_LT_LT_EQ] = ACTIONS(2816), - [anon_sym_PERCENT_EQ] = ACTIONS(2816), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_CARET_EQ] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2816), - [anon_sym_SLASH_EQ] = ACTIONS(2816), - [anon_sym_PLUS_EQ] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_PIPE_EQ] = ACTIONS(2816), - [anon_sym_GT_GT_EQ] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2818), + [1480] = { + [anon_sym_DASH] = ACTIONS(5260), + [sym_raw_string_literal] = ACTIONS(5262), + [sym_true] = ACTIONS(5260), + [anon_sym_mutable] = ACTIONS(5260), + [sym_null] = ACTIONS(5260), + [anon_sym_break] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5262), + [anon_sym_sizeof] = ACTIONS(5260), + [anon_sym_volatile] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_typedef] = ACTIONS(5260), + [anon_sym_switch] = ACTIONS(5260), + [anon_sym_explicit] = ACTIONS(5260), + [sym_identifier] = ACTIONS(5260), + [anon_sym_delete] = ACTIONS(5260), + [anon_sym_continue] = ACTIONS(5260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5260), + [anon_sym__Atomic] = ACTIONS(5260), + [sym_number_literal] = ACTIONS(5262), + [anon_sym_extern] = ACTIONS(5260), + [anon_sym_enum] = ACTIONS(5260), + [anon_sym_constexpr] = ACTIONS(5260), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5262), + [anon_sym_namespace] = ACTIONS(5260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_DASH_DASH] = ACTIONS(5262), + [anon_sym_LPAREN2] = ACTIONS(5262), + [anon_sym_struct] = ACTIONS(5260), + [sym_auto] = ACTIONS(5260), + [anon_sym_signed] = ACTIONS(5260), + [anon_sym_long] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5262), + [anon_sym_using] = ACTIONS(5260), + [sym_preproc_directive] = ACTIONS(5260), + [aux_sym_preproc_if_token1] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_static] = ACTIONS(5260), + [anon_sym_RBRACE] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_union] = ACTIONS(5260), + [anon_sym_typename] = ACTIONS(5260), + [anon_sym_short] = ACTIONS(5260), + [anon_sym_new] = ACTIONS(5260), + [anon_sym_goto] = ACTIONS(5260), + [sym_operator_name] = ACTIONS(5262), + [anon_sym_while] = ACTIONS(5260), + [anon_sym_try] = ACTIONS(5260), + [anon_sym_for] = ACTIONS(5260), + [aux_sym_preproc_include_token1] = ACTIONS(5260), + [anon_sym_register] = ACTIONS(5260), + [anon_sym_DQUOTE] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5260), + [anon_sym_class] = ACTIONS(5260), + [anon_sym_if] = ACTIONS(5260), + [sym_primitive_type] = ACTIONS(5260), + [sym_false] = ACTIONS(5260), + [sym_nullptr] = ACTIONS(5260), + [anon_sym_do] = ACTIONS(5260), + [anon_sym_template] = ACTIONS(5260), + [anon_sym_return] = ACTIONS(5260), + [anon_sym_TILDE] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5262), + [ts_builtin_sym_end] = ACTIONS(5262), + [aux_sym_preproc_def_token1] = ACTIONS(5260), + [anon_sym_AMP_AMP] = ACTIONS(5262), + [anon_sym_inline] = ACTIONS(5260), + [anon_sym_PLUS_PLUS] = ACTIONS(5262), + [anon_sym_restrict] = ACTIONS(5260), + }, + [1481] = { + [aux_sym_preproc_if_token2] = ACTIONS(5264), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_DASH_EQ] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_AMP_EQ] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_EQ] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2816), }, - [1488] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(194), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [1482] = { + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_DASH_GT] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_STAR_EQ] = ACTIONS(2818), + [anon_sym_LT_LT_EQ] = ACTIONS(2818), + [anon_sym_PERCENT_EQ] = ACTIONS(2818), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_CARET_EQ] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_COLON] = ACTIONS(2818), + [anon_sym_SLASH_EQ] = ACTIONS(2818), + [anon_sym_PLUS_EQ] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_PIPE_EQ] = ACTIONS(2818), + [anon_sym_GT_GT_EQ] = ACTIONS(2818), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_DASH_EQ] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_AMP_EQ] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2818), + }, + [1483] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(5269), - [anon_sym_DASH_DASH] = ACTIONS(334), - [sym_null] = ACTIONS(5269), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5267), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(5269), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(196), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [sym_raw_string_literal] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(5268), + [anon_sym_DASH_DASH] = ACTIONS(336), + [sym_null] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5266), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(5268), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(1234), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(1240), }, - [1489] = { - [sym_template_argument_list] = STATE(1505), - [sym_virtual_specifier] = STATE(2544), - [sym_field_declaration_list] = STATE(2545), - [sym_base_class_clause] = STATE(2546), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_DASH_GT] = ACTIONS(1084), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1084), - [anon_sym_STAR_EQ] = ACTIONS(1084), - [anon_sym_LT_LT_EQ] = ACTIONS(1084), - [anon_sym_PERCENT_EQ] = ACTIONS(1084), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1084), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_CARET_EQ] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_SLASH] = ACTIONS(1086), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(1084), - [anon_sym_SLASH_EQ] = ACTIONS(1084), - [anon_sym_PLUS_EQ] = ACTIONS(1084), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1084), - [anon_sym_GT_GT_EQ] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_PERCENT] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_DASH_EQ] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_AMP_EQ] = ACTIONS(1084), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_LT_EQ] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(1086), + [1484] = { + [sym_virtual_specifier] = STATE(2529), + [sym_template_argument_list] = STATE(1500), + [sym_field_declaration_list] = STATE(2530), + [sym_base_class_clause] = STATE(2531), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_DASH_GT] = ACTIONS(1088), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_STAR_EQ] = ACTIONS(1088), + [anon_sym_LT_LT_EQ] = ACTIONS(1088), + [anon_sym_PERCENT_EQ] = ACTIONS(1088), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1088), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_CARET_EQ] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_SLASH_EQ] = ACTIONS(1088), + [anon_sym_PLUS_EQ] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1088), + [anon_sym_GT_GT_EQ] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_PERCENT] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_DASH_EQ] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_AMP_EQ] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(1090), }, - [1490] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(2548), - [sym_preproc_function_def] = STATE(2548), - [sym_alias_declaration] = STATE(2548), + [1485] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(2533), + [sym_preproc_function_def] = STATE(2533), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(2548), - [sym_preproc_if_in_field_declaration_list] = STATE(2548), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2548), - [sym_type_definition] = STATE(2548), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(2548), - [sym__field_declaration_list_item] = STATE(2548), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2548), - [sym_inline_method_definition] = STATE(2548), - [sym_friend_declaration] = STATE(2548), - [sym_access_specifier] = STATE(2548), - [sym_using_declaration] = STATE(2548), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(2548), - [sym_constructor_or_destructor_definition] = STATE(2548), - [sym_constructor_or_destructor_declaration] = STATE(2548), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2533), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(2533), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(2533), + [sym_preproc_if_in_field_declaration_list] = STATE(2533), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2533), + [sym_type_definition] = STATE(2533), + [sym_using_declaration] = STATE(2533), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(2533), + [sym_inline_method_definition] = STATE(2533), + [sym_constructor_or_destructor_definition] = STATE(2533), + [sym_access_specifier] = STATE(2533), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(2533), + [sym_alias_declaration] = STATE(2533), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(2533), + [sym_constructor_or_destructor_declaration] = STATE(2533), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(5273), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, + [1486] = { + [sym_virtual_specifier] = STATE(2534), + [sym_template_argument_list] = STATE(1517), + [sym_field_declaration_list] = STATE(2535), + [sym_base_class_clause] = STATE(2536), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(1132), + }, + [1487] = { + [sym_field_declaration_list] = STATE(2535), + [sym_base_class_clause] = STATE(2536), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), + }, + [1488] = { + [sym_virtual_specifier] = STATE(2534), + [sym_field_declaration_list] = STATE(2535), + [sym_base_class_clause] = STATE(2536), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(2997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(1132), + }, + [1489] = { + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_COLON] = ACTIONS(1130), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1132), + }, + [1490] = { + [sym_field_declaration_list] = STATE(2535), + [anon_sym_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), + }, [1491] = { - [sym_field_declaration_list] = STATE(2549), - [sym_base_class_clause] = STATE(2550), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2963), + [sym_virtual_specifier] = STATE(2537), + [sym_template_argument_list] = STATE(1500), + [sym_field_declaration_list] = STATE(2538), + [sym_base_class_clause] = STATE(2539), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_DASH_GT] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1259), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(1259), }, [1492] = { - [sym_virtual_specifier] = STATE(2551), - [sym_field_declaration_list] = STATE(2549), - [sym_base_class_clause] = STATE(2550), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(1128), + [sym_virtual_specifier] = STATE(2540), + [sym_template_argument_list] = STATE(1517), + [sym_field_declaration_list] = STATE(2541), + [sym_base_class_clause] = STATE(2542), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(1263), }, [1493] = { - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_COLON] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1128), + [sym_field_declaration_list] = STATE(2541), + [sym_base_class_clause] = STATE(2542), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), }, [1494] = { - [sym_template_argument_list] = STATE(1516), - [sym_virtual_specifier] = STATE(2551), - [sym_field_declaration_list] = STATE(2549), - [sym_base_class_clause] = STATE(2550), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(1128), + [sym_virtual_specifier] = STATE(2540), + [sym_field_declaration_list] = STATE(2541), + [sym_base_class_clause] = STATE(2542), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(2997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(1263), }, [1495] = { - [sym_field_declaration_list] = STATE(2549), - [anon_sym_LBRACE] = ACTIONS(2963), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1263), }, [1496] = { - [sym_template_argument_list] = STATE(1505), - [sym_virtual_specifier] = STATE(2552), - [sym_field_declaration_list] = STATE(2553), - [sym_base_class_clause] = STATE(2554), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_DASH_GT] = ACTIONS(1251), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1251), - [anon_sym_GT_GT_EQ] = ACTIONS(1251), - [anon_sym_COMMA] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_AMP_EQ] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(1253), + [sym_field_declaration_list] = STATE(2541), + [anon_sym_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), }, [1497] = { - [sym_field_declaration_list] = STATE(2555), - [sym_base_class_clause] = STATE(2556), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2963), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH_GT] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_PERCENT] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_GT_GT] = ACTIONS(1267), }, [1498] = { - [sym_virtual_specifier] = STATE(2557), - [sym_field_declaration_list] = STATE(2555), - [sym_base_class_clause] = STATE(2556), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_LT_LT_EQ] = ACTIONS(1255), - [anon_sym_PERCENT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_CARET_EQ] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1255), - [anon_sym_GT_GT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_DASH_GT] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_final] = ACTIONS(1141), + [anon_sym_STAR_EQ] = ACTIONS(1141), + [anon_sym_LT_LT_EQ] = ACTIONS(1141), + [anon_sym_PERCENT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1141), + [anon_sym_EQ_EQ] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_CARET_EQ] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_override] = ACTIONS(1141), + [anon_sym_COLON] = ACTIONS(1143), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_SLASH_EQ] = ACTIONS(1141), + [anon_sym_PLUS_EQ] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_PIPE_EQ] = ACTIONS(1141), + [anon_sym_GT_GT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_PERCENT] = ACTIONS(1143), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_DASH_EQ] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_BANG_EQ] = ACTIONS(1141), + [anon_sym_AMP_EQ] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_LT_EQ] = ACTIONS(1141), + [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1143), }, [1499] = { - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_LT_LT_EQ] = ACTIONS(1255), - [anon_sym_PERCENT_EQ] = ACTIONS(1255), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_CARET_EQ] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1255), - [anon_sym_GT_GT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1257), + [sym_identifier] = ACTIONS(5274), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1257), }, [1500] = { - [sym_template_argument_list] = STATE(1516), - [sym_virtual_specifier] = STATE(2557), - [sym_field_declaration_list] = STATE(2555), - [sym_base_class_clause] = STATE(2556), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_LT_LT_EQ] = ACTIONS(1255), - [anon_sym_PERCENT_EQ] = ACTIONS(1255), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_CARET_EQ] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1255), - [anon_sym_GT_GT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_LPAREN2] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DASH_GT] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_final] = ACTIONS(797), + [anon_sym_STAR_EQ] = ACTIONS(797), + [anon_sym_LT_LT_EQ] = ACTIONS(797), + [anon_sym_PERCENT_EQ] = ACTIONS(797), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_RBRACK_RBRACK] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_CARET_EQ] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_override] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(797), + [anon_sym_SLASH_EQ] = ACTIONS(797), + [anon_sym_PLUS_EQ] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_PIPE_EQ] = ACTIONS(797), + [anon_sym_GT_GT_EQ] = ACTIONS(797), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_LT_LT] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_PERCENT] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_DASH_EQ] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_AMP_EQ] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(795), }, [1501] = { - [sym_field_declaration_list] = STATE(2555), - [anon_sym_LBRACE] = ACTIONS(2963), + [sym_enumerator] = STATE(2546), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(5276), + [anon_sym_COMMA] = ACTIONS(5278), [sym_comment] = ACTIONS(3), }, [1502] = { - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH_GT] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_STAR_EQ] = ACTIONS(1259), - [anon_sym_LT_LT_EQ] = ACTIONS(1259), - [anon_sym_PERCENT_EQ] = ACTIONS(1259), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_CARET_EQ] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_COLON] = ACTIONS(1259), - [anon_sym_SLASH_EQ] = ACTIONS(1259), - [anon_sym_PLUS_EQ] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_PIPE_EQ] = ACTIONS(1259), - [anon_sym_GT_GT_EQ] = ACTIONS(1259), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT_LT] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_PERCENT] = ACTIONS(1261), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_DASH_EQ] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_AMP_EQ] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_GT_GT] = ACTIONS(1261), - }, - [1503] = { - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1135), - [anon_sym_DASH_GT] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1135), - [anon_sym_final] = ACTIONS(1135), - [anon_sym_STAR_EQ] = ACTIONS(1135), - [anon_sym_LT_LT_EQ] = ACTIONS(1135), - [anon_sym_PERCENT_EQ] = ACTIONS(1135), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1135), - [anon_sym_EQ_EQ] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_CARET_EQ] = ACTIONS(1135), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_GT_EQ] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_SLASH] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1135), - [anon_sym_SLASH_EQ] = ACTIONS(1135), - [anon_sym_PLUS_EQ] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1137), - [anon_sym_GT] = ACTIONS(1137), - [anon_sym_PIPE_EQ] = ACTIONS(1135), - [anon_sym_GT_GT_EQ] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_PERCENT] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_DASH_EQ] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_BANG_EQ] = ACTIONS(1135), - [anon_sym_AMP_EQ] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1135), - [anon_sym_EQ] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1137), - }, - [1504] = { - [sym_identifier] = ACTIONS(5275), - [sym_comment] = ACTIONS(3), - }, - [1505] = { - [anon_sym_LPAREN2] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(789), - [anon_sym_DASH_GT] = ACTIONS(789), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_final] = ACTIONS(789), - [anon_sym_STAR_EQ] = ACTIONS(789), - [anon_sym_LT_LT_EQ] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_RBRACK_RBRACK] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_CARET_EQ] = ACTIONS(789), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_override] = ACTIONS(789), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_SLASH_EQ] = ACTIONS(789), - [anon_sym_PLUS_EQ] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_PIPE_EQ] = ACTIONS(789), - [anon_sym_GT_GT_EQ] = ACTIONS(789), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_DASH_EQ] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_AMP_EQ] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(787), - }, - [1506] = { - [sym_enumerator] = STATE(2561), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(5277), - [anon_sym_COMMA] = ACTIONS(5279), - [sym_comment] = ACTIONS(3), - }, - [1507] = { - [sym_enumerator_list] = STATE(2562), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(872), - [anon_sym_STAR_EQ] = ACTIONS(872), - [anon_sym_LT_LT_EQ] = ACTIONS(872), - [anon_sym_PERCENT_EQ] = ACTIONS(872), - [anon_sym_RBRACK_RBRACK] = ACTIONS(872), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_CARET_EQ] = ACTIONS(872), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(872), - [anon_sym_COLON] = ACTIONS(872), - [anon_sym_SLASH_EQ] = ACTIONS(872), - [anon_sym_PLUS_EQ] = ACTIONS(872), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_PIPE_EQ] = ACTIONS(872), - [anon_sym_GT_GT_EQ] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_DOT] = ACTIONS(872), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PERCENT] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(872), - [anon_sym_DASH_EQ] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_AMP_EQ] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_GT_GT] = ACTIONS(874), - }, - [1508] = { + [sym_enumerator_list] = STATE(2547), [anon_sym_LPAREN2] = ACTIONS(876), [anon_sym_DASH] = ACTIONS(878), [anon_sym_DASH_DASH] = ACTIONS(876), @@ -69802,1044 +69662,1090 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(876), [anon_sym_GT_GT] = ACTIONS(878), }, + [1503] = { + [anon_sym_LPAREN2] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_DASH_GT] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_STAR_EQ] = ACTIONS(880), + [anon_sym_LT_LT_EQ] = ACTIONS(880), + [anon_sym_PERCENT_EQ] = ACTIONS(880), + [anon_sym_RBRACK_RBRACK] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_CARET_EQ] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_SLASH_EQ] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_PIPE_EQ] = ACTIONS(880), + [anon_sym_GT_GT_EQ] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_PERCENT] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(880), + [anon_sym_DASH_EQ] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_AMP_EQ] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(882), + }, + [1504] = { + [sym_virtual_specifier] = STATE(2548), + [sym_template_argument_list] = STATE(1500), + [sym_field_declaration_list] = STATE(2549), + [sym_base_class_clause] = STATE(2550), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH_GT] = ACTIONS(1486), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1486), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(1488), + }, + [1505] = { + [sym_virtual_specifier] = STATE(2551), + [sym_template_argument_list] = STATE(1517), + [sym_field_declaration_list] = STATE(2552), + [sym_base_class_clause] = STATE(2553), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(1492), + }, + [1506] = { + [sym_field_declaration_list] = STATE(2552), + [sym_base_class_clause] = STATE(2553), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), + }, + [1507] = { + [sym_virtual_specifier] = STATE(2551), + [sym_field_declaration_list] = STATE(2552), + [sym_base_class_clause] = STATE(2553), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(2997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(1492), + }, + [1508] = { + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_COLON] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_GT_GT] = ACTIONS(1492), + }, [1509] = { - [sym_template_argument_list] = STATE(1505), - [sym_virtual_specifier] = STATE(2563), - [sym_field_declaration_list] = STATE(2564), - [sym_base_class_clause] = STATE(2565), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH_GT] = ACTIONS(1472), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_LT_LT_EQ] = ACTIONS(1472), - [anon_sym_PERCENT_EQ] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1472), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_CARET_EQ] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_SLASH] = ACTIONS(1474), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_PIPE_EQ] = ACTIONS(1472), - [anon_sym_GT_GT_EQ] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_LT_LT] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_AMP_EQ] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(1474), + [sym_field_declaration_list] = STATE(2552), + [anon_sym_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), }, [1510] = { - [sym_field_declaration_list] = STATE(2566), - [sym_base_class_clause] = STATE(2567), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2963), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_LT_LT_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_CARET_EQ] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_PIPE_EQ] = ACTIONS(1770), + [anon_sym_GT_GT_EQ] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_AMP_EQ] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1772), }, [1511] = { - [sym_virtual_specifier] = STATE(2568), - [sym_field_declaration_list] = STATE(2566), - [sym_base_class_clause] = STATE(2567), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_STAR_EQ] = ACTIONS(1774), + [anon_sym_LT_LT_EQ] = ACTIONS(1774), + [anon_sym_PERCENT_EQ] = ACTIONS(1774), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1774), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1774), + [anon_sym_SLASH_EQ] = ACTIONS(1774), + [anon_sym_PLUS_EQ] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_PIPE_EQ] = ACTIONS(1774), + [anon_sym_GT_GT_EQ] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_DASH_EQ] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_AMP_EQ] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1776), }, [1512] = { - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_COLON] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1512), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(5280), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(5280), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(5280), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(5280), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), }, [1513] = { - [sym_template_argument_list] = STATE(1516), - [sym_virtual_specifier] = STATE(2568), - [sym_field_declaration_list] = STATE(2566), - [sym_base_class_clause] = STATE(2567), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(1478), + [sym_template_function] = STATE(2554), + [sym__expression] = STATE(2554), + [sym_logical_expression] = STATE(2554), + [sym_bitwise_expression] = STATE(2554), + [sym_cast_expression] = STATE(2554), + [sym_delete_expression] = STATE(2554), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2554), + [sym_lambda_expression] = STATE(2554), + [sym_char_literal] = STATE(2554), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2554), + [sym_equality_expression] = STATE(2554), + [sym_relational_expression] = STATE(2554), + [sym_sizeof_expression] = STATE(2554), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(2554), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2554), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2554), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2554), + [sym_math_expression] = STATE(2554), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2554), + [sym_raw_string_literal] = ACTIONS(5283), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(5285), + [sym_null] = ACTIONS(5285), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(5283), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(5285), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(5285), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, [1514] = { - [sym_field_declaration_list] = STATE(2566), - [anon_sym_LBRACE] = ACTIONS(2963), + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3138), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, [1515] = { - [sym_identifier] = ACTIONS(5281), + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3138), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, [1516] = { - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_DASH_GT] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_final] = ACTIONS(2036), - [anon_sym_STAR_EQ] = ACTIONS(2036), - [anon_sym_LT_LT_EQ] = ACTIONS(2036), - [anon_sym_PERCENT_EQ] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2036), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_CARET_EQ] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_override] = ACTIONS(2036), - [anon_sym_COLON] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_SLASH_EQ] = ACTIONS(2036), - [anon_sym_PLUS_EQ] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2038), - [anon_sym_GT] = ACTIONS(2038), - [anon_sym_PIPE_EQ] = ACTIONS(2036), - [anon_sym_GT_GT_EQ] = ACTIONS(2036), - [anon_sym_COMMA] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_PERCENT] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2036), - [anon_sym_DASH_EQ] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_AMP_EQ] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_LT_EQ] = ACTIONS(2036), - [anon_sym_EQ] = ACTIONS(2038), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2038), + [sym_new_declarator] = STATE(2556), + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, [1517] = { - [anon_sym_LPAREN2] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_DASH_GT] = ACTIONS(2069), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_STAR_EQ] = ACTIONS(2069), - [anon_sym_LT_LT_EQ] = ACTIONS(2069), - [anon_sym_PERCENT_EQ] = ACTIONS(2069), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_CARET_EQ] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_SLASH] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_COLON] = ACTIONS(2069), - [anon_sym_SLASH_EQ] = ACTIONS(2069), - [anon_sym_PLUS_EQ] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2071), - [anon_sym_GT] = ACTIONS(2071), - [anon_sym_PIPE_EQ] = ACTIONS(2069), - [anon_sym_GT_GT_EQ] = ACTIONS(2069), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_PERCENT] = ACTIONS(2071), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2069), - [anon_sym_DASH_EQ] = ACTIONS(2069), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_AMP_EQ] = ACTIONS(2069), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2071), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_DASH_GT] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_final] = ACTIONS(1683), + [anon_sym_STAR_EQ] = ACTIONS(1683), + [anon_sym_LT_LT_EQ] = ACTIONS(1683), + [anon_sym_PERCENT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_CARET_EQ] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_override] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_SLASH_EQ] = ACTIONS(1683), + [anon_sym_PLUS_EQ] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_PIPE_EQ] = ACTIONS(1683), + [anon_sym_GT_GT_EQ] = ACTIONS(1683), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1683), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_PERCENT] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1683), + [anon_sym_DASH_EQ] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_AMP_EQ] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_GT_GT] = ACTIONS(1685), }, [1518] = { - [anon_sym_LPAREN2] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_DASH_GT] = ACTIONS(2073), - [anon_sym_RPAREN] = ACTIONS(2073), - [anon_sym_STAR_EQ] = ACTIONS(2073), - [anon_sym_LT_LT_EQ] = ACTIONS(2073), - [anon_sym_PERCENT_EQ] = ACTIONS(2073), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2073), - [anon_sym_EQ_EQ] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_CARET_EQ] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2075), - [anon_sym_GT_EQ] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_SLASH] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_COLON] = ACTIONS(2073), - [anon_sym_SLASH_EQ] = ACTIONS(2073), - [anon_sym_PLUS_EQ] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2075), - [anon_sym_GT] = ACTIONS(2075), - [anon_sym_PIPE_EQ] = ACTIONS(2073), - [anon_sym_GT_GT_EQ] = ACTIONS(2073), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(2073), - [anon_sym_DOT] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_PERCENT] = ACTIONS(2075), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2073), - [anon_sym_DASH_EQ] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_BANG_EQ] = ACTIONS(2073), - [anon_sym_AMP_EQ] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(2073), - [anon_sym_LT_EQ] = ACTIONS(2073), - [anon_sym_EQ] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_GT_GT] = ACTIONS(2075), + [sym_identifier] = ACTIONS(5287), + [sym_comment] = ACTIONS(3), }, [1519] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1519), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(5283), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(5283), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(5283), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(5283), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [sym_template_function] = STATE(2558), + [sym__expression] = STATE(2558), + [sym_logical_expression] = STATE(2558), + [sym_bitwise_expression] = STATE(2558), + [sym_cast_expression] = STATE(2558), + [sym_delete_expression] = STATE(2558), + [sym_field_expression] = STATE(2558), + [sym_compound_literal_expression] = STATE(2558), + [sym_lambda_expression] = STATE(2558), + [sym_char_literal] = STATE(2558), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2558), + [sym_equality_expression] = STATE(2558), + [sym_relational_expression] = STATE(2558), + [sym_sizeof_expression] = STATE(2558), + [sym_subscript_expression] = STATE(2558), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2558), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(2558), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2558), + [sym_pointer_expression] = STATE(2558), + [sym_shift_expression] = STATE(2558), + [sym_math_expression] = STATE(2558), + [sym_call_expression] = STATE(2558), + [sym_new_expression] = STATE(2558), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(5289), + [anon_sym_DASH] = ACTIONS(330), + [sym_true] = ACTIONS(5291), + [anon_sym_DASH_DASH] = ACTIONS(336), + [sym_null] = ACTIONS(5291), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5289), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(342), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(5291), + [sym_nullptr] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), }, [1520] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2570), - [sym_logical_expression] = STATE(2570), - [sym_bitwise_expression] = STATE(2570), - [sym_cast_expression] = STATE(2570), - [sym_new_expression] = STATE(2570), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2570), - [sym_char_literal] = STATE(2570), - [sym_template_function] = STATE(2570), - [sym_conditional_expression] = STATE(2570), - [sym_equality_expression] = STATE(2570), - [sym_relational_expression] = STATE(2570), - [sym_delete_expression] = STATE(2570), - [sym_sizeof_expression] = STATE(2570), - [sym_parenthesized_expression] = STATE(2570), - [sym_lambda_expression] = STATE(2570), - [sym_concatenated_string] = STATE(2570), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2570), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2570), - [sym_math_expression] = STATE(2570), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(5288), - [sym_null] = ACTIONS(5288), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5286), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(5288), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5288), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_DASH_GT] = ACTIONS(3186), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_LT_LT_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_CARET_EQ] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3188), + [anon_sym_GT] = ACTIONS(3188), + [anon_sym_PIPE_EQ] = ACTIONS(3186), + [anon_sym_GT_GT_EQ] = ACTIONS(3186), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_AMP_EQ] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3186), }, [1521] = { - [sym_argument_list] = STATE(2571), - [sym_initializer_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_DASH_GT] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_STAR_EQ] = ACTIONS(1661), + [anon_sym_LT_LT_EQ] = ACTIONS(1661), + [anon_sym_PERCENT_EQ] = ACTIONS(1661), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1661), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_CARET_EQ] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_COLON] = ACTIONS(1661), + [anon_sym_SLASH_EQ] = ACTIONS(1661), + [anon_sym_PLUS_EQ] = ACTIONS(1661), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_PIPE_EQ] = ACTIONS(1661), + [anon_sym_GT_GT_EQ] = ACTIONS(1661), + [anon_sym_COMMA] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_DOT] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_DASH_EQ] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_AMP_EQ] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_EQ] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_GT_GT] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(1661), }, [1522] = { - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3138), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - }, - [1523] = { - [sym_initializer_list] = STATE(2571), - [sym_new_declarator] = STATE(2572), - [sym_argument_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - }, - [1524] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2573), - [sym_logical_expression] = STATE(2573), - [sym_bitwise_expression] = STATE(2573), - [sym_cast_expression] = STATE(2573), - [sym_new_expression] = STATE(2573), - [sym_field_expression] = STATE(2573), - [sym_compound_literal_expression] = STATE(2573), - [sym_char_literal] = STATE(2573), - [sym_template_function] = STATE(2573), - [sym_conditional_expression] = STATE(2573), - [sym_equality_expression] = STATE(2573), - [sym_relational_expression] = STATE(2573), - [sym_delete_expression] = STATE(2573), - [sym_sizeof_expression] = STATE(2573), - [sym_parenthesized_expression] = STATE(2573), - [sym_lambda_expression] = STATE(2573), - [sym_concatenated_string] = STATE(2573), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2573), - [sym_assignment_expression] = STATE(2573), - [sym_pointer_expression] = STATE(2573), - [sym_shift_expression] = STATE(2573), - [sym_math_expression] = STATE(2573), - [sym_call_expression] = STATE(2573), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(5290), - [anon_sym_DASH] = ACTIONS(328), - [sym_true] = ACTIONS(5292), - [anon_sym_DASH_DASH] = ACTIONS(334), - [sym_null] = ACTIONS(5292), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5290), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(340), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(5292), - [sym_nullptr] = ACTIONS(5292), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(644), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - }, - [1525] = { - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3184), - [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_STAR_EQ] = ACTIONS(3184), - [anon_sym_LT_LT_EQ] = ACTIONS(3184), - [anon_sym_PERCENT_EQ] = ACTIONS(3184), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3184), - [anon_sym_EQ_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_CARET_EQ] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_GT_EQ] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_COLON] = ACTIONS(3184), - [anon_sym_SLASH_EQ] = ACTIONS(3184), - [anon_sym_PLUS_EQ] = ACTIONS(3184), - [anon_sym_CARET] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_PIPE_EQ] = ACTIONS(3184), - [anon_sym_GT_GT_EQ] = ACTIONS(3184), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PIPE_PIPE] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_LT_LT] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3184), - [anon_sym_DASH_EQ] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3184), - [anon_sym_AMP_EQ] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3184), - }, - [1526] = { - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_DASH_GT] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1651), - [anon_sym_LT_LT_EQ] = ACTIONS(1651), - [anon_sym_PERCENT_EQ] = ACTIONS(1651), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1651), - [anon_sym_EQ_EQ] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_CARET_EQ] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_COLON] = ACTIONS(1651), - [anon_sym_SLASH_EQ] = ACTIONS(1651), - [anon_sym_PLUS_EQ] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_PIPE_EQ] = ACTIONS(1651), - [anon_sym_GT_GT_EQ] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_PIPE_PIPE] = ACTIONS(1651), - [anon_sym_DOT] = ACTIONS(1651), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_PERCENT] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_DASH_EQ] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_AMP_EQ] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(1651), - }, - [1527] = { - [sym_template_type] = STATE(239), + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(5294), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(5293), }, - [1528] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [1523] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [1529] = { - [anon_sym_RPAREN] = ACTIONS(5298), + [1524] = { + [anon_sym_RPAREN] = ACTIONS(5297), [sym_comment] = ACTIONS(3), }, - [1530] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [1531] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2162), + [1525] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), [anon_sym_STAR_EQ] = ACTIONS(2162), [anon_sym_LT_LT_EQ] = ACTIONS(2162), [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_COLON] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), [anon_sym_SLASH_EQ] = ACTIONS(2162), [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3007), [anon_sym_PIPE_EQ] = ACTIONS(2162), [anon_sym_GT_GT_EQ] = ACTIONS(2162), [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(2162), [anon_sym_DASH_EQ] = ACTIONS(2162), [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(3003), [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [1532] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_LT_LT_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2162), + [1526] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_STAR_EQ] = ACTIONS(2164), + [anon_sym_LT_LT_EQ] = ACTIONS(2164), + [anon_sym_PERCENT_EQ] = ACTIONS(2164), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_CARET_EQ] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2164), [anon_sym_COLON] = ACTIONS(2164), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2164), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2164), + [anon_sym_PLUS_EQ] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_PIPE_EQ] = ACTIONS(2164), + [anon_sym_GT_GT_EQ] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_DASH_EQ] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), }, - [1533] = { - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_DASH_GT] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_final] = ACTIONS(2202), - [anon_sym_STAR_EQ] = ACTIONS(2202), - [anon_sym_LT_LT_EQ] = ACTIONS(2202), - [anon_sym_PERCENT_EQ] = ACTIONS(2202), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_CARET_EQ] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_override] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2204), - [anon_sym_SLASH_EQ] = ACTIONS(2202), - [anon_sym_PLUS_EQ] = ACTIONS(2202), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_PIPE_EQ] = ACTIONS(2202), - [anon_sym_GT_GT_EQ] = ACTIONS(2202), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(2202), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2204), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2202), - [anon_sym_DASH_EQ] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_AMP_EQ] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2204), + [1527] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_STAR_EQ] = ACTIONS(2164), + [anon_sym_LT_LT_EQ] = ACTIONS(2164), + [anon_sym_PERCENT_EQ] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_CARET_EQ] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_COLON] = ACTIONS(2166), + [anon_sym_SLASH_EQ] = ACTIONS(2164), + [anon_sym_PLUS_EQ] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_PIPE_EQ] = ACTIONS(2164), + [anon_sym_GT_GT_EQ] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_DASH_EQ] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), }, - [1534] = { - [sym_argument_list] = STATE(1165), - [aux_sym_template_argument_list_repeat1] = STATE(2577), + [1528] = { + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_DASH_GT] = ACTIONS(2204), + [anon_sym_RPAREN] = ACTIONS(2204), + [anon_sym_final] = ACTIONS(2204), + [anon_sym_STAR_EQ] = ACTIONS(2204), + [anon_sym_LT_LT_EQ] = ACTIONS(2204), + [anon_sym_PERCENT_EQ] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2204), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_CARET_EQ] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_SLASH_EQ] = ACTIONS(2204), + [anon_sym_PLUS_EQ] = ACTIONS(2204), + [anon_sym_CARET] = ACTIONS(2206), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_PIPE_EQ] = ACTIONS(2204), + [anon_sym_GT_GT_EQ] = ACTIONS(2204), + [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2204), + [anon_sym_DASH_EQ] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_AMP_EQ] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_GT_GT] = ACTIONS(2206), + }, + [1529] = { + [aux_sym_template_argument_list_repeat1] = STATE(2562), + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), @@ -70853,7 +70759,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_GT2] = ACTIONS(5302), + [anon_sym_GT2] = ACTIONS(5301), [anon_sym_AMP] = ACTIONS(2321), [anon_sym_QMARK] = ACTIONS(2323), [sym_comment] = ACTIONS(3), @@ -70869,866 +70775,730 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [1535] = { - [aux_sym_template_argument_list_repeat1] = STATE(2579), + [1530] = { + [aux_sym_template_argument_list_repeat1] = STATE(2564), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(5304), + [anon_sym_GT2] = ACTIONS(5303), [sym_comment] = ACTIONS(3), }, - [1536] = { + [1531] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_RBRACE] = ACTIONS(5305), }, - [1537] = { - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_DASH_GT] = ACTIONS(2397), - [anon_sym_RPAREN] = ACTIONS(2397), - [anon_sym_STAR_EQ] = ACTIONS(2397), - [anon_sym_LT_LT_EQ] = ACTIONS(2397), - [anon_sym_PERCENT_EQ] = ACTIONS(2397), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2397), - [anon_sym_EQ_EQ] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_CARET_EQ] = ACTIONS(2397), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_GT_EQ] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_SLASH] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2397), - [anon_sym_SLASH_EQ] = ACTIONS(2397), - [anon_sym_PLUS_EQ] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_PIPE_EQ] = ACTIONS(2397), - [anon_sym_GT_GT_EQ] = ACTIONS(2397), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_PIPE_PIPE] = ACTIONS(2397), - [anon_sym_DOT] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2397), - [anon_sym_DASH_EQ] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2397), - [anon_sym_BANG_EQ] = ACTIONS(2397), - [anon_sym_AMP_EQ] = ACTIONS(2397), - [anon_sym_AMP_AMP] = ACTIONS(2397), - [anon_sym_LT_EQ] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_GT_GT] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2397), + [1532] = { + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_DASH_GT] = ACTIONS(2399), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_STAR_EQ] = ACTIONS(2399), + [anon_sym_LT_LT_EQ] = ACTIONS(2399), + [anon_sym_PERCENT_EQ] = ACTIONS(2399), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2399), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_CARET_EQ] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_COLON] = ACTIONS(2399), + [anon_sym_SLASH_EQ] = ACTIONS(2399), + [anon_sym_PLUS_EQ] = ACTIONS(2399), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_PIPE_EQ] = ACTIONS(2399), + [anon_sym_GT_GT_EQ] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_DOT] = ACTIONS(2399), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_PERCENT] = ACTIONS(2401), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2399), + [anon_sym_DASH_EQ] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_AMP_EQ] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2399), }, - [1538] = { - [sym_argument_list] = STATE(341), - [aux_sym_initializer_list_repeat1] = STATE(2582), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(5308), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(5306), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1533] = { + [aux_sym_initializer_list_repeat1] = STATE(2567), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(5305), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1539] = { - [aux_sym_initializer_list_repeat1] = STATE(2582), + [1534] = { + [aux_sym_initializer_list_repeat1] = STATE(2567), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(5305), }, - [1540] = { - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_DASH_GT] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2689), - [anon_sym_STAR_EQ] = ACTIONS(2689), - [anon_sym_LT_LT_EQ] = ACTIONS(2689), - [anon_sym_PERCENT_EQ] = ACTIONS(2689), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2689), - [anon_sym_EQ_EQ] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_COLON] = ACTIONS(2689), - [anon_sym_SLASH_EQ] = ACTIONS(2689), - [anon_sym_PLUS_EQ] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2689), - [anon_sym_GT_GT_EQ] = ACTIONS(2689), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_PIPE_PIPE] = ACTIONS(2689), - [anon_sym_DOT] = ACTIONS(2689), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_PERCENT] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2689), - [anon_sym_DASH_EQ] = ACTIONS(2689), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2689), - [anon_sym_AMP_EQ] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_EQ] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2689), + [1535] = { + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_DASH_GT] = ACTIONS(2691), + [anon_sym_RPAREN] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2691), + [anon_sym_EQ_EQ] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_COLON] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_CARET] = ACTIONS(2693), + [anon_sym_GT] = ACTIONS(2693), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_COMMA] = ACTIONS(2691), + [anon_sym_PIPE_PIPE] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(2691), + [anon_sym_LT_LT] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_PERCENT] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_BANG_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_LT_EQ] = ACTIONS(2691), + [anon_sym_EQ] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2691), + }, + [1536] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [1537] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [1538] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [1539] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [1540] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [1541] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_STAR_EQ] = ACTIONS(3739), - [anon_sym_LT_LT_EQ] = ACTIONS(3739), - [anon_sym_PERCENT_EQ] = ACTIONS(3739), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3739), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3741), - [anon_sym_CARET_EQ] = ACTIONS(3739), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3741), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_COLON] = ACTIONS(3739), - [anon_sym_SLASH_EQ] = ACTIONS(3739), - [anon_sym_PLUS_EQ] = ACTIONS(3739), - [anon_sym_CARET] = ACTIONS(3741), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_PIPE_EQ] = ACTIONS(3739), - [anon_sym_GT_GT_EQ] = ACTIONS(3739), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3741), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3741), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_DASH_EQ] = ACTIONS(3739), - [anon_sym_SEMI] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_EQ] = ACTIONS(3741), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_GT_GT] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3911), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [1542] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_STAR_EQ] = ACTIONS(3739), - [anon_sym_LT_LT_EQ] = ACTIONS(3739), - [anon_sym_PERCENT_EQ] = ACTIONS(3739), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3739), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3739), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3741), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_COLON] = ACTIONS(3741), - [anon_sym_SLASH_EQ] = ACTIONS(3739), - [anon_sym_PLUS_EQ] = ACTIONS(3739), - [anon_sym_CARET] = ACTIONS(3741), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_PIPE_EQ] = ACTIONS(3739), - [anon_sym_GT_GT_EQ] = ACTIONS(3739), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3741), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3741), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_DASH_EQ] = ACTIONS(3739), - [anon_sym_SEMI] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_EQ] = ACTIONS(3741), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_GT_GT] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [1543] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [1544] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_SEMI] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [1545] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_SEMI] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(5311), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1546] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [1547] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [1548] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(3763), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3765), - [anon_sym_SLASH] = ACTIONS(3765), - [anon_sym_RBRACE] = ACTIONS(3763), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3765), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_SEMI] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [1549] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [1550] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [1551] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [1552] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [1553] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [1554] = { - [sym_union_specifier] = STATE(2586), - [sym_macro_type_specifier] = STATE(2586), - [sym_class_specifier] = STATE(2586), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2586), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(2586), - [aux_sym_sized_type_specifier_repeat1] = STATE(2585), - [sym_struct_specifier] = STATE(2586), - [sym_enum_specifier] = STATE(2586), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(2586), - [anon_sym_unsigned] = ACTIONS(5314), + [sym_union_specifier] = STATE(2571), + [sym_macro_type_specifier] = STATE(2571), + [sym_class_specifier] = STATE(2571), + [aux_sym_sized_type_specifier_repeat1] = STATE(2570), + [sym_sized_type_specifier] = STATE(2571), + [sym__type_specifier] = STATE(2571), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(2571), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(2571), + [sym_struct_specifier] = STATE(2571), + [anon_sym_unsigned] = ACTIONS(5313), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(5316), - [anon_sym_signed] = ACTIONS(5314), + [sym_auto] = ACTIONS(5315), + [anon_sym_signed] = ACTIONS(5313), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(5314), + [anon_sym_long] = ACTIONS(5313), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(5318), + [anon_sym_typename] = ACTIONS(5317), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(5314), + [anon_sym_short] = ACTIONS(5313), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(5316), + [sym_primitive_type] = ACTIONS(5315), }, - [1555] = { - [sym_virtual_specifier] = STATE(2587), - [aux_sym_function_declarator_repeat1] = STATE(2587), - [sym_trailing_return_type] = STATE(2587), - [sym_type_qualifier] = STATE(2587), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(5320), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym__Atomic] = ACTIONS(1062), + [1548] = { + [sym_virtual_specifier] = STATE(2572), + [aux_sym_function_declarator_repeat1] = STATE(2572), + [sym_type_qualifier] = STATE(2572), + [sym_trailing_return_type] = STATE(2572), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(5319), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_DASH_GT] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [1556] = { - [sym_string_literal] = STATE(1556), - [aux_sym_concatenated_string_repeat1] = STATE(1556), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), - }, - [1557] = { - [sym_goto_statement] = STATE(2589), - [sym_preproc_function_def] = STATE(2589), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(2589), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(2589), + [1549] = { + [sym_goto_statement] = STATE(2574), + [sym_preproc_function_def] = STATE(2574), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(2574), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2589), - [sym_return_statement] = STATE(2589), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2574), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2574), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2574), + [sym_namespace_definition] = STATE(2574), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2589), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2589), - [sym_break_statement] = STATE(2589), - [sym_preproc_include] = STATE(2589), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(2589), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(2589), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2574), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2574), + [sym_constructor_or_destructor_definition] = STATE(2574), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2574), + [sym_preproc_include] = STATE(2574), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(2574), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(2574), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(2589), - [sym_template_instantiation] = STATE(2589), - [sym_constructor_or_destructor_definition] = STATE(2589), - [sym_expression_statement] = STATE(2589), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2589), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(2589), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(2589), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2589), - [aux_sym_translation_unit_repeat1] = STATE(2589), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(2589), - [sym_if_statement] = STATE(2589), - [sym_for_statement] = STATE(2589), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(2589), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(2589), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(2589), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2589), - [sym_preproc_if] = STATE(2589), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(2574), + [sym_expression_statement] = STATE(2574), + [sym_do_statement] = STATE(2574), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(2574), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(2574), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2574), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2574), + [sym_for_statement] = STATE(2574), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(2574), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(2574), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2574), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2574), + [sym_preproc_if] = STATE(2574), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2589), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2589), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2589), - [sym_while_statement] = STATE(2589), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2574), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2574), + [aux_sym_translation_unit_repeat1] = STATE(2574), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2574), + [sym_while_statement] = STATE(2574), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -71770,7 +71540,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(5325), + [anon_sym_RBRACE] = ACTIONS(5321), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -71802,2139 +71572,2287 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [1558] = { - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4123), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_STAR_EQ] = ACTIONS(4121), - [anon_sym_LT_LT_EQ] = ACTIONS(4121), - [anon_sym_PERCENT_EQ] = ACTIONS(4121), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4123), - [anon_sym_CARET_EQ] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4123), - [anon_sym_SLASH] = ACTIONS(4123), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_SLASH_EQ] = ACTIONS(4121), - [anon_sym_PLUS_EQ] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4123), - [anon_sym_GT] = ACTIONS(4123), - [anon_sym_PIPE_EQ] = ACTIONS(4121), - [anon_sym_GT_GT_EQ] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LT_LT] = ACTIONS(4123), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_PERCENT] = ACTIONS(4123), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_DASH_EQ] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_AMP_EQ] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(4123), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4123), - [anon_sym_DASH_DASH] = ACTIONS(4121), + [1550] = { + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_DASH_GT] = ACTIONS(3844), + [anon_sym_RPAREN] = ACTIONS(3844), + [anon_sym_STAR_EQ] = ACTIONS(3844), + [anon_sym_LT_LT_EQ] = ACTIONS(3844), + [anon_sym_PERCENT_EQ] = ACTIONS(3844), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3844), + [anon_sym_EQ_EQ] = ACTIONS(3844), + [anon_sym_PIPE] = ACTIONS(3846), + [anon_sym_LT] = ACTIONS(3846), + [anon_sym_CARET_EQ] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PLUS] = ACTIONS(3846), + [anon_sym_GT_EQ] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3846), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_RBRACE] = ACTIONS(3844), + [anon_sym_COLON] = ACTIONS(3844), + [anon_sym_SLASH_EQ] = ACTIONS(3844), + [anon_sym_PLUS_EQ] = ACTIONS(3844), + [anon_sym_CARET] = ACTIONS(3846), + [anon_sym_GT] = ACTIONS(3846), + [anon_sym_PIPE_EQ] = ACTIONS(3844), + [anon_sym_GT_GT_EQ] = ACTIONS(3844), + [anon_sym_COMMA] = ACTIONS(3844), + [anon_sym_PIPE_PIPE] = ACTIONS(3844), + [anon_sym_DOT] = ACTIONS(3844), + [anon_sym_LT_LT] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3844), + [anon_sym_PERCENT] = ACTIONS(3846), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3844), + [anon_sym_DASH_EQ] = ACTIONS(3844), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym_BANG_EQ] = ACTIONS(3844), + [anon_sym_AMP_EQ] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_LT_EQ] = ACTIONS(3844), + [anon_sym_EQ] = ACTIONS(3846), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_GT_GT] = ACTIONS(3846), + [anon_sym_DASH_DASH] = ACTIONS(3844), }, - [1559] = { - [anon_sym_LPAREN2] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_PLUS_PLUS] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [anon_sym_mutable] = ACTIONS(5329), - [anon_sym_DASH_DASH] = ACTIONS(5327), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5329), - [anon_sym_COLON_COLON] = ACTIONS(5327), - [anon_sym_final] = ACTIONS(5329), - [anon_sym_EQ_EQ] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5329), - [anon_sym_static] = ACTIONS(5329), - [anon_sym_volatile] = ACTIONS(5329), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_GT_EQ] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5329), - [anon_sym_explicit] = ACTIONS(5329), - [sym_identifier] = ACTIONS(5329), - [anon_sym_RBRACE] = ACTIONS(5327), - [anon_sym_override] = ACTIONS(5329), - [sym_operator_name] = ACTIONS(5327), - [sym_noexcept] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_register] = ACTIONS(5329), - [anon_sym__Atomic] = ACTIONS(5329), - [anon_sym_const] = ACTIONS(5329), - [anon_sym_extern] = ACTIONS(5329), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_PIPE_PIPE] = ACTIONS(5327), - [anon_sym_DOT] = ACTIONS(5329), - [anon_sym_LT_LT] = ACTIONS(5327), - [anon_sym_constexpr] = ACTIONS(5329), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5327), - [anon_sym_QMARK] = ACTIONS(5327), - [anon_sym_TILDE] = ACTIONS(5327), - [anon_sym_SEMI] = ACTIONS(5327), - [anon_sym_BANG_EQ] = ACTIONS(5327), - [anon_sym_LT_EQ] = ACTIONS(5327), - [anon_sym_AMP_AMP] = ACTIONS(5327), - [anon_sym_inline] = ACTIONS(5329), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_restrict] = ACTIONS(5329), - [anon_sym_GT_GT] = ACTIONS(5327), - [anon_sym_DASH_GT] = ACTIONS(5327), + [1551] = { + [sym_string_literal] = STATE(1551), + [aux_sym_concatenated_string_repeat1] = STATE(1551), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5323), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [1560] = { - [sym_field_declaration_list] = STATE(2590), - [anon_sym_LBRACE] = ACTIONS(302), + [1552] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_RPAREN] = ACTIONS(3850), + [anon_sym_STAR_EQ] = ACTIONS(3850), + [anon_sym_LT_LT_EQ] = ACTIONS(3850), + [anon_sym_PERCENT_EQ] = ACTIONS(3850), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3850), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3852), + [anon_sym_CARET_EQ] = ACTIONS(3850), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3852), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_RBRACE] = ACTIONS(3850), + [anon_sym_COLON] = ACTIONS(3850), + [anon_sym_SLASH_EQ] = ACTIONS(3850), + [anon_sym_PLUS_EQ] = ACTIONS(3850), + [anon_sym_CARET] = ACTIONS(3852), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_PIPE_EQ] = ACTIONS(3850), + [anon_sym_GT_GT_EQ] = ACTIONS(3850), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3852), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3852), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_DASH_EQ] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3852), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_GT_GT] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + }, + [1553] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_RPAREN] = ACTIONS(3850), + [anon_sym_STAR_EQ] = ACTIONS(3850), + [anon_sym_LT_LT_EQ] = ACTIONS(3850), + [anon_sym_PERCENT_EQ] = ACTIONS(3850), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3850), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_CARET_EQ] = ACTIONS(3850), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3852), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_RBRACE] = ACTIONS(3850), + [anon_sym_COLON] = ACTIONS(3852), + [anon_sym_SLASH_EQ] = ACTIONS(3850), + [anon_sym_PLUS_EQ] = ACTIONS(3850), + [anon_sym_CARET] = ACTIONS(3852), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_PIPE_EQ] = ACTIONS(3850), + [anon_sym_GT_GT_EQ] = ACTIONS(3850), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3852), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3852), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_DASH_EQ] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3852), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_GT_GT] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + }, + [1554] = { + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_PLUS_PLUS] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_DASH_DASH] = ACTIONS(5326), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5328), + [anon_sym_COLON_COLON] = ACTIONS(5326), + [anon_sym_final] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5326), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_volatile] = ACTIONS(5328), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_GT_EQ] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(5326), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5326), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_explicit] = ACTIONS(5328), + [sym_identifier] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5326), + [anon_sym_override] = ACTIONS(5328), + [sym_operator_name] = ACTIONS(5326), + [sym_noexcept] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5326), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_register] = ACTIONS(5328), + [anon_sym__Atomic] = ACTIONS(5328), + [anon_sym_const] = ACTIONS(5328), + [anon_sym_extern] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5328), + [anon_sym_LT_LT] = ACTIONS(5326), + [anon_sym_constexpr] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5326), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_TILDE] = ACTIONS(5326), + [anon_sym_SEMI] = ACTIONS(5326), + [anon_sym_BANG_EQ] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5326), + [anon_sym_AMP_AMP] = ACTIONS(5326), + [anon_sym_inline] = ACTIONS(5328), + [anon_sym_RPAREN] = ACTIONS(5326), + [anon_sym_restrict] = ACTIONS(5328), + [anon_sym_GT_GT] = ACTIONS(5326), + [anon_sym_DASH_GT] = ACTIONS(5326), + }, + [1555] = { + [sym_field_declaration_list] = STATE(2575), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), }, - [1561] = { - [anon_sym_LPAREN2] = ACTIONS(5331), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_PLUS_PLUS] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_mutable] = ACTIONS(5333), - [anon_sym_DASH_DASH] = ACTIONS(5331), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5333), - [anon_sym_COLON_COLON] = ACTIONS(5331), - [anon_sym_final] = ACTIONS(5333), - [anon_sym_EQ_EQ] = ACTIONS(5331), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_AMP] = ACTIONS(5333), - [anon_sym_static] = ACTIONS(5333), - [anon_sym_volatile] = ACTIONS(5333), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_GT_EQ] = ACTIONS(5331), - [anon_sym_STAR] = ACTIONS(5331), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5331), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_explicit] = ACTIONS(5333), - [sym_identifier] = ACTIONS(5333), - [anon_sym_RBRACE] = ACTIONS(5331), - [anon_sym_override] = ACTIONS(5333), - [sym_operator_name] = ACTIONS(5331), - [sym_noexcept] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5331), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_register] = ACTIONS(5333), - [anon_sym__Atomic] = ACTIONS(5333), - [anon_sym_const] = ACTIONS(5333), - [anon_sym_extern] = ACTIONS(5333), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_PIPE_PIPE] = ACTIONS(5331), - [anon_sym_DOT] = ACTIONS(5333), - [anon_sym_LT_LT] = ACTIONS(5331), - [anon_sym_constexpr] = ACTIONS(5333), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5331), - [anon_sym_QMARK] = ACTIONS(5331), - [anon_sym_TILDE] = ACTIONS(5331), - [anon_sym_SEMI] = ACTIONS(5331), - [anon_sym_BANG_EQ] = ACTIONS(5331), - [anon_sym_LT_EQ] = ACTIONS(5331), - [anon_sym_AMP_AMP] = ACTIONS(5331), - [anon_sym_inline] = ACTIONS(5333), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_restrict] = ACTIONS(5333), - [anon_sym_GT_GT] = ACTIONS(5331), - [anon_sym_DASH_GT] = ACTIONS(5331), + [1556] = { + [anon_sym_LPAREN2] = ACTIONS(5330), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_PLUS_PLUS] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_DASH_DASH] = ACTIONS(5330), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5332), + [anon_sym_COLON_COLON] = ACTIONS(5330), + [anon_sym_final] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5330), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_static] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_GT_EQ] = ACTIONS(5330), + [anon_sym_STAR] = ACTIONS(5330), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5330), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_explicit] = ACTIONS(5332), + [sym_identifier] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5330), + [anon_sym_override] = ACTIONS(5332), + [sym_operator_name] = ACTIONS(5330), + [sym_noexcept] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_register] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_PIPE_PIPE] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(5330), + [anon_sym_constexpr] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5330), + [anon_sym_QMARK] = ACTIONS(5330), + [anon_sym_TILDE] = ACTIONS(5330), + [anon_sym_SEMI] = ACTIONS(5330), + [anon_sym_BANG_EQ] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5330), + [anon_sym_AMP_AMP] = ACTIONS(5330), + [anon_sym_inline] = ACTIONS(5332), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym_GT_GT] = ACTIONS(5330), + [anon_sym_DASH_GT] = ACTIONS(5330), }, - [1562] = { - [sym_field_declaration_list] = STATE(2591), - [anon_sym_LBRACE] = ACTIONS(302), + [1557] = { + [sym_field_declaration_list] = STATE(2576), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), }, - [1563] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2592), - [sym_logical_expression] = STATE(2592), - [sym_bitwise_expression] = STATE(2592), - [sym_cast_expression] = STATE(2592), - [sym_new_expression] = STATE(2592), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(2592), - [sym_char_literal] = STATE(2592), - [sym_template_function] = STATE(2592), - [sym_conditional_expression] = STATE(2592), - [sym_equality_expression] = STATE(2592), - [sym_relational_expression] = STATE(2592), - [sym_delete_expression] = STATE(2592), - [sym_sizeof_expression] = STATE(2592), - [sym_parenthesized_expression] = STATE(2592), - [sym_initializer_list] = STATE(2593), - [sym_concatenated_string] = STATE(2592), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(2592), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(2592), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(2592), - [sym_math_expression] = STATE(2592), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5335), + [1558] = { + [sym_template_function] = STATE(2577), + [sym__expression] = STATE(2577), + [sym_logical_expression] = STATE(2577), + [sym_bitwise_expression] = STATE(2577), + [sym_cast_expression] = STATE(2577), + [sym_delete_expression] = STATE(2577), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(2577), + [sym_lambda_expression] = STATE(2577), + [sym_char_literal] = STATE(2577), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2577), + [sym_equality_expression] = STATE(2577), + [sym_relational_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2577), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2578), + [sym_parenthesized_expression] = STATE(2577), + [sym_string_literal] = STATE(154), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2577), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2577), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(2577), + [sym_math_expression] = STATE(2577), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(2577), + [sym_raw_string_literal] = ACTIONS(5334), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(5337), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(5337), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(5336), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(5336), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5335), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(5334), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(5337), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(5337), + [sym_false] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(5336), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), [anon_sym_LBRACE] = ACTIONS(175), }, - [1564] = { - [anon_sym_LPAREN2] = ACTIONS(5339), - [anon_sym_struct] = ACTIONS(5341), - [sym_auto] = ACTIONS(5341), - [anon_sym_signed] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_long] = ACTIONS(5341), - [anon_sym_STAR_EQ] = ACTIONS(5339), - [anon_sym_LT_LT_EQ] = ACTIONS(5339), - [anon_sym_COLON_COLON] = ACTIONS(5339), - [anon_sym_PERCENT_EQ] = ACTIONS(5339), - [anon_sym_DASH_DASH] = ACTIONS(5339), - [anon_sym_EQ_EQ] = ACTIONS(5339), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_CARET_EQ] = ACTIONS(5339), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5339), - [anon_sym_AMP] = ACTIONS(5341), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_GT_EQ] = ACTIONS(5339), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_union] = ACTIONS(5341), - [anon_sym_typename] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_RBRACE] = ACTIONS(5339), - [anon_sym_short] = ACTIONS(5341), - [sym_identifier] = ACTIONS(5341), - [anon_sym_SLASH_EQ] = ACTIONS(5339), - [anon_sym_PLUS_EQ] = ACTIONS(5339), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_PIPE_EQ] = ACTIONS(5339), - [anon_sym_GT_GT_EQ] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_PIPE_PIPE] = ACTIONS(5339), - [anon_sym_DOT] = ACTIONS(5339), - [anon_sym_LT_LT] = ACTIONS(5341), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_PERCENT] = ACTIONS(5341), - [anon_sym_enum] = ACTIONS(5341), - [anon_sym_class] = ACTIONS(5341), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5341), - [sym_primitive_type] = ACTIONS(5341), - [anon_sym_QMARK] = ACTIONS(5339), - [anon_sym_DASH_EQ] = ACTIONS(5339), - [anon_sym_SEMI] = ACTIONS(5339), - [anon_sym_BANG_EQ] = ACTIONS(5339), - [anon_sym_AMP_EQ] = ACTIONS(5339), - [anon_sym_AMP_AMP] = ACTIONS(5339), - [anon_sym_DASH_GT] = ACTIONS(5339), - [anon_sym_LT_EQ] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5341), - [anon_sym_PLUS_PLUS] = ACTIONS(5339), - [anon_sym_GT_GT] = ACTIONS(5341), + [1559] = { + [anon_sym_LPAREN2] = ACTIONS(5338), + [anon_sym_struct] = ACTIONS(5340), + [sym_auto] = ACTIONS(5340), + [anon_sym_signed] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_long] = ACTIONS(5340), + [anon_sym_STAR_EQ] = ACTIONS(5338), + [anon_sym_LT_LT_EQ] = ACTIONS(5338), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_PERCENT_EQ] = ACTIONS(5338), + [anon_sym_DASH_DASH] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5338), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_CARET_EQ] = ACTIONS(5338), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5338), + [anon_sym_AMP] = ACTIONS(5340), + [anon_sym_RPAREN] = ACTIONS(5338), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_GT_EQ] = ACTIONS(5338), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_union] = ACTIONS(5340), + [anon_sym_typename] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_RBRACE] = ACTIONS(5338), + [anon_sym_short] = ACTIONS(5340), + [sym_identifier] = ACTIONS(5340), + [anon_sym_SLASH_EQ] = ACTIONS(5338), + [anon_sym_PLUS_EQ] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_PIPE_EQ] = ACTIONS(5338), + [anon_sym_GT_GT_EQ] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_PIPE_PIPE] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_PERCENT] = ACTIONS(5340), + [anon_sym_enum] = ACTIONS(5340), + [anon_sym_class] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(5340), + [anon_sym_QMARK] = ACTIONS(5338), + [anon_sym_DASH_EQ] = ACTIONS(5338), + [anon_sym_SEMI] = ACTIONS(5338), + [anon_sym_BANG_EQ] = ACTIONS(5338), + [anon_sym_AMP_EQ] = ACTIONS(5338), + [anon_sym_AMP_AMP] = ACTIONS(5338), + [anon_sym_DASH_GT] = ACTIONS(5338), + [anon_sym_LT_EQ] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5340), + [anon_sym_PLUS_PLUS] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5340), }, - [1565] = { - [aux_sym_argument_list_repeat1] = STATE(2595), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(5343), + [1560] = { + [aux_sym_argument_list_repeat1] = STATE(2580), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(5342), [sym_comment] = ACTIONS(3), }, - [1566] = { - [anon_sym_LPAREN2] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3115), - [anon_sym_EQ_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_COLON] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3115), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PIPE_PIPE] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_PERCENT] = ACTIONS(3115), + [1561] = { + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_SLASH] = ACTIONS(3119), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3117), + [anon_sym_CARET] = ACTIONS(3117), + [anon_sym_GT] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3117), + [anon_sym_LT_LT] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_PERCENT] = ACTIONS(3117), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_DASH_GT] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_GT_GT] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3117), }, - [1567] = { - [aux_sym_argument_list_repeat1] = STATE(2597), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(5345), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1562] = { + [aux_sym_argument_list_repeat1] = STATE(2582), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(5344), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1568] = { - [aux_sym_argument_list_repeat1] = STATE(2597), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(5345), + [1563] = { + [aux_sym_argument_list_repeat1] = STATE(2582), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(5344), [sym_comment] = ACTIONS(3), }, - [1569] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(5347), + [1564] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(5346), }, - [1570] = { - [anon_sym_LPAREN2] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5349), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5349), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_SEMI] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_RPAREN] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5349), - [anon_sym_DASH_DASH] = ACTIONS(5349), + [1565] = { + [anon_sym_LPAREN2] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_SEMI] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_RPAREN] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5348), + [anon_sym_DASH_DASH] = ACTIONS(5348), }, - [1571] = { - [sym_argument_list] = STATE(2599), - [sym_initializer_list] = STATE(2599), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5349), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5349), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_SEMI] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_RPAREN] = ACTIONS(5349), + [1566] = { + [sym_argument_list] = STATE(2584), + [sym_initializer_list] = STATE(2584), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_SEMI] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_RPAREN] = ACTIONS(5348), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(5349), + [anon_sym_GT_GT] = ACTIONS(5348), }, - [1572] = { - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2818), - [sym_raw_string_literal] = ACTIONS(2816), - [sym_true] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_switch] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_number_literal] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2818), - [sym_nullptr] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), + [1567] = { + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2820), + [sym_raw_string_literal] = ACTIONS(2818), + [sym_true] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2820), + [sym_null] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_switch] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2818), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_if] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2820), + [sym_nullptr] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), }, - [1573] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2709), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2709), - [anon_sym_EQ_EQ] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_COLON] = ACTIONS(2709), - [anon_sym_catch] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2709), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_PIPE_PIPE] = ACTIONS(2709), - [anon_sym_DOT] = ACTIONS(2709), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_BANG_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_DASH_GT] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_RPAREN] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), + [1568] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2711), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2711), + [anon_sym_EQ_EQ] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_COLON] = ACTIONS(2711), + [anon_sym_catch] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_CARET] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_COMMA] = ACTIONS(2711), + [anon_sym_PIPE_PIPE] = ACTIONS(2711), + [anon_sym_DOT] = ACTIONS(2711), + [anon_sym_LT_LT] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_PERCENT] = ACTIONS(2711), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_BANG_EQ] = ACTIONS(2711), + [anon_sym_LT_EQ] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_DASH_GT] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_RPAREN] = ACTIONS(2711), + [anon_sym_GT_GT] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), }, - [1574] = { - [sym_compound_statement] = STATE(2600), + [1569] = { + [sym_compound_statement] = STATE(2585), [anon_sym_LBRACE] = ACTIONS(43), [sym_comment] = ACTIONS(3), }, - [1575] = { - [aux_sym_try_statement_repeat1] = STATE(1575), - [sym_catch_clause] = STATE(1575), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(5357), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_namespace] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_using] = ACTIONS(5353), - [sym_preproc_directive] = ACTIONS(5353), - [aux_sym_preproc_if_token1] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [sym_operator_name] = ACTIONS(5355), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [aux_sym_preproc_include_token1] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_template] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [ts_builtin_sym_end] = ACTIONS(5355), - [aux_sym_preproc_def_token1] = ACTIONS(5353), - [anon_sym_AMP_AMP] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [1570] = { + [sym_catch_clause] = STATE(1570), + [aux_sym_try_statement_repeat1] = STATE(1570), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(5356), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_namespace] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_using] = ACTIONS(5352), + [sym_preproc_directive] = ACTIONS(5352), + [aux_sym_preproc_if_token1] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [sym_operator_name] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [aux_sym_preproc_include_token1] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_template] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [ts_builtin_sym_end] = ACTIONS(5354), + [aux_sym_preproc_def_token1] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [1576] = { - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_restrict] = ACTIONS(1137), - [anon_sym_mutable] = ACTIONS(1137), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_explicit] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [sym_operator_name] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_register] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym__Atomic] = ACTIONS(1137), - [anon_sym_constexpr] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_inline] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1141), + [1571] = { + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym_mutable] = ACTIONS(1143), + [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1136), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1141), + [anon_sym_explicit] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1143), + [sym_operator_name] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1136), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1136), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1147), }, - [1577] = { - [sym_destructor_name] = STATE(399), - [sym_identifier] = ACTIONS(5360), - [sym_operator_name] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(308), + [1572] = { + [sym_destructor_name] = STATE(400), + [sym_identifier] = ACTIONS(5359), + [sym_operator_name] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), }, - [1578] = { - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_mutable] = ACTIONS(787), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_static] = ACTIONS(787), - [anon_sym_volatile] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_explicit] = ACTIONS(787), - [sym_identifier] = ACTIONS(787), - [sym_operator_name] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_register] = ACTIONS(787), - [anon_sym__Atomic] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_extern] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_constexpr] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(780), - [anon_sym_inline] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_restrict] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(785), + [1573] = { + [anon_sym_LPAREN2] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_mutable] = ACTIONS(795), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_static] = ACTIONS(795), + [anon_sym_volatile] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(797), + [anon_sym_explicit] = ACTIONS(795), + [sym_identifier] = ACTIONS(795), + [sym_operator_name] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_register] = ACTIONS(795), + [anon_sym__Atomic] = ACTIONS(795), + [anon_sym_const] = ACTIONS(795), + [anon_sym_extern] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(791), + [anon_sym_constexpr] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_inline] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_restrict] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(793), }, - [1579] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2603), - [sym_logical_expression] = STATE(2603), - [sym_bitwise_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_new_expression] = STATE(2603), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(2603), - [sym_char_literal] = STATE(2603), - [sym_template_function] = STATE(2603), - [sym_conditional_expression] = STATE(2603), - [sym_equality_expression] = STATE(2603), - [sym_relational_expression] = STATE(2603), - [sym_delete_expression] = STATE(2603), - [sym_sizeof_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_lambda_expression] = STATE(2603), - [sym_concatenated_string] = STATE(2603), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(2603), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(2603), - [sym_math_expression] = STATE(2603), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5362), + [1574] = { + [sym_template_function] = STATE(2588), + [sym__expression] = STATE(2588), + [sym_logical_expression] = STATE(2588), + [sym_bitwise_expression] = STATE(2588), + [sym_cast_expression] = STATE(2588), + [sym_delete_expression] = STATE(2588), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(2588), + [sym_lambda_expression] = STATE(2588), + [sym_char_literal] = STATE(2588), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2588), + [sym_equality_expression] = STATE(2588), + [sym_relational_expression] = STATE(2588), + [sym_sizeof_expression] = STATE(2588), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2588), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(2588), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2588), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(2588), + [sym_math_expression] = STATE(2588), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(2588), + [sym_raw_string_literal] = ACTIONS(5361), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(5364), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(5364), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(5363), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(5363), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5362), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(5361), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(5364), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(5364), + [sym_false] = ACTIONS(5363), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(5363), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5366), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(5365), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [1580] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(5368), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1575] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(5367), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1581] = { - [sym_destructor_name] = STATE(938), - [sym_identifier] = ACTIONS(5370), - [sym_operator_name] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(308), + [1576] = { + [sym_template_function] = STATE(2590), + [sym__expression] = STATE(2590), + [sym_logical_expression] = STATE(2590), + [sym_bitwise_expression] = STATE(2590), + [sym_cast_expression] = STATE(2590), + [sym_delete_expression] = STATE(2590), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(2590), + [sym_lambda_expression] = STATE(2590), + [sym_char_literal] = STATE(2590), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2590), + [sym_equality_expression] = STATE(2590), + [sym_relational_expression] = STATE(2590), + [sym_sizeof_expression] = STATE(2590), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2590), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(2590), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2590), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(2590), + [sym_math_expression] = STATE(2590), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(2590), + [sym_raw_string_literal] = ACTIONS(5369), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(5371), + [sym_null] = ACTIONS(5371), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5369), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(5371), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5371), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(5367), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), + }, + [1577] = { + [sym_template_function] = STATE(2591), + [sym_destructor_name] = STATE(2591), + [sym_pointer_declarator] = STATE(2591), + [sym_structured_binding_declarator] = STATE(2591), + [sym__declarator] = STATE(2591), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2591), + [sym_array_declarator] = STATE(2591), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(2592), + [sym_function_declarator] = STATE(2591), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(5373), [sym_comment] = ACTIONS(3), }, - [1582] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2606), - [sym_logical_expression] = STATE(2606), - [sym_bitwise_expression] = STATE(2606), - [sym_cast_expression] = STATE(2606), - [sym_new_expression] = STATE(2606), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(2606), - [sym_char_literal] = STATE(2606), - [sym_template_function] = STATE(2606), - [sym_conditional_expression] = STATE(2606), - [sym_equality_expression] = STATE(2606), - [sym_relational_expression] = STATE(2606), - [sym_delete_expression] = STATE(2606), - [sym_sizeof_expression] = STATE(2606), - [sym_parenthesized_expression] = STATE(2606), - [sym_lambda_expression] = STATE(2606), - [sym_concatenated_string] = STATE(2606), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(2606), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(2606), - [sym_math_expression] = STATE(2606), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5372), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(5374), - [sym_null] = ACTIONS(5374), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5372), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(5374), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5374), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(5368), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [1578] = { + [sym_template_function] = STATE(2593), + [sym__expression] = STATE(2593), + [sym_logical_expression] = STATE(2593), + [sym_bitwise_expression] = STATE(2593), + [sym_cast_expression] = STATE(2593), + [sym_delete_expression] = STATE(2593), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2593), + [sym_lambda_expression] = STATE(2593), + [sym_char_literal] = STATE(2593), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2593), + [sym_equality_expression] = STATE(2593), + [sym_relational_expression] = STATE(2593), + [sym_sizeof_expression] = STATE(2593), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2593), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2593), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2593), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2593), + [sym_math_expression] = STATE(2593), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2593), + [sym_raw_string_literal] = ACTIONS(5375), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5377), + [sym_null] = ACTIONS(5377), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5375), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5377), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5377), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [1583] = { - [sym_reference_declarator] = STATE(2607), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2607), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(2607), - [sym_destructor_name] = STATE(2607), - [sym__declarator] = STATE(2607), - [sym_array_declarator] = STATE(2607), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2607), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [sym_operator_name] = ACTIONS(5376), + [1579] = { + [sym_template_function] = STATE(2594), + [sym_destructor_name] = STATE(2594), + [sym_pointer_declarator] = STATE(2594), + [sym_structured_binding_declarator] = STATE(2594), + [sym__declarator] = STATE(2594), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1581), + [sym_reference_declarator] = STATE(2594), + [sym_array_declarator] = STATE(2594), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_function_declarator] = STATE(2594), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(5379), [sym_comment] = ACTIONS(3), }, - [1584] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(2609), - [sym_pointer_declarator] = STATE(2609), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(2608), - [sym_template_function] = STATE(2609), - [sym_destructor_name] = STATE(2609), - [sym__declarator] = STATE(2609), - [sym_array_declarator] = STATE(2609), - [sym_scoped_identifier] = STATE(1587), - [sym_type_qualifier] = STATE(2608), - [sym_function_declarator] = STATE(2609), - [anon_sym_LPAREN2] = ACTIONS(456), + [1580] = { + [aux_sym_type_definition_repeat1] = STATE(2595), + [sym_template_function] = STATE(2596), + [sym_destructor_name] = STATE(2596), + [sym_pointer_declarator] = STATE(2596), + [sym_structured_binding_declarator] = STATE(2596), + [sym__declarator] = STATE(2596), + [sym_scoped_identifier] = STATE(1581), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(2596), + [sym_array_declarator] = STATE(2596), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(2595), + [sym_function_declarator] = STATE(2596), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3174), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [sym_operator_name] = ACTIONS(5378), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [sym_operator_name] = ACTIONS(5381), [anon_sym_restrict] = ACTIONS(11), }, - [1585] = { - [sym_parameter_list] = STATE(2611), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(2612), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(5380), - [anon_sym_COLON] = ACTIONS(5382), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - }, - [1586] = { - [aux_sym_declaration_repeat1] = STATE(2612), + [1581] = { + [sym_template_argument_list] = STATE(356), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_LBRACE] = ACTIONS(548), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(5380), }, - [1587] = { - [sym_template_argument_list] = STATE(316), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(5130), - [anon_sym_LBRACE] = ACTIONS(535), + [1582] = { + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(2598), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(2599), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(5383), + [anon_sym_COLON] = ACTIONS(5385), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), }, - [1588] = { - [sym_reference_declarator] = STATE(2613), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2613), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(2613), - [sym_destructor_name] = STATE(2613), - [sym__declarator] = STATE(2613), - [sym_init_declarator] = STATE(2614), - [sym_array_declarator] = STATE(2613), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2613), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(5384), + [1583] = { + [aux_sym_declaration_repeat1] = STATE(2599), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(5383), }, - [1589] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2615), - [sym_logical_expression] = STATE(2615), - [sym_bitwise_expression] = STATE(2615), - [sym_cast_expression] = STATE(2615), - [sym_new_expression] = STATE(2615), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2615), - [sym_char_literal] = STATE(2615), - [sym_template_function] = STATE(2615), - [sym_conditional_expression] = STATE(2615), - [sym_equality_expression] = STATE(2615), - [sym_relational_expression] = STATE(2615), - [sym_delete_expression] = STATE(2615), - [sym_sizeof_expression] = STATE(2615), - [sym_parenthesized_expression] = STATE(2615), - [sym_lambda_expression] = STATE(2615), - [sym_concatenated_string] = STATE(2615), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2615), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2615), - [sym_math_expression] = STATE(2615), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5386), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5388), - [sym_null] = ACTIONS(5388), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5386), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5388), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5388), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [1584] = { + [sym_destructor_name] = STATE(960), + [sym_identifier] = ACTIONS(5387), + [sym_operator_name] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), }, - [1590] = { - [anon_sym_DASH] = ACTIONS(3186), - [sym_raw_string_literal] = ACTIONS(3184), - [sym_true] = ACTIONS(3186), - [anon_sym_mutable] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_explicit] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_constexpr] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_struct] = ACTIONS(3186), - [sym_auto] = ACTIONS(3186), - [anon_sym_signed] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [aux_sym_preproc_if_token1] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_typename] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [sym_operator_name] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [aux_sym_preproc_include_token1] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_nullptr] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_template] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [ts_builtin_sym_end] = ACTIONS(3184), - [aux_sym_preproc_def_token1] = ACTIONS(3186), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_restrict] = ACTIONS(3186), + [1585] = { + [anon_sym_DASH] = ACTIONS(3188), + [sym_raw_string_literal] = ACTIONS(3186), + [sym_true] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_struct] = ACTIONS(3188), + [sym_auto] = ACTIONS(3188), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_goto] = ACTIONS(3188), + [sym_operator_name] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [aux_sym_preproc_include_token1] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_nullptr] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [ts_builtin_sym_end] = ACTIONS(3186), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_restrict] = ACTIONS(3188), }, - [1591] = { - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2816), + [1586] = { + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_PERCENT] = ACTIONS(2818), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_DASH_GT] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_RBRACK] = ACTIONS(2816), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_DASH_GT] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2818), + [anon_sym_RBRACK] = ACTIONS(2818), }, - [1592] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2616), - [sym_logical_expression] = STATE(2616), - [sym_bitwise_expression] = STATE(2616), - [sym_cast_expression] = STATE(2616), - [sym_new_expression] = STATE(2616), + [1587] = { + [sym_template_function] = STATE(2601), + [sym__expression] = STATE(2601), + [sym_logical_expression] = STATE(2601), + [sym_bitwise_expression] = STATE(2601), + [sym_cast_expression] = STATE(2601), + [sym_delete_expression] = STATE(2601), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(2616), - [sym_char_literal] = STATE(2616), - [sym_template_function] = STATE(2616), - [sym_conditional_expression] = STATE(2616), - [sym_equality_expression] = STATE(2616), - [sym_relational_expression] = STATE(2616), - [sym_delete_expression] = STATE(2616), - [sym_sizeof_expression] = STATE(2616), - [sym_parenthesized_expression] = STATE(2616), - [sym_initializer_list] = STATE(2617), - [sym_concatenated_string] = STATE(2616), - [sym_string_literal] = STATE(244), - [sym_lambda_expression] = STATE(2616), + [sym_compound_literal_expression] = STATE(2601), + [sym_lambda_expression] = STATE(2601), + [sym_char_literal] = STATE(2601), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2601), + [sym_equality_expression] = STATE(2601), + [sym_relational_expression] = STATE(2601), + [sym_sizeof_expression] = STATE(2601), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(2616), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_initializer_list] = STATE(2602), + [sym_parenthesized_expression] = STATE(2601), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), + [sym_concatenated_string] = STATE(2601), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2601), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(2616), - [sym_math_expression] = STATE(2616), + [sym_shift_expression] = STATE(2601), + [sym_math_expression] = STATE(2601), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(5392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [sym_null] = ACTIONS(5392), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5390), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(5392), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1393), - }, - [1593] = { - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_EQ_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_GT_EQ] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_CARET] = ACTIONS(3184), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PIPE_PIPE] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_LT_LT] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3184), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_DASH_GT] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), + [sym_new_expression] = STATE(2601), + [sym_raw_string_literal] = ACTIONS(5389), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(5391), + [anon_sym_DASH_DASH] = ACTIONS(398), + [sym_null] = ACTIONS(5391), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(5389), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(5391), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5391), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(1404), }, - [1594] = { - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1651), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_PIPE_PIPE] = ACTIONS(1651), - [anon_sym_DOT] = ACTIONS(1651), - [anon_sym_LT_LT] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_EQ_EQ] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_PERCENT] = ACTIONS(1651), + [1588] = { + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_DASH_GT] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_GT_GT] = ACTIONS(1651), - [anon_sym_RBRACK] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), }, - [1595] = { - [sym_template_type] = STATE(239), + [1589] = { + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_COMMA] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_DOT] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_PERCENT] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_DASH_GT] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_GT_GT] = ACTIONS(1661), + [anon_sym_RBRACK] = ACTIONS(1661), + }, + [1590] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(5394), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(5393), }, - [1596] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(2925), + [1591] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(2927), }, - [1597] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(654), - [anon_sym_LT_LT_EQ] = ACTIONS(654), - [anon_sym_PERCENT_EQ] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(654), - [anon_sym_GT_GT_EQ] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_RBRACK] = ACTIONS(654), + [1592] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(654), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_RBRACK] = ACTIONS(656), }, - [1598] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(5398), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1593] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(5397), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1599] = { - [anon_sym_RPAREN] = ACTIONS(5400), + [1594] = { + [anon_sym_RPAREN] = ACTIONS(5399), [sym_comment] = ACTIONS(3), }, - [1600] = { - [anon_sym_RPAREN] = ACTIONS(5398), + [1595] = { + [anon_sym_RPAREN] = ACTIONS(5397), [sym_comment] = ACTIONS(3), }, - [1601] = { - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_STAR_EQ] = ACTIONS(1317), - [anon_sym_LT_LT_EQ] = ACTIONS(1317), - [anon_sym_PERCENT_EQ] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_CARET_EQ] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_SLASH_EQ] = ACTIONS(1317), - [anon_sym_PLUS_EQ] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_PIPE_EQ] = ACTIONS(1317), - [anon_sym_GT_GT_EQ] = ACTIONS(1317), - [anon_sym_COMMA] = ACTIONS(1317), - [anon_sym_PIPE_PIPE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_PERCENT] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_DASH_EQ] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_AMP_EQ] = ACTIONS(1317), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_DASH_GT] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1317), + [1596] = { + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_STAR_EQ] = ACTIONS(1325), + [anon_sym_LT_LT_EQ] = ACTIONS(1325), + [anon_sym_PERCENT_EQ] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1325), + [anon_sym_PLUS_EQ] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_EQ] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1325), + [anon_sym_DASH_EQ] = ACTIONS(1325), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1325), + [anon_sym_AMP_EQ] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1327), + [anon_sym_RBRACK] = ACTIONS(1325), }, - [1602] = { - [aux_sym_string_literal_repeat1] = STATE(731), + [1597] = { + [aux_sym_string_literal_repeat1] = STATE(732), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(5402), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(5401), }, - [1603] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_STAR_EQ] = ACTIONS(1141), - [anon_sym_LT_LT_EQ] = ACTIONS(1141), - [anon_sym_PERCENT_EQ] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_CARET_EQ] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1141), - [anon_sym_PLUS_EQ] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1141), - [anon_sym_GT_GT_EQ] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_DASH_EQ] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_RBRACK] = ACTIONS(1141), + [1598] = { + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_STAR_EQ] = ACTIONS(1147), + [anon_sym_LT_LT_EQ] = ACTIONS(1147), + [anon_sym_PERCENT_EQ] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_SLASH_EQ] = ACTIONS(1147), + [anon_sym_PLUS_EQ] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_PIPE_EQ] = ACTIONS(1147), + [anon_sym_GT_GT_EQ] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_DASH_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_RBRACK] = ACTIONS(1147), }, - [1604] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_STAR_EQ] = ACTIONS(1141), - [anon_sym_LT_LT_EQ] = ACTIONS(1141), - [anon_sym_PERCENT_EQ] = ACTIONS(1141), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_CARET_EQ] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1141), - [anon_sym_PLUS_EQ] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1141), - [anon_sym_GT_GT_EQ] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_DASH_EQ] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_RBRACK] = ACTIONS(1141), + [1599] = { + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_STAR_EQ] = ACTIONS(1147), + [anon_sym_LT_LT_EQ] = ACTIONS(1147), + [anon_sym_PERCENT_EQ] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_CARET_EQ] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_SLASH_EQ] = ACTIONS(1147), + [anon_sym_PLUS_EQ] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_PIPE_EQ] = ACTIONS(1147), + [anon_sym_GT_GT_EQ] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_DASH_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_RBRACK] = ACTIONS(1147), }, - [1605] = { - [sym_identifier] = ACTIONS(5404), + [1600] = { + [sym_identifier] = ACTIONS(5403), [sym_comment] = ACTIONS(3), }, - [1606] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2624), - [sym_logical_expression] = STATE(2624), - [sym_bitwise_expression] = STATE(2624), - [sym_cast_expression] = STATE(2624), - [sym_new_expression] = STATE(2624), - [sym_field_expression] = STATE(2624), - [sym_compound_literal_expression] = STATE(2624), - [sym_char_literal] = STATE(2624), - [sym_template_function] = STATE(2624), - [sym_conditional_expression] = STATE(2624), - [sym_equality_expression] = STATE(2624), - [sym_relational_expression] = STATE(2624), - [sym_delete_expression] = STATE(2624), - [sym_sizeof_expression] = STATE(2624), - [sym_parenthesized_expression] = STATE(2624), - [sym_lambda_expression] = STATE(2624), - [sym_concatenated_string] = STATE(2624), - [sym_string_literal] = STATE(758), + [1601] = { + [sym_template_function] = STATE(2609), + [sym__expression] = STATE(2609), + [sym_logical_expression] = STATE(2609), + [sym_bitwise_expression] = STATE(2609), + [sym_cast_expression] = STATE(2609), + [sym_delete_expression] = STATE(2609), + [sym_field_expression] = STATE(2609), + [sym_compound_literal_expression] = STATE(2609), + [sym_lambda_expression] = STATE(2609), + [sym_char_literal] = STATE(2609), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2624), - [sym_assignment_expression] = STATE(2624), - [sym_pointer_expression] = STATE(2624), - [sym_shift_expression] = STATE(2624), - [sym_math_expression] = STATE(2624), - [sym_call_expression] = STATE(2624), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2609), + [sym_equality_expression] = STATE(2609), + [sym_relational_expression] = STATE(2609), + [sym_sizeof_expression] = STATE(2609), + [sym_subscript_expression] = STATE(2609), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5406), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5408), - [sym_null] = ACTIONS(5408), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5406), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(5410), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5408), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5408), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2609), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2609), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2609), + [sym_pointer_expression] = STATE(2609), + [sym_shift_expression] = STATE(2609), + [sym_math_expression] = STATE(2609), + [sym_call_expression] = STATE(2609), + [sym_new_expression] = STATE(2609), + [sym_raw_string_literal] = ACTIONS(5405), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5407), + [sym_null] = ACTIONS(5407), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5405), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(5409), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5407), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5407), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1607] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(662), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(660), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_PIPE_PIPE] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(660), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(662), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(660), - [anon_sym_RBRACK] = ACTIONS(662), + [1602] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_STAR_EQ] = ACTIONS(666), + [anon_sym_LT_LT_EQ] = ACTIONS(666), + [anon_sym_PERCENT_EQ] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_SLASH_EQ] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(666), + [anon_sym_GT_GT_EQ] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(664), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_DASH_EQ] = ACTIONS(666), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_AMP_EQ] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(664), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(664), + [anon_sym_RBRACK] = ACTIONS(666), }, - [1608] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(1598), - [sym_logical_expression] = STATE(1598), - [sym_bitwise_expression] = STATE(1598), - [sym_cast_expression] = STATE(1598), - [sym_new_expression] = STATE(1598), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1598), - [sym_type_descriptor] = STATE(2625), - [sym_char_literal] = STATE(1598), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(1598), - [sym_conditional_expression] = STATE(1598), - [sym_equality_expression] = STATE(1598), - [sym_relational_expression] = STATE(1598), - [sym_delete_expression] = STATE(1598), - [sym_sizeof_expression] = STATE(1598), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(1598), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(1598), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(1598), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(1600), - [sym_assignment_expression] = STATE(1598), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1598), - [sym_math_expression] = STATE(1598), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(3211), + [1603] = { + [sym_template_function] = STATE(1593), + [sym__expression] = STATE(1593), + [sym_logical_expression] = STATE(1593), + [sym_bitwise_expression] = STATE(1593), + [sym_cast_expression] = STATE(1593), + [sym_delete_expression] = STATE(1593), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(1593), + [sym_char_literal] = STATE(1593), + [sym_lambda_expression] = STATE(1593), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2610), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(1595), + [sym_conditional_expression] = STATE(1593), + [sym_equality_expression] = STATE(1593), + [sym_relational_expression] = STATE(1593), + [sym_sizeof_expression] = STATE(1593), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(1593), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1593), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(1593), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1593), + [sym_math_expression] = STATE(1593), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1593), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(3213), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(3213), + [sym_true] = ACTIONS(3215), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(3213), + [sym_null] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3211), + [sym_number_literal] = ACTIONS(3213), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(3213), + [sym_false] = ACTIONS(3215), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(3213), + [sym_nullptr] = ACTIONS(3215), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1609] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(664), + [1604] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(668), }, - [1610] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1653), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_RBRACK] = ACTIONS(1655), + [1605] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_STAR_EQ] = ACTIONS(1665), + [anon_sym_LT_LT_EQ] = ACTIONS(1665), + [anon_sym_PERCENT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_CARET_EQ] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_SLASH_EQ] = ACTIONS(1665), + [anon_sym_PLUS_EQ] = ACTIONS(1665), + [anon_sym_CARET] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_PIPE_EQ] = ACTIONS(1665), + [anon_sym_GT_GT_EQ] = ACTIONS(1665), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1663), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_DASH_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_AMP_EQ] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_RBRACK] = ACTIONS(1665), }, - [1611] = { - [sym_destructor_name] = STATE(2627), - [sym_identifier] = ACTIONS(5418), - [sym_operator_name] = ACTIONS(5420), - [anon_sym_TILDE] = ACTIONS(3223), + [1606] = { + [sym_destructor_name] = STATE(2612), + [sym_identifier] = ACTIONS(5417), + [sym_operator_name] = ACTIONS(5419), + [anon_sym_TILDE] = ACTIONS(3225), [sym_comment] = ACTIONS(3), }, - [1612] = { - [sym_template_type] = STATE(419), - [sym__expression] = STATE(2630), - [sym_logical_expression] = STATE(2630), - [sym_bitwise_expression] = STATE(2630), - [sym_cast_expression] = STATE(2630), - [sym_new_expression] = STATE(2630), + [1607] = { + [sym_template_function] = STATE(2615), + [sym__expression] = STATE(2615), + [sym_logical_expression] = STATE(2615), + [sym_bitwise_expression] = STATE(2615), + [sym_cast_expression] = STATE(2615), + [sym_delete_expression] = STATE(2615), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2630), - [sym_type_descriptor] = STATE(2631), - [sym_char_literal] = STATE(2630), + [sym_scoped_type_identifier] = STATE(422), + [sym_compound_literal_expression] = STATE(2615), + [sym_char_literal] = STATE(2615), + [sym_lambda_expression] = STATE(2615), + [sym_scoped_identifier] = STATE(423), + [sym_type_descriptor] = STATE(2616), + [sym_dependent_type] = STATE(428), + [sym_struct_specifier] = STATE(428), + [sym_union_specifier] = STATE(428), [sym_type_qualifier] = STATE(429), - [sym_dependent_type] = STATE(426), - [sym_union_specifier] = STATE(426), - [sym_struct_specifier] = STATE(426), - [sym_template_function] = STATE(2630), - [sym_conditional_expression] = STATE(2630), - [sym_equality_expression] = STATE(2630), - [sym_relational_expression] = STATE(2630), - [sym_delete_expression] = STATE(2630), - [sym_sizeof_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2615), + [sym_equality_expression] = STATE(2615), + [sym_relational_expression] = STATE(2615), + [sym_sizeof_expression] = STATE(2615), [sym_subscript_expression] = STATE(421), - [sym_parenthesized_expression] = STATE(2630), - [sym_scoped_type_identifier] = STATE(423), - [sym_string_literal] = STATE(424), - [sym_macro_type_specifier] = STATE(426), - [sym_class_specifier] = STATE(426), - [sym_concatenated_string] = STATE(2630), - [sym_sized_type_specifier] = STATE(426), - [sym_lambda_expression] = STATE(2630), - [sym_scoped_identifier] = STATE(425), - [sym__type_specifier] = STATE(426), - [sym_assignment_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2615), + [sym_lambda_capture_specifier] = STATE(425), + [sym_concatenated_string] = STATE(2615), + [sym_string_literal] = STATE(426), + [sym_macro_type_specifier] = STATE(428), + [sym_class_specifier] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(428), + [sym__type_specifier] = STATE(428), + [aux_sym_type_definition_repeat1] = STATE(429), + [sym_scoped_namespace_identifier] = STATE(430), + [sym_template_type] = STATE(431), + [sym_assignment_expression] = STATE(2615), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2630), - [sym_math_expression] = STATE(2630), + [sym_shift_expression] = STATE(2615), + [sym_math_expression] = STATE(2615), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_enum_specifier] = STATE(426), - [sym_raw_string_literal] = ACTIONS(5422), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(702), - [sym_true] = ACTIONS(5424), + [sym_new_expression] = STATE(2615), + [sym_enum_specifier] = STATE(428), + [sym_raw_string_literal] = ACTIONS(5421), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(706), + [sym_true] = ACTIONS(5423), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(5424), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(710), - [anon_sym_signed] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_GT2] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(720), + [sym_null] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_GT2] = ACTIONS(5425), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_sizeof] = ACTIONS(724), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_short] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_short] = ACTIONS(716), + [anon_sym_delete] = ACTIONS(734), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(5422), - [anon_sym_DQUOTE] = ACTIONS(732), + [sym_number_literal] = ACTIONS(5421), + [anon_sym_DQUOTE] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(702), - [sym_false] = ACTIONS(5424), - [anon_sym_unsigned] = ACTIONS(712), - [sym_nullptr] = ACTIONS(5424), + [sym_primitive_type] = ACTIONS(706), + [sym_false] = ACTIONS(5423), + [anon_sym_unsigned] = ACTIONS(716), + [sym_nullptr] = ACTIONS(5423), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1613] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2634), - [sym_logical_expression] = STATE(2634), - [sym_bitwise_expression] = STATE(2634), - [sym_cast_expression] = STATE(2634), - [sym_new_expression] = STATE(2634), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2634), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2634), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2634), - [sym_conditional_expression] = STATE(2634), - [sym_equality_expression] = STATE(2634), - [sym_relational_expression] = STATE(2634), - [sym_delete_expression] = STATE(2634), - [sym_sizeof_expression] = STATE(2634), - [sym_parenthesized_expression] = STATE(2634), - [sym_initializer_list] = STATE(2635), - [sym_concatenated_string] = STATE(2634), + [1608] = { + [sym_template_function] = STATE(2619), + [sym__expression] = STATE(2619), + [sym_logical_expression] = STATE(2619), + [sym_bitwise_expression] = STATE(2619), + [sym_cast_expression] = STATE(2619), + [sym_delete_expression] = STATE(2619), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2619), + [sym_lambda_expression] = STATE(2619), + [sym_char_literal] = STATE(2619), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2619), + [sym_equality_expression] = STATE(2619), + [sym_relational_expression] = STATE(2619), + [sym_sizeof_expression] = STATE(2619), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2620), + [sym_parenthesized_expression] = STATE(2619), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2634), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2634), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2634), - [sym_math_expression] = STATE(2634), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2635), - [sym_raw_string_literal] = ACTIONS(5428), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(5430), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(5430), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5428), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(5432), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(5430), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(5430), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(5434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2619), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2619), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2619), + [sym_math_expression] = STATE(2619), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2619), + [sym_initializer_pair] = STATE(2620), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(5429), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(5429), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5427), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(5429), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(5433), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [1614] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - [anon_sym_STAR_EQ] = ACTIONS(785), - [anon_sym_LT_LT_EQ] = ACTIONS(785), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_CARET_EQ] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_SLASH_EQ] = ACTIONS(785), - [anon_sym_PLUS_EQ] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_PIPE_EQ] = ACTIONS(785), - [anon_sym_GT_GT_EQ] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_DASH_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(785), + [1609] = { + [anon_sym_LPAREN2] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_STAR_EQ] = ACTIONS(784), + [anon_sym_LT_LT_EQ] = ACTIONS(784), + [anon_sym_PERCENT_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_CARET_EQ] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_SLASH_EQ] = ACTIONS(784), + [anon_sym_PLUS_EQ] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_PIPE_EQ] = ACTIONS(784), + [anon_sym_GT_GT_EQ] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_DASH_EQ] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_AMP_EQ] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_RBRACK] = ACTIONS(784), }, - [1615] = { - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_STAR_EQ] = ACTIONS(794), - [anon_sym_LT_LT_EQ] = ACTIONS(794), - [anon_sym_PERCENT_EQ] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_CARET_EQ] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_SLASH_EQ] = ACTIONS(794), - [anon_sym_PLUS_EQ] = ACTIONS(794), - [anon_sym_CARET] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_PIPE_EQ] = ACTIONS(794), - [anon_sym_GT_GT_EQ] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_DOT] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_PERCENT] = ACTIONS(796), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(794), - [anon_sym_DASH_EQ] = ACTIONS(794), - [anon_sym_LT_EQ] = ACTIONS(794), - [anon_sym_BANG_EQ] = ACTIONS(794), - [anon_sym_AMP_EQ] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_DASH_GT] = ACTIONS(794), - [anon_sym_EQ] = ACTIONS(796), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(794), + [1610] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_STAR_EQ] = ACTIONS(793), + [anon_sym_LT_LT_EQ] = ACTIONS(793), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_PERCENT_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_CARET_EQ] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_SLASH_EQ] = ACTIONS(793), + [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_PIPE_EQ] = ACTIONS(793), + [anon_sym_GT_GT_EQ] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_DASH_EQ] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_RBRACK] = ACTIONS(793), }, - [1616] = { - [sym_virtual_specifier] = STATE(2638), - [sym_template_type] = STATE(2639), - [sym_scoped_namespace_identifier] = STATE(1625), - [sym_field_declaration_list] = STATE(2640), - [sym_scoped_type_identifier] = STATE(2641), - [sym_base_class_clause] = STATE(2642), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(5436), - [anon_sym_COLON_COLON] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_override] = ACTIONS(298), + [1611] = { + [sym_scoped_type_identifier] = STATE(2623), + [sym_virtual_specifier] = STATE(2624), + [sym_template_type] = STATE(2625), + [sym_scoped_namespace_identifier] = STATE(1623), + [sym_field_declaration_list] = STATE(2626), + [sym_base_class_clause] = STATE(2627), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(5435), + [anon_sym_COLON_COLON] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_override] = ACTIONS(300), }, - [1617] = { - [sym_virtual_specifier] = STATE(2644), - [sym_template_type] = STATE(2645), - [sym_scoped_namespace_identifier] = STATE(1625), - [sym_field_declaration_list] = STATE(2646), - [sym_scoped_type_identifier] = STATE(2647), - [sym_base_class_clause] = STATE(2648), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(5440), - [anon_sym_COLON_COLON] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_override] = ACTIONS(298), + [1612] = { + [sym_scoped_type_identifier] = STATE(2629), + [sym_virtual_specifier] = STATE(2630), + [sym_template_type] = STATE(2631), + [sym_scoped_namespace_identifier] = STATE(1623), + [sym_field_declaration_list] = STATE(2632), + [sym_base_class_clause] = STATE(2633), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(5439), + [anon_sym_COLON_COLON] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_override] = ACTIONS(300), }, - [1618] = { - [sym_union_specifier] = STATE(2649), - [sym_macro_type_specifier] = STATE(2649), - [sym_class_specifier] = STATE(2649), - [sym_template_type] = STATE(1623), - [sym_sized_type_specifier] = STATE(2649), - [sym_scoped_namespace_identifier] = STATE(1625), - [sym__type_specifier] = STATE(2649), - [aux_sym_sized_type_specifier_repeat1] = STATE(1626), - [sym_struct_specifier] = STATE(2649), - [sym_enum_specifier] = STATE(2649), - [sym_scoped_type_identifier] = STATE(1624), - [sym_dependent_type] = STATE(2649), - [anon_sym_unsigned] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(3248), - [sym_auto] = ACTIONS(5442), - [anon_sym_signed] = ACTIONS(3252), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3252), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3254), - [sym_identifier] = ACTIONS(3264), - [anon_sym_short] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3258), - [sym_primitive_type] = ACTIONS(5442), + [1613] = { + [sym_union_specifier] = STATE(2634), + [sym_macro_type_specifier] = STATE(2634), + [sym_class_specifier] = STATE(2634), + [aux_sym_sized_type_specifier_repeat1] = STATE(1618), + [sym_sized_type_specifier] = STATE(2634), + [sym__type_specifier] = STATE(2634), + [sym_scoped_type_identifier] = STATE(1621), + [sym_enum_specifier] = STATE(2634), + [sym_template_type] = STATE(1622), + [sym_scoped_namespace_identifier] = STATE(1623), + [sym_dependent_type] = STATE(2634), + [sym_struct_specifier] = STATE(2634), + [anon_sym_unsigned] = ACTIONS(3254), + [anon_sym_struct] = ACTIONS(3250), + [sym_auto] = ACTIONS(5441), + [anon_sym_signed] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3254), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3260), + [sym_primitive_type] = ACTIONS(5441), }, - [1619] = { - [sym_identifier] = ACTIONS(5444), + [1614] = { + [sym_identifier] = ACTIONS(5443), [sym_comment] = ACTIONS(3), }, - [1620] = { - [sym_template_argument_list] = STATE(2652), + [1615] = { + [sym_template_argument_list] = STATE(2637), [anon_sym_LPAREN2] = ACTIONS(185), [anon_sym_GT_GT] = ACTIONS(169), [anon_sym_DASH] = ACTIONS(169), @@ -73942,10 +73860,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(185), [anon_sym_PERCENT_EQ] = ACTIONS(185), - [anon_sym_COLON_COLON] = ACTIONS(5446), + [anon_sym_COLON_COLON] = ACTIONS(5445), [anon_sym_EQ_EQ] = ACTIONS(185), [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(5448), + [anon_sym_LT] = ACTIONS(5447), [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_AMP] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(169), @@ -73977,1264 +73895,1269 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(185), [anon_sym_RBRACK] = ACTIONS(185), }, - [1621] = { - [sym_enumerator_list] = STATE(2655), + [1616] = { + [sym_enumerator_list] = STATE(2640), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(5451), - [sym_identifier] = ACTIONS(5453), + [anon_sym_LBRACE] = ACTIONS(5450), + [sym_identifier] = ACTIONS(5452), }, - [1622] = { - [sym_virtual_specifier] = STATE(2657), - [sym_template_type] = STATE(2658), - [sym_scoped_namespace_identifier] = STATE(1625), - [sym_field_declaration_list] = STATE(2659), - [sym_scoped_type_identifier] = STATE(2660), - [sym_base_class_clause] = STATE(2661), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(5455), - [anon_sym_COLON_COLON] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_override] = ACTIONS(298), + [1617] = { + [sym_scoped_type_identifier] = STATE(2642), + [sym_virtual_specifier] = STATE(2643), + [sym_template_type] = STATE(2644), + [sym_scoped_namespace_identifier] = STATE(1623), + [sym_field_declaration_list] = STATE(2645), + [sym_base_class_clause] = STATE(2646), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(5454), + [anon_sym_COLON_COLON] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_override] = ACTIONS(300), }, - [1623] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_LT_LT_EQ] = ACTIONS(545), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(5457), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_CARET_EQ] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_PIPE_EQ] = ACTIONS(545), - [anon_sym_GT_GT_EQ] = ACTIONS(545), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACK] = ACTIONS(545), + [1618] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2649), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(5456), + [anon_sym_long] = ACTIONS(5456), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(5456), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(5458), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(5460), + [anon_sym_unsigned] = ACTIONS(5456), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACK] = ACTIONS(554), }, - [1624] = { - [sym_template_argument_list] = STATE(2663), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_LT_LT_EQ] = ACTIONS(545), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(5459), - [anon_sym_CARET_EQ] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_PIPE_EQ] = ACTIONS(545), - [anon_sym_GT_GT_EQ] = ACTIONS(545), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACK] = ACTIONS(545), + [1619] = { + [sym_new_declarator] = STATE(2651), + [sym_argument_list] = STATE(2652), + [sym_initializer_list] = STATE(2652), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_RBRACK] = ACTIONS(1286), }, - [1625] = { - [anon_sym_COLON_COLON] = ACTIONS(5457), - [sym_comment] = ACTIONS(3), + [1620] = { + [sym_union_specifier] = STATE(2653), + [sym_macro_type_specifier] = STATE(2653), + [sym_class_specifier] = STATE(2653), + [aux_sym_sized_type_specifier_repeat1] = STATE(1618), + [sym_sized_type_specifier] = STATE(2653), + [sym__type_specifier] = STATE(2653), + [sym_scoped_type_identifier] = STATE(1621), + [sym_enum_specifier] = STATE(2653), + [sym_template_type] = STATE(1622), + [sym_scoped_namespace_identifier] = STATE(1623), + [sym_dependent_type] = STATE(2653), + [sym_struct_specifier] = STATE(2653), + [anon_sym_unsigned] = ACTIONS(3254), + [anon_sym_struct] = ACTIONS(3250), + [sym_auto] = ACTIONS(5464), + [anon_sym_signed] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3254), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3260), + [sym_primitive_type] = ACTIONS(5464), }, - [1626] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2666), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(5462), - [anon_sym_long] = ACTIONS(5462), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(5462), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(5464), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(5466), - [anon_sym_unsigned] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), + [1621] = { + [sym_template_argument_list] = STATE(2654), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(5466), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACK] = ACTIONS(530), }, - [1627] = { - [sym_initializer_list] = STATE(2669), - [sym_new_declarator] = STATE(2668), - [sym_argument_list] = STATE(2669), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(5468), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_RBRACK] = ACTIONS(1283), + [1622] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(5469), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACK] = ACTIONS(530), }, - [1628] = { - [sym_union_specifier] = STATE(2670), - [sym_macro_type_specifier] = STATE(2670), - [sym_class_specifier] = STATE(2670), - [sym_template_type] = STATE(1623), - [sym_sized_type_specifier] = STATE(2670), - [sym_scoped_namespace_identifier] = STATE(1625), - [sym__type_specifier] = STATE(2670), - [aux_sym_sized_type_specifier_repeat1] = STATE(1626), - [sym_struct_specifier] = STATE(2670), - [sym_enum_specifier] = STATE(2670), - [sym_scoped_type_identifier] = STATE(1624), - [sym_dependent_type] = STATE(2670), - [anon_sym_unsigned] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(3248), - [sym_auto] = ACTIONS(5470), - [anon_sym_signed] = ACTIONS(3252), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3252), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3254), - [sym_identifier] = ACTIONS(3264), - [anon_sym_short] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3258), - [sym_primitive_type] = ACTIONS(5470), + [1623] = { + [anon_sym_COLON_COLON] = ACTIONS(5469), + [sym_comment] = ACTIONS(3), }, - [1629] = { - [anon_sym_SQUOTE] = ACTIONS(5472), + [1624] = { + [anon_sym_SQUOTE] = ACTIONS(5471), [sym_comment] = ACTIONS(3), }, - [1630] = { - [sym_template_type] = STATE(239), + [1625] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(5474), - }, - [1631] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(5490), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(800), - }, - [1632] = { - [sym_destructor_name] = STATE(2673), - [sym_identifier] = ACTIONS(5492), - [sym_operator_name] = ACTIONS(5494), - [anon_sym_TILDE] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(5473), }, - [1633] = { - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(1709), - [anon_sym_LT_LT_EQ] = ACTIONS(1709), - [anon_sym_PERCENT_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_CARET_EQ] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_SLASH_EQ] = ACTIONS(1709), - [anon_sym_PLUS_EQ] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_PIPE_EQ] = ACTIONS(1709), - [anon_sym_GT_GT_EQ] = ACTIONS(1709), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_PERCENT] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_DASH_EQ] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_AMP_EQ] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_DASH_GT] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1711), - [anon_sym_RBRACK] = ACTIONS(1709), + [1626] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(5485), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(5487), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(5489), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(804), }, - [1634] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2675), - [sym_logical_expression] = STATE(2675), - [sym_bitwise_expression] = STATE(2675), - [sym_cast_expression] = STATE(2675), - [sym_new_expression] = STATE(2675), - [sym_field_expression] = STATE(2675), - [sym_compound_literal_expression] = STATE(2675), - [sym_char_literal] = STATE(2675), - [sym_template_function] = STATE(2675), - [sym_conditional_expression] = STATE(2675), - [sym_equality_expression] = STATE(2675), - [sym_relational_expression] = STATE(2675), - [sym_delete_expression] = STATE(2675), - [sym_sizeof_expression] = STATE(2675), - [sym_parenthesized_expression] = STATE(2675), - [sym_lambda_expression] = STATE(2675), - [sym_concatenated_string] = STATE(2675), - [sym_string_literal] = STATE(758), + [1627] = { + [sym_template_function] = STATE(2658), + [sym__expression] = STATE(2658), + [sym_logical_expression] = STATE(2658), + [sym_bitwise_expression] = STATE(2658), + [sym_cast_expression] = STATE(2658), + [sym_delete_expression] = STATE(2658), + [sym_field_expression] = STATE(2658), + [sym_compound_literal_expression] = STATE(2658), + [sym_lambda_expression] = STATE(2658), + [sym_char_literal] = STATE(2658), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2675), - [sym_assignment_expression] = STATE(2675), - [sym_pointer_expression] = STATE(2675), - [sym_shift_expression] = STATE(2675), - [sym_math_expression] = STATE(2675), - [sym_call_expression] = STATE(2675), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2658), + [sym_equality_expression] = STATE(2658), + [sym_relational_expression] = STATE(2658), + [sym_sizeof_expression] = STATE(2658), + [sym_subscript_expression] = STATE(2658), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5496), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5498), - [sym_null] = ACTIONS(5498), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5496), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5498), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5498), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2658), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2658), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2658), + [sym_pointer_expression] = STATE(2658), + [sym_shift_expression] = STATE(2658), + [sym_math_expression] = STATE(2658), + [sym_call_expression] = STATE(2658), + [sym_new_expression] = STATE(2658), + [sym_raw_string_literal] = ACTIONS(5491), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5493), + [sym_null] = ACTIONS(5493), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5491), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5493), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5493), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1635] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2676), - [sym_logical_expression] = STATE(2676), - [sym_bitwise_expression] = STATE(2676), - [sym_cast_expression] = STATE(2676), - [sym_new_expression] = STATE(2676), - [sym_field_expression] = STATE(2676), - [sym_compound_literal_expression] = STATE(2676), - [sym_char_literal] = STATE(2676), - [sym_template_function] = STATE(2676), - [sym_conditional_expression] = STATE(2676), - [sym_equality_expression] = STATE(2676), - [sym_relational_expression] = STATE(2676), - [sym_delete_expression] = STATE(2676), - [sym_sizeof_expression] = STATE(2676), - [sym_parenthesized_expression] = STATE(2676), - [sym_lambda_expression] = STATE(2676), - [sym_concatenated_string] = STATE(2676), - [sym_string_literal] = STATE(758), + [1628] = { + [sym_template_function] = STATE(2659), + [sym__expression] = STATE(2659), + [sym_logical_expression] = STATE(2659), + [sym_bitwise_expression] = STATE(2659), + [sym_cast_expression] = STATE(2659), + [sym_delete_expression] = STATE(2659), + [sym_field_expression] = STATE(2659), + [sym_compound_literal_expression] = STATE(2659), + [sym_lambda_expression] = STATE(2659), + [sym_char_literal] = STATE(2659), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2676), - [sym_assignment_expression] = STATE(2676), - [sym_pointer_expression] = STATE(2676), - [sym_shift_expression] = STATE(2676), - [sym_math_expression] = STATE(2676), - [sym_call_expression] = STATE(2676), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2659), + [sym_equality_expression] = STATE(2659), + [sym_relational_expression] = STATE(2659), + [sym_sizeof_expression] = STATE(2659), + [sym_subscript_expression] = STATE(2659), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5500), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5502), - [sym_null] = ACTIONS(5502), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5500), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5502), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5502), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2659), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2659), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2659), + [sym_pointer_expression] = STATE(2659), + [sym_shift_expression] = STATE(2659), + [sym_math_expression] = STATE(2659), + [sym_call_expression] = STATE(2659), + [sym_new_expression] = STATE(2659), + [sym_raw_string_literal] = ACTIONS(5495), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5497), + [sym_null] = ACTIONS(5497), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5495), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5497), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5497), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1636] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2677), - [sym_logical_expression] = STATE(2677), - [sym_bitwise_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_field_expression] = STATE(2677), - [sym_compound_literal_expression] = STATE(2677), - [sym_char_literal] = STATE(2677), - [sym_template_function] = STATE(2677), - [sym_conditional_expression] = STATE(2677), - [sym_equality_expression] = STATE(2677), - [sym_relational_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_concatenated_string] = STATE(2677), - [sym_string_literal] = STATE(758), + [1629] = { + [sym_template_function] = STATE(2660), + [sym__expression] = STATE(2660), + [sym_logical_expression] = STATE(2660), + [sym_bitwise_expression] = STATE(2660), + [sym_cast_expression] = STATE(2660), + [sym_delete_expression] = STATE(2660), + [sym_field_expression] = STATE(2660), + [sym_compound_literal_expression] = STATE(2660), + [sym_lambda_expression] = STATE(2660), + [sym_char_literal] = STATE(2660), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2677), - [sym_shift_expression] = STATE(2677), - [sym_math_expression] = STATE(2677), - [sym_call_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2660), + [sym_equality_expression] = STATE(2660), + [sym_relational_expression] = STATE(2660), + [sym_sizeof_expression] = STATE(2660), + [sym_subscript_expression] = STATE(2660), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5504), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5506), - [sym_null] = ACTIONS(5506), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5504), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5506), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5506), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2660), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2660), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2660), + [sym_pointer_expression] = STATE(2660), + [sym_shift_expression] = STATE(2660), + [sym_math_expression] = STATE(2660), + [sym_call_expression] = STATE(2660), + [sym_new_expression] = STATE(2660), + [sym_raw_string_literal] = ACTIONS(5499), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5501), + [sym_null] = ACTIONS(5501), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5501), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1637] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2678), - [sym_logical_expression] = STATE(2678), - [sym_bitwise_expression] = STATE(2678), - [sym_cast_expression] = STATE(2678), - [sym_new_expression] = STATE(2678), - [sym_field_expression] = STATE(2678), - [sym_compound_literal_expression] = STATE(2678), - [sym_char_literal] = STATE(2678), - [sym_template_function] = STATE(2678), - [sym_conditional_expression] = STATE(2678), - [sym_equality_expression] = STATE(2678), - [sym_relational_expression] = STATE(2678), - [sym_delete_expression] = STATE(2678), - [sym_sizeof_expression] = STATE(2678), - [sym_parenthesized_expression] = STATE(2678), - [sym_lambda_expression] = STATE(2678), - [sym_concatenated_string] = STATE(2678), - [sym_string_literal] = STATE(758), + [1630] = { + [sym_template_function] = STATE(2661), + [sym__expression] = STATE(2661), + [sym_logical_expression] = STATE(2661), + [sym_bitwise_expression] = STATE(2661), + [sym_cast_expression] = STATE(2661), + [sym_delete_expression] = STATE(2661), + [sym_field_expression] = STATE(2661), + [sym_compound_literal_expression] = STATE(2661), + [sym_lambda_expression] = STATE(2661), + [sym_char_literal] = STATE(2661), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2678), - [sym_assignment_expression] = STATE(2678), - [sym_pointer_expression] = STATE(2678), - [sym_shift_expression] = STATE(2678), - [sym_math_expression] = STATE(2678), - [sym_call_expression] = STATE(2678), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2661), + [sym_equality_expression] = STATE(2661), + [sym_relational_expression] = STATE(2661), + [sym_sizeof_expression] = STATE(2661), + [sym_subscript_expression] = STATE(2661), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5508), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5510), - [sym_null] = ACTIONS(5510), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5508), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5510), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5510), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2661), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2661), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2661), + [sym_pointer_expression] = STATE(2661), + [sym_shift_expression] = STATE(2661), + [sym_math_expression] = STATE(2661), + [sym_call_expression] = STATE(2661), + [sym_new_expression] = STATE(2661), + [sym_raw_string_literal] = ACTIONS(5503), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5505), + [sym_null] = ACTIONS(5505), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5505), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1638] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2679), - [sym_logical_expression] = STATE(2679), - [sym_bitwise_expression] = STATE(2679), - [sym_cast_expression] = STATE(2679), - [sym_new_expression] = STATE(2679), - [sym_field_expression] = STATE(2679), - [sym_compound_literal_expression] = STATE(2679), - [sym_char_literal] = STATE(2679), - [sym_template_function] = STATE(2679), - [sym_conditional_expression] = STATE(2679), - [sym_equality_expression] = STATE(2679), - [sym_relational_expression] = STATE(2679), - [sym_delete_expression] = STATE(2679), - [sym_sizeof_expression] = STATE(2679), - [sym_parenthesized_expression] = STATE(2679), - [sym_lambda_expression] = STATE(2679), - [sym_concatenated_string] = STATE(2679), - [sym_string_literal] = STATE(758), + [1631] = { + [sym_template_function] = STATE(2662), + [sym__expression] = STATE(2662), + [sym_logical_expression] = STATE(2662), + [sym_bitwise_expression] = STATE(2662), + [sym_cast_expression] = STATE(2662), + [sym_delete_expression] = STATE(2662), + [sym_field_expression] = STATE(2662), + [sym_compound_literal_expression] = STATE(2662), + [sym_lambda_expression] = STATE(2662), + [sym_char_literal] = STATE(2662), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2679), - [sym_assignment_expression] = STATE(2679), - [sym_pointer_expression] = STATE(2679), - [sym_shift_expression] = STATE(2679), - [sym_math_expression] = STATE(2679), - [sym_call_expression] = STATE(2679), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2662), + [sym_equality_expression] = STATE(2662), + [sym_relational_expression] = STATE(2662), + [sym_sizeof_expression] = STATE(2662), + [sym_subscript_expression] = STATE(2662), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5512), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5514), - [sym_null] = ACTIONS(5514), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5512), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5514), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2662), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2662), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2662), + [sym_pointer_expression] = STATE(2662), + [sym_shift_expression] = STATE(2662), + [sym_math_expression] = STATE(2662), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(2662), + [sym_raw_string_literal] = ACTIONS(5507), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5509), + [sym_null] = ACTIONS(5509), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5507), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5509), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1639] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2680), - [sym_logical_expression] = STATE(2680), - [sym_bitwise_expression] = STATE(2680), - [sym_cast_expression] = STATE(2680), - [sym_new_expression] = STATE(2680), - [sym_field_expression] = STATE(2680), - [sym_compound_literal_expression] = STATE(2680), - [sym_char_literal] = STATE(2680), - [sym_template_function] = STATE(2680), - [sym_conditional_expression] = STATE(2680), - [sym_equality_expression] = STATE(2680), - [sym_relational_expression] = STATE(2680), - [sym_delete_expression] = STATE(2680), - [sym_sizeof_expression] = STATE(2680), - [sym_parenthesized_expression] = STATE(2680), - [sym_lambda_expression] = STATE(2680), - [sym_concatenated_string] = STATE(2680), - [sym_string_literal] = STATE(758), + [1632] = { + [sym_template_function] = STATE(2663), + [sym__expression] = STATE(2663), + [sym_logical_expression] = STATE(2663), + [sym_bitwise_expression] = STATE(2663), + [sym_cast_expression] = STATE(2663), + [sym_delete_expression] = STATE(2663), + [sym_field_expression] = STATE(2663), + [sym_compound_literal_expression] = STATE(2663), + [sym_lambda_expression] = STATE(2663), + [sym_char_literal] = STATE(2663), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2680), - [sym_assignment_expression] = STATE(2680), - [sym_pointer_expression] = STATE(2680), - [sym_shift_expression] = STATE(2680), - [sym_math_expression] = STATE(2680), - [sym_call_expression] = STATE(2680), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2663), + [sym_equality_expression] = STATE(2663), + [sym_relational_expression] = STATE(2663), + [sym_sizeof_expression] = STATE(2663), + [sym_subscript_expression] = STATE(2663), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5516), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5518), - [sym_null] = ACTIONS(5518), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5516), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5518), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2663), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2663), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2663), + [sym_pointer_expression] = STATE(2663), + [sym_shift_expression] = STATE(2663), + [sym_math_expression] = STATE(2663), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(2663), + [sym_raw_string_literal] = ACTIONS(5511), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5513), + [sym_null] = ACTIONS(5513), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5513), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1640] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2681), - [sym_logical_expression] = STATE(2681), - [sym_bitwise_expression] = STATE(2681), - [sym_cast_expression] = STATE(2681), - [sym_new_expression] = STATE(2681), - [sym_field_expression] = STATE(2681), - [sym_compound_literal_expression] = STATE(2681), - [sym_char_literal] = STATE(2681), - [sym_template_function] = STATE(2681), - [sym_conditional_expression] = STATE(2681), - [sym_equality_expression] = STATE(2681), - [sym_relational_expression] = STATE(2681), - [sym_delete_expression] = STATE(2681), - [sym_sizeof_expression] = STATE(2681), - [sym_parenthesized_expression] = STATE(2681), - [sym_lambda_expression] = STATE(2681), - [sym_concatenated_string] = STATE(2681), - [sym_string_literal] = STATE(758), + [1633] = { + [sym_template_function] = STATE(2664), + [sym__expression] = STATE(2664), + [sym_logical_expression] = STATE(2664), + [sym_bitwise_expression] = STATE(2664), + [sym_cast_expression] = STATE(2664), + [sym_delete_expression] = STATE(2664), + [sym_field_expression] = STATE(2664), + [sym_compound_literal_expression] = STATE(2664), + [sym_lambda_expression] = STATE(2664), + [sym_char_literal] = STATE(2664), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2681), - [sym_assignment_expression] = STATE(2681), - [sym_pointer_expression] = STATE(2681), - [sym_shift_expression] = STATE(2681), - [sym_math_expression] = STATE(2681), - [sym_call_expression] = STATE(2681), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2664), + [sym_equality_expression] = STATE(2664), + [sym_relational_expression] = STATE(2664), + [sym_sizeof_expression] = STATE(2664), + [sym_subscript_expression] = STATE(2664), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5520), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5522), - [sym_null] = ACTIONS(5522), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5520), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5522), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5522), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2664), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2664), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2664), + [sym_pointer_expression] = STATE(2664), + [sym_shift_expression] = STATE(2664), + [sym_math_expression] = STATE(2664), + [sym_call_expression] = STATE(2664), + [sym_new_expression] = STATE(2664), + [sym_raw_string_literal] = ACTIONS(5515), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5517), + [sym_null] = ACTIONS(5517), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5515), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5517), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5517), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1641] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2682), - [sym_logical_expression] = STATE(2682), - [sym_bitwise_expression] = STATE(2682), - [sym_cast_expression] = STATE(2682), - [sym_new_expression] = STATE(2682), - [sym_field_expression] = STATE(2682), - [sym_compound_literal_expression] = STATE(2682), - [sym_char_literal] = STATE(2682), - [sym_template_function] = STATE(2682), - [sym_conditional_expression] = STATE(2682), - [sym_equality_expression] = STATE(2682), - [sym_relational_expression] = STATE(2682), - [sym_delete_expression] = STATE(2682), - [sym_sizeof_expression] = STATE(2682), - [sym_parenthesized_expression] = STATE(2682), - [sym_lambda_expression] = STATE(2682), - [sym_concatenated_string] = STATE(2682), - [sym_string_literal] = STATE(758), + [1634] = { + [sym_template_function] = STATE(2665), + [sym__expression] = STATE(2665), + [sym_logical_expression] = STATE(2665), + [sym_bitwise_expression] = STATE(2665), + [sym_cast_expression] = STATE(2665), + [sym_delete_expression] = STATE(2665), + [sym_field_expression] = STATE(2665), + [sym_compound_literal_expression] = STATE(2665), + [sym_lambda_expression] = STATE(2665), + [sym_char_literal] = STATE(2665), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2682), - [sym_assignment_expression] = STATE(2682), - [sym_pointer_expression] = STATE(2682), - [sym_shift_expression] = STATE(2682), - [sym_math_expression] = STATE(2682), - [sym_call_expression] = STATE(2682), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2665), + [sym_equality_expression] = STATE(2665), + [sym_relational_expression] = STATE(2665), + [sym_sizeof_expression] = STATE(2665), + [sym_subscript_expression] = STATE(2665), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5526), - [sym_null] = ACTIONS(5526), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5524), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5526), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5526), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2665), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2665), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2665), + [sym_pointer_expression] = STATE(2665), + [sym_shift_expression] = STATE(2665), + [sym_math_expression] = STATE(2665), + [sym_call_expression] = STATE(2665), + [sym_new_expression] = STATE(2665), + [sym_raw_string_literal] = ACTIONS(5519), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5521), + [sym_null] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5519), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5521), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5521), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1642] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2683), - [sym_logical_expression] = STATE(2683), - [sym_bitwise_expression] = STATE(2683), - [sym_cast_expression] = STATE(2683), - [sym_new_expression] = STATE(2683), - [sym_field_expression] = STATE(2683), - [sym_compound_literal_expression] = STATE(2683), - [sym_char_literal] = STATE(2683), - [sym_template_function] = STATE(2683), - [sym_conditional_expression] = STATE(2683), - [sym_equality_expression] = STATE(2683), - [sym_relational_expression] = STATE(2683), - [sym_delete_expression] = STATE(2683), - [sym_sizeof_expression] = STATE(2683), - [sym_parenthesized_expression] = STATE(2683), - [sym_lambda_expression] = STATE(2683), - [sym_concatenated_string] = STATE(2683), - [sym_string_literal] = STATE(758), + [1635] = { + [sym_template_function] = STATE(2666), + [sym__expression] = STATE(2666), + [sym_logical_expression] = STATE(2666), + [sym_bitwise_expression] = STATE(2666), + [sym_cast_expression] = STATE(2666), + [sym_delete_expression] = STATE(2666), + [sym_field_expression] = STATE(2666), + [sym_compound_literal_expression] = STATE(2666), + [sym_lambda_expression] = STATE(2666), + [sym_char_literal] = STATE(2666), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2683), - [sym_assignment_expression] = STATE(2683), - [sym_pointer_expression] = STATE(2683), - [sym_shift_expression] = STATE(2683), - [sym_math_expression] = STATE(2683), - [sym_call_expression] = STATE(2683), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2666), + [sym_equality_expression] = STATE(2666), + [sym_relational_expression] = STATE(2666), + [sym_sizeof_expression] = STATE(2666), + [sym_subscript_expression] = STATE(2666), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5528), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5530), - [sym_null] = ACTIONS(5530), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5528), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5530), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2666), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2666), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2666), + [sym_pointer_expression] = STATE(2666), + [sym_shift_expression] = STATE(2666), + [sym_math_expression] = STATE(2666), + [sym_call_expression] = STATE(2666), + [sym_new_expression] = STATE(2666), + [sym_raw_string_literal] = ACTIONS(5523), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5525), + [sym_null] = ACTIONS(5525), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5523), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5525), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1643] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2684), - [sym_logical_expression] = STATE(2684), - [sym_bitwise_expression] = STATE(2684), - [sym_cast_expression] = STATE(2684), - [sym_new_expression] = STATE(2684), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2684), - [sym_char_literal] = STATE(2684), - [sym_template_function] = STATE(2684), - [sym_conditional_expression] = STATE(2684), - [sym_equality_expression] = STATE(2684), - [sym_relational_expression] = STATE(2684), - [sym_delete_expression] = STATE(2684), - [sym_sizeof_expression] = STATE(2684), - [sym_parenthesized_expression] = STATE(2684), - [sym_lambda_expression] = STATE(2684), - [sym_concatenated_string] = STATE(2684), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2684), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2684), - [sym_math_expression] = STATE(2684), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5532), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(5534), - [sym_null] = ACTIONS(5534), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5532), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(5534), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1636] = { + [sym_template_function] = STATE(2667), + [sym__expression] = STATE(2667), + [sym_logical_expression] = STATE(2667), + [sym_bitwise_expression] = STATE(2667), + [sym_cast_expression] = STATE(2667), + [sym_delete_expression] = STATE(2667), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2667), + [sym_lambda_expression] = STATE(2667), + [sym_char_literal] = STATE(2667), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2667), + [sym_equality_expression] = STATE(2667), + [sym_relational_expression] = STATE(2667), + [sym_sizeof_expression] = STATE(2667), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2667), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2667), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2667), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2667), + [sym_math_expression] = STATE(2667), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2667), + [sym_raw_string_literal] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(5529), + [sym_null] = ACTIONS(5529), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5527), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(5529), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(5529), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1644] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2685), - [sym_logical_expression] = STATE(2685), - [sym_bitwise_expression] = STATE(2685), - [sym_cast_expression] = STATE(2685), - [sym_new_expression] = STATE(2685), - [sym_field_expression] = STATE(2685), - [sym_compound_literal_expression] = STATE(2685), - [sym_char_literal] = STATE(2685), - [sym_template_function] = STATE(2685), - [sym_conditional_expression] = STATE(2685), - [sym_equality_expression] = STATE(2685), - [sym_relational_expression] = STATE(2685), - [sym_delete_expression] = STATE(2685), - [sym_sizeof_expression] = STATE(2685), - [sym_parenthesized_expression] = STATE(2685), - [sym_lambda_expression] = STATE(2685), - [sym_concatenated_string] = STATE(2685), - [sym_string_literal] = STATE(758), + [1637] = { + [sym_template_function] = STATE(2668), + [sym__expression] = STATE(2668), + [sym_logical_expression] = STATE(2668), + [sym_bitwise_expression] = STATE(2668), + [sym_cast_expression] = STATE(2668), + [sym_delete_expression] = STATE(2668), + [sym_field_expression] = STATE(2668), + [sym_compound_literal_expression] = STATE(2668), + [sym_lambda_expression] = STATE(2668), + [sym_char_literal] = STATE(2668), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2685), - [sym_assignment_expression] = STATE(2685), - [sym_pointer_expression] = STATE(2685), - [sym_shift_expression] = STATE(2685), - [sym_math_expression] = STATE(2685), - [sym_call_expression] = STATE(2685), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2668), + [sym_equality_expression] = STATE(2668), + [sym_relational_expression] = STATE(2668), + [sym_sizeof_expression] = STATE(2668), + [sym_subscript_expression] = STATE(2668), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5536), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(5538), - [sym_null] = ACTIONS(5538), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5536), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(5538), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(5538), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(2668), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(2668), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2668), + [sym_pointer_expression] = STATE(2668), + [sym_shift_expression] = STATE(2668), + [sym_math_expression] = STATE(2668), + [sym_call_expression] = STATE(2668), + [sym_new_expression] = STATE(2668), + [sym_raw_string_literal] = ACTIONS(5531), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(5533), + [sym_null] = ACTIONS(5533), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5531), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(5533), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [1645] = { - [anon_sym_LPAREN2] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(654), - [anon_sym_STAR_EQ] = ACTIONS(654), - [anon_sym_LT_LT_EQ] = ACTIONS(654), - [anon_sym_PERCENT_EQ] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(654), - [anon_sym_GT_GT_EQ] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_RBRACK] = ACTIONS(654), + [1638] = { + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PERCENT] = ACTIONS(654), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_RBRACK] = ACTIONS(656), }, - [1646] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - [anon_sym_STAR_EQ] = ACTIONS(785), - [anon_sym_LT_LT_EQ] = ACTIONS(785), - [anon_sym_PERCENT_EQ] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_CARET_EQ] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_SLASH_EQ] = ACTIONS(785), - [anon_sym_PLUS_EQ] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_PIPE_EQ] = ACTIONS(785), - [anon_sym_GT_GT_EQ] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_DASH_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(783), - [anon_sym_RBRACK] = ACTIONS(785), + [1639] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_STAR_EQ] = ACTIONS(793), + [anon_sym_LT_LT_EQ] = ACTIONS(793), + [anon_sym_PERCENT_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_CARET_EQ] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_SLASH_EQ] = ACTIONS(793), + [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_PIPE_EQ] = ACTIONS(793), + [anon_sym_GT_GT_EQ] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_DASH_EQ] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_RBRACK] = ACTIONS(793), }, - [1647] = { - [sym_string_literal] = STATE(2686), - [aux_sym_concatenated_string_repeat1] = STATE(2686), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_RBRACK] = ACTIONS(1701), + [1640] = { + [anon_sym_LPAREN2] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_STAR_EQ] = ACTIONS(1679), + [anon_sym_LT_LT_EQ] = ACTIONS(1679), + [anon_sym_PERCENT_EQ] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_CARET_EQ] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_SLASH_EQ] = ACTIONS(1679), + [anon_sym_PLUS_EQ] = ACTIONS(1679), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_PIPE_EQ] = ACTIONS(1679), + [anon_sym_GT_GT_EQ] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_PERCENT] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1679), + [anon_sym_DASH_EQ] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_AMP_EQ] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_DASH_GT] = ACTIONS(1679), + [anon_sym_EQ] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_RBRACK] = ACTIONS(1679), }, - [1648] = { - [sym_compound_statement] = STATE(2688), - [anon_sym_LPAREN2] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(5540), + [1641] = { + [sym_compound_statement] = STATE(2670), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(5535), [sym_comment] = ACTIONS(3), }, - [1649] = { - [anon_sym_RPAREN] = ACTIONS(5542), + [1642] = { + [sym_string_literal] = STATE(2671), + [aux_sym_concatenated_string_repeat1] = STATE(2671), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_RBRACK] = ACTIONS(1766), + }, + [1643] = { + [sym_destructor_name] = STATE(2672), + [sym_identifier] = ACTIONS(5537), + [sym_operator_name] = ACTIONS(5539), + [anon_sym_TILDE] = ACTIONS(3225), [sym_comment] = ACTIONS(3), }, - [1650] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(2160), + [1644] = { + [anon_sym_RPAREN] = ACTIONS(5541), + [sym_comment] = ACTIONS(3), }, - [1651] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [1645] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), [anon_sym_RBRACK] = ACTIONS(2162), }, - [1652] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), + [1646] = { [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RBRACK] = ACTIONS(5543), }, - [1653] = { - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACK] = ACTIONS(2202), - [anon_sym_final] = ACTIONS(2202), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(2202), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_DASH_GT] = ACTIONS(2202), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2202), + [1647] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_PERCENT] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2164), + [anon_sym_RBRACK] = ACTIONS(2164), }, - [1654] = { - [sym_argument_list] = STATE(1165), - [aux_sym_template_argument_list_repeat1] = STATE(2691), + [1648] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(2164), + [anon_sym_RBRACK] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2164), + }, + [1649] = { + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACK] = ACTIONS(2204), + [anon_sym_final] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_CARET] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_LT_LT] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2204), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_DASH_GT] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_GT_GT] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), + }, + [1650] = { + [aux_sym_template_argument_list_repeat1] = STATE(2676), + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), @@ -75248,7 +75171,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_GT2] = ACTIONS(5544), + [anon_sym_GT2] = ACTIONS(5545), [anon_sym_AMP] = ACTIONS(2321), [anon_sym_QMARK] = ACTIONS(2323), [sym_comment] = ACTIONS(3), @@ -75264,688 +75187,664 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [1655] = { - [aux_sym_template_argument_list_repeat1] = STATE(2693), + [1651] = { + [aux_sym_template_argument_list_repeat1] = STATE(2678), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(5546), + [anon_sym_GT2] = ACTIONS(5547), [sym_comment] = ACTIONS(3), }, - [1656] = { + [1652] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5548), + [anon_sym_RBRACE] = ACTIONS(5549), }, - [1657] = { - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2397), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2397), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_PIPE_PIPE] = ACTIONS(2397), - [anon_sym_DOT] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_EQ_EQ] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_PERCENT] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_QMARK] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_GT_EQ] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_SLASH] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2397), - [anon_sym_BANG_EQ] = ACTIONS(2397), - [anon_sym_AMP_AMP] = ACTIONS(2397), - [anon_sym_DASH_GT] = ACTIONS(2397), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_GT_GT] = ACTIONS(2397), - [anon_sym_RBRACK] = ACTIONS(2397), + [1653] = { + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_CARET] = ACTIONS(2399), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_DOT] = ACTIONS(2399), + [anon_sym_LT_LT] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_DASH_GT] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_GT_GT] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), }, - [1658] = { - [sym_argument_list] = STATE(341), - [aux_sym_initializer_list_repeat1] = STATE(2696), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1654] = { + [aux_sym_initializer_list_repeat1] = STATE(2681), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(5551), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(5549), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1659] = { - [aux_sym_initializer_list_repeat1] = STATE(2696), + [1655] = { + [aux_sym_initializer_list_repeat1] = STATE(2681), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(5550), - [anon_sym_RBRACE] = ACTIONS(5548), + [anon_sym_COMMA] = ACTIONS(5551), + [anon_sym_RBRACE] = ACTIONS(5549), }, - [1660] = { - [sym_template_argument_list] = STATE(1676), - [sym_virtual_specifier] = STATE(2697), - [sym_field_declaration_list] = STATE(2698), - [sym_base_class_clause] = STATE(2699), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACK] = ACTIONS(1084), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_SLASH] = ACTIONS(1086), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_PERCENT] = ACTIONS(1084), + [1656] = { + [anon_sym_LPAREN2] = ACTIONS(5553), + [anon_sym_COMMA] = ACTIONS(5553), + [anon_sym_SEMI] = ACTIONS(5553), + [anon_sym_COLON] = ACTIONS(5553), + [anon_sym_GT2] = ACTIONS(5553), + [anon_sym_LBRACK] = ACTIONS(5553), + [anon_sym_RPAREN] = ACTIONS(5553), + [anon_sym_EQ] = ACTIONS(5553), + [anon_sym_LBRACE] = ACTIONS(5553), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_LT_EQ] = ACTIONS(1084), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_DASH_GT] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1084), }, - [1661] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(2701), - [sym_preproc_function_def] = STATE(2701), - [sym_alias_declaration] = STATE(2701), + [1657] = { + [aux_sym_structured_binding_declarator_repeat1] = STATE(1657), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5555), + [anon_sym_RBRACK] = ACTIONS(5543), + }, + [1658] = { + [sym_virtual_specifier] = STATE(2682), + [sym_template_argument_list] = STATE(1674), + [sym_field_declaration_list] = STATE(2683), + [sym_base_class_clause] = STATE(2684), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(1088), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_PERCENT] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_DASH_GT] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1088), + }, + [1659] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(2686), + [sym_preproc_function_def] = STATE(2686), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(2701), - [sym_preproc_if_in_field_declaration_list] = STATE(2701), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2701), - [sym_type_definition] = STATE(2701), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(2701), - [sym__field_declaration_list_item] = STATE(2701), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2701), - [sym_inline_method_definition] = STATE(2701), - [sym_friend_declaration] = STATE(2701), - [sym_access_specifier] = STATE(2701), - [sym_using_declaration] = STATE(2701), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(2701), - [sym_constructor_or_destructor_definition] = STATE(2701), - [sym_constructor_or_destructor_declaration] = STATE(2701), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2686), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(2686), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(2686), + [sym_preproc_if_in_field_declaration_list] = STATE(2686), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2686), + [sym_type_definition] = STATE(2686), + [sym_using_declaration] = STATE(2686), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(2686), + [sym_inline_method_definition] = STATE(2686), + [sym_constructor_or_destructor_definition] = STATE(2686), + [sym_access_specifier] = STATE(2686), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(2686), + [sym_alias_declaration] = STATE(2686), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(2686), + [sym_constructor_or_destructor_declaration] = STATE(2686), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(5554), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(5560), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, + [1660] = { + [sym_virtual_specifier] = STATE(2687), + [sym_template_argument_list] = STATE(1692), + [sym_field_declaration_list] = STATE(2688), + [sym_base_class_clause] = STATE(2689), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + }, + [1661] = { + [sym_field_declaration_list] = STATE(2688), + [sym_base_class_clause] = STATE(2689), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + }, [1662] = { - [sym_field_declaration_list] = STATE(2702), - [sym_base_class_clause] = STATE(2703), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(3302), + [sym_virtual_specifier] = STATE(2687), + [sym_field_declaration_list] = STATE(2688), + [sym_base_class_clause] = STATE(2689), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1130), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), }, [1663] = { - [sym_virtual_specifier] = STATE(2704), - [sym_field_declaration_list] = STATE(2702), - [sym_base_class_clause] = STATE(2703), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACK] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACK] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1130), + [anon_sym_mutable] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_COLON] = ACTIONS(1130), + [anon_sym_explicit] = ACTIONS(1130), + [sym_noexcept] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_constexpr] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), }, [1664] = { - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_RBRACK] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1126), - [anon_sym_mutable] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_COLON] = ACTIONS(1126), - [anon_sym_explicit] = ACTIONS(1126), - [sym_noexcept] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1126), + [sym_field_declaration_list] = STATE(2688), + [anon_sym_LBRACE] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), }, [1665] = { - [sym_template_argument_list] = STATE(1687), - [sym_virtual_specifier] = STATE(2704), - [sym_field_declaration_list] = STATE(2702), - [sym_base_class_clause] = STATE(2703), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACK] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1126), + [sym_virtual_specifier] = STATE(2690), + [sym_template_argument_list] = STATE(1674), + [sym_field_declaration_list] = STATE(2691), + [sym_base_class_clause] = STATE(2692), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_DASH_GT] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), }, [1666] = { - [sym_field_declaration_list] = STATE(2702), - [anon_sym_LBRACE] = ACTIONS(3302), + [sym_virtual_specifier] = STATE(2693), + [sym_template_argument_list] = STATE(1692), + [sym_field_declaration_list] = STATE(2694), + [sym_base_class_clause] = STATE(2695), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), }, [1667] = { - [sym_template_argument_list] = STATE(1676), - [sym_virtual_specifier] = STATE(2705), - [sym_field_declaration_list] = STATE(2706), - [sym_base_class_clause] = STATE(2707), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACK] = ACTIONS(1251), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), + [sym_field_declaration_list] = STATE(2694), + [sym_base_class_clause] = STATE(2695), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_DASH_GT] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1251), }, [1668] = { - [sym_field_declaration_list] = STATE(2708), - [sym_base_class_clause] = STATE(2709), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(3302), + [sym_virtual_specifier] = STATE(2693), + [sym_field_declaration_list] = STATE(2694), + [sym_base_class_clause] = STATE(2695), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), }, [1669] = { - [sym_virtual_specifier] = STATE(2710), - [sym_field_declaration_list] = STATE(2708), - [sym_base_class_clause] = STATE(2709), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACK] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1261), + [anon_sym_mutable] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_explicit] = ACTIONS(1261), + [sym_noexcept] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym__Atomic] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1261), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), }, [1670] = { - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACK] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1255), - [anon_sym_mutable] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1255), - [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_explicit] = ACTIONS(1255), - [sym_noexcept] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_constexpr] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), + [sym_field_declaration_list] = STATE(2694), + [anon_sym_LBRACE] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), }, [1671] = { - [sym_template_argument_list] = STATE(1687), - [sym_virtual_specifier] = STATE(2710), - [sym_field_declaration_list] = STATE(2708), - [sym_base_class_clause] = STATE(2709), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACK] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_final] = ACTIONS(1265), + [anon_sym_mutable] = ACTIONS(1265), + [anon_sym_restrict] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_override] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(1265), + [anon_sym_explicit] = ACTIONS(1265), + [sym_noexcept] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1265), + [anon_sym__Atomic] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_PERCENT] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1265), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_DASH_GT] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), }, [1672] = { - [sym_field_declaration_list] = STATE(2708), - [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_RBRACK] = ACTIONS(1141), + [anon_sym_final] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_override] = ACTIONS(1141), + [anon_sym_COLON] = ACTIONS(1143), + [anon_sym_CARET] = ACTIONS(1141), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_PERCENT] = ACTIONS(1141), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_LT_EQ] = ACTIONS(1141), + [anon_sym_BANG_EQ] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_DASH_GT] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1141), + [anon_sym_DASH_DASH] = ACTIONS(1141), }, [1673] = { - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACK] = ACTIONS(1259), - [anon_sym_final] = ACTIONS(1259), - [anon_sym_mutable] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_override] = ACTIONS(1259), - [anon_sym_COLON] = ACTIONS(1259), - [anon_sym_explicit] = ACTIONS(1259), - [sym_noexcept] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym_LT_LT] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_PERCENT] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_constexpr] = ACTIONS(1259), + [sym_identifier] = ACTIONS(5562), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_DASH_GT] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_GT_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), }, [1674] = { - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_RBRACK] = ACTIONS(1135), - [anon_sym_final] = ACTIONS(1135), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_GT_EQ] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1137), - [anon_sym_CARET] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1137), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_PERCENT] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1135), - [anon_sym_BANG_EQ] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_DASH_GT] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_RBRACK] = ACTIONS(797), + [anon_sym_final] = ACTIONS(797), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_override] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_LT_LT] = ACTIONS(797), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_PERCENT] = ACTIONS(797), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_DASH_GT] = ACTIONS(797), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), }, [1675] = { - [sym_identifier] = ACTIONS(5556), + [sym_enumerator] = STATE(2699), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(5564), + [anon_sym_COMMA] = ACTIONS(5566), [sym_comment] = ACTIONS(3), }, [1676] = { - [anon_sym_LPAREN2] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(789), - [anon_sym_final] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_override] = ACTIONS(789), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_DASH_GT] = ACTIONS(789), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(789), - }, - [1677] = { - [sym_enumerator] = STATE(2714), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(5558), - [anon_sym_COMMA] = ACTIONS(5560), - [sym_comment] = ACTIONS(3), - }, - [1678] = { - [sym_enumerator_list] = STATE(2715), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_RBRACK] = ACTIONS(872), - [anon_sym_final] = ACTIONS(872), - [anon_sym_mutable] = ACTIONS(872), - [anon_sym_restrict] = ACTIONS(872), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_volatile] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_override] = ACTIONS(872), - [anon_sym_COLON] = ACTIONS(872), - [anon_sym_explicit] = ACTIONS(872), - [sym_noexcept] = ACTIONS(872), - [anon_sym_CARET] = ACTIONS(872), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_DOT] = ACTIONS(872), - [anon_sym__Atomic] = ACTIONS(872), - [anon_sym_LT_LT] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PERCENT] = ACTIONS(872), - [anon_sym_const] = ACTIONS(874), - [anon_sym_constexpr] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(872), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(872), - }, - [1679] = { + [sym_enumerator_list] = STATE(2700), [anon_sym_LPAREN2] = ACTIONS(876), [anon_sym_DASH] = ACTIONS(878), [anon_sym_LBRACE] = ACTIONS(876), @@ -75989,1402 +75888,1351 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(876), [anon_sym_DASH_DASH] = ACTIONS(876), }, + [1677] = { + [anon_sym_LPAREN2] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_final] = ACTIONS(880), + [anon_sym_mutable] = ACTIONS(880), + [anon_sym_restrict] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_override] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_explicit] = ACTIONS(880), + [sym_noexcept] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym__Atomic] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_const] = ACTIONS(882), + [anon_sym_constexpr] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_DASH_GT] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_DASH_DASH] = ACTIONS(880), + }, + [1678] = { + [sym_virtual_specifier] = STATE(2701), + [sym_template_argument_list] = STATE(1674), + [sym_field_declaration_list] = STATE(2702), + [sym_base_class_clause] = STATE(2703), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_DASH_GT] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + }, + [1679] = { + [sym_virtual_specifier] = STATE(2704), + [sym_template_argument_list] = STATE(1692), + [sym_field_declaration_list] = STATE(2705), + [sym_base_class_clause] = STATE(2706), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_GT_GT] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + }, [1680] = { - [sym_template_argument_list] = STATE(1676), - [sym_virtual_specifier] = STATE(2716), - [sym_field_declaration_list] = STATE(2717), - [sym_base_class_clause] = STATE(2718), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACK] = ACTIONS(1472), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_COLON_COLON] = ACTIONS(3310), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1474), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_DASH_GT] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1472), + [sym_field_declaration_list] = STATE(2705), + [sym_base_class_clause] = STATE(2706), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), }, [1681] = { - [sym_field_declaration_list] = STATE(2719), - [sym_base_class_clause] = STATE(2720), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), + [sym_virtual_specifier] = STATE(2704), + [sym_field_declaration_list] = STATE(2705), + [sym_base_class_clause] = STATE(2706), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_GT_GT] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), }, [1682] = { - [sym_virtual_specifier] = STATE(2721), - [sym_field_declaration_list] = STATE(2719), - [sym_base_class_clause] = STATE(2720), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACK] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1490), + [anon_sym_mutable] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1490), + [anon_sym_COLON] = ACTIONS(1490), + [anon_sym_explicit] = ACTIONS(1490), + [sym_noexcept] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), }, [1683] = { - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1476), - [anon_sym_mutable] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1476), - [anon_sym_COLON] = ACTIONS(1476), - [anon_sym_explicit] = ACTIONS(1476), - [sym_noexcept] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_constexpr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [sym_field_declaration_list] = STATE(2705), + [anon_sym_LBRACE] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), }, [1684] = { - [sym_template_argument_list] = STATE(1687), - [sym_virtual_specifier] = STATE(2721), - [sym_field_declaration_list] = STATE(2719), - [sym_base_class_clause] = STATE(2720), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACK] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_final] = ACTIONS(1770), + [anon_sym_mutable] = ACTIONS(1770), + [anon_sym_restrict] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_volatile] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_override] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1770), + [anon_sym_explicit] = ACTIONS(1770), + [sym_noexcept] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym__Atomic] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_constexpr] = ACTIONS(1770), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), }, [1685] = { - [sym_field_declaration_list] = STATE(2719), - [anon_sym_LBRACE] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_final] = ACTIONS(1774), + [anon_sym_mutable] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_override] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1774), + [anon_sym_explicit] = ACTIONS(1774), + [sym_noexcept] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_constexpr] = ACTIONS(1774), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_DASH_DASH] = ACTIONS(1774), }, [1686] = { - [sym_identifier] = ACTIONS(5562), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(1686), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(5568), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(5568), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(5568), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(5568), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), }, [1687] = { - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACK] = ACTIONS(2036), - [anon_sym_final] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_override] = ACTIONS(2036), - [anon_sym_COLON] = ACTIONS(2038), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2038), - [anon_sym_COMMA] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_PERCENT] = ACTIONS(2036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2036), - [anon_sym_LT_EQ] = ACTIONS(2036), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_DASH_GT] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_DASH_DASH] = ACTIONS(2036), - }, - [1688] = { - [anon_sym_LPAREN2] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACK] = ACTIONS(2069), - [anon_sym_final] = ACTIONS(2069), - [anon_sym_mutable] = ACTIONS(2069), - [anon_sym_restrict] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_volatile] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_SLASH] = ACTIONS(2071), - [anon_sym_override] = ACTIONS(2069), - [anon_sym_COLON] = ACTIONS(2069), - [anon_sym_explicit] = ACTIONS(2069), - [sym_noexcept] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_GT] = ACTIONS(2071), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym__Atomic] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_PERCENT] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_constexpr] = ACTIONS(2069), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2069), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_DASH_GT] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_GT_GT] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - }, - [1689] = { - [anon_sym_LPAREN2] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_RBRACK] = ACTIONS(2073), - [anon_sym_final] = ACTIONS(2073), - [anon_sym_mutable] = ACTIONS(2073), - [anon_sym_restrict] = ACTIONS(2073), - [anon_sym_EQ_EQ] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_AMP] = ACTIONS(2075), - [anon_sym_volatile] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2075), - [anon_sym_GT_EQ] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2073), - [anon_sym_SLASH] = ACTIONS(2075), - [anon_sym_override] = ACTIONS(2073), - [anon_sym_COLON] = ACTIONS(2073), - [anon_sym_explicit] = ACTIONS(2073), - [sym_noexcept] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_GT] = ACTIONS(2075), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(2073), - [anon_sym_DOT] = ACTIONS(2073), - [anon_sym__Atomic] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_PERCENT] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2075), - [anon_sym_constexpr] = ACTIONS(2073), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2073), - [anon_sym_LT_EQ] = ACTIONS(2073), - [anon_sym_BANG_EQ] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(2073), - [anon_sym_DASH_GT] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_EQ] = ACTIONS(2075), - [anon_sym_GT_GT] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2073), - }, - [1690] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1690), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(5564), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(5564), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(5564), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(5564), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - }, - [1691] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2724), - [sym_logical_expression] = STATE(2724), - [sym_bitwise_expression] = STATE(2724), - [sym_cast_expression] = STATE(2724), - [sym_new_expression] = STATE(2724), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(2724), - [sym_char_literal] = STATE(2724), - [sym_template_function] = STATE(2724), - [sym_conditional_expression] = STATE(2724), - [sym_equality_expression] = STATE(2724), - [sym_relational_expression] = STATE(2724), - [sym_delete_expression] = STATE(2724), - [sym_sizeof_expression] = STATE(2724), - [sym_parenthesized_expression] = STATE(2724), - [sym_initializer_list] = STATE(2725), - [sym_concatenated_string] = STATE(2724), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(2724), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(2724), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(2724), - [sym_math_expression] = STATE(2724), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5567), + [sym_template_function] = STATE(2708), + [sym__expression] = STATE(2708), + [sym_logical_expression] = STATE(2708), + [sym_bitwise_expression] = STATE(2708), + [sym_cast_expression] = STATE(2708), + [sym_delete_expression] = STATE(2708), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(2708), + [sym_lambda_expression] = STATE(2708), + [sym_char_literal] = STATE(2708), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2708), + [sym_equality_expression] = STATE(2708), + [sym_relational_expression] = STATE(2708), + [sym_sizeof_expression] = STATE(2708), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2709), + [sym_parenthesized_expression] = STATE(2708), + [sym_string_literal] = STATE(154), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2708), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2708), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(2708), + [sym_math_expression] = STATE(2708), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(2708), + [sym_raw_string_literal] = ACTIONS(5571), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(5569), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(5573), [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(5569), - [anon_sym_DASH_DASH] = ACTIONS(294), + [sym_null] = ACTIONS(5573), + [anon_sym_DASH_DASH] = ACTIONS(296), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5567), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(5571), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(5569), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(5569), + [sym_false] = ACTIONS(5573), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(5573), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5571), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(5575), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_delete] = ACTIONS(288), [anon_sym_SQUOTE] = ACTIONS(41), }, - [1692] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2726), - [sym_logical_expression] = STATE(2726), - [sym_bitwise_expression] = STATE(2726), - [sym_cast_expression] = STATE(2726), - [sym_new_expression] = STATE(2726), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2726), - [sym_char_literal] = STATE(2726), - [sym_template_function] = STATE(2726), - [sym_conditional_expression] = STATE(2726), - [sym_equality_expression] = STATE(2726), - [sym_relational_expression] = STATE(2726), - [sym_delete_expression] = STATE(2726), - [sym_sizeof_expression] = STATE(2726), - [sym_parenthesized_expression] = STATE(2726), - [sym_lambda_expression] = STATE(2726), - [sym_concatenated_string] = STATE(2726), - [sym_string_literal] = STATE(967), + [1688] = { + [sym_template_function] = STATE(2710), + [sym__expression] = STATE(2710), + [sym_logical_expression] = STATE(2710), + [sym_bitwise_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_delete_expression] = STATE(2710), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2710), + [sym_lambda_expression] = STATE(2710), + [sym_char_literal] = STATE(2710), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2726), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2726), - [sym_math_expression] = STATE(2726), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(2710), + [sym_equality_expression] = STATE(2710), + [sym_relational_expression] = STATE(2710), + [sym_sizeof_expression] = STATE(2710), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(5573), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(5575), - [sym_null] = ACTIONS(5575), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5573), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(5575), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5575), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(2710), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2710), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2710), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2710), + [sym_math_expression] = STATE(2710), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2710), + [sym_raw_string_literal] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(5579), + [sym_null] = ACTIONS(5579), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(5577), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(5579), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(5579), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), + }, + [1689] = { + [sym_argument_list] = STATE(2711), + [sym_initializer_list] = STATE(2711), + [anon_sym_LPAREN2] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_RBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(3140), + }, + [1690] = { + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_RBRACK] = ACTIONS(3140), + }, + [1691] = { + [sym_new_declarator] = STATE(2712), + [sym_argument_list] = STATE(2711), + [sym_initializer_list] = STATE(2711), + [anon_sym_LPAREN2] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_RBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(3140), + }, + [1692] = { + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACK] = ACTIONS(1683), + [anon_sym_final] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_override] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1683), + [anon_sym_LT_LT] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_PERCENT] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_DASH_GT] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_GT_GT] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), }, [1693] = { - [sym_argument_list] = STATE(2727), - [sym_initializer_list] = STATE(2727), - [anon_sym_LPAREN2] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3138), + [sym_identifier] = ACTIONS(5581), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(3138), }, [1694] = { - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_CARET] = ACTIONS(2691), + [anon_sym_GT] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_COMMA] = ACTIONS(2691), + [anon_sym_PIPE_PIPE] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(2691), + [anon_sym_LT_LT] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_EQ_EQ] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2691), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2691), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(2691), + [anon_sym_BANG_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_DASH_GT] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2691), + [anon_sym_RBRACK] = ACTIONS(2691), }, [1695] = { - [sym_initializer_list] = STATE(2727), - [sym_new_declarator] = STATE(2728), - [sym_argument_list] = STATE(2727), - [anon_sym_LPAREN2] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(3138), - }, - [1696] = { - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2689), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_PIPE_PIPE] = ACTIONS(2689), - [anon_sym_DOT] = ACTIONS(2689), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_EQ_EQ] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2689), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_QMARK] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_DASH_GT] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_RBRACK] = ACTIONS(2689), - }, - [1697] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2729), - [sym_logical_expression] = STATE(2729), - [sym_bitwise_expression] = STATE(2729), - [sym_cast_expression] = STATE(2729), - [sym_new_expression] = STATE(2729), + [sym_template_function] = STATE(2714), + [sym__expression] = STATE(2714), + [sym_logical_expression] = STATE(2714), + [sym_bitwise_expression] = STATE(2714), + [sym_cast_expression] = STATE(2714), + [sym_delete_expression] = STATE(2714), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(2729), - [sym_char_literal] = STATE(2729), - [sym_template_function] = STATE(2729), - [sym_conditional_expression] = STATE(2729), - [sym_equality_expression] = STATE(2729), - [sym_relational_expression] = STATE(2729), - [sym_delete_expression] = STATE(2729), - [sym_sizeof_expression] = STATE(2729), - [sym_parenthesized_expression] = STATE(2729), - [sym_lambda_expression] = STATE(2729), - [sym_concatenated_string] = STATE(2729), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(2714), + [sym_lambda_expression] = STATE(2714), + [sym_char_literal] = STATE(2714), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2714), + [sym_equality_expression] = STATE(2714), + [sym_relational_expression] = STATE(2714), + [sym_sizeof_expression] = STATE(2714), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(2729), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(2714), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(2714), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2714), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(2729), - [sym_math_expression] = STATE(2729), + [sym_shift_expression] = STATE(2714), + [sym_math_expression] = STATE(2714), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(5577), - [anon_sym_DASH] = ACTIONS(388), - [sym_true] = ACTIONS(5579), - [anon_sym_DASH_DASH] = ACTIONS(396), - [sym_null] = ACTIONS(5579), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5577), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(402), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(5579), - [sym_nullptr] = ACTIONS(5579), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), + [sym_new_expression] = STATE(2714), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(5583), + [anon_sym_DASH] = ACTIONS(390), + [sym_true] = ACTIONS(5585), + [anon_sym_DASH_DASH] = ACTIONS(398), + [sym_null] = ACTIONS(5585), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(5583), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(5585), + [sym_nullptr] = ACTIONS(5585), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + }, + [1696] = { + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_LT_LT_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_CARET_EQ] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_SLASH] = ACTIONS(3119), + [anon_sym_COLON] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_CARET] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3119), + [anon_sym_PIPE_EQ] = ACTIONS(3117), + [anon_sym_GT_GT_EQ] = ACTIONS(3117), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3117), + [anon_sym_LT_LT] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_PERCENT] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_AMP_EQ] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_DASH_GT] = ACTIONS(3117), + [anon_sym_EQ] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_GT_GT] = ACTIONS(3119), + [anon_sym_RBRACK] = ACTIONS(3117), + }, + [1697] = { + [aux_sym_argument_list_repeat1] = STATE(2716), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(5587), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1698] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3741), - [anon_sym_PERCENT] = ACTIONS(3739), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3739), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_GT_GT] = ACTIONS(3739), - [anon_sym_RBRACK] = ACTIONS(3739), + [aux_sym_argument_list_repeat1] = STATE(2716), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(5587), + [sym_comment] = ACTIONS(3), }, [1699] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_GT_GT] = ACTIONS(3739), - [anon_sym_RBRACK] = ACTIONS(3739), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3739), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3739), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_DASH_DASH] = ACTIONS(3739), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(3901), }, [1700] = { - [anon_sym_LPAREN2] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_STAR_EQ] = ACTIONS(3115), - [anon_sym_LT_LT_EQ] = ACTIONS(3115), - [anon_sym_PERCENT_EQ] = ACTIONS(3115), - [anon_sym_EQ_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_CARET_EQ] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_COLON] = ACTIONS(3115), - [anon_sym_SLASH_EQ] = ACTIONS(3115), - [anon_sym_PLUS_EQ] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_PIPE_EQ] = ACTIONS(3115), - [anon_sym_GT_GT_EQ] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PIPE_PIPE] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_PERCENT] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3115), - [anon_sym_DASH_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3115), - [anon_sym_AMP_EQ] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3115), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(3905), }, [1701] = { - [aux_sym_argument_list_repeat1] = STATE(2731), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(5581), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_RBRACK] = ACTIONS(3909), }, [1702] = { - [aux_sym_argument_list_repeat1] = STATE(2731), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(5581), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(4841), }, [1703] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(3755), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(3915), }, [1704] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(3759), + [sym_template_argument_list] = STATE(2717), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3919), + [anon_sym_STAR_EQ] = ACTIONS(3919), + [anon_sym_LT_LT_EQ] = ACTIONS(3919), + [anon_sym_PERCENT_EQ] = ACTIONS(3919), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_EQ_EQ] = ACTIONS(3919), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(5589), + [anon_sym_CARET_EQ] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3919), + [anon_sym_STAR] = ACTIONS(3921), + [anon_sym_SLASH] = ACTIONS(3921), + [anon_sym_SLASH_EQ] = ACTIONS(3919), + [anon_sym_PLUS_EQ] = ACTIONS(3919), + [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_PIPE_EQ] = ACTIONS(3919), + [anon_sym_GT_GT_EQ] = ACTIONS(3919), + [anon_sym_COMMA] = ACTIONS(3919), + [anon_sym_PIPE_PIPE] = ACTIONS(3919), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_LT_LT] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3919), + [anon_sym_DASH_EQ] = ACTIONS(3919), + [anon_sym_LT_EQ] = ACTIONS(3919), + [anon_sym_BANG_EQ] = ACTIONS(3919), + [anon_sym_AMP_EQ] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_DASH_GT] = ACTIONS(3919), + [anon_sym_EQ] = ACTIONS(3921), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_RBRACK] = ACTIONS(3919), }, [1705] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_RBRACK] = ACTIONS(3763), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_DASH] = ACTIONS(3930), + [anon_sym_DASH_DASH] = ACTIONS(3928), + [anon_sym_STAR_EQ] = ACTIONS(3928), + [anon_sym_LT_LT_EQ] = ACTIONS(3928), + [anon_sym_PERCENT_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3928), + [anon_sym_PIPE] = ACTIONS(3930), + [anon_sym_LT] = ACTIONS(3930), + [anon_sym_CARET_EQ] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_PLUS] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3930), + [anon_sym_SLASH] = ACTIONS(3930), + [anon_sym_SLASH_EQ] = ACTIONS(3928), + [anon_sym_PLUS_EQ] = ACTIONS(3928), + [anon_sym_CARET] = ACTIONS(3930), + [anon_sym_GT] = ACTIONS(3930), + [anon_sym_PIPE_EQ] = ACTIONS(3928), + [anon_sym_GT_GT_EQ] = ACTIONS(3928), + [anon_sym_COMMA] = ACTIONS(3928), + [anon_sym_PIPE_PIPE] = ACTIONS(3928), + [anon_sym_DOT] = ACTIONS(3928), + [anon_sym_LT_LT] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_PERCENT] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3928), + [anon_sym_DASH_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3928), + [anon_sym_BANG_EQ] = ACTIONS(3928), + [anon_sym_AMP_EQ] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_DASH_GT] = ACTIONS(3928), + [anon_sym_EQ] = ACTIONS(3930), + [anon_sym_PLUS_PLUS] = ACTIONS(3928), + [anon_sym_GT_GT] = ACTIONS(3930), + [anon_sym_RBRACK] = ACTIONS(3928), }, [1706] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(4845), + [sym_template_argument_list] = STATE(2718), + [anon_sym_LT] = ACTIONS(5592), + [sym_comment] = ACTIONS(3), }, [1707] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(3769), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_RBRACK] = ACTIONS(3936), }, [1708] = { - [sym_template_argument_list] = STATE(2732), - [anon_sym_LPAREN2] = ACTIONS(3773), - [anon_sym_DASH] = ACTIONS(3775), - [anon_sym_DASH_DASH] = ACTIONS(3773), - [anon_sym_STAR_EQ] = ACTIONS(3773), - [anon_sym_LT_LT_EQ] = ACTIONS(3773), - [anon_sym_PERCENT_EQ] = ACTIONS(3773), - [anon_sym_COLON_COLON] = ACTIONS(3777), - [anon_sym_EQ_EQ] = ACTIONS(3773), - [anon_sym_PIPE] = ACTIONS(3775), - [anon_sym_LT] = ACTIONS(5583), - [anon_sym_CARET_EQ] = ACTIONS(3773), - [anon_sym_AMP] = ACTIONS(3775), - [anon_sym_PLUS] = ACTIONS(3775), - [anon_sym_GT_EQ] = ACTIONS(3773), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_SLASH] = ACTIONS(3775), - [anon_sym_SLASH_EQ] = ACTIONS(3773), - [anon_sym_PLUS_EQ] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_PIPE_EQ] = ACTIONS(3773), - [anon_sym_GT_GT_EQ] = ACTIONS(3773), - [anon_sym_COMMA] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3773), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_LT_LT] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3775), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3773), - [anon_sym_DASH_EQ] = ACTIONS(3773), - [anon_sym_LT_EQ] = ACTIONS(3773), - [anon_sym_BANG_EQ] = ACTIONS(3773), - [anon_sym_AMP_EQ] = ACTIONS(3773), - [anon_sym_AMP_AMP] = ACTIONS(3773), - [anon_sym_DASH_GT] = ACTIONS(3773), - [anon_sym_EQ] = ACTIONS(3775), - [anon_sym_PLUS_PLUS] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3775), - [anon_sym_RBRACK] = ACTIONS(3773), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3909), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_RBRACK] = ACTIONS(3909), }, [1709] = { - [sym_template_argument_list] = STATE(2733), - [anon_sym_LT] = ACTIONS(5586), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(3940), }, [1710] = { - [anon_sym_LPAREN2] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_DASH_DASH] = ACTIONS(3786), - [anon_sym_STAR_EQ] = ACTIONS(3786), - [anon_sym_LT_LT_EQ] = ACTIONS(3786), - [anon_sym_PERCENT_EQ] = ACTIONS(3786), - [anon_sym_EQ_EQ] = ACTIONS(3786), - [anon_sym_PIPE] = ACTIONS(3788), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_CARET_EQ] = ACTIONS(3786), - [anon_sym_AMP] = ACTIONS(3788), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_GT_EQ] = ACTIONS(3786), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_SLASH_EQ] = ACTIONS(3786), - [anon_sym_PLUS_EQ] = ACTIONS(3786), - [anon_sym_CARET] = ACTIONS(3788), - [anon_sym_GT] = ACTIONS(3788), - [anon_sym_PIPE_EQ] = ACTIONS(3786), - [anon_sym_GT_GT_EQ] = ACTIONS(3786), - [anon_sym_COMMA] = ACTIONS(3786), - [anon_sym_PIPE_PIPE] = ACTIONS(3786), - [anon_sym_DOT] = ACTIONS(3786), - [anon_sym_LT_LT] = ACTIONS(3788), - [anon_sym_LBRACK] = ACTIONS(3786), - [anon_sym_PERCENT] = ACTIONS(3788), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3786), - [anon_sym_DASH_EQ] = ACTIONS(3786), - [anon_sym_LT_EQ] = ACTIONS(3786), - [anon_sym_BANG_EQ] = ACTIONS(3786), - [anon_sym_AMP_EQ] = ACTIONS(3786), - [anon_sym_AMP_AMP] = ACTIONS(3786), - [anon_sym_DASH_GT] = ACTIONS(3786), - [anon_sym_EQ] = ACTIONS(3788), - [anon_sym_PLUS_PLUS] = ACTIONS(3786), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_RBRACK] = ACTIONS(3786), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(3901), }, [1711] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_RBRACK] = ACTIONS(3790), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(5594), }, [1712] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(3763), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_SLASH] = ACTIONS(3765), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_RBRACK] = ACTIONS(3763), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(3901), }, [1713] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(3794), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(5596), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1714] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(3755), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(3915), }, [1715] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(5588), - }, - [1716] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(3755), - }, - [1717] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(5590), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [1718] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(3769), - }, - [1719] = { - [anon_sym_LPAREN2] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(5592), - [anon_sym_AMP_AMP] = ACTIONS(5592), - [anon_sym_STAR] = ACTIONS(5592), + [anon_sym_LPAREN2] = ACTIONS(5598), + [anon_sym_AMP] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_AMP_AMP] = ACTIONS(5598), + [anon_sym_STAR] = ACTIONS(5598), [sym_comment] = ACTIONS(3), }, - [1720] = { - [aux_sym_for_statement_repeat1] = STATE(1720), + [1716] = { + [aux_sym_for_statement_repeat1] = STATE(1716), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(5596), - [anon_sym_RBRACK] = ACTIONS(4845), - }, - [1721] = { - [sym_string_literal] = STATE(1721), - [aux_sym_concatenated_string_repeat1] = STATE(1721), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_RBRACK] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5599), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_COMMA] = ACTIONS(5602), + [anon_sym_RBRACK] = ACTIONS(4841), }, - [1722] = { - [sym_goto_statement] = STATE(2737), - [sym_preproc_function_def] = STATE(2737), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(2737), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(2737), + [1717] = { + [sym_goto_statement] = STATE(2722), + [sym_preproc_function_def] = STATE(2722), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(2722), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2737), - [sym_return_statement] = STATE(2737), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2722), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2722), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2722), + [sym_namespace_definition] = STATE(2722), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2737), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2737), - [sym_break_statement] = STATE(2737), - [sym_preproc_include] = STATE(2737), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(2737), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(2737), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2722), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2722), + [sym_constructor_or_destructor_definition] = STATE(2722), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2722), + [sym_preproc_include] = STATE(2722), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(2722), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(2722), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(2737), - [sym_template_instantiation] = STATE(2737), - [sym_constructor_or_destructor_definition] = STATE(2737), - [sym_expression_statement] = STATE(2737), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2737), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(2737), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(2737), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2737), - [aux_sym_translation_unit_repeat1] = STATE(2737), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(2737), - [sym_if_statement] = STATE(2737), - [sym_for_statement] = STATE(2737), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(2737), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(2737), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(2737), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2737), - [sym_preproc_if] = STATE(2737), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(2722), + [sym_expression_statement] = STATE(2722), + [sym_do_statement] = STATE(2722), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(2722), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(2722), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2722), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2722), + [sym_for_statement] = STATE(2722), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(2722), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(2722), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2722), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2722), + [sym_preproc_if] = STATE(2722), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2737), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2737), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2737), - [sym_while_statement] = STATE(2737), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2722), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2722), + [aux_sym_translation_unit_repeat1] = STATE(2722), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2722), + [sym_while_statement] = STATE(2722), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -77426,7 +77274,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(5602), + [anon_sym_RBRACE] = ACTIONS(5605), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -77458,617 +77306,712 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, + [1718] = { + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_CARET] = ACTIONS(3844), + [anon_sym_GT] = ACTIONS(3846), + [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_COMMA] = ACTIONS(3844), + [anon_sym_PIPE_PIPE] = ACTIONS(3844), + [anon_sym_DOT] = ACTIONS(3844), + [anon_sym_LT_LT] = ACTIONS(3844), + [anon_sym_LBRACK] = ACTIONS(3844), + [anon_sym_EQ_EQ] = ACTIONS(3844), + [anon_sym_PIPE] = ACTIONS(3846), + [anon_sym_LT] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3844), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_QMARK] = ACTIONS(3844), + [anon_sym_PLUS] = ACTIONS(3846), + [anon_sym_GT_EQ] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_LT_EQ] = ACTIONS(3844), + [anon_sym_BANG_EQ] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_DASH_GT] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_GT_GT] = ACTIONS(3844), + [anon_sym_RBRACK] = ACTIONS(3844), + }, + [1719] = { + [sym_string_literal] = STATE(1719), + [aux_sym_concatenated_string_repeat1] = STATE(1719), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_RBRACK] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5607), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), + }, + [1720] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3852), + [anon_sym_PERCENT] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3850), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_GT_GT] = ACTIONS(3850), + [anon_sym_RBRACK] = ACTIONS(3850), + }, + [1721] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_GT_GT] = ACTIONS(3850), + [anon_sym_RBRACK] = ACTIONS(3850), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3850), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3850), + }, + [1722] = { + [anon_sym_LPAREN2] = ACTIONS(5610), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_PLUS_PLUS] = ACTIONS(5610), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_mutable] = ACTIONS(5612), + [anon_sym_DASH_DASH] = ACTIONS(5610), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5610), + [anon_sym_EQ] = ACTIONS(5612), + [anon_sym_COLON_COLON] = ACTIONS(5610), + [anon_sym_final] = ACTIONS(5612), + [anon_sym_EQ_EQ] = ACTIONS(5610), + [anon_sym_PIPE] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5612), + [anon_sym_AMP] = ACTIONS(5612), + [anon_sym_static] = ACTIONS(5612), + [anon_sym_volatile] = ACTIONS(5612), + [anon_sym_PLUS] = ACTIONS(5612), + [anon_sym_GT_EQ] = ACTIONS(5610), + [anon_sym_STAR] = ACTIONS(5610), + [anon_sym_SLASH] = ACTIONS(5612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5610), + [anon_sym_COLON] = ACTIONS(5612), + [anon_sym_explicit] = ACTIONS(5612), + [sym_identifier] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5610), + [anon_sym_override] = ACTIONS(5612), + [sym_operator_name] = ACTIONS(5610), + [sym_noexcept] = ACTIONS(5612), + [anon_sym_CARET] = ACTIONS(5610), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_COMMA] = ACTIONS(5610), + [anon_sym_register] = ACTIONS(5612), + [anon_sym__Atomic] = ACTIONS(5612), + [anon_sym_const] = ACTIONS(5612), + [anon_sym_extern] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(5610), + [anon_sym_PIPE_PIPE] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5612), + [anon_sym_LT_LT] = ACTIONS(5610), + [anon_sym_constexpr] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5610), + [anon_sym_QMARK] = ACTIONS(5610), + [anon_sym_TILDE] = ACTIONS(5610), + [anon_sym_SEMI] = ACTIONS(5610), + [anon_sym_BANG_EQ] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5610), + [anon_sym_AMP_AMP] = ACTIONS(5610), + [anon_sym_inline] = ACTIONS(5612), + [anon_sym_RPAREN] = ACTIONS(5610), + [anon_sym_restrict] = ACTIONS(5612), + [anon_sym_GT_GT] = ACTIONS(5610), + [anon_sym_DASH_GT] = ACTIONS(5610), + }, [1723] = { - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4121), - [anon_sym_GT] = ACTIONS(4123), - [anon_sym_DASH] = ACTIONS(4123), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LT_LT] = ACTIONS(4121), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4123), - [anon_sym_PERCENT] = ACTIONS(4121), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(4123), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_PLUS] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4123), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4121), - [anon_sym_RBRACK] = ACTIONS(4121), + [sym_field_declaration_list] = STATE(2723), + [anon_sym_LBRACE] = ACTIONS(304), + [sym_comment] = ACTIONS(3), }, [1724] = { - [anon_sym_LPAREN2] = ACTIONS(5604), - [anon_sym_DASH] = ACTIONS(5606), - [anon_sym_PLUS_PLUS] = ACTIONS(5604), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_mutable] = ACTIONS(5606), - [anon_sym_DASH_DASH] = ACTIONS(5604), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5604), - [anon_sym_EQ] = ACTIONS(5606), - [anon_sym_COLON_COLON] = ACTIONS(5604), - [anon_sym_final] = ACTIONS(5606), - [anon_sym_EQ_EQ] = ACTIONS(5604), - [anon_sym_PIPE] = ACTIONS(5606), - [anon_sym_LT] = ACTIONS(5606), - [anon_sym_AMP] = ACTIONS(5606), - [anon_sym_static] = ACTIONS(5606), - [anon_sym_volatile] = ACTIONS(5606), - [anon_sym_PLUS] = ACTIONS(5606), - [anon_sym_GT_EQ] = ACTIONS(5604), - [anon_sym_STAR] = ACTIONS(5604), - [anon_sym_SLASH] = ACTIONS(5606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5604), - [anon_sym_COLON] = ACTIONS(5606), - [anon_sym_explicit] = ACTIONS(5606), - [sym_identifier] = ACTIONS(5606), - [anon_sym_RBRACE] = ACTIONS(5604), - [anon_sym_override] = ACTIONS(5606), - [sym_operator_name] = ACTIONS(5604), - [sym_noexcept] = ACTIONS(5606), - [anon_sym_CARET] = ACTIONS(5604), - [anon_sym_GT] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(5604), - [anon_sym_register] = ACTIONS(5606), - [anon_sym__Atomic] = ACTIONS(5606), - [anon_sym_const] = ACTIONS(5606), - [anon_sym_extern] = ACTIONS(5606), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_PIPE_PIPE] = ACTIONS(5604), - [anon_sym_DOT] = ACTIONS(5606), - [anon_sym_LT_LT] = ACTIONS(5604), - [anon_sym_constexpr] = ACTIONS(5606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5604), - [anon_sym_QMARK] = ACTIONS(5604), - [anon_sym_TILDE] = ACTIONS(5604), - [anon_sym_SEMI] = ACTIONS(5604), - [anon_sym_BANG_EQ] = ACTIONS(5604), - [anon_sym_LT_EQ] = ACTIONS(5604), - [anon_sym_AMP_AMP] = ACTIONS(5604), - [anon_sym_inline] = ACTIONS(5606), - [anon_sym_RPAREN] = ACTIONS(5604), - [anon_sym_restrict] = ACTIONS(5606), - [anon_sym_GT_GT] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(5604), + [anon_sym_LPAREN2] = ACTIONS(5614), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_PLUS_PLUS] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_mutable] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5614), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(5616), + [anon_sym_COLON_COLON] = ACTIONS(5614), + [anon_sym_final] = ACTIONS(5616), + [anon_sym_EQ_EQ] = ACTIONS(5614), + [anon_sym_PIPE] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5616), + [anon_sym_static] = ACTIONS(5616), + [anon_sym_volatile] = ACTIONS(5616), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_GT_EQ] = ACTIONS(5614), + [anon_sym_STAR] = ACTIONS(5614), + [anon_sym_SLASH] = ACTIONS(5616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_explicit] = ACTIONS(5616), + [sym_identifier] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5614), + [anon_sym_override] = ACTIONS(5616), + [sym_operator_name] = ACTIONS(5614), + [sym_noexcept] = ACTIONS(5616), + [anon_sym_CARET] = ACTIONS(5614), + [anon_sym_GT] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5614), + [anon_sym_register] = ACTIONS(5616), + [anon_sym__Atomic] = ACTIONS(5616), + [anon_sym_const] = ACTIONS(5616), + [anon_sym_extern] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5614), + [anon_sym_PIPE_PIPE] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5616), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_constexpr] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5614), + [anon_sym_QMARK] = ACTIONS(5614), + [anon_sym_TILDE] = ACTIONS(5614), + [anon_sym_SEMI] = ACTIONS(5614), + [anon_sym_BANG_EQ] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_AMP_AMP] = ACTIONS(5614), + [anon_sym_inline] = ACTIONS(5616), + [anon_sym_RPAREN] = ACTIONS(5614), + [anon_sym_restrict] = ACTIONS(5616), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_DASH_GT] = ACTIONS(5614), }, [1725] = { - [sym_field_declaration_list] = STATE(2738), - [anon_sym_LBRACE] = ACTIONS(302), + [sym_field_declaration_list] = STATE(2724), + [anon_sym_LBRACE] = ACTIONS(304), [sym_comment] = ACTIONS(3), }, [1726] = { - [anon_sym_LPAREN2] = ACTIONS(5608), - [anon_sym_DASH] = ACTIONS(5610), - [anon_sym_PLUS_PLUS] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(5608), - [anon_sym_mutable] = ACTIONS(5610), - [anon_sym_DASH_DASH] = ACTIONS(5608), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_COLON_COLON] = ACTIONS(5608), - [anon_sym_final] = ACTIONS(5610), - [anon_sym_EQ_EQ] = ACTIONS(5608), - [anon_sym_PIPE] = ACTIONS(5610), - [anon_sym_LT] = ACTIONS(5610), - [anon_sym_AMP] = ACTIONS(5610), - [anon_sym_static] = ACTIONS(5610), - [anon_sym_volatile] = ACTIONS(5610), - [anon_sym_PLUS] = ACTIONS(5610), - [anon_sym_GT_EQ] = ACTIONS(5608), - [anon_sym_STAR] = ACTIONS(5608), - [anon_sym_SLASH] = ACTIONS(5610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5608), - [anon_sym_COLON] = ACTIONS(5610), - [anon_sym_explicit] = ACTIONS(5610), - [sym_identifier] = ACTIONS(5610), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_override] = ACTIONS(5610), - [sym_operator_name] = ACTIONS(5608), - [sym_noexcept] = ACTIONS(5610), - [anon_sym_CARET] = ACTIONS(5608), - [anon_sym_GT] = ACTIONS(5610), - [anon_sym_COMMA] = ACTIONS(5608), - [anon_sym_register] = ACTIONS(5610), - [anon_sym__Atomic] = ACTIONS(5610), - [anon_sym_const] = ACTIONS(5610), - [anon_sym_extern] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5608), - [anon_sym_PIPE_PIPE] = ACTIONS(5608), - [anon_sym_DOT] = ACTIONS(5610), - [anon_sym_LT_LT] = ACTIONS(5608), - [anon_sym_constexpr] = ACTIONS(5610), + [anon_sym_RPAREN] = ACTIONS(5618), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5608), - [anon_sym_QMARK] = ACTIONS(5608), - [anon_sym_TILDE] = ACTIONS(5608), - [anon_sym_SEMI] = ACTIONS(5608), - [anon_sym_BANG_EQ] = ACTIONS(5608), - [anon_sym_LT_EQ] = ACTIONS(5608), - [anon_sym_AMP_AMP] = ACTIONS(5608), - [anon_sym_inline] = ACTIONS(5610), - [anon_sym_RPAREN] = ACTIONS(5608), - [anon_sym_restrict] = ACTIONS(5610), - [anon_sym_GT_GT] = ACTIONS(5608), - [anon_sym_DASH_GT] = ACTIONS(5608), }, [1727] = { - [sym_field_declaration_list] = STATE(2739), - [anon_sym_LBRACE] = ACTIONS(302), - [sym_comment] = ACTIONS(3), - }, - [1728] = { - [anon_sym_RPAREN] = ACTIONS(5612), - [sym_comment] = ACTIONS(3), - }, - [1729] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2742), - [sym_logical_expression] = STATE(2742), - [sym_bitwise_expression] = STATE(2742), - [sym_cast_expression] = STATE(2742), - [sym_new_expression] = STATE(2742), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2742), - [sym_char_literal] = STATE(2742), - [sym_template_function] = STATE(2742), - [sym_conditional_expression] = STATE(2742), - [sym_equality_expression] = STATE(2742), - [sym_relational_expression] = STATE(2742), - [sym_delete_expression] = STATE(2742), - [sym_sizeof_expression] = STATE(2742), - [sym_parenthesized_expression] = STATE(2742), - [sym_lambda_expression] = STATE(2742), - [sym_concatenated_string] = STATE(2742), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2742), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2742), - [sym_math_expression] = STATE(2742), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5614), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5616), - [sym_null] = ACTIONS(5616), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5614), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(5618), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5616), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5616), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(2727), + [sym__expression] = STATE(2727), + [sym_logical_expression] = STATE(2727), + [sym_bitwise_expression] = STATE(2727), + [sym_cast_expression] = STATE(2727), + [sym_delete_expression] = STATE(2727), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2727), + [sym_lambda_expression] = STATE(2727), + [sym_char_literal] = STATE(2727), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2727), + [sym_equality_expression] = STATE(2727), + [sym_relational_expression] = STATE(2727), + [sym_sizeof_expression] = STATE(2727), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2727), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2727), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2727), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2727), + [sym_math_expression] = STATE(2727), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2727), + [sym_raw_string_literal] = ACTIONS(5620), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5622), + [sym_null] = ACTIONS(5622), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5620), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [1730] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(643), - [sym_logical_expression] = STATE(643), - [sym_bitwise_expression] = STATE(643), - [sym_cast_expression] = STATE(643), - [sym_new_expression] = STATE(643), - [sym_field_expression] = STATE(643), - [sym_compound_literal_expression] = STATE(643), - [sym_char_literal] = STATE(643), - [sym_template_function] = STATE(643), - [sym_conditional_expression] = STATE(643), - [sym_equality_expression] = STATE(643), - [sym_relational_expression] = STATE(643), - [sym_delete_expression] = STATE(643), - [sym_sizeof_expression] = STATE(643), - [sym_parenthesized_expression] = STATE(643), - [sym_lambda_expression] = STATE(643), - [sym_concatenated_string] = STATE(643), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(643), - [sym_assignment_expression] = STATE(643), - [sym_pointer_expression] = STATE(643), - [sym_shift_expression] = STATE(643), - [sym_math_expression] = STATE(643), - [sym_call_expression] = STATE(643), - [sym_lambda_capture_specifier] = STATE(196), + [1728] = { + [sym_template_function] = STATE(644), + [sym__expression] = STATE(644), + [sym_logical_expression] = STATE(644), + [sym_bitwise_expression] = STATE(644), + [sym_cast_expression] = STATE(644), + [sym_delete_expression] = STATE(644), + [sym_field_expression] = STATE(644), + [sym_compound_literal_expression] = STATE(644), + [sym_lambda_expression] = STATE(644), + [sym_char_literal] = STATE(644), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(644), + [sym_equality_expression] = STATE(644), + [sym_relational_expression] = STATE(644), + [sym_sizeof_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(1180), - [sym_null] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(644), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(644), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(644), + [sym_pointer_expression] = STATE(644), + [sym_shift_expression] = STATE(644), + [sym_math_expression] = STATE(644), + [sym_call_expression] = STATE(644), + [sym_new_expression] = STATE(644), + [sym_raw_string_literal] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [1731] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(2743), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [1729] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2728), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1732] = { - [sym_destructor_name] = STATE(662), + [1730] = { + [sym_destructor_name] = STATE(663), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1210), - [sym_operator_name] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_delete] = ACTIONS(5620), + [sym_identifier] = ACTIONS(1216), + [sym_operator_name] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(5626), }, - [1733] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(665), - [sym_logical_expression] = STATE(665), - [sym_bitwise_expression] = STATE(665), - [sym_cast_expression] = STATE(665), - [sym_new_expression] = STATE(665), - [sym_field_expression] = STATE(665), - [sym_compound_literal_expression] = STATE(665), - [sym_char_literal] = STATE(665), - [sym_template_function] = STATE(665), - [sym_conditional_expression] = STATE(665), - [sym_equality_expression] = STATE(665), - [sym_relational_expression] = STATE(665), - [sym_delete_expression] = STATE(665), - [sym_sizeof_expression] = STATE(665), - [sym_parenthesized_expression] = STATE(665), - [sym_lambda_expression] = STATE(665), - [sym_concatenated_string] = STATE(665), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(665), - [sym_assignment_expression] = STATE(665), - [sym_pointer_expression] = STATE(665), - [sym_shift_expression] = STATE(665), - [sym_math_expression] = STATE(665), - [sym_call_expression] = STATE(665), - [sym_lambda_capture_specifier] = STATE(196), + [1731] = { + [sym_template_function] = STATE(666), + [sym__expression] = STATE(666), + [sym_logical_expression] = STATE(666), + [sym_bitwise_expression] = STATE(666), + [sym_cast_expression] = STATE(666), + [sym_delete_expression] = STATE(666), + [sym_field_expression] = STATE(666), + [sym_compound_literal_expression] = STATE(666), + [sym_lambda_expression] = STATE(666), + [sym_char_literal] = STATE(666), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(666), + [sym_equality_expression] = STATE(666), + [sym_relational_expression] = STATE(666), + [sym_sizeof_expression] = STATE(666), + [sym_subscript_expression] = STATE(666), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(1220), - [sym_null] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(3428), + [sym_parenthesized_expression] = STATE(666), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(666), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(666), + [sym_pointer_expression] = STATE(666), + [sym_shift_expression] = STATE(666), + [sym_math_expression] = STATE(666), + [sym_call_expression] = STATE(666), + [sym_new_expression] = STATE(666), + [sym_raw_string_literal] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(3438), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [1734] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2746), - [sym_logical_expression] = STATE(2746), - [sym_bitwise_expression] = STATE(2746), - [sym_cast_expression] = STATE(2746), - [sym_new_expression] = STATE(2746), - [sym_field_expression] = STATE(2746), - [sym_compound_literal_expression] = STATE(2746), - [sym_char_literal] = STATE(2746), - [sym_template_function] = STATE(2746), - [sym_conditional_expression] = STATE(2746), - [sym_equality_expression] = STATE(2746), - [sym_relational_expression] = STATE(2746), - [sym_delete_expression] = STATE(2746), - [sym_sizeof_expression] = STATE(2746), - [sym_parenthesized_expression] = STATE(2746), - [sym_lambda_expression] = STATE(2746), - [sym_concatenated_string] = STATE(2746), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2746), - [sym_assignment_expression] = STATE(2746), - [sym_pointer_expression] = STATE(2746), - [sym_shift_expression] = STATE(2746), - [sym_math_expression] = STATE(2746), - [sym_call_expression] = STATE(2746), - [sym_lambda_capture_specifier] = STATE(196), + [1732] = { + [sym_template_function] = STATE(2731), + [sym__expression] = STATE(2731), + [sym_logical_expression] = STATE(2731), + [sym_bitwise_expression] = STATE(2731), + [sym_cast_expression] = STATE(2731), + [sym_delete_expression] = STATE(2731), + [sym_field_expression] = STATE(2731), + [sym_compound_literal_expression] = STATE(2731), + [sym_lambda_expression] = STATE(2731), + [sym_char_literal] = STATE(2731), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2731), + [sym_equality_expression] = STATE(2731), + [sym_relational_expression] = STATE(2731), + [sym_sizeof_expression] = STATE(2731), + [sym_subscript_expression] = STATE(2731), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(5624), - [sym_true] = ACTIONS(5626), - [sym_null] = ACTIONS(5626), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5622), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(5626), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5626), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(2731), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(2731), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2731), + [sym_pointer_expression] = STATE(2731), + [sym_shift_expression] = STATE(2731), + [sym_math_expression] = STATE(2731), + [sym_call_expression] = STATE(2731), + [sym_new_expression] = STATE(2731), + [sym_raw_string_literal] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(5630), + [sym_true] = ACTIONS(5632), + [sym_null] = ACTIONS(5632), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5628), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(5632), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [1735] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), + [1733] = { + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [1736] = { - [sym_union_specifier] = STATE(2749), - [sym_macro_type_specifier] = STATE(2749), - [sym_class_specifier] = STATE(2749), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(2749), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(2749), - [aux_sym_sized_type_specifier_repeat1] = STATE(2748), - [sym_argument_list] = STATE(2750), - [sym_enum_specifier] = STATE(2749), - [sym_struct_specifier] = STATE(2749), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(2749), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(5628), - [anon_sym_signed] = ACTIONS(5630), - [anon_sym_long] = ACTIONS(5630), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(5628), - [anon_sym_unsigned] = ACTIONS(5630), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(5632), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(5630), + [1734] = { + [sym_union_specifier] = STATE(2734), + [sym_macro_type_specifier] = STATE(2734), + [sym_class_specifier] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(2733), + [sym_sized_type_specifier] = STATE(2734), + [sym__type_specifier] = STATE(2734), + [sym_argument_list] = STATE(2735), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(2734), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(2734), + [sym_struct_specifier] = STATE(2734), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(5634), + [anon_sym_signed] = ACTIONS(5636), + [anon_sym_long] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(5634), + [anon_sym_unsigned] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(5638), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(5636), }, - [1737] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2752), - [sym_logical_expression] = STATE(2752), - [sym_bitwise_expression] = STATE(2752), - [sym_cast_expression] = STATE(2752), - [sym_new_expression] = STATE(2752), - [sym_field_expression] = STATE(2752), - [sym_compound_literal_expression] = STATE(2752), - [sym_char_literal] = STATE(2752), - [sym_template_function] = STATE(2752), - [sym_conditional_expression] = STATE(2752), - [sym_equality_expression] = STATE(2752), - [sym_relational_expression] = STATE(2752), - [sym_delete_expression] = STATE(2752), - [sym_sizeof_expression] = STATE(2752), - [sym_parenthesized_expression] = STATE(2752), - [sym_lambda_expression] = STATE(2752), - [sym_concatenated_string] = STATE(2752), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2752), - [sym_assignment_expression] = STATE(2752), - [sym_pointer_expression] = STATE(2752), - [sym_shift_expression] = STATE(2752), - [sym_math_expression] = STATE(2752), - [sym_call_expression] = STATE(2752), - [sym_lambda_capture_specifier] = STATE(196), + [1735] = { + [sym_template_function] = STATE(2737), + [sym__expression] = STATE(2737), + [sym_logical_expression] = STATE(2737), + [sym_bitwise_expression] = STATE(2737), + [sym_cast_expression] = STATE(2737), + [sym_delete_expression] = STATE(2737), + [sym_field_expression] = STATE(2737), + [sym_compound_literal_expression] = STATE(2737), + [sym_lambda_expression] = STATE(2737), + [sym_char_literal] = STATE(2737), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2737), + [sym_equality_expression] = STATE(2737), + [sym_relational_expression] = STATE(2737), + [sym_sizeof_expression] = STATE(2737), + [sym_subscript_expression] = STATE(2737), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(5636), - [sym_null] = ACTIONS(5636), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5634), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(5636), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(2737), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(2737), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2737), + [sym_pointer_expression] = STATE(2737), + [sym_shift_expression] = STATE(2737), + [sym_math_expression] = STATE(2737), + [sym_call_expression] = STATE(2737), + [sym_new_expression] = STATE(2737), + [sym_raw_string_literal] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(5642), + [sym_null] = ACTIONS(5642), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5640), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(5644), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5642), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [1738] = { - [sym_string_literal] = STATE(2764), - [aux_sym_concatenated_string_repeat1] = STATE(2764), + [1736] = { + [sym_string_literal] = STATE(2749), + [aux_sym_concatenated_string_repeat1] = STATE(2749), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -78092,7 +78035,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -78109,49 +78052,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1739] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(2765), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [1737] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2750), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -78159,20 +78102,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -78189,961 +78132,961 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1740] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1738] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1741] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2766), - [sym_logical_expression] = STATE(2766), - [sym_bitwise_expression] = STATE(2766), - [sym_cast_expression] = STATE(2766), - [sym_new_expression] = STATE(2766), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2766), - [sym_char_literal] = STATE(2766), - [sym_template_function] = STATE(2766), - [sym_conditional_expression] = STATE(2766), - [sym_equality_expression] = STATE(2766), - [sym_relational_expression] = STATE(2766), - [sym_delete_expression] = STATE(2766), - [sym_sizeof_expression] = STATE(2766), - [sym_parenthesized_expression] = STATE(2766), - [sym_lambda_expression] = STATE(2766), - [sym_concatenated_string] = STATE(2766), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2766), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2766), - [sym_math_expression] = STATE(2766), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5642), - [sym_null] = ACTIONS(5642), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5640), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5642), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5642), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [1739] = { + [sym_template_function] = STATE(2751), + [sym__expression] = STATE(2751), + [sym_logical_expression] = STATE(2751), + [sym_bitwise_expression] = STATE(2751), + [sym_cast_expression] = STATE(2751), + [sym_delete_expression] = STATE(2751), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2751), + [sym_lambda_expression] = STATE(2751), + [sym_char_literal] = STATE(2751), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2751), + [sym_equality_expression] = STATE(2751), + [sym_relational_expression] = STATE(2751), + [sym_sizeof_expression] = STATE(2751), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2751), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2751), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2751), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2751), + [sym_math_expression] = STATE(2751), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2751), + [sym_raw_string_literal] = ACTIONS(5646), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5648), + [sym_null] = ACTIONS(5648), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5646), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5648), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [1742] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(1743), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(3454), + [1740] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(1741), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(3464), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(3454), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(3464), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3454), + [anon_sym_long] = ACTIONS(3464), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(3456), + [anon_sym_typename] = ACTIONS(3466), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [1743] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2767), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(5644), - [anon_sym_long] = ACTIONS(5644), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(5644), - [sym_identifier] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(5644), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [1741] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2752), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(5650), + [anon_sym_long] = ACTIONS(5650), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(5650), + [sym_identifier] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_unsigned] = ACTIONS(5650), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, - [1744] = { - [sym_initializer_list] = STATE(709), - [sym_new_declarator] = STATE(708), - [sym_argument_list] = STATE(709), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), + [1742] = { + [sym_new_declarator] = STATE(709), + [sym_argument_list] = STATE(710), + [sym_initializer_list] = STATE(710), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(5646), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(5652), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [1745] = { - [sym_union_specifier] = STATE(2769), - [sym_macro_type_specifier] = STATE(2769), - [sym_class_specifier] = STATE(2769), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2769), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(2769), - [aux_sym_sized_type_specifier_repeat1] = STATE(1743), - [sym_struct_specifier] = STATE(2769), - [sym_enum_specifier] = STATE(2769), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(2769), - [anon_sym_unsigned] = ACTIONS(3454), + [1743] = { + [sym_union_specifier] = STATE(2754), + [sym_macro_type_specifier] = STATE(2754), + [sym_class_specifier] = STATE(2754), + [aux_sym_sized_type_specifier_repeat1] = STATE(1741), + [sym_sized_type_specifier] = STATE(2754), + [sym__type_specifier] = STATE(2754), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(2754), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(2754), + [sym_struct_specifier] = STATE(2754), + [anon_sym_unsigned] = ACTIONS(3464), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(5648), - [anon_sym_signed] = ACTIONS(3454), + [sym_auto] = ACTIONS(5654), + [anon_sym_signed] = ACTIONS(3464), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3454), + [anon_sym_long] = ACTIONS(3464), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(3456), + [anon_sym_typename] = ACTIONS(3466), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(5648), + [sym_primitive_type] = ACTIONS(5654), }, - [1746] = { - [sym_template_type] = STATE(239), + [1744] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(5650), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(5656), + }, + [1745] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1746] = { + [sym_template_function] = STATE(2756), + [sym__expression] = STATE(2756), + [sym_logical_expression] = STATE(2756), + [sym_bitwise_expression] = STATE(2756), + [sym_cast_expression] = STATE(2756), + [sym_delete_expression] = STATE(2756), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2756), + [sym_lambda_expression] = STATE(2756), + [sym_char_literal] = STATE(2756), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2756), + [sym_equality_expression] = STATE(2756), + [sym_relational_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2756), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2756), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2756), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2756), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2756), + [sym_math_expression] = STATE(2756), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2756), + [sym_raw_string_literal] = ACTIONS(5658), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5660), + [sym_null] = ACTIONS(5660), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5658), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1747] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_template_function] = STATE(2757), + [sym__expression] = STATE(2757), + [sym_logical_expression] = STATE(2757), + [sym_bitwise_expression] = STATE(2757), + [sym_cast_expression] = STATE(2757), + [sym_delete_expression] = STATE(2757), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2757), + [sym_lambda_expression] = STATE(2757), + [sym_char_literal] = STATE(2757), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2757), + [sym_equality_expression] = STATE(2757), + [sym_relational_expression] = STATE(2757), + [sym_sizeof_expression] = STATE(2757), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2757), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2757), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2757), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2757), + [sym_math_expression] = STATE(2757), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2757), + [sym_raw_string_literal] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5664), + [sym_null] = ACTIONS(5664), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5662), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5664), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1748] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2771), - [sym_logical_expression] = STATE(2771), - [sym_bitwise_expression] = STATE(2771), - [sym_cast_expression] = STATE(2771), - [sym_new_expression] = STATE(2771), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2771), - [sym_char_literal] = STATE(2771), - [sym_template_function] = STATE(2771), - [sym_conditional_expression] = STATE(2771), - [sym_equality_expression] = STATE(2771), - [sym_relational_expression] = STATE(2771), - [sym_delete_expression] = STATE(2771), - [sym_sizeof_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_lambda_expression] = STATE(2771), - [sym_concatenated_string] = STATE(2771), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2771), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2771), - [sym_math_expression] = STATE(2771), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5652), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5654), - [sym_null] = ACTIONS(5654), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5652), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5654), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5654), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(2758), + [sym__expression] = STATE(2758), + [sym_logical_expression] = STATE(2758), + [sym_bitwise_expression] = STATE(2758), + [sym_cast_expression] = STATE(2758), + [sym_delete_expression] = STATE(2758), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2758), + [sym_lambda_expression] = STATE(2758), + [sym_char_literal] = STATE(2758), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2758), + [sym_equality_expression] = STATE(2758), + [sym_relational_expression] = STATE(2758), + [sym_sizeof_expression] = STATE(2758), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2758), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2758), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2758), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2758), + [sym_math_expression] = STATE(2758), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2758), + [sym_raw_string_literal] = ACTIONS(5666), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5668), + [sym_null] = ACTIONS(5668), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5666), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1749] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2772), - [sym_logical_expression] = STATE(2772), - [sym_bitwise_expression] = STATE(2772), - [sym_cast_expression] = STATE(2772), - [sym_new_expression] = STATE(2772), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2772), - [sym_char_literal] = STATE(2772), - [sym_template_function] = STATE(2772), - [sym_conditional_expression] = STATE(2772), - [sym_equality_expression] = STATE(2772), - [sym_relational_expression] = STATE(2772), - [sym_delete_expression] = STATE(2772), - [sym_sizeof_expression] = STATE(2772), - [sym_parenthesized_expression] = STATE(2772), - [sym_lambda_expression] = STATE(2772), - [sym_concatenated_string] = STATE(2772), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2772), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2772), - [sym_math_expression] = STATE(2772), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5656), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5658), - [sym_null] = ACTIONS(5658), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5656), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5658), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(2759), + [sym__expression] = STATE(2759), + [sym_logical_expression] = STATE(2759), + [sym_bitwise_expression] = STATE(2759), + [sym_cast_expression] = STATE(2759), + [sym_delete_expression] = STATE(2759), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2759), + [sym_lambda_expression] = STATE(2759), + [sym_char_literal] = STATE(2759), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2759), + [sym_equality_expression] = STATE(2759), + [sym_relational_expression] = STATE(2759), + [sym_sizeof_expression] = STATE(2759), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2759), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2759), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2759), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2759), + [sym_math_expression] = STATE(2759), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2759), + [sym_raw_string_literal] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5672), + [sym_null] = ACTIONS(5672), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5670), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5672), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1750] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2773), - [sym_logical_expression] = STATE(2773), - [sym_bitwise_expression] = STATE(2773), - [sym_cast_expression] = STATE(2773), - [sym_new_expression] = STATE(2773), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2773), - [sym_char_literal] = STATE(2773), - [sym_template_function] = STATE(2773), - [sym_conditional_expression] = STATE(2773), - [sym_equality_expression] = STATE(2773), - [sym_relational_expression] = STATE(2773), - [sym_delete_expression] = STATE(2773), - [sym_sizeof_expression] = STATE(2773), - [sym_parenthesized_expression] = STATE(2773), - [sym_lambda_expression] = STATE(2773), - [sym_concatenated_string] = STATE(2773), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2773), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2773), - [sym_math_expression] = STATE(2773), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5660), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5662), - [sym_null] = ACTIONS(5662), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5660), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(2760), + [sym__expression] = STATE(2760), + [sym_logical_expression] = STATE(2760), + [sym_bitwise_expression] = STATE(2760), + [sym_cast_expression] = STATE(2760), + [sym_delete_expression] = STATE(2760), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2760), + [sym_lambda_expression] = STATE(2760), + [sym_char_literal] = STATE(2760), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2760), + [sym_equality_expression] = STATE(2760), + [sym_relational_expression] = STATE(2760), + [sym_sizeof_expression] = STATE(2760), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2760), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2760), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2760), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2760), + [sym_math_expression] = STATE(2760), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2760), + [sym_raw_string_literal] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5676), + [sym_null] = ACTIONS(5676), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5674), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5676), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1751] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2774), - [sym_logical_expression] = STATE(2774), - [sym_bitwise_expression] = STATE(2774), - [sym_cast_expression] = STATE(2774), - [sym_new_expression] = STATE(2774), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2774), - [sym_char_literal] = STATE(2774), - [sym_template_function] = STATE(2774), - [sym_conditional_expression] = STATE(2774), - [sym_equality_expression] = STATE(2774), - [sym_relational_expression] = STATE(2774), - [sym_delete_expression] = STATE(2774), - [sym_sizeof_expression] = STATE(2774), - [sym_parenthesized_expression] = STATE(2774), - [sym_lambda_expression] = STATE(2774), - [sym_concatenated_string] = STATE(2774), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2774), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2774), - [sym_math_expression] = STATE(2774), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5666), - [sym_null] = ACTIONS(5666), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5664), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5666), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5666), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(990), + [sym__expression] = STATE(990), + [sym_logical_expression] = STATE(990), + [sym_bitwise_expression] = STATE(990), + [sym_cast_expression] = STATE(990), + [sym_delete_expression] = STATE(990), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(990), + [sym_lambda_expression] = STATE(990), + [sym_char_literal] = STATE(990), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(990), + [sym_equality_expression] = STATE(990), + [sym_relational_expression] = STATE(990), + [sym_sizeof_expression] = STATE(990), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(990), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(990), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(990), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(990), + [sym_math_expression] = STATE(990), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(990), + [sym_raw_string_literal] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1752] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2775), - [sym_logical_expression] = STATE(2775), - [sym_bitwise_expression] = STATE(2775), - [sym_cast_expression] = STATE(2775), - [sym_new_expression] = STATE(2775), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2775), - [sym_char_literal] = STATE(2775), - [sym_template_function] = STATE(2775), - [sym_conditional_expression] = STATE(2775), - [sym_equality_expression] = STATE(2775), - [sym_relational_expression] = STATE(2775), - [sym_delete_expression] = STATE(2775), - [sym_sizeof_expression] = STATE(2775), - [sym_parenthesized_expression] = STATE(2775), - [sym_lambda_expression] = STATE(2775), - [sym_concatenated_string] = STATE(2775), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2775), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2775), - [sym_math_expression] = STATE(2775), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5668), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5670), - [sym_null] = ACTIONS(5670), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5668), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5670), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5670), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(2761), + [sym__expression] = STATE(2761), + [sym_logical_expression] = STATE(2761), + [sym_bitwise_expression] = STATE(2761), + [sym_cast_expression] = STATE(2761), + [sym_delete_expression] = STATE(2761), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2761), + [sym_lambda_expression] = STATE(2761), + [sym_char_literal] = STATE(2761), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2761), + [sym_equality_expression] = STATE(2761), + [sym_relational_expression] = STATE(2761), + [sym_sizeof_expression] = STATE(2761), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2761), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2761), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2761), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2761), + [sym_math_expression] = STATE(2761), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2761), + [sym_raw_string_literal] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5680), + [sym_null] = ACTIONS(5680), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5678), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5680), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1753] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(952), - [sym_logical_expression] = STATE(952), - [sym_bitwise_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_new_expression] = STATE(952), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(952), - [sym_char_literal] = STATE(952), - [sym_template_function] = STATE(952), - [sym_conditional_expression] = STATE(952), - [sym_equality_expression] = STATE(952), - [sym_relational_expression] = STATE(952), - [sym_delete_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(952), - [sym_lambda_expression] = STATE(952), - [sym_concatenated_string] = STATE(952), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(952), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(952), - [sym_math_expression] = STATE(952), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1741), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(2762), + [sym__expression] = STATE(2762), + [sym_logical_expression] = STATE(2762), + [sym_bitwise_expression] = STATE(2762), + [sym_cast_expression] = STATE(2762), + [sym_delete_expression] = STATE(2762), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2762), + [sym_lambda_expression] = STATE(2762), + [sym_char_literal] = STATE(2762), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2762), + [sym_equality_expression] = STATE(2762), + [sym_relational_expression] = STATE(2762), + [sym_sizeof_expression] = STATE(2762), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2762), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2762), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2762), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2762), + [sym_math_expression] = STATE(2762), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2762), + [sym_raw_string_literal] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5684), + [sym_null] = ACTIONS(5684), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5682), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5684), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1754] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2776), - [sym_logical_expression] = STATE(2776), - [sym_bitwise_expression] = STATE(2776), - [sym_cast_expression] = STATE(2776), - [sym_new_expression] = STATE(2776), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2776), - [sym_char_literal] = STATE(2776), - [sym_template_function] = STATE(2776), - [sym_conditional_expression] = STATE(2776), - [sym_equality_expression] = STATE(2776), - [sym_relational_expression] = STATE(2776), - [sym_delete_expression] = STATE(2776), - [sym_sizeof_expression] = STATE(2776), - [sym_parenthesized_expression] = STATE(2776), - [sym_lambda_expression] = STATE(2776), - [sym_concatenated_string] = STATE(2776), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2776), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2776), - [sym_math_expression] = STATE(2776), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5672), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5674), - [sym_null] = ACTIONS(5674), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5672), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5674), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5674), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(2763), + [sym__expression] = STATE(2763), + [sym_logical_expression] = STATE(2763), + [sym_bitwise_expression] = STATE(2763), + [sym_cast_expression] = STATE(2763), + [sym_delete_expression] = STATE(2763), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2763), + [sym_lambda_expression] = STATE(2763), + [sym_char_literal] = STATE(2763), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2763), + [sym_equality_expression] = STATE(2763), + [sym_relational_expression] = STATE(2763), + [sym_sizeof_expression] = STATE(2763), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2763), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2763), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2763), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2763), + [sym_math_expression] = STATE(2763), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2763), + [sym_raw_string_literal] = ACTIONS(5686), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5688), + [sym_null] = ACTIONS(5688), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5686), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5688), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1755] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2777), - [sym_logical_expression] = STATE(2777), - [sym_bitwise_expression] = STATE(2777), - [sym_cast_expression] = STATE(2777), - [sym_new_expression] = STATE(2777), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2777), - [sym_char_literal] = STATE(2777), - [sym_template_function] = STATE(2777), - [sym_conditional_expression] = STATE(2777), - [sym_equality_expression] = STATE(2777), - [sym_relational_expression] = STATE(2777), - [sym_delete_expression] = STATE(2777), - [sym_sizeof_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_lambda_expression] = STATE(2777), - [sym_concatenated_string] = STATE(2777), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2777), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2777), - [sym_math_expression] = STATE(2777), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5678), - [sym_null] = ACTIONS(5678), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5676), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5678), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5678), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [sym_template_function] = STATE(2764), + [sym__expression] = STATE(2764), + [sym_logical_expression] = STATE(2764), + [sym_bitwise_expression] = STATE(2764), + [sym_cast_expression] = STATE(2764), + [sym_delete_expression] = STATE(2764), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2764), + [sym_lambda_expression] = STATE(2764), + [sym_char_literal] = STATE(2764), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2764), + [sym_equality_expression] = STATE(2764), + [sym_relational_expression] = STATE(2764), + [sym_sizeof_expression] = STATE(2764), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2764), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2764), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2764), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2764), + [sym_math_expression] = STATE(2764), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2764), + [sym_raw_string_literal] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(5692), + [sym_null] = ACTIONS(5692), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5690), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(5692), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, [1756] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2778), - [sym_logical_expression] = STATE(2778), - [sym_bitwise_expression] = STATE(2778), - [sym_cast_expression] = STATE(2778), - [sym_new_expression] = STATE(2778), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2778), - [sym_char_literal] = STATE(2778), - [sym_template_function] = STATE(2778), - [sym_conditional_expression] = STATE(2778), - [sym_equality_expression] = STATE(2778), - [sym_relational_expression] = STATE(2778), - [sym_delete_expression] = STATE(2778), - [sym_sizeof_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_lambda_expression] = STATE(2778), - [sym_concatenated_string] = STATE(2778), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2778), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2778), - [sym_math_expression] = STATE(2778), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5680), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5682), - [sym_null] = ACTIONS(5682), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5680), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5682), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5682), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(2765), + [sym__expression] = STATE(2765), + [sym_logical_expression] = STATE(2765), + [sym_bitwise_expression] = STATE(2765), + [sym_cast_expression] = STATE(2765), + [sym_delete_expression] = STATE(2765), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2765), + [sym_lambda_expression] = STATE(2765), + [sym_char_literal] = STATE(2765), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2765), + [sym_equality_expression] = STATE(2765), + [sym_relational_expression] = STATE(2765), + [sym_sizeof_expression] = STATE(2765), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2765), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2765), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2765), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2765), + [sym_math_expression] = STATE(2765), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2765), + [sym_raw_string_literal] = ACTIONS(5694), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5696), + [sym_null] = ACTIONS(5696), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5694), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5696), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5696), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, [1757] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2779), - [sym_logical_expression] = STATE(2779), - [sym_bitwise_expression] = STATE(2779), - [sym_cast_expression] = STATE(2779), - [sym_new_expression] = STATE(2779), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2779), - [sym_char_literal] = STATE(2779), - [sym_template_function] = STATE(2779), - [sym_conditional_expression] = STATE(2779), - [sym_equality_expression] = STATE(2779), - [sym_relational_expression] = STATE(2779), - [sym_delete_expression] = STATE(2779), - [sym_sizeof_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_lambda_expression] = STATE(2779), - [sym_concatenated_string] = STATE(2779), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2779), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2779), - [sym_math_expression] = STATE(2779), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5684), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(5686), - [sym_null] = ACTIONS(5686), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5684), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(5686), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, - [1758] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2780), - [sym_logical_expression] = STATE(2780), - [sym_bitwise_expression] = STATE(2780), - [sym_cast_expression] = STATE(2780), - [sym_new_expression] = STATE(2780), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2780), - [sym_char_literal] = STATE(2780), - [sym_template_function] = STATE(2780), - [sym_conditional_expression] = STATE(2780), - [sym_equality_expression] = STATE(2780), - [sym_relational_expression] = STATE(2780), - [sym_delete_expression] = STATE(2780), - [sym_sizeof_expression] = STATE(2780), - [sym_parenthesized_expression] = STATE(2780), - [sym_lambda_expression] = STATE(2780), - [sym_concatenated_string] = STATE(2780), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2780), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2780), - [sym_math_expression] = STATE(2780), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5688), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5690), - [sym_null] = ACTIONS(5690), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5688), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5690), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), - }, - [1759] = { - [sym_do_statement] = STATE(2786), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [sym_do_statement] = STATE(2771), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(2786), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(2786), - [sym_if_statement] = STATE(2786), - [sym_switch_statement] = STATE(2786), - [sym_for_statement] = STATE(2786), - [sym_return_statement] = STATE(2786), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2771), + [sym_try_statement] = STATE(2771), + [sym_if_statement] = STATE(2771), + [sym_switch_statement] = STATE(2771), + [sym_for_statement] = STATE(2771), + [sym_return_statement] = STATE(2771), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(2786), - [sym_break_statement] = STATE(2786), - [sym_continue_statement] = STATE(2786), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2771), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2786), - [sym_labeled_statement] = STATE(2786), - [sym_expression_statement] = STATE(2786), - [sym_while_statement] = STATE(2786), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(2771), + [sym_for_range_loop] = STATE(2771), + [sym_compound_statement] = STATE(2771), + [sym_labeled_statement] = STATE(2771), + [sym_expression_statement] = STATE(2771), + [sym_while_statement] = STATE(2771), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -79157,18 +79100,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -79181,740 +79124,740 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [1760] = { - [sym_string_literal] = STATE(2787), - [aux_sym_concatenated_string_repeat1] = STATE(2787), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_RPAREN] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [1758] = { + [sym_string_literal] = STATE(2772), + [aux_sym_concatenated_string_repeat1] = STATE(2772), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [1761] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(5702), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1759] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(5708), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1762] = { - [sym_do_statement] = STATE(2790), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [1760] = { + [sym_do_statement] = STATE(2775), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(2790), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(2790), - [sym_if_statement] = STATE(2790), - [sym_switch_statement] = STATE(2790), - [sym_for_statement] = STATE(2790), - [sym_return_statement] = STATE(2790), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2775), + [sym_try_statement] = STATE(2775), + [aux_sym_switch_body_repeat1] = STATE(2775), + [sym_if_statement] = STATE(2775), + [sym_switch_statement] = STATE(2775), + [sym_for_statement] = STATE(2775), + [sym_return_statement] = STATE(2775), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(2790), - [aux_sym_switch_body_repeat1] = STATE(2790), - [sym_case_statement] = STATE(2790), - [sym_break_statement] = STATE(2790), - [sym_continue_statement] = STATE(2790), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(2775), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2775), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2790), - [sym_labeled_statement] = STATE(2790), - [sym_expression_statement] = STATE(2790), - [sym_while_statement] = STATE(2790), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(2775), + [sym_for_range_loop] = STATE(2775), + [sym_compound_statement] = STATE(2775), + [sym_labeled_statement] = STATE(2775), + [sym_expression_statement] = STATE(2775), + [sym_while_statement] = STATE(2775), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_RBRACE] = ACTIONS(5710), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, + [1761] = { + [anon_sym_else] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + }, + [1762] = { + [anon_sym_else] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + }, [1763] = { - [anon_sym_else] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), [sym_comment] = ACTIONS(3), }, [1764] = { - [anon_sym_else] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), [sym_comment] = ACTIONS(3), }, [1765] = { - [anon_sym_else] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [sym_comment] = ACTIONS(3), + [sym_template_function] = STATE(2777), + [sym__expression] = STATE(2777), + [sym_logical_expression] = STATE(2777), + [sym_bitwise_expression] = STATE(2777), + [sym_cast_expression] = STATE(2777), + [sym_delete_expression] = STATE(2777), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(2777), + [sym_lambda_expression] = STATE(2777), + [sym_char_literal] = STATE(2777), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2777), + [sym_equality_expression] = STATE(2777), + [sym_relational_expression] = STATE(2777), + [sym_sizeof_expression] = STATE(2777), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2777), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(2777), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2777), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(2777), + [sym_math_expression] = STATE(2777), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(2777), + [sym_raw_string_literal] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(5714), + [sym_null] = ACTIONS(5714), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5712), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(5714), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5714), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(5716), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [1766] = { - [anon_sym_else] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1767] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2792), - [sym_logical_expression] = STATE(2792), - [sym_bitwise_expression] = STATE(2792), - [sym_cast_expression] = STATE(2792), - [sym_new_expression] = STATE(2792), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(2792), - [sym_char_literal] = STATE(2792), - [sym_template_function] = STATE(2792), - [sym_conditional_expression] = STATE(2792), - [sym_equality_expression] = STATE(2792), - [sym_relational_expression] = STATE(2792), - [sym_delete_expression] = STATE(2792), - [sym_sizeof_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_lambda_expression] = STATE(2792), - [sym_concatenated_string] = STATE(2792), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(2792), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(2792), - [sym_math_expression] = STATE(2792), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5706), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(5708), - [sym_null] = ACTIONS(5708), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5706), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5708), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(5710), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_COLON] = ACTIONS(5720), + [sym_comment] = ACTIONS(3), }, [1768] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(5712), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_parameter_list] = STATE(2780), + [anon_sym_LPAREN2] = ACTIONS(614), + [sym_comment] = ACTIONS(3), }, [1769] = { - [anon_sym_COLON] = ACTIONS(5714), + [sym_catch_clause] = STATE(2781), + [aux_sym_try_statement_repeat1] = STATE(2781), + [anon_sym_catch] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3156), [sym_comment] = ACTIONS(3), }, [1770] = { - [sym_parameter_list] = STATE(2795), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(5722), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1771] = { - [aux_sym_try_statement_repeat1] = STATE(2796), - [sym_catch_clause] = STATE(2796), - [anon_sym_catch] = ACTIONS(3506), - [anon_sym_while] = ACTIONS(3154), - [sym_comment] = ACTIONS(3), - }, - [1772] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(5716), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [1773] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2798), - [sym_logical_expression] = STATE(2798), - [sym_bitwise_expression] = STATE(2798), - [sym_cast_expression] = STATE(2798), - [sym_new_expression] = STATE(2798), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(2798), - [sym_char_literal] = STATE(2798), - [sym_template_function] = STATE(2798), - [sym_conditional_expression] = STATE(2798), - [sym_equality_expression] = STATE(2798), - [sym_relational_expression] = STATE(2798), - [sym_delete_expression] = STATE(2798), - [sym_sizeof_expression] = STATE(2798), - [sym_parenthesized_expression] = STATE(2798), - [sym_lambda_expression] = STATE(2798), - [sym_concatenated_string] = STATE(2798), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(2798), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(2798), - [sym_math_expression] = STATE(2798), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5718), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(5720), - [sym_null] = ACTIONS(5720), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5718), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(5720), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5720), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [sym_template_function] = STATE(2783), + [sym__expression] = STATE(2783), + [sym_logical_expression] = STATE(2783), + [sym_bitwise_expression] = STATE(2783), + [sym_cast_expression] = STATE(2783), + [sym_delete_expression] = STATE(2783), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(2783), + [sym_lambda_expression] = STATE(2783), + [sym_char_literal] = STATE(2783), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2783), + [sym_equality_expression] = STATE(2783), + [sym_relational_expression] = STATE(2783), + [sym_sizeof_expression] = STATE(2783), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2783), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(2783), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2783), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(2783), + [sym_math_expression] = STATE(2783), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(2783), + [sym_raw_string_literal] = ACTIONS(5724), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(5726), + [sym_null] = ACTIONS(5726), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5724), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(5726), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5726), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [1774] = { - [sym_parenthesized_expression] = STATE(2799), + [1772] = { + [sym_parenthesized_expression] = STATE(2784), [anon_sym_LPAREN2] = ACTIONS(157), [sym_comment] = ACTIONS(3), }, - [1775] = { - [anon_sym_else] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), + [1773] = { + [anon_sym_else] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), [sym_comment] = ACTIONS(3), }, - [1776] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2800), - [sym_logical_expression] = STATE(2800), - [sym_bitwise_expression] = STATE(2800), - [sym_cast_expression] = STATE(2800), - [sym_new_expression] = STATE(2800), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(2800), - [sym_char_literal] = STATE(2800), - [sym_comma_expression] = STATE(2801), - [sym_template_function] = STATE(2800), - [sym_conditional_expression] = STATE(2800), - [sym_equality_expression] = STATE(2800), - [sym_delete_expression] = STATE(2800), - [sym_relational_expression] = STATE(2800), - [sym_parenthesized_expression] = STATE(2800), - [sym_sizeof_expression] = STATE(2800), - [sym_concatenated_string] = STATE(2800), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(2800), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(2800), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(2800), - [sym_math_expression] = STATE(2800), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5722), + [1774] = { + [sym_template_function] = STATE(2785), + [sym__expression] = STATE(2785), + [sym_logical_expression] = STATE(2785), + [sym_bitwise_expression] = STATE(2785), + [sym_cast_expression] = STATE(2785), + [sym_delete_expression] = STATE(2785), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(2785), + [sym_lambda_expression] = STATE(2785), + [sym_char_literal] = STATE(2785), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_comma_expression] = STATE(2786), + [sym_conditional_expression] = STATE(2785), + [sym_equality_expression] = STATE(2785), + [sym_relational_expression] = STATE(2785), + [sym_sizeof_expression] = STATE(2785), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2785), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(2785), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2785), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(2785), + [sym_math_expression] = STATE(2785), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(2785), + [sym_raw_string_literal] = ACTIONS(5728), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(5724), - [sym_null] = ACTIONS(5724), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(5730), + [sym_null] = ACTIONS(5730), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5722), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(5728), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(5724), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(5724), + [sym_false] = ACTIONS(5730), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(5730), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + }, + [1775] = { + [anon_sym_DASH] = ACTIONS(5732), + [sym_raw_string_literal] = ACTIONS(5734), + [anon_sym_else] = ACTIONS(5732), + [sym_true] = ACTIONS(5732), + [anon_sym_mutable] = ACTIONS(5732), + [sym_null] = ACTIONS(5732), + [anon_sym_break] = ACTIONS(5732), + [anon_sym_BANG] = ACTIONS(5734), + [anon_sym_sizeof] = ACTIONS(5732), + [anon_sym_volatile] = ACTIONS(5732), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_typedef] = ACTIONS(5732), + [anon_sym_switch] = ACTIONS(5732), + [anon_sym_explicit] = ACTIONS(5732), + [sym_identifier] = ACTIONS(5732), + [anon_sym_delete] = ACTIONS(5732), + [anon_sym_continue] = ACTIONS(5732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5732), + [anon_sym__Atomic] = ACTIONS(5732), + [sym_number_literal] = ACTIONS(5734), + [anon_sym_extern] = ACTIONS(5732), + [anon_sym_enum] = ACTIONS(5732), + [anon_sym_constexpr] = ACTIONS(5732), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5734), + [anon_sym_namespace] = ACTIONS(5732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5732), + [anon_sym_SQUOTE] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5734), + [anon_sym_DASH_DASH] = ACTIONS(5734), + [anon_sym_LPAREN2] = ACTIONS(5734), + [anon_sym_struct] = ACTIONS(5732), + [sym_auto] = ACTIONS(5732), + [anon_sym_signed] = ACTIONS(5732), + [anon_sym_long] = ACTIONS(5732), + [anon_sym_COLON_COLON] = ACTIONS(5734), + [anon_sym_using] = ACTIONS(5732), + [sym_preproc_directive] = ACTIONS(5732), + [aux_sym_preproc_if_token1] = ACTIONS(5732), + [anon_sym_AMP] = ACTIONS(5732), + [anon_sym_static] = ACTIONS(5732), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_STAR] = ACTIONS(5734), + [anon_sym_union] = ACTIONS(5732), + [anon_sym_typename] = ACTIONS(5732), + [anon_sym_short] = ACTIONS(5732), + [anon_sym_new] = ACTIONS(5732), + [anon_sym_goto] = ACTIONS(5732), + [sym_operator_name] = ACTIONS(5734), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [aux_sym_preproc_include_token1] = ACTIONS(5732), + [anon_sym_register] = ACTIONS(5732), + [anon_sym_DQUOTE] = ACTIONS(5734), + [anon_sym_const] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5732), + [anon_sym_class] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [sym_primitive_type] = ACTIONS(5732), + [sym_false] = ACTIONS(5732), + [sym_nullptr] = ACTIONS(5732), + [anon_sym_do] = ACTIONS(5732), + [anon_sym_template] = ACTIONS(5732), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_TILDE] = ACTIONS(5734), + [anon_sym_SEMI] = ACTIONS(5734), + [ts_builtin_sym_end] = ACTIONS(5734), + [aux_sym_preproc_def_token1] = ACTIONS(5732), + [anon_sym_AMP_AMP] = ACTIONS(5734), + [anon_sym_inline] = ACTIONS(5732), + [anon_sym_PLUS_PLUS] = ACTIONS(5734), + [anon_sym_restrict] = ACTIONS(5732), + }, + [1776] = { + [sym_virtual_specifier] = STATE(2073), + [sym_template_argument_list] = STATE(1162), + [sym_field_declaration_list] = STATE(2074), + [sym_base_class_clause] = STATE(2075), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(300), + [anon_sym_mutable] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1130), + [anon_sym_GT2] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1132), + [sym_operator_name] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(2182), }, [1777] = { - [anon_sym_DASH] = ACTIONS(5726), - [sym_raw_string_literal] = ACTIONS(5728), - [anon_sym_else] = ACTIONS(5726), - [sym_true] = ACTIONS(5726), - [anon_sym_mutable] = ACTIONS(5726), - [sym_null] = ACTIONS(5726), - [anon_sym_break] = ACTIONS(5726), - [anon_sym_BANG] = ACTIONS(5728), - [anon_sym_sizeof] = ACTIONS(5726), - [anon_sym_volatile] = ACTIONS(5726), - [anon_sym_PLUS] = ACTIONS(5726), - [anon_sym_typedef] = ACTIONS(5726), - [anon_sym_switch] = ACTIONS(5726), - [anon_sym_explicit] = ACTIONS(5726), - [sym_identifier] = ACTIONS(5726), - [anon_sym_delete] = ACTIONS(5726), - [anon_sym_continue] = ACTIONS(5726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5726), - [anon_sym__Atomic] = ACTIONS(5726), - [sym_number_literal] = ACTIONS(5728), - [anon_sym_extern] = ACTIONS(5726), - [anon_sym_enum] = ACTIONS(5726), - [anon_sym_constexpr] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5728), - [anon_sym_namespace] = ACTIONS(5726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5726), - [anon_sym_SQUOTE] = ACTIONS(5728), - [anon_sym_LBRACE] = ACTIONS(5728), - [anon_sym_DASH_DASH] = ACTIONS(5728), - [anon_sym_LPAREN2] = ACTIONS(5728), - [anon_sym_struct] = ACTIONS(5726), - [sym_auto] = ACTIONS(5726), - [anon_sym_signed] = ACTIONS(5726), - [anon_sym_long] = ACTIONS(5726), - [anon_sym_COLON_COLON] = ACTIONS(5728), - [anon_sym_using] = ACTIONS(5726), - [sym_preproc_directive] = ACTIONS(5726), - [aux_sym_preproc_if_token1] = ACTIONS(5726), - [anon_sym_AMP] = ACTIONS(5726), - [anon_sym_static] = ACTIONS(5726), - [anon_sym_RBRACE] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(5728), - [anon_sym_union] = ACTIONS(5726), - [anon_sym_typename] = ACTIONS(5726), - [anon_sym_short] = ACTIONS(5726), - [anon_sym_new] = ACTIONS(5726), - [anon_sym_goto] = ACTIONS(5726), - [sym_operator_name] = ACTIONS(5728), - [anon_sym_while] = ACTIONS(5726), - [anon_sym_try] = ACTIONS(5726), - [anon_sym_for] = ACTIONS(5726), - [aux_sym_preproc_include_token1] = ACTIONS(5726), - [anon_sym_register] = ACTIONS(5726), - [anon_sym_DQUOTE] = ACTIONS(5728), - [anon_sym_const] = ACTIONS(5726), - [anon_sym_LBRACK] = ACTIONS(5726), - [anon_sym_class] = ACTIONS(5726), - [anon_sym_if] = ACTIONS(5726), - [sym_primitive_type] = ACTIONS(5726), - [sym_false] = ACTIONS(5726), - [sym_nullptr] = ACTIONS(5726), - [anon_sym_do] = ACTIONS(5726), - [anon_sym_template] = ACTIONS(5726), - [anon_sym_return] = ACTIONS(5726), - [anon_sym_TILDE] = ACTIONS(5728), - [anon_sym_SEMI] = ACTIONS(5728), - [ts_builtin_sym_end] = ACTIONS(5728), - [aux_sym_preproc_def_token1] = ACTIONS(5726), - [anon_sym_AMP_AMP] = ACTIONS(5728), - [anon_sym_inline] = ACTIONS(5726), - [anon_sym_PLUS_PLUS] = ACTIONS(5728), - [anon_sym_restrict] = ACTIONS(5726), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_final] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_DASH_GT] = ACTIONS(1141), + [anon_sym_mutable] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_GT2] = ACTIONS(1141), + [anon_sym_EQ_EQ] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_override] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_COLON] = ACTIONS(1143), + [anon_sym_explicit] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1143), + [sym_operator_name] = ACTIONS(1141), + [sym_noexcept] = ACTIONS(1143), + [anon_sym_CARET] = ACTIONS(1141), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1141), + [anon_sym_constexpr] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1141), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_EQ] = ACTIONS(1141), + [anon_sym_BANG_EQ] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1143), }, [1778] = { - [sym_template_argument_list] = STATE(1169), - [sym_virtual_specifier] = STATE(2086), - [sym_field_declaration_list] = STATE(2084), - [sym_base_class_clause] = STATE(2085), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(298), - [anon_sym_mutable] = ACTIONS(1128), - [anon_sym_COLON_COLON] = ACTIONS(1126), - [anon_sym_GT2] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [sym_operator_name] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym_EQ] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2180), + [sym_virtual_specifier] = STATE(2167), + [sym_template_argument_list] = STATE(1786), + [sym_field_declaration_list] = STATE(2168), + [sym_base_class_clause] = STATE(2169), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_final] = ACTIONS(300), + [anon_sym_mutable] = ACTIONS(1488), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_GT2] = ACTIONS(5736), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1488), + [sym_operator_name] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(5736), + [anon_sym_register] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2182), }, [1779] = { - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_final] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_DASH_GT] = ACTIONS(1135), - [anon_sym_mutable] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1135), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_GT2] = ACTIONS(1135), - [anon_sym_EQ_EQ] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_GT_EQ] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_SLASH] = ACTIONS(1137), - [anon_sym_COLON] = ACTIONS(1137), - [anon_sym_explicit] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [sym_operator_name] = ACTIONS(1135), - [sym_noexcept] = ACTIONS(1137), - [anon_sym_CARET] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1137), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_register] = ACTIONS(1137), - [anon_sym__Atomic] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_constexpr] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1135), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1135), - [anon_sym_BANG_EQ] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1137), - [anon_sym_EQ] = ACTIONS(1137), - [anon_sym_restrict] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1137), + [sym_identifier] = ACTIONS(5738), + [sym_comment] = ACTIONS(3), }, [1780] = { - [sym_template_argument_list] = STATE(1788), - [sym_virtual_specifier] = STATE(2178), - [sym_field_declaration_list] = STATE(2179), - [sym_base_class_clause] = STATE(2180), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_final] = ACTIONS(298), - [anon_sym_mutable] = ACTIONS(1474), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_GT2] = ACTIONS(5730), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_volatile] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_override] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1474), - [sym_operator_name] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(5730), - [anon_sym_register] = ACTIONS(1474), - [anon_sym__Atomic] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1474), - [anon_sym_EQ] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(2180), + [sym_virtual_specifier] = STATE(2170), + [sym_template_argument_list] = STATE(1162), + [sym_field_declaration_list] = STATE(2171), + [sym_base_class_clause] = STATE(2172), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(300), + [anon_sym_mutable] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_override] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [sym_operator_name] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(2182), }, [1781] = { - [sym_identifier] = ACTIONS(5732), - [sym_comment] = ACTIONS(3), + [sym_virtual_specifier] = STATE(2141), + [sym_template_argument_list] = STATE(1162), + [sym_field_declaration_list] = STATE(2142), + [sym_base_class_clause] = STATE(2143), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(300), + [anon_sym_mutable] = ACTIONS(1263), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_GT2] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_override] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1263), + [sym_operator_name] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(2182), }, [1782] = { - [sym_template_argument_list] = STATE(1169), - [sym_virtual_specifier] = STATE(2183), - [sym_field_declaration_list] = STATE(2181), - [sym_base_class_clause] = STATE(2182), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(298), - [anon_sym_mutable] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [sym_operator_name] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(2180), + [sym_union_specifier] = STATE(1113), + [sym_macro_type_specifier] = STATE(1113), + [sym_class_specifier] = STATE(1113), + [aux_sym_sized_type_specifier_repeat1] = STATE(859), + [sym_sized_type_specifier] = STATE(1113), + [sym__type_specifier] = STATE(1113), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(1113), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1113), + [sym_struct_specifier] = STATE(1113), + [anon_sym_unsigned] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1548), + [sym_auto] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_typename] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(3540), + [sym_primitive_type] = ACTIONS(2248), }, [1783] = { - [sym_template_argument_list] = STATE(1169), - [sym_virtual_specifier] = STATE(2154), - [sym_field_declaration_list] = STATE(2152), - [sym_base_class_clause] = STATE(2153), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(298), - [anon_sym_mutable] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1255), - [anon_sym_GT2] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_override] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1257), - [sym_operator_name] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(2180), - }, - [1784] = { - [sym_union_specifier] = STATE(1117), - [sym_macro_type_specifier] = STATE(1117), - [sym_class_specifier] = STATE(1117), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1117), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1117), - [aux_sym_sized_type_specifier_repeat1] = STATE(860), - [sym_struct_specifier] = STATE(1117), - [sym_enum_specifier] = STATE(1117), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(1117), - [anon_sym_unsigned] = ACTIONS(1538), - [anon_sym_struct] = ACTIONS(1534), - [sym_auto] = ACTIONS(2246), - [anon_sym_signed] = ACTIONS(1538), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1538), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_typename] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(1538), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(3530), - [sym_primitive_type] = ACTIONS(2246), - }, - [1785] = { - [sym_template_argument_list] = STATE(1788), + [sym_template_argument_list] = STATE(1786), [anon_sym_LPAREN2] = ACTIONS(185), [anon_sym_mutable] = ACTIONS(169), - [anon_sym_COMMA] = ACTIONS(5730), + [anon_sym_COMMA] = ACTIONS(5736), [anon_sym_register] = ACTIONS(169), [anon_sym__Atomic] = ACTIONS(169), [anon_sym_const] = ACTIONS(169), [anon_sym_extern] = ACTIONS(169), [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_GT2] = ACTIONS(5730), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(5736), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(2335), [anon_sym_constexpr] = ACTIONS(169), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(169), @@ -79925,3857 +79868,4145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_explicit] = ACTIONS(169), [anon_sym_AMP_AMP] = ACTIONS(185), [anon_sym_inline] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(5734), + [anon_sym_EQ] = ACTIONS(5740), [anon_sym_restrict] = ACTIONS(169), [sym_identifier] = ACTIONS(169), [sym_operator_name] = ACTIONS(185), }, - [1786] = { - [sym_virtual_specifier] = STATE(1139), - [sym_template_type] = STATE(1140), - [sym_scoped_namespace_identifier] = STATE(859), - [sym_field_declaration_list] = STATE(1141), - [sym_scoped_type_identifier] = STATE(1782), - [sym_base_class_clause] = STATE(1143), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(2283), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(298), + [1784] = { + [sym_scoped_type_identifier] = STATE(1780), + [sym_virtual_specifier] = STATE(1136), + [sym_template_type] = STATE(1137), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_field_declaration_list] = STATE(1138), + [sym_base_class_clause] = STATE(1139), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(300), }, - [1787] = { - [sym_identifier] = ACTIONS(5737), + [1785] = { + [sym_identifier] = ACTIONS(5743), [sym_comment] = ACTIONS(3), }, - [1788] = { - [anon_sym_LPAREN2] = ACTIONS(789), - [anon_sym_final] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DASH_GT] = ACTIONS(789), - [anon_sym_mutable] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_static] = ACTIONS(787), - [anon_sym_volatile] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_override] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_explicit] = ACTIONS(787), - [sym_identifier] = ACTIONS(787), - [sym_operator_name] = ACTIONS(789), - [sym_noexcept] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_register] = ACTIONS(787), - [anon_sym__Atomic] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_extern] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(789), - [anon_sym_constexpr] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(789), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_inline] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_restrict] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(787), - }, - [1789] = { - [sym_union_specifier] = STATE(1117), - [sym_macro_type_specifier] = STATE(1117), - [sym_class_specifier] = STATE(1117), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1117), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1117), - [aux_sym_sized_type_specifier_repeat1] = STATE(1792), - [sym_struct_specifier] = STATE(1117), - [sym_enum_specifier] = STATE(1117), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(1117), - [anon_sym_unsigned] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(1534), - [sym_auto] = ACTIONS(2246), - [anon_sym_signed] = ACTIONS(3540), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3540), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_typename] = ACTIONS(3542), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(3530), - [sym_primitive_type] = ACTIONS(2246), + [1786] = { + [anon_sym_LPAREN2] = ACTIONS(797), + [anon_sym_final] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_DASH_GT] = ACTIONS(797), + [anon_sym_mutable] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_GT2] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_static] = ACTIONS(795), + [anon_sym_volatile] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_override] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_explicit] = ACTIONS(795), + [sym_identifier] = ACTIONS(795), + [sym_operator_name] = ACTIONS(797), + [sym_noexcept] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_register] = ACTIONS(795), + [anon_sym__Atomic] = ACTIONS(795), + [anon_sym_const] = ACTIONS(795), + [anon_sym_extern] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_LT_LT] = ACTIONS(797), + [anon_sym_constexpr] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_inline] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_restrict] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(795), }, - [1790] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2805), - [sym_storage_class_specifier] = STATE(2805), - [sym_type_qualifier] = STATE(2805), - [anon_sym_LPAREN2] = ACTIONS(541), + [1787] = { + [sym_storage_class_specifier] = STATE(2790), + [sym_type_qualifier] = STATE(2790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2790), + [anon_sym_LPAREN2] = ACTIONS(1785), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(1785), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(541), - [anon_sym_GT2] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(541), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_GT2] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(1787), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_EQ] = ACTIONS(1785), + [sym_operator_name] = ACTIONS(1785), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(541), [anon_sym_restrict] = ACTIONS(11), }, - [1791] = { - [sym_macro_type_specifier] = STATE(2806), - [sym_class_specifier] = STATE(2806), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(2806), - [sym__type_specifier] = STATE(2806), - [aux_sym__declaration_specifiers_repeat1] = STATE(873), - [sym_storage_class_specifier] = STATE(873), - [sym_type_qualifier] = STATE(873), - [sym_struct_specifier] = STATE(2806), - [sym_union_specifier] = STATE(2806), - [sym_dependent_type] = STATE(2806), - [sym_scoped_namespace_identifier] = STATE(859), - [aux_sym_sized_type_specifier_repeat1] = STATE(1792), - [sym_enum_specifier] = STATE(2806), - [sym_scoped_type_identifier] = STATE(862), - [anon_sym_struct] = ACTIONS(1534), - [sym_auto] = ACTIONS(5739), - [anon_sym_signed] = ACTIONS(3540), + [1788] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1788), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(5745), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(5745), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_GT2] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(5745), + [sym_identifier] = ACTIONS(1783), + [sym_operator_name] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1783), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(5745), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + }, + [1789] = { + [sym_macro_type_specifier] = STATE(858), + [sym_class_specifier] = STATE(858), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(858), + [aux_sym_sized_type_specifier_repeat1] = STATE(859), + [sym_optional_parameter_declaration] = STATE(2791), + [sym_parameter_declaration] = STATE(2791), + [sym_scoped_type_identifier] = STATE(861), + [aux_sym_function_definition_repeat1] = STATE(862), + [sym_template_type] = STATE(863), + [sym_storage_class_specifier] = STATE(864), + [sym_dependent_type] = STATE(858), + [sym_struct_specifier] = STATE(858), + [sym_union_specifier] = STATE(858), + [sym_type_qualifier] = STATE(864), + [sym_variadic_type_parameter_declaration] = STATE(2791), + [sym_optional_type_parameter_declaration] = STATE(2791), + [aux_sym__declaration_specifiers_repeat1] = STATE(864), + [sym_enum_specifier] = STATE(858), + [sym_attribute] = STATE(862), + [sym_type_parameter_declaration] = STATE(2791), + [sym__declaration_specifiers] = STATE(865), + [sym_scoped_namespace_identifier] = STATE(866), + [anon_sym_struct] = ACTIONS(1548), + [sym_auto] = ACTIONS(1550), + [anon_sym_signed] = ACTIONS(1552), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(3540), + [anon_sym_long] = ACTIONS(1552), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(1558), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(5739), - [anon_sym_unsigned] = ACTIONS(3540), + [sym_primitive_type] = ACTIONS(1550), + [anon_sym_unsigned] = ACTIONS(1552), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_typename] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_typename] = ACTIONS(1562), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1564), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(3540), + [anon_sym_short] = ACTIONS(1552), [anon_sym_restrict] = ACTIONS(11), }, - [1792] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2807), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(5741), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_register] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_GT2] = ACTIONS(621), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_long] = ACTIONS(5741), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(5741), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(625), - [sym_identifier] = ACTIONS(3554), - [anon_sym_restrict] = ACTIONS(625), - [sym_operator_name] = ACTIONS(621), - [anon_sym_short] = ACTIONS(5741), + [1790] = { + [anon_sym_struct] = ACTIONS(5748), + [sym_auto] = ACTIONS(5748), + [anon_sym_signed] = ACTIONS(5748), + [anon_sym_mutable] = ACTIONS(5748), + [anon_sym_long] = ACTIONS(5748), + [anon_sym_register] = ACTIONS(5748), + [anon_sym__Atomic] = ACTIONS(5748), + [anon_sym_const] = ACTIONS(5748), + [anon_sym_extern] = ACTIONS(5748), + [anon_sym_COLON_COLON] = ACTIONS(5750), + [anon_sym_enum] = ACTIONS(5748), + [anon_sym_class] = ACTIONS(5748), + [anon_sym_constexpr] = ACTIONS(5748), + [sym_primitive_type] = ACTIONS(5748), + [anon_sym_unsigned] = ACTIONS(5748), + [anon_sym_static] = ACTIONS(5748), + [anon_sym_volatile] = ACTIONS(5748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5750), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(5748), + [anon_sym_typename] = ACTIONS(5748), + [anon_sym_explicit] = ACTIONS(5748), + [anon_sym_short] = ACTIONS(5748), + [anon_sym_inline] = ACTIONS(5748), + [sym_identifier] = ACTIONS(5748), + [anon_sym_restrict] = ACTIONS(5748), }, - [1793] = { - [sym__abstract_declarator] = STATE(2811), - [sym_template_type] = STATE(1807), - [sym_abstract_array_declarator] = STATE(2811), - [sym_function_declarator] = STATE(2810), - [sym_destructor_name] = STATE(2810), - [sym__declarator] = STATE(2810), - [sym_abstract_pointer_declarator] = STATE(2811), - [sym_array_declarator] = STATE(2810), - [sym_parameter_list] = STATE(1174), - [sym_pointer_declarator] = STATE(2810), - [sym_scoped_namespace_identifier] = STATE(1807), - [sym_abstract_reference_declarator] = STATE(2811), - [sym_abstract_function_declarator] = STATE(2811), - [sym_template_function] = STATE(2810), - [sym_scoped_identifier] = STATE(1809), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(2810), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(5743), - [anon_sym_COMMA] = ACTIONS(5745), - [anon_sym_STAR] = ACTIONS(5747), - [anon_sym_TILDE] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(3565), - [anon_sym_GT2] = ACTIONS(5745), - [sym_identifier] = ACTIONS(3567), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(5749), - [sym_operator_name] = ACTIONS(5751), + [1791] = { + [aux_sym_template_parameter_list_repeat1] = STATE(2793), + [anon_sym_COMMA] = ACTIONS(3553), + [anon_sym_GT2] = ACTIONS(5752), [sym_comment] = ACTIONS(3), }, - [1794] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2812), - [sym_storage_class_specifier] = STATE(2812), - [sym_type_qualifier] = STATE(2812), - [anon_sym_LPAREN2] = ACTIONS(1675), + [1792] = { + [sym_union_specifier] = STATE(1113), + [sym_macro_type_specifier] = STATE(1113), + [sym_class_specifier] = STATE(1113), + [aux_sym_sized_type_specifier_repeat1] = STATE(1794), + [sym_sized_type_specifier] = STATE(1113), + [sym__type_specifier] = STATE(1113), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(1113), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1113), + [sym_struct_specifier] = STATE(1113), + [anon_sym_unsigned] = ACTIONS(3559), + [anon_sym_struct] = ACTIONS(1548), + [sym_auto] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(3559), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3559), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_typename] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(3559), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(3540), + [sym_primitive_type] = ACTIONS(2248), + }, + [1793] = { + [sym_storage_class_specifier] = STATE(2794), + [sym_type_qualifier] = STATE(2794), + [aux_sym__declaration_specifiers_repeat1] = STATE(2794), + [anon_sym_LPAREN2] = ACTIONS(565), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(565), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(565), + [anon_sym_GT2] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(565), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(567), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(565), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_EQ] = ACTIONS(1675), - [sym_operator_name] = ACTIONS(1675), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), [anon_sym_inline] = ACTIONS(63), + [sym_operator_name] = ACTIONS(565), [anon_sym_restrict] = ACTIONS(11), }, - [1795] = { - [sym_identifier] = ACTIONS(5753), - [sym_comment] = ACTIONS(3), + [1794] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2795), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(5754), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_register] = ACTIONS(558), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_GT2] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_long] = ACTIONS(5754), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_static] = ACTIONS(558), + [anon_sym_volatile] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(5754), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_inline] = ACTIONS(558), + [sym_identifier] = ACTIONS(3550), + [anon_sym_restrict] = ACTIONS(558), + [sym_operator_name] = ACTIONS(554), + [anon_sym_short] = ACTIONS(5754), }, - [1796] = { - [aux_sym_function_definition_repeat1] = STATE(854), - [sym_macro_type_specifier] = STATE(855), - [sym_class_specifier] = STATE(855), - [sym__type_specifier] = STATE(855), - [sym_sized_type_specifier] = STATE(855), - [sym_template_type] = STATE(856), - [sym_optional_type_parameter_declaration] = STATE(2814), - [sym_parameter_declaration] = STATE(2814), - [sym_optional_parameter_declaration] = STATE(2814), - [aux_sym__declaration_specifiers_repeat1] = STATE(858), - [sym_storage_class_specifier] = STATE(858), - [sym_dependent_type] = STATE(855), - [sym_struct_specifier] = STATE(855), - [sym_union_specifier] = STATE(855), - [sym_attribute] = STATE(854), - [sym_type_qualifier] = STATE(858), - [sym_scoped_namespace_identifier] = STATE(859), - [sym_type_parameter_declaration] = STATE(2814), - [sym_variadic_type_parameter_declaration] = STATE(2814), - [aux_sym_sized_type_specifier_repeat1] = STATE(860), - [sym_enum_specifier] = STATE(855), - [sym__declaration_specifiers] = STATE(861), - [sym_scoped_type_identifier] = STATE(862), - [anon_sym_struct] = ACTIONS(1534), - [sym_auto] = ACTIONS(1536), - [anon_sym_signed] = ACTIONS(1538), + [1795] = { + [sym_macro_type_specifier] = STATE(2796), + [sym_class_specifier] = STATE(2796), + [aux_sym_sized_type_specifier_repeat1] = STATE(1794), + [sym_sized_type_specifier] = STATE(2796), + [sym__type_specifier] = STATE(2796), + [sym_scoped_type_identifier] = STATE(861), + [sym_template_type] = STATE(863), + [sym_storage_class_specifier] = STATE(879), + [sym_type_qualifier] = STATE(879), + [sym_struct_specifier] = STATE(2796), + [sym_union_specifier] = STATE(2796), + [sym_dependent_type] = STATE(2796), + [aux_sym__declaration_specifiers_repeat1] = STATE(879), + [sym_enum_specifier] = STATE(2796), + [sym_scoped_namespace_identifier] = STATE(866), + [anon_sym_struct] = ACTIONS(1548), + [sym_auto] = ACTIONS(5756), + [anon_sym_signed] = ACTIONS(3559), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(3559), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(3540), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1536), - [anon_sym_unsigned] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(5756), + [anon_sym_unsigned] = ACTIONS(3559), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_typename] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_typename] = ACTIONS(3561), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1564), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(3559), [anon_sym_restrict] = ACTIONS(11), }, - [1797] = { - [anon_sym_struct] = ACTIONS(5755), - [sym_auto] = ACTIONS(5755), - [anon_sym_signed] = ACTIONS(5755), - [anon_sym_mutable] = ACTIONS(5755), - [anon_sym_long] = ACTIONS(5755), - [anon_sym_register] = ACTIONS(5755), - [anon_sym__Atomic] = ACTIONS(5755), - [anon_sym_const] = ACTIONS(5755), - [anon_sym_extern] = ACTIONS(5755), - [anon_sym_COLON_COLON] = ACTIONS(5757), - [anon_sym_enum] = ACTIONS(5755), - [anon_sym_class] = ACTIONS(5755), - [anon_sym_constexpr] = ACTIONS(5755), - [sym_primitive_type] = ACTIONS(5755), - [anon_sym_unsigned] = ACTIONS(5755), - [anon_sym_static] = ACTIONS(5755), - [anon_sym_volatile] = ACTIONS(5755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5757), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(5755), - [anon_sym_typename] = ACTIONS(5755), - [anon_sym_explicit] = ACTIONS(5755), - [anon_sym_short] = ACTIONS(5755), - [anon_sym_inline] = ACTIONS(5755), - [sym_identifier] = ACTIONS(5755), - [anon_sym_restrict] = ACTIONS(5755), + [1796] = { + [sym_abstract_reference_declarator] = STATE(2800), + [sym_template_function] = STATE(2799), + [sym_abstract_array_declarator] = STATE(2800), + [sym__declarator] = STATE(2799), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1806), + [sym_reference_declarator] = STATE(2799), + [sym_array_declarator] = STATE(2799), + [sym_abstract_pointer_declarator] = STATE(2800), + [sym_template_type] = STATE(1808), + [sym_destructor_name] = STATE(2799), + [sym_parameter_list] = STATE(1174), + [sym_pointer_declarator] = STATE(2799), + [sym_structured_binding_declarator] = STATE(2799), + [sym_abstract_function_declarator] = STATE(2800), + [sym_scoped_namespace_identifier] = STATE(1808), + [sym__abstract_declarator] = STATE(2800), + [sym_function_declarator] = STATE(2799), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(5760), + [anon_sym_STAR] = ACTIONS(5762), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(3575), + [anon_sym_GT2] = ACTIONS(5760), + [sym_identifier] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(5764), + [sym_operator_name] = ACTIONS(5766), + [sym_comment] = ACTIONS(3), }, - [1798] = { - [aux_sym_template_parameter_list_repeat1] = STATE(2816), - [anon_sym_COMMA] = ACTIONS(3546), - [anon_sym_GT2] = ACTIONS(5759), + [1797] = { + [sym_identifier] = ACTIONS(5768), [sym_comment] = ACTIONS(3), }, - [1799] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2817), - [sym_storage_class_specifier] = STATE(2817), - [sym_type_qualifier] = STATE(2817), - [anon_sym_LPAREN2] = ACTIONS(1675), + [1798] = { + [sym_storage_class_specifier] = STATE(2802), + [sym_type_qualifier] = STATE(2802), + [aux_sym__declaration_specifiers_repeat1] = STATE(2802), + [anon_sym_LPAREN2] = ACTIONS(1785), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(1785), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_GT2] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1787), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_EQ] = ACTIONS(1675), - [sym_operator_name] = ACTIONS(1675), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_EQ] = ACTIONS(1785), + [sym_operator_name] = ACTIONS(1785), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [1800] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1800), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(5761), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(5761), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_GT2] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(5761), - [sym_identifier] = ACTIONS(2082), - [sym_operator_name] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(5761), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - }, - [1801] = { - [sym_template_type] = STATE(311), - [sym_destructor_name] = STATE(148), - [sym__declarator] = STATE(148), - [sym_abstract_pointer_declarator] = STATE(1020), - [sym_array_declarator] = STATE(148), - [aux_sym__declaration_specifiers_repeat1] = STATE(989), - [sym_storage_class_specifier] = STATE(989), - [sym_type_qualifier] = STATE(989), - [sym_dependent_type] = STATE(988), - [sym_union_specifier] = STATE(988), - [sym_struct_specifier] = STATE(988), - [sym_parameter_list] = STATE(587), - [sym_abstract_reference_declarator] = STATE(1020), - [sym_template_function] = STATE(148), - [sym__declaration_specifiers] = STATE(991), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(148), - [aux_sym_function_definition_repeat1] = STATE(987), - [sym_macro_type_specifier] = STATE(988), - [sym_abstract_array_declarator] = STATE(1020), - [sym__type_specifier] = STATE(988), - [sym_sized_type_specifier] = STATE(988), - [sym_class_specifier] = STATE(988), - [sym_optional_parameter_declaration] = STATE(984), - [sym_parameter_declaration] = STATE(984), - [sym__abstract_declarator] = STATE(1020), - [sym_attribute] = STATE(987), - [sym_pointer_declarator] = STATE(148), - [sym_scoped_namespace_identifier] = STATE(314), - [sym_abstract_function_declarator] = STATE(1020), - [aux_sym_sized_type_specifier_repeat1] = STATE(990), - [sym_enum_specifier] = STATE(988), - [sym_variadic_parameter_declaration] = STATE(984), - [sym_reference_declarator] = STATE(148), - [anon_sym_LPAREN2] = ACTIONS(3557), + [1799] = { + [sym_abstract_reference_declarator] = STATE(933), + [sym_template_function] = STATE(149), + [sym__declarator] = STATE(149), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [sym_abstract_pointer_declarator] = STATE(933), + [sym_array_declarator] = STATE(149), + [aux_sym_function_definition_repeat1] = STATE(930), + [sym_storage_class_specifier] = STATE(931), + [sym_type_qualifier] = STATE(931), + [sym_dependent_type] = STATE(928), + [sym_union_specifier] = STATE(928), + [sym_struct_specifier] = STATE(928), + [sym_parameter_list] = STATE(590), + [sym_structured_binding_declarator] = STATE(149), + [sym_attribute] = STATE(930), + [sym__declaration_specifiers] = STATE(932), + [sym_scoped_namespace_identifier] = STATE(337), + [sym__abstract_declarator] = STATE(933), + [sym_function_declarator] = STATE(149), + [sym_macro_type_specifier] = STATE(928), + [sym_abstract_array_declarator] = STATE(933), + [sym__type_specifier] = STATE(928), + [sym_sized_type_specifier] = STATE(928), + [sym_class_specifier] = STATE(928), + [aux_sym_sized_type_specifier_repeat1] = STATE(929), + [sym_parameter_declaration] = STATE(925), + [sym_optional_parameter_declaration] = STATE(925), + [sym_variadic_parameter_declaration] = STATE(925), + [sym_reference_declarator] = STATE(149), + [sym_template_type] = STATE(335), + [sym_destructor_name] = STATE(149), + [sym_pointer_declarator] = STATE(149), + [aux_sym__declaration_specifiers_repeat1] = STATE(931), + [sym_abstract_function_declarator] = STATE(933), + [sym_enum_specifier] = STATE(928), + [anon_sym_LPAREN2] = ACTIONS(3567), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1821), - [anon_sym_signed] = ACTIONS(1823), + [sym_auto] = ACTIONS(1696), + [anon_sym_signed] = ACTIONS(1698), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(5764), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(5770), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(5766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(5772), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1827), + [anon_sym_typename] = ACTIONS(1702), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(530), - [anon_sym_short] = ACTIONS(1823), + [sym_identifier] = ACTIONS(573), + [anon_sym_short] = ACTIONS(1698), [sym_operator_name] = ACTIONS(286), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(5774), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1821), - [anon_sym_unsigned] = ACTIONS(1823), + [sym_primitive_type] = ACTIONS(1696), + [anon_sym_unsigned] = ACTIONS(1698), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(5768), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_AMP_AMP] = ACTIONS(5776), [anon_sym_inline] = ACTIONS(63), - [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1706), [anon_sym_restrict] = ACTIONS(11), }, - [1802] = { - [sym__abstract_declarator] = STATE(2211), - [sym_template_type] = STATE(1807), - [sym_abstract_array_declarator] = STATE(2211), - [sym_function_declarator] = STATE(2820), - [sym_destructor_name] = STATE(2820), - [sym__declarator] = STATE(2820), - [sym_abstract_pointer_declarator] = STATE(2211), - [sym_array_declarator] = STATE(2820), + [1800] = { + [sym_abstract_reference_declarator] = STATE(2200), + [sym_template_function] = STATE(2805), + [sym_abstract_array_declarator] = STATE(2200), + [sym__declarator] = STATE(2805), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1806), + [sym_reference_declarator] = STATE(2805), + [sym_array_declarator] = STATE(2805), + [sym_abstract_pointer_declarator] = STATE(2200), + [sym_template_type] = STATE(1808), + [sym_destructor_name] = STATE(2805), [sym_parameter_list] = STATE(1174), - [sym_pointer_declarator] = STATE(2820), - [sym_scoped_namespace_identifier] = STATE(1807), - [sym_abstract_reference_declarator] = STATE(2211), - [sym_abstract_function_declarator] = STATE(2211), - [sym_template_function] = STATE(2820), - [sym_scoped_identifier] = STATE(1809), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(2820), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3559), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_TILDE] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(3565), - [anon_sym_GT2] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [sym_identifier] = ACTIONS(3567), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [sym_operator_name] = ACTIONS(5770), + [sym_pointer_declarator] = STATE(2805), + [sym_structured_binding_declarator] = STATE(2805), + [sym_abstract_function_declarator] = STATE(2200), + [sym_scoped_namespace_identifier] = STATE(1808), + [sym__abstract_declarator] = STATE(2200), + [sym_function_declarator] = STATE(2805), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3569), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(3575), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [sym_operator_name] = ACTIONS(5778), [sym_comment] = ACTIONS(3), }, - [1803] = { - [sym__abstract_declarator] = STATE(2213), - [sym_template_type] = STATE(1807), - [sym_abstract_array_declarator] = STATE(2213), - [sym_function_declarator] = STATE(2821), - [sym_destructor_name] = STATE(2821), - [sym__declarator] = STATE(2821), - [sym_abstract_pointer_declarator] = STATE(2213), - [sym_array_declarator] = STATE(2821), - [sym_type_qualifier] = STATE(2822), + [1801] = { + [sym_abstract_reference_declarator] = STATE(2202), + [sym_template_function] = STATE(2807), + [sym_abstract_array_declarator] = STATE(2202), + [aux_sym_type_definition_repeat1] = STATE(2806), + [sym__declarator] = STATE(2807), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1806), + [sym_reference_declarator] = STATE(2807), + [sym_array_declarator] = STATE(2807), + [sym_abstract_pointer_declarator] = STATE(2202), + [sym_template_type] = STATE(1808), + [sym_type_qualifier] = STATE(2806), + [sym_destructor_name] = STATE(2807), [sym_parameter_list] = STATE(1174), - [sym_pointer_declarator] = STATE(2821), - [sym_scoped_namespace_identifier] = STATE(1807), - [sym_abstract_reference_declarator] = STATE(2213), - [sym_abstract_function_declarator] = STATE(2213), - [sym_template_function] = STATE(2821), - [aux_sym_type_definition_repeat1] = STATE(2822), - [sym_scoped_identifier] = STATE(1809), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(2821), - [anon_sym_LPAREN2] = ACTIONS(3557), + [sym_pointer_declarator] = STATE(2807), + [sym_structured_binding_declarator] = STATE(2807), + [sym_abstract_function_declarator] = STATE(2202), + [sym_scoped_namespace_identifier] = STATE(1808), + [sym__abstract_declarator] = STATE(2202), + [sym_function_declarator] = STATE(2807), + [anon_sym_LPAREN2] = ACTIONS(3567), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(2832), + [anon_sym_COMMA] = ACTIONS(2837), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_COLON_COLON] = ACTIONS(3565), + [anon_sym_GT2] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_COLON_COLON] = ACTIONS(3575), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3569), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(2200), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(3567), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [sym_operator_name] = ACTIONS(5772), + [sym_identifier] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [sym_operator_name] = ACTIONS(5780), [anon_sym_restrict] = ACTIONS(11), }, - [1804] = { - [sym_destructor_name] = STATE(1087), - [sym_identifier] = ACTIONS(1663), - [sym_operator_name] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2198), + [1802] = { + [sym_destructor_name] = STATE(1083), + [sym_identifier] = ACTIONS(1673), + [sym_operator_name] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2200), [sym_comment] = ACTIONS(3), }, - [1805] = { - [sym_template_argument_list] = STATE(1005), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(5774), - [anon_sym_GT2] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(2337), + [1803] = { + [sym_template_argument_list] = STATE(1020), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_COLON_COLON] = ACTIONS(5782), + [anon_sym_GT2] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(2335), [sym_comment] = ACTIONS(3), }, - [1806] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(2824), - [sym_logical_expression] = STATE(2824), - [sym_bitwise_expression] = STATE(2824), - [sym_cast_expression] = STATE(2824), - [sym_new_expression] = STATE(2824), + [1804] = { + [sym_template_function] = STATE(949), + [sym__expression] = STATE(949), + [sym_logical_expression] = STATE(949), + [sym_bitwise_expression] = STATE(949), + [sym_cast_expression] = STATE(949), + [sym_delete_expression] = STATE(949), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(949), + [sym_lambda_expression] = STATE(949), + [sym_char_literal] = STATE(949), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_type_qualifier] = STATE(952), + [sym_conditional_expression] = STATE(949), + [sym_equality_expression] = STATE(949), + [sym_relational_expression] = STATE(949), + [sym_sizeof_expression] = STATE(949), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(949), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(952), + [sym_concatenated_string] = STATE(949), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(949), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(949), + [sym_math_expression] = STATE(949), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(949), + [sym_raw_string_literal] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(1714), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(1714), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(5784), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1714), + [sym_nullptr] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(1738), + }, + [1805] = { + [sym_template_function] = STATE(2810), + [sym__expression] = STATE(2810), + [sym_logical_expression] = STATE(2810), + [sym_bitwise_expression] = STATE(2810), + [sym_cast_expression] = STATE(2810), + [sym_delete_expression] = STATE(2810), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2824), - [sym_char_literal] = STATE(2824), - [sym_template_function] = STATE(2824), - [sym_conditional_expression] = STATE(2824), - [sym_equality_expression] = STATE(2824), - [sym_relational_expression] = STATE(2824), - [sym_delete_expression] = STATE(2824), - [sym_sizeof_expression] = STATE(2824), - [sym_parenthesized_expression] = STATE(2824), - [sym_lambda_expression] = STATE(2824), - [sym_concatenated_string] = STATE(2824), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(2810), + [sym_lambda_expression] = STATE(2810), + [sym_char_literal] = STATE(2810), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(2810), + [sym_equality_expression] = STATE(2810), + [sym_relational_expression] = STATE(2810), + [sym_sizeof_expression] = STATE(2810), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(2824), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(2810), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(2810), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(2810), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2824), - [sym_math_expression] = STATE(2824), + [sym_shift_expression] = STATE(2810), + [sym_math_expression] = STATE(2810), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(5776), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(5778), - [sym_null] = ACTIONS(5778), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(5776), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(5778), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(5778), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(2810), + [sym_raw_string_literal] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(5788), + [sym_null] = ACTIONS(5788), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(5786), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(5788), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(5788), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), + }, + [1806] = { + [sym_template_argument_list] = STATE(1163), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_GT2] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(2335), + [sym_comment] = ACTIONS(3), }, [1807] = { - [anon_sym_COLON_COLON] = ACTIONS(5780), + [sym_parameter_list] = STATE(2812), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(5760), [sym_comment] = ACTIONS(3), }, [1808] = { - [sym_parameter_list] = STATE(2827), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(5745), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(5782), - [anon_sym_COMMA] = ACTIONS(5745), + [anon_sym_COLON_COLON] = ACTIONS(5792), [sym_comment] = ACTIONS(3), }, [1809] = { - [sym_template_argument_list] = STATE(1171), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_GT2] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(2337), + [sym_parameter_list] = STATE(2207), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(5760), [sym_comment] = ACTIONS(3), }, [1810] = { - [sym_parameter_list] = STATE(2218), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(5745), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(5745), + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(4954), }, [1811] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_LPAREN2] = ACTIONS(2168), + [anon_sym_mutable] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym__Atomic] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_constexpr] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_volatile] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_explicit] = ACTIONS(2173), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_inline] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2173), + [anon_sym_restrict] = ACTIONS(2173), + [sym_operator_name] = ACTIONS(2171), }, [1812] = { - [anon_sym_LPAREN2] = ACTIONS(2166), - [anon_sym_mutable] = ACTIONS(2171), - [anon_sym_register] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_constexpr] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_explicit] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2171), - [anon_sym_restrict] = ACTIONS(2171), - [sym_operator_name] = ACTIONS(2169), + [sym_storage_class_specifier] = STATE(1812), + [sym_type_qualifier] = STATE(1812), + [aux_sym__declaration_specifiers_repeat1] = STATE(1812), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1802), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_inline] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1797), + [anon_sym_restrict] = ACTIONS(1799), + [sym_operator_name] = ACTIONS(1795), }, [1813] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(1813), - [sym_storage_class_specifier] = STATE(1813), - [sym_type_qualifier] = STATE(1813), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1683), - [sym_operator_name] = ACTIONS(1679), - }, - [1814] = { - [anon_sym_LPAREN2] = ACTIONS(3743), - [anon_sym_mutable] = ACTIONS(3748), - [anon_sym_register] = ACTIONS(3748), - [anon_sym__Atomic] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3743), - [anon_sym_constexpr] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3748), - [anon_sym_static] = ACTIONS(3748), - [anon_sym_volatile] = ACTIONS(3748), - [anon_sym_STAR] = ACTIONS(3746), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3739), - [anon_sym_explicit] = ACTIONS(3748), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_inline] = ACTIONS(3748), - [sym_identifier] = ACTIONS(3748), - [anon_sym_restrict] = ACTIONS(3748), - [sym_operator_name] = ACTIONS(3746), - }, - [1815] = { - [sym_union_specifier] = STATE(2830), - [sym_macro_type_specifier] = STATE(2830), - [sym_class_specifier] = STATE(2830), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2830), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(2830), - [aux_sym_sized_type_specifier_repeat1] = STATE(2829), - [sym_struct_specifier] = STATE(2830), - [sym_enum_specifier] = STATE(2830), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(2830), - [anon_sym_unsigned] = ACTIONS(5784), + [sym_union_specifier] = STATE(2816), + [sym_macro_type_specifier] = STATE(2816), + [sym_class_specifier] = STATE(2816), + [aux_sym_sized_type_specifier_repeat1] = STATE(2815), + [sym_sized_type_specifier] = STATE(2816), + [sym__type_specifier] = STATE(2816), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(2816), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(2816), + [sym_struct_specifier] = STATE(2816), + [anon_sym_unsigned] = ACTIONS(5794), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(5786), - [anon_sym_signed] = ACTIONS(5784), + [sym_auto] = ACTIONS(5796), + [anon_sym_signed] = ACTIONS(5794), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(5784), + [anon_sym_long] = ACTIONS(5794), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(5788), + [anon_sym_typename] = ACTIONS(5798), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(5784), + [anon_sym_short] = ACTIONS(5794), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(5786), - }, - [1816] = { - [sym_virtual_specifier] = STATE(2831), - [aux_sym_function_declarator_repeat1] = STATE(2831), - [sym_trailing_return_type] = STATE(2831), - [sym_type_qualifier] = STATE(2831), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(5790), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(4011), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(3587), - [anon_sym_restrict] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(5796), }, - [1817] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(1813), - [sym_storage_class_specifier] = STATE(1813), - [sym_type_qualifier] = STATE(1813), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(3708), + [1814] = { + [sym_virtual_specifier] = STATE(2817), + [aux_sym_function_declarator_repeat1] = STATE(2817), + [sym_type_qualifier] = STATE(2817), + [sym_trailing_return_type] = STATE(2817), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(5800), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3708), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [sym_identifier] = ACTIONS(3710), - [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(4059), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(3602), + [anon_sym_restrict] = ACTIONS(1070), }, - [1818] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2832), - [sym_storage_class_specifier] = STATE(2832), - [sym_type_qualifier] = STATE(2832), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(11), + [1815] = { + [anon_sym_LPAREN2] = ACTIONS(3854), + [anon_sym_mutable] = ACTIONS(3859), + [anon_sym_register] = ACTIONS(3859), + [anon_sym__Atomic] = ACTIONS(3859), + [anon_sym_const] = ACTIONS(3859), + [anon_sym_extern] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(3859), + [anon_sym_volatile] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_explicit] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_inline] = ACTIONS(3859), + [sym_identifier] = ACTIONS(3859), + [anon_sym_restrict] = ACTIONS(3859), + [sym_operator_name] = ACTIONS(3857), }, - [1819] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2833), - [sym_storage_class_specifier] = STATE(2833), - [sym_type_qualifier] = STATE(2833), - [anon_sym_LPAREN2] = ACTIONS(1675), + [1816] = { + [sym_storage_class_specifier] = STATE(1812), + [sym_type_qualifier] = STATE(1812), + [aux_sym__declaration_specifiers_repeat1] = STATE(1812), + [anon_sym_LPAREN2] = ACTIONS(3895), [anon_sym_mutable] = ACTIONS(11), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(3895), [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(3895), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(3897), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [sym_identifier] = ACTIONS(3897), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(1675), + [sym_operator_name] = ACTIONS(3895), [anon_sym_restrict] = ACTIONS(11), }, - [1820] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1820), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(5792), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(5792), - [anon_sym_register] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(5792), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(5792), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), - [sym_operator_name] = ACTIONS(2077), - }, - [1821] = { - [anon_sym_DASH] = ACTIONS(5795), - [sym_raw_string_literal] = ACTIONS(5797), - [sym_true] = ACTIONS(5795), - [anon_sym_mutable] = ACTIONS(5795), - [sym_null] = ACTIONS(5795), - [anon_sym_break] = ACTIONS(5795), - [anon_sym_BANG] = ACTIONS(5797), - [anon_sym_sizeof] = ACTIONS(5795), - [anon_sym_volatile] = ACTIONS(5795), - [anon_sym_PLUS] = ACTIONS(5795), - [anon_sym_typedef] = ACTIONS(5795), - [anon_sym_switch] = ACTIONS(5795), - [anon_sym_explicit] = ACTIONS(5795), - [sym_identifier] = ACTIONS(5795), - [anon_sym_delete] = ACTIONS(5795), - [anon_sym_continue] = ACTIONS(5795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5795), - [anon_sym__Atomic] = ACTIONS(5795), - [sym_number_literal] = ACTIONS(5797), - [anon_sym_extern] = ACTIONS(5795), - [anon_sym_enum] = ACTIONS(5795), - [anon_sym_constexpr] = ACTIONS(5795), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5797), - [anon_sym_namespace] = ACTIONS(5795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5795), - [anon_sym_SQUOTE] = ACTIONS(5797), - [anon_sym_LBRACE] = ACTIONS(5797), - [anon_sym_DASH_DASH] = ACTIONS(5797), - [anon_sym_LPAREN2] = ACTIONS(5797), - [anon_sym_struct] = ACTIONS(5795), - [sym_auto] = ACTIONS(5795), - [anon_sym_signed] = ACTIONS(5795), - [anon_sym_long] = ACTIONS(5795), - [anon_sym_COLON_COLON] = ACTIONS(5797), - [anon_sym_using] = ACTIONS(5795), - [sym_preproc_directive] = ACTIONS(5795), - [aux_sym_preproc_if_token1] = ACTIONS(5795), - [anon_sym_AMP] = ACTIONS(5795), - [anon_sym_static] = ACTIONS(5795), - [anon_sym_RBRACE] = ACTIONS(5797), - [anon_sym_STAR] = ACTIONS(5797), - [anon_sym_union] = ACTIONS(5795), - [anon_sym_typename] = ACTIONS(5795), - [anon_sym_short] = ACTIONS(5795), - [anon_sym_new] = ACTIONS(5795), - [anon_sym_goto] = ACTIONS(5795), - [sym_operator_name] = ACTIONS(5797), - [anon_sym_while] = ACTIONS(5795), - [anon_sym_try] = ACTIONS(5795), - [anon_sym_for] = ACTIONS(5795), - [aux_sym_preproc_include_token1] = ACTIONS(5795), - [anon_sym_register] = ACTIONS(5795), - [anon_sym_DQUOTE] = ACTIONS(5797), - [anon_sym_const] = ACTIONS(5795), - [anon_sym_LBRACK] = ACTIONS(5795), - [anon_sym_class] = ACTIONS(5795), - [anon_sym_if] = ACTIONS(5795), - [sym_primitive_type] = ACTIONS(5795), - [sym_false] = ACTIONS(5795), - [sym_nullptr] = ACTIONS(5795), - [anon_sym_do] = ACTIONS(5795), - [anon_sym_template] = ACTIONS(5795), - [anon_sym_return] = ACTIONS(5795), - [anon_sym_TILDE] = ACTIONS(5797), - [anon_sym_SEMI] = ACTIONS(5797), - [ts_builtin_sym_end] = ACTIONS(5797), - [aux_sym_preproc_def_token1] = ACTIONS(5795), - [anon_sym_AMP_AMP] = ACTIONS(5797), - [anon_sym_inline] = ACTIONS(5795), - [anon_sym_PLUS_PLUS] = ACTIONS(5797), - [anon_sym_restrict] = ACTIONS(5795), - }, - [1822] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), + [1817] = { + [anon_sym_DASH] = ACTIONS(5802), + [sym_raw_string_literal] = ACTIONS(5804), + [sym_true] = ACTIONS(5802), + [anon_sym_mutable] = ACTIONS(5802), + [sym_null] = ACTIONS(5802), + [anon_sym_break] = ACTIONS(5802), + [anon_sym_BANG] = ACTIONS(5804), + [anon_sym_sizeof] = ACTIONS(5802), + [anon_sym_volatile] = ACTIONS(5802), + [anon_sym_PLUS] = ACTIONS(5802), + [anon_sym_typedef] = ACTIONS(5802), + [anon_sym_switch] = ACTIONS(5802), + [anon_sym_explicit] = ACTIONS(5802), + [sym_identifier] = ACTIONS(5802), + [anon_sym_delete] = ACTIONS(5802), + [anon_sym_continue] = ACTIONS(5802), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5802), + [anon_sym__Atomic] = ACTIONS(5802), + [sym_number_literal] = ACTIONS(5804), + [anon_sym_extern] = ACTIONS(5802), + [anon_sym_enum] = ACTIONS(5802), + [anon_sym_constexpr] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5804), + [anon_sym_namespace] = ACTIONS(5802), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5802), + [anon_sym_SQUOTE] = ACTIONS(5804), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_DASH_DASH] = ACTIONS(5804), + [anon_sym_LPAREN2] = ACTIONS(5804), + [anon_sym_struct] = ACTIONS(5802), + [sym_auto] = ACTIONS(5802), + [anon_sym_signed] = ACTIONS(5802), + [anon_sym_long] = ACTIONS(5802), + [anon_sym_COLON_COLON] = ACTIONS(5804), + [anon_sym_using] = ACTIONS(5802), + [sym_preproc_directive] = ACTIONS(5802), + [aux_sym_preproc_if_token1] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5802), + [anon_sym_static] = ACTIONS(5802), + [anon_sym_RBRACE] = ACTIONS(5804), + [anon_sym_STAR] = ACTIONS(5804), + [anon_sym_union] = ACTIONS(5802), + [anon_sym_typename] = ACTIONS(5802), + [anon_sym_short] = ACTIONS(5802), + [anon_sym_new] = ACTIONS(5802), + [anon_sym_goto] = ACTIONS(5802), + [sym_operator_name] = ACTIONS(5804), + [anon_sym_while] = ACTIONS(5802), + [anon_sym_try] = ACTIONS(5802), + [anon_sym_for] = ACTIONS(5802), + [aux_sym_preproc_include_token1] = ACTIONS(5802), + [anon_sym_register] = ACTIONS(5802), + [anon_sym_DQUOTE] = ACTIONS(5804), + [anon_sym_const] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_class] = ACTIONS(5802), + [anon_sym_if] = ACTIONS(5802), + [sym_primitive_type] = ACTIONS(5802), + [sym_false] = ACTIONS(5802), + [sym_nullptr] = ACTIONS(5802), + [anon_sym_do] = ACTIONS(5802), + [anon_sym_template] = ACTIONS(5802), + [anon_sym_return] = ACTIONS(5802), + [anon_sym_TILDE] = ACTIONS(5804), + [anon_sym_SEMI] = ACTIONS(5804), + [ts_builtin_sym_end] = ACTIONS(5804), + [aux_sym_preproc_def_token1] = ACTIONS(5802), + [anon_sym_AMP_AMP] = ACTIONS(5804), + [anon_sym_inline] = ACTIONS(5802), + [anon_sym_PLUS_PLUS] = ACTIONS(5804), + [anon_sym_restrict] = ACTIONS(5802), }, - [1823] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2834), - [sym_logical_expression] = STATE(2834), - [sym_bitwise_expression] = STATE(2834), - [sym_cast_expression] = STATE(2834), - [sym_new_expression] = STATE(2834), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(2834), - [sym_char_literal] = STATE(2834), - [sym_template_function] = STATE(2834), - [sym_conditional_expression] = STATE(2834), - [sym_equality_expression] = STATE(2834), - [sym_relational_expression] = STATE(2834), - [sym_delete_expression] = STATE(2834), - [sym_sizeof_expression] = STATE(2834), - [sym_parenthesized_expression] = STATE(2834), - [sym_lambda_expression] = STATE(2834), - [sym_concatenated_string] = STATE(2834), - [sym_string_literal] = STATE(300), + [1818] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(2834), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(2834), - [sym_math_expression] = STATE(2834), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(5799), - [anon_sym_DASH] = ACTIONS(480), - [sym_true] = ACTIONS(5801), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(5801), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5799), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(5801), - [sym_nullptr] = ACTIONS(5801), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1400), + [sym_raw_string_literal] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(2830), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2828), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(175), }, - [1824] = { - [sym_template_type] = STATE(239), + [1819] = { + [sym_template_function] = STATE(2818), + [sym__expression] = STATE(2818), + [sym_logical_expression] = STATE(2818), + [sym_bitwise_expression] = STATE(2818), + [sym_cast_expression] = STATE(2818), + [sym_delete_expression] = STATE(2818), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(2818), + [sym_lambda_expression] = STATE(2818), + [sym_char_literal] = STATE(2818), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2818), + [sym_equality_expression] = STATE(2818), + [sym_relational_expression] = STATE(2818), + [sym_sizeof_expression] = STATE(2818), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2818), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(2818), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2818), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(2818), + [sym_math_expression] = STATE(2818), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(2818), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(484), + [sym_true] = ACTIONS(5808), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(5808), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5806), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(5808), + [sym_nullptr] = ACTIONS(5808), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + }, + [1820] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(5803), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(5810), }, - [1825] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1821] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1826] = { - [anon_sym_RPAREN] = ACTIONS(5805), + [1822] = { + [anon_sym_RPAREN] = ACTIONS(5812), [sym_comment] = ACTIONS(3), }, - [1827] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2838), - [sym_logical_expression] = STATE(2838), - [sym_bitwise_expression] = STATE(2838), - [sym_cast_expression] = STATE(2838), - [sym_new_expression] = STATE(2838), - [sym_field_expression] = STATE(2838), - [sym_compound_literal_expression] = STATE(2838), - [sym_char_literal] = STATE(2838), - [sym_template_function] = STATE(2838), - [sym_conditional_expression] = STATE(2838), - [sym_equality_expression] = STATE(2838), - [sym_relational_expression] = STATE(2838), - [sym_delete_expression] = STATE(2838), - [sym_sizeof_expression] = STATE(2838), - [sym_parenthesized_expression] = STATE(2838), - [sym_lambda_expression] = STATE(2838), - [sym_concatenated_string] = STATE(2838), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2838), - [sym_assignment_expression] = STATE(2838), - [sym_pointer_expression] = STATE(2838), - [sym_shift_expression] = STATE(2838), - [sym_math_expression] = STATE(2838), - [sym_call_expression] = STATE(2838), - [sym_lambda_capture_specifier] = STATE(196), + [1823] = { + [sym_template_function] = STATE(2822), + [sym__expression] = STATE(2822), + [sym_logical_expression] = STATE(2822), + [sym_bitwise_expression] = STATE(2822), + [sym_cast_expression] = STATE(2822), + [sym_delete_expression] = STATE(2822), + [sym_field_expression] = STATE(2822), + [sym_compound_literal_expression] = STATE(2822), + [sym_lambda_expression] = STATE(2822), + [sym_char_literal] = STATE(2822), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2822), + [sym_equality_expression] = STATE(2822), + [sym_relational_expression] = STATE(2822), + [sym_sizeof_expression] = STATE(2822), + [sym_subscript_expression] = STATE(2822), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5807), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5809), - [sym_null] = ACTIONS(5809), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5807), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(5811), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5809), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_parenthesized_expression] = STATE(2822), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2822), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2822), + [sym_pointer_expression] = STATE(2822), + [sym_shift_expression] = STATE(2822), + [sym_math_expression] = STATE(2822), + [sym_call_expression] = STATE(2822), + [sym_new_expression] = STATE(2822), + [sym_raw_string_literal] = ACTIONS(5814), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5816), + [sym_null] = ACTIONS(5816), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5814), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(5818), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5816), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5816), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, - [1828] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(2839), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [1824] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2823), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1829] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [1825] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [1830] = { - [sym_union_specifier] = STATE(1502), - [sym_macro_type_specifier] = STATE(1502), - [sym_class_specifier] = STATE(1502), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1502), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1502), - [aux_sym_sized_type_specifier_repeat1] = STATE(1831), - [sym_struct_specifier] = STATE(1502), - [sym_enum_specifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1502), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2967), + [1826] = { + [sym_union_specifier] = STATE(1497), + [sym_macro_type_specifier] = STATE(1497), + [sym_class_specifier] = STATE(1497), + [aux_sym_sized_type_specifier_repeat1] = STATE(1827), + [sym_sized_type_specifier] = STATE(1497), + [sym__type_specifier] = STATE(1497), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1497), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1497), + [sym_struct_specifier] = STATE(1497), + [anon_sym_unsigned] = ACTIONS(3632), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(3632), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3632), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2969), }, - [1831] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2841), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(5819), - [anon_sym_long] = ACTIONS(5819), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(5819), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2991), - [anon_sym_unsigned] = ACTIONS(5819), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), + [1827] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2825), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(5826), + [anon_sym_long] = ACTIONS(5826), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(5826), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(2986), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(5826), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), }, - [1832] = { - [sym_initializer_list] = STATE(1522), - [sym_new_declarator] = STATE(1521), - [sym_argument_list] = STATE(1522), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(5821), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [1828] = { + [sym_new_declarator] = STATE(1514), + [sym_argument_list] = STATE(1515), + [sym_initializer_list] = STATE(1515), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(5828), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [1833] = { - [sym_union_specifier] = STATE(2843), - [sym_macro_type_specifier] = STATE(2843), - [sym_class_specifier] = STATE(2843), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(2843), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(2843), - [aux_sym_sized_type_specifier_repeat1] = STATE(1831), - [sym_struct_specifier] = STATE(2843), - [sym_enum_specifier] = STATE(2843), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(2843), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(5823), - [anon_sym_signed] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(3624), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(5823), + [1829] = { + [sym_union_specifier] = STATE(2827), + [sym_macro_type_specifier] = STATE(2827), + [sym_class_specifier] = STATE(2827), + [aux_sym_sized_type_specifier_repeat1] = STATE(1827), + [sym_sized_type_specifier] = STATE(2827), + [sym__type_specifier] = STATE(2827), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(2827), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(2827), + [sym_struct_specifier] = STATE(2827), + [anon_sym_unsigned] = ACTIONS(3632), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(5830), + [anon_sym_signed] = ACTIONS(3632), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3632), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(5830), }, - [1834] = { - [sym_template_type] = STATE(239), + [1830] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(5825), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(5832), }, - [1835] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(5829), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(5841), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [1831] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(5836), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(5846), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [1836] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2845), - [sym_logical_expression] = STATE(2845), - [sym_bitwise_expression] = STATE(2845), - [sym_cast_expression] = STATE(2845), - [sym_new_expression] = STATE(2845), - [sym_field_expression] = STATE(2845), - [sym_compound_literal_expression] = STATE(2845), - [sym_char_literal] = STATE(2845), - [sym_template_function] = STATE(2845), - [sym_conditional_expression] = STATE(2845), - [sym_equality_expression] = STATE(2845), - [sym_relational_expression] = STATE(2845), - [sym_delete_expression] = STATE(2845), - [sym_sizeof_expression] = STATE(2845), - [sym_parenthesized_expression] = STATE(2845), - [sym_lambda_expression] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2845), - [sym_assignment_expression] = STATE(2845), - [sym_pointer_expression] = STATE(2845), - [sym_shift_expression] = STATE(2845), - [sym_math_expression] = STATE(2845), - [sym_call_expression] = STATE(2845), - [sym_lambda_capture_specifier] = STATE(196), + [1832] = { + [sym_template_function] = STATE(2829), + [sym__expression] = STATE(2829), + [sym_logical_expression] = STATE(2829), + [sym_bitwise_expression] = STATE(2829), + [sym_cast_expression] = STATE(2829), + [sym_delete_expression] = STATE(2829), + [sym_field_expression] = STATE(2829), + [sym_compound_literal_expression] = STATE(2829), + [sym_lambda_expression] = STATE(2829), + [sym_char_literal] = STATE(2829), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2829), + [sym_equality_expression] = STATE(2829), + [sym_relational_expression] = STATE(2829), + [sym_sizeof_expression] = STATE(2829), + [sym_subscript_expression] = STATE(2829), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5843), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5845), - [sym_null] = ACTIONS(5845), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5843), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5845), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5845), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_parenthesized_expression] = STATE(2829), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2829), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2829), + [sym_pointer_expression] = STATE(2829), + [sym_shift_expression] = STATE(2829), + [sym_math_expression] = STATE(2829), + [sym_call_expression] = STATE(2829), + [sym_new_expression] = STATE(2829), + [sym_raw_string_literal] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5852), + [sym_null] = ACTIONS(5852), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5850), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5852), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5852), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + }, + [1833] = { + [sym_template_function] = STATE(2830), + [sym__expression] = STATE(2830), + [sym_logical_expression] = STATE(2830), + [sym_bitwise_expression] = STATE(2830), + [sym_cast_expression] = STATE(2830), + [sym_delete_expression] = STATE(2830), + [sym_field_expression] = STATE(2830), + [sym_compound_literal_expression] = STATE(2830), + [sym_lambda_expression] = STATE(2830), + [sym_char_literal] = STATE(2830), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2830), + [sym_equality_expression] = STATE(2830), + [sym_relational_expression] = STATE(2830), + [sym_sizeof_expression] = STATE(2830), + [sym_subscript_expression] = STATE(2830), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2830), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2830), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2830), + [sym_pointer_expression] = STATE(2830), + [sym_shift_expression] = STATE(2830), + [sym_math_expression] = STATE(2830), + [sym_call_expression] = STATE(2830), + [sym_new_expression] = STATE(2830), + [sym_raw_string_literal] = ACTIONS(5854), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5856), + [sym_null] = ACTIONS(5856), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5854), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5856), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5856), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + }, + [1834] = { + [sym_template_function] = STATE(2831), + [sym__expression] = STATE(2831), + [sym_logical_expression] = STATE(2831), + [sym_bitwise_expression] = STATE(2831), + [sym_cast_expression] = STATE(2831), + [sym_delete_expression] = STATE(2831), + [sym_field_expression] = STATE(2831), + [sym_compound_literal_expression] = STATE(2831), + [sym_lambda_expression] = STATE(2831), + [sym_char_literal] = STATE(2831), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2831), + [sym_equality_expression] = STATE(2831), + [sym_relational_expression] = STATE(2831), + [sym_sizeof_expression] = STATE(2831), + [sym_subscript_expression] = STATE(2831), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2831), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2831), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2831), + [sym_pointer_expression] = STATE(2831), + [sym_shift_expression] = STATE(2831), + [sym_math_expression] = STATE(2831), + [sym_call_expression] = STATE(2831), + [sym_new_expression] = STATE(2831), + [sym_raw_string_literal] = ACTIONS(5858), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5860), + [sym_null] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5858), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5860), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5860), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + }, + [1835] = { + [sym_template_function] = STATE(2832), + [sym__expression] = STATE(2832), + [sym_logical_expression] = STATE(2832), + [sym_bitwise_expression] = STATE(2832), + [sym_cast_expression] = STATE(2832), + [sym_delete_expression] = STATE(2832), + [sym_field_expression] = STATE(2832), + [sym_compound_literal_expression] = STATE(2832), + [sym_lambda_expression] = STATE(2832), + [sym_char_literal] = STATE(2832), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2832), + [sym_equality_expression] = STATE(2832), + [sym_relational_expression] = STATE(2832), + [sym_sizeof_expression] = STATE(2832), + [sym_subscript_expression] = STATE(2832), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2832), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2832), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2832), + [sym_pointer_expression] = STATE(2832), + [sym_shift_expression] = STATE(2832), + [sym_math_expression] = STATE(2832), + [sym_call_expression] = STATE(2832), + [sym_new_expression] = STATE(2832), + [sym_raw_string_literal] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5864), + [sym_null] = ACTIONS(5864), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5862), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5864), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5864), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + }, + [1836] = { + [sym_template_function] = STATE(2833), + [sym__expression] = STATE(2833), + [sym_logical_expression] = STATE(2833), + [sym_bitwise_expression] = STATE(2833), + [sym_cast_expression] = STATE(2833), + [sym_delete_expression] = STATE(2833), + [sym_field_expression] = STATE(2833), + [sym_compound_literal_expression] = STATE(2833), + [sym_lambda_expression] = STATE(2833), + [sym_char_literal] = STATE(2833), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2833), + [sym_equality_expression] = STATE(2833), + [sym_relational_expression] = STATE(2833), + [sym_sizeof_expression] = STATE(2833), + [sym_subscript_expression] = STATE(2833), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2833), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2833), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2833), + [sym_pointer_expression] = STATE(2833), + [sym_shift_expression] = STATE(2833), + [sym_math_expression] = STATE(2833), + [sym_call_expression] = STATE(2833), + [sym_new_expression] = STATE(2833), + [sym_raw_string_literal] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5868), + [sym_null] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5866), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5868), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5868), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, [1837] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2846), - [sym_logical_expression] = STATE(2846), - [sym_bitwise_expression] = STATE(2846), - [sym_cast_expression] = STATE(2846), - [sym_new_expression] = STATE(2846), - [sym_field_expression] = STATE(2846), - [sym_compound_literal_expression] = STATE(2846), - [sym_char_literal] = STATE(2846), - [sym_template_function] = STATE(2846), - [sym_conditional_expression] = STATE(2846), - [sym_equality_expression] = STATE(2846), - [sym_relational_expression] = STATE(2846), - [sym_delete_expression] = STATE(2846), - [sym_sizeof_expression] = STATE(2846), - [sym_parenthesized_expression] = STATE(2846), - [sym_lambda_expression] = STATE(2846), - [sym_concatenated_string] = STATE(2846), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2846), - [sym_assignment_expression] = STATE(2846), - [sym_pointer_expression] = STATE(2846), - [sym_shift_expression] = STATE(2846), - [sym_math_expression] = STATE(2846), - [sym_call_expression] = STATE(2846), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(1541), + [sym__expression] = STATE(1541), + [sym_logical_expression] = STATE(1541), + [sym_bitwise_expression] = STATE(1541), + [sym_cast_expression] = STATE(1541), + [sym_delete_expression] = STATE(1541), + [sym_field_expression] = STATE(1541), + [sym_compound_literal_expression] = STATE(1541), + [sym_lambda_expression] = STATE(1541), + [sym_char_literal] = STATE(1541), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1541), + [sym_equality_expression] = STATE(1541), + [sym_relational_expression] = STATE(1541), + [sym_sizeof_expression] = STATE(1541), + [sym_subscript_expression] = STATE(1541), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5847), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5849), - [sym_null] = ACTIONS(5849), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5847), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5849), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5849), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_parenthesized_expression] = STATE(1541), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(1541), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1541), + [sym_pointer_expression] = STATE(1541), + [sym_shift_expression] = STATE(1541), + [sym_math_expression] = STATE(1541), + [sym_call_expression] = STATE(1541), + [sym_new_expression] = STATE(1541), + [sym_raw_string_literal] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, [1838] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2847), - [sym_logical_expression] = STATE(2847), - [sym_bitwise_expression] = STATE(2847), - [sym_cast_expression] = STATE(2847), - [sym_new_expression] = STATE(2847), - [sym_field_expression] = STATE(2847), - [sym_compound_literal_expression] = STATE(2847), - [sym_char_literal] = STATE(2847), - [sym_template_function] = STATE(2847), - [sym_conditional_expression] = STATE(2847), - [sym_equality_expression] = STATE(2847), - [sym_relational_expression] = STATE(2847), - [sym_delete_expression] = STATE(2847), - [sym_sizeof_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), - [sym_lambda_expression] = STATE(2847), - [sym_concatenated_string] = STATE(2847), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2847), - [sym_assignment_expression] = STATE(2847), - [sym_pointer_expression] = STATE(2847), - [sym_shift_expression] = STATE(2847), - [sym_math_expression] = STATE(2847), - [sym_call_expression] = STATE(2847), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(2834), + [sym__expression] = STATE(2834), + [sym_logical_expression] = STATE(2834), + [sym_bitwise_expression] = STATE(2834), + [sym_cast_expression] = STATE(2834), + [sym_delete_expression] = STATE(2834), + [sym_field_expression] = STATE(2834), + [sym_compound_literal_expression] = STATE(2834), + [sym_lambda_expression] = STATE(2834), + [sym_char_literal] = STATE(2834), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2834), + [sym_equality_expression] = STATE(2834), + [sym_relational_expression] = STATE(2834), + [sym_sizeof_expression] = STATE(2834), + [sym_subscript_expression] = STATE(2834), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5851), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5853), - [sym_null] = ACTIONS(5853), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5851), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5853), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5853), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_parenthesized_expression] = STATE(2834), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2834), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2834), + [sym_pointer_expression] = STATE(2834), + [sym_shift_expression] = STATE(2834), + [sym_math_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_new_expression] = STATE(2834), + [sym_raw_string_literal] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5872), + [sym_null] = ACTIONS(5872), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5870), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5872), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5872), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, [1839] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2848), - [sym_logical_expression] = STATE(2848), - [sym_bitwise_expression] = STATE(2848), - [sym_cast_expression] = STATE(2848), - [sym_new_expression] = STATE(2848), - [sym_field_expression] = STATE(2848), - [sym_compound_literal_expression] = STATE(2848), - [sym_char_literal] = STATE(2848), - [sym_template_function] = STATE(2848), - [sym_conditional_expression] = STATE(2848), - [sym_equality_expression] = STATE(2848), - [sym_relational_expression] = STATE(2848), - [sym_delete_expression] = STATE(2848), - [sym_sizeof_expression] = STATE(2848), - [sym_parenthesized_expression] = STATE(2848), - [sym_lambda_expression] = STATE(2848), - [sym_concatenated_string] = STATE(2848), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2848), - [sym_assignment_expression] = STATE(2848), - [sym_pointer_expression] = STATE(2848), - [sym_shift_expression] = STATE(2848), - [sym_math_expression] = STATE(2848), - [sym_call_expression] = STATE(2848), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(2835), + [sym__expression] = STATE(2835), + [sym_logical_expression] = STATE(2835), + [sym_bitwise_expression] = STATE(2835), + [sym_cast_expression] = STATE(2835), + [sym_delete_expression] = STATE(2835), + [sym_field_expression] = STATE(2835), + [sym_compound_literal_expression] = STATE(2835), + [sym_lambda_expression] = STATE(2835), + [sym_char_literal] = STATE(2835), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2835), + [sym_equality_expression] = STATE(2835), + [sym_relational_expression] = STATE(2835), + [sym_sizeof_expression] = STATE(2835), + [sym_subscript_expression] = STATE(2835), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5855), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5857), - [sym_null] = ACTIONS(5857), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5855), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5857), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5857), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_parenthesized_expression] = STATE(2835), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2835), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2835), + [sym_pointer_expression] = STATE(2835), + [sym_shift_expression] = STATE(2835), + [sym_math_expression] = STATE(2835), + [sym_call_expression] = STATE(2835), + [sym_new_expression] = STATE(2835), + [sym_raw_string_literal] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5876), + [sym_null] = ACTIONS(5876), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5874), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5876), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5876), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, [1840] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2849), - [sym_logical_expression] = STATE(2849), - [sym_bitwise_expression] = STATE(2849), - [sym_cast_expression] = STATE(2849), - [sym_new_expression] = STATE(2849), - [sym_field_expression] = STATE(2849), - [sym_compound_literal_expression] = STATE(2849), - [sym_char_literal] = STATE(2849), - [sym_template_function] = STATE(2849), - [sym_conditional_expression] = STATE(2849), - [sym_equality_expression] = STATE(2849), - [sym_relational_expression] = STATE(2849), - [sym_delete_expression] = STATE(2849), - [sym_sizeof_expression] = STATE(2849), - [sym_parenthesized_expression] = STATE(2849), - [sym_lambda_expression] = STATE(2849), - [sym_concatenated_string] = STATE(2849), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2849), - [sym_assignment_expression] = STATE(2849), - [sym_pointer_expression] = STATE(2849), - [sym_shift_expression] = STATE(2849), - [sym_math_expression] = STATE(2849), - [sym_call_expression] = STATE(2849), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(2836), + [sym__expression] = STATE(2836), + [sym_logical_expression] = STATE(2836), + [sym_bitwise_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [sym_delete_expression] = STATE(2836), + [sym_field_expression] = STATE(2836), + [sym_compound_literal_expression] = STATE(2836), + [sym_lambda_expression] = STATE(2836), + [sym_char_literal] = STATE(2836), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2836), + [sym_equality_expression] = STATE(2836), + [sym_relational_expression] = STATE(2836), + [sym_sizeof_expression] = STATE(2836), + [sym_subscript_expression] = STATE(2836), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5859), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5861), - [sym_null] = ACTIONS(5861), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5859), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5861), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5861), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_parenthesized_expression] = STATE(2836), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2836), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2836), + [sym_pointer_expression] = STATE(2836), + [sym_shift_expression] = STATE(2836), + [sym_math_expression] = STATE(2836), + [sym_call_expression] = STATE(2836), + [sym_new_expression] = STATE(2836), + [sym_raw_string_literal] = ACTIONS(5878), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5880), + [sym_null] = ACTIONS(5880), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5878), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5880), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5880), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, [1841] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1548), - [sym_logical_expression] = STATE(1548), - [sym_bitwise_expression] = STATE(1548), - [sym_cast_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_field_expression] = STATE(1548), - [sym_compound_literal_expression] = STATE(1548), - [sym_char_literal] = STATE(1548), - [sym_template_function] = STATE(1548), - [sym_conditional_expression] = STATE(1548), - [sym_equality_expression] = STATE(1548), - [sym_relational_expression] = STATE(1548), - [sym_delete_expression] = STATE(1548), - [sym_sizeof_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_lambda_expression] = STATE(1548), - [sym_concatenated_string] = STATE(1548), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1548), - [sym_assignment_expression] = STATE(1548), - [sym_pointer_expression] = STATE(1548), - [sym_shift_expression] = STATE(1548), - [sym_math_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(3079), - [sym_null] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_template_function] = STATE(2837), + [sym__expression] = STATE(2837), + [sym_logical_expression] = STATE(2837), + [sym_bitwise_expression] = STATE(2837), + [sym_cast_expression] = STATE(2837), + [sym_delete_expression] = STATE(2837), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2837), + [sym_lambda_expression] = STATE(2837), + [sym_char_literal] = STATE(2837), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2837), + [sym_equality_expression] = STATE(2837), + [sym_relational_expression] = STATE(2837), + [sym_sizeof_expression] = STATE(2837), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2837), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2837), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2837), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2837), + [sym_math_expression] = STATE(2837), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2837), + [sym_raw_string_literal] = ACTIONS(5882), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(5884), + [sym_null] = ACTIONS(5884), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5882), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(5884), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(5884), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, [1842] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2850), - [sym_logical_expression] = STATE(2850), - [sym_bitwise_expression] = STATE(2850), - [sym_cast_expression] = STATE(2850), - [sym_new_expression] = STATE(2850), - [sym_field_expression] = STATE(2850), - [sym_compound_literal_expression] = STATE(2850), - [sym_char_literal] = STATE(2850), - [sym_template_function] = STATE(2850), - [sym_conditional_expression] = STATE(2850), - [sym_equality_expression] = STATE(2850), - [sym_relational_expression] = STATE(2850), - [sym_delete_expression] = STATE(2850), - [sym_sizeof_expression] = STATE(2850), - [sym_parenthesized_expression] = STATE(2850), - [sym_lambda_expression] = STATE(2850), - [sym_concatenated_string] = STATE(2850), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2850), - [sym_assignment_expression] = STATE(2850), - [sym_pointer_expression] = STATE(2850), - [sym_shift_expression] = STATE(2850), - [sym_math_expression] = STATE(2850), - [sym_call_expression] = STATE(2850), - [sym_lambda_capture_specifier] = STATE(196), + [sym_template_function] = STATE(2838), + [sym__expression] = STATE(2838), + [sym_logical_expression] = STATE(2838), + [sym_bitwise_expression] = STATE(2838), + [sym_cast_expression] = STATE(2838), + [sym_delete_expression] = STATE(2838), + [sym_field_expression] = STATE(2838), + [sym_compound_literal_expression] = STATE(2838), + [sym_lambda_expression] = STATE(2838), + [sym_char_literal] = STATE(2838), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2838), + [sym_equality_expression] = STATE(2838), + [sym_relational_expression] = STATE(2838), + [sym_sizeof_expression] = STATE(2838), + [sym_subscript_expression] = STATE(2838), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5863), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5865), - [sym_null] = ACTIONS(5865), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5863), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5865), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5865), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_parenthesized_expression] = STATE(2838), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(2838), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2838), + [sym_pointer_expression] = STATE(2838), + [sym_shift_expression] = STATE(2838), + [sym_math_expression] = STATE(2838), + [sym_call_expression] = STATE(2838), + [sym_new_expression] = STATE(2838), + [sym_raw_string_literal] = ACTIONS(5886), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5888), + [sym_null] = ACTIONS(5888), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5886), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5888), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5888), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, [1843] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2851), - [sym_logical_expression] = STATE(2851), - [sym_bitwise_expression] = STATE(2851), - [sym_cast_expression] = STATE(2851), - [sym_new_expression] = STATE(2851), - [sym_field_expression] = STATE(2851), - [sym_compound_literal_expression] = STATE(2851), - [sym_char_literal] = STATE(2851), - [sym_template_function] = STATE(2851), - [sym_conditional_expression] = STATE(2851), - [sym_equality_expression] = STATE(2851), - [sym_relational_expression] = STATE(2851), - [sym_delete_expression] = STATE(2851), - [sym_sizeof_expression] = STATE(2851), - [sym_parenthesized_expression] = STATE(2851), - [sym_lambda_expression] = STATE(2851), - [sym_concatenated_string] = STATE(2851), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2851), - [sym_assignment_expression] = STATE(2851), - [sym_pointer_expression] = STATE(2851), - [sym_shift_expression] = STATE(2851), - [sym_math_expression] = STATE(2851), - [sym_call_expression] = STATE(2851), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5867), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5869), - [sym_null] = ACTIONS(5869), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5867), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5869), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5869), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_string_literal] = STATE(2839), + [aux_sym_concatenated_string_repeat1] = STATE(2839), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, [1844] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2852), - [sym_logical_expression] = STATE(2852), - [sym_bitwise_expression] = STATE(2852), - [sym_cast_expression] = STATE(2852), - [sym_new_expression] = STATE(2852), - [sym_field_expression] = STATE(2852), - [sym_compound_literal_expression] = STATE(2852), - [sym_char_literal] = STATE(2852), - [sym_template_function] = STATE(2852), - [sym_conditional_expression] = STATE(2852), - [sym_equality_expression] = STATE(2852), - [sym_relational_expression] = STATE(2852), - [sym_delete_expression] = STATE(2852), - [sym_sizeof_expression] = STATE(2852), - [sym_parenthesized_expression] = STATE(2852), - [sym_lambda_expression] = STATE(2852), - [sym_concatenated_string] = STATE(2852), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2852), - [sym_assignment_expression] = STATE(2852), - [sym_pointer_expression] = STATE(2852), - [sym_shift_expression] = STATE(2852), - [sym_math_expression] = STATE(2852), - [sym_call_expression] = STATE(2852), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5871), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5873), - [sym_null] = ACTIONS(5873), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5871), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5873), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5873), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(5890), + [sym_comment] = ACTIONS(3), }, [1845] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2853), - [sym_logical_expression] = STATE(2853), - [sym_bitwise_expression] = STATE(2853), - [sym_cast_expression] = STATE(2853), - [sym_new_expression] = STATE(2853), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2853), - [sym_char_literal] = STATE(2853), - [sym_template_function] = STATE(2853), - [sym_conditional_expression] = STATE(2853), - [sym_equality_expression] = STATE(2853), - [sym_relational_expression] = STATE(2853), - [sym_delete_expression] = STATE(2853), - [sym_sizeof_expression] = STATE(2853), - [sym_parenthesized_expression] = STATE(2853), - [sym_lambda_expression] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2853), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2853), - [sym_math_expression] = STATE(2853), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(5875), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(5877), - [sym_null] = ACTIONS(5877), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(5875), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(5877), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(5877), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1846] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2854), - [sym_logical_expression] = STATE(2854), - [sym_bitwise_expression] = STATE(2854), - [sym_cast_expression] = STATE(2854), - [sym_new_expression] = STATE(2854), - [sym_field_expression] = STATE(2854), - [sym_compound_literal_expression] = STATE(2854), - [sym_char_literal] = STATE(2854), - [sym_template_function] = STATE(2854), - [sym_conditional_expression] = STATE(2854), - [sym_equality_expression] = STATE(2854), - [sym_relational_expression] = STATE(2854), - [sym_delete_expression] = STATE(2854), - [sym_sizeof_expression] = STATE(2854), - [sym_parenthesized_expression] = STATE(2854), - [sym_lambda_expression] = STATE(2854), - [sym_concatenated_string] = STATE(2854), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2854), - [sym_assignment_expression] = STATE(2854), - [sym_pointer_expression] = STATE(2854), - [sym_shift_expression] = STATE(2854), - [sym_math_expression] = STATE(2854), - [sym_call_expression] = STATE(2854), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5879), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5881), - [sym_null] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5879), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5881), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5881), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [aux_sym_sized_type_specifier_repeat1] = STATE(1846), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(5892), + [anon_sym_long] = ACTIONS(5892), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(5892), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(5892), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), }, [1847] = { - [sym_string_literal] = STATE(2855), - [aux_sym_concatenated_string_repeat1] = STATE(2855), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [sym_template_function] = STATE(2841), + [sym__expression] = STATE(2841), + [sym_logical_expression] = STATE(2841), + [sym_bitwise_expression] = STATE(2841), + [sym_cast_expression] = STATE(2841), + [sym_delete_expression] = STATE(2841), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2841), + [sym_lambda_expression] = STATE(2841), + [sym_char_literal] = STATE(2841), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2841), + [sym_equality_expression] = STATE(2841), + [sym_relational_expression] = STATE(2841), + [sym_sizeof_expression] = STATE(2841), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(2841), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2841), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2841), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2841), + [sym_math_expression] = STATE(2841), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2841), + [sym_raw_string_literal] = ACTIONS(5895), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(5897), + [sym_null] = ACTIONS(5897), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(5895), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(5897), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(5897), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, [1848] = { - [anon_sym_RPAREN] = ACTIONS(5883), - [sym_comment] = ACTIONS(3), + [sym_new_declarator] = STATE(1566), + [sym_argument_list] = STATE(1565), + [sym_initializer_list] = STATE(1565), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, [1849] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1850] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1850), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(5885), - [anon_sym_long] = ACTIONS(5885), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(5885), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(5885), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1851] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2857), - [sym_logical_expression] = STATE(2857), - [sym_bitwise_expression] = STATE(2857), - [sym_cast_expression] = STATE(2857), - [sym_new_expression] = STATE(2857), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2857), - [sym_char_literal] = STATE(2857), - [sym_template_function] = STATE(2857), - [sym_conditional_expression] = STATE(2857), - [sym_equality_expression] = STATE(2857), - [sym_relational_expression] = STATE(2857), - [sym_delete_expression] = STATE(2857), - [sym_sizeof_expression] = STATE(2857), - [sym_parenthesized_expression] = STATE(2857), - [sym_lambda_expression] = STATE(2857), - [sym_concatenated_string] = STATE(2857), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2857), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2857), - [sym_math_expression] = STATE(2857), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(5888), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(5890), - [sym_null] = ACTIONS(5890), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5888), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(5890), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5890), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1852] = { - [sym_initializer_list] = STATE(1570), - [sym_new_declarator] = STATE(1571), - [sym_argument_list] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1853] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1854] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1855] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1856] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1857] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(5899), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1858] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [1859] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_string_literal] = STATE(1859), + [aux_sym_concatenated_string_repeat1] = STATE(1859), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3890), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, [1860] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(5901), + [sym_raw_string_literal] = ACTIONS(5903), + [sym_true] = ACTIONS(5901), + [anon_sym_mutable] = ACTIONS(5901), + [sym_null] = ACTIONS(5901), + [anon_sym_break] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5903), + [anon_sym_sizeof] = ACTIONS(5901), + [anon_sym_volatile] = ACTIONS(5901), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_typedef] = ACTIONS(5901), + [anon_sym_switch] = ACTIONS(5901), + [anon_sym_explicit] = ACTIONS(5901), + [sym_identifier] = ACTIONS(5901), + [anon_sym_delete] = ACTIONS(5901), + [anon_sym_continue] = ACTIONS(5901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5901), + [anon_sym__Atomic] = ACTIONS(5901), + [sym_number_literal] = ACTIONS(5903), + [anon_sym_extern] = ACTIONS(5901), + [anon_sym_enum] = ACTIONS(5901), + [anon_sym_constexpr] = ACTIONS(5901), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5903), + [anon_sym_namespace] = ACTIONS(5901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5903), + [anon_sym_LBRACE] = ACTIONS(5903), + [anon_sym_DASH_DASH] = ACTIONS(5903), + [anon_sym_LPAREN2] = ACTIONS(5903), + [anon_sym_struct] = ACTIONS(5901), + [sym_auto] = ACTIONS(5901), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_COLON_COLON] = ACTIONS(5903), + [anon_sym_using] = ACTIONS(5901), + [sym_preproc_directive] = ACTIONS(5901), + [aux_sym_preproc_if_token1] = ACTIONS(5901), + [anon_sym_AMP] = ACTIONS(5901), + [anon_sym_static] = ACTIONS(5901), + [anon_sym_RBRACE] = ACTIONS(5903), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_union] = ACTIONS(5901), + [anon_sym_typename] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_new] = ACTIONS(5901), + [anon_sym_goto] = ACTIONS(5901), + [sym_operator_name] = ACTIONS(5903), + [anon_sym_while] = ACTIONS(5901), + [anon_sym_try] = ACTIONS(5901), + [anon_sym_for] = ACTIONS(5901), + [aux_sym_preproc_include_token1] = ACTIONS(5901), + [anon_sym_register] = ACTIONS(5901), + [anon_sym_DQUOTE] = ACTIONS(5903), + [anon_sym_const] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5901), + [anon_sym_class] = ACTIONS(5901), + [anon_sym_if] = ACTIONS(5901), + [sym_primitive_type] = ACTIONS(5901), + [sym_false] = ACTIONS(5901), + [sym_nullptr] = ACTIONS(5901), + [anon_sym_do] = ACTIONS(5901), + [anon_sym_template] = ACTIONS(5901), + [anon_sym_return] = ACTIONS(5901), + [anon_sym_TILDE] = ACTIONS(5903), + [anon_sym_SEMI] = ACTIONS(5903), + [ts_builtin_sym_end] = ACTIONS(5903), + [aux_sym_preproc_def_token1] = ACTIONS(5901), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_inline] = ACTIONS(5901), + [anon_sym_PLUS_PLUS] = ACTIONS(5903), + [anon_sym_restrict] = ACTIONS(5901), }, [1861] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(5892), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [aux_sym_preproc_params_repeat1] = STATE(2845), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(5907), + [sym_comment] = ACTIONS(3), }, [1862] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(244), + [anon_sym_LF] = ACTIONS(5909), + [sym_preproc_arg] = ACTIONS(5911), }, [1863] = { - [sym_string_literal] = STATE(1863), - [aux_sym_concatenated_string_repeat1] = STATE(1863), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(5913), + [sym_raw_string_literal] = ACTIONS(5915), + [sym_true] = ACTIONS(5913), + [anon_sym_mutable] = ACTIONS(5913), + [sym_null] = ACTIONS(5913), + [anon_sym_break] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_sizeof] = ACTIONS(5913), + [anon_sym_volatile] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_typedef] = ACTIONS(5913), + [anon_sym_switch] = ACTIONS(5913), + [anon_sym_explicit] = ACTIONS(5913), + [sym_identifier] = ACTIONS(5913), + [anon_sym_delete] = ACTIONS(5913), + [anon_sym_continue] = ACTIONS(5913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5913), + [anon_sym__Atomic] = ACTIONS(5913), + [sym_number_literal] = ACTIONS(5915), + [anon_sym_extern] = ACTIONS(5913), + [anon_sym_enum] = ACTIONS(5913), + [anon_sym_constexpr] = ACTIONS(5913), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5915), + [anon_sym_namespace] = ACTIONS(5913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5913), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_LBRACE] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5915), + [anon_sym_LPAREN2] = ACTIONS(5915), + [anon_sym_struct] = ACTIONS(5913), + [sym_auto] = ACTIONS(5913), + [anon_sym_signed] = ACTIONS(5913), + [anon_sym_long] = ACTIONS(5913), + [anon_sym_COLON_COLON] = ACTIONS(5915), + [anon_sym_using] = ACTIONS(5913), + [sym_preproc_directive] = ACTIONS(5913), + [aux_sym_preproc_if_token1] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_static] = ACTIONS(5913), + [anon_sym_RBRACE] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_union] = ACTIONS(5913), + [anon_sym_typename] = ACTIONS(5913), + [anon_sym_short] = ACTIONS(5913), + [anon_sym_new] = ACTIONS(5913), + [anon_sym_goto] = ACTIONS(5913), + [sym_operator_name] = ACTIONS(5915), + [anon_sym_while] = ACTIONS(5913), + [anon_sym_try] = ACTIONS(5913), + [anon_sym_for] = ACTIONS(5913), + [aux_sym_preproc_include_token1] = ACTIONS(5913), + [anon_sym_register] = ACTIONS(5913), + [anon_sym_DQUOTE] = ACTIONS(5915), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_class] = ACTIONS(5913), + [anon_sym_if] = ACTIONS(5913), + [sym_primitive_type] = ACTIONS(5913), + [sym_false] = ACTIONS(5913), + [sym_nullptr] = ACTIONS(5913), + [anon_sym_do] = ACTIONS(5913), + [anon_sym_template] = ACTIONS(5913), + [anon_sym_return] = ACTIONS(5913), + [anon_sym_TILDE] = ACTIONS(5915), + [anon_sym_SEMI] = ACTIONS(5915), + [ts_builtin_sym_end] = ACTIONS(5915), + [aux_sym_preproc_def_token1] = ACTIONS(5913), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_inline] = ACTIONS(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5915), + [anon_sym_restrict] = ACTIONS(5913), }, [1864] = { - [anon_sym_DASH] = ACTIONS(5894), - [sym_raw_string_literal] = ACTIONS(5896), - [sym_true] = ACTIONS(5894), - [anon_sym_mutable] = ACTIONS(5894), - [sym_null] = ACTIONS(5894), - [anon_sym_break] = ACTIONS(5894), - [anon_sym_BANG] = ACTIONS(5896), - [anon_sym_sizeof] = ACTIONS(5894), - [anon_sym_volatile] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5894), - [anon_sym_typedef] = ACTIONS(5894), - [anon_sym_switch] = ACTIONS(5894), - [anon_sym_explicit] = ACTIONS(5894), - [sym_identifier] = ACTIONS(5894), - [anon_sym_delete] = ACTIONS(5894), - [anon_sym_continue] = ACTIONS(5894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5894), - [anon_sym__Atomic] = ACTIONS(5894), - [sym_number_literal] = ACTIONS(5896), - [anon_sym_extern] = ACTIONS(5894), - [anon_sym_enum] = ACTIONS(5894), - [anon_sym_constexpr] = ACTIONS(5894), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5896), - [anon_sym_namespace] = ACTIONS(5894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5894), - [anon_sym_SQUOTE] = ACTIONS(5896), - [anon_sym_LBRACE] = ACTIONS(5896), - [anon_sym_DASH_DASH] = ACTIONS(5896), - [anon_sym_LPAREN2] = ACTIONS(5896), - [anon_sym_struct] = ACTIONS(5894), - [sym_auto] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(5894), - [anon_sym_long] = ACTIONS(5894), - [anon_sym_COLON_COLON] = ACTIONS(5896), - [anon_sym_using] = ACTIONS(5894), - [sym_preproc_directive] = ACTIONS(5894), - [aux_sym_preproc_if_token1] = ACTIONS(5894), - [anon_sym_AMP] = ACTIONS(5894), - [anon_sym_static] = ACTIONS(5894), - [anon_sym_RBRACE] = ACTIONS(5896), - [anon_sym_STAR] = ACTIONS(5896), - [anon_sym_union] = ACTIONS(5894), - [anon_sym_typename] = ACTIONS(5894), - [anon_sym_short] = ACTIONS(5894), - [anon_sym_new] = ACTIONS(5894), - [anon_sym_goto] = ACTIONS(5894), - [sym_operator_name] = ACTIONS(5896), - [anon_sym_while] = ACTIONS(5894), - [anon_sym_try] = ACTIONS(5894), - [anon_sym_for] = ACTIONS(5894), - [aux_sym_preproc_include_token1] = ACTIONS(5894), - [anon_sym_register] = ACTIONS(5894), - [anon_sym_DQUOTE] = ACTIONS(5896), - [anon_sym_const] = ACTIONS(5894), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_class] = ACTIONS(5894), - [anon_sym_if] = ACTIONS(5894), - [sym_primitive_type] = ACTIONS(5894), - [sym_false] = ACTIONS(5894), - [sym_nullptr] = ACTIONS(5894), - [anon_sym_do] = ACTIONS(5894), - [anon_sym_template] = ACTIONS(5894), - [anon_sym_return] = ACTIONS(5894), - [anon_sym_TILDE] = ACTIONS(5896), - [anon_sym_SEMI] = ACTIONS(5896), - [ts_builtin_sym_end] = ACTIONS(5896), - [aux_sym_preproc_def_token1] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5896), - [anon_sym_inline] = ACTIONS(5894), - [anon_sym_PLUS_PLUS] = ACTIONS(5896), - [anon_sym_restrict] = ACTIONS(5894), + [anon_sym_LF] = ACTIONS(5917), + [sym_comment] = ACTIONS(244), }, [1865] = { - [aux_sym_preproc_params_repeat1] = STATE(2861), - [anon_sym_COMMA] = ACTIONS(5898), - [anon_sym_RPAREN] = ACTIONS(5900), + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2164), [sym_comment] = ACTIONS(3), }, [1866] = { - [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(5902), - [sym_preproc_arg] = ACTIONS(5904), + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_GT2] = ACTIONS(3850), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3852), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_RPAREN] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(3854), + [anon_sym_LBRACE] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), }, [1867] = { - [anon_sym_DASH] = ACTIONS(5906), - [sym_raw_string_literal] = ACTIONS(5908), - [sym_true] = ACTIONS(5906), - [anon_sym_mutable] = ACTIONS(5906), - [sym_null] = ACTIONS(5906), - [anon_sym_break] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5908), - [anon_sym_sizeof] = ACTIONS(5906), - [anon_sym_volatile] = ACTIONS(5906), - [anon_sym_PLUS] = ACTIONS(5906), - [anon_sym_typedef] = ACTIONS(5906), - [anon_sym_switch] = ACTIONS(5906), - [anon_sym_explicit] = ACTIONS(5906), - [sym_identifier] = ACTIONS(5906), - [anon_sym_delete] = ACTIONS(5906), - [anon_sym_continue] = ACTIONS(5906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), - [anon_sym__Atomic] = ACTIONS(5906), - [sym_number_literal] = ACTIONS(5908), - [anon_sym_extern] = ACTIONS(5906), - [anon_sym_enum] = ACTIONS(5906), - [anon_sym_constexpr] = ACTIONS(5906), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5908), - [anon_sym_namespace] = ACTIONS(5906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), - [anon_sym_SQUOTE] = ACTIONS(5908), - [anon_sym_LBRACE] = ACTIONS(5908), - [anon_sym_DASH_DASH] = ACTIONS(5908), - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_struct] = ACTIONS(5906), - [sym_auto] = ACTIONS(5906), - [anon_sym_signed] = ACTIONS(5906), - [anon_sym_long] = ACTIONS(5906), - [anon_sym_COLON_COLON] = ACTIONS(5908), - [anon_sym_using] = ACTIONS(5906), - [sym_preproc_directive] = ACTIONS(5906), - [aux_sym_preproc_if_token1] = ACTIONS(5906), - [anon_sym_AMP] = ACTIONS(5906), - [anon_sym_static] = ACTIONS(5906), - [anon_sym_RBRACE] = ACTIONS(5908), - [anon_sym_STAR] = ACTIONS(5908), - [anon_sym_union] = ACTIONS(5906), - [anon_sym_typename] = ACTIONS(5906), - [anon_sym_short] = ACTIONS(5906), - [anon_sym_new] = ACTIONS(5906), - [anon_sym_goto] = ACTIONS(5906), - [sym_operator_name] = ACTIONS(5908), - [anon_sym_while] = ACTIONS(5906), - [anon_sym_try] = ACTIONS(5906), - [anon_sym_for] = ACTIONS(5906), - [aux_sym_preproc_include_token1] = ACTIONS(5906), - [anon_sym_register] = ACTIONS(5906), - [anon_sym_DQUOTE] = ACTIONS(5908), - [anon_sym_const] = ACTIONS(5906), - [anon_sym_LBRACK] = ACTIONS(5906), - [anon_sym_class] = ACTIONS(5906), - [anon_sym_if] = ACTIONS(5906), - [sym_primitive_type] = ACTIONS(5906), - [sym_false] = ACTIONS(5906), - [sym_nullptr] = ACTIONS(5906), - [anon_sym_do] = ACTIONS(5906), - [anon_sym_template] = ACTIONS(5906), - [anon_sym_return] = ACTIONS(5906), - [anon_sym_TILDE] = ACTIONS(5908), - [anon_sym_SEMI] = ACTIONS(5908), - [ts_builtin_sym_end] = ACTIONS(5908), - [aux_sym_preproc_def_token1] = ACTIONS(5906), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_inline] = ACTIONS(5906), - [anon_sym_PLUS_PLUS] = ACTIONS(5908), - [anon_sym_restrict] = ACTIONS(5906), + [anon_sym_DASH] = ACTIONS(5919), + [sym_raw_string_literal] = ACTIONS(5921), + [sym_true] = ACTIONS(5919), + [anon_sym_mutable] = ACTIONS(5919), + [sym_null] = ACTIONS(5919), + [anon_sym_break] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_sizeof] = ACTIONS(5919), + [anon_sym_volatile] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_typedef] = ACTIONS(5919), + [anon_sym_switch] = ACTIONS(5919), + [anon_sym_explicit] = ACTIONS(5919), + [sym_identifier] = ACTIONS(5919), + [anon_sym_delete] = ACTIONS(5919), + [anon_sym_continue] = ACTIONS(5919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5919), + [anon_sym__Atomic] = ACTIONS(5919), + [sym_number_literal] = ACTIONS(5921), + [anon_sym_extern] = ACTIONS(5919), + [anon_sym_enum] = ACTIONS(5919), + [anon_sym_constexpr] = ACTIONS(5919), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5921), + [anon_sym_namespace] = ACTIONS(5919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [anon_sym_DASH_DASH] = ACTIONS(5921), + [anon_sym_LPAREN2] = ACTIONS(5921), + [anon_sym_struct] = ACTIONS(5919), + [sym_auto] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(5919), + [anon_sym_long] = ACTIONS(5919), + [anon_sym_COLON_COLON] = ACTIONS(5921), + [anon_sym_using] = ACTIONS(5919), + [sym_preproc_directive] = ACTIONS(5919), + [aux_sym_preproc_if_token1] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_static] = ACTIONS(5919), + [anon_sym_RBRACE] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_union] = ACTIONS(5919), + [anon_sym_typename] = ACTIONS(5919), + [anon_sym_short] = ACTIONS(5919), + [anon_sym_new] = ACTIONS(5919), + [anon_sym_goto] = ACTIONS(5919), + [sym_operator_name] = ACTIONS(5921), + [anon_sym_while] = ACTIONS(5919), + [anon_sym_try] = ACTIONS(5919), + [anon_sym_for] = ACTIONS(5919), + [aux_sym_preproc_include_token1] = ACTIONS(5919), + [anon_sym_register] = ACTIONS(5919), + [anon_sym_DQUOTE] = ACTIONS(5921), + [anon_sym_const] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_class] = ACTIONS(5919), + [anon_sym_if] = ACTIONS(5919), + [sym_primitive_type] = ACTIONS(5919), + [sym_false] = ACTIONS(5919), + [sym_nullptr] = ACTIONS(5919), + [anon_sym_do] = ACTIONS(5919), + [anon_sym_template] = ACTIONS(5919), + [anon_sym_return] = ACTIONS(5919), + [anon_sym_TILDE] = ACTIONS(5921), + [anon_sym_SEMI] = ACTIONS(5921), + [ts_builtin_sym_end] = ACTIONS(5921), + [aux_sym_preproc_def_token1] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5921), + [anon_sym_inline] = ACTIONS(5919), + [anon_sym_PLUS_PLUS] = ACTIONS(5921), + [anon_sym_restrict] = ACTIONS(5919), }, [1868] = { - [anon_sym_LF] = ACTIONS(5910), - [sym_comment] = ACTIONS(244), + [anon_sym_DASH] = ACTIONS(5923), + [sym_raw_string_literal] = ACTIONS(5925), + [sym_true] = ACTIONS(5923), + [anon_sym_mutable] = ACTIONS(5923), + [sym_null] = ACTIONS(5923), + [anon_sym_break] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5925), + [anon_sym_sizeof] = ACTIONS(5923), + [anon_sym_volatile] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_typedef] = ACTIONS(5923), + [anon_sym_switch] = ACTIONS(5923), + [anon_sym_explicit] = ACTIONS(5923), + [sym_identifier] = ACTIONS(5923), + [anon_sym_delete] = ACTIONS(5923), + [anon_sym_continue] = ACTIONS(5923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5923), + [anon_sym__Atomic] = ACTIONS(5923), + [sym_number_literal] = ACTIONS(5925), + [anon_sym_extern] = ACTIONS(5923), + [anon_sym_enum] = ACTIONS(5923), + [anon_sym_constexpr] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5925), + [anon_sym_namespace] = ACTIONS(5923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5925), + [anon_sym_DASH_DASH] = ACTIONS(5925), + [anon_sym_LPAREN2] = ACTIONS(5925), + [anon_sym_struct] = ACTIONS(5923), + [sym_auto] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(5923), + [anon_sym_long] = ACTIONS(5923), + [anon_sym_COLON_COLON] = ACTIONS(5925), + [anon_sym_using] = ACTIONS(5923), + [sym_preproc_directive] = ACTIONS(5923), + [aux_sym_preproc_if_token1] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5923), + [anon_sym_static] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5925), + [anon_sym_STAR] = ACTIONS(5925), + [anon_sym_union] = ACTIONS(5923), + [anon_sym_typename] = ACTIONS(5923), + [anon_sym_short] = ACTIONS(5923), + [anon_sym_new] = ACTIONS(5923), + [anon_sym_goto] = ACTIONS(5923), + [sym_operator_name] = ACTIONS(5925), + [anon_sym_while] = ACTIONS(5923), + [anon_sym_try] = ACTIONS(5923), + [anon_sym_for] = ACTIONS(5923), + [aux_sym_preproc_include_token1] = ACTIONS(5923), + [anon_sym_register] = ACTIONS(5923), + [anon_sym_DQUOTE] = ACTIONS(5925), + [anon_sym_const] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_class] = ACTIONS(5923), + [anon_sym_if] = ACTIONS(5923), + [sym_primitive_type] = ACTIONS(5923), + [sym_false] = ACTIONS(5923), + [sym_nullptr] = ACTIONS(5923), + [anon_sym_do] = ACTIONS(5923), + [anon_sym_template] = ACTIONS(5923), + [anon_sym_return] = ACTIONS(5923), + [anon_sym_TILDE] = ACTIONS(5925), + [anon_sym_SEMI] = ACTIONS(5925), + [ts_builtin_sym_end] = ACTIONS(5925), + [aux_sym_preproc_def_token1] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_inline] = ACTIONS(5923), + [anon_sym_PLUS_PLUS] = ACTIONS(5925), + [anon_sym_restrict] = ACTIONS(5923), }, [1869] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_GT2] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_COLON] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2162), + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(5927), }, [1870] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_GT2] = ACTIONS(3739), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_SEMI] = ACTIONS(3739), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_COLON] = ACTIONS(3741), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_EQ] = ACTIONS(3739), - [anon_sym_LT] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3739), + [sym_macro_type_specifier] = STATE(928), + [sym_class_specifier] = STATE(928), + [sym__type_specifier] = STATE(928), + [sym_sized_type_specifier] = STATE(928), + [aux_sym_sized_type_specifier_repeat1] = STATE(929), + [sym_optional_parameter_declaration] = STATE(2848), + [sym_parameter_declaration] = STATE(2848), + [sym_scoped_type_identifier] = STATE(90), + [sym_variadic_parameter_declaration] = STATE(2848), + [aux_sym_function_definition_repeat1] = STATE(930), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(931), + [sym_dependent_type] = STATE(928), + [sym_struct_specifier] = STATE(928), + [sym_union_specifier] = STATE(928), + [sym_type_qualifier] = STATE(931), + [aux_sym__declaration_specifiers_repeat1] = STATE(931), + [sym_enum_specifier] = STATE(928), + [sym_attribute] = STATE(930), + [sym__declaration_specifiers] = STATE(932), + [sym_scoped_namespace_identifier] = STATE(92), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(1696), + [anon_sym_signed] = ACTIONS(1698), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(1696), + [anon_sym_unsigned] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(1698), + [anon_sym_restrict] = ACTIONS(11), }, [1871] = { - [anon_sym_LPAREN2] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2169), - [anon_sym_mutable] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_register] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_constexpr] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_explicit] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2171), - [anon_sym_restrict] = ACTIONS(2171), - [sym_operator_name] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_LPAREN2] = ACTIONS(5931), + [sym_noexcept] = ACTIONS(5931), + [anon_sym_final] = ACTIONS(5931), + [anon_sym_mutable] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym__Atomic] = ACTIONS(5931), + [anon_sym_const] = ACTIONS(5933), + [anon_sym_GT2] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_constexpr] = ACTIONS(5931), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(5931), + [anon_sym_override] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_COLON] = ACTIONS(5931), + [anon_sym_explicit] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_DASH_GT] = ACTIONS(5931), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_restrict] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(5931), }, [1872] = { - [anon_sym_LPAREN2] = ACTIONS(3743), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_mutable] = ACTIONS(3748), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_register] = ACTIONS(3748), - [anon_sym__Atomic] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3743), - [anon_sym_constexpr] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3748), - [anon_sym_static] = ACTIONS(3748), - [anon_sym_volatile] = ACTIONS(3748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), - [anon_sym_STAR] = ACTIONS(3746), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_explicit] = ACTIONS(3748), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_inline] = ACTIONS(3748), - [sym_identifier] = ACTIONS(3748), - [anon_sym_restrict] = ACTIONS(3748), - [sym_operator_name] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3743), + [aux_sym_parameter_list_repeat1] = STATE(2850), + [anon_sym_COMMA] = ACTIONS(3716), + [anon_sym_RPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(3), }, [1873] = { - [anon_sym_DASH] = ACTIONS(5912), - [sym_raw_string_literal] = ACTIONS(5914), - [sym_true] = ACTIONS(5912), - [anon_sym_mutable] = ACTIONS(5912), - [sym_null] = ACTIONS(5912), - [anon_sym_break] = ACTIONS(5912), - [anon_sym_BANG] = ACTIONS(5914), - [anon_sym_sizeof] = ACTIONS(5912), - [anon_sym_volatile] = ACTIONS(5912), - [anon_sym_PLUS] = ACTIONS(5912), - [anon_sym_typedef] = ACTIONS(5912), - [anon_sym_switch] = ACTIONS(5912), - [anon_sym_explicit] = ACTIONS(5912), - [sym_identifier] = ACTIONS(5912), - [anon_sym_delete] = ACTIONS(5912), - [anon_sym_continue] = ACTIONS(5912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5912), - [anon_sym__Atomic] = ACTIONS(5912), - [sym_number_literal] = ACTIONS(5914), - [anon_sym_extern] = ACTIONS(5912), - [anon_sym_enum] = ACTIONS(5912), - [anon_sym_constexpr] = ACTIONS(5912), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5914), - [anon_sym_namespace] = ACTIONS(5912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5912), - [anon_sym_SQUOTE] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(5914), - [anon_sym_DASH_DASH] = ACTIONS(5914), - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_struct] = ACTIONS(5912), - [sym_auto] = ACTIONS(5912), - [anon_sym_signed] = ACTIONS(5912), - [anon_sym_long] = ACTIONS(5912), - [anon_sym_COLON_COLON] = ACTIONS(5914), - [anon_sym_using] = ACTIONS(5912), - [sym_preproc_directive] = ACTIONS(5912), - [aux_sym_preproc_if_token1] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_static] = ACTIONS(5912), - [anon_sym_RBRACE] = ACTIONS(5914), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_union] = ACTIONS(5912), - [anon_sym_typename] = ACTIONS(5912), - [anon_sym_short] = ACTIONS(5912), - [anon_sym_new] = ACTIONS(5912), - [anon_sym_goto] = ACTIONS(5912), - [sym_operator_name] = ACTIONS(5914), - [anon_sym_while] = ACTIONS(5912), - [anon_sym_try] = ACTIONS(5912), - [anon_sym_for] = ACTIONS(5912), - [aux_sym_preproc_include_token1] = ACTIONS(5912), - [anon_sym_register] = ACTIONS(5912), - [anon_sym_DQUOTE] = ACTIONS(5914), - [anon_sym_const] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5912), - [anon_sym_class] = ACTIONS(5912), - [anon_sym_if] = ACTIONS(5912), - [sym_primitive_type] = ACTIONS(5912), - [sym_false] = ACTIONS(5912), - [sym_nullptr] = ACTIONS(5912), - [anon_sym_do] = ACTIONS(5912), - [anon_sym_template] = ACTIONS(5912), - [anon_sym_return] = ACTIONS(5912), - [anon_sym_TILDE] = ACTIONS(5914), - [anon_sym_SEMI] = ACTIONS(5914), - [ts_builtin_sym_end] = ACTIONS(5914), - [aux_sym_preproc_def_token1] = ACTIONS(5912), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_inline] = ACTIONS(5912), - [anon_sym_PLUS_PLUS] = ACTIONS(5914), - [anon_sym_restrict] = ACTIONS(5912), + [sym_storage_class_specifier] = STATE(2851), + [sym_type_qualifier] = STATE(2851), + [aux_sym__declaration_specifiers_repeat1] = STATE(2851), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_restrict] = ACTIONS(11), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [sym_operator_name] = ACTIONS(1785), + [anon_sym_inline] = ACTIONS(63), }, [1874] = { - [anon_sym_LPAREN2] = ACTIONS(5916), - [anon_sym_LT] = ACTIONS(5916), - [anon_sym_LBRACE] = ACTIONS(5916), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(1874), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(5937), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(5937), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(5937), + [sym_operator_name] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1783), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(5937), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_AMP_AMP] = ACTIONS(1778), }, [1875] = { - [anon_sym_LPAREN2] = ACTIONS(5918), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(5918), + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(1877), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(3728), [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(358), }, [1876] = { - [sym_destructor_name] = STATE(2863), - [sym_identifier] = ACTIONS(5920), - [sym_operator_name] = ACTIONS(5922), - [anon_sym_TILDE] = ACTIONS(308), + [sym_storage_class_specifier] = STATE(2852), + [sym_type_qualifier] = STATE(2852), + [aux_sym__declaration_specifiers_repeat1] = STATE(2852), + [anon_sym_LPAREN2] = ACTIONS(565), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(565), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(567), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), + [sym_operator_name] = ACTIONS(565), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_restrict] = ACTIONS(11), }, [1877] = { - [anon_sym_EQ] = ACTIONS(5924), - [anon_sym_COMMA] = ACTIONS(5924), - [anon_sym_LBRACE] = ACTIONS(5924), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(2853), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_short] = ACTIONS(5940), + [anon_sym_signed] = ACTIONS(5940), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_register] = ACTIONS(558), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_long] = ACTIONS(5940), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_static] = ACTIONS(558), + [anon_sym_volatile] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(5940), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_inline] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [sym_identifier] = ACTIONS(562), + [sym_operator_name] = ACTIONS(554), }, [1878] = { - [anon_sym_EQ] = ACTIONS(5926), - [anon_sym_COMMA] = ACTIONS(5926), - [anon_sym_LBRACE] = ACTIONS(5926), + [sym_macro_type_specifier] = STATE(2854), + [sym_class_specifier] = STATE(2854), + [aux_sym_sized_type_specifier_repeat1] = STATE(1877), + [sym_sized_type_specifier] = STATE(2854), + [sym__type_specifier] = STATE(2854), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(879), + [sym_type_qualifier] = STATE(879), + [sym_struct_specifier] = STATE(2854), + [sym_union_specifier] = STATE(2854), + [sym_dependent_type] = STATE(2854), + [aux_sym__declaration_specifiers_repeat1] = STATE(879), + [sym_enum_specifier] = STATE(2854), + [sym_scoped_namespace_identifier] = STATE(92), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(5942), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(5942), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(11), }, [1879] = { - [sym_destructor_name] = STATE(2865), - [sym_identifier] = ACTIONS(5928), - [sym_operator_name] = ACTIONS(5930), - [anon_sym_TILDE] = ACTIONS(308), + [sym_abstract_reference_declarator] = STATE(2858), + [sym_template_function] = STATE(2857), + [sym_abstract_array_declarator] = STATE(2858), + [sym__declarator] = STATE(2857), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2857), + [sym_array_declarator] = STATE(2857), + [sym_abstract_pointer_declarator] = STATE(2858), + [sym_template_type] = STATE(310), + [sym_destructor_name] = STATE(2857), + [sym_parameter_list] = STATE(1886), + [sym_pointer_declarator] = STATE(2857), + [sym_structured_binding_declarator] = STATE(2857), + [sym_abstract_function_declarator] = STATE(2858), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(2858), + [sym_function_declarator] = STATE(2857), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(5944), + [anon_sym_COMMA] = ACTIONS(5760), + [anon_sym_STAR] = ACTIONS(5946), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(5760), + [sym_identifier] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(5948), + [sym_operator_name] = ACTIONS(5950), [sym_comment] = ACTIONS(3), }, [1880] = { - [sym_scoped_field_identifier] = STATE(931), - [sym_template_type] = STATE(932), - [sym_scoped_namespace_identifier] = STATE(932), - [sym_scoped_type_identifier] = STATE(174), - [sym_field_initializer] = STATE(2867), - [anon_sym_COLON_COLON] = ACTIONS(1689), - [sym_identifier] = ACTIONS(1691), + [sym_storage_class_specifier] = STATE(2859), + [sym_type_qualifier] = STATE(2859), + [aux_sym__declaration_specifiers_repeat1] = STATE(2859), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_restrict] = ACTIONS(11), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [sym_operator_name] = ACTIONS(1785), + [anon_sym_inline] = ACTIONS(63), }, [1881] = { - [aux_sym_field_initializer_list_repeat1] = STATE(2868), - [anon_sym_EQ] = ACTIONS(5932), - [anon_sym_COMMA] = ACTIONS(3726), - [anon_sym_LBRACE] = ACTIONS(5932), + [sym_identifier] = ACTIONS(5952), [sym_comment] = ACTIONS(3), }, [1882] = { - [anon_sym_DASH] = ACTIONS(5934), - [sym_raw_string_literal] = ACTIONS(5936), - [sym_true] = ACTIONS(5934), - [anon_sym_mutable] = ACTIONS(5934), - [sym_null] = ACTIONS(5934), - [anon_sym_break] = ACTIONS(5934), - [anon_sym_BANG] = ACTIONS(5936), - [anon_sym_sizeof] = ACTIONS(5934), - [anon_sym_volatile] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_typedef] = ACTIONS(5934), - [anon_sym_switch] = ACTIONS(5934), - [anon_sym_explicit] = ACTIONS(5934), - [sym_identifier] = ACTIONS(5934), - [anon_sym_delete] = ACTIONS(5934), - [anon_sym_continue] = ACTIONS(5934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5934), - [anon_sym__Atomic] = ACTIONS(5934), - [sym_number_literal] = ACTIONS(5936), - [anon_sym_extern] = ACTIONS(5934), - [anon_sym_enum] = ACTIONS(5934), - [anon_sym_constexpr] = ACTIONS(5934), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5936), - [anon_sym_namespace] = ACTIONS(5934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5934), - [anon_sym_SQUOTE] = ACTIONS(5936), - [anon_sym_LBRACE] = ACTIONS(5936), - [anon_sym_DASH_DASH] = ACTIONS(5936), - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_struct] = ACTIONS(5934), - [sym_auto] = ACTIONS(5934), - [anon_sym_signed] = ACTIONS(5934), - [anon_sym_long] = ACTIONS(5934), - [anon_sym_COLON_COLON] = ACTIONS(5936), - [anon_sym_using] = ACTIONS(5934), - [sym_preproc_directive] = ACTIONS(5934), - [aux_sym_preproc_if_token1] = ACTIONS(5934), - [anon_sym_AMP] = ACTIONS(5934), - [anon_sym_static] = ACTIONS(5934), - [anon_sym_RBRACE] = ACTIONS(5936), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_union] = ACTIONS(5934), - [anon_sym_typename] = ACTIONS(5934), - [anon_sym_short] = ACTIONS(5934), - [anon_sym_new] = ACTIONS(5934), - [anon_sym_goto] = ACTIONS(5934), - [sym_operator_name] = ACTIONS(5936), - [anon_sym_while] = ACTIONS(5934), - [anon_sym_try] = ACTIONS(5934), - [anon_sym_for] = ACTIONS(5934), - [aux_sym_preproc_include_token1] = ACTIONS(5934), - [anon_sym_register] = ACTIONS(5934), - [anon_sym_DQUOTE] = ACTIONS(5936), - [anon_sym_const] = ACTIONS(5934), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_class] = ACTIONS(5934), - [anon_sym_if] = ACTIONS(5934), - [sym_primitive_type] = ACTIONS(5934), - [sym_false] = ACTIONS(5934), - [sym_nullptr] = ACTIONS(5934), - [anon_sym_do] = ACTIONS(5934), - [anon_sym_template] = ACTIONS(5934), - [anon_sym_return] = ACTIONS(5934), - [anon_sym_TILDE] = ACTIONS(5936), - [anon_sym_SEMI] = ACTIONS(5936), - [ts_builtin_sym_end] = ACTIONS(5936), - [aux_sym_preproc_def_token1] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_inline] = ACTIONS(5934), - [anon_sym_PLUS_PLUS] = ACTIONS(5936), - [anon_sym_restrict] = ACTIONS(5934), + [sym_abstract_reference_declarator] = STATE(2864), + [sym_template_function] = STATE(2862), + [sym_abstract_array_declarator] = STATE(2864), + [sym__declarator] = STATE(2862), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2862), + [sym_array_declarator] = STATE(2862), + [sym_abstract_pointer_declarator] = STATE(2864), + [sym_template_type] = STATE(310), + [sym_destructor_name] = STATE(2862), + [sym_parameter_list] = STATE(1886), + [sym_pointer_declarator] = STATE(2862), + [sym_structured_binding_declarator] = STATE(2862), + [sym_abstract_function_declarator] = STATE(2864), + [sym_variadic_declarator] = STATE(2863), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(2864), + [sym_function_declarator] = STATE(2862), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(3579), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5956), + [sym_operator_name] = ACTIONS(5958), + [sym_comment] = ACTIONS(3), }, [1883] = { - [anon_sym_DASH] = ACTIONS(5938), - [sym_raw_string_literal] = ACTIONS(5940), - [sym_true] = ACTIONS(5938), - [anon_sym_mutable] = ACTIONS(5938), - [sym_null] = ACTIONS(5938), - [anon_sym_break] = ACTIONS(5938), - [anon_sym_BANG] = ACTIONS(5940), - [anon_sym_sizeof] = ACTIONS(5938), - [anon_sym_volatile] = ACTIONS(5938), - [anon_sym_PLUS] = ACTIONS(5938), - [anon_sym_typedef] = ACTIONS(5938), - [anon_sym_switch] = ACTIONS(5938), - [anon_sym_explicit] = ACTIONS(5938), - [sym_identifier] = ACTIONS(5938), - [anon_sym_delete] = ACTIONS(5938), - [anon_sym_continue] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), - [anon_sym__Atomic] = ACTIONS(5938), - [sym_number_literal] = ACTIONS(5940), - [anon_sym_extern] = ACTIONS(5938), - [anon_sym_enum] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5938), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5940), - [anon_sym_namespace] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), - [anon_sym_SQUOTE] = ACTIONS(5940), - [anon_sym_LBRACE] = ACTIONS(5940), - [anon_sym_DASH_DASH] = ACTIONS(5940), - [anon_sym_LPAREN2] = ACTIONS(5940), - [anon_sym_struct] = ACTIONS(5938), - [sym_auto] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(5938), - [anon_sym_long] = ACTIONS(5938), - [anon_sym_COLON_COLON] = ACTIONS(5940), - [anon_sym_using] = ACTIONS(5938), - [sym_preproc_directive] = ACTIONS(5938), - [aux_sym_preproc_if_token1] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_static] = ACTIONS(5938), - [anon_sym_RBRACE] = ACTIONS(5940), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_union] = ACTIONS(5938), - [anon_sym_typename] = ACTIONS(5938), - [anon_sym_short] = ACTIONS(5938), - [anon_sym_new] = ACTIONS(5938), - [anon_sym_goto] = ACTIONS(5938), - [sym_operator_name] = ACTIONS(5940), - [anon_sym_while] = ACTIONS(5938), - [anon_sym_try] = ACTIONS(5938), - [anon_sym_for] = ACTIONS(5938), - [aux_sym_preproc_include_token1] = ACTIONS(5938), - [anon_sym_register] = ACTIONS(5938), - [anon_sym_DQUOTE] = ACTIONS(5940), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_LBRACK] = ACTIONS(5938), - [anon_sym_class] = ACTIONS(5938), - [anon_sym_if] = ACTIONS(5938), - [sym_primitive_type] = ACTIONS(5938), - [sym_false] = ACTIONS(5938), - [sym_nullptr] = ACTIONS(5938), - [anon_sym_do] = ACTIONS(5938), - [anon_sym_template] = ACTIONS(5938), - [anon_sym_return] = ACTIONS(5938), - [anon_sym_TILDE] = ACTIONS(5940), - [anon_sym_SEMI] = ACTIONS(5940), - [ts_builtin_sym_end] = ACTIONS(5940), - [aux_sym_preproc_def_token1] = ACTIONS(5938), - [anon_sym_AMP_AMP] = ACTIONS(5940), - [anon_sym_inline] = ACTIONS(5938), - [anon_sym_PLUS_PLUS] = ACTIONS(5940), - [anon_sym_restrict] = ACTIONS(5938), + [sym_abstract_reference_declarator] = STATE(2867), + [sym_template_function] = STATE(2866), + [sym_abstract_array_declarator] = STATE(2867), + [aux_sym_type_definition_repeat1] = STATE(2865), + [sym__declarator] = STATE(2866), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2866), + [sym_array_declarator] = STATE(2866), + [sym_abstract_pointer_declarator] = STATE(2867), + [sym_template_type] = STATE(310), + [sym_type_qualifier] = STATE(2865), + [sym_destructor_name] = STATE(2866), + [sym_parameter_list] = STATE(1886), + [sym_pointer_declarator] = STATE(2866), + [sym_structured_binding_declarator] = STATE(2866), + [sym_abstract_function_declarator] = STATE(2867), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(2867), + [sym_function_declarator] = STATE(2866), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_constexpr] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(5954), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(2837), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5956), + [sym_operator_name] = ACTIONS(5960), + [anon_sym_restrict] = ACTIONS(11), }, [1884] = { - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(5942), + [sym_template_function] = STATE(2868), + [sym__expression] = STATE(2868), + [sym_logical_expression] = STATE(2868), + [sym_bitwise_expression] = STATE(2868), + [sym_cast_expression] = STATE(2868), + [sym_delete_expression] = STATE(2868), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(2868), + [sym_lambda_expression] = STATE(2868), + [sym_char_literal] = STATE(2868), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2868), + [sym_equality_expression] = STATE(2868), + [sym_relational_expression] = STATE(2868), + [sym_sizeof_expression] = STATE(2868), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2868), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(2868), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2868), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(2868), + [sym_math_expression] = STATE(2868), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(2868), + [sym_raw_string_literal] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(5964), + [sym_null] = ACTIONS(5964), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(5962), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(272), + [sym_false] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(5964), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_sizeof] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(690), + [anon_sym_new] = ACTIONS(284), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [1885] = { - [sym_destructor_name] = STATE(2863), - [sym_identifier] = ACTIONS(5945), - [sym_operator_name] = ACTIONS(5922), - [anon_sym_TILDE] = ACTIONS(308), + [sym_parameter_list] = STATE(2870), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5760), [sym_comment] = ACTIONS(3), }, [1886] = { - [anon_sym_LPAREN2] = ACTIONS(5947), - [anon_sym_DASH] = ACTIONS(5949), - [anon_sym_DASH_GT] = ACTIONS(5947), - [anon_sym_RPAREN] = ACTIONS(5947), - [anon_sym_LBRACE] = ACTIONS(5947), - [anon_sym_STAR_EQ] = ACTIONS(5947), - [anon_sym_LT_LT_EQ] = ACTIONS(5947), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(5947), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5947), - [anon_sym_EQ_EQ] = ACTIONS(5947), - [anon_sym_PIPE] = ACTIONS(5949), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_CARET_EQ] = ACTIONS(5947), - [anon_sym_AMP] = ACTIONS(5949), - [anon_sym_PLUS] = ACTIONS(5949), - [anon_sym_GT_EQ] = ACTIONS(5947), - [anon_sym_STAR] = ACTIONS(5949), - [anon_sym_SLASH] = ACTIONS(5949), - [anon_sym_RBRACE] = ACTIONS(5947), - [anon_sym_COLON] = ACTIONS(5949), - [anon_sym_SLASH_EQ] = ACTIONS(5947), - [anon_sym_PLUS_EQ] = ACTIONS(5947), - [anon_sym_CARET] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_PIPE_EQ] = ACTIONS(5947), - [anon_sym_GT_GT_EQ] = ACTIONS(5947), - [anon_sym_COMMA] = ACTIONS(5947), - [anon_sym_PIPE_PIPE] = ACTIONS(5947), - [anon_sym_DOT] = ACTIONS(5947), - [anon_sym_LT_LT] = ACTIONS(5949), - [anon_sym_LBRACK] = ACTIONS(5947), - [anon_sym_PERCENT] = ACTIONS(5949), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5947), - [anon_sym_DASH_EQ] = ACTIONS(5947), - [anon_sym_SEMI] = ACTIONS(5947), - [anon_sym_BANG_EQ] = ACTIONS(5947), - [anon_sym_AMP_EQ] = ACTIONS(5947), - [anon_sym_AMP_AMP] = ACTIONS(5947), - [anon_sym_LT_EQ] = ACTIONS(5947), - [anon_sym_EQ] = ACTIONS(5949), - [anon_sym_PLUS_PLUS] = ACTIONS(5947), - [anon_sym_GT_GT] = ACTIONS(5949), - [anon_sym_DASH_DASH] = ACTIONS(5947), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2872), + [sym_type_qualifier] = STATE(2872), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(5968), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(5970), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), }, [1887] = { - [anon_sym_LPAREN2] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5953), - [anon_sym_DASH_GT] = ACTIONS(5951), - [anon_sym_RPAREN] = ACTIONS(5951), - [anon_sym_LBRACE] = ACTIONS(5951), - [anon_sym_STAR_EQ] = ACTIONS(5951), - [anon_sym_LT_LT_EQ] = ACTIONS(5951), - [anon_sym_PERCENT_EQ] = ACTIONS(5951), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5951), - [anon_sym_EQ_EQ] = ACTIONS(5951), - [anon_sym_PIPE] = ACTIONS(5953), - [anon_sym_LT] = ACTIONS(5953), - [anon_sym_CARET_EQ] = ACTIONS(5951), - [anon_sym_AMP] = ACTIONS(5953), - [anon_sym_PLUS] = ACTIONS(5953), - [anon_sym_GT_EQ] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_RBRACE] = ACTIONS(5951), - [anon_sym_COLON] = ACTIONS(5951), - [anon_sym_SLASH_EQ] = ACTIONS(5951), - [anon_sym_PLUS_EQ] = ACTIONS(5951), - [anon_sym_CARET] = ACTIONS(5953), - [anon_sym_GT] = ACTIONS(5953), - [anon_sym_PIPE_EQ] = ACTIONS(5951), - [anon_sym_GT_GT_EQ] = ACTIONS(5951), - [anon_sym_COMMA] = ACTIONS(5951), - [anon_sym_PIPE_PIPE] = ACTIONS(5951), - [anon_sym_DOT] = ACTIONS(5951), - [anon_sym_LT_LT] = ACTIONS(5953), - [anon_sym_LBRACK] = ACTIONS(5951), - [anon_sym_PERCENT] = ACTIONS(5953), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5951), - [anon_sym_DASH_EQ] = ACTIONS(5951), - [anon_sym_SEMI] = ACTIONS(5951), - [anon_sym_BANG_EQ] = ACTIONS(5951), - [anon_sym_AMP_EQ] = ACTIONS(5951), - [anon_sym_AMP_AMP] = ACTIONS(5951), - [anon_sym_LT_EQ] = ACTIONS(5951), - [anon_sym_EQ] = ACTIONS(5953), - [anon_sym_PLUS_PLUS] = ACTIONS(5951), - [anon_sym_GT_GT] = ACTIONS(5953), - [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5972), + [anon_sym_RPAREN] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), }, [1888] = { - [sym_destructor_name] = STATE(2865), - [sym_identifier] = ACTIONS(5955), - [sym_operator_name] = ACTIONS(5930), - [anon_sym_TILDE] = ACTIONS(308), + [sym_parameter_list] = STATE(2873), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(5760), [sym_comment] = ACTIONS(3), }, [1889] = { - [anon_sym_RPAREN] = ACTIONS(5957), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(5974), + [anon_sym_final] = ACTIONS(5974), + [sym_noexcept] = ACTIONS(5974), + [anon_sym_mutable] = ACTIONS(5974), + [anon_sym_COMMA] = ACTIONS(5974), + [anon_sym__Atomic] = ACTIONS(5974), + [anon_sym_const] = ACTIONS(5976), + [anon_sym_GT2] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_constexpr] = ACTIONS(5974), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(5974), + [anon_sym_override] = ACTIONS(5974), + [anon_sym_SEMI] = ACTIONS(5974), + [anon_sym_COLON] = ACTIONS(5974), + [anon_sym_explicit] = ACTIONS(5974), + [anon_sym_RPAREN] = ACTIONS(5974), + [anon_sym_DASH_GT] = ACTIONS(5974), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_restrict] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5974), }, [1890] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2873), - [sym_logical_expression] = STATE(2873), - [sym_bitwise_expression] = STATE(2873), - [sym_cast_expression] = STATE(2873), - [sym_new_expression] = STATE(2873), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2873), - [sym_char_literal] = STATE(2873), - [sym_template_function] = STATE(2873), - [sym_conditional_expression] = STATE(2873), - [sym_equality_expression] = STATE(2873), - [sym_relational_expression] = STATE(2873), - [sym_delete_expression] = STATE(2873), - [sym_sizeof_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_lambda_expression] = STATE(2873), - [sym_concatenated_string] = STATE(2873), - [sym_string_literal] = STATE(967), + [sym_union_specifier] = STATE(2876), + [sym_macro_type_specifier] = STATE(2876), + [sym_class_specifier] = STATE(2876), + [aux_sym_sized_type_specifier_repeat1] = STATE(2875), + [sym_sized_type_specifier] = STATE(2876), + [sym__type_specifier] = STATE(2876), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(2876), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(2876), + [sym_struct_specifier] = STATE(2876), + [anon_sym_unsigned] = ACTIONS(5978), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(5980), + [anon_sym_signed] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(5978), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(5982), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(5978), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(5980), + }, + [1891] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(2877), + [sym_type_qualifier] = STATE(2877), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(5984), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [1892] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(2878), + [sym_type_qualifier] = STATE(2878), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(5986), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [1893] = { + [anon_sym_RPAREN] = ACTIONS(5988), + [sym_comment] = ACTIONS(3), + }, + [1894] = { + [sym_template_function] = STATE(2881), + [sym__expression] = STATE(2881), + [sym_logical_expression] = STATE(2881), + [sym_bitwise_expression] = STATE(2881), + [sym_cast_expression] = STATE(2881), + [sym_delete_expression] = STATE(2881), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2881), + [sym_lambda_expression] = STATE(2881), + [sym_char_literal] = STATE(2881), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2873), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2873), - [sym_math_expression] = STATE(2873), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(2881), + [sym_equality_expression] = STATE(2881), + [sym_relational_expression] = STATE(2881), + [sym_sizeof_expression] = STATE(2881), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(5961), - [sym_null] = ACTIONS(5961), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5959), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(5963), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(5961), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5961), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(2881), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2881), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2881), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2881), + [sym_math_expression] = STATE(2881), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2881), + [sym_raw_string_literal] = ACTIONS(5990), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(5992), + [sym_null] = ACTIONS(5992), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(5990), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(5994), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(5992), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1891] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(1597), - [sym_logical_expression] = STATE(1597), - [sym_bitwise_expression] = STATE(1597), - [sym_cast_expression] = STATE(1597), - [sym_new_expression] = STATE(1597), - [sym_field_expression] = STATE(1597), - [sym_compound_literal_expression] = STATE(1597), - [sym_char_literal] = STATE(1597), - [sym_template_function] = STATE(1597), - [sym_conditional_expression] = STATE(1597), - [sym_equality_expression] = STATE(1597), - [sym_relational_expression] = STATE(1597), - [sym_delete_expression] = STATE(1597), - [sym_sizeof_expression] = STATE(1597), - [sym_parenthesized_expression] = STATE(1597), - [sym_lambda_expression] = STATE(1597), - [sym_concatenated_string] = STATE(1597), - [sym_string_literal] = STATE(1899), + [1895] = { + [sym_template_function] = STATE(1592), + [sym__expression] = STATE(1592), + [sym_logical_expression] = STATE(1592), + [sym_bitwise_expression] = STATE(1592), + [sym_cast_expression] = STATE(1592), + [sym_delete_expression] = STATE(1592), + [sym_field_expression] = STATE(1592), + [sym_compound_literal_expression] = STATE(1592), + [sym_lambda_expression] = STATE(1592), + [sym_char_literal] = STATE(1592), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(1597), - [sym_assignment_expression] = STATE(1597), - [sym_pointer_expression] = STATE(1597), - [sym_shift_expression] = STATE(1597), - [sym_math_expression] = STATE(1597), - [sym_call_expression] = STATE(1597), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(1592), + [sym_equality_expression] = STATE(1592), + [sym_relational_expression] = STATE(1592), + [sym_sizeof_expression] = STATE(1592), + [sym_subscript_expression] = STATE(1592), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(3209), - [sym_null] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(1592), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(1592), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(1592), + [sym_pointer_expression] = STATE(1592), + [sym_shift_expression] = STATE(1592), + [sym_math_expression] = STATE(1592), + [sym_call_expression] = STATE(1592), + [sym_new_expression] = STATE(1592), + [sym_raw_string_literal] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(3209), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(3211), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [1892] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(1598), - [sym_logical_expression] = STATE(1598), - [sym_bitwise_expression] = STATE(1598), - [sym_cast_expression] = STATE(1598), - [sym_new_expression] = STATE(1598), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1598), - [sym_type_descriptor] = STATE(2874), - [sym_char_literal] = STATE(1598), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(1598), - [sym_conditional_expression] = STATE(1598), - [sym_equality_expression] = STATE(1598), - [sym_relational_expression] = STATE(1598), - [sym_delete_expression] = STATE(1598), - [sym_sizeof_expression] = STATE(1598), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(1598), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(1598), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(1598), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(1600), - [sym_assignment_expression] = STATE(1598), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1598), - [sym_math_expression] = STATE(1598), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(3211), + [1896] = { + [sym_template_function] = STATE(1593), + [sym__expression] = STATE(1593), + [sym_logical_expression] = STATE(1593), + [sym_bitwise_expression] = STATE(1593), + [sym_cast_expression] = STATE(1593), + [sym_delete_expression] = STATE(1593), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(1593), + [sym_char_literal] = STATE(1593), + [sym_lambda_expression] = STATE(1593), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2882), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(1595), + [sym_conditional_expression] = STATE(1593), + [sym_equality_expression] = STATE(1593), + [sym_relational_expression] = STATE(1593), + [sym_sizeof_expression] = STATE(1593), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(1593), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1593), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(1593), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1593), + [sym_math_expression] = STATE(1593), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1593), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(3213), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(3213), + [sym_true] = ACTIONS(3215), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(3213), + [sym_null] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3211), + [sym_number_literal] = ACTIONS(3213), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(3213), + [sym_false] = ACTIONS(3215), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(3213), + [sym_nullptr] = ACTIONS(3215), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1893] = { - [sym_destructor_name] = STATE(1604), + [1897] = { + [sym_destructor_name] = STATE(1599), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(3219), - [sym_operator_name] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(5965), + [sym_identifier] = ACTIONS(3221), + [sym_operator_name] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(5996), }, - [1894] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(1607), - [sym_logical_expression] = STATE(1607), - [sym_bitwise_expression] = STATE(1607), - [sym_cast_expression] = STATE(1607), - [sym_new_expression] = STATE(1607), - [sym_field_expression] = STATE(1607), - [sym_compound_literal_expression] = STATE(1607), - [sym_char_literal] = STATE(1607), - [sym_template_function] = STATE(1607), - [sym_conditional_expression] = STATE(1607), - [sym_equality_expression] = STATE(1607), - [sym_relational_expression] = STATE(1607), - [sym_delete_expression] = STATE(1607), - [sym_sizeof_expression] = STATE(1607), - [sym_parenthesized_expression] = STATE(1607), - [sym_lambda_expression] = STATE(1607), - [sym_concatenated_string] = STATE(1607), - [sym_string_literal] = STATE(1899), + [1898] = { + [sym_template_function] = STATE(1602), + [sym__expression] = STATE(1602), + [sym_logical_expression] = STATE(1602), + [sym_bitwise_expression] = STATE(1602), + [sym_cast_expression] = STATE(1602), + [sym_delete_expression] = STATE(1602), + [sym_field_expression] = STATE(1602), + [sym_compound_literal_expression] = STATE(1602), + [sym_lambda_expression] = STATE(1602), + [sym_char_literal] = STATE(1602), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(1607), - [sym_assignment_expression] = STATE(1607), - [sym_pointer_expression] = STATE(1607), - [sym_shift_expression] = STATE(1607), - [sym_math_expression] = STATE(1607), - [sym_call_expression] = STATE(1607), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(1602), + [sym_equality_expression] = STATE(1602), + [sym_relational_expression] = STATE(1602), + [sym_sizeof_expression] = STATE(1602), + [sym_subscript_expression] = STATE(1602), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(1602), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(1602), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(1602), + [sym_pointer_expression] = STATE(1602), + [sym_shift_expression] = STATE(1602), + [sym_math_expression] = STATE(1602), + [sym_call_expression] = STATE(1602), + [sym_new_expression] = STATE(1602), + [sym_raw_string_literal] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(3229), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(3231), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [1895] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2877), - [sym_logical_expression] = STATE(2877), - [sym_bitwise_expression] = STATE(2877), - [sym_cast_expression] = STATE(2877), - [sym_new_expression] = STATE(2877), - [sym_field_expression] = STATE(2877), - [sym_compound_literal_expression] = STATE(2877), - [sym_char_literal] = STATE(2877), - [sym_template_function] = STATE(2877), - [sym_conditional_expression] = STATE(2877), - [sym_equality_expression] = STATE(2877), - [sym_relational_expression] = STATE(2877), - [sym_delete_expression] = STATE(2877), - [sym_sizeof_expression] = STATE(2877), - [sym_parenthesized_expression] = STATE(2877), - [sym_lambda_expression] = STATE(2877), - [sym_concatenated_string] = STATE(2877), - [sym_string_literal] = STATE(1899), + [1899] = { + [sym_template_function] = STATE(2885), + [sym__expression] = STATE(2885), + [sym_logical_expression] = STATE(2885), + [sym_bitwise_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [sym_delete_expression] = STATE(2885), + [sym_field_expression] = STATE(2885), + [sym_compound_literal_expression] = STATE(2885), + [sym_lambda_expression] = STATE(2885), + [sym_char_literal] = STATE(2885), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2877), - [sym_assignment_expression] = STATE(2877), - [sym_pointer_expression] = STATE(2877), - [sym_shift_expression] = STATE(2877), - [sym_math_expression] = STATE(2877), - [sym_call_expression] = STATE(2877), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2885), + [sym_equality_expression] = STATE(2885), + [sym_relational_expression] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_subscript_expression] = STATE(2885), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5967), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(5969), - [sym_true] = ACTIONS(5971), - [sym_null] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5967), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5971), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(2885), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(2885), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2885), + [sym_pointer_expression] = STATE(2885), + [sym_shift_expression] = STATE(2885), + [sym_math_expression] = STATE(2885), + [sym_call_expression] = STATE(2885), + [sym_new_expression] = STATE(2885), + [sym_raw_string_literal] = ACTIONS(5998), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(6000), + [sym_true] = ACTIONS(6002), + [sym_null] = ACTIONS(6002), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5998), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(6002), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6002), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [1896] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(1610), - [sym_logical_expression] = STATE(1610), - [sym_bitwise_expression] = STATE(1610), - [sym_cast_expression] = STATE(1610), - [sym_new_expression] = STATE(1610), - [sym_field_expression] = STATE(1610), - [sym_compound_literal_expression] = STATE(1610), - [sym_char_literal] = STATE(1610), - [sym_template_function] = STATE(1610), - [sym_conditional_expression] = STATE(1610), - [sym_equality_expression] = STATE(1610), - [sym_relational_expression] = STATE(1610), - [sym_delete_expression] = STATE(1610), - [sym_sizeof_expression] = STATE(1610), - [sym_parenthesized_expression] = STATE(1610), - [sym_lambda_expression] = STATE(1610), - [sym_concatenated_string] = STATE(1610), - [sym_string_literal] = STATE(1899), + [1900] = { + [sym_template_function] = STATE(1605), + [sym__expression] = STATE(1605), + [sym_logical_expression] = STATE(1605), + [sym_bitwise_expression] = STATE(1605), + [sym_cast_expression] = STATE(1605), + [sym_delete_expression] = STATE(1605), + [sym_field_expression] = STATE(1605), + [sym_compound_literal_expression] = STATE(1605), + [sym_lambda_expression] = STATE(1605), + [sym_char_literal] = STATE(1605), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(1610), - [sym_assignment_expression] = STATE(1610), - [sym_pointer_expression] = STATE(1610), - [sym_shift_expression] = STATE(1610), - [sym_math_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(1605), + [sym_equality_expression] = STATE(1605), + [sym_relational_expression] = STATE(1605), + [sym_sizeof_expression] = STATE(1605), + [sym_subscript_expression] = STATE(1605), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(1605), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(1605), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(1605), + [sym_pointer_expression] = STATE(1605), + [sym_shift_expression] = STATE(1605), + [sym_math_expression] = STATE(1605), + [sym_call_expression] = STATE(1605), + [sym_new_expression] = STATE(1605), + [sym_raw_string_literal] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(3239), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [1897] = { - [sym_union_specifier] = STATE(2880), - [sym_macro_type_specifier] = STATE(2880), - [sym_class_specifier] = STATE(2880), - [sym_template_type] = STATE(1623), - [sym_sized_type_specifier] = STATE(2880), - [sym_scoped_namespace_identifier] = STATE(1625), - [sym__type_specifier] = STATE(2880), - [aux_sym_sized_type_specifier_repeat1] = STATE(2879), - [sym_argument_list] = STATE(2881), - [sym_enum_specifier] = STATE(2880), - [sym_struct_specifier] = STATE(2880), - [sym_scoped_type_identifier] = STATE(1624), - [sym_dependent_type] = STATE(2880), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(3248), - [sym_auto] = ACTIONS(5973), - [anon_sym_signed] = ACTIONS(5975), - [anon_sym_long] = ACTIONS(5975), - [anon_sym_COLON_COLON] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3258), - [sym_primitive_type] = ACTIONS(5973), - [anon_sym_unsigned] = ACTIONS(5975), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(5977), - [sym_identifier] = ACTIONS(3264), - [anon_sym_short] = ACTIONS(5975), + [1901] = { + [sym_union_specifier] = STATE(2888), + [sym_macro_type_specifier] = STATE(2888), + [sym_class_specifier] = STATE(2888), + [aux_sym_sized_type_specifier_repeat1] = STATE(2887), + [sym_sized_type_specifier] = STATE(2888), + [sym__type_specifier] = STATE(2888), + [sym_argument_list] = STATE(2889), + [sym_scoped_type_identifier] = STATE(1621), + [sym_enum_specifier] = STATE(2888), + [sym_template_type] = STATE(1622), + [sym_scoped_namespace_identifier] = STATE(1623), + [sym_dependent_type] = STATE(2888), + [sym_struct_specifier] = STATE(2888), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(3250), + [sym_auto] = ACTIONS(6004), + [anon_sym_signed] = ACTIONS(6006), + [anon_sym_long] = ACTIONS(6006), + [anon_sym_COLON_COLON] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3260), + [sym_primitive_type] = ACTIONS(6004), + [anon_sym_unsigned] = ACTIONS(6006), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(6008), + [sym_identifier] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(6006), }, - [1898] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2883), - [sym_logical_expression] = STATE(2883), - [sym_bitwise_expression] = STATE(2883), - [sym_cast_expression] = STATE(2883), - [sym_new_expression] = STATE(2883), - [sym_field_expression] = STATE(2883), - [sym_compound_literal_expression] = STATE(2883), - [sym_char_literal] = STATE(2883), - [sym_template_function] = STATE(2883), - [sym_conditional_expression] = STATE(2883), - [sym_equality_expression] = STATE(2883), - [sym_relational_expression] = STATE(2883), - [sym_delete_expression] = STATE(2883), - [sym_sizeof_expression] = STATE(2883), - [sym_parenthesized_expression] = STATE(2883), - [sym_lambda_expression] = STATE(2883), - [sym_concatenated_string] = STATE(2883), - [sym_string_literal] = STATE(1899), + [1902] = { + [sym_template_function] = STATE(2891), + [sym__expression] = STATE(2891), + [sym_logical_expression] = STATE(2891), + [sym_bitwise_expression] = STATE(2891), + [sym_cast_expression] = STATE(2891), + [sym_delete_expression] = STATE(2891), + [sym_field_expression] = STATE(2891), + [sym_compound_literal_expression] = STATE(2891), + [sym_lambda_expression] = STATE(2891), + [sym_char_literal] = STATE(2891), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2883), - [sym_assignment_expression] = STATE(2883), - [sym_pointer_expression] = STATE(2883), - [sym_shift_expression] = STATE(2883), - [sym_math_expression] = STATE(2883), - [sym_call_expression] = STATE(2883), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2891), + [sym_equality_expression] = STATE(2891), + [sym_relational_expression] = STATE(2891), + [sym_sizeof_expression] = STATE(2891), + [sym_subscript_expression] = STATE(2891), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(5981), - [sym_null] = ACTIONS(5981), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5979), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5981), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(2891), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(2891), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2891), + [sym_pointer_expression] = STATE(2891), + [sym_shift_expression] = STATE(2891), + [sym_math_expression] = STATE(2891), + [sym_call_expression] = STATE(2891), + [sym_new_expression] = STATE(2891), + [sym_raw_string_literal] = ACTIONS(6010), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(6012), + [sym_null] = ACTIONS(6012), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(6010), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(6012), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6012), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [1899] = { - [sym_string_literal] = STATE(2895), - [aux_sym_concatenated_string_repeat1] = STATE(2895), + [1903] = { + [sym_string_literal] = STATE(2903), + [aux_sym_concatenated_string_repeat1] = STATE(2903), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), @@ -83799,7 +84030,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1373), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -83816,1634 +84047,2429 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_RBRACK] = ACTIONS(165), }, - [1900] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(733), - [sym_logical_expression] = STATE(733), - [sym_bitwise_expression] = STATE(733), - [sym_cast_expression] = STATE(733), - [sym_new_expression] = STATE(733), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(733), - [sym_type_descriptor] = STATE(2896), - [sym_char_literal] = STATE(733), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(733), - [sym_conditional_expression] = STATE(733), - [sym_equality_expression] = STATE(733), - [sym_relational_expression] = STATE(733), - [sym_delete_expression] = STATE(733), - [sym_sizeof_expression] = STATE(733), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(733), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(733), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(733), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(735), - [sym_assignment_expression] = STATE(733), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(733), - [sym_math_expression] = STATE(733), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1329), + [1904] = { + [sym_template_function] = STATE(734), + [sym__expression] = STATE(734), + [sym_logical_expression] = STATE(734), + [sym_bitwise_expression] = STATE(734), + [sym_cast_expression] = STATE(734), + [sym_delete_expression] = STATE(734), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(734), + [sym_char_literal] = STATE(734), + [sym_lambda_expression] = STATE(734), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2904), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(736), + [sym_conditional_expression] = STATE(734), + [sym_equality_expression] = STATE(734), + [sym_relational_expression] = STATE(734), + [sym_sizeof_expression] = STATE(734), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(734), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(734), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(734), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(734), + [sym_math_expression] = STATE(734), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(734), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1337), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1331), + [sym_true] = ACTIONS(1339), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1331), + [sym_null] = ACTIONS(1339), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1337), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1331), + [sym_false] = ACTIONS(1339), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1331), + [sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1901] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(3850), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(664), + [1905] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(668), }, - [1902] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2897), - [sym_logical_expression] = STATE(2897), - [sym_bitwise_expression] = STATE(2897), - [sym_cast_expression] = STATE(2897), - [sym_new_expression] = STATE(2897), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2897), - [sym_char_literal] = STATE(2897), - [sym_template_function] = STATE(2897), - [sym_conditional_expression] = STATE(2897), - [sym_equality_expression] = STATE(2897), - [sym_relational_expression] = STATE(2897), - [sym_delete_expression] = STATE(2897), - [sym_sizeof_expression] = STATE(2897), - [sym_parenthesized_expression] = STATE(2897), - [sym_lambda_expression] = STATE(2897), - [sym_concatenated_string] = STATE(2897), - [sym_string_literal] = STATE(967), + [1906] = { + [anon_sym_LPAREN2] = ACTIONS(6016), + [anon_sym_final] = ACTIONS(6016), + [sym_noexcept] = ACTIONS(6016), + [anon_sym_mutable] = ACTIONS(6016), + [anon_sym_COMMA] = ACTIONS(6016), + [anon_sym__Atomic] = ACTIONS(6016), + [anon_sym_const] = ACTIONS(6018), + [anon_sym_GT2] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_constexpr] = ACTIONS(6016), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6016), + [anon_sym_override] = ACTIONS(6016), + [anon_sym_SEMI] = ACTIONS(6016), + [anon_sym_COLON] = ACTIONS(6016), + [anon_sym_explicit] = ACTIONS(6016), + [anon_sym_RPAREN] = ACTIONS(6016), + [anon_sym_DASH_GT] = ACTIONS(6016), + [anon_sym_EQ] = ACTIONS(6016), + [anon_sym_restrict] = ACTIONS(6016), + [anon_sym_LBRACE] = ACTIONS(6016), + }, + [1907] = { + [sym_template_function] = STATE(2905), + [sym__expression] = STATE(2905), + [sym_logical_expression] = STATE(2905), + [sym_bitwise_expression] = STATE(2905), + [sym_cast_expression] = STATE(2905), + [sym_delete_expression] = STATE(2905), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2905), + [sym_lambda_expression] = STATE(2905), + [sym_char_literal] = STATE(2905), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2897), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2897), - [sym_math_expression] = STATE(2897), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(2905), + [sym_equality_expression] = STATE(2905), + [sym_relational_expression] = STATE(2905), + [sym_sizeof_expression] = STATE(2905), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(5987), - [sym_null] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5985), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(5987), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5987), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(2905), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2905), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2905), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2905), + [sym_math_expression] = STATE(2905), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2905), + [sym_raw_string_literal] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6022), + [sym_null] = ACTIONS(6022), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6020), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6022), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6022), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1903] = { - [sym_union_specifier] = STATE(1673), - [sym_macro_type_specifier] = STATE(1673), - [sym_class_specifier] = STATE(1673), - [sym_template_type] = STATE(777), - [sym_sized_type_specifier] = STATE(1673), - [sym_scoped_namespace_identifier] = STATE(779), - [sym__type_specifier] = STATE(1673), - [aux_sym_sized_type_specifier_repeat1] = STATE(1904), - [sym_struct_specifier] = STATE(1673), - [sym_enum_specifier] = STATE(1673), - [sym_scoped_type_identifier] = STATE(778), - [sym_dependent_type] = STATE(1673), - [anon_sym_unsigned] = ACTIONS(3830), - [anon_sym_struct] = ACTIONS(1404), - [sym_auto] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(3830), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3830), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_typename] = ACTIONS(3832), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(3830), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(3306), + [1908] = { + [sym_union_specifier] = STATE(1671), + [sym_macro_type_specifier] = STATE(1671), + [sym_class_specifier] = STATE(1671), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_sized_type_specifier] = STATE(1671), + [sym__type_specifier] = STATE(1671), + [sym_scoped_type_identifier] = STATE(784), + [sym_enum_specifier] = STATE(1671), + [sym_template_type] = STATE(785), + [sym_scoped_namespace_identifier] = STATE(786), + [sym_dependent_type] = STATE(1671), + [sym_struct_specifier] = STATE(1671), + [anon_sym_unsigned] = ACTIONS(3790), + [anon_sym_struct] = ACTIONS(1418), + [sym_auto] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(3790), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3790), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_typename] = ACTIONS(3792), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(3790), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(3316), }, - [1904] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2898), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(5989), - [anon_sym_long] = ACTIONS(5989), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(5989), - [sym_identifier] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(3330), - [anon_sym_unsigned] = ACTIONS(5989), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [1909] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2906), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACK] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(6024), + [anon_sym_long] = ACTIONS(6024), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(6024), + [sym_identifier] = ACTIONS(3333), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(3335), + [anon_sym_unsigned] = ACTIONS(6024), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, - [1905] = { - [sym_initializer_list] = STATE(1694), - [sym_new_declarator] = STATE(1693), - [sym_argument_list] = STATE(1694), - [anon_sym_LPAREN2] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(5991), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1283), - [anon_sym_RBRACK] = ACTIONS(1283), + [1910] = { + [sym_new_declarator] = STATE(1689), + [sym_argument_list] = STATE(1690), + [sym_initializer_list] = STATE(1690), + [anon_sym_LPAREN2] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), }, - [1906] = { - [sym_union_specifier] = STATE(2900), - [sym_macro_type_specifier] = STATE(2900), - [sym_class_specifier] = STATE(2900), - [sym_template_type] = STATE(777), - [sym_sized_type_specifier] = STATE(2900), - [sym_scoped_namespace_identifier] = STATE(779), - [sym__type_specifier] = STATE(2900), - [aux_sym_sized_type_specifier_repeat1] = STATE(1904), - [sym_struct_specifier] = STATE(2900), - [sym_enum_specifier] = STATE(2900), - [sym_scoped_type_identifier] = STATE(778), - [sym_dependent_type] = STATE(2900), - [anon_sym_unsigned] = ACTIONS(3830), - [anon_sym_struct] = ACTIONS(1404), - [sym_auto] = ACTIONS(5993), - [anon_sym_signed] = ACTIONS(3830), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3830), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_typename] = ACTIONS(3832), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1420), - [anon_sym_short] = ACTIONS(3830), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(5993), + [1911] = { + [sym_union_specifier] = STATE(2908), + [sym_macro_type_specifier] = STATE(2908), + [sym_class_specifier] = STATE(2908), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_sized_type_specifier] = STATE(2908), + [sym__type_specifier] = STATE(2908), + [sym_scoped_type_identifier] = STATE(784), + [sym_enum_specifier] = STATE(2908), + [sym_template_type] = STATE(785), + [sym_scoped_namespace_identifier] = STATE(786), + [sym_dependent_type] = STATE(2908), + [sym_struct_specifier] = STATE(2908), + [anon_sym_unsigned] = ACTIONS(3790), + [anon_sym_struct] = ACTIONS(1418), + [sym_auto] = ACTIONS(6028), + [anon_sym_signed] = ACTIONS(3790), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3790), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_typename] = ACTIONS(3792), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(3790), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(6028), }, - [1907] = { - [sym_template_type] = STATE(239), + [1912] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(5995), - }, - [1908] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(800), - }, - [1909] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2902), - [sym_logical_expression] = STATE(2902), - [sym_bitwise_expression] = STATE(2902), - [sym_cast_expression] = STATE(2902), - [sym_new_expression] = STATE(2902), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2902), - [sym_char_literal] = STATE(2902), - [sym_template_function] = STATE(2902), - [sym_conditional_expression] = STATE(2902), - [sym_equality_expression] = STATE(2902), - [sym_relational_expression] = STATE(2902), - [sym_delete_expression] = STATE(2902), - [sym_sizeof_expression] = STATE(2902), - [sym_parenthesized_expression] = STATE(2902), - [sym_lambda_expression] = STATE(2902), - [sym_concatenated_string] = STATE(2902), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2902), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2902), - [sym_math_expression] = STATE(2902), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(5999), - [sym_null] = ACTIONS(5999), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5997), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(5999), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5999), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [1910] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2903), - [sym_logical_expression] = STATE(2903), - [sym_bitwise_expression] = STATE(2903), - [sym_cast_expression] = STATE(2903), - [sym_new_expression] = STATE(2903), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2903), - [sym_char_literal] = STATE(2903), - [sym_template_function] = STATE(2903), - [sym_conditional_expression] = STATE(2903), - [sym_equality_expression] = STATE(2903), - [sym_relational_expression] = STATE(2903), - [sym_delete_expression] = STATE(2903), - [sym_sizeof_expression] = STATE(2903), - [sym_parenthesized_expression] = STATE(2903), - [sym_lambda_expression] = STATE(2903), - [sym_concatenated_string] = STATE(2903), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2903), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2903), - [sym_math_expression] = STATE(2903), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6003), - [sym_null] = ACTIONS(6003), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6001), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6003), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6003), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [1911] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2904), - [sym_logical_expression] = STATE(2904), - [sym_bitwise_expression] = STATE(2904), - [sym_cast_expression] = STATE(2904), - [sym_new_expression] = STATE(2904), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2904), - [sym_char_literal] = STATE(2904), - [sym_template_function] = STATE(2904), - [sym_conditional_expression] = STATE(2904), - [sym_equality_expression] = STATE(2904), - [sym_relational_expression] = STATE(2904), - [sym_delete_expression] = STATE(2904), - [sym_sizeof_expression] = STATE(2904), - [sym_parenthesized_expression] = STATE(2904), - [sym_lambda_expression] = STATE(2904), - [sym_concatenated_string] = STATE(2904), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2904), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2904), - [sym_math_expression] = STATE(2904), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6005), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6007), - [sym_null] = ACTIONS(6007), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6005), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6007), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [1912] = { - [anon_sym_LPAREN2] = ACTIONS(6009), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(6009), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_STAR_EQ] = ACTIONS(6009), - [anon_sym_LT_LT_EQ] = ACTIONS(6009), - [anon_sym_PERCENT_EQ] = ACTIONS(6009), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6009), - [anon_sym_EQ_EQ] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6011), - [anon_sym_CARET_EQ] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_GT_EQ] = ACTIONS(6009), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_RBRACE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SLASH_EQ] = ACTIONS(6009), - [anon_sym_PLUS_EQ] = ACTIONS(6009), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_GT] = ACTIONS(6011), - [anon_sym_PIPE_EQ] = ACTIONS(6009), - [anon_sym_GT_GT_EQ] = ACTIONS(6009), - [anon_sym_COMMA] = ACTIONS(6009), - [anon_sym_PIPE_PIPE] = ACTIONS(6009), - [anon_sym_DOT] = ACTIONS(6009), - [anon_sym_LT_LT] = ACTIONS(6011), - [anon_sym_LBRACK] = ACTIONS(6009), - [anon_sym_PERCENT] = ACTIONS(6011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6009), - [anon_sym_DASH_EQ] = ACTIONS(6009), - [anon_sym_SEMI] = ACTIONS(6009), - [anon_sym_BANG_EQ] = ACTIONS(6009), - [anon_sym_AMP_EQ] = ACTIONS(6009), - [anon_sym_AMP_AMP] = ACTIONS(6009), - [anon_sym_LT_EQ] = ACTIONS(6009), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_PLUS_PLUS] = ACTIONS(6009), - [anon_sym_GT_GT] = ACTIONS(6011), - [anon_sym_DASH_DASH] = ACTIONS(6009), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(6030), }, [1913] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2905), - [sym_logical_expression] = STATE(2905), - [sym_bitwise_expression] = STATE(2905), - [sym_cast_expression] = STATE(2905), - [sym_new_expression] = STATE(2905), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2905), - [sym_char_literal] = STATE(2905), - [sym_template_function] = STATE(2905), - [sym_conditional_expression] = STATE(2905), - [sym_equality_expression] = STATE(2905), - [sym_relational_expression] = STATE(2905), - [sym_delete_expression] = STATE(2905), - [sym_sizeof_expression] = STATE(2905), - [sym_parenthesized_expression] = STATE(2905), - [sym_lambda_expression] = STATE(2905), - [sym_concatenated_string] = STATE(2905), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2905), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2905), - [sym_math_expression] = STATE(2905), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6013), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6015), - [sym_null] = ACTIONS(6015), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6013), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6015), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(804), }, [1914] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2906), - [sym_logical_expression] = STATE(2906), - [sym_bitwise_expression] = STATE(2906), - [sym_cast_expression] = STATE(2906), - [sym_new_expression] = STATE(2906), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2906), - [sym_char_literal] = STATE(2906), - [sym_template_function] = STATE(2906), - [sym_conditional_expression] = STATE(2906), - [sym_equality_expression] = STATE(2906), - [sym_relational_expression] = STATE(2906), - [sym_delete_expression] = STATE(2906), - [sym_sizeof_expression] = STATE(2906), - [sym_parenthesized_expression] = STATE(2906), - [sym_lambda_expression] = STATE(2906), - [sym_concatenated_string] = STATE(2906), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2906), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2906), - [sym_math_expression] = STATE(2906), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6017), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6019), - [sym_null] = ACTIONS(6019), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6017), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6019), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [1915] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(1712), - [sym_logical_expression] = STATE(1712), - [sym_bitwise_expression] = STATE(1712), - [sym_cast_expression] = STATE(1712), - [sym_new_expression] = STATE(1712), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(1712), - [sym_char_literal] = STATE(1712), - [sym_template_function] = STATE(1712), - [sym_conditional_expression] = STATE(1712), - [sym_equality_expression] = STATE(1712), - [sym_relational_expression] = STATE(1712), - [sym_delete_expression] = STATE(1712), - [sym_sizeof_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_lambda_expression] = STATE(1712), - [sym_concatenated_string] = STATE(1712), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(1712), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(1712), - [sym_math_expression] = STATE(1712), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(3384), - [sym_null] = ACTIONS(3384), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [1916] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2907), - [sym_logical_expression] = STATE(2907), - [sym_bitwise_expression] = STATE(2907), - [sym_cast_expression] = STATE(2907), - [sym_new_expression] = STATE(2907), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2907), - [sym_char_literal] = STATE(2907), - [sym_template_function] = STATE(2907), - [sym_conditional_expression] = STATE(2907), - [sym_equality_expression] = STATE(2907), - [sym_relational_expression] = STATE(2907), - [sym_delete_expression] = STATE(2907), - [sym_sizeof_expression] = STATE(2907), - [sym_parenthesized_expression] = STATE(2907), - [sym_lambda_expression] = STATE(2907), - [sym_concatenated_string] = STATE(2907), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2907), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2907), - [sym_math_expression] = STATE(2907), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6023), - [sym_null] = ACTIONS(6023), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6021), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6023), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [1917] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2908), - [sym_logical_expression] = STATE(2908), - [sym_bitwise_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_new_expression] = STATE(2908), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2908), - [sym_char_literal] = STATE(2908), - [sym_template_function] = STATE(2908), - [sym_conditional_expression] = STATE(2908), - [sym_equality_expression] = STATE(2908), - [sym_relational_expression] = STATE(2908), - [sym_delete_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_parenthesized_expression] = STATE(2908), - [sym_lambda_expression] = STATE(2908), - [sym_concatenated_string] = STATE(2908), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2908), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2908), - [sym_math_expression] = STATE(2908), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6027), - [sym_null] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6025), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [1918] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2909), - [sym_logical_expression] = STATE(2909), - [sym_bitwise_expression] = STATE(2909), - [sym_cast_expression] = STATE(2909), - [sym_new_expression] = STATE(2909), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2909), - [sym_char_literal] = STATE(2909), - [sym_template_function] = STATE(2909), - [sym_conditional_expression] = STATE(2909), - [sym_equality_expression] = STATE(2909), - [sym_relational_expression] = STATE(2909), - [sym_delete_expression] = STATE(2909), - [sym_sizeof_expression] = STATE(2909), - [sym_parenthesized_expression] = STATE(2909), - [sym_lambda_expression] = STATE(2909), - [sym_concatenated_string] = STATE(2909), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2909), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2909), - [sym_math_expression] = STATE(2909), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6029), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6031), - [sym_null] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6029), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [1919] = { - [sym_template_type] = STATE(71), + [sym_template_function] = STATE(2910), [sym__expression] = STATE(2910), [sym_logical_expression] = STATE(2910), [sym_bitwise_expression] = STATE(2910), [sym_cast_expression] = STATE(2910), - [sym_new_expression] = STATE(2910), - [sym_field_expression] = STATE(980), + [sym_delete_expression] = STATE(2910), + [sym_field_expression] = STATE(950), [sym_compound_literal_expression] = STATE(2910), + [sym_lambda_expression] = STATE(2910), [sym_char_literal] = STATE(2910), - [sym_template_function] = STATE(2910), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(2910), [sym_equality_expression] = STATE(2910), [sym_relational_expression] = STATE(2910), - [sym_delete_expression] = STATE(2910), [sym_sizeof_expression] = STATE(2910), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(2910), - [sym_lambda_expression] = STATE(2910), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), [sym_concatenated_string] = STATE(2910), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(2910), - [sym_pointer_expression] = STATE(980), + [sym_pointer_expression] = STATE(950), [sym_shift_expression] = STATE(2910), [sym_math_expression] = STATE(2910), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6033), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6035), - [sym_null] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6033), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2910), + [sym_raw_string_literal] = ACTIONS(6032), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6034), + [sym_null] = ACTIONS(6034), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6032), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6034), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6034), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1920] = { - [sym_template_type] = STATE(239), + [1915] = { + [sym_template_function] = STATE(2911), [sym__expression] = STATE(2911), [sym_logical_expression] = STATE(2911), [sym_bitwise_expression] = STATE(2911), [sym_cast_expression] = STATE(2911), - [sym_new_expression] = STATE(2911), - [sym_field_expression] = STATE(966), + [sym_delete_expression] = STATE(2911), + [sym_field_expression] = STATE(950), [sym_compound_literal_expression] = STATE(2911), + [sym_lambda_expression] = STATE(2911), [sym_char_literal] = STATE(2911), - [sym_template_function] = STATE(2911), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(2911), [sym_equality_expression] = STATE(2911), [sym_relational_expression] = STATE(2911), - [sym_delete_expression] = STATE(2911), [sym_sizeof_expression] = STATE(2911), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(2911), - [sym_lambda_expression] = STATE(2911), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), [sym_concatenated_string] = STATE(2911), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(2911), - [sym_pointer_expression] = STATE(966), + [sym_pointer_expression] = STATE(950), [sym_shift_expression] = STATE(2911), [sym_math_expression] = STATE(2911), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2911), + [sym_raw_string_literal] = ACTIONS(6036), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6038), + [sym_null] = ACTIONS(6038), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6036), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6038), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6038), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), + }, + [1916] = { + [sym_template_function] = STATE(2912), + [sym__expression] = STATE(2912), + [sym_logical_expression] = STATE(2912), + [sym_bitwise_expression] = STATE(2912), + [sym_cast_expression] = STATE(2912), + [sym_delete_expression] = STATE(2912), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2912), + [sym_lambda_expression] = STATE(2912), + [sym_char_literal] = STATE(2912), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2912), + [sym_equality_expression] = STATE(2912), + [sym_relational_expression] = STATE(2912), + [sym_sizeof_expression] = STATE(2912), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6037), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6039), - [sym_null] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6037), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(2912), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2912), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2912), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2912), + [sym_math_expression] = STATE(2912), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2912), + [sym_raw_string_literal] = ACTIONS(6040), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6042), + [sym_null] = ACTIONS(6042), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6040), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6042), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6042), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1921] = { - [sym_string_literal] = STATE(2912), - [aux_sym_concatenated_string_repeat1] = STATE(2912), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_RBRACK] = ACTIONS(1701), + [1917] = { + [sym_template_function] = STATE(2913), + [sym__expression] = STATE(2913), + [sym_logical_expression] = STATE(2913), + [sym_bitwise_expression] = STATE(2913), + [sym_cast_expression] = STATE(2913), + [sym_delete_expression] = STATE(2913), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2913), + [sym_lambda_expression] = STATE(2913), + [sym_char_literal] = STATE(2913), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2913), + [sym_equality_expression] = STATE(2913), + [sym_relational_expression] = STATE(2913), + [sym_sizeof_expression] = STATE(2913), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(2913), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2913), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2913), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2913), + [sym_math_expression] = STATE(2913), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2913), + [sym_raw_string_literal] = ACTIONS(6044), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6046), + [sym_null] = ACTIONS(6046), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6044), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6046), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6046), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1922] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(654), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1918] = { + [sym_template_function] = STATE(2914), + [sym__expression] = STATE(2914), + [sym_logical_expression] = STATE(2914), + [sym_bitwise_expression] = STATE(2914), + [sym_cast_expression] = STATE(2914), + [sym_delete_expression] = STATE(2914), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2914), + [sym_lambda_expression] = STATE(2914), + [sym_char_literal] = STATE(2914), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2914), + [sym_equality_expression] = STATE(2914), + [sym_relational_expression] = STATE(2914), + [sym_sizeof_expression] = STATE(2914), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(2914), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2914), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2914), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2914), + [sym_math_expression] = STATE(2914), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2914), + [sym_raw_string_literal] = ACTIONS(6048), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6050), + [sym_null] = ACTIONS(6050), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6048), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6050), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6050), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1923] = { - [anon_sym_RPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(3), + [1919] = { + [sym_template_function] = STATE(1708), + [sym__expression] = STATE(1708), + [sym_logical_expression] = STATE(1708), + [sym_bitwise_expression] = STATE(1708), + [sym_cast_expression] = STATE(1708), + [sym_delete_expression] = STATE(1708), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(1708), + [sym_lambda_expression] = STATE(1708), + [sym_char_literal] = STATE(1708), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1708), + [sym_equality_expression] = STATE(1708), + [sym_relational_expression] = STATE(1708), + [sym_sizeof_expression] = STATE(1708), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(1708), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(1708), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1708), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(1708), + [sym_math_expression] = STATE(1708), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(1708), + [sym_raw_string_literal] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(3390), + [sym_null] = ACTIONS(3390), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(3388), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1924] = { - [sym_template_type] = STATE(71), + [1920] = { + [sym_template_function] = STATE(2915), [sym__expression] = STATE(2915), [sym_logical_expression] = STATE(2915), [sym_bitwise_expression] = STATE(2915), [sym_cast_expression] = STATE(2915), - [sym_new_expression] = STATE(2915), - [sym_field_expression] = STATE(980), + [sym_delete_expression] = STATE(2915), + [sym_field_expression] = STATE(950), [sym_compound_literal_expression] = STATE(2915), + [sym_lambda_expression] = STATE(2915), [sym_char_literal] = STATE(2915), - [sym_template_function] = STATE(2915), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(2915), [sym_equality_expression] = STATE(2915), [sym_relational_expression] = STATE(2915), - [sym_delete_expression] = STATE(2915), [sym_sizeof_expression] = STATE(2915), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(2915), - [sym_lambda_expression] = STATE(2915), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), [sym_concatenated_string] = STATE(2915), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(2915), - [sym_pointer_expression] = STATE(980), + [sym_pointer_expression] = STATE(950), [sym_shift_expression] = STATE(2915), [sym_math_expression] = STATE(2915), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6045), - [sym_null] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6043), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6045), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2915), + [sym_raw_string_literal] = ACTIONS(6052), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6054), + [sym_null] = ACTIONS(6054), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6052), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6054), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6054), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [1925] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_PERCENT] = ACTIONS(662), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(662), - [anon_sym_COLON] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(662), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_DASH_DASH] = ACTIONS(662), - }, - [1926] = { - [sym_template_type] = STATE(189), + [1921] = { + [sym_template_function] = STATE(2916), [sym__expression] = STATE(2916), [sym_logical_expression] = STATE(2916), [sym_bitwise_expression] = STATE(2916), [sym_cast_expression] = STATE(2916), - [sym_new_expression] = STATE(2916), - [sym_field_expression] = STATE(2916), + [sym_delete_expression] = STATE(2916), + [sym_field_expression] = STATE(950), [sym_compound_literal_expression] = STATE(2916), + [sym_lambda_expression] = STATE(2916), [sym_char_literal] = STATE(2916), - [sym_template_function] = STATE(2916), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(2916), [sym_equality_expression] = STATE(2916), [sym_relational_expression] = STATE(2916), - [sym_delete_expression] = STATE(2916), [sym_sizeof_expression] = STATE(2916), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), [sym_parenthesized_expression] = STATE(2916), - [sym_lambda_expression] = STATE(2916), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), [sym_concatenated_string] = STATE(2916), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2916), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(2916), - [sym_pointer_expression] = STATE(2916), + [sym_pointer_expression] = STATE(950), [sym_shift_expression] = STATE(2916), [sym_math_expression] = STATE(2916), - [sym_call_expression] = STATE(2916), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6049), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(6051), - [sym_null] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6049), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2916), + [sym_raw_string_literal] = ACTIONS(6056), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6058), + [sym_null] = ACTIONS(6058), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6056), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6058), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6058), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), + }, + [1922] = { + [sym_template_function] = STATE(2917), + [sym__expression] = STATE(2917), + [sym_logical_expression] = STATE(2917), + [sym_bitwise_expression] = STATE(2917), + [sym_cast_expression] = STATE(2917), + [sym_delete_expression] = STATE(2917), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2917), + [sym_lambda_expression] = STATE(2917), + [sym_char_literal] = STATE(2917), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2917), + [sym_equality_expression] = STATE(2917), + [sym_relational_expression] = STATE(2917), + [sym_sizeof_expression] = STATE(2917), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(2917), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2917), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2917), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2917), + [sym_math_expression] = STATE(2917), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2917), + [sym_raw_string_literal] = ACTIONS(6060), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6062), + [sym_null] = ACTIONS(6062), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6060), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6062), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6062), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), + }, + [1923] = { + [sym_template_function] = STATE(2918), + [sym__expression] = STATE(2918), + [sym_logical_expression] = STATE(2918), + [sym_bitwise_expression] = STATE(2918), + [sym_cast_expression] = STATE(2918), + [sym_delete_expression] = STATE(2918), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2918), + [sym_lambda_expression] = STATE(2918), + [sym_char_literal] = STATE(2918), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2918), + [sym_equality_expression] = STATE(2918), + [sym_relational_expression] = STATE(2918), + [sym_sizeof_expression] = STATE(2918), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2918), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2918), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2918), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2918), + [sym_math_expression] = STATE(2918), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2918), + [sym_raw_string_literal] = ACTIONS(6064), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6066), + [sym_null] = ACTIONS(6066), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6064), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6066), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6066), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), + }, + [1924] = { + [sym_template_function] = STATE(2919), + [sym__expression] = STATE(2919), + [sym_logical_expression] = STATE(2919), + [sym_bitwise_expression] = STATE(2919), + [sym_cast_expression] = STATE(2919), + [sym_delete_expression] = STATE(2919), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2919), + [sym_lambda_expression] = STATE(2919), + [sym_char_literal] = STATE(2919), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2919), + [sym_equality_expression] = STATE(2919), + [sym_relational_expression] = STATE(2919), + [sym_sizeof_expression] = STATE(2919), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(2919), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(2919), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2919), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2919), + [sym_math_expression] = STATE(2919), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2919), + [sym_raw_string_literal] = ACTIONS(6068), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6070), + [sym_null] = ACTIONS(6070), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6068), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6070), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6070), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), + }, + [1925] = { + [sym_string_literal] = STATE(2920), + [aux_sym_concatenated_string_repeat1] = STATE(2920), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(1766), + }, + [1926] = { + [sym_template_function] = STATE(755), + [sym__expression] = STATE(755), + [sym_logical_expression] = STATE(755), + [sym_bitwise_expression] = STATE(755), + [sym_cast_expression] = STATE(755), + [sym_delete_expression] = STATE(755), + [sym_field_expression] = STATE(755), + [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), + [sym_char_literal] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), + [sym_conditional_expression] = STATE(755), + [sym_equality_expression] = STATE(755), + [sym_relational_expression] = STATE(755), + [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), + [sym_parenthesized_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(755), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(755), + [sym_pointer_expression] = STATE(755), + [sym_shift_expression] = STATE(755), + [sym_math_expression] = STATE(755), + [sym_call_expression] = STATE(755), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(6072), }, [1927] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(2917), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(6072), + }, + [1928] = { + [aux_sym_type_definition_repeat1] = STATE(1928), + [sym_type_qualifier] = STATE(1928), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_RBRACK] = ACTIONS(2106), + [sym_true] = ACTIONS(2101), + [anon_sym_mutable] = ACTIONS(6074), + [sym_null] = ACTIONS(2101), + [sym_raw_string_literal] = ACTIONS(2106), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2101), + [anon_sym_volatile] = ACTIONS(6074), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_explicit] = ACTIONS(6074), + [sym_identifier] = ACTIONS(2101), + [anon_sym_new] = ACTIONS(2101), + [anon_sym_delete] = ACTIONS(2101), + [anon_sym__Atomic] = ACTIONS(6074), + [anon_sym_const] = ACTIONS(6074), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_constexpr] = ACTIONS(6074), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2101), + [sym_nullptr] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_restrict] = ACTIONS(6074), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_DASH_DASH] = ACTIONS(2106), + }, + [1929] = { + [aux_sym_type_definition_repeat1] = STATE(1929), + [sym_type_qualifier] = STATE(1929), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_volatile] = ACTIONS(4989), + [anon_sym_mutable] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym__Atomic] = ACTIONS(4989), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_explicit] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_restrict] = ACTIONS(4989), + [anon_sym_constexpr] = ACTIONS(4989), + [sym_comment] = ACTIONS(3), + }, + [1930] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(3832), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(3832), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3832), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(3832), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(358), + }, + [1931] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2922), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(6077), + [anon_sym_signed] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_long] = ACTIONS(6077), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_short] = ACTIONS(6077), + [sym_identifier] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(560), + }, + [1932] = { + [sym_abstract_reference_declarator] = STATE(2925), + [sym_abstract_array_declarator] = STATE(2925), + [sym_abstract_pointer_declarator] = STATE(2925), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(2925), + [sym__abstract_declarator] = STATE(2925), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6083), + [anon_sym_LBRACE] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + }, + [1933] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(1933), + [sym_type_qualifier] = STATE(1933), + [anon_sym_LPAREN2] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(6089), + [anon_sym_volatile] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), + [anon_sym_LBRACE] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(6092), + }, + [1934] = { + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(6098), + [anon_sym_mutable] = ACTIONS(6098), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(6098), + [anon_sym_const] = ACTIONS(6100), + [anon_sym_GT2] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(6098), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6098), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6098), + [anon_sym_COLON] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(6098), + [anon_sym_RPAREN] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(6098), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_restrict] = ACTIONS(6098), + [anon_sym_LBRACE] = ACTIONS(6098), + }, + [1935] = { + [sym_template_function] = STATE(2927), + [sym__expression] = STATE(2927), + [sym_logical_expression] = STATE(2927), + [sym_bitwise_expression] = STATE(2927), + [sym_cast_expression] = STATE(2927), + [sym_delete_expression] = STATE(2927), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2927), + [sym_lambda_expression] = STATE(2927), + [sym_char_literal] = STATE(2927), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_type_qualifier] = STATE(1928), + [sym_conditional_expression] = STATE(2927), + [sym_equality_expression] = STATE(2927), + [sym_relational_expression] = STATE(2927), + [sym_sizeof_expression] = STATE(2927), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(2927), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(1928), + [sym_concatenated_string] = STATE(2927), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2927), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2927), + [sym_math_expression] = STATE(2927), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2927), + [sym_raw_string_literal] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6104), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(6104), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(6106), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(6102), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(6104), + [sym_nullptr] = ACTIONS(6104), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(6072), + }, + [1936] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(1933), + [sym_type_qualifier] = STATE(1933), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(3840), + [anon_sym_volatile] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1070), + }, + [1937] = { + [anon_sym_LPAREN2] = ACTIONS(6108), + [anon_sym_LT] = ACTIONS(6108), + [anon_sym_LBRACE] = ACTIONS(6108), + [sym_comment] = ACTIONS(3), + }, + [1938] = { + [anon_sym_LPAREN2] = ACTIONS(6110), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(6110), + [sym_comment] = ACTIONS(3), + }, + [1939] = { + [sym_destructor_name] = STATE(2929), + [sym_identifier] = ACTIONS(6112), + [sym_operator_name] = ACTIONS(6114), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [1940] = { + [anon_sym_EQ] = ACTIONS(6116), + [anon_sym_COMMA] = ACTIONS(6116), + [anon_sym_LBRACE] = ACTIONS(6116), + [sym_comment] = ACTIONS(3), + }, + [1941] = { + [anon_sym_EQ] = ACTIONS(6118), + [anon_sym_COMMA] = ACTIONS(6118), + [anon_sym_LBRACE] = ACTIONS(6118), + [sym_comment] = ACTIONS(3), + }, + [1942] = { + [sym_destructor_name] = STATE(2931), + [sym_identifier] = ACTIONS(6120), + [sym_operator_name] = ACTIONS(6122), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [1943] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_field_identifier] = STATE(964), + [sym_template_type] = STATE(965), + [sym_field_initializer] = STATE(2933), + [sym_scoped_namespace_identifier] = STATE(965), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [sym_comment] = ACTIONS(3), + }, + [1944] = { + [aux_sym_field_initializer_list_repeat1] = STATE(2934), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_COMMA] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(6124), + [sym_comment] = ACTIONS(3), + }, + [1945] = { + [anon_sym_DASH] = ACTIONS(6126), + [sym_raw_string_literal] = ACTIONS(6128), + [sym_true] = ACTIONS(6126), + [anon_sym_mutable] = ACTIONS(6126), + [sym_null] = ACTIONS(6126), + [anon_sym_break] = ACTIONS(6126), + [anon_sym_BANG] = ACTIONS(6128), + [anon_sym_sizeof] = ACTIONS(6126), + [anon_sym_volatile] = ACTIONS(6126), + [anon_sym_PLUS] = ACTIONS(6126), + [anon_sym_typedef] = ACTIONS(6126), + [anon_sym_switch] = ACTIONS(6126), + [anon_sym_explicit] = ACTIONS(6126), + [sym_identifier] = ACTIONS(6126), + [anon_sym_delete] = ACTIONS(6126), + [anon_sym_continue] = ACTIONS(6126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6126), + [anon_sym__Atomic] = ACTIONS(6126), + [sym_number_literal] = ACTIONS(6128), + [anon_sym_extern] = ACTIONS(6126), + [anon_sym_enum] = ACTIONS(6126), + [anon_sym_constexpr] = ACTIONS(6126), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6128), + [anon_sym_namespace] = ACTIONS(6126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6126), + [anon_sym_SQUOTE] = ACTIONS(6128), + [anon_sym_LBRACE] = ACTIONS(6128), + [anon_sym_DASH_DASH] = ACTIONS(6128), + [anon_sym_LPAREN2] = ACTIONS(6128), + [anon_sym_struct] = ACTIONS(6126), + [sym_auto] = ACTIONS(6126), + [anon_sym_signed] = ACTIONS(6126), + [anon_sym_long] = ACTIONS(6126), + [anon_sym_COLON_COLON] = ACTIONS(6128), + [anon_sym_using] = ACTIONS(6126), + [sym_preproc_directive] = ACTIONS(6126), + [aux_sym_preproc_if_token1] = ACTIONS(6126), + [anon_sym_AMP] = ACTIONS(6126), + [anon_sym_static] = ACTIONS(6126), + [anon_sym_RBRACE] = ACTIONS(6128), + [anon_sym_STAR] = ACTIONS(6128), + [anon_sym_union] = ACTIONS(6126), + [anon_sym_typename] = ACTIONS(6126), + [anon_sym_short] = ACTIONS(6126), + [anon_sym_new] = ACTIONS(6126), + [anon_sym_goto] = ACTIONS(6126), + [sym_operator_name] = ACTIONS(6128), + [anon_sym_while] = ACTIONS(6126), + [anon_sym_try] = ACTIONS(6126), + [anon_sym_for] = ACTIONS(6126), + [aux_sym_preproc_include_token1] = ACTIONS(6126), + [anon_sym_register] = ACTIONS(6126), + [anon_sym_DQUOTE] = ACTIONS(6128), + [anon_sym_const] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(6126), + [anon_sym_class] = ACTIONS(6126), + [anon_sym_if] = ACTIONS(6126), + [sym_primitive_type] = ACTIONS(6126), + [sym_false] = ACTIONS(6126), + [sym_nullptr] = ACTIONS(6126), + [anon_sym_do] = ACTIONS(6126), + [anon_sym_template] = ACTIONS(6126), + [anon_sym_return] = ACTIONS(6126), + [anon_sym_TILDE] = ACTIONS(6128), + [anon_sym_SEMI] = ACTIONS(6128), + [ts_builtin_sym_end] = ACTIONS(6128), + [aux_sym_preproc_def_token1] = ACTIONS(6126), + [anon_sym_AMP_AMP] = ACTIONS(6128), + [anon_sym_inline] = ACTIONS(6126), + [anon_sym_PLUS_PLUS] = ACTIONS(6128), + [anon_sym_restrict] = ACTIONS(6126), + }, + [1946] = { + [anon_sym_DASH] = ACTIONS(6130), + [sym_raw_string_literal] = ACTIONS(6132), + [sym_true] = ACTIONS(6130), + [anon_sym_mutable] = ACTIONS(6130), + [sym_null] = ACTIONS(6130), + [anon_sym_break] = ACTIONS(6130), + [anon_sym_BANG] = ACTIONS(6132), + [anon_sym_sizeof] = ACTIONS(6130), + [anon_sym_volatile] = ACTIONS(6130), + [anon_sym_PLUS] = ACTIONS(6130), + [anon_sym_typedef] = ACTIONS(6130), + [anon_sym_switch] = ACTIONS(6130), + [anon_sym_explicit] = ACTIONS(6130), + [sym_identifier] = ACTIONS(6130), + [anon_sym_delete] = ACTIONS(6130), + [anon_sym_continue] = ACTIONS(6130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6130), + [anon_sym__Atomic] = ACTIONS(6130), + [sym_number_literal] = ACTIONS(6132), + [anon_sym_extern] = ACTIONS(6130), + [anon_sym_enum] = ACTIONS(6130), + [anon_sym_constexpr] = ACTIONS(6130), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6132), + [anon_sym_namespace] = ACTIONS(6130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6130), + [anon_sym_SQUOTE] = ACTIONS(6132), + [anon_sym_LBRACE] = ACTIONS(6132), + [anon_sym_DASH_DASH] = ACTIONS(6132), + [anon_sym_LPAREN2] = ACTIONS(6132), + [anon_sym_struct] = ACTIONS(6130), + [sym_auto] = ACTIONS(6130), + [anon_sym_signed] = ACTIONS(6130), + [anon_sym_long] = ACTIONS(6130), + [anon_sym_COLON_COLON] = ACTIONS(6132), + [anon_sym_using] = ACTIONS(6130), + [sym_preproc_directive] = ACTIONS(6130), + [aux_sym_preproc_if_token1] = ACTIONS(6130), + [anon_sym_AMP] = ACTIONS(6130), + [anon_sym_static] = ACTIONS(6130), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_STAR] = ACTIONS(6132), + [anon_sym_union] = ACTIONS(6130), + [anon_sym_typename] = ACTIONS(6130), + [anon_sym_short] = ACTIONS(6130), + [anon_sym_new] = ACTIONS(6130), + [anon_sym_goto] = ACTIONS(6130), + [sym_operator_name] = ACTIONS(6132), + [anon_sym_while] = ACTIONS(6130), + [anon_sym_try] = ACTIONS(6130), + [anon_sym_for] = ACTIONS(6130), + [aux_sym_preproc_include_token1] = ACTIONS(6130), + [anon_sym_register] = ACTIONS(6130), + [anon_sym_DQUOTE] = ACTIONS(6132), + [anon_sym_const] = ACTIONS(6130), + [anon_sym_LBRACK] = ACTIONS(6130), + [anon_sym_class] = ACTIONS(6130), + [anon_sym_if] = ACTIONS(6130), + [sym_primitive_type] = ACTIONS(6130), + [sym_false] = ACTIONS(6130), + [sym_nullptr] = ACTIONS(6130), + [anon_sym_do] = ACTIONS(6130), + [anon_sym_template] = ACTIONS(6130), + [anon_sym_return] = ACTIONS(6130), + [anon_sym_TILDE] = ACTIONS(6132), + [anon_sym_SEMI] = ACTIONS(6132), + [ts_builtin_sym_end] = ACTIONS(6132), + [aux_sym_preproc_def_token1] = ACTIONS(6130), + [anon_sym_AMP_AMP] = ACTIONS(6132), + [anon_sym_inline] = ACTIONS(6130), + [anon_sym_PLUS_PLUS] = ACTIONS(6132), + [anon_sym_restrict] = ACTIONS(6130), + }, + [1947] = { + [anon_sym_LPAREN2] = ACTIONS(2168), + [anon_sym_EQ] = ACTIONS(2171), + [anon_sym_mutable] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_register] = ACTIONS(2173), + [anon_sym__Atomic] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_constexpr] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_volatile] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_explicit] = ACTIONS(2173), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_inline] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2173), + [anon_sym_restrict] = ACTIONS(2173), + [sym_operator_name] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2168), + }, + [1948] = { + [anon_sym_LPAREN2] = ACTIONS(3854), + [anon_sym_EQ] = ACTIONS(3857), + [anon_sym_mutable] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3857), + [anon_sym_register] = ACTIONS(3859), + [anon_sym__Atomic] = ACTIONS(3859), + [anon_sym_const] = ACTIONS(3859), + [anon_sym_extern] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(3859), + [anon_sym_volatile] = ACTIONS(3859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3857), + [anon_sym_STAR] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3857), + [anon_sym_explicit] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_inline] = ACTIONS(3859), + [sym_identifier] = ACTIONS(3859), + [anon_sym_restrict] = ACTIONS(3859), + [sym_operator_name] = ACTIONS(3857), + [anon_sym_RPAREN] = ACTIONS(3854), + }, + [1949] = { + [anon_sym_DASH] = ACTIONS(6134), + [sym_raw_string_literal] = ACTIONS(6136), + [sym_true] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [sym_null] = ACTIONS(6134), + [anon_sym_break] = ACTIONS(6134), + [anon_sym_BANG] = ACTIONS(6136), + [anon_sym_sizeof] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_PLUS] = ACTIONS(6134), + [anon_sym_typedef] = ACTIONS(6134), + [anon_sym_switch] = ACTIONS(6134), + [anon_sym_explicit] = ACTIONS(6134), + [sym_identifier] = ACTIONS(6134), + [anon_sym_delete] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [sym_number_literal] = ACTIONS(6136), + [anon_sym_extern] = ACTIONS(6134), + [anon_sym_enum] = ACTIONS(6134), + [anon_sym_constexpr] = ACTIONS(6134), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6136), + [anon_sym_namespace] = ACTIONS(6134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6134), + [anon_sym_SQUOTE] = ACTIONS(6136), + [anon_sym_LBRACE] = ACTIONS(6136), + [anon_sym_DASH_DASH] = ACTIONS(6136), + [anon_sym_LPAREN2] = ACTIONS(6136), + [anon_sym_struct] = ACTIONS(6134), + [sym_auto] = ACTIONS(6134), + [anon_sym_signed] = ACTIONS(6134), + [anon_sym_long] = ACTIONS(6134), + [anon_sym_COLON_COLON] = ACTIONS(6136), + [anon_sym_using] = ACTIONS(6134), + [sym_preproc_directive] = ACTIONS(6134), + [aux_sym_preproc_if_token1] = ACTIONS(6134), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_static] = ACTIONS(6134), + [anon_sym_RBRACE] = ACTIONS(6136), + [anon_sym_STAR] = ACTIONS(6136), + [anon_sym_union] = ACTIONS(6134), + [anon_sym_typename] = ACTIONS(6134), + [anon_sym_short] = ACTIONS(6134), + [anon_sym_new] = ACTIONS(6134), + [anon_sym_goto] = ACTIONS(6134), + [sym_operator_name] = ACTIONS(6136), + [anon_sym_while] = ACTIONS(6134), + [anon_sym_try] = ACTIONS(6134), + [anon_sym_for] = ACTIONS(6134), + [aux_sym_preproc_include_token1] = ACTIONS(6134), + [anon_sym_register] = ACTIONS(6134), + [anon_sym_DQUOTE] = ACTIONS(6136), + [anon_sym_const] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_class] = ACTIONS(6134), + [anon_sym_if] = ACTIONS(6134), + [sym_primitive_type] = ACTIONS(6134), + [sym_false] = ACTIONS(6134), + [sym_nullptr] = ACTIONS(6134), + [anon_sym_do] = ACTIONS(6134), + [anon_sym_template] = ACTIONS(6134), + [anon_sym_return] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6136), + [anon_sym_SEMI] = ACTIONS(6136), + [ts_builtin_sym_end] = ACTIONS(6136), + [aux_sym_preproc_def_token1] = ACTIONS(6134), + [anon_sym_AMP_AMP] = ACTIONS(6136), + [anon_sym_inline] = ACTIONS(6134), + [anon_sym_PLUS_PLUS] = ACTIONS(6136), + [anon_sym_restrict] = ACTIONS(6134), + }, + [1950] = { + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(6138), + [sym_comment] = ACTIONS(3), + }, + [1951] = { + [sym_destructor_name] = STATE(2929), + [sym_identifier] = ACTIONS(6141), + [sym_operator_name] = ACTIONS(6114), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [1952] = { + [anon_sym_LPAREN2] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6145), + [anon_sym_DASH_GT] = ACTIONS(6143), + [anon_sym_RPAREN] = ACTIONS(6143), + [anon_sym_LBRACE] = ACTIONS(6143), + [anon_sym_STAR_EQ] = ACTIONS(6143), + [anon_sym_LT_LT_EQ] = ACTIONS(6143), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_PERCENT_EQ] = ACTIONS(6143), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6143), + [anon_sym_EQ_EQ] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6145), + [anon_sym_LT] = ACTIONS(6145), + [anon_sym_CARET_EQ] = ACTIONS(6143), + [anon_sym_AMP] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6145), + [anon_sym_SLASH] = ACTIONS(6145), + [anon_sym_RBRACE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6145), + [anon_sym_SLASH_EQ] = ACTIONS(6143), + [anon_sym_PLUS_EQ] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6145), + [anon_sym_GT] = ACTIONS(6145), + [anon_sym_PIPE_EQ] = ACTIONS(6143), + [anon_sym_GT_GT_EQ] = ACTIONS(6143), + [anon_sym_COMMA] = ACTIONS(6143), + [anon_sym_PIPE_PIPE] = ACTIONS(6143), + [anon_sym_DOT] = ACTIONS(6143), + [anon_sym_LT_LT] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6143), + [anon_sym_PERCENT] = ACTIONS(6145), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6143), + [anon_sym_DASH_EQ] = ACTIONS(6143), + [anon_sym_SEMI] = ACTIONS(6143), + [anon_sym_BANG_EQ] = ACTIONS(6143), + [anon_sym_AMP_EQ] = ACTIONS(6143), + [anon_sym_AMP_AMP] = ACTIONS(6143), + [anon_sym_LT_EQ] = ACTIONS(6143), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_PLUS_PLUS] = ACTIONS(6143), + [anon_sym_GT_GT] = ACTIONS(6145), + [anon_sym_DASH_DASH] = ACTIONS(6143), + }, + [1953] = { + [anon_sym_LPAREN2] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6149), + [anon_sym_DASH_GT] = ACTIONS(6147), + [anon_sym_RPAREN] = ACTIONS(6147), + [anon_sym_LBRACE] = ACTIONS(6147), + [anon_sym_STAR_EQ] = ACTIONS(6147), + [anon_sym_LT_LT_EQ] = ACTIONS(6147), + [anon_sym_PERCENT_EQ] = ACTIONS(6147), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6147), + [anon_sym_EQ_EQ] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6149), + [anon_sym_LT] = ACTIONS(6149), + [anon_sym_CARET_EQ] = ACTIONS(6147), + [anon_sym_AMP] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6149), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6149), + [anon_sym_SLASH] = ACTIONS(6149), + [anon_sym_RBRACE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SLASH_EQ] = ACTIONS(6147), + [anon_sym_PLUS_EQ] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6149), + [anon_sym_GT] = ACTIONS(6149), + [anon_sym_PIPE_EQ] = ACTIONS(6147), + [anon_sym_GT_GT_EQ] = ACTIONS(6147), + [anon_sym_COMMA] = ACTIONS(6147), + [anon_sym_PIPE_PIPE] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(6147), + [anon_sym_LT_LT] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6147), + [anon_sym_PERCENT] = ACTIONS(6149), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6147), + [anon_sym_DASH_EQ] = ACTIONS(6147), + [anon_sym_SEMI] = ACTIONS(6147), + [anon_sym_BANG_EQ] = ACTIONS(6147), + [anon_sym_AMP_EQ] = ACTIONS(6147), + [anon_sym_AMP_AMP] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_PLUS_PLUS] = ACTIONS(6147), + [anon_sym_GT_GT] = ACTIONS(6149), + [anon_sym_DASH_DASH] = ACTIONS(6147), + }, + [1954] = { + [sym_destructor_name] = STATE(2931), + [sym_identifier] = ACTIONS(6151), + [sym_operator_name] = ACTIONS(6122), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [1955] = { + [anon_sym_LPAREN2] = ACTIONS(6153), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_DASH_GT] = ACTIONS(6153), + [anon_sym_RPAREN] = ACTIONS(6153), + [anon_sym_STAR_EQ] = ACTIONS(6153), + [anon_sym_LT_LT_EQ] = ACTIONS(6153), + [anon_sym_PERCENT_EQ] = ACTIONS(6153), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6153), + [anon_sym_EQ_EQ] = ACTIONS(6153), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_CARET_EQ] = ACTIONS(6153), + [anon_sym_AMP] = ACTIONS(6155), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_GT_EQ] = ACTIONS(6153), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_RBRACE] = ACTIONS(6153), + [anon_sym_COLON] = ACTIONS(6153), + [anon_sym_SLASH_EQ] = ACTIONS(6153), + [anon_sym_PLUS_EQ] = ACTIONS(6153), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_PIPE_EQ] = ACTIONS(6153), + [anon_sym_GT_GT_EQ] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(6153), + [anon_sym_LT_LT] = ACTIONS(6155), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_PERCENT] = ACTIONS(6155), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DASH_EQ] = ACTIONS(6153), + [anon_sym_SEMI] = ACTIONS(6153), + [anon_sym_BANG_EQ] = ACTIONS(6153), + [anon_sym_AMP_EQ] = ACTIONS(6153), + [anon_sym_AMP_AMP] = ACTIONS(6153), + [anon_sym_LT_EQ] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6155), + [anon_sym_PLUS_PLUS] = ACTIONS(6153), + [anon_sym_GT_GT] = ACTIONS(6155), + [anon_sym_DASH_DASH] = ACTIONS(6153), + }, + [1956] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_COLON] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [1957] = { + [anon_sym_RPAREN] = ACTIONS(6157), + [sym_comment] = ACTIONS(3), + }, + [1958] = { + [sym_template_function] = STATE(2939), + [sym__expression] = STATE(2939), + [sym_logical_expression] = STATE(2939), + [sym_bitwise_expression] = STATE(2939), + [sym_cast_expression] = STATE(2939), + [sym_delete_expression] = STATE(2939), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2939), + [sym_lambda_expression] = STATE(2939), + [sym_char_literal] = STATE(2939), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2939), + [sym_equality_expression] = STATE(2939), + [sym_relational_expression] = STATE(2939), + [sym_sizeof_expression] = STATE(2939), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2939), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2939), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2939), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2939), + [sym_math_expression] = STATE(2939), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2939), + [sym_raw_string_literal] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6161), + [sym_null] = ACTIONS(6161), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6159), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6161), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), + }, + [1959] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_PERCENT] = ACTIONS(666), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + }, + [1960] = { + [sym_template_function] = STATE(2940), + [sym__expression] = STATE(2940), + [sym_logical_expression] = STATE(2940), + [sym_bitwise_expression] = STATE(2940), + [sym_cast_expression] = STATE(2940), + [sym_delete_expression] = STATE(2940), + [sym_field_expression] = STATE(2940), + [sym_compound_literal_expression] = STATE(2940), + [sym_lambda_expression] = STATE(2940), + [sym_char_literal] = STATE(2940), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2940), + [sym_equality_expression] = STATE(2940), + [sym_relational_expression] = STATE(2940), + [sym_sizeof_expression] = STATE(2940), + [sym_subscript_expression] = STATE(2940), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(2940), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(2940), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2940), + [sym_pointer_expression] = STATE(2940), + [sym_shift_expression] = STATE(2940), + [sym_math_expression] = STATE(2940), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2940), + [sym_raw_string_literal] = ACTIONS(6165), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(6167), + [sym_null] = ACTIONS(6167), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6165), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(6167), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6167), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), + }, + [1961] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2941), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1928] = { - [sym_destructor_name] = STATE(662), + [1962] = { + [sym_destructor_name] = STATE(663), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1210), - [sym_operator_name] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_delete] = ACTIONS(6053), + [sym_identifier] = ACTIONS(1216), + [sym_operator_name] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(6169), }, - [1929] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2919), - [sym_logical_expression] = STATE(2919), - [sym_bitwise_expression] = STATE(2919), - [sym_cast_expression] = STATE(2919), - [sym_new_expression] = STATE(2919), - [sym_field_expression] = STATE(2919), - [sym_compound_literal_expression] = STATE(2919), - [sym_char_literal] = STATE(2919), - [sym_template_function] = STATE(2919), - [sym_conditional_expression] = STATE(2919), - [sym_equality_expression] = STATE(2919), - [sym_relational_expression] = STATE(2919), - [sym_delete_expression] = STATE(2919), - [sym_sizeof_expression] = STATE(2919), - [sym_parenthesized_expression] = STATE(2919), - [sym_lambda_expression] = STATE(2919), - [sym_concatenated_string] = STATE(2919), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2919), - [sym_assignment_expression] = STATE(2919), - [sym_pointer_expression] = STATE(2919), - [sym_shift_expression] = STATE(2919), - [sym_math_expression] = STATE(2919), - [sym_call_expression] = STATE(2919), - [sym_lambda_capture_specifier] = STATE(196), + [1963] = { + [sym_template_function] = STATE(2943), + [sym__expression] = STATE(2943), + [sym_logical_expression] = STATE(2943), + [sym_bitwise_expression] = STATE(2943), + [sym_cast_expression] = STATE(2943), + [sym_delete_expression] = STATE(2943), + [sym_field_expression] = STATE(2943), + [sym_compound_literal_expression] = STATE(2943), + [sym_lambda_expression] = STATE(2943), + [sym_char_literal] = STATE(2943), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2943), + [sym_equality_expression] = STATE(2943), + [sym_relational_expression] = STATE(2943), + [sym_sizeof_expression] = STATE(2943), + [sym_subscript_expression] = STATE(2943), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(6057), - [sym_null] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6055), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6057), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_parenthesized_expression] = STATE(2943), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(2943), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2943), + [sym_pointer_expression] = STATE(2943), + [sym_shift_expression] = STATE(2943), + [sym_math_expression] = STATE(2943), + [sym_call_expression] = STATE(2943), + [sym_new_expression] = STATE(2943), + [sym_raw_string_literal] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(6173), + [sym_null] = ACTIONS(6173), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6171), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(6173), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [1930] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2921), - [sym_logical_expression] = STATE(2921), - [sym_bitwise_expression] = STATE(2921), - [sym_cast_expression] = STATE(2921), - [sym_new_expression] = STATE(2921), - [sym_field_expression] = STATE(2921), - [sym_compound_literal_expression] = STATE(2921), - [sym_char_literal] = STATE(2921), - [sym_template_function] = STATE(2921), - [sym_conditional_expression] = STATE(2921), - [sym_equality_expression] = STATE(2921), - [sym_relational_expression] = STATE(2921), - [sym_delete_expression] = STATE(2921), - [sym_sizeof_expression] = STATE(2921), - [sym_parenthesized_expression] = STATE(2921), - [sym_lambda_expression] = STATE(2921), - [sym_concatenated_string] = STATE(2921), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2921), - [sym_assignment_expression] = STATE(2921), - [sym_pointer_expression] = STATE(2921), - [sym_shift_expression] = STATE(2921), - [sym_math_expression] = STATE(2921), - [sym_call_expression] = STATE(2921), - [sym_lambda_capture_specifier] = STATE(196), + [1964] = { + [sym_template_function] = STATE(2945), + [sym__expression] = STATE(2945), + [sym_logical_expression] = STATE(2945), + [sym_bitwise_expression] = STATE(2945), + [sym_cast_expression] = STATE(2945), + [sym_delete_expression] = STATE(2945), + [sym_field_expression] = STATE(2945), + [sym_compound_literal_expression] = STATE(2945), + [sym_lambda_expression] = STATE(2945), + [sym_char_literal] = STATE(2945), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2945), + [sym_equality_expression] = STATE(2945), + [sym_relational_expression] = STATE(2945), + [sym_sizeof_expression] = STATE(2945), + [sym_subscript_expression] = STATE(2945), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(6061), - [sym_true] = ACTIONS(6063), - [sym_null] = ACTIONS(6063), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6059), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(6063), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6063), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_parenthesized_expression] = STATE(2945), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(2945), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2945), + [sym_pointer_expression] = STATE(2945), + [sym_shift_expression] = STATE(2945), + [sym_math_expression] = STATE(2945), + [sym_call_expression] = STATE(2945), + [sym_new_expression] = STATE(2945), + [sym_raw_string_literal] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(6177), + [sym_true] = ACTIONS(6179), + [sym_null] = ACTIONS(6179), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6175), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(6179), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [1931] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2922), - [sym_logical_expression] = STATE(2922), - [sym_bitwise_expression] = STATE(2922), - [sym_cast_expression] = STATE(2922), - [sym_new_expression] = STATE(2922), - [sym_field_expression] = STATE(2922), - [sym_compound_literal_expression] = STATE(2922), - [sym_char_literal] = STATE(2922), - [sym_template_function] = STATE(2922), - [sym_conditional_expression] = STATE(2922), - [sym_equality_expression] = STATE(2922), - [sym_relational_expression] = STATE(2922), - [sym_delete_expression] = STATE(2922), - [sym_sizeof_expression] = STATE(2922), - [sym_parenthesized_expression] = STATE(2922), - [sym_lambda_expression] = STATE(2922), - [sym_concatenated_string] = STATE(2922), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2922), - [sym_assignment_expression] = STATE(2922), - [sym_pointer_expression] = STATE(2922), - [sym_shift_expression] = STATE(2922), - [sym_math_expression] = STATE(2922), - [sym_call_expression] = STATE(2922), - [sym_lambda_capture_specifier] = STATE(196), + [1965] = { + [sym_template_function] = STATE(2946), + [sym__expression] = STATE(2946), + [sym_logical_expression] = STATE(2946), + [sym_bitwise_expression] = STATE(2946), + [sym_cast_expression] = STATE(2946), + [sym_delete_expression] = STATE(2946), + [sym_field_expression] = STATE(2946), + [sym_compound_literal_expression] = STATE(2946), + [sym_lambda_expression] = STATE(2946), + [sym_char_literal] = STATE(2946), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2946), + [sym_equality_expression] = STATE(2946), + [sym_relational_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2946), + [sym_subscript_expression] = STATE(2946), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6065), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(6067), - [sym_null] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6065), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6067), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_parenthesized_expression] = STATE(2946), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(2946), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2946), + [sym_pointer_expression] = STATE(2946), + [sym_shift_expression] = STATE(2946), + [sym_math_expression] = STATE(2946), + [sym_call_expression] = STATE(2946), + [sym_new_expression] = STATE(2946), + [sym_raw_string_literal] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(6183), + [sym_null] = ACTIONS(6183), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6181), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(6183), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [1932] = { - [sym_union_specifier] = STATE(2925), - [sym_macro_type_specifier] = STATE(2925), - [sym_class_specifier] = STATE(2925), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(2925), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(2925), - [aux_sym_sized_type_specifier_repeat1] = STATE(2924), - [sym_argument_list] = STATE(2926), - [sym_enum_specifier] = STATE(2925), - [sym_struct_specifier] = STATE(2925), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(2925), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(6069), - [anon_sym_signed] = ACTIONS(6071), - [anon_sym_long] = ACTIONS(6071), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(6069), - [anon_sym_unsigned] = ACTIONS(6071), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(6073), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(6071), + [1966] = { + [sym_union_specifier] = STATE(2949), + [sym_macro_type_specifier] = STATE(2949), + [sym_class_specifier] = STATE(2949), + [aux_sym_sized_type_specifier_repeat1] = STATE(2948), + [sym_sized_type_specifier] = STATE(2949), + [sym__type_specifier] = STATE(2949), + [sym_argument_list] = STATE(2950), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(2949), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(2949), + [sym_struct_specifier] = STATE(2949), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(6185), + [anon_sym_signed] = ACTIONS(6187), + [anon_sym_long] = ACTIONS(6187), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(6185), + [anon_sym_unsigned] = ACTIONS(6187), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(6189), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(6187), }, - [1933] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2928), - [sym_logical_expression] = STATE(2928), - [sym_bitwise_expression] = STATE(2928), - [sym_cast_expression] = STATE(2928), - [sym_new_expression] = STATE(2928), - [sym_field_expression] = STATE(2928), - [sym_compound_literal_expression] = STATE(2928), - [sym_char_literal] = STATE(2928), - [sym_template_function] = STATE(2928), - [sym_conditional_expression] = STATE(2928), - [sym_equality_expression] = STATE(2928), - [sym_relational_expression] = STATE(2928), - [sym_delete_expression] = STATE(2928), - [sym_sizeof_expression] = STATE(2928), - [sym_parenthesized_expression] = STATE(2928), - [sym_lambda_expression] = STATE(2928), - [sym_concatenated_string] = STATE(2928), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2928), - [sym_assignment_expression] = STATE(2928), - [sym_pointer_expression] = STATE(2928), - [sym_shift_expression] = STATE(2928), - [sym_math_expression] = STATE(2928), - [sym_call_expression] = STATE(2928), - [sym_lambda_capture_specifier] = STATE(196), + [1967] = { + [sym_template_function] = STATE(2952), + [sym__expression] = STATE(2952), + [sym_logical_expression] = STATE(2952), + [sym_bitwise_expression] = STATE(2952), + [sym_cast_expression] = STATE(2952), + [sym_delete_expression] = STATE(2952), + [sym_field_expression] = STATE(2952), + [sym_compound_literal_expression] = STATE(2952), + [sym_lambda_expression] = STATE(2952), + [sym_char_literal] = STATE(2952), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2952), + [sym_equality_expression] = STATE(2952), + [sym_relational_expression] = STATE(2952), + [sym_sizeof_expression] = STATE(2952), + [sym_subscript_expression] = STATE(2952), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6075), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(6077), - [sym_null] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6075), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(6079), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6077), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_parenthesized_expression] = STATE(2952), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(2952), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2952), + [sym_pointer_expression] = STATE(2952), + [sym_shift_expression] = STATE(2952), + [sym_math_expression] = STATE(2952), + [sym_call_expression] = STATE(2952), + [sym_new_expression] = STATE(2952), + [sym_raw_string_literal] = ACTIONS(6191), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(6193), + [sym_null] = ACTIONS(6193), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6191), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(6195), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6193), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [1934] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_LT_LT_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_CARET_EQ] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_COLON] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_PIPE_EQ] = ACTIONS(1249), - [anon_sym_GT_GT_EQ] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_AMP_EQ] = ACTIONS(1249), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), + [1968] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), }, - [1935] = { - [sym_template_argument_list] = STATE(691), + [1969] = { + [sym_template_argument_list] = STATE(689), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_STAR_EQ] = ACTIONS(165), @@ -85451,7 +86477,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT_EQ] = ACTIONS(165), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6197), [anon_sym_CARET_EQ] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), @@ -85483,9 +86509,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1936] = { - [sym_string_literal] = STATE(2941), - [aux_sym_concatenated_string_repeat1] = STATE(2941), + [1970] = { + [sym_string_literal] = STATE(2965), + [aux_sym_concatenated_string_repeat1] = STATE(2965), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_STAR_EQ] = ACTIONS(165), @@ -85509,7 +86535,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -85526,49 +86552,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [1937] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(2942), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [1971] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(2966), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -85576,20 +86602,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -85606,991 +86632,991 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [1938] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1972] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1939] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_PERCENT] = ACTIONS(1655), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_COLON] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), + [1973] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_COLON] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), }, - [1940] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2943), - [sym_logical_expression] = STATE(2943), - [sym_bitwise_expression] = STATE(2943), - [sym_cast_expression] = STATE(2943), - [sym_new_expression] = STATE(2943), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2943), - [sym_char_literal] = STATE(2943), - [sym_template_function] = STATE(2943), - [sym_conditional_expression] = STATE(2943), - [sym_equality_expression] = STATE(2943), - [sym_relational_expression] = STATE(2943), - [sym_delete_expression] = STATE(2943), - [sym_sizeof_expression] = STATE(2943), - [sym_parenthesized_expression] = STATE(2943), - [sym_lambda_expression] = STATE(2943), - [sym_concatenated_string] = STATE(2943), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), + [1974] = { + [sym_template_function] = STATE(2967), + [sym__expression] = STATE(2967), + [sym_logical_expression] = STATE(2967), + [sym_bitwise_expression] = STATE(2967), + [sym_cast_expression] = STATE(2967), + [sym_delete_expression] = STATE(2967), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2967), + [sym_lambda_expression] = STATE(2967), + [sym_char_literal] = STATE(2967), + [sym_scoped_identifier] = STATE(1007), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2943), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2943), - [sym_math_expression] = STATE(2943), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), + [sym_conditional_expression] = STATE(2967), + [sym_equality_expression] = STATE(2967), + [sym_relational_expression] = STATE(2967), + [sym_sizeof_expression] = STATE(2967), + [sym_subscript_expression] = STATE(1006), [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6084), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6086), - [sym_null] = ACTIONS(6086), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6084), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6086), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6086), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [sym_parenthesized_expression] = STATE(2967), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2967), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2967), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2967), + [sym_math_expression] = STATE(2967), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2967), + [sym_raw_string_literal] = ACTIONS(6200), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6202), + [sym_null] = ACTIONS(6202), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6200), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6202), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6202), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1941] = { - [sym_virtual_specifier] = STATE(1662), - [sym_template_type] = STATE(2945), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_field_declaration_list] = STATE(1664), - [sym_scoped_type_identifier] = STATE(2946), - [sym_base_class_clause] = STATE(1666), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(6088), + [1975] = { + [sym_scoped_type_identifier] = STATE(2969), + [sym_virtual_specifier] = STATE(1661), + [sym_template_type] = STATE(2970), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_field_declaration_list] = STATE(1663), + [sym_base_class_clause] = STATE(1664), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(6204), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(300), }, - [1942] = { - [sym_virtual_specifier] = STATE(1668), - [sym_template_type] = STATE(2948), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_field_declaration_list] = STATE(1670), - [sym_scoped_type_identifier] = STATE(2949), - [sym_base_class_clause] = STATE(1672), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(6090), + [1976] = { + [sym_scoped_type_identifier] = STATE(2972), + [sym_virtual_specifier] = STATE(1667), + [sym_template_type] = STATE(2973), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_field_declaration_list] = STATE(1669), + [sym_base_class_clause] = STATE(1670), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(6206), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(300), }, - [1943] = { - [sym_union_specifier] = STATE(1673), - [sym_macro_type_specifier] = STATE(1673), - [sym_class_specifier] = STATE(1673), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1673), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1673), - [aux_sym_sized_type_specifier_repeat1] = STATE(1945), - [sym_struct_specifier] = STATE(1673), - [sym_enum_specifier] = STATE(1673), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(1673), - [anon_sym_unsigned] = ACTIONS(3918), - [anon_sym_struct] = ACTIONS(3914), - [sym_auto] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(3918), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3918), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3924), + [1977] = { + [sym_union_specifier] = STATE(1671), + [sym_macro_type_specifier] = STATE(1671), + [sym_class_specifier] = STATE(1671), + [aux_sym_sized_type_specifier_repeat1] = STATE(1979), + [sym_sized_type_specifier] = STATE(1671), + [sym__type_specifier] = STATE(1671), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(1671), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1671), + [sym_struct_specifier] = STATE(1671), + [anon_sym_unsigned] = ACTIONS(3996), + [anon_sym_struct] = ACTIONS(3992), + [sym_auto] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(3996), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3996), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4002), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(3918), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(3920), - [sym_primitive_type] = ACTIONS(3306), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(3996), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3316), }, - [1944] = { - [sym_virtual_specifier] = STATE(1681), - [sym_template_type] = STATE(2951), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_field_declaration_list] = STATE(1683), - [sym_scoped_type_identifier] = STATE(2952), - [sym_base_class_clause] = STATE(1685), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(6092), + [1978] = { + [sym_scoped_type_identifier] = STATE(2975), + [sym_virtual_specifier] = STATE(1680), + [sym_template_type] = STATE(2976), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_field_declaration_list] = STATE(1682), + [sym_base_class_clause] = STATE(1683), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(6208), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(300), }, - [1945] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2953), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(6094), - [anon_sym_long] = ACTIONS(6094), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_short] = ACTIONS(6094), - [sym_identifier] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(3330), - [anon_sym_unsigned] = ACTIONS(6094), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [1979] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2977), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(6210), + [anon_sym_long] = ACTIONS(6210), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_COLON] = ACTIONS(554), + [anon_sym_short] = ACTIONS(6210), + [sym_identifier] = ACTIONS(3333), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(3335), + [anon_sym_unsigned] = ACTIONS(6210), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, - [1946] = { - [sym_initializer_list] = STATE(709), - [sym_new_declarator] = STATE(708), - [sym_argument_list] = STATE(709), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), + [1980] = { + [sym_new_declarator] = STATE(709), + [sym_argument_list] = STATE(710), + [sym_initializer_list] = STATE(710), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(6096), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_COLON] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [1947] = { - [sym_union_specifier] = STATE(2955), - [sym_macro_type_specifier] = STATE(2955), - [sym_class_specifier] = STATE(2955), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2955), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(2955), - [aux_sym_sized_type_specifier_repeat1] = STATE(1945), - [sym_struct_specifier] = STATE(2955), - [sym_enum_specifier] = STATE(2955), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(2955), - [anon_sym_unsigned] = ACTIONS(3918), - [anon_sym_struct] = ACTIONS(3914), - [sym_auto] = ACTIONS(6098), - [anon_sym_signed] = ACTIONS(3918), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3918), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3924), + [1981] = { + [sym_union_specifier] = STATE(2979), + [sym_macro_type_specifier] = STATE(2979), + [sym_class_specifier] = STATE(2979), + [aux_sym_sized_type_specifier_repeat1] = STATE(1979), + [sym_sized_type_specifier] = STATE(2979), + [sym__type_specifier] = STATE(2979), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(2979), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(2979), + [sym_struct_specifier] = STATE(2979), + [anon_sym_unsigned] = ACTIONS(3996), + [anon_sym_struct] = ACTIONS(3992), + [sym_auto] = ACTIONS(6214), + [anon_sym_signed] = ACTIONS(3996), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(3996), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4002), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(3918), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(3920), - [sym_primitive_type] = ACTIONS(6098), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(3996), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(6214), }, - [1948] = { - [sym_template_type] = STATE(239), + [1982] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(6100), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(6216), }, - [1949] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [1983] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [1950] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2957), - [sym_logical_expression] = STATE(2957), - [sym_bitwise_expression] = STATE(2957), - [sym_cast_expression] = STATE(2957), - [sym_new_expression] = STATE(2957), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2957), - [sym_char_literal] = STATE(2957), - [sym_template_function] = STATE(2957), - [sym_conditional_expression] = STATE(2957), - [sym_equality_expression] = STATE(2957), - [sym_relational_expression] = STATE(2957), - [sym_delete_expression] = STATE(2957), - [sym_sizeof_expression] = STATE(2957), - [sym_parenthesized_expression] = STATE(2957), - [sym_lambda_expression] = STATE(2957), - [sym_concatenated_string] = STATE(2957), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2957), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2957), - [sym_math_expression] = STATE(2957), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6102), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6104), - [sym_null] = ACTIONS(6104), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6102), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6104), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6104), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1984] = { + [sym_template_function] = STATE(2981), + [sym__expression] = STATE(2981), + [sym_logical_expression] = STATE(2981), + [sym_bitwise_expression] = STATE(2981), + [sym_cast_expression] = STATE(2981), + [sym_delete_expression] = STATE(2981), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2981), + [sym_lambda_expression] = STATE(2981), + [sym_char_literal] = STATE(2981), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2981), + [sym_equality_expression] = STATE(2981), + [sym_relational_expression] = STATE(2981), + [sym_sizeof_expression] = STATE(2981), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2981), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2981), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2981), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2981), + [sym_math_expression] = STATE(2981), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2981), + [sym_raw_string_literal] = ACTIONS(6218), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6220), + [sym_null] = ACTIONS(6220), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6218), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6220), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6220), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1951] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2958), - [sym_logical_expression] = STATE(2958), - [sym_bitwise_expression] = STATE(2958), - [sym_cast_expression] = STATE(2958), - [sym_new_expression] = STATE(2958), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2958), - [sym_char_literal] = STATE(2958), - [sym_template_function] = STATE(2958), - [sym_conditional_expression] = STATE(2958), - [sym_equality_expression] = STATE(2958), - [sym_relational_expression] = STATE(2958), - [sym_delete_expression] = STATE(2958), - [sym_sizeof_expression] = STATE(2958), - [sym_parenthesized_expression] = STATE(2958), - [sym_lambda_expression] = STATE(2958), - [sym_concatenated_string] = STATE(2958), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2958), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2958), - [sym_math_expression] = STATE(2958), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6106), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6108), - [sym_null] = ACTIONS(6108), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6106), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6108), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6108), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1985] = { + [sym_template_function] = STATE(2982), + [sym__expression] = STATE(2982), + [sym_logical_expression] = STATE(2982), + [sym_bitwise_expression] = STATE(2982), + [sym_cast_expression] = STATE(2982), + [sym_delete_expression] = STATE(2982), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2982), + [sym_lambda_expression] = STATE(2982), + [sym_char_literal] = STATE(2982), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2982), + [sym_equality_expression] = STATE(2982), + [sym_relational_expression] = STATE(2982), + [sym_sizeof_expression] = STATE(2982), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2982), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2982), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2982), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2982), + [sym_math_expression] = STATE(2982), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2982), + [sym_raw_string_literal] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6224), + [sym_null] = ACTIONS(6224), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6222), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6224), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6224), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1952] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2959), - [sym_logical_expression] = STATE(2959), - [sym_bitwise_expression] = STATE(2959), - [sym_cast_expression] = STATE(2959), - [sym_new_expression] = STATE(2959), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2959), - [sym_char_literal] = STATE(2959), - [sym_template_function] = STATE(2959), - [sym_conditional_expression] = STATE(2959), - [sym_equality_expression] = STATE(2959), - [sym_relational_expression] = STATE(2959), - [sym_delete_expression] = STATE(2959), - [sym_sizeof_expression] = STATE(2959), - [sym_parenthesized_expression] = STATE(2959), - [sym_lambda_expression] = STATE(2959), - [sym_concatenated_string] = STATE(2959), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2959), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2959), - [sym_math_expression] = STATE(2959), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6110), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6112), - [sym_null] = ACTIONS(6112), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6110), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6112), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6112), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1986] = { + [sym_template_function] = STATE(2983), + [sym__expression] = STATE(2983), + [sym_logical_expression] = STATE(2983), + [sym_bitwise_expression] = STATE(2983), + [sym_cast_expression] = STATE(2983), + [sym_delete_expression] = STATE(2983), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2983), + [sym_lambda_expression] = STATE(2983), + [sym_char_literal] = STATE(2983), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2983), + [sym_equality_expression] = STATE(2983), + [sym_relational_expression] = STATE(2983), + [sym_sizeof_expression] = STATE(2983), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2983), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2983), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2983), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2983), + [sym_math_expression] = STATE(2983), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2983), + [sym_raw_string_literal] = ACTIONS(6226), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6228), + [sym_null] = ACTIONS(6228), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6228), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6228), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1953] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2960), - [sym_logical_expression] = STATE(2960), - [sym_bitwise_expression] = STATE(2960), - [sym_cast_expression] = STATE(2960), - [sym_new_expression] = STATE(2960), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2960), - [sym_char_literal] = STATE(2960), - [sym_template_function] = STATE(2960), - [sym_conditional_expression] = STATE(2960), - [sym_equality_expression] = STATE(2960), - [sym_relational_expression] = STATE(2960), - [sym_delete_expression] = STATE(2960), - [sym_sizeof_expression] = STATE(2960), - [sym_parenthesized_expression] = STATE(2960), - [sym_lambda_expression] = STATE(2960), - [sym_concatenated_string] = STATE(2960), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2960), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2960), - [sym_math_expression] = STATE(2960), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6114), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6116), - [sym_null] = ACTIONS(6116), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6114), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6116), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6116), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1987] = { + [sym_template_function] = STATE(2984), + [sym__expression] = STATE(2984), + [sym_logical_expression] = STATE(2984), + [sym_bitwise_expression] = STATE(2984), + [sym_cast_expression] = STATE(2984), + [sym_delete_expression] = STATE(2984), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2984), + [sym_lambda_expression] = STATE(2984), + [sym_char_literal] = STATE(2984), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2984), + [sym_equality_expression] = STATE(2984), + [sym_relational_expression] = STATE(2984), + [sym_sizeof_expression] = STATE(2984), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2984), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2984), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2984), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2984), + [sym_math_expression] = STATE(2984), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2984), + [sym_raw_string_literal] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6232), + [sym_null] = ACTIONS(6232), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6230), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6232), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6232), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1954] = { - [sym_scoped_field_identifier] = STATE(2961), - [sym_template_type] = STATE(949), - [sym_template_method] = STATE(950), - [sym_scoped_namespace_identifier] = STATE(949), - [sym_scoped_type_identifier] = STATE(174), - [sym_destructor_name] = STATE(950), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1214), + [1988] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_destructor_name] = STATE(986), + [sym_scoped_field_identifier] = STATE(2985), + [sym_template_type] = STATE(988), + [sym_template_method] = STATE(986), + [sym_scoped_namespace_identifier] = STATE(988), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1220), [sym_comment] = ACTIONS(3), }, - [1955] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2962), - [sym_logical_expression] = STATE(2962), - [sym_bitwise_expression] = STATE(2962), - [sym_cast_expression] = STATE(2962), - [sym_new_expression] = STATE(2962), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2962), - [sym_char_literal] = STATE(2962), - [sym_template_function] = STATE(2962), - [sym_conditional_expression] = STATE(2962), - [sym_equality_expression] = STATE(2962), - [sym_relational_expression] = STATE(2962), - [sym_delete_expression] = STATE(2962), - [sym_sizeof_expression] = STATE(2962), - [sym_parenthesized_expression] = STATE(2962), - [sym_lambda_expression] = STATE(2962), - [sym_concatenated_string] = STATE(2962), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2962), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2962), - [sym_math_expression] = STATE(2962), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6118), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6120), - [sym_null] = ACTIONS(6120), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6118), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6120), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6120), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1989] = { + [sym_template_function] = STATE(2986), + [sym__expression] = STATE(2986), + [sym_logical_expression] = STATE(2986), + [sym_bitwise_expression] = STATE(2986), + [sym_cast_expression] = STATE(2986), + [sym_delete_expression] = STATE(2986), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2986), + [sym_lambda_expression] = STATE(2986), + [sym_char_literal] = STATE(2986), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2986), + [sym_equality_expression] = STATE(2986), + [sym_relational_expression] = STATE(2986), + [sym_sizeof_expression] = STATE(2986), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2986), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2986), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2986), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2986), + [sym_math_expression] = STATE(2986), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2986), + [sym_raw_string_literal] = ACTIONS(6234), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6236), + [sym_null] = ACTIONS(6236), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6234), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6236), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6236), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1956] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2963), - [sym_logical_expression] = STATE(2963), - [sym_bitwise_expression] = STATE(2963), - [sym_cast_expression] = STATE(2963), - [sym_new_expression] = STATE(2963), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2963), - [sym_char_literal] = STATE(2963), - [sym_template_function] = STATE(2963), - [sym_conditional_expression] = STATE(2963), - [sym_equality_expression] = STATE(2963), - [sym_relational_expression] = STATE(2963), - [sym_delete_expression] = STATE(2963), - [sym_sizeof_expression] = STATE(2963), - [sym_parenthesized_expression] = STATE(2963), - [sym_lambda_expression] = STATE(2963), - [sym_concatenated_string] = STATE(2963), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2963), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2963), - [sym_math_expression] = STATE(2963), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6122), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6124), - [sym_null] = ACTIONS(6124), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6122), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6124), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6124), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1990] = { + [sym_template_function] = STATE(2987), + [sym__expression] = STATE(2987), + [sym_logical_expression] = STATE(2987), + [sym_bitwise_expression] = STATE(2987), + [sym_cast_expression] = STATE(2987), + [sym_delete_expression] = STATE(2987), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2987), + [sym_lambda_expression] = STATE(2987), + [sym_char_literal] = STATE(2987), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2987), + [sym_equality_expression] = STATE(2987), + [sym_relational_expression] = STATE(2987), + [sym_sizeof_expression] = STATE(2987), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2987), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2987), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2987), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2987), + [sym_math_expression] = STATE(2987), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2987), + [sym_raw_string_literal] = ACTIONS(6238), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6240), + [sym_null] = ACTIONS(6240), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6238), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6240), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1957] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2964), - [sym_logical_expression] = STATE(2964), - [sym_bitwise_expression] = STATE(2964), - [sym_cast_expression] = STATE(2964), - [sym_new_expression] = STATE(2964), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2964), - [sym_char_literal] = STATE(2964), - [sym_template_function] = STATE(2964), - [sym_conditional_expression] = STATE(2964), - [sym_equality_expression] = STATE(2964), - [sym_relational_expression] = STATE(2964), - [sym_delete_expression] = STATE(2964), - [sym_sizeof_expression] = STATE(2964), - [sym_parenthesized_expression] = STATE(2964), - [sym_lambda_expression] = STATE(2964), - [sym_concatenated_string] = STATE(2964), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2964), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2964), - [sym_math_expression] = STATE(2964), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6126), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6128), - [sym_null] = ACTIONS(6128), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6126), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6128), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6128), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1991] = { + [sym_template_function] = STATE(2988), + [sym__expression] = STATE(2988), + [sym_logical_expression] = STATE(2988), + [sym_bitwise_expression] = STATE(2988), + [sym_cast_expression] = STATE(2988), + [sym_delete_expression] = STATE(2988), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2988), + [sym_lambda_expression] = STATE(2988), + [sym_char_literal] = STATE(2988), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2988), + [sym_equality_expression] = STATE(2988), + [sym_relational_expression] = STATE(2988), + [sym_sizeof_expression] = STATE(2988), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2988), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2988), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2988), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2988), + [sym_math_expression] = STATE(2988), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2988), + [sym_raw_string_literal] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6244), + [sym_null] = ACTIONS(6244), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1958] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2965), - [sym_logical_expression] = STATE(2965), - [sym_bitwise_expression] = STATE(2965), - [sym_cast_expression] = STATE(2965), - [sym_new_expression] = STATE(2965), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2965), - [sym_char_literal] = STATE(2965), - [sym_template_function] = STATE(2965), - [sym_conditional_expression] = STATE(2965), - [sym_equality_expression] = STATE(2965), - [sym_relational_expression] = STATE(2965), - [sym_delete_expression] = STATE(2965), - [sym_sizeof_expression] = STATE(2965), - [sym_parenthesized_expression] = STATE(2965), - [sym_lambda_expression] = STATE(2965), - [sym_concatenated_string] = STATE(2965), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2965), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2965), - [sym_math_expression] = STATE(2965), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6130), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6132), - [sym_null] = ACTIONS(6132), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6130), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6132), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6132), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1992] = { + [sym_template_function] = STATE(2989), + [sym__expression] = STATE(2989), + [sym_logical_expression] = STATE(2989), + [sym_bitwise_expression] = STATE(2989), + [sym_cast_expression] = STATE(2989), + [sym_delete_expression] = STATE(2989), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2989), + [sym_lambda_expression] = STATE(2989), + [sym_char_literal] = STATE(2989), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2989), + [sym_equality_expression] = STATE(2989), + [sym_relational_expression] = STATE(2989), + [sym_sizeof_expression] = STATE(2989), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2989), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2989), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2989), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2989), + [sym_math_expression] = STATE(2989), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2989), + [sym_raw_string_literal] = ACTIONS(6246), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6248), + [sym_null] = ACTIONS(6248), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6248), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1959] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2966), - [sym_logical_expression] = STATE(2966), - [sym_bitwise_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2966), - [sym_char_literal] = STATE(2966), - [sym_template_function] = STATE(2966), - [sym_conditional_expression] = STATE(2966), - [sym_equality_expression] = STATE(2966), - [sym_relational_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_concatenated_string] = STATE(2966), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2966), - [sym_math_expression] = STATE(2966), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6134), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6136), - [sym_null] = ACTIONS(6136), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6134), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6136), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6136), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1993] = { + [sym_template_function] = STATE(2990), + [sym__expression] = STATE(2990), + [sym_logical_expression] = STATE(2990), + [sym_bitwise_expression] = STATE(2990), + [sym_cast_expression] = STATE(2990), + [sym_delete_expression] = STATE(2990), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2990), + [sym_lambda_expression] = STATE(2990), + [sym_char_literal] = STATE(2990), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2990), + [sym_equality_expression] = STATE(2990), + [sym_relational_expression] = STATE(2990), + [sym_sizeof_expression] = STATE(2990), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2990), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2990), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2990), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2990), + [sym_math_expression] = STATE(2990), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2990), + [sym_raw_string_literal] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6252), + [sym_null] = ACTIONS(6252), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6252), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1960] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2967), - [sym_logical_expression] = STATE(2967), - [sym_bitwise_expression] = STATE(2967), - [sym_cast_expression] = STATE(2967), - [sym_new_expression] = STATE(2967), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2967), - [sym_char_literal] = STATE(2967), - [sym_template_function] = STATE(2967), - [sym_conditional_expression] = STATE(2967), - [sym_equality_expression] = STATE(2967), - [sym_relational_expression] = STATE(2967), - [sym_delete_expression] = STATE(2967), - [sym_sizeof_expression] = STATE(2967), - [sym_parenthesized_expression] = STATE(2967), - [sym_lambda_expression] = STATE(2967), - [sym_concatenated_string] = STATE(2967), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2967), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2967), - [sym_math_expression] = STATE(2967), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6138), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6140), - [sym_null] = ACTIONS(6140), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6138), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6140), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6140), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1994] = { + [sym_template_function] = STATE(2991), + [sym__expression] = STATE(2991), + [sym_logical_expression] = STATE(2991), + [sym_bitwise_expression] = STATE(2991), + [sym_cast_expression] = STATE(2991), + [sym_delete_expression] = STATE(2991), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2991), + [sym_lambda_expression] = STATE(2991), + [sym_char_literal] = STATE(2991), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2991), + [sym_equality_expression] = STATE(2991), + [sym_relational_expression] = STATE(2991), + [sym_sizeof_expression] = STATE(2991), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2991), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2991), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2991), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2991), + [sym_math_expression] = STATE(2991), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2991), + [sym_raw_string_literal] = ACTIONS(6254), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6256), + [sym_null] = ACTIONS(6256), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6256), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6256), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1961] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2968), - [sym_logical_expression] = STATE(2968), - [sym_bitwise_expression] = STATE(2968), - [sym_cast_expression] = STATE(2968), - [sym_new_expression] = STATE(2968), + [1995] = { + [sym_template_function] = STATE(2992), + [sym__expression] = STATE(2992), + [sym_logical_expression] = STATE(2992), + [sym_bitwise_expression] = STATE(2992), + [sym_cast_expression] = STATE(2992), + [sym_delete_expression] = STATE(2992), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(2968), - [sym_char_literal] = STATE(2968), - [sym_template_function] = STATE(2968), - [sym_conditional_expression] = STATE(2968), - [sym_equality_expression] = STATE(2968), - [sym_relational_expression] = STATE(2968), - [sym_delete_expression] = STATE(2968), - [sym_sizeof_expression] = STATE(2968), - [sym_parenthesized_expression] = STATE(2968), - [sym_lambda_expression] = STATE(2968), - [sym_concatenated_string] = STATE(2968), - [sym_string_literal] = STATE(52), + [sym_compound_literal_expression] = STATE(2992), + [sym_lambda_expression] = STATE(2992), + [sym_char_literal] = STATE(2992), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2992), + [sym_equality_expression] = STATE(2992), + [sym_relational_expression] = STATE(2992), + [sym_sizeof_expression] = STATE(2992), [sym_subscript_expression] = STATE(47), - [sym_assignment_expression] = STATE(2968), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2992), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(53), + [sym_concatenated_string] = STATE(2992), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2992), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(2968), - [sym_math_expression] = STATE(2968), + [sym_shift_expression] = STATE(2992), + [sym_math_expression] = STATE(2992), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6142), + [sym_new_expression] = STATE(2992), + [sym_raw_string_literal] = ACTIONS(6258), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6144), - [sym_null] = ACTIONS(6144), + [sym_true] = ACTIONS(6260), + [sym_null] = ACTIONS(6260), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6142), + [sym_number_literal] = ACTIONS(6258), [anon_sym_COLON_COLON] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(15), - [sym_false] = ACTIONS(6144), + [sym_false] = ACTIONS(6260), [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(6144), + [sym_nullptr] = ACTIONS(6260), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(119), @@ -86603,1113 +87629,447 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [1962] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2969), - [sym_logical_expression] = STATE(2969), - [sym_bitwise_expression] = STATE(2969), - [sym_cast_expression] = STATE(2969), - [sym_new_expression] = STATE(2969), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(2969), - [sym_char_literal] = STATE(2969), - [sym_template_function] = STATE(2969), - [sym_conditional_expression] = STATE(2969), - [sym_equality_expression] = STATE(2969), - [sym_relational_expression] = STATE(2969), - [sym_delete_expression] = STATE(2969), - [sym_sizeof_expression] = STATE(2969), - [sym_parenthesized_expression] = STATE(2969), - [sym_lambda_expression] = STATE(2969), - [sym_concatenated_string] = STATE(2969), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(2969), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(2969), - [sym_math_expression] = STATE(2969), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6146), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6148), - [sym_null] = ACTIONS(6148), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6146), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6148), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6148), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [1996] = { + [sym_template_function] = STATE(2993), + [sym__expression] = STATE(2993), + [sym_logical_expression] = STATE(2993), + [sym_bitwise_expression] = STATE(2993), + [sym_cast_expression] = STATE(2993), + [sym_delete_expression] = STATE(2993), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(2993), + [sym_lambda_expression] = STATE(2993), + [sym_char_literal] = STATE(2993), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(2993), + [sym_equality_expression] = STATE(2993), + [sym_relational_expression] = STATE(2993), + [sym_sizeof_expression] = STATE(2993), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(2993), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(2993), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2993), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(2993), + [sym_math_expression] = STATE(2993), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(2993), + [sym_raw_string_literal] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6264), + [sym_null] = ACTIONS(6264), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6264), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [1963] = { - [sym_template_type] = STATE(419), - [sym__expression] = STATE(2971), - [sym_logical_expression] = STATE(2971), - [sym_bitwise_expression] = STATE(2971), - [sym_cast_expression] = STATE(2971), - [sym_new_expression] = STATE(2971), + [1997] = { + [sym_template_function] = STATE(2995), + [sym__expression] = STATE(2995), + [sym_logical_expression] = STATE(2995), + [sym_bitwise_expression] = STATE(2995), + [sym_cast_expression] = STATE(2995), + [sym_delete_expression] = STATE(2995), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(2971), - [sym_type_descriptor] = STATE(2972), - [sym_char_literal] = STATE(2971), + [sym_scoped_type_identifier] = STATE(422), + [sym_compound_literal_expression] = STATE(2995), + [sym_char_literal] = STATE(2995), + [sym_lambda_expression] = STATE(2995), + [sym_scoped_identifier] = STATE(423), + [sym_type_descriptor] = STATE(2996), + [sym_dependent_type] = STATE(428), + [sym_struct_specifier] = STATE(428), + [sym_union_specifier] = STATE(428), [sym_type_qualifier] = STATE(429), - [sym_dependent_type] = STATE(426), - [sym_union_specifier] = STATE(426), - [sym_struct_specifier] = STATE(426), - [sym_template_function] = STATE(2971), - [sym_conditional_expression] = STATE(2971), - [sym_equality_expression] = STATE(2971), - [sym_relational_expression] = STATE(2971), - [sym_delete_expression] = STATE(2971), - [sym_sizeof_expression] = STATE(2971), + [sym_conditional_expression] = STATE(2995), + [sym_equality_expression] = STATE(2995), + [sym_relational_expression] = STATE(2995), + [sym_sizeof_expression] = STATE(2995), [sym_subscript_expression] = STATE(421), - [sym_parenthesized_expression] = STATE(2971), - [sym_scoped_type_identifier] = STATE(423), - [sym_string_literal] = STATE(424), - [sym_macro_type_specifier] = STATE(426), - [sym_class_specifier] = STATE(426), - [sym_concatenated_string] = STATE(2971), - [sym_sized_type_specifier] = STATE(426), - [sym_lambda_expression] = STATE(2971), - [sym_scoped_identifier] = STATE(425), - [sym__type_specifier] = STATE(426), - [sym_assignment_expression] = STATE(2971), + [sym_parenthesized_expression] = STATE(2995), + [sym_lambda_capture_specifier] = STATE(425), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(426), + [sym_macro_type_specifier] = STATE(428), + [sym_class_specifier] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(428), + [sym__type_specifier] = STATE(428), + [aux_sym_type_definition_repeat1] = STATE(429), + [sym_scoped_namespace_identifier] = STATE(430), + [sym_template_type] = STATE(431), + [sym_assignment_expression] = STATE(2995), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(2971), - [sym_math_expression] = STATE(2971), + [sym_shift_expression] = STATE(2995), + [sym_math_expression] = STATE(2995), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_enum_specifier] = STATE(426), - [sym_raw_string_literal] = ACTIONS(6150), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(702), - [sym_true] = ACTIONS(6152), + [sym_new_expression] = STATE(2995), + [sym_enum_specifier] = STATE(428), + [sym_raw_string_literal] = ACTIONS(6266), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(706), + [sym_true] = ACTIONS(6268), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(6152), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(710), - [anon_sym_signed] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_GT2] = ACTIONS(6154), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(720), + [sym_null] = ACTIONS(6268), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_GT2] = ACTIONS(6270), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_sizeof] = ACTIONS(724), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_short] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_short] = ACTIONS(716), + [anon_sym_delete] = ACTIONS(734), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(6150), - [anon_sym_DQUOTE] = ACTIONS(732), + [sym_number_literal] = ACTIONS(6266), + [anon_sym_DQUOTE] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(702), - [sym_false] = ACTIONS(6152), - [anon_sym_unsigned] = ACTIONS(712), - [sym_nullptr] = ACTIONS(6152), + [sym_primitive_type] = ACTIONS(706), + [sym_false] = ACTIONS(6268), + [anon_sym_unsigned] = ACTIONS(716), + [sym_nullptr] = ACTIONS(6268), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [1964] = { - [sym_string_literal] = STATE(2973), - [aux_sym_concatenated_string_repeat1] = STATE(2973), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_COLON] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [1998] = { + [sym_string_literal] = STATE(2997), + [aux_sym_concatenated_string_repeat1] = STATE(2997), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_COLON] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [1965] = { - [aux_sym_function_definition_repeat1] = STATE(987), - [sym_macro_type_specifier] = STATE(988), - [sym_class_specifier] = STATE(988), - [sym__type_specifier] = STATE(988), - [sym_sized_type_specifier] = STATE(988), - [sym_template_type] = STATE(86), - [sym_optional_parameter_declaration] = STATE(2974), - [sym_parameter_declaration] = STATE(2974), - [aux_sym__declaration_specifiers_repeat1] = STATE(989), - [sym_storage_class_specifier] = STATE(989), - [sym_dependent_type] = STATE(988), - [sym_struct_specifier] = STATE(988), - [sym_union_specifier] = STATE(988), - [sym_attribute] = STATE(987), - [sym_type_qualifier] = STATE(989), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(990), - [sym_enum_specifier] = STATE(988), - [sym_variadic_parameter_declaration] = STATE(2974), - [sym__declaration_specifiers] = STATE(991), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1821), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1821), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6156), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(11), - }, - [1966] = { - [anon_sym_LPAREN2] = ACTIONS(6158), - [anon_sym_final] = ACTIONS(6158), - [sym_noexcept] = ACTIONS(6158), - [anon_sym_mutable] = ACTIONS(6158), - [anon_sym_COMMA] = ACTIONS(6158), - [anon_sym__Atomic] = ACTIONS(6158), - [anon_sym_const] = ACTIONS(6160), - [anon_sym_GT2] = ACTIONS(6158), - [anon_sym_LBRACK] = ACTIONS(6158), - [anon_sym_constexpr] = ACTIONS(6158), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6158), - [anon_sym_override] = ACTIONS(6158), - [anon_sym_SEMI] = ACTIONS(6158), - [anon_sym_COLON] = ACTIONS(6158), - [anon_sym_explicit] = ACTIONS(6158), - [anon_sym_RPAREN] = ACTIONS(6158), - [anon_sym_DASH_GT] = ACTIONS(6158), - [anon_sym_EQ] = ACTIONS(6158), - [anon_sym_restrict] = ACTIONS(6158), - [anon_sym_LBRACE] = ACTIONS(6158), - }, - [1967] = { - [aux_sym_parameter_list_repeat1] = STATE(2976), - [anon_sym_COMMA] = ACTIONS(3965), - [anon_sym_RPAREN] = ACTIONS(6162), - [sym_comment] = ACTIONS(3), - }, - [1968] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(1971), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(3975), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(3975), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3975), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(3977), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(3975), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [sym_primitive_type] = ACTIONS(356), - }, - [1969] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2977), - [sym_storage_class_specifier] = STATE(2977), - [sym_type_qualifier] = STATE(2977), - [anon_sym_LPAREN2] = ACTIONS(541), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(541), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(541), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [sym_operator_name] = ACTIONS(541), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_restrict] = ACTIONS(11), - }, - [1970] = { - [sym_macro_type_specifier] = STATE(2978), - [sym_class_specifier] = STATE(2978), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(2978), - [sym__type_specifier] = STATE(2978), - [aux_sym__declaration_specifiers_repeat1] = STATE(873), - [sym_storage_class_specifier] = STATE(873), - [sym_type_qualifier] = STATE(873), - [sym_struct_specifier] = STATE(2978), - [sym_union_specifier] = STATE(2978), - [sym_dependent_type] = STATE(2978), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(1971), - [sym_enum_specifier] = STATE(2978), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(6164), - [anon_sym_signed] = ACTIONS(3975), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(3975), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(6164), - [anon_sym_unsigned] = ACTIONS(3975), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(3977), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(3975), - [anon_sym_restrict] = ACTIONS(11), - }, - [1971] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2979), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_short] = ACTIONS(6166), - [anon_sym_signed] = ACTIONS(6166), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_register] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_long] = ACTIONS(6166), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(6166), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [sym_identifier] = ACTIONS(629), - [sym_operator_name] = ACTIONS(621), - }, - [1972] = { - [sym__abstract_declarator] = STATE(2983), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(2983), - [sym_function_declarator] = STATE(2982), - [sym_destructor_name] = STATE(2982), - [sym__declarator] = STATE(2982), - [sym_abstract_pointer_declarator] = STATE(2983), - [sym_array_declarator] = STATE(2982), - [sym_parameter_list] = STATE(1982), - [sym_pointer_declarator] = STATE(2982), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(2983), - [sym_abstract_function_declarator] = STATE(2983), - [sym_template_function] = STATE(2982), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(2982), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_COMMA] = ACTIONS(5745), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(5745), - [sym_identifier] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(6172), - [sym_operator_name] = ACTIONS(6174), - [sym_comment] = ACTIONS(3), - }, - [1973] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2984), - [sym_storage_class_specifier] = STATE(2984), - [sym_type_qualifier] = STATE(2984), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [anon_sym_EQ] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [sym_operator_name] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(63), - }, - [1974] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2985), - [sym_storage_class_specifier] = STATE(2985), - [sym_type_qualifier] = STATE(2985), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [anon_sym_EQ] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [sym_operator_name] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(63), - }, - [1975] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1975), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(6176), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(6176), - [sym_operator_name] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(6176), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2077), - }, - [1976] = { - [sym_identifier] = ACTIONS(6179), - [sym_comment] = ACTIONS(3), - }, - [1977] = { - [sym__abstract_declarator] = STATE(2990), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(2990), - [sym_function_declarator] = STATE(2988), - [sym_destructor_name] = STATE(2988), - [sym__declarator] = STATE(2988), - [sym_abstract_pointer_declarator] = STATE(2990), - [sym_array_declarator] = STATE(2988), - [sym_parameter_list] = STATE(1982), - [sym_pointer_declarator] = STATE(2988), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(2990), - [sym_abstract_function_declarator] = STATE(2990), - [sym_template_function] = STATE(2988), - [sym_variadic_declarator] = STATE(2989), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(2988), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [sym_operator_name] = ACTIONS(6185), - [sym_comment] = ACTIONS(3), - }, - [1978] = { - [sym__abstract_declarator] = STATE(2993), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(2993), - [sym_function_declarator] = STATE(2991), - [sym_destructor_name] = STATE(2991), - [sym__declarator] = STATE(2991), - [sym_abstract_pointer_declarator] = STATE(2993), - [sym_array_declarator] = STATE(2991), - [sym_type_qualifier] = STATE(2992), - [sym_parameter_list] = STATE(1982), - [sym_pointer_declarator] = STATE(2991), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(2993), - [sym_abstract_function_declarator] = STATE(2993), - [sym_template_function] = STATE(2991), - [aux_sym_type_definition_repeat1] = STATE(2992), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(2991), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(2832), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [sym_operator_name] = ACTIONS(6187), - [anon_sym_restrict] = ACTIONS(11), - }, - [1979] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2994), - [sym_logical_expression] = STATE(2994), - [sym_bitwise_expression] = STATE(2994), - [sym_cast_expression] = STATE(2994), - [sym_new_expression] = STATE(2994), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(2994), - [sym_char_literal] = STATE(2994), - [sym_template_function] = STATE(2994), - [sym_conditional_expression] = STATE(2994), - [sym_equality_expression] = STATE(2994), - [sym_relational_expression] = STATE(2994), - [sym_delete_expression] = STATE(2994), - [sym_sizeof_expression] = STATE(2994), - [sym_parenthesized_expression] = STATE(2994), - [sym_lambda_expression] = STATE(2994), - [sym_concatenated_string] = STATE(2994), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(2994), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(2994), - [sym_math_expression] = STATE(2994), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6189), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(6191), - [sym_null] = ACTIONS(6191), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6189), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(6191), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), - }, - [1980] = { - [sym_parameter_list] = STATE(2996), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5745), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(6193), - [anon_sym_COMMA] = ACTIONS(5745), - [sym_comment] = ACTIONS(3), - }, - [1981] = { - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [sym_comment] = ACTIONS(3), - }, - [1982] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(2998), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2998), - [anon_sym_LPAREN2] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(6197), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_DASH_GT] = ACTIONS(6199), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [1983] = { - [sym_parameter_list] = STATE(2999), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(5745), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(5745), - [sym_comment] = ACTIONS(3), - }, - [1984] = { - [anon_sym_LPAREN2] = ACTIONS(6201), - [anon_sym_COMMA] = ACTIONS(6201), - [anon_sym_SEMI] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_GT2] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6201), - [anon_sym_RPAREN] = ACTIONS(6201), - [anon_sym_EQ] = ACTIONS(6201), - [anon_sym_LBRACE] = ACTIONS(6201), + [1999] = { + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6272), + [anon_sym_COLON] = ACTIONS(6272), + [anon_sym_GT2] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6272), [sym_comment] = ACTIONS(3), }, - [1985] = { - [sym_template_type] = STATE(754), + [2000] = { + [sym_template_function] = STATE(755), [sym__expression] = STATE(755), [sym_logical_expression] = STATE(755), [sym_bitwise_expression] = STATE(755), [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), + [sym_delete_expression] = STATE(755), [sym_field_expression] = STATE(755), [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), [sym_conditional_expression] = STATE(755), [sym_equality_expression] = STATE(755), [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), + [sym_template_type] = STATE(761), [sym_assignment_expression] = STATE(755), [sym_pointer_expression] = STATE(755), [sym_shift_expression] = STATE(755), [sym_math_expression] = STATE(755), [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_RBRACK] = ACTIONS(6203), - }, - [1986] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(6203), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(6274), }, - [1987] = { - [sym_type_qualifier] = STATE(1987), - [aux_sym_type_definition_repeat1] = STATE(1987), - [anon_sym_LPAREN2] = ACTIONS(2106), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_RBRACK] = ACTIONS(2106), - [sym_true] = ACTIONS(2101), - [anon_sym_mutable] = ACTIONS(6205), - [sym_null] = ACTIONS(2101), - [sym_raw_string_literal] = ACTIONS(2106), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(6205), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(6205), - [sym_identifier] = ACTIONS(2101), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_delete] = ACTIONS(2101), - [anon_sym__Atomic] = ACTIONS(6205), - [anon_sym_const] = ACTIONS(6205), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(6205), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2101), - [sym_nullptr] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2106), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(6205), - [anon_sym_SQUOTE] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), + [2001] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(6274), }, - [1988] = { - [sym_union_specifier] = STATE(1673), - [sym_macro_type_specifier] = STATE(1673), - [sym_class_specifier] = STATE(1673), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1673), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1673), - [aux_sym_sized_type_specifier_repeat1] = STATE(1990), - [sym_struct_specifier] = STATE(1673), - [sym_enum_specifier] = STATE(1673), - [sym_scoped_type_identifier] = STATE(1989), - [sym_dependent_type] = STATE(1673), - [anon_sym_unsigned] = ACTIONS(4005), - [anon_sym_struct] = ACTIONS(3914), - [sym_auto] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(4005), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4005), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(4009), + [2002] = { + [sym_union_specifier] = STATE(1671), + [sym_macro_type_specifier] = STATE(1671), + [sym_class_specifier] = STATE(1671), + [aux_sym_sized_type_specifier_repeat1] = STATE(2003), + [sym_sized_type_specifier] = STATE(1671), + [sym__type_specifier] = STATE(1671), + [sym_scoped_type_identifier] = STATE(2005), + [sym_enum_specifier] = STATE(1671), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1671), + [sym_struct_specifier] = STATE(1671), + [anon_sym_unsigned] = ACTIONS(4053), + [anon_sym_struct] = ACTIONS(3992), + [sym_auto] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(4053), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(4053), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4057), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(4005), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(3920), - [sym_primitive_type] = ACTIONS(3306), - }, - [1989] = { - [sym_template_argument_list] = STATE(354), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_final] = ACTIONS(545), - [sym_noexcept] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(545), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym__Atomic] = ACTIONS(545), - [anon_sym_const] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_constexpr] = ACTIONS(545), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_override] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - }, - [1990] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3001), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(625), - [sym_identifier] = ACTIONS(3328), - [anon_sym_long] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_short] = ACTIONS(6208), - }, - [1991] = { - [sym_parameter_list] = STATE(3004), - [sym_abstract_array_declarator] = STATE(3005), - [sym_abstract_pointer_declarator] = STATE(3005), - [sym_abstract_reference_declarator] = STATE(3005), - [sym_abstract_function_declarator] = STATE(3005), - [sym__abstract_declarator] = STATE(3005), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6214), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6216), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_COLON] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(6218), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_restrict] = ACTIONS(6210), - [anon_sym_LBRACE] = ACTIONS(6210), - }, - [1992] = { - [sym_virtual_specifier] = STATE(1992), - [aux_sym_function_declarator_repeat1] = STATE(1992), - [sym_trailing_return_type] = STATE(1992), - [sym_type_qualifier] = STATE(1992), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(6225), - [anon_sym_mutable] = ACTIONS(6228), - [anon_sym__Atomic] = ACTIONS(6228), - [anon_sym_const] = ACTIONS(6231), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6228), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_COLON] = ACTIONS(6220), - [anon_sym_explicit] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6234), - [anon_sym_EQ] = ACTIONS(6220), - [anon_sym_restrict] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(6220), + [anon_sym_short] = ACTIONS(4053), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3316), }, - [1993] = { - [sym_parameter_list] = STATE(1015), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_LBRACE] = ACTIONS(4958), - [anon_sym_SEMI] = ACTIONS(4958), + [2003] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2999), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(6276), + [anon_sym_mutable] = ACTIONS(558), + [sym_identifier] = ACTIONS(3333), + [anon_sym_long] = ACTIONS(6276), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(3335), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(6276), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_COLON] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_short] = ACTIONS(6276), }, - [1994] = { - [sym_identifier] = ACTIONS(6237), - [sym_comment] = ACTIONS(3), + [2004] = { + [sym_abstract_reference_declarator] = STATE(3003), + [sym_abstract_array_declarator] = STATE(3003), + [sym_abstract_pointer_declarator] = STATE(3003), + [sym_parameter_list] = STATE(3002), + [sym_abstract_function_declarator] = STATE(3003), + [sym__abstract_declarator] = STATE(3003), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6282), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(6284), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_EQ] = ACTIONS(6085), + [anon_sym_restrict] = ACTIONS(6085), + [anon_sym_LBRACE] = ACTIONS(6085), }, - [1995] = { - [anon_sym_LPAREN2] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [sym_comment] = ACTIONS(3), + [2005] = { + [sym_template_argument_list] = STATE(312), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_final] = ACTIONS(530), + [sym_noexcept] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym__Atomic] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_constexpr] = ACTIONS(530), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_override] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), }, - [1996] = { - [aux_sym_structured_binding_declarator_repeat1] = STATE(3008), + [2006] = { + [sym_virtual_specifier] = STATE(2006), + [aux_sym_function_declarator_repeat1] = STATE(2006), + [sym_type_qualifier] = STATE(2006), + [sym_trailing_return_type] = STATE(2006), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(6291), + [anon_sym_mutable] = ACTIONS(6294), + [anon_sym__Atomic] = ACTIONS(6294), + [anon_sym_const] = ACTIONS(6297), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(6294), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4019), - [anon_sym_RBRACK] = ACTIONS(6241), - }, - [1997] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(6243), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_volatile] = ACTIONS(6294), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_COLON] = ACTIONS(6286), + [anon_sym_explicit] = ACTIONS(6294), + [anon_sym_DASH_GT] = ACTIONS(6300), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_restrict] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6286), }, - [1998] = { + [2007] = { + [sym_parameter_list] = STATE(1028), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(6243), - }, - [1999] = { - [anon_sym_DASH] = ACTIONS(6245), - [sym_raw_string_literal] = ACTIONS(6247), - [sym_true] = ACTIONS(6245), - [anon_sym_mutable] = ACTIONS(6245), - [sym_null] = ACTIONS(6245), - [anon_sym_break] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6247), - [anon_sym_sizeof] = ACTIONS(6245), - [anon_sym_volatile] = ACTIONS(6245), - [anon_sym_PLUS] = ACTIONS(6245), - [anon_sym_typedef] = ACTIONS(6245), - [anon_sym_switch] = ACTIONS(6245), - [anon_sym_explicit] = ACTIONS(6245), - [sym_identifier] = ACTIONS(6245), - [anon_sym_delete] = ACTIONS(6245), - [anon_sym_continue] = ACTIONS(6245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6245), - [anon_sym__Atomic] = ACTIONS(6245), - [sym_number_literal] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6245), - [anon_sym_enum] = ACTIONS(6245), - [anon_sym_constexpr] = ACTIONS(6245), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6247), - [anon_sym_namespace] = ACTIONS(6245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6245), - [anon_sym_SQUOTE] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6247), - [anon_sym_DASH_DASH] = ACTIONS(6247), - [anon_sym_LPAREN2] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6245), - [sym_auto] = ACTIONS(6245), - [anon_sym_signed] = ACTIONS(6245), - [anon_sym_long] = ACTIONS(6245), - [anon_sym_COLON_COLON] = ACTIONS(6247), - [anon_sym_using] = ACTIONS(6245), - [sym_preproc_directive] = ACTIONS(6245), - [aux_sym_preproc_if_token1] = ACTIONS(6245), - [anon_sym_AMP] = ACTIONS(6245), - [anon_sym_static] = ACTIONS(6245), - [anon_sym_RBRACE] = ACTIONS(6247), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6245), - [anon_sym_typename] = ACTIONS(6245), - [anon_sym_short] = ACTIONS(6245), - [anon_sym_new] = ACTIONS(6245), - [anon_sym_goto] = ACTIONS(6245), - [sym_operator_name] = ACTIONS(6247), - [anon_sym_while] = ACTIONS(6245), - [anon_sym_try] = ACTIONS(6245), - [anon_sym_for] = ACTIONS(6245), - [aux_sym_preproc_include_token1] = ACTIONS(6245), - [anon_sym_register] = ACTIONS(6245), - [anon_sym_DQUOTE] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_class] = ACTIONS(6245), - [anon_sym_if] = ACTIONS(6245), - [sym_primitive_type] = ACTIONS(6245), - [sym_false] = ACTIONS(6245), - [sym_nullptr] = ACTIONS(6245), - [anon_sym_do] = ACTIONS(6245), - [anon_sym_template] = ACTIONS(6245), - [anon_sym_return] = ACTIONS(6245), - [anon_sym_TILDE] = ACTIONS(6247), - [anon_sym_SEMI] = ACTIONS(6247), - [ts_builtin_sym_end] = ACTIONS(6247), - [aux_sym_preproc_def_token1] = ACTIONS(6245), - [anon_sym_AMP_AMP] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6245), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4954), }, - [2000] = { - [sym_destructor_name] = STATE(166), + [2008] = { + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6249), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(974), + [sym_identifier] = ACTIONS(3160), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(978), }, - [2001] = { - [sym_template_argument_list] = STATE(3012), + [2009] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(1573), [anon_sym_LPAREN2] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), [anon_sym_mutable] = ACTIONS(169), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(6251), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1010), [anon_sym_DOT_DOT_DOT] = ACTIONS(185), [anon_sym_static] = ACTIONS(169), [anon_sym_volatile] = ACTIONS(169), @@ -87720,13 +88080,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(163), [anon_sym_explicit] = ACTIONS(169), [sym_identifier] = ACTIONS(169), - [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1010), [sym_operator_name] = ACTIONS(185), - [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1010), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), [anon_sym_COMMA] = ACTIONS(187), [anon_sym_register] = ACTIONS(169), [anon_sym__Atomic] = ACTIONS(169), @@ -87740,11 +88100,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1010), [anon_sym_TILDE] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1010), [anon_sym_RPAREN] = ACTIONS(187), [anon_sym_inline] = ACTIONS(169), [anon_sym_EQ] = ACTIONS(169), @@ -87752,285 +88112,252 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(187), [anon_sym_GT_GT] = ACTIONS(163), }, - [2002] = { - [anon_sym_LPAREN2] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [sym_noexcept] = ACTIONS(3969), - [anon_sym_mutable] = ACTIONS(3969), - [anon_sym_COMMA] = ACTIONS(6253), - [anon_sym__Atomic] = ACTIONS(3969), - [anon_sym_const] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_constexpr] = ACTIONS(3969), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_SEMI] = ACTIONS(6253), - [anon_sym_COLON] = ACTIONS(3969), - [anon_sym_explicit] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3969), - [anon_sym_restrict] = ACTIONS(3969), - [anon_sym_LBRACE] = ACTIONS(3969), - }, - [2003] = { - [sym_initializer_list] = STATE(324), - [anon_sym_LPAREN2] = ACTIONS(545), - [sym_operator_name] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(545), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [sym_identifier] = ACTIONS(547), - }, - [2004] = { - [anon_sym_COLON_COLON] = ACTIONS(6256), - [sym_comment] = ACTIONS(3), + [2010] = { + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_final] = ACTIONS(3720), + [sym_noexcept] = ACTIONS(3720), + [anon_sym_mutable] = ACTIONS(3720), + [anon_sym_COMMA] = ACTIONS(6303), + [anon_sym__Atomic] = ACTIONS(3720), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_constexpr] = ACTIONS(3720), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(3720), + [anon_sym_override] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(6303), + [anon_sym_COLON] = ACTIONS(3720), + [anon_sym_explicit] = ACTIONS(3720), + [anon_sym_DASH_GT] = ACTIONS(3720), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_restrict] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3720), }, - [2005] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(6258), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2011] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(6306), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(6306), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2006] = { + [2012] = { [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(6258), - [anon_sym_SEMI] = ACTIONS(6258), + [anon_sym_COMMA] = ACTIONS(6306), + [anon_sym_SEMI] = ACTIONS(6306), }, - [2007] = { - [sym_argument_list] = STATE(1016), - [sym_initializer_list] = STATE(1016), - [sym_parameter_list] = STATE(1015), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(6260), + [2013] = { + [sym_argument_list] = STATE(1027), + [sym_initializer_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(6308), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(6260), + [anon_sym_SEMI] = ACTIONS(6308), }, - [2008] = { + [2014] = { [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_SEMI] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6308), + [anon_sym_SEMI] = ACTIONS(6308), }, - [2009] = { - [sym_template_type] = STATE(71), + [2015] = { + [sym_template_function] = STATE(72), [sym__expression] = STATE(72), [sym_logical_expression] = STATE(72), [sym_bitwise_expression] = STATE(72), [sym_cast_expression] = STATE(72), - [sym_new_expression] = STATE(72), - [sym_field_expression] = STATE(2022), + [sym_delete_expression] = STATE(72), + [sym_field_expression] = STATE(2029), [sym_compound_literal_expression] = STATE(72), + [sym_lambda_expression] = STATE(72), [sym_char_literal] = STATE(72), - [sym_template_function] = STATE(72), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(72), [sym_equality_expression] = STATE(72), [sym_relational_expression] = STATE(72), - [sym_delete_expression] = STATE(72), [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(72), - [sym_lambda_expression] = STATE(72), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), [sym_concatenated_string] = STATE(72), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(72), - [sym_pointer_expression] = STATE(2022), + [sym_pointer_expression] = STATE(2029), [sym_shift_expression] = STATE(72), [sym_math_expression] = STATE(72), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(72), [sym_raw_string_literal] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), [sym_true] = ACTIONS(113), [sym_null] = ACTIONS(113), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(109), - [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_COLON_COLON] = ACTIONS(6312), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4083), [sym_false] = ACTIONS(113), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(6314), [sym_nullptr] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [2010] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_new_expression] = STATE(77), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_template_function] = STATE(77), - [sym_conditional_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_delete_expression] = STATE(77), - [sym_sizeof_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_lambda_expression] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [2016] = { + [sym_template_function] = STATE(78), + [sym__expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_delete_expression] = STATE(78), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(78), + [sym_lambda_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(78), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(78), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(78), [sym_raw_string_literal] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), [sym_true] = ACTIONS(133), [sym_null] = ACTIONS(133), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(131), - [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_COLON_COLON] = ACTIONS(6312), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4083), [sym_false] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(6314), [sym_nullptr] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [2011] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3020), - [sym_logical_expression] = STATE(3020), - [sym_bitwise_expression] = STATE(3020), - [sym_cast_expression] = STATE(3020), - [sym_new_expression] = STATE(3020), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3020), - [sym_char_literal] = STATE(3020), - [sym_template_function] = STATE(3020), - [sym_conditional_expression] = STATE(3020), - [sym_equality_expression] = STATE(3020), - [sym_relational_expression] = STATE(3020), - [sym_delete_expression] = STATE(3020), - [sym_sizeof_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym_lambda_expression] = STATE(3020), - [sym_concatenated_string] = STATE(3020), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3020), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3020), - [sym_math_expression] = STATE(3020), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6274), - [sym_true] = ACTIONS(6276), - [sym_null] = ACTIONS(6276), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6272), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(6276), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(6276), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [2017] = { + [sym_template_function] = STATE(3010), + [sym__expression] = STATE(3010), + [sym_logical_expression] = STATE(3010), + [sym_bitwise_expression] = STATE(3010), + [sym_cast_expression] = STATE(3010), + [sym_delete_expression] = STATE(3010), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3010), + [sym_lambda_expression] = STATE(3010), + [sym_char_literal] = STATE(3010), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3010), + [sym_equality_expression] = STATE(3010), + [sym_relational_expression] = STATE(3010), + [sym_sizeof_expression] = STATE(3010), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3010), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3010), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3010), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3010), + [sym_math_expression] = STATE(3010), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3010), + [sym_raw_string_literal] = ACTIONS(6320), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6322), + [sym_true] = ACTIONS(6324), + [sym_null] = ACTIONS(6324), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6320), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(6324), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(6324), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [2012] = { - [sym_template_argument_list] = STATE(99), + [2018] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(101), [anon_sym_DASH] = ACTIONS(163), [anon_sym_mutable] = ACTIONS(169), - [anon_sym_STAR_EQ] = ACTIONS(6278), - [anon_sym_PERCENT_EQ] = ACTIONS(6278), + [anon_sym_STAR_EQ] = ACTIONS(6326), + [anon_sym_PERCENT_EQ] = ACTIONS(6326), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_LT] = ACTIONS(177), [anon_sym_volatile] = ACTIONS(169), @@ -88038,10 +88365,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(163), [anon_sym_explicit] = ACTIONS(169), [sym_identifier] = ACTIONS(169), - [anon_sym_SLASH_EQ] = ACTIONS(6278), - [anon_sym_PLUS_EQ] = ACTIONS(6278), + [anon_sym_SLASH_EQ] = ACTIONS(6326), + [anon_sym_PLUS_EQ] = ACTIONS(6326), [anon_sym_GT] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(6278), + [anon_sym_GT_GT_EQ] = ACTIONS(6326), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym__Atomic] = ACTIONS(169), @@ -88049,27 +88376,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [anon_sym_constexpr] = ACTIONS(169), [sym_comment] = ACTIONS(3), - [anon_sym_DASH_EQ] = ACTIONS(6278), + [anon_sym_DASH_EQ] = ACTIONS(6326), [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(6278), + [anon_sym_AMP_EQ] = ACTIONS(6326), [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(6280), + [anon_sym_EQ] = ACTIONS(6328), [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_DASH_DASH] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(6278), + [anon_sym_LT_LT_EQ] = ACTIONS(6326), [anon_sym_COLON_COLON] = ACTIONS(173), [anon_sym_PIPE] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(6278), + [anon_sym_CARET_EQ] = ACTIONS(6326), [anon_sym_AMP] = ACTIONS(180), [anon_sym_static] = ACTIONS(169), [anon_sym_RBRACE] = ACTIONS(165), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(960), + [anon_sym_COLON] = ACTIONS(964), [sym_operator_name] = ACTIONS(185), [anon_sym_CARET] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(6278), + [anon_sym_PIPE_EQ] = ACTIONS(6326), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_register] = ACTIONS(169), [anon_sym_const] = ACTIONS(169), @@ -88085,172 +88412,172 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(169), [anon_sym_GT_GT] = ACTIONS(163), }, - [2013] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3023), - [sym_logical_expression] = STATE(3023), - [sym_bitwise_expression] = STATE(3023), - [sym_cast_expression] = STATE(3023), - [sym_new_expression] = STATE(3023), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3023), - [sym_char_literal] = STATE(3023), - [sym_template_function] = STATE(3023), - [sym_conditional_expression] = STATE(3023), - [sym_equality_expression] = STATE(3023), - [sym_relational_expression] = STATE(3023), - [sym_delete_expression] = STATE(3023), - [sym_sizeof_expression] = STATE(3023), - [sym_parenthesized_expression] = STATE(3023), - [sym_lambda_expression] = STATE(3023), - [sym_concatenated_string] = STATE(3023), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3023), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3023), - [sym_math_expression] = STATE(3023), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6282), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(6284), - [sym_null] = ACTIONS(6284), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6282), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6286), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(6284), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(6284), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [2019] = { + [sym_template_function] = STATE(3013), + [sym__expression] = STATE(3013), + [sym_logical_expression] = STATE(3013), + [sym_bitwise_expression] = STATE(3013), + [sym_cast_expression] = STATE(3013), + [sym_delete_expression] = STATE(3013), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3013), + [sym_lambda_expression] = STATE(3013), + [sym_char_literal] = STATE(3013), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3013), + [sym_equality_expression] = STATE(3013), + [sym_relational_expression] = STATE(3013), + [sym_sizeof_expression] = STATE(3013), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3013), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3013), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3013), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3013), + [sym_math_expression] = STATE(3013), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3013), + [sym_raw_string_literal] = ACTIONS(6330), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(6332), + [sym_null] = ACTIONS(6332), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6330), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(6334), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(6332), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(6332), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [2014] = { - [sym_goto_statement] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_logical_expression] = STATE(2024), - [sym_for_range_loop] = STATE(133), - [sym_cast_expression] = STATE(2024), - [sym_declaration] = STATE(133), - [sym_field_expression] = STATE(2022), - [sym_field_designator] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_switch_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(2024), - [sym_relational_expression] = STATE(2024), - [sym_delete_expression] = STATE(2024), - [sym_subscript_expression] = STATE(2022), - [sym_scoped_identifier] = STATE(50), + [2020] = { + [sym_goto_statement] = STATE(134), + [sym_preproc_function_def] = STATE(134), + [sym_logical_expression] = STATE(2031), + [sym_try_statement] = STATE(134), + [sym_cast_expression] = STATE(2031), + [sym_lambda_expression] = STATE(2031), + [sym_field_expression] = STATE(2029), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(134), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_field_designator] = STATE(452), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(134), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(134), + [sym_namespace_definition] = STATE(134), + [sym_conditional_expression] = STATE(2031), + [sym_relational_expression] = STATE(2031), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(134), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(2030), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(134), [sym_initializer_list] = STATE(451), - [sym_type_definition] = STATE(133), - [sym_string_literal] = STATE(2023), - [sym_function_declarator] = STATE(51), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_preproc_include] = STATE(133), - [sym_assignment_expression] = STATE(2024), - [sym_preproc_ifdef] = STATE(133), - [sym_shift_expression] = STATE(2024), - [sym_using_declaration] = STATE(133), - [sym_call_expression] = STATE(2022), - [sym_attribute] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(134), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(134), + [sym_preproc_include] = STATE(134), + [sym_assignment_expression] = STATE(2031), + [sym_preproc_ifdef] = STATE(134), + [sym_shift_expression] = STATE(2031), + [sym_for_range_loop] = STATE(134), + [sym_call_expression] = STATE(2029), [sym_initializer_pair] = STATE(451), - [sym_compound_statement] = STATE(133), - [sym_template_instantiation] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(133), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(2024), - [sym_preproc_def] = STATE(133), - [sym_bitwise_expression] = STATE(2024), - [sym_new_expression] = STATE(2024), - [sym_function_definition] = STATE(133), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(2024), - [sym_char_literal] = STATE(2024), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [aux_sym_translation_unit_repeat1] = STATE(133), - [sym_storage_class_specifier] = STATE(48), - [sym_if_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(133), - [sym_equality_expression] = STATE(2024), - [sym_try_statement] = STATE(133), - [sym_sizeof_expression] = STATE(2024), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(2024), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(2024), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(2024), - [sym_structured_binding_declaration] = STATE(133), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(133), - [sym_preproc_if] = STATE(133), - [sym_pointer_expression] = STATE(2022), - [sym_namespace_definition] = STATE(133), - [sym_math_expression] = STATE(2024), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(133), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [sym_subscript_designator] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_raw_string_literal] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4043), - [sym_true] = ACTIONS(4045), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(134), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_expression_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(2031), + [sym_preproc_def] = STATE(134), + [sym_bitwise_expression] = STATE(2031), + [sym_delete_expression] = STATE(2031), + [sym_function_definition] = STATE(134), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(2031), + [sym_char_literal] = STATE(2031), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(134), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(134), + [sym_equality_expression] = STATE(2031), + [sym_using_declaration] = STATE(134), + [sym_sizeof_expression] = STATE(2031), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(2031), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(2031), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(134), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(134), + [sym_preproc_if] = STATE(134), + [sym_pointer_expression] = STATE(2029), + [sym_new_expression] = STATE(2031), + [sym_math_expression] = STATE(2031), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(134), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(134), + [aux_sym_translation_unit_repeat1] = STATE(134), + [sym_subscript_designator] = STATE(452), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_raw_string_literal] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4079), + [sym_true] = ACTIONS(4081), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4045), + [sym_null] = ACTIONS(4081), [anon_sym_break] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_sizeof] = ACTIONS(4049), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_sizeof] = ACTIONS(4085), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4079), [anon_sym_typedef] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(4051), - [anon_sym_delete] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4087), + [anon_sym_delete] = ACTIONS(4089), [anon_sym_continue] = ACTIONS(27), [aux_sym_preproc_ifdef_token1] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(760), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4041), + [sym_number_literal] = ACTIONS(4077), [anon_sym_extern] = ACTIONS(31), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), @@ -88260,25 +88587,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(39), [aux_sym_preproc_ifdef_token2] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [anon_sym_LPAREN2] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [anon_sym_LPAREN2] = ACTIONS(4095), [anon_sym_struct] = ACTIONS(49), [sym_auto] = ACTIONS(51), [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4097), [anon_sym_using] = ACTIONS(55), [sym_preproc_directive] = ACTIONS(57), [aux_sym_preproc_if_token1] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4099), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(6288), - [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_RBRACE] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(4103), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), - [anon_sym_new] = ACTIONS(4069), + [anon_sym_new] = ACTIONS(4105), [anon_sym_goto] = ACTIONS(73), [sym_operator_name] = ACTIONS(75), [anon_sym_while] = ACTIONS(250), @@ -88288,72 +88615,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_LBRACK] = ACTIONS(4107), [anon_sym_class] = ACTIONS(89), [anon_sym_if] = ACTIONS(256), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(4045), - [sym_nullptr] = ACTIONS(4045), + [sym_false] = ACTIONS(4081), + [sym_nullptr] = ACTIONS(4081), [anon_sym_do] = ACTIONS(95), [anon_sym_template] = ACTIONS(97), [anon_sym_return] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4109), [anon_sym_SEMI] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_restrict] = ACTIONS(11), }, - [2015] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_destructor_name] = STATE(148), - [sym__declarator] = STATE(148), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_array_declarator] = STATE(148), - [sym_char_literal] = STATE(147), - [sym_type_descriptor] = STATE(3025), - [sym_dependent_type] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_type_qualifier] = STATE(154), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_identifier] = STATE(50), - [sym_scoped_type_identifier] = STATE(61), - [sym_function_declarator] = STATE(148), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_string_literal] = STATE(151), - [sym_delete_expression] = STATE(147), - [sym_lambda_expression] = STATE(147), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_pointer_declarator] = STATE(148), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_reference_declarator] = STATE(148), + [2021] = { + [sym_template_function] = STATE(57), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(149), + [sym_scoped_type_identifier] = STATE(48), + [sym_field_expression] = STATE(150), + [sym_array_declarator] = STATE(149), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_lambda_expression] = STATE(148), + [sym_type_qualifier] = STATE(156), + [sym_type_descriptor] = STATE(3015), + [sym_structured_binding_declarator] = STATE(149), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_function_declarator] = STATE(149), + [sym_concatenated_string] = STATE(148), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym_string_literal] = STATE(154), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_reference_declarator] = STATE(149), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_destructor_name] = STATE(149), + [sym_call_expression] = STATE(150), + [sym_pointer_declarator] = STATE(149), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [anon_sym_LPAREN2] = ACTIONS(258), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -88383,7 +88711,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(11), [sym_number_literal] = ACTIONS(262), [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(290), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), @@ -88392,340 +88720,400 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [2016] = { - [sym_destructor_name] = STATE(166), + [2022] = { + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(304), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(6290), + [sym_identifier] = ACTIONS(306), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(6338), }, - [2017] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_destructor_name] = STATE(191), - [sym__declarator] = STATE(191), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_array_declarator] = STATE(191), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(192), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_scoped_type_identifier] = STATE(195), - [sym_function_declarator] = STATE(191), - [sym_string_literal] = STATE(3035), - [sym_subscript_expression] = STATE(190), - [sym_scoped_identifier] = STATE(193), - [sym_parenthesized_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), - [sym_pointer_declarator] = STATE(191), + [2023] = { + [sym_template_function] = STATE(190), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_scoped_identifier] = STATE(192), + [sym__declarator] = STATE(193), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_array_declarator] = STATE(193), + [sym_char_literal] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_scoped_type_identifier] = STATE(194), + [sym_structured_binding_declarator] = STATE(193), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [sym_reference_declarator] = STATE(191), - [anon_sym_LPAREN2] = ACTIONS(6292), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(6294), - [sym_true] = ACTIONS(330), - [anon_sym_SQUOTE] = ACTIONS(332), - [sym_null] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(6296), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(330), - [anon_sym_AMP] = ACTIONS(4063), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(4067), - [anon_sym_TILDE] = ACTIONS(6304), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(346), - [anon_sym_new] = ACTIONS(6306), + [sym_parenthesized_expression] = STATE(191), + [sym_function_declarator] = STATE(193), + [sym_string_literal] = STATE(3025), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(191), + [sym_reference_declarator] = STATE(193), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_destructor_name] = STATE(193), + [sym_call_expression] = STATE(191), + [sym_pointer_declarator] = STATE(193), + [sym_new_expression] = STATE(191), + [anon_sym_LPAREN2] = ACTIONS(6340), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(6342), + [sym_true] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(334), + [sym_null] = ACTIONS(332), + [anon_sym_DASH_DASH] = ACTIONS(6344), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(290), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(4099), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(4103), + [anon_sym_TILDE] = ACTIONS(6352), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(348), + [anon_sym_new] = ACTIONS(6354), [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_delete] = ACTIONS(6308), - [sym_operator_name] = ACTIONS(352), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_delete] = ACTIONS(6356), + [sym_operator_name] = ACTIONS(354), }, - [2018] = { - [anon_sym_DASH] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [anon_sym_delete] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym_namespace] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [anon_sym_while] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [anon_sym_const] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_nullptr] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(2397), - [ts_builtin_sym_end] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(962), + [2024] = { + [anon_sym_DASH] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(968), + [sym_true] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [sym_null] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(966), + [sym_number_literal] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_namespace] = ACTIONS(966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [anon_sym_while] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [aux_sym_preproc_include_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_const] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_nullptr] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(2399), + [ts_builtin_sym_end] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(966), }, - [2019] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_destructor_name] = STATE(191), - [sym__declarator] = STATE(191), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_array_declarator] = STATE(191), - [sym_char_literal] = STATE(190), - [sym_type_qualifier] = STATE(198), - [sym_template_function] = STATE(192), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_scoped_type_identifier] = STATE(195), - [sym_function_declarator] = STATE(191), - [sym_string_literal] = STATE(3035), - [sym_subscript_expression] = STATE(190), - [sym_scoped_identifier] = STATE(193), - [sym_parenthesized_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), - [sym_pointer_declarator] = STATE(191), + [2025] = { + [sym_template_function] = STATE(190), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_scoped_identifier] = STATE(192), + [sym__declarator] = STATE(193), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_array_declarator] = STATE(193), + [sym_char_literal] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_scoped_type_identifier] = STATE(194), + [sym_type_qualifier] = STATE(199), + [sym_structured_binding_declarator] = STATE(193), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [aux_sym_type_definition_repeat1] = STATE(198), - [sym_reference_declarator] = STATE(191), - [anon_sym_LPAREN2] = ACTIONS(6292), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(6294), - [sym_true] = ACTIONS(330), + [sym_parenthesized_expression] = STATE(191), + [sym_function_declarator] = STATE(193), + [sym_string_literal] = STATE(3025), + [aux_sym_type_definition_repeat1] = STATE(199), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(191), + [sym_reference_declarator] = STATE(193), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_destructor_name] = STATE(193), + [sym_call_expression] = STATE(191), + [sym_pointer_declarator] = STATE(193), + [sym_new_expression] = STATE(191), + [anon_sym_LPAREN2] = ACTIONS(6340), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(6342), + [sym_true] = ACTIONS(332), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(330), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_BANG] = ACTIONS(6300), - [anon_sym_AMP] = ACTIONS(4063), - [anon_sym_sizeof] = ACTIONS(6302), + [sym_null] = ACTIONS(332), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_BANG] = ACTIONS(6348), + [anon_sym_AMP] = ACTIONS(4099), + [anon_sym_sizeof] = ACTIONS(6350), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_STAR] = ACTIONS(4103), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(346), - [anon_sym_new] = ACTIONS(6306), - [sym_operator_name] = ACTIONS(352), - [anon_sym_delete] = ACTIONS(6308), + [sym_identifier] = ACTIONS(348), + [anon_sym_new] = ACTIONS(6354), + [sym_operator_name] = ACTIONS(354), + [anon_sym_delete] = ACTIONS(6356), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(326), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(117), + [sym_number_literal] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(290), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(330), - [sym_nullptr] = ACTIONS(330), - [anon_sym_TILDE] = ACTIONS(6304), + [sym_false] = ACTIONS(332), + [sym_nullptr] = ACTIONS(332), + [anon_sym_TILDE] = ACTIONS(6352), [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [2020] = { - [sym_union_specifier] = STATE(3038), - [sym_macro_type_specifier] = STATE(3038), - [sym_class_specifier] = STATE(3038), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(3038), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(3038), - [aux_sym_sized_type_specifier_repeat1] = STATE(3037), - [sym_argument_list] = STATE(3039), - [sym_enum_specifier] = STATE(3038), - [sym_struct_specifier] = STATE(3038), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(3038), - [anon_sym_LPAREN2] = ACTIONS(358), + [2026] = { + [sym_union_specifier] = STATE(3028), + [sym_macro_type_specifier] = STATE(3028), + [sym_class_specifier] = STATE(3028), + [aux_sym_sized_type_specifier_repeat1] = STATE(3027), + [sym_sized_type_specifier] = STATE(3028), + [sym__type_specifier] = STATE(3028), + [sym_argument_list] = STATE(3029), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(3028), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(3028), + [sym_struct_specifier] = STATE(3028), + [anon_sym_LPAREN2] = ACTIONS(360), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(6310), - [anon_sym_signed] = ACTIONS(6312), - [anon_sym_long] = ACTIONS(6312), + [sym_auto] = ACTIONS(6358), + [anon_sym_signed] = ACTIONS(6360), + [anon_sym_long] = ACTIONS(6360), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(6310), - [anon_sym_unsigned] = ACTIONS(6312), + [sym_primitive_type] = ACTIONS(6358), + [anon_sym_unsigned] = ACTIONS(6360), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(6314), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(6312), + [anon_sym_typename] = ACTIONS(6362), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(6360), }, - [2021] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(303), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6316), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [2027] = { + [sym_template_function] = STATE(1183), + [sym__expression] = STATE(1183), + [sym_logical_expression] = STATE(1183), + [sym_bitwise_expression] = STATE(1183), + [sym_cast_expression] = STATE(1183), + [sym_delete_expression] = STATE(1183), + [sym_field_expression] = STATE(241), + [sym_compound_literal_expression] = STATE(1183), + [sym_lambda_expression] = STATE(1183), + [sym_char_literal] = STATE(1183), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(1183), + [sym_equality_expression] = STATE(1183), + [sym_relational_expression] = STATE(1183), + [sym_sizeof_expression] = STATE(1183), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), + [sym_parenthesized_expression] = STATE(1183), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), + [sym_concatenated_string] = STATE(1183), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(1183), + [sym_pointer_expression] = STATE(241), + [sym_shift_expression] = STATE(1183), + [sym_math_expression] = STATE(1183), + [sym_call_expression] = STATE(241), + [sym_new_expression] = STATE(1183), + [sym_raw_string_literal] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(2371), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(2369), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(414), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(422), }, - [2022] = { + [2028] = { + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6364), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), + }, + [2029] = { [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(6280), - [anon_sym_STAR_EQ] = ACTIONS(6278), - [anon_sym_LT_LT_EQ] = ACTIONS(6278), - [anon_sym_PERCENT_EQ] = ACTIONS(6278), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_STAR_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_EQ] = ACTIONS(6326), + [anon_sym_PERCENT_EQ] = ACTIONS(6326), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(6278), + [anon_sym_CARET_EQ] = ACTIONS(6326), [anon_sym_AMP] = ACTIONS(163), [anon_sym_RBRACE] = ACTIONS(165), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(6278), - [anon_sym_PLUS_EQ] = ACTIONS(6278), + [anon_sym_SLASH_EQ] = ACTIONS(6326), + [anon_sym_PLUS_EQ] = ACTIONS(6326), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(6278), - [anon_sym_GT_GT_EQ] = ACTIONS(6278), + [anon_sym_PIPE_EQ] = ACTIONS(6326), + [anon_sym_GT_GT_EQ] = ACTIONS(6326), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -88734,20 +89122,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(6278), + [anon_sym_DASH_EQ] = ACTIONS(6326), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(6278), + [anon_sym_AMP_EQ] = ACTIONS(6326), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [2023] = { - [sym_string_literal] = STATE(3041), - [aux_sym_concatenated_string_repeat1] = STATE(3041), + [2030] = { + [sym_string_literal] = STATE(3031), + [aux_sym_concatenated_string_repeat1] = STATE(3031), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(165), @@ -88779,735 +89167,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(165), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [2024] = { - [sym_argument_list] = STATE(341), - [aux_sym_initializer_list_repeat1] = STATE(1217), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(6336), - [anon_sym_PIPE_PIPE] = ACTIONS(6338), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_PERCENT] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6342), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2025] = { - [sym_union_specifier] = STATE(3056), - [sym_macro_type_specifier] = STATE(3056), - [sym_class_specifier] = STATE(3056), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(3056), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(3056), - [aux_sym_sized_type_specifier_repeat1] = STATE(3055), - [sym_struct_specifier] = STATE(3056), - [sym_enum_specifier] = STATE(3056), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(3056), - [anon_sym_unsigned] = ACTIONS(6346), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(6348), - [anon_sym_signed] = ACTIONS(6346), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6346), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(6350), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(6346), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(6348), - }, - [2026] = { - [sym_virtual_specifier] = STATE(3057), - [aux_sym_function_declarator_repeat1] = STATE(3057), - [sym_trailing_return_type] = STATE(3057), - [sym_type_qualifier] = STATE(3057), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(6352), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4011), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(4011), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(4011), - }, - [2027] = { - [anon_sym_DASH] = ACTIONS(6354), - [sym_raw_string_literal] = ACTIONS(6356), - [sym_true] = ACTIONS(6354), - [anon_sym_mutable] = ACTIONS(6354), - [sym_null] = ACTIONS(6354), - [anon_sym_break] = ACTIONS(6354), - [anon_sym_BANG] = ACTIONS(6356), - [anon_sym_sizeof] = ACTIONS(6354), - [anon_sym_volatile] = ACTIONS(6354), - [anon_sym_PLUS] = ACTIONS(6354), - [anon_sym_typedef] = ACTIONS(6354), - [anon_sym_switch] = ACTIONS(6354), - [anon_sym_explicit] = ACTIONS(6354), - [sym_identifier] = ACTIONS(6354), - [anon_sym_delete] = ACTIONS(6354), - [anon_sym_continue] = ACTIONS(6354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6354), - [anon_sym__Atomic] = ACTIONS(6354), - [sym_number_literal] = ACTIONS(6356), - [anon_sym_extern] = ACTIONS(6354), - [anon_sym_enum] = ACTIONS(6354), - [anon_sym_constexpr] = ACTIONS(6354), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6356), - [anon_sym_namespace] = ACTIONS(6354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6354), - [anon_sym_SQUOTE] = ACTIONS(6356), - [anon_sym_LBRACE] = ACTIONS(6356), - [anon_sym_DASH_DASH] = ACTIONS(6356), - [anon_sym_LPAREN2] = ACTIONS(6356), - [anon_sym_struct] = ACTIONS(6354), - [sym_auto] = ACTIONS(6354), - [anon_sym_signed] = ACTIONS(6354), - [anon_sym_long] = ACTIONS(6354), - [anon_sym_COLON_COLON] = ACTIONS(6356), - [anon_sym_using] = ACTIONS(6354), - [sym_preproc_directive] = ACTIONS(6354), - [aux_sym_preproc_if_token1] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(6354), - [anon_sym_static] = ACTIONS(6354), - [anon_sym_RBRACE] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(6356), - [anon_sym_union] = ACTIONS(6354), - [anon_sym_typename] = ACTIONS(6354), - [anon_sym_short] = ACTIONS(6354), - [anon_sym_new] = ACTIONS(6354), - [anon_sym_goto] = ACTIONS(6354), - [sym_operator_name] = ACTIONS(6356), - [anon_sym_while] = ACTIONS(6354), - [anon_sym_try] = ACTIONS(6354), - [anon_sym_for] = ACTIONS(6354), - [aux_sym_preproc_include_token1] = ACTIONS(6354), - [anon_sym_register] = ACTIONS(6354), - [anon_sym_DQUOTE] = ACTIONS(6356), - [anon_sym_const] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(6354), - [anon_sym_class] = ACTIONS(6354), - [anon_sym_if] = ACTIONS(6354), - [sym_primitive_type] = ACTIONS(6354), - [sym_false] = ACTIONS(6354), - [sym_nullptr] = ACTIONS(6354), - [anon_sym_do] = ACTIONS(6354), - [anon_sym_template] = ACTIONS(6354), - [anon_sym_return] = ACTIONS(6354), - [anon_sym_TILDE] = ACTIONS(6356), - [anon_sym_SEMI] = ACTIONS(6356), - [ts_builtin_sym_end] = ACTIONS(6356), - [aux_sym_preproc_def_token1] = ACTIONS(6354), - [anon_sym_AMP_AMP] = ACTIONS(6356), - [anon_sym_inline] = ACTIONS(6354), - [anon_sym_PLUS_PLUS] = ACTIONS(6356), - [anon_sym_restrict] = ACTIONS(6354), - }, - [2028] = { - [aux_sym_declaration_repeat1] = STATE(2028), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(6358), - [anon_sym_SEMI] = ACTIONS(6260), - }, - [2029] = { - [anon_sym_DASH] = ACTIONS(6361), - [sym_raw_string_literal] = ACTIONS(6363), - [sym_true] = ACTIONS(6361), - [anon_sym_mutable] = ACTIONS(6361), - [sym_null] = ACTIONS(6361), - [anon_sym_break] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6363), - [anon_sym_sizeof] = ACTIONS(6361), - [anon_sym_volatile] = ACTIONS(6361), - [anon_sym_PLUS] = ACTIONS(6361), - [anon_sym_typedef] = ACTIONS(6361), - [anon_sym_switch] = ACTIONS(6361), - [anon_sym_explicit] = ACTIONS(6361), - [sym_identifier] = ACTIONS(6361), - [anon_sym_delete] = ACTIONS(6361), - [anon_sym_continue] = ACTIONS(6361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6361), - [anon_sym__Atomic] = ACTIONS(6361), - [sym_number_literal] = ACTIONS(6363), - [anon_sym_extern] = ACTIONS(6361), - [anon_sym_enum] = ACTIONS(6361), - [anon_sym_constexpr] = ACTIONS(6361), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6363), - [anon_sym_namespace] = ACTIONS(6361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [anon_sym_DASH_DASH] = ACTIONS(6363), - [anon_sym_LPAREN2] = ACTIONS(6363), - [anon_sym_struct] = ACTIONS(6361), - [sym_auto] = ACTIONS(6361), - [anon_sym_signed] = ACTIONS(6361), - [anon_sym_long] = ACTIONS(6361), - [anon_sym_COLON_COLON] = ACTIONS(6363), - [anon_sym_using] = ACTIONS(6361), - [sym_preproc_directive] = ACTIONS(6361), - [aux_sym_preproc_if_token1] = ACTIONS(6361), - [anon_sym_AMP] = ACTIONS(6361), - [anon_sym_static] = ACTIONS(6361), - [anon_sym_RBRACE] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_union] = ACTIONS(6361), - [anon_sym_typename] = ACTIONS(6361), - [anon_sym_short] = ACTIONS(6361), - [anon_sym_new] = ACTIONS(6361), - [anon_sym_goto] = ACTIONS(6361), - [sym_operator_name] = ACTIONS(6363), - [anon_sym_while] = ACTIONS(6361), - [anon_sym_try] = ACTIONS(6361), - [anon_sym_for] = ACTIONS(6361), - [aux_sym_preproc_include_token1] = ACTIONS(6361), - [anon_sym_register] = ACTIONS(6361), - [anon_sym_DQUOTE] = ACTIONS(6363), - [anon_sym_const] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6361), - [anon_sym_class] = ACTIONS(6361), - [anon_sym_if] = ACTIONS(6361), - [sym_primitive_type] = ACTIONS(6361), - [sym_false] = ACTIONS(6361), - [sym_nullptr] = ACTIONS(6361), - [anon_sym_do] = ACTIONS(6361), - [anon_sym_template] = ACTIONS(6361), - [anon_sym_return] = ACTIONS(6361), - [anon_sym_TILDE] = ACTIONS(6363), - [anon_sym_SEMI] = ACTIONS(6363), - [ts_builtin_sym_end] = ACTIONS(6363), - [aux_sym_preproc_def_token1] = ACTIONS(6361), - [anon_sym_AMP_AMP] = ACTIONS(6363), - [anon_sym_inline] = ACTIONS(6361), - [anon_sym_PLUS_PLUS] = ACTIONS(6363), - [anon_sym_restrict] = ACTIONS(6361), - }, - [2030] = { - [aux_sym_declaration_repeat1] = STATE(2028), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(6365), - }, [2031] = { - [anon_sym_LPAREN2] = ACTIONS(6367), - [anon_sym_final] = ACTIONS(6367), - [sym_noexcept] = ACTIONS(6367), - [anon_sym_mutable] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym__Atomic] = ACTIONS(6367), - [anon_sym_const] = ACTIONS(6369), - [anon_sym_GT2] = ACTIONS(6367), - [anon_sym_LBRACK] = ACTIONS(6367), - [anon_sym_constexpr] = ACTIONS(6367), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6367), - [anon_sym_override] = ACTIONS(6367), - [anon_sym_SEMI] = ACTIONS(6367), - [anon_sym_COLON] = ACTIONS(6367), - [anon_sym_explicit] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_DASH_GT] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_restrict] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), + [aux_sym_initializer_list_repeat1] = STATE(1213), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(6384), + [anon_sym_PIPE_PIPE] = ACTIONS(6386), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6378), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2032] = { - [sym_union_specifier] = STATE(3061), - [sym_macro_type_specifier] = STATE(3061), - [sym_class_specifier] = STATE(3061), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(3061), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(3061), - [aux_sym_sized_type_specifier_repeat1] = STATE(3060), - [sym_struct_specifier] = STATE(3061), - [sym_enum_specifier] = STATE(3061), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(3061), - [anon_sym_unsigned] = ACTIONS(6371), + [sym_union_specifier] = STATE(3046), + [sym_macro_type_specifier] = STATE(3046), + [sym_class_specifier] = STATE(3046), + [aux_sym_sized_type_specifier_repeat1] = STATE(3045), + [sym_sized_type_specifier] = STATE(3046), + [sym__type_specifier] = STATE(3046), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(3046), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(3046), + [sym_struct_specifier] = STATE(3046), + [anon_sym_unsigned] = ACTIONS(6394), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(6373), - [anon_sym_signed] = ACTIONS(6371), + [sym_auto] = ACTIONS(6396), + [anon_sym_signed] = ACTIONS(6394), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6371), + [anon_sym_long] = ACTIONS(6394), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(6375), + [anon_sym_typename] = ACTIONS(6398), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(6371), - [anon_sym_enum] = ACTIONS(33), + [anon_sym_short] = ACTIONS(6394), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(6373), + [sym_primitive_type] = ACTIONS(6396), }, [2033] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(3062), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3062), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(6377), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [sym_virtual_specifier] = STATE(3047), + [aux_sym_function_declarator_repeat1] = STATE(3047), + [sym_type_qualifier] = STATE(3047), + [sym_trailing_return_type] = STATE(3047), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(6400), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4059), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(4095), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(4059), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(4059), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(4059), }, [2034] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(3063), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3063), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(6379), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(4095), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(6402), + [anon_sym_SEMI] = ACTIONS(6308), }, [2035] = { - [anon_sym_LPAREN2] = ACTIONS(6381), - [anon_sym_final] = ACTIONS(6381), - [sym_noexcept] = ACTIONS(6381), - [anon_sym_mutable] = ACTIONS(6381), - [anon_sym_COMMA] = ACTIONS(6381), - [anon_sym__Atomic] = ACTIONS(6381), - [anon_sym_const] = ACTIONS(6383), - [anon_sym_GT2] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6381), - [anon_sym_constexpr] = ACTIONS(6381), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6381), - [anon_sym_override] = ACTIONS(6381), - [anon_sym_SEMI] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_explicit] = ACTIONS(6381), - [anon_sym_RPAREN] = ACTIONS(6381), - [anon_sym_DASH_GT] = ACTIONS(6381), - [anon_sym_EQ] = ACTIONS(6381), - [anon_sym_restrict] = ACTIONS(6381), - [anon_sym_LBRACE] = ACTIONS(6381), + [anon_sym_DASH] = ACTIONS(6405), + [sym_raw_string_literal] = ACTIONS(6407), + [sym_true] = ACTIONS(6405), + [anon_sym_mutable] = ACTIONS(6405), + [sym_null] = ACTIONS(6405), + [anon_sym_break] = ACTIONS(6405), + [anon_sym_BANG] = ACTIONS(6407), + [anon_sym_sizeof] = ACTIONS(6405), + [anon_sym_volatile] = ACTIONS(6405), + [anon_sym_PLUS] = ACTIONS(6405), + [anon_sym_typedef] = ACTIONS(6405), + [anon_sym_switch] = ACTIONS(6405), + [anon_sym_explicit] = ACTIONS(6405), + [sym_identifier] = ACTIONS(6405), + [anon_sym_delete] = ACTIONS(6405), + [anon_sym_continue] = ACTIONS(6405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6405), + [anon_sym__Atomic] = ACTIONS(6405), + [sym_number_literal] = ACTIONS(6407), + [anon_sym_extern] = ACTIONS(6405), + [anon_sym_enum] = ACTIONS(6405), + [anon_sym_constexpr] = ACTIONS(6405), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6407), + [anon_sym_namespace] = ACTIONS(6405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6405), + [anon_sym_SQUOTE] = ACTIONS(6407), + [anon_sym_LBRACE] = ACTIONS(6407), + [anon_sym_DASH_DASH] = ACTIONS(6407), + [anon_sym_LPAREN2] = ACTIONS(6407), + [anon_sym_struct] = ACTIONS(6405), + [sym_auto] = ACTIONS(6405), + [anon_sym_signed] = ACTIONS(6405), + [anon_sym_long] = ACTIONS(6405), + [anon_sym_COLON_COLON] = ACTIONS(6407), + [anon_sym_using] = ACTIONS(6405), + [sym_preproc_directive] = ACTIONS(6405), + [aux_sym_preproc_if_token1] = ACTIONS(6405), + [anon_sym_AMP] = ACTIONS(6405), + [anon_sym_static] = ACTIONS(6405), + [anon_sym_RBRACE] = ACTIONS(6407), + [anon_sym_STAR] = ACTIONS(6407), + [anon_sym_union] = ACTIONS(6405), + [anon_sym_typename] = ACTIONS(6405), + [anon_sym_short] = ACTIONS(6405), + [anon_sym_new] = ACTIONS(6405), + [anon_sym_goto] = ACTIONS(6405), + [sym_operator_name] = ACTIONS(6407), + [anon_sym_while] = ACTIONS(6405), + [anon_sym_try] = ACTIONS(6405), + [anon_sym_for] = ACTIONS(6405), + [aux_sym_preproc_include_token1] = ACTIONS(6405), + [anon_sym_register] = ACTIONS(6405), + [anon_sym_DQUOTE] = ACTIONS(6407), + [anon_sym_const] = ACTIONS(6405), + [anon_sym_LBRACK] = ACTIONS(6405), + [anon_sym_class] = ACTIONS(6405), + [anon_sym_if] = ACTIONS(6405), + [sym_primitive_type] = ACTIONS(6405), + [sym_false] = ACTIONS(6405), + [sym_nullptr] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(6405), + [anon_sym_template] = ACTIONS(6405), + [anon_sym_return] = ACTIONS(6405), + [anon_sym_TILDE] = ACTIONS(6407), + [anon_sym_SEMI] = ACTIONS(6407), + [ts_builtin_sym_end] = ACTIONS(6407), + [aux_sym_preproc_def_token1] = ACTIONS(6405), + [anon_sym_AMP_AMP] = ACTIONS(6407), + [anon_sym_inline] = ACTIONS(6405), + [anon_sym_PLUS_PLUS] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6405), }, [2036] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(755), - [sym_logical_expression] = STATE(755), - [sym_bitwise_expression] = STATE(755), - [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), - [sym_field_expression] = STATE(755), - [sym_compound_literal_expression] = STATE(755), - [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), - [sym_conditional_expression] = STATE(755), - [sym_equality_expression] = STATE(755), - [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), - [sym_sizeof_expression] = STATE(755), - [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), - [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), - [sym_assignment_expression] = STATE(755), - [sym_pointer_expression] = STATE(755), - [sym_shift_expression] = STATE(755), - [sym_math_expression] = STATE(755), - [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_RBRACK] = ACTIONS(6385), - }, - [2037] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(6385), - }, - [2038] = { - [sym_type_qualifier] = STATE(2038), - [aux_sym_type_definition_repeat1] = STATE(2038), - [anon_sym_LPAREN2] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), - [anon_sym_mutable] = ACTIONS(5001), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_explicit] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), - [anon_sym_constexpr] = ACTIONS(5001), - [sym_comment] = ACTIONS(3), - }, - [2039] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(2040), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(4109), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(4109), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4109), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(4113), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(4109), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), - }, - [2040] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3065), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(6387), - [anon_sym_signed] = ACTIONS(6387), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_long] = ACTIONS(6387), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_short] = ACTIONS(6387), - [sym_identifier] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(627), - }, - [2041] = { - [sym_parameter_list] = STATE(361), - [sym_abstract_array_declarator] = STATE(3068), - [sym_abstract_pointer_declarator] = STATE(3068), - [sym_abstract_reference_declarator] = STATE(3068), - [sym_abstract_function_declarator] = STATE(3068), - [sym__abstract_declarator] = STATE(3068), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6393), - [anon_sym_LBRACE] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - }, - [2042] = { - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(6395), - [anon_sym_mutable] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(6395), - [anon_sym_const] = ACTIONS(6397), - [anon_sym_GT2] = ACTIONS(6395), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(6395), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6395), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_SEMI] = ACTIONS(6395), - [anon_sym_COLON] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_DASH_GT] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_restrict] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - }, - [2043] = { - [sym_type_qualifier] = STATE(2043), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2043), - [anon_sym_LPAREN2] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(6401), - [anon_sym_volatile] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), - [anon_sym_LBRACE] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(6404), - }, - [2044] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3070), - [sym_logical_expression] = STATE(3070), - [sym_bitwise_expression] = STATE(3070), - [sym_cast_expression] = STATE(3070), - [sym_new_expression] = STATE(3070), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3070), - [sym_char_literal] = STATE(3070), - [sym_type_qualifier] = STATE(1987), - [sym_template_function] = STATE(3070), - [sym_conditional_expression] = STATE(3070), - [sym_equality_expression] = STATE(3070), - [sym_relational_expression] = STATE(3070), - [sym_delete_expression] = STATE(3070), - [sym_sizeof_expression] = STATE(3070), - [sym_parenthesized_expression] = STATE(3070), - [sym_lambda_expression] = STATE(3070), - [sym_concatenated_string] = STATE(3070), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3070), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3070), - [sym_math_expression] = STATE(3070), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(1987), - [sym_raw_string_literal] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6412), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(6412), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(6414), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(6410), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6412), - [sym_nullptr] = ACTIONS(6412), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(6385), - }, - [2045] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(2043), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2043), - [anon_sym_LPAREN2] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(4119), - [anon_sym_volatile] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_DASH_GT] = ACTIONS(2063), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1062), - }, - [2046] = { - [anon_sym_DASH] = ACTIONS(6416), - [sym_raw_string_literal] = ACTIONS(6418), - [sym_true] = ACTIONS(6416), - [anon_sym_mutable] = ACTIONS(6416), - [sym_null] = ACTIONS(6416), - [anon_sym_break] = ACTIONS(6416), - [anon_sym_BANG] = ACTIONS(6418), - [anon_sym_sizeof] = ACTIONS(6416), - [anon_sym_volatile] = ACTIONS(6416), - [anon_sym_PLUS] = ACTIONS(6416), - [anon_sym_typedef] = ACTIONS(6416), - [anon_sym_switch] = ACTIONS(6416), - [anon_sym_explicit] = ACTIONS(6416), - [sym_identifier] = ACTIONS(6416), - [anon_sym_delete] = ACTIONS(6416), - [anon_sym_continue] = ACTIONS(6416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6416), - [anon_sym__Atomic] = ACTIONS(6416), - [sym_number_literal] = ACTIONS(6418), - [anon_sym_extern] = ACTIONS(6416), - [anon_sym_enum] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6416), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6418), - [anon_sym_namespace] = ACTIONS(6416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6416), - [anon_sym_SQUOTE] = ACTIONS(6418), - [anon_sym_LBRACE] = ACTIONS(6418), - [anon_sym_DASH_DASH] = ACTIONS(6418), - [anon_sym_LPAREN2] = ACTIONS(6418), - [anon_sym_struct] = ACTIONS(6416), - [sym_auto] = ACTIONS(6416), - [anon_sym_signed] = ACTIONS(6416), - [anon_sym_long] = ACTIONS(6416), - [anon_sym_COLON_COLON] = ACTIONS(6418), - [anon_sym_using] = ACTIONS(6416), - [sym_preproc_directive] = ACTIONS(6416), - [aux_sym_preproc_if_token1] = ACTIONS(6416), - [anon_sym_AMP] = ACTIONS(6416), - [anon_sym_static] = ACTIONS(6416), - [anon_sym_RBRACE] = ACTIONS(6418), - [anon_sym_STAR] = ACTIONS(6418), - [anon_sym_union] = ACTIONS(6416), - [anon_sym_typename] = ACTIONS(6416), - [anon_sym_short] = ACTIONS(6416), - [anon_sym_new] = ACTIONS(6416), - [anon_sym_goto] = ACTIONS(6416), - [sym_operator_name] = ACTIONS(6418), - [anon_sym_while] = ACTIONS(6416), - [anon_sym_try] = ACTIONS(6416), - [anon_sym_for] = ACTIONS(6416), - [aux_sym_preproc_include_token1] = ACTIONS(6416), - [anon_sym_register] = ACTIONS(6416), - [anon_sym_DQUOTE] = ACTIONS(6418), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_LBRACK] = ACTIONS(6416), - [anon_sym_class] = ACTIONS(6416), - [anon_sym_if] = ACTIONS(6416), - [sym_primitive_type] = ACTIONS(6416), - [sym_false] = ACTIONS(6416), - [sym_nullptr] = ACTIONS(6416), - [anon_sym_do] = ACTIONS(6416), - [anon_sym_template] = ACTIONS(6416), - [anon_sym_return] = ACTIONS(6416), - [anon_sym_TILDE] = ACTIONS(6418), - [anon_sym_SEMI] = ACTIONS(6418), - [ts_builtin_sym_end] = ACTIONS(6418), - [aux_sym_preproc_def_token1] = ACTIONS(6416), - [anon_sym_AMP_AMP] = ACTIONS(6418), - [anon_sym_inline] = ACTIONS(6416), - [anon_sym_PLUS_PLUS] = ACTIONS(6418), - [anon_sym_restrict] = ACTIONS(6416), - }, - [2047] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(6420), + [anon_sym_SEMI] = ACTIONS(6409), }, - [2048] = { - [sym_type_qualifier] = STATE(2050), - [sym_pointer_type_declarator] = STATE(2051), - [sym_array_type_declarator] = STATE(2051), - [sym_function_type_declarator] = STATE(2051), - [aux_sym_type_definition_repeat1] = STATE(2050), - [sym__type_declarator] = STATE(2051), - [anon_sym_LPAREN2] = ACTIONS(678), + [2037] = { + [aux_sym_type_definition_repeat1] = STATE(2039), + [sym_pointer_type_declarator] = STATE(2040), + [sym_array_type_declarator] = STATE(2040), + [sym_function_type_declarator] = STATE(2040), + [sym__type_declarator] = STATE(2040), + [sym_type_qualifier] = STATE(2039), + [anon_sym_LPAREN2] = ACTIONS(680), [anon_sym_volatile] = ACTIONS(11), [anon_sym_mutable] = ACTIONS(11), [anon_sym_STAR] = ACTIONS(2108), @@ -89519,17 +89358,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), }, - [2049] = { - [anon_sym_LPAREN2] = ACTIONS(6422), + [2038] = { + [anon_sym_LPAREN2] = ACTIONS(6411), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(6422), - [anon_sym_RPAREN] = ACTIONS(6422), - [anon_sym_COMMA] = ACTIONS(6422), - [anon_sym_SEMI] = ACTIONS(6422), + [anon_sym_LBRACK] = ACTIONS(6411), + [anon_sym_RPAREN] = ACTIONS(6411), + [anon_sym_COMMA] = ACTIONS(6411), + [anon_sym_SEMI] = ACTIONS(6411), }, - [2050] = { - [sym_type_qualifier] = STATE(2050), - [aux_sym_type_definition_repeat1] = STATE(2050), + [2039] = { + [aux_sym_type_definition_repeat1] = STATE(2039), + [sym_type_qualifier] = STATE(2039), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_volatile] = ACTIONS(2103), [anon_sym_mutable] = ACTIONS(2103), @@ -89542,971 +89381,971 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(2103), [sym_comment] = ACTIONS(3), }, - [2051] = { - [sym_parameter_list] = STATE(1049), - [anon_sym_LPAREN2] = ACTIONS(587), + [2040] = { + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(6424), - [anon_sym_COMMA] = ACTIONS(6424), - [anon_sym_SEMI] = ACTIONS(6424), + [anon_sym_RPAREN] = ACTIONS(6413), + [anon_sym_COMMA] = ACTIONS(6413), + [anon_sym_SEMI] = ACTIONS(6413), }, - [2052] = { - [anon_sym_LPAREN2] = ACTIONS(6426), + [2041] = { + [anon_sym_LPAREN2] = ACTIONS(6415), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(6426), - [anon_sym_RPAREN] = ACTIONS(6426), - [anon_sym_COMMA] = ACTIONS(6426), - [anon_sym_SEMI] = ACTIONS(6426), + [anon_sym_LBRACK] = ACTIONS(6415), + [anon_sym_RPAREN] = ACTIONS(6415), + [anon_sym_COMMA] = ACTIONS(6415), + [anon_sym_SEMI] = ACTIONS(6415), }, - [2053] = { - [sym_template_type] = STATE(754), + [2042] = { + [sym_template_function] = STATE(755), [sym__expression] = STATE(755), [sym_logical_expression] = STATE(755), [sym_bitwise_expression] = STATE(755), [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), + [sym_delete_expression] = STATE(755), [sym_field_expression] = STATE(755), [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), [sym_conditional_expression] = STATE(755), [sym_equality_expression] = STATE(755), [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), + [sym_template_type] = STATE(761), [sym_assignment_expression] = STATE(755), [sym_pointer_expression] = STATE(755), [sym_shift_expression] = STATE(755), [sym_math_expression] = STATE(755), [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_RBRACK] = ACTIONS(6428), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(6417), }, - [2054] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(6428), + [2043] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(6417), }, - [2055] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3075), - [sym_logical_expression] = STATE(3075), - [sym_bitwise_expression] = STATE(3075), - [sym_cast_expression] = STATE(3075), - [sym_new_expression] = STATE(3075), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3075), - [sym_char_literal] = STATE(3075), - [sym_type_qualifier] = STATE(1987), - [sym_template_function] = STATE(3075), - [sym_conditional_expression] = STATE(3075), - [sym_equality_expression] = STATE(3075), - [sym_relational_expression] = STATE(3075), - [sym_delete_expression] = STATE(3075), - [sym_sizeof_expression] = STATE(3075), - [sym_parenthesized_expression] = STATE(3075), - [sym_lambda_expression] = STATE(3075), - [sym_concatenated_string] = STATE(3075), - [sym_string_literal] = STATE(967), + [2044] = { + [sym_template_function] = STATE(3051), + [sym__expression] = STATE(3051), + [sym_logical_expression] = STATE(3051), + [sym_bitwise_expression] = STATE(3051), + [sym_cast_expression] = STATE(3051), + [sym_delete_expression] = STATE(3051), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3051), + [sym_lambda_expression] = STATE(3051), + [sym_char_literal] = STATE(3051), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3075), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3075), - [sym_math_expression] = STATE(3075), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_type_qualifier] = STATE(1928), + [sym_conditional_expression] = STATE(3051), + [sym_equality_expression] = STATE(3051), + [sym_relational_expression] = STATE(3051), + [sym_sizeof_expression] = STATE(3051), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(1987), - [sym_raw_string_literal] = ACTIONS(6430), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6432), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(6432), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(6434), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(6430), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6432), - [sym_nullptr] = ACTIONS(6432), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(6428), + [sym_parenthesized_expression] = STATE(3051), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(1928), + [sym_concatenated_string] = STATE(3051), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3051), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3051), + [sym_math_expression] = STATE(3051), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3051), + [sym_raw_string_literal] = ACTIONS(6419), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6421), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(6421), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(6423), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(6419), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(6421), + [sym_nullptr] = ACTIONS(6421), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(6417), }, - [2056] = { - [sym_parameter_list] = STATE(1049), - [anon_sym_LPAREN2] = ACTIONS(587), + [2045] = { + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_COMMA] = ACTIONS(6436), - [anon_sym_SEMI] = ACTIONS(6436), + [anon_sym_COMMA] = ACTIONS(6425), + [anon_sym_SEMI] = ACTIONS(6425), }, - [2057] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [2046] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(6438), - [anon_sym_SEMI] = ACTIONS(6436), + [anon_sym_COMMA] = ACTIONS(6427), + [anon_sym_SEMI] = ACTIONS(6425), }, - [2058] = { - [sym_goto_statement] = STATE(3095), - [sym_logical_expression] = STATE(3091), - [sym_for_range_loop] = STATE(3095), - [sym_cast_expression] = STATE(3091), - [sym_declaration] = STATE(3095), + [2047] = { + [sym_goto_statement] = STATE(3068), + [sym_logical_expression] = STATE(3070), + [sym_try_statement] = STATE(3068), + [sym_cast_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_union_specifier] = STATE(278), - [sym_switch_statement] = STATE(3095), - [sym_return_statement] = STATE(3095), - [sym_template_function] = STATE(3091), - [sym_conditional_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3068), + [aux_sym_function_definition_repeat1] = STATE(3067), + [sym_type_qualifier] = STATE(285), + [aux_sym_case_statement_repeat1] = STATE(3068), + [sym_union_specifier] = STATE(280), + [sym_switch_statement] = STATE(3068), + [sym_return_statement] = STATE(3068), + [sym_conditional_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(73), - [sym_type_definition] = STATE(3095), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_break_statement] = STATE(3095), - [sym_assignment_expression] = STATE(3091), - [sym_shift_expression] = STATE(3091), - [sym_attribute] = STATE(3094), + [sym_scoped_namespace_identifier] = STATE(3069), + [sym_type_definition] = STATE(3068), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_break_statement] = STATE(3068), + [sym_assignment_expression] = STATE(3070), + [sym_for_range_loop] = STATE(3068), + [sym_shift_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_compound_statement] = STATE(3095), - [sym_expression_statement] = STATE(3095), - [sym_do_statement] = STATE(3095), - [sym_template_type] = STATE(722), - [sym__expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), - [sym_compound_literal_expression] = STATE(3091), - [sym_char_literal] = STATE(3091), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_if_statement] = STATE(3095), - [sym_for_statement] = STATE(3095), - [sym_comma_expression] = STATE(3092), - [sym_equality_expression] = STATE(3091), - [sym_try_statement] = STATE(3095), - [sym_sizeof_expression] = STATE(3091), - [sym__declaration_specifiers] = STATE(3093), - [sym_parenthesized_expression] = STATE(3091), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(3091), - [aux_sym_function_definition_repeat1] = STATE(3094), - [sym_macro_type_specifier] = STATE(278), - [sym_lambda_expression] = STATE(3091), - [sym_sized_type_specifier] = STATE(278), - [aux_sym_case_statement_repeat1] = STATE(3095), - [sym_continue_statement] = STATE(3095), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_compound_statement] = STATE(3068), + [sym_expression_statement] = STATE(3068), + [sym_do_statement] = STATE(3068), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_compound_literal_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_if_statement] = STATE(3068), + [sym_for_statement] = STATE(3068), + [sym_comma_expression] = STATE(3071), + [sym_equality_expression] = STATE(3070), + [sym_attribute] = STATE(3067), + [sym_sizeof_expression] = STATE(3070), + [sym__declaration_specifiers] = STATE(3072), + [sym_parenthesized_expression] = STATE(3070), + [sym_concatenated_string] = STATE(3070), + [sym_macro_type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [sym_template_type] = STATE(3073), + [sym_continue_statement] = STATE(3068), [sym_pointer_expression] = STATE(47), - [sym_math_expression] = STATE(3091), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(727), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_labeled_statement] = STATE(3095), - [sym_while_statement] = STATE(3095), + [sym_new_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), + [sym_enum_specifier] = STATE(280), + [sym_labeled_statement] = STATE(3068), + [sym_while_statement] = STATE(3068), [anon_sym_DASH] = ACTIONS(7), - [sym_raw_string_literal] = ACTIONS(6441), - [sym_true] = ACTIONS(6443), + [sym_raw_string_literal] = ACTIONS(6430), + [sym_true] = ACTIONS(6432), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(6443), - [anon_sym_break] = ACTIONS(6445), + [sym_null] = ACTIONS(6432), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(6447), - [anon_sym_switch] = ACTIONS(6449), + [anon_sym_typedef] = ACTIONS(6436), + [anon_sym_switch] = ACTIONS(6438), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(6451), + [sym_identifier] = ACTIONS(6440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_continue] = ACTIONS(6442), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_extern] = ACTIONS(63), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_case] = ACTIONS(6455), + [anon_sym_case] = ACTIONS(6444), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(111), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(6459), - [anon_sym_default] = ACTIONS(6455), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(6448), + [anon_sym_default] = ACTIONS(6444), [anon_sym_AMP] = ACTIONS(119), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(6461), + [anon_sym_RBRACE] = ACTIONS(6450), [anon_sym_STAR] = ACTIONS(119), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), - [anon_sym_short] = ACTIONS(460), + [anon_sym_typename] = ACTIONS(472), + [anon_sym_short] = ACTIONS(462), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), + [anon_sym_goto] = ACTIONS(6452), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(6471), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [anon_sym_if] = ACTIONS(6460), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2059] = { - [anon_sym_LPAREN2] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(658), - [sym_true] = ACTIONS(656), - [anon_sym_else] = ACTIONS(656), - [sym_null] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(658), - [anon_sym_default] = ACTIONS(656), - [anon_sym_break] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_sizeof] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(658), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(656), - [sym_identifier] = ACTIONS(656), - [anon_sym_new] = ACTIONS(656), - [anon_sym_goto] = ACTIONS(656), - [anon_sym_while] = ACTIONS(656), - [anon_sym_continue] = ACTIONS(656), - [anon_sym_for] = ACTIONS(656), - [anon_sym_delete] = ACTIONS(656), - [anon_sym_try] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [sym_number_literal] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_if] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(656), - [sym_nullptr] = ACTIONS(656), - [anon_sym_do] = ACTIONS(656), - [anon_sym_case] = ACTIONS(656), - [anon_sym_return] = ACTIONS(656), - [anon_sym_TILDE] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_PLUS_PLUS] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(658), + [2048] = { + [anon_sym_LPAREN2] = ACTIONS(662), + [anon_sym_DASH] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(662), + [sym_true] = ACTIONS(660), + [anon_sym_else] = ACTIONS(660), + [sym_null] = ACTIONS(660), + [anon_sym_COLON_COLON] = ACTIONS(662), + [anon_sym_default] = ACTIONS(660), + [anon_sym_break] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_sizeof] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_switch] = ACTIONS(660), + [sym_identifier] = ACTIONS(660), + [anon_sym_new] = ACTIONS(660), + [anon_sym_goto] = ACTIONS(660), + [anon_sym_while] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [anon_sym_delete] = ACTIONS(660), + [anon_sym_try] = ACTIONS(660), + [anon_sym_DQUOTE] = ACTIONS(662), + [sym_number_literal] = ACTIONS(662), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_if] = ACTIONS(660), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(660), + [sym_nullptr] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_case] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(662), + [anon_sym_PLUS_PLUS] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_DASH_DASH] = ACTIONS(662), }, - [2060] = { - [sym_switch_body] = STATE(3097), - [anon_sym_LBRACE] = ACTIONS(6479), + [2049] = { + [sym_switch_body] = STATE(3075), + [anon_sym_LBRACE] = ACTIONS(6468), [sym_comment] = ACTIONS(3), }, - [2061] = { - [sym_do_statement] = STATE(3098), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [2050] = { + [sym_do_statement] = STATE(3076), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(3098), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(3098), - [sym_if_statement] = STATE(3098), - [sym_switch_statement] = STATE(3098), - [sym_for_statement] = STATE(3098), - [sym_return_statement] = STATE(3098), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3076), + [sym_try_statement] = STATE(3076), + [sym_if_statement] = STATE(3076), + [sym_switch_statement] = STATE(3076), + [sym_for_statement] = STATE(3076), + [sym_return_statement] = STATE(3076), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(3098), - [sym_break_statement] = STATE(3098), - [sym_continue_statement] = STATE(3098), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3076), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3098), - [sym_labeled_statement] = STATE(3098), - [sym_expression_statement] = STATE(3098), - [sym_while_statement] = STATE(3098), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(3076), + [sym_for_range_loop] = STATE(3076), + [sym_compound_statement] = STATE(3076), + [sym_labeled_statement] = STATE(3076), + [sym_expression_statement] = STATE(3076), + [sym_while_statement] = STATE(3076), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2062] = { + [2051] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(6481), + [anon_sym_SEMI] = ACTIONS(6470), }, - [2063] = { - [sym_do_statement] = STATE(3100), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [2052] = { + [sym_do_statement] = STATE(3078), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(3100), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(3100), - [sym_if_statement] = STATE(3100), - [sym_switch_statement] = STATE(3100), - [sym_for_statement] = STATE(3100), - [sym_return_statement] = STATE(3100), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3078), + [sym_try_statement] = STATE(3078), + [sym_if_statement] = STATE(3078), + [sym_switch_statement] = STATE(3078), + [sym_for_statement] = STATE(3078), + [sym_return_statement] = STATE(3078), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(3100), - [sym_break_statement] = STATE(3100), - [sym_continue_statement] = STATE(3100), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3078), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3100), - [sym_labeled_statement] = STATE(3100), - [sym_expression_statement] = STATE(3100), - [sym_while_statement] = STATE(3100), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(3078), + [sym_for_range_loop] = STATE(3078), + [sym_compound_statement] = STATE(3078), + [sym_labeled_statement] = STATE(3078), + [sym_expression_statement] = STATE(3078), + [sym_while_statement] = STATE(3078), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2064] = { - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(804), - [sym_true] = ACTIONS(802), - [anon_sym_else] = ACTIONS(802), - [sym_null] = ACTIONS(802), - [anon_sym_COLON_COLON] = ACTIONS(804), - [anon_sym_default] = ACTIONS(802), - [anon_sym_break] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_sizeof] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_switch] = ACTIONS(802), - [sym_identifier] = ACTIONS(802), - [anon_sym_new] = ACTIONS(802), - [anon_sym_goto] = ACTIONS(802), - [anon_sym_while] = ACTIONS(802), - [anon_sym_continue] = ACTIONS(802), - [anon_sym_for] = ACTIONS(802), - [anon_sym_delete] = ACTIONS(802), - [anon_sym_try] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(804), - [sym_number_literal] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(804), - [anon_sym_if] = ACTIONS(802), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(802), - [sym_nullptr] = ACTIONS(802), - [anon_sym_do] = ACTIONS(802), - [anon_sym_case] = ACTIONS(802), - [anon_sym_return] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_PLUS_PLUS] = ACTIONS(804), - [anon_sym_SQUOTE] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(804), + [2053] = { + [anon_sym_LPAREN2] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(808), + [sym_true] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_default] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(806), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_switch] = ACTIONS(806), + [sym_identifier] = ACTIONS(806), + [anon_sym_new] = ACTIONS(806), + [anon_sym_goto] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_delete] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_DQUOTE] = ACTIONS(808), + [sym_number_literal] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_if] = ACTIONS(806), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(806), + [sym_nullptr] = ACTIONS(806), + [anon_sym_do] = ACTIONS(806), + [anon_sym_case] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_SQUOTE] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_DASH_DASH] = ACTIONS(808), }, - [2065] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(3102), - [sym_logical_expression] = STATE(3102), - [sym_bitwise_expression] = STATE(3102), - [sym_cast_expression] = STATE(3102), - [sym_new_expression] = STATE(3102), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3102), - [sym_declaration] = STATE(3101), - [sym_char_literal] = STATE(3102), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(3102), - [sym_conditional_expression] = STATE(3102), - [sym_equality_expression] = STATE(3102), - [sym_relational_expression] = STATE(3102), - [sym_sizeof_expression] = STATE(3102), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(3102), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(3102), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(3102), - [sym_lambda_expression] = STATE(3102), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(3103), - [sym_assignment_expression] = STATE(3102), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3102), - [sym_math_expression] = STATE(3102), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [2054] = { + [sym_template_function] = STATE(3080), + [sym__expression] = STATE(3080), + [sym_logical_expression] = STATE(3080), + [sym_bitwise_expression] = STATE(3080), + [sym_cast_expression] = STATE(3080), + [sym_delete_expression] = STATE(3080), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(3080), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(3080), + [sym_lambda_expression] = STATE(3080), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(3079), + [sym_for_range_declaration] = STATE(3081), + [sym_conditional_expression] = STATE(3080), + [sym_equality_expression] = STATE(3080), + [sym_relational_expression] = STATE(3080), + [sym_sizeof_expression] = STATE(3080), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(3080), + [sym_concatenated_string] = STATE(3080), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(6483), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(3080), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3080), + [sym_math_expression] = STATE(3080), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3080), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(6472), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(6485), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(6474), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(6485), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(6474), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(6483), + [sym_number_literal] = ACTIONS(6472), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(6485), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(6474), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(6474), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(6487), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(6476), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [2066] = { - [aux_sym_try_statement_repeat1] = STATE(3105), - [sym_catch_clause] = STATE(3105), - [anon_sym_catch] = ACTIONS(6489), + [2055] = { + [sym_catch_clause] = STATE(3083), + [aux_sym_try_statement_repeat1] = STATE(3083), + [anon_sym_catch] = ACTIONS(6478), [sym_comment] = ACTIONS(3), }, - [2067] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3106), - [sym_logical_expression] = STATE(3106), - [sym_bitwise_expression] = STATE(3106), - [sym_cast_expression] = STATE(3106), - [sym_new_expression] = STATE(3106), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(3106), - [sym_char_literal] = STATE(3106), - [sym_template_function] = STATE(3106), - [sym_conditional_expression] = STATE(3106), - [sym_equality_expression] = STATE(3106), - [sym_relational_expression] = STATE(3106), - [sym_delete_expression] = STATE(3106), - [sym_sizeof_expression] = STATE(3106), - [sym_parenthesized_expression] = STATE(3106), - [sym_lambda_expression] = STATE(3106), - [sym_concatenated_string] = STATE(3106), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(3106), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(3106), - [sym_math_expression] = STATE(3106), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(6493), - [sym_null] = ACTIONS(6493), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6491), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(6493), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(6493), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [2056] = { + [sym_template_function] = STATE(3084), + [sym__expression] = STATE(3084), + [sym_logical_expression] = STATE(3084), + [sym_bitwise_expression] = STATE(3084), + [sym_cast_expression] = STATE(3084), + [sym_delete_expression] = STATE(3084), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(3084), + [sym_lambda_expression] = STATE(3084), + [sym_char_literal] = STATE(3084), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3084), + [sym_equality_expression] = STATE(3084), + [sym_relational_expression] = STATE(3084), + [sym_sizeof_expression] = STATE(3084), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3084), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(3084), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3084), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(3084), + [sym_math_expression] = STATE(3084), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(3084), + [sym_raw_string_literal] = ACTIONS(6480), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(6482), + [sym_null] = ACTIONS(6482), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6480), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(6482), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(6482), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [2068] = { - [anon_sym_LPAREN2] = ACTIONS(6495), + [2057] = { + [anon_sym_LPAREN2] = ACTIONS(6484), [sym_comment] = ACTIONS(3), }, - [2069] = { - [anon_sym_while] = ACTIONS(6497), + [2058] = { + [anon_sym_while] = ACTIONS(6486), [sym_comment] = ACTIONS(3), }, - [2070] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(6499), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2059] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(6488), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2071] = { - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - [sym_true] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_switch] = ACTIONS(1609), - [sym_identifier] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_if] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_case] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [2060] = { + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1619), + [sym_raw_string_literal] = ACTIONS(1621), + [sym_true] = ACTIONS(1619), + [anon_sym_else] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [anon_sym_COLON_COLON] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_sizeof] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_delete] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_number_literal] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1619), + [sym_nullptr] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_case] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), }, - [2072] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2061] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(6490), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2073] = { + [2062] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(6501), + [anon_sym_SEMI] = ACTIONS(6490), }, - [2074] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_default] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_delete] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_number_literal] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_if] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(962), - [sym_nullptr] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), + [2063] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(968), + [sym_true] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [sym_null] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_default] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym_number_literal] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_if] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(966), + [sym_nullptr] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_case] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), }, - [2075] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [2064] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -90548,7 +90387,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(6503), + [anon_sym_RBRACE] = ACTIONS(6492), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -90580,737 +90419,739 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2076] = { - [anon_sym_LPAREN2] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1809), - [sym_raw_string_literal] = ACTIONS(1811), - [sym_true] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_sizeof] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1811), - [sym_number_literal] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1809), - [sym_nullptr] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), + [2065] = { + [anon_sym_LPAREN2] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1879), + [sym_raw_string_literal] = ACTIONS(1881), + [sym_true] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [sym_null] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_sizeof] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_switch] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym_number_literal] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1879), + [sym_nullptr] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_case] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), }, - [2077] = { - [anon_sym_DASH] = ACTIONS(6505), - [sym_raw_string_literal] = ACTIONS(6507), - [anon_sym_else] = ACTIONS(6505), - [sym_true] = ACTIONS(6505), - [anon_sym_mutable] = ACTIONS(6505), - [sym_null] = ACTIONS(6505), - [anon_sym_break] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6507), - [anon_sym_sizeof] = ACTIONS(6505), - [anon_sym_volatile] = ACTIONS(6505), - [anon_sym_PLUS] = ACTIONS(6505), - [anon_sym_typedef] = ACTIONS(6505), - [anon_sym_switch] = ACTIONS(6505), - [anon_sym_explicit] = ACTIONS(6505), - [sym_identifier] = ACTIONS(6505), - [anon_sym_delete] = ACTIONS(6505), - [anon_sym_continue] = ACTIONS(6505), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6505), - [anon_sym__Atomic] = ACTIONS(6505), - [sym_number_literal] = ACTIONS(6507), - [anon_sym_extern] = ACTIONS(6505), - [anon_sym_enum] = ACTIONS(6505), - [anon_sym_constexpr] = ACTIONS(6505), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6507), - [anon_sym_namespace] = ACTIONS(6505), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [anon_sym_DASH_DASH] = ACTIONS(6507), - [anon_sym_LPAREN2] = ACTIONS(6507), - [anon_sym_struct] = ACTIONS(6505), - [sym_auto] = ACTIONS(6505), - [anon_sym_signed] = ACTIONS(6505), - [anon_sym_long] = ACTIONS(6505), - [anon_sym_COLON_COLON] = ACTIONS(6507), - [anon_sym_using] = ACTIONS(6505), - [sym_preproc_directive] = ACTIONS(6505), - [aux_sym_preproc_if_token1] = ACTIONS(6505), - [anon_sym_AMP] = ACTIONS(6505), - [anon_sym_static] = ACTIONS(6505), - [anon_sym_RBRACE] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_union] = ACTIONS(6505), - [anon_sym_typename] = ACTIONS(6505), - [anon_sym_short] = ACTIONS(6505), - [anon_sym_new] = ACTIONS(6505), - [anon_sym_goto] = ACTIONS(6505), - [sym_operator_name] = ACTIONS(6507), - [anon_sym_while] = ACTIONS(6505), - [anon_sym_try] = ACTIONS(6505), - [anon_sym_for] = ACTIONS(6505), - [aux_sym_preproc_include_token1] = ACTIONS(6505), - [anon_sym_register] = ACTIONS(6505), - [anon_sym_DQUOTE] = ACTIONS(6507), - [anon_sym_const] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6505), - [anon_sym_class] = ACTIONS(6505), - [anon_sym_if] = ACTIONS(6505), - [sym_primitive_type] = ACTIONS(6505), - [sym_false] = ACTIONS(6505), - [sym_nullptr] = ACTIONS(6505), - [anon_sym_do] = ACTIONS(6505), - [anon_sym_template] = ACTIONS(6505), - [anon_sym_return] = ACTIONS(6505), - [anon_sym_TILDE] = ACTIONS(6507), - [anon_sym_SEMI] = ACTIONS(6507), - [ts_builtin_sym_end] = ACTIONS(6507), - [aux_sym_preproc_def_token1] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(6507), - [anon_sym_inline] = ACTIONS(6505), - [anon_sym_PLUS_PLUS] = ACTIONS(6507), - [anon_sym_restrict] = ACTIONS(6505), + [2066] = { + [anon_sym_DASH] = ACTIONS(6494), + [sym_raw_string_literal] = ACTIONS(6496), + [anon_sym_else] = ACTIONS(6494), + [sym_true] = ACTIONS(6494), + [anon_sym_mutable] = ACTIONS(6494), + [sym_null] = ACTIONS(6494), + [anon_sym_break] = ACTIONS(6494), + [anon_sym_BANG] = ACTIONS(6496), + [anon_sym_sizeof] = ACTIONS(6494), + [anon_sym_volatile] = ACTIONS(6494), + [anon_sym_PLUS] = ACTIONS(6494), + [anon_sym_typedef] = ACTIONS(6494), + [anon_sym_switch] = ACTIONS(6494), + [anon_sym_explicit] = ACTIONS(6494), + [sym_identifier] = ACTIONS(6494), + [anon_sym_delete] = ACTIONS(6494), + [anon_sym_continue] = ACTIONS(6494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6494), + [anon_sym__Atomic] = ACTIONS(6494), + [sym_number_literal] = ACTIONS(6496), + [anon_sym_extern] = ACTIONS(6494), + [anon_sym_enum] = ACTIONS(6494), + [anon_sym_constexpr] = ACTIONS(6494), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6496), + [anon_sym_namespace] = ACTIONS(6494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6494), + [anon_sym_SQUOTE] = ACTIONS(6496), + [anon_sym_LBRACE] = ACTIONS(6496), + [anon_sym_DASH_DASH] = ACTIONS(6496), + [anon_sym_LPAREN2] = ACTIONS(6496), + [anon_sym_struct] = ACTIONS(6494), + [sym_auto] = ACTIONS(6494), + [anon_sym_signed] = ACTIONS(6494), + [anon_sym_long] = ACTIONS(6494), + [anon_sym_COLON_COLON] = ACTIONS(6496), + [anon_sym_using] = ACTIONS(6494), + [sym_preproc_directive] = ACTIONS(6494), + [aux_sym_preproc_if_token1] = ACTIONS(6494), + [anon_sym_AMP] = ACTIONS(6494), + [anon_sym_static] = ACTIONS(6494), + [anon_sym_RBRACE] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6496), + [anon_sym_union] = ACTIONS(6494), + [anon_sym_typename] = ACTIONS(6494), + [anon_sym_short] = ACTIONS(6494), + [anon_sym_new] = ACTIONS(6494), + [anon_sym_goto] = ACTIONS(6494), + [sym_operator_name] = ACTIONS(6496), + [anon_sym_while] = ACTIONS(6494), + [anon_sym_try] = ACTIONS(6494), + [anon_sym_for] = ACTIONS(6494), + [aux_sym_preproc_include_token1] = ACTIONS(6494), + [anon_sym_register] = ACTIONS(6494), + [anon_sym_DQUOTE] = ACTIONS(6496), + [anon_sym_const] = ACTIONS(6494), + [anon_sym_LBRACK] = ACTIONS(6494), + [anon_sym_class] = ACTIONS(6494), + [anon_sym_if] = ACTIONS(6494), + [sym_primitive_type] = ACTIONS(6494), + [sym_false] = ACTIONS(6494), + [sym_nullptr] = ACTIONS(6494), + [anon_sym_do] = ACTIONS(6494), + [anon_sym_template] = ACTIONS(6494), + [anon_sym_return] = ACTIONS(6494), + [anon_sym_TILDE] = ACTIONS(6496), + [anon_sym_SEMI] = ACTIONS(6496), + [ts_builtin_sym_end] = ACTIONS(6496), + [aux_sym_preproc_def_token1] = ACTIONS(6494), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_inline] = ACTIONS(6494), + [anon_sym_PLUS_PLUS] = ACTIONS(6496), + [anon_sym_restrict] = ACTIONS(6494), }, - [2078] = { - [sym_do_statement] = STATE(2078), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [2067] = { + [sym_do_statement] = STATE(2067), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(2078), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(2078), - [sym_if_statement] = STATE(2078), - [sym_switch_statement] = STATE(2078), - [sym_for_statement] = STATE(2078), - [sym_return_statement] = STATE(2078), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2067), + [sym_try_statement] = STATE(2067), + [aux_sym_switch_body_repeat1] = STATE(2067), + [sym_if_statement] = STATE(2067), + [sym_switch_statement] = STATE(2067), + [sym_for_statement] = STATE(2067), + [sym_return_statement] = STATE(2067), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(2078), - [aux_sym_switch_body_repeat1] = STATE(2078), - [sym_case_statement] = STATE(2078), - [sym_break_statement] = STATE(2078), - [sym_continue_statement] = STATE(2078), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(2067), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2067), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2078), - [sym_labeled_statement] = STATE(2078), - [sym_expression_statement] = STATE(2078), - [sym_while_statement] = STATE(2078), - [anon_sym_LPAREN2] = ACTIONS(6509), - [anon_sym_DASH] = ACTIONS(6512), - [sym_raw_string_literal] = ACTIONS(6515), - [sym_true] = ACTIONS(6518), - [sym_null] = ACTIONS(6518), - [anon_sym_COLON_COLON] = ACTIONS(6521), - [anon_sym_default] = ACTIONS(6524), - [anon_sym_break] = ACTIONS(6527), - [anon_sym_BANG] = ACTIONS(6530), - [anon_sym_AMP] = ACTIONS(6533), - [anon_sym_sizeof] = ACTIONS(6536), - [anon_sym_RBRACE] = ACTIONS(6539), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_STAR] = ACTIONS(6533), - [anon_sym_switch] = ACTIONS(6541), - [sym_identifier] = ACTIONS(6544), - [anon_sym_new] = ACTIONS(6547), - [anon_sym_goto] = ACTIONS(6550), - [anon_sym_while] = ACTIONS(6553), - [anon_sym_continue] = ACTIONS(6556), - [anon_sym_for] = ACTIONS(6559), - [anon_sym_delete] = ACTIONS(6562), - [anon_sym_try] = ACTIONS(6565), - [anon_sym_DQUOTE] = ACTIONS(6568), - [sym_number_literal] = ACTIONS(6515), - [anon_sym_LBRACK] = ACTIONS(6571), - [anon_sym_if] = ACTIONS(6574), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6518), - [sym_nullptr] = ACTIONS(6518), - [anon_sym_do] = ACTIONS(6577), - [anon_sym_case] = ACTIONS(6580), - [anon_sym_return] = ACTIONS(6583), - [anon_sym_TILDE] = ACTIONS(6586), - [anon_sym_SEMI] = ACTIONS(6589), - [anon_sym_PLUS_PLUS] = ACTIONS(6592), - [anon_sym_SQUOTE] = ACTIONS(6595), - [anon_sym_LBRACE] = ACTIONS(6598), - [anon_sym_DASH_DASH] = ACTIONS(6592), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(2067), + [sym_for_range_loop] = STATE(2067), + [sym_compound_statement] = STATE(2067), + [sym_labeled_statement] = STATE(2067), + [sym_expression_statement] = STATE(2067), + [sym_while_statement] = STATE(2067), + [anon_sym_LPAREN2] = ACTIONS(6498), + [anon_sym_DASH] = ACTIONS(6501), + [sym_raw_string_literal] = ACTIONS(6504), + [sym_true] = ACTIONS(6507), + [sym_null] = ACTIONS(6507), + [anon_sym_COLON_COLON] = ACTIONS(6510), + [anon_sym_default] = ACTIONS(6513), + [anon_sym_break] = ACTIONS(6516), + [anon_sym_BANG] = ACTIONS(6519), + [anon_sym_AMP] = ACTIONS(6522), + [anon_sym_sizeof] = ACTIONS(6525), + [anon_sym_RBRACE] = ACTIONS(6528), + [anon_sym_PLUS] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(6522), + [anon_sym_switch] = ACTIONS(6530), + [sym_identifier] = ACTIONS(6533), + [anon_sym_new] = ACTIONS(6536), + [anon_sym_goto] = ACTIONS(6539), + [anon_sym_while] = ACTIONS(6542), + [anon_sym_continue] = ACTIONS(6545), + [anon_sym_for] = ACTIONS(6548), + [anon_sym_delete] = ACTIONS(6551), + [anon_sym_try] = ACTIONS(6554), + [anon_sym_DQUOTE] = ACTIONS(6557), + [sym_number_literal] = ACTIONS(6504), + [anon_sym_LBRACK] = ACTIONS(6560), + [anon_sym_if] = ACTIONS(6563), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(6507), + [sym_nullptr] = ACTIONS(6507), + [anon_sym_do] = ACTIONS(6566), + [anon_sym_case] = ACTIONS(6569), + [anon_sym_return] = ACTIONS(6572), + [anon_sym_TILDE] = ACTIONS(6575), + [anon_sym_SEMI] = ACTIONS(6578), + [anon_sym_PLUS_PLUS] = ACTIONS(6581), + [anon_sym_SQUOTE] = ACTIONS(6584), + [anon_sym_LBRACE] = ACTIONS(6587), + [anon_sym_DASH_DASH] = ACTIONS(6581), }, - [2079] = { - [sym_field_declaration_list] = STATE(3112), - [sym_base_class_clause] = STATE(3113), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2180), + [2068] = { + [sym_field_declaration_list] = STATE(3090), + [sym_base_class_clause] = STATE(3091), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [2080] = { - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_final] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_GT2] = ACTIONS(2851), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_GT_EQ] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_override] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2853), - [sym_operator_name] = ACTIONS(2851), - [sym_noexcept] = ACTIONS(2853), - [anon_sym_CARET] = ACTIONS(2851), - [anon_sym_GT] = ACTIONS(2853), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_register] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_LT_LT] = ACTIONS(2851), - [anon_sym_constexpr] = ACTIONS(2853), + [2069] = { + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_final] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_EQ_EQ] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_override] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2855), + [sym_operator_name] = ACTIONS(2853), + [sym_noexcept] = ACTIONS(2855), + [anon_sym_CARET] = ACTIONS(2853), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2853), + [anon_sym_register] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_DOT] = ACTIONS(2853), + [anon_sym_LT_LT] = ACTIONS(2853), + [anon_sym_constexpr] = ACTIONS(2855), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2851), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym_EQ] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym_GT_GT] = ACTIONS(2853), - [anon_sym_DASH_GT] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2853), + [anon_sym_QMARK] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_DASH_GT] = ACTIONS(2853), }, - [2081] = { - [sym_field_declaration_list] = STATE(3112), - [anon_sym_LBRACE] = ACTIONS(2180), + [2070] = { + [sym_field_declaration_list] = STATE(3090), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [2082] = { - [anon_sym_LPAREN2] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_mutable] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_final] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2867), - [anon_sym_GT2] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_override] = ACTIONS(2869), - [anon_sym_explicit] = ACTIONS(2869), - [sym_identifier] = ACTIONS(2869), - [sym_operator_name] = ACTIONS(2867), - [sym_noexcept] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_register] = ACTIONS(2869), - [anon_sym__Atomic] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_LT_LT] = ACTIONS(2867), - [anon_sym_constexpr] = ACTIONS(2869), + [2071] = { + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_final] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_GT2] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_override] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2871), + [sym_operator_name] = ACTIONS(2869), + [sym_noexcept] = ACTIONS(2871), + [anon_sym_CARET] = ACTIONS(2869), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_register] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2869), + [anon_sym_constexpr] = ACTIONS(2871), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2867), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_TILDE] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_inline] = ACTIONS(2869), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym_restrict] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_DASH_GT] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2869), + [anon_sym_QMARK] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_LT_EQ] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2871), + [anon_sym_DASH_GT] = ACTIONS(2869), }, - [2083] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(1472), - [sym_preproc_function_def] = STATE(1472), - [sym_alias_declaration] = STATE(1472), + [2072] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(1448), + [sym_preproc_function_def] = STATE(1448), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(1472), - [sym_preproc_if_in_field_declaration_list] = STATE(1472), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1472), - [sym_type_definition] = STATE(1472), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(1472), - [sym__field_declaration_list_item] = STATE(1472), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1472), - [sym_inline_method_definition] = STATE(1472), - [sym_friend_declaration] = STATE(1472), - [sym_access_specifier] = STATE(1472), - [sym_using_declaration] = STATE(1472), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(1472), - [sym_constructor_or_destructor_definition] = STATE(1472), - [sym_constructor_or_destructor_declaration] = STATE(1472), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1448), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(1448), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(1448), + [sym_preproc_if_in_field_declaration_list] = STATE(1448), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1448), + [sym_type_definition] = STATE(1448), + [sym_using_declaration] = STATE(1448), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(1448), + [sym_inline_method_definition] = STATE(1448), + [sym_constructor_or_destructor_definition] = STATE(1448), + [sym_access_specifier] = STATE(1448), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(1448), + [sym_alias_declaration] = STATE(1448), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(1448), + [sym_constructor_or_destructor_declaration] = STATE(1448), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(6601), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(6590), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [2084] = { - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_final] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_GT2] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_override] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2919), - [sym_operator_name] = ACTIONS(2917), - [sym_noexcept] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2919), + [2073] = { + [sym_field_declaration_list] = STATE(3093), + [sym_base_class_clause] = STATE(3094), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_DASH_GT] = ACTIONS(2917), }, - [2085] = { - [sym_field_declaration_list] = STATE(3115), - [anon_sym_LBRACE] = ACTIONS(2180), + [2074] = { + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_final] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(2919), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_override] = ACTIONS(2921), + [anon_sym_explicit] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2921), + [sym_operator_name] = ACTIONS(2919), + [sym_noexcept] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2919), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_COMMA] = ACTIONS(2919), + [anon_sym_register] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LT_LT] = ACTIONS(2919), + [anon_sym_constexpr] = ACTIONS(2921), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(2919), + [anon_sym_QMARK] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_DASH_GT] = ACTIONS(2919), }, - [2086] = { - [sym_field_declaration_list] = STATE(3115), - [sym_base_class_clause] = STATE(3116), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2180), + [2075] = { + [sym_field_declaration_list] = STATE(3093), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [2087] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_GT2] = ACTIONS(1141), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), + [2076] = { + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_GT2] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1139), }, - [2088] = { - [sym_destructor_name] = STATE(2156), - [sym_identifier] = ACTIONS(6603), - [sym_operator_name] = ACTIONS(4290), - [anon_sym_TILDE] = ACTIONS(2198), + [2077] = { + [sym_destructor_name] = STATE(2145), + [sym_identifier] = ACTIONS(6592), + [sym_operator_name] = ACTIONS(4288), + [anon_sym_TILDE] = ACTIONS(2200), [sym_comment] = ACTIONS(3), }, - [2089] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(783), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(785), + [2078] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(793), }, - [2090] = { - [sym_destructor_name] = STATE(2185), - [sym_identifier] = ACTIONS(6605), - [sym_operator_name] = ACTIONS(4334), - [anon_sym_TILDE] = ACTIONS(2198), + [2079] = { + [sym_destructor_name] = STATE(2209), + [sym_identifier] = ACTIONS(6594), + [sym_operator_name] = ACTIONS(4413), + [anon_sym_TILDE] = ACTIONS(2200), [sym_comment] = ACTIONS(3), }, - [2091] = { - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_GT2] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2816), + [2080] = { + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_PERCENT] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_QMARK] = ACTIONS(2818), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_DASH_GT] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_DASH_GT] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2818), }, - [2092] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(3119), - [sym_logical_expression] = STATE(3119), - [sym_bitwise_expression] = STATE(3119), - [sym_cast_expression] = STATE(3119), - [sym_new_expression] = STATE(3119), + [2081] = { + [sym_template_function] = STATE(3097), + [sym__expression] = STATE(3097), + [sym_logical_expression] = STATE(3097), + [sym_bitwise_expression] = STATE(3097), + [sym_cast_expression] = STATE(3097), + [sym_delete_expression] = STATE(3097), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(3119), - [sym_char_literal] = STATE(3119), - [sym_template_function] = STATE(3119), - [sym_conditional_expression] = STATE(3119), - [sym_equality_expression] = STATE(3119), - [sym_relational_expression] = STATE(3119), - [sym_delete_expression] = STATE(3119), - [sym_sizeof_expression] = STATE(3119), - [sym_parenthesized_expression] = STATE(3119), - [sym_initializer_list] = STATE(3120), - [sym_concatenated_string] = STATE(3119), - [sym_string_literal] = STATE(424), - [sym_lambda_expression] = STATE(3119), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(3097), + [sym_lambda_expression] = STATE(3097), + [sym_char_literal] = STATE(3097), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(3097), + [sym_equality_expression] = STATE(3097), + [sym_relational_expression] = STATE(3097), + [sym_sizeof_expression] = STATE(3097), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(3119), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_initializer_list] = STATE(3098), + [sym_parenthesized_expression] = STATE(3097), + [sym_string_literal] = STATE(426), + [sym_lambda_capture_specifier] = STATE(425), + [sym_concatenated_string] = STATE(3097), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(3097), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(3119), - [sym_math_expression] = STATE(3119), + [sym_shift_expression] = STATE(3097), + [sym_math_expression] = STATE(3097), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(6607), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(6609), - [anon_sym_DASH_DASH] = ACTIONS(740), - [sym_null] = ACTIONS(6609), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(6607), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(6609), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6609), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(2250), + [sym_new_expression] = STATE(3097), + [sym_raw_string_literal] = ACTIONS(6596), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(744), + [sym_null] = ACTIONS(6598), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(6598), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6598), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(2252), }, - [2093] = { - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_GT2] = ACTIONS(1651), - [anon_sym_EQ_EQ] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(1651), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_PIPE_PIPE] = ACTIONS(1651), - [anon_sym_DOT] = ACTIONS(1651), - [anon_sym_LT_LT] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_PERCENT] = ACTIONS(1651), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_DASH_GT] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(1651), + [2082] = { + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_COMMA] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_DOT] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_DASH_GT] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_EQ] = ACTIONS(2923), + [anon_sym_GT_GT] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(1661), }, - [2094] = { - [sym_template_type] = STATE(239), + [2083] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(6611), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(6600), }, - [2095] = { - [sym_argument_list] = STATE(1165), + [2084] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(2925), + [anon_sym_COMMA] = ACTIONS(2927), [anon_sym_PIPE_PIPE] = ACTIONS(2305), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), @@ -91319,9 +91160,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(2925), + [anon_sym_GT2] = ACTIONS(2927), [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_QMARK] = ACTIONS(2927), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -91335,796 +91176,796 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2096] = { - [sym_argument_list] = STATE(1165), + [2085] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(654), - [anon_sym_LT_LT_EQ] = ACTIONS(654), - [anon_sym_PERCENT_EQ] = ACTIONS(654), - [anon_sym_GT2] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(654), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_GT2] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [2097] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(6615), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2086] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2098] = { - [anon_sym_RPAREN] = ACTIONS(6617), + [2087] = { + [anon_sym_RPAREN] = ACTIONS(6606), [sym_comment] = ACTIONS(3), }, - [2099] = { - [anon_sym_RPAREN] = ACTIONS(6615), + [2088] = { + [anon_sym_RPAREN] = ACTIONS(6604), [sym_comment] = ACTIONS(3), }, - [2100] = { - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_STAR_EQ] = ACTIONS(1317), - [anon_sym_LT_LT_EQ] = ACTIONS(1317), - [anon_sym_PERCENT_EQ] = ACTIONS(1317), - [anon_sym_GT2] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_CARET_EQ] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_SLASH_EQ] = ACTIONS(1317), - [anon_sym_PLUS_EQ] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_PIPE_EQ] = ACTIONS(1317), - [anon_sym_GT_GT_EQ] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1317), - [anon_sym_PIPE_PIPE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_PERCENT] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_DASH_EQ] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_AMP_EQ] = ACTIONS(1317), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_DASH_GT] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1317), + [2089] = { + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1325), + [anon_sym_LT_LT_EQ] = ACTIONS(1325), + [anon_sym_PERCENT_EQ] = ACTIONS(1325), + [anon_sym_GT2] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1325), + [anon_sym_PLUS_EQ] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1325), + [anon_sym_DASH_EQ] = ACTIONS(1325), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1325), + [anon_sym_AMP_EQ] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1325), }, - [2101] = { - [aux_sym_string_literal_repeat1] = STATE(731), + [2090] = { + [aux_sym_string_literal_repeat1] = STATE(732), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(6619), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(6608), }, - [2102] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_STAR_EQ] = ACTIONS(1141), - [anon_sym_LT_LT_EQ] = ACTIONS(1141), - [anon_sym_PERCENT_EQ] = ACTIONS(1141), - [anon_sym_GT2] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_CARET_EQ] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1141), - [anon_sym_PLUS_EQ] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1141), - [anon_sym_GT_GT_EQ] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_DASH_EQ] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), + [2091] = { + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_STAR_EQ] = ACTIONS(1147), + [anon_sym_LT_LT_EQ] = ACTIONS(1147), + [anon_sym_PERCENT_EQ] = ACTIONS(1147), + [anon_sym_GT2] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_SLASH_EQ] = ACTIONS(1147), + [anon_sym_PLUS_EQ] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_PIPE_EQ] = ACTIONS(1147), + [anon_sym_GT_GT_EQ] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_DASH_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), }, - [2103] = { - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1141), - [anon_sym_LT_LT_EQ] = ACTIONS(1141), - [anon_sym_PERCENT_EQ] = ACTIONS(1141), - [anon_sym_GT2] = ACTIONS(1141), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_CARET_EQ] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1141), - [anon_sym_PLUS_EQ] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1141), - [anon_sym_GT_GT_EQ] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_DASH_EQ] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_AMP_EQ] = ACTIONS(1141), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1141), + [2092] = { + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_STAR_EQ] = ACTIONS(1147), + [anon_sym_LT_LT_EQ] = ACTIONS(1147), + [anon_sym_PERCENT_EQ] = ACTIONS(1147), + [anon_sym_GT2] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_CARET_EQ] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_SLASH_EQ] = ACTIONS(1147), + [anon_sym_PLUS_EQ] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_PIPE_EQ] = ACTIONS(1147), + [anon_sym_GT_GT_EQ] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_DASH_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_AMP_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1147), }, - [2104] = { - [sym_identifier] = ACTIONS(6621), + [2093] = { + [sym_identifier] = ACTIONS(6610), [sym_comment] = ACTIONS(3), }, - [2105] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3127), - [sym_logical_expression] = STATE(3127), - [sym_bitwise_expression] = STATE(3127), - [sym_cast_expression] = STATE(3127), - [sym_new_expression] = STATE(3127), - [sym_field_expression] = STATE(3127), - [sym_compound_literal_expression] = STATE(3127), - [sym_char_literal] = STATE(3127), - [sym_template_function] = STATE(3127), - [sym_conditional_expression] = STATE(3127), - [sym_equality_expression] = STATE(3127), - [sym_relational_expression] = STATE(3127), - [sym_delete_expression] = STATE(3127), - [sym_sizeof_expression] = STATE(3127), - [sym_parenthesized_expression] = STATE(3127), - [sym_lambda_expression] = STATE(3127), - [sym_concatenated_string] = STATE(3127), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3127), - [sym_assignment_expression] = STATE(3127), - [sym_pointer_expression] = STATE(3127), - [sym_shift_expression] = STATE(3127), - [sym_math_expression] = STATE(3127), - [sym_call_expression] = STATE(3127), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6623), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6625), - [sym_null] = ACTIONS(6625), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6623), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(6627), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6625), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6625), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [2094] = { + [sym_template_function] = STATE(3105), + [sym__expression] = STATE(3105), + [sym_logical_expression] = STATE(3105), + [sym_bitwise_expression] = STATE(3105), + [sym_cast_expression] = STATE(3105), + [sym_delete_expression] = STATE(3105), + [sym_field_expression] = STATE(3105), + [sym_compound_literal_expression] = STATE(3105), + [sym_lambda_expression] = STATE(3105), + [sym_char_literal] = STATE(3105), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_relational_expression] = STATE(3105), + [sym_sizeof_expression] = STATE(3105), + [sym_subscript_expression] = STATE(3105), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3105), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3105), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3105), + [sym_pointer_expression] = STATE(3105), + [sym_shift_expression] = STATE(3105), + [sym_math_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_new_expression] = STATE(3105), + [sym_raw_string_literal] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6614), + [sym_null] = ACTIONS(6614), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), }, - [2106] = { - [sym_argument_list] = STATE(1165), + [2095] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_GT2] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(660), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_PIPE_PIPE] = ACTIONS(662), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_STAR_EQ] = ACTIONS(666), + [anon_sym_LT_LT_EQ] = ACTIONS(666), + [anon_sym_PERCENT_EQ] = ACTIONS(666), + [anon_sym_GT2] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_SLASH_EQ] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(666), + [anon_sym_GT_GT_EQ] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(664), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(660), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(664), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_DASH_EQ] = ACTIONS(666), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_AMP_EQ] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_EQ] = ACTIONS(664), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(666), }, - [2107] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(2097), - [sym_logical_expression] = STATE(2097), - [sym_bitwise_expression] = STATE(2097), - [sym_cast_expression] = STATE(2097), - [sym_new_expression] = STATE(2097), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(2097), - [sym_type_descriptor] = STATE(3128), - [sym_char_literal] = STATE(2097), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(2097), - [sym_conditional_expression] = STATE(2097), - [sym_equality_expression] = STATE(2097), - [sym_relational_expression] = STATE(2097), - [sym_delete_expression] = STATE(2097), - [sym_sizeof_expression] = STATE(2097), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(2097), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(2097), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(2097), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(2099), - [sym_assignment_expression] = STATE(2097), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(2097), - [sym_math_expression] = STATE(2097), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(4217), + [2096] = { + [sym_template_function] = STATE(2086), + [sym__expression] = STATE(2086), + [sym_logical_expression] = STATE(2086), + [sym_bitwise_expression] = STATE(2086), + [sym_cast_expression] = STATE(2086), + [sym_delete_expression] = STATE(2086), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(2086), + [sym_char_literal] = STATE(2086), + [sym_lambda_expression] = STATE(2086), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(3106), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(2088), + [sym_conditional_expression] = STATE(2086), + [sym_equality_expression] = STATE(2086), + [sym_relational_expression] = STATE(2086), + [sym_sizeof_expression] = STATE(2086), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(2086), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2086), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(2086), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(2086), + [sym_math_expression] = STATE(2086), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(2086), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(4215), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(4219), + [sym_true] = ACTIONS(4217), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4219), + [sym_null] = ACTIONS(4217), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4217), + [sym_number_literal] = ACTIONS(4215), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(4219), + [sym_false] = ACTIONS(4217), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(4219), + [sym_nullptr] = ACTIONS(4217), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [2108] = { - [sym_argument_list] = STATE(1165), + [2097] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_GT2] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_GT2] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [2109] = { - [sym_argument_list] = STATE(1165), + [2098] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1655), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR_EQ] = ACTIONS(1665), + [anon_sym_LT_LT_EQ] = ACTIONS(1665), + [anon_sym_PERCENT_EQ] = ACTIONS(1665), + [anon_sym_GT2] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_CARET_EQ] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_SLASH_EQ] = ACTIONS(1665), + [anon_sym_PLUS_EQ] = ACTIONS(1665), + [anon_sym_CARET] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_PIPE_EQ] = ACTIONS(1665), + [anon_sym_GT_GT_EQ] = ACTIONS(1663), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(1653), + [anon_sym_LT_LT] = ACTIONS(1663), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1663), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_DASH_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_AMP_EQ] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(1653), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1665), }, - [2110] = { - [sym_destructor_name] = STATE(3130), - [sym_identifier] = ACTIONS(6635), - [sym_operator_name] = ACTIONS(6637), - [anon_sym_TILDE] = ACTIONS(4229), + [2099] = { + [sym_destructor_name] = STATE(3108), + [sym_identifier] = ACTIONS(6624), + [sym_operator_name] = ACTIONS(6626), + [anon_sym_TILDE] = ACTIONS(4227), [sym_comment] = ACTIONS(3), }, - [2111] = { - [sym_template_type] = STATE(419), - [sym__expression] = STATE(3133), - [sym_logical_expression] = STATE(3133), - [sym_bitwise_expression] = STATE(3133), - [sym_cast_expression] = STATE(3133), - [sym_new_expression] = STATE(3133), + [2100] = { + [sym_template_function] = STATE(3111), + [sym__expression] = STATE(3111), + [sym_logical_expression] = STATE(3111), + [sym_bitwise_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [sym_delete_expression] = STATE(3111), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(3133), - [sym_type_descriptor] = STATE(3134), - [sym_char_literal] = STATE(3133), + [sym_scoped_type_identifier] = STATE(422), + [sym_compound_literal_expression] = STATE(3111), + [sym_char_literal] = STATE(3111), + [sym_lambda_expression] = STATE(3111), + [sym_scoped_identifier] = STATE(423), + [sym_type_descriptor] = STATE(3112), + [sym_dependent_type] = STATE(428), + [sym_struct_specifier] = STATE(428), + [sym_union_specifier] = STATE(428), [sym_type_qualifier] = STATE(429), - [sym_dependent_type] = STATE(426), - [sym_union_specifier] = STATE(426), - [sym_struct_specifier] = STATE(426), - [sym_template_function] = STATE(3133), - [sym_conditional_expression] = STATE(3133), - [sym_equality_expression] = STATE(3133), - [sym_relational_expression] = STATE(3133), - [sym_delete_expression] = STATE(3133), - [sym_sizeof_expression] = STATE(3133), + [sym_conditional_expression] = STATE(3111), + [sym_equality_expression] = STATE(3111), + [sym_relational_expression] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), [sym_subscript_expression] = STATE(421), - [sym_parenthesized_expression] = STATE(3133), - [sym_scoped_type_identifier] = STATE(423), - [sym_string_literal] = STATE(424), - [sym_macro_type_specifier] = STATE(426), - [sym_class_specifier] = STATE(426), - [sym_concatenated_string] = STATE(3133), - [sym_sized_type_specifier] = STATE(426), - [sym_lambda_expression] = STATE(3133), - [sym_scoped_identifier] = STATE(425), - [sym__type_specifier] = STATE(426), - [sym_assignment_expression] = STATE(3133), + [sym_parenthesized_expression] = STATE(3111), + [sym_lambda_capture_specifier] = STATE(425), + [sym_concatenated_string] = STATE(3111), + [sym_string_literal] = STATE(426), + [sym_macro_type_specifier] = STATE(428), + [sym_class_specifier] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(428), + [sym__type_specifier] = STATE(428), + [aux_sym_type_definition_repeat1] = STATE(429), + [sym_scoped_namespace_identifier] = STATE(430), + [sym_template_type] = STATE(431), + [sym_assignment_expression] = STATE(3111), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(3133), - [sym_math_expression] = STATE(3133), + [sym_shift_expression] = STATE(3111), + [sym_math_expression] = STATE(3111), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_enum_specifier] = STATE(426), - [sym_raw_string_literal] = ACTIONS(6639), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(702), - [sym_true] = ACTIONS(6641), + [sym_new_expression] = STATE(3111), + [sym_enum_specifier] = STATE(428), + [sym_raw_string_literal] = ACTIONS(6628), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(706), + [sym_true] = ACTIONS(6630), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(6641), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(710), - [anon_sym_signed] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_GT2] = ACTIONS(6643), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(720), + [sym_null] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_GT2] = ACTIONS(6632), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_sizeof] = ACTIONS(724), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_short] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_short] = ACTIONS(716), + [anon_sym_delete] = ACTIONS(734), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(6639), - [anon_sym_DQUOTE] = ACTIONS(732), + [sym_number_literal] = ACTIONS(6628), + [anon_sym_DQUOTE] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(702), - [sym_false] = ACTIONS(6641), - [anon_sym_unsigned] = ACTIONS(712), - [sym_nullptr] = ACTIONS(6641), + [sym_primitive_type] = ACTIONS(706), + [sym_false] = ACTIONS(6630), + [anon_sym_unsigned] = ACTIONS(716), + [sym_nullptr] = ACTIONS(6630), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [2112] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3137), - [sym_logical_expression] = STATE(3137), - [sym_bitwise_expression] = STATE(3137), - [sym_cast_expression] = STATE(3137), - [sym_new_expression] = STATE(3137), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(3137), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(3137), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(3137), - [sym_conditional_expression] = STATE(3137), - [sym_equality_expression] = STATE(3137), - [sym_relational_expression] = STATE(3137), - [sym_delete_expression] = STATE(3137), - [sym_sizeof_expression] = STATE(3137), - [sym_parenthesized_expression] = STATE(3137), - [sym_initializer_list] = STATE(3138), - [sym_concatenated_string] = STATE(3137), + [2101] = { + [sym_template_function] = STATE(3115), + [sym__expression] = STATE(3115), + [sym_logical_expression] = STATE(3115), + [sym_bitwise_expression] = STATE(3115), + [sym_cast_expression] = STATE(3115), + [sym_delete_expression] = STATE(3115), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(3115), + [sym_lambda_expression] = STATE(3115), + [sym_char_literal] = STATE(3115), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(3115), + [sym_equality_expression] = STATE(3115), + [sym_relational_expression] = STATE(3115), + [sym_sizeof_expression] = STATE(3115), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(3116), + [sym_parenthesized_expression] = STATE(3115), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(3137), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(3137), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(3137), - [sym_math_expression] = STATE(3137), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(3138), - [sym_raw_string_literal] = ACTIONS(6645), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(6647), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(6647), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6645), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(6649), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(6647), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6647), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(6651), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3115), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3115), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(3115), + [sym_math_expression] = STATE(3115), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(3115), + [sym_initializer_pair] = STATE(3116), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(6636), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(6636), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6634), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(6636), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6636), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(6640), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [2113] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - [anon_sym_STAR_EQ] = ACTIONS(785), - [anon_sym_LT_LT_EQ] = ACTIONS(785), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_CARET_EQ] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_SLASH_EQ] = ACTIONS(785), - [anon_sym_PLUS_EQ] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_PIPE_EQ] = ACTIONS(785), - [anon_sym_GT_GT_EQ] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_DASH_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(783), + [2102] = { + [anon_sym_LPAREN2] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_STAR_EQ] = ACTIONS(784), + [anon_sym_LT_LT_EQ] = ACTIONS(784), + [anon_sym_PERCENT_EQ] = ACTIONS(784), + [anon_sym_GT2] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_CARET_EQ] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_SLASH_EQ] = ACTIONS(784), + [anon_sym_PLUS_EQ] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_PIPE_EQ] = ACTIONS(784), + [anon_sym_GT_GT_EQ] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_DASH_EQ] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_AMP_EQ] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(784), }, - [2114] = { - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_STAR_EQ] = ACTIONS(794), - [anon_sym_LT_LT_EQ] = ACTIONS(794), - [anon_sym_PERCENT_EQ] = ACTIONS(794), - [anon_sym_GT2] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_CARET_EQ] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_SLASH_EQ] = ACTIONS(794), - [anon_sym_PLUS_EQ] = ACTIONS(794), - [anon_sym_CARET] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_PIPE_EQ] = ACTIONS(794), - [anon_sym_GT_GT_EQ] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_DOT] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_PERCENT] = ACTIONS(796), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(794), - [anon_sym_DASH_EQ] = ACTIONS(794), - [anon_sym_LT_EQ] = ACTIONS(794), - [anon_sym_BANG_EQ] = ACTIONS(794), - [anon_sym_AMP_EQ] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_DASH_GT] = ACTIONS(794), - [anon_sym_EQ] = ACTIONS(796), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(794), + [2103] = { + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_STAR_EQ] = ACTIONS(793), + [anon_sym_LT_LT_EQ] = ACTIONS(793), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_PERCENT_EQ] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_CARET_EQ] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_SLASH_EQ] = ACTIONS(793), + [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_PIPE_EQ] = ACTIONS(793), + [anon_sym_GT_GT_EQ] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_DASH_EQ] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(791), }, - [2115] = { - [sym_virtual_specifier] = STATE(3141), - [sym_template_type] = STATE(3142), - [sym_scoped_namespace_identifier] = STATE(2124), - [sym_field_declaration_list] = STATE(3143), - [sym_scoped_type_identifier] = STATE(3144), - [sym_base_class_clause] = STATE(3145), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(6653), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_override] = ACTIONS(298), + [2104] = { + [sym_scoped_type_identifier] = STATE(3119), + [sym_virtual_specifier] = STATE(3120), + [sym_template_type] = STATE(3121), + [sym_scoped_namespace_identifier] = STATE(2116), + [sym_field_declaration_list] = STATE(3122), + [sym_base_class_clause] = STATE(3123), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(6642), + [anon_sym_COLON_COLON] = ACTIONS(4258), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_override] = ACTIONS(300), }, - [2116] = { - [sym_virtual_specifier] = STATE(3147), - [sym_template_type] = STATE(3148), - [sym_scoped_namespace_identifier] = STATE(2124), - [sym_field_declaration_list] = STATE(3149), - [sym_scoped_type_identifier] = STATE(3150), - [sym_base_class_clause] = STATE(3151), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(6657), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_override] = ACTIONS(298), + [2105] = { + [sym_scoped_type_identifier] = STATE(3125), + [sym_virtual_specifier] = STATE(3126), + [sym_template_type] = STATE(3127), + [sym_scoped_namespace_identifier] = STATE(2116), + [sym_field_declaration_list] = STATE(3128), + [sym_base_class_clause] = STATE(3129), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(6646), + [anon_sym_COLON_COLON] = ACTIONS(4258), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_override] = ACTIONS(300), }, - [2117] = { - [sym_union_specifier] = STATE(3152), - [sym_macro_type_specifier] = STATE(3152), - [sym_class_specifier] = STATE(3152), - [sym_template_type] = STATE(2122), - [sym_sized_type_specifier] = STATE(3152), - [sym_scoped_namespace_identifier] = STATE(2124), - [sym__type_specifier] = STATE(3152), - [aux_sym_sized_type_specifier_repeat1] = STATE(2125), - [sym_struct_specifier] = STATE(3152), - [sym_enum_specifier] = STATE(3152), - [sym_scoped_type_identifier] = STATE(2123), - [sym_dependent_type] = STATE(3152), - [anon_sym_unsigned] = ACTIONS(4258), - [anon_sym_struct] = ACTIONS(4254), - [sym_auto] = ACTIONS(6659), - [anon_sym_signed] = ACTIONS(4258), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4258), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [sym_identifier] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4258), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4264), - [sym_primitive_type] = ACTIONS(6659), + [2106] = { + [sym_union_specifier] = STATE(3130), + [sym_macro_type_specifier] = STATE(3130), + [sym_class_specifier] = STATE(3130), + [aux_sym_sized_type_specifier_repeat1] = STATE(2111), + [sym_sized_type_specifier] = STATE(3130), + [sym__type_specifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(2114), + [sym_enum_specifier] = STATE(3130), + [sym_template_type] = STATE(2115), + [sym_scoped_namespace_identifier] = STATE(2116), + [sym_dependent_type] = STATE(3130), + [sym_struct_specifier] = STATE(3130), + [anon_sym_unsigned] = ACTIONS(4256), + [anon_sym_struct] = ACTIONS(4252), + [sym_auto] = ACTIONS(6648), + [anon_sym_signed] = ACTIONS(4256), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(4256), + [anon_sym_union] = ACTIONS(4264), + [anon_sym_typename] = ACTIONS(4266), + [anon_sym_COLON_COLON] = ACTIONS(4258), + [sym_identifier] = ACTIONS(4268), + [anon_sym_short] = ACTIONS(4256), + [anon_sym_enum] = ACTIONS(4260), + [anon_sym_class] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(6648), }, - [2118] = { - [sym_identifier] = ACTIONS(6661), + [2107] = { + [sym_identifier] = ACTIONS(6650), [sym_comment] = ACTIONS(3), }, - [2119] = { - [sym_template_argument_list] = STATE(3155), + [2108] = { + [sym_template_argument_list] = STATE(3133), [anon_sym_LPAREN2] = ACTIONS(185), [anon_sym_DASH] = ACTIONS(169), [anon_sym_DASH_DASH] = ACTIONS(185), @@ -92132,10 +91973,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(185), [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_GT2] = ACTIONS(185), - [anon_sym_COLON_COLON] = ACTIONS(6663), + [anon_sym_COLON_COLON] = ACTIONS(6652), [anon_sym_EQ_EQ] = ACTIONS(185), [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(6665), + [anon_sym_LT] = ACTIONS(6654), [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_AMP] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(169), @@ -92167,1264 +92008,1264 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(185), [anon_sym_GT_GT] = ACTIONS(169), }, - [2120] = { - [sym_enumerator_list] = STATE(3158), + [2109] = { + [sym_enumerator_list] = STATE(3136), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(6668), - [sym_identifier] = ACTIONS(6670), + [anon_sym_LBRACE] = ACTIONS(6657), + [sym_identifier] = ACTIONS(6659), }, - [2121] = { - [sym_virtual_specifier] = STATE(3160), - [sym_template_type] = STATE(3161), - [sym_scoped_namespace_identifier] = STATE(2124), - [sym_field_declaration_list] = STATE(3162), - [sym_scoped_type_identifier] = STATE(3163), - [sym_base_class_clause] = STATE(3164), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_final] = ACTIONS(298), - [sym_identifier] = ACTIONS(6672), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_override] = ACTIONS(298), + [2110] = { + [sym_scoped_type_identifier] = STATE(3138), + [sym_virtual_specifier] = STATE(3139), + [sym_template_type] = STATE(3140), + [sym_scoped_namespace_identifier] = STATE(2116), + [sym_field_declaration_list] = STATE(3141), + [sym_base_class_clause] = STATE(3142), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_final] = ACTIONS(300), + [sym_identifier] = ACTIONS(6661), + [anon_sym_COLON_COLON] = ACTIONS(4258), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_override] = ACTIONS(300), }, - [2122] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_LT_LT_EQ] = ACTIONS(545), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_GT2] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(6674), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_CARET_EQ] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_PIPE_EQ] = ACTIONS(545), - [anon_sym_GT_GT_EQ] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(547), + [2111] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3145), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(6663), + [anon_sym_long] = ACTIONS(6663), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_GT2] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(6663), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(6665), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(6667), + [anon_sym_unsigned] = ACTIONS(6663), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), }, - [2123] = { - [sym_template_argument_list] = STATE(3166), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_LT_LT_EQ] = ACTIONS(545), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_GT2] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(6676), - [anon_sym_CARET_EQ] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_PIPE_EQ] = ACTIONS(545), - [anon_sym_GT_GT_EQ] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_AMP_EQ] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(547), + [2112] = { + [sym_new_declarator] = STATE(3147), + [sym_argument_list] = STATE(3148), + [sym_initializer_list] = STATE(3148), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(4245), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_GT2] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(6669), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [2124] = { - [anon_sym_COLON_COLON] = ACTIONS(6674), - [sym_comment] = ACTIONS(3), + [2113] = { + [sym_union_specifier] = STATE(3149), + [sym_macro_type_specifier] = STATE(3149), + [sym_class_specifier] = STATE(3149), + [aux_sym_sized_type_specifier_repeat1] = STATE(2111), + [sym_sized_type_specifier] = STATE(3149), + [sym__type_specifier] = STATE(3149), + [sym_scoped_type_identifier] = STATE(2114), + [sym_enum_specifier] = STATE(3149), + [sym_template_type] = STATE(2115), + [sym_scoped_namespace_identifier] = STATE(2116), + [sym_dependent_type] = STATE(3149), + [sym_struct_specifier] = STATE(3149), + [anon_sym_unsigned] = ACTIONS(4256), + [anon_sym_struct] = ACTIONS(4252), + [sym_auto] = ACTIONS(6671), + [anon_sym_signed] = ACTIONS(4256), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(4256), + [anon_sym_union] = ACTIONS(4264), + [anon_sym_typename] = ACTIONS(4266), + [anon_sym_COLON_COLON] = ACTIONS(4258), + [sym_identifier] = ACTIONS(4268), + [anon_sym_short] = ACTIONS(4256), + [anon_sym_enum] = ACTIONS(4260), + [anon_sym_class] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(6671), }, - [2125] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3169), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(6679), - [anon_sym_long] = ACTIONS(6679), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_GT2] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(6679), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(6681), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(6683), - [anon_sym_unsigned] = ACTIONS(6679), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), + [2114] = { + [sym_template_argument_list] = STATE(3150), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_GT2] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(6673), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(532), }, - [2126] = { - [sym_initializer_list] = STATE(3172), - [sym_new_declarator] = STATE(3171), - [sym_argument_list] = STATE(3172), - [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(4247), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_GT2] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(6685), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [2115] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_GT2] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(6676), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_GT_GT] = ACTIONS(532), }, - [2127] = { - [sym_union_specifier] = STATE(3173), - [sym_macro_type_specifier] = STATE(3173), - [sym_class_specifier] = STATE(3173), - [sym_template_type] = STATE(2122), - [sym_sized_type_specifier] = STATE(3173), - [sym_scoped_namespace_identifier] = STATE(2124), - [sym__type_specifier] = STATE(3173), - [aux_sym_sized_type_specifier_repeat1] = STATE(2125), - [sym_struct_specifier] = STATE(3173), - [sym_enum_specifier] = STATE(3173), - [sym_scoped_type_identifier] = STATE(2123), - [sym_dependent_type] = STATE(3173), - [anon_sym_unsigned] = ACTIONS(4258), - [anon_sym_struct] = ACTIONS(4254), - [sym_auto] = ACTIONS(6687), - [anon_sym_signed] = ACTIONS(4258), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4258), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [sym_identifier] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4258), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4264), - [sym_primitive_type] = ACTIONS(6687), + [2116] = { + [anon_sym_COLON_COLON] = ACTIONS(6676), + [sym_comment] = ACTIONS(3), }, - [2128] = { - [anon_sym_SQUOTE] = ACTIONS(6689), + [2117] = { + [anon_sym_SQUOTE] = ACTIONS(6678), [sym_comment] = ACTIONS(3), }, - [2129] = { - [sym_template_type] = STATE(239), + [2118] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(6691), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(6680), }, - [2130] = { - [sym_argument_list] = STATE(1165), + [2119] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_GT2] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(6695), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(6701), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(6703), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_GT2] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(6684), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(6690), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(6692), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(6707), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(6696), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), + }, + [2120] = { + [sym_template_function] = STATE(3154), + [sym__expression] = STATE(3154), + [sym_logical_expression] = STATE(3154), + [sym_bitwise_expression] = STATE(3154), + [sym_cast_expression] = STATE(3154), + [sym_delete_expression] = STATE(3154), + [sym_field_expression] = STATE(3154), + [sym_compound_literal_expression] = STATE(3154), + [sym_lambda_expression] = STATE(3154), + [sym_char_literal] = STATE(3154), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3154), + [sym_equality_expression] = STATE(3154), + [sym_relational_expression] = STATE(3154), + [sym_sizeof_expression] = STATE(3154), + [sym_subscript_expression] = STATE(3154), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3154), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3154), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3154), + [sym_pointer_expression] = STATE(3154), + [sym_shift_expression] = STATE(3154), + [sym_math_expression] = STATE(3154), + [sym_call_expression] = STATE(3154), + [sym_new_expression] = STATE(3154), + [sym_raw_string_literal] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6700), + [sym_null] = ACTIONS(6700), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6698), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6700), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6700), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [2121] = { + [sym_template_function] = STATE(3155), + [sym__expression] = STATE(3155), + [sym_logical_expression] = STATE(3155), + [sym_bitwise_expression] = STATE(3155), + [sym_cast_expression] = STATE(3155), + [sym_delete_expression] = STATE(3155), + [sym_field_expression] = STATE(3155), + [sym_compound_literal_expression] = STATE(3155), + [sym_lambda_expression] = STATE(3155), + [sym_char_literal] = STATE(3155), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3155), + [sym_equality_expression] = STATE(3155), + [sym_relational_expression] = STATE(3155), + [sym_sizeof_expression] = STATE(3155), + [sym_subscript_expression] = STATE(3155), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3155), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3155), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3155), + [sym_pointer_expression] = STATE(3155), + [sym_shift_expression] = STATE(3155), + [sym_math_expression] = STATE(3155), + [sym_call_expression] = STATE(3155), + [sym_new_expression] = STATE(3155), + [sym_raw_string_literal] = ACTIONS(6702), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6704), + [sym_null] = ACTIONS(6704), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6702), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6704), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [2122] = { + [sym_template_function] = STATE(3156), + [sym__expression] = STATE(3156), + [sym_logical_expression] = STATE(3156), + [sym_bitwise_expression] = STATE(3156), + [sym_cast_expression] = STATE(3156), + [sym_delete_expression] = STATE(3156), + [sym_field_expression] = STATE(3156), + [sym_compound_literal_expression] = STATE(3156), + [sym_lambda_expression] = STATE(3156), + [sym_char_literal] = STATE(3156), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3156), + [sym_equality_expression] = STATE(3156), + [sym_relational_expression] = STATE(3156), + [sym_sizeof_expression] = STATE(3156), + [sym_subscript_expression] = STATE(3156), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3156), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3156), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3156), + [sym_pointer_expression] = STATE(3156), + [sym_shift_expression] = STATE(3156), + [sym_math_expression] = STATE(3156), + [sym_call_expression] = STATE(3156), + [sym_new_expression] = STATE(3156), + [sym_raw_string_literal] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6708), + [sym_null] = ACTIONS(6708), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6706), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6708), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [2123] = { + [sym_template_function] = STATE(3157), + [sym__expression] = STATE(3157), + [sym_logical_expression] = STATE(3157), + [sym_bitwise_expression] = STATE(3157), + [sym_cast_expression] = STATE(3157), + [sym_delete_expression] = STATE(3157), + [sym_field_expression] = STATE(3157), + [sym_compound_literal_expression] = STATE(3157), + [sym_lambda_expression] = STATE(3157), + [sym_char_literal] = STATE(3157), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3157), + [sym_equality_expression] = STATE(3157), + [sym_relational_expression] = STATE(3157), + [sym_sizeof_expression] = STATE(3157), + [sym_subscript_expression] = STATE(3157), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3157), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3157), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3157), + [sym_pointer_expression] = STATE(3157), + [sym_shift_expression] = STATE(3157), + [sym_math_expression] = STATE(3157), + [sym_call_expression] = STATE(3157), + [sym_new_expression] = STATE(3157), + [sym_raw_string_literal] = ACTIONS(6710), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6712), + [sym_null] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6710), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6712), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6712), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [2124] = { + [sym_template_function] = STATE(3158), + [sym__expression] = STATE(3158), + [sym_logical_expression] = STATE(3158), + [sym_bitwise_expression] = STATE(3158), + [sym_cast_expression] = STATE(3158), + [sym_delete_expression] = STATE(3158), + [sym_field_expression] = STATE(3158), + [sym_compound_literal_expression] = STATE(3158), + [sym_lambda_expression] = STATE(3158), + [sym_char_literal] = STATE(3158), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3158), + [sym_equality_expression] = STATE(3158), + [sym_relational_expression] = STATE(3158), + [sym_sizeof_expression] = STATE(3158), + [sym_subscript_expression] = STATE(3158), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3158), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3158), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3158), + [sym_pointer_expression] = STATE(3158), + [sym_shift_expression] = STATE(3158), + [sym_math_expression] = STATE(3158), + [sym_call_expression] = STATE(3158), + [sym_new_expression] = STATE(3158), + [sym_raw_string_literal] = ACTIONS(6714), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6716), + [sym_null] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6714), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [2125] = { + [sym_template_function] = STATE(3159), + [sym__expression] = STATE(3159), + [sym_logical_expression] = STATE(3159), + [sym_bitwise_expression] = STATE(3159), + [sym_cast_expression] = STATE(3159), + [sym_delete_expression] = STATE(3159), + [sym_field_expression] = STATE(3159), + [sym_compound_literal_expression] = STATE(3159), + [sym_lambda_expression] = STATE(3159), + [sym_char_literal] = STATE(3159), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3159), + [sym_equality_expression] = STATE(3159), + [sym_relational_expression] = STATE(3159), + [sym_sizeof_expression] = STATE(3159), + [sym_subscript_expression] = STATE(3159), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3159), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3159), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3159), + [sym_pointer_expression] = STATE(3159), + [sym_shift_expression] = STATE(3159), + [sym_math_expression] = STATE(3159), + [sym_call_expression] = STATE(3159), + [sym_new_expression] = STATE(3159), + [sym_raw_string_literal] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6720), + [sym_null] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6718), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6720), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6720), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [2126] = { + [sym_template_function] = STATE(3160), + [sym__expression] = STATE(3160), + [sym_logical_expression] = STATE(3160), + [sym_bitwise_expression] = STATE(3160), + [sym_cast_expression] = STATE(3160), + [sym_delete_expression] = STATE(3160), + [sym_field_expression] = STATE(3160), + [sym_compound_literal_expression] = STATE(3160), + [sym_lambda_expression] = STATE(3160), + [sym_char_literal] = STATE(3160), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3160), + [sym_equality_expression] = STATE(3160), + [sym_relational_expression] = STATE(3160), + [sym_sizeof_expression] = STATE(3160), + [sym_subscript_expression] = STATE(3160), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3160), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3160), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3160), + [sym_pointer_expression] = STATE(3160), + [sym_shift_expression] = STATE(3160), + [sym_math_expression] = STATE(3160), + [sym_call_expression] = STATE(3160), + [sym_new_expression] = STATE(3160), + [sym_raw_string_literal] = ACTIONS(6722), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6724), + [sym_null] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6722), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6724), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6724), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [2127] = { + [sym_template_function] = STATE(3161), + [sym__expression] = STATE(3161), + [sym_logical_expression] = STATE(3161), + [sym_bitwise_expression] = STATE(3161), + [sym_cast_expression] = STATE(3161), + [sym_delete_expression] = STATE(3161), + [sym_field_expression] = STATE(3161), + [sym_compound_literal_expression] = STATE(3161), + [sym_lambda_expression] = STATE(3161), + [sym_char_literal] = STATE(3161), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3161), + [sym_equality_expression] = STATE(3161), + [sym_relational_expression] = STATE(3161), + [sym_sizeof_expression] = STATE(3161), + [sym_subscript_expression] = STATE(3161), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3161), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3161), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3161), + [sym_pointer_expression] = STATE(3161), + [sym_shift_expression] = STATE(3161), + [sym_math_expression] = STATE(3161), + [sym_call_expression] = STATE(3161), + [sym_new_expression] = STATE(3161), + [sym_raw_string_literal] = ACTIONS(6726), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6728), + [sym_null] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6726), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6728), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6728), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [2128] = { + [sym_template_function] = STATE(3162), + [sym__expression] = STATE(3162), + [sym_logical_expression] = STATE(3162), + [sym_bitwise_expression] = STATE(3162), + [sym_cast_expression] = STATE(3162), + [sym_delete_expression] = STATE(3162), + [sym_field_expression] = STATE(3162), + [sym_compound_literal_expression] = STATE(3162), + [sym_lambda_expression] = STATE(3162), + [sym_char_literal] = STATE(3162), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3162), + [sym_equality_expression] = STATE(3162), + [sym_relational_expression] = STATE(3162), + [sym_sizeof_expression] = STATE(3162), + [sym_subscript_expression] = STATE(3162), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3162), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3162), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3162), + [sym_pointer_expression] = STATE(3162), + [sym_shift_expression] = STATE(3162), + [sym_math_expression] = STATE(3162), + [sym_call_expression] = STATE(3162), + [sym_new_expression] = STATE(3162), + [sym_raw_string_literal] = ACTIONS(6730), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6732), + [sym_null] = ACTIONS(6732), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6730), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6732), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6732), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), + }, + [2129] = { + [sym_template_function] = STATE(3163), + [sym__expression] = STATE(3163), + [sym_logical_expression] = STATE(3163), + [sym_bitwise_expression] = STATE(3163), + [sym_cast_expression] = STATE(3163), + [sym_delete_expression] = STATE(3163), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(3163), + [sym_lambda_expression] = STATE(3163), + [sym_char_literal] = STATE(3163), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3163), + [sym_equality_expression] = STATE(3163), + [sym_relational_expression] = STATE(3163), + [sym_sizeof_expression] = STATE(3163), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3163), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(3163), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3163), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(3163), + [sym_math_expression] = STATE(3163), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(3163), + [sym_raw_string_literal] = ACTIONS(6734), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6736), + [sym_null] = ACTIONS(6736), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6734), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6736), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6736), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), + }, + [2130] = { + [sym_template_function] = STATE(3164), + [sym__expression] = STATE(3164), + [sym_logical_expression] = STATE(3164), + [sym_bitwise_expression] = STATE(3164), + [sym_cast_expression] = STATE(3164), + [sym_delete_expression] = STATE(3164), + [sym_field_expression] = STATE(3164), + [sym_compound_literal_expression] = STATE(3164), + [sym_lambda_expression] = STATE(3164), + [sym_char_literal] = STATE(3164), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3164), + [sym_equality_expression] = STATE(3164), + [sym_relational_expression] = STATE(3164), + [sym_sizeof_expression] = STATE(3164), + [sym_subscript_expression] = STATE(3164), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3164), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3164), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3164), + [sym_pointer_expression] = STATE(3164), + [sym_shift_expression] = STATE(3164), + [sym_math_expression] = STATE(3164), + [sym_call_expression] = STATE(3164), + [sym_new_expression] = STATE(3164), + [sym_raw_string_literal] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(6740), + [sym_null] = ACTIONS(6740), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(6738), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(6740), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(6740), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), }, [2131] = { - [sym_destructor_name] = STATE(3176), - [sym_identifier] = ACTIONS(6709), - [sym_operator_name] = ACTIONS(6711), - [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_GT2] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PERCENT] = ACTIONS(654), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(656), }, [2132] = { - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_STAR_EQ] = ACTIONS(1709), - [anon_sym_LT_LT_EQ] = ACTIONS(1709), - [anon_sym_PERCENT_EQ] = ACTIONS(1709), - [anon_sym_GT2] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_CARET_EQ] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_SLASH_EQ] = ACTIONS(1709), - [anon_sym_PLUS_EQ] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_PIPE_EQ] = ACTIONS(1709), - [anon_sym_GT_GT_EQ] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_PERCENT] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_DASH_EQ] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_AMP_EQ] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_DASH_GT] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_STAR_EQ] = ACTIONS(793), + [anon_sym_LT_LT_EQ] = ACTIONS(793), + [anon_sym_PERCENT_EQ] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_CARET_EQ] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_SLASH_EQ] = ACTIONS(793), + [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_PIPE_EQ] = ACTIONS(793), + [anon_sym_GT_GT_EQ] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_DASH_EQ] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_AMP_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), }, [2133] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3178), - [sym_logical_expression] = STATE(3178), - [sym_bitwise_expression] = STATE(3178), - [sym_cast_expression] = STATE(3178), - [sym_new_expression] = STATE(3178), - [sym_field_expression] = STATE(3178), - [sym_compound_literal_expression] = STATE(3178), - [sym_char_literal] = STATE(3178), - [sym_template_function] = STATE(3178), - [sym_conditional_expression] = STATE(3178), - [sym_equality_expression] = STATE(3178), - [sym_relational_expression] = STATE(3178), - [sym_delete_expression] = STATE(3178), - [sym_sizeof_expression] = STATE(3178), - [sym_parenthesized_expression] = STATE(3178), - [sym_lambda_expression] = STATE(3178), - [sym_concatenated_string] = STATE(3178), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3178), - [sym_assignment_expression] = STATE(3178), - [sym_pointer_expression] = STATE(3178), - [sym_shift_expression] = STATE(3178), - [sym_math_expression] = STATE(3178), - [sym_call_expression] = STATE(3178), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6713), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6715), - [sym_null] = ACTIONS(6715), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6713), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6715), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6715), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_STAR_EQ] = ACTIONS(1679), + [anon_sym_LT_LT_EQ] = ACTIONS(1679), + [anon_sym_PERCENT_EQ] = ACTIONS(1679), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_CARET_EQ] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_SLASH_EQ] = ACTIONS(1679), + [anon_sym_PLUS_EQ] = ACTIONS(1679), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_PIPE_EQ] = ACTIONS(1679), + [anon_sym_GT_GT_EQ] = ACTIONS(1681), + [anon_sym_COMMA] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_PERCENT] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1679), + [anon_sym_DASH_EQ] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_AMP_EQ] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_DASH_GT] = ACTIONS(1679), + [anon_sym_EQ] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1679), }, [2134] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3179), - [sym_logical_expression] = STATE(3179), - [sym_bitwise_expression] = STATE(3179), - [sym_cast_expression] = STATE(3179), - [sym_new_expression] = STATE(3179), - [sym_field_expression] = STATE(3179), - [sym_compound_literal_expression] = STATE(3179), - [sym_char_literal] = STATE(3179), - [sym_template_function] = STATE(3179), - [sym_conditional_expression] = STATE(3179), - [sym_equality_expression] = STATE(3179), - [sym_relational_expression] = STATE(3179), - [sym_delete_expression] = STATE(3179), - [sym_sizeof_expression] = STATE(3179), - [sym_parenthesized_expression] = STATE(3179), - [sym_lambda_expression] = STATE(3179), - [sym_concatenated_string] = STATE(3179), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3179), - [sym_assignment_expression] = STATE(3179), - [sym_pointer_expression] = STATE(3179), - [sym_shift_expression] = STATE(3179), - [sym_math_expression] = STATE(3179), - [sym_call_expression] = STATE(3179), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6717), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6719), - [sym_null] = ACTIONS(6719), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6717), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6719), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6719), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [sym_compound_statement] = STATE(3166), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(6742), + [sym_comment] = ACTIONS(3), }, [2135] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3180), - [sym_logical_expression] = STATE(3180), - [sym_bitwise_expression] = STATE(3180), - [sym_cast_expression] = STATE(3180), - [sym_new_expression] = STATE(3180), - [sym_field_expression] = STATE(3180), - [sym_compound_literal_expression] = STATE(3180), - [sym_char_literal] = STATE(3180), - [sym_template_function] = STATE(3180), - [sym_conditional_expression] = STATE(3180), - [sym_equality_expression] = STATE(3180), - [sym_relational_expression] = STATE(3180), - [sym_delete_expression] = STATE(3180), - [sym_sizeof_expression] = STATE(3180), - [sym_parenthesized_expression] = STATE(3180), - [sym_lambda_expression] = STATE(3180), - [sym_concatenated_string] = STATE(3180), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3180), - [sym_assignment_expression] = STATE(3180), - [sym_pointer_expression] = STATE(3180), - [sym_shift_expression] = STATE(3180), - [sym_math_expression] = STATE(3180), - [sym_call_expression] = STATE(3180), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6721), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6723), - [sym_null] = ACTIONS(6723), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6721), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6723), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6723), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [sym_string_literal] = STATE(3167), + [aux_sym_concatenated_string_repeat1] = STATE(3167), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_GT2] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, [2136] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3181), - [sym_logical_expression] = STATE(3181), - [sym_bitwise_expression] = STATE(3181), - [sym_cast_expression] = STATE(3181), - [sym_new_expression] = STATE(3181), - [sym_field_expression] = STATE(3181), - [sym_compound_literal_expression] = STATE(3181), - [sym_char_literal] = STATE(3181), - [sym_template_function] = STATE(3181), - [sym_conditional_expression] = STATE(3181), - [sym_equality_expression] = STATE(3181), - [sym_relational_expression] = STATE(3181), - [sym_delete_expression] = STATE(3181), - [sym_sizeof_expression] = STATE(3181), - [sym_parenthesized_expression] = STATE(3181), - [sym_lambda_expression] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3181), - [sym_assignment_expression] = STATE(3181), - [sym_pointer_expression] = STATE(3181), - [sym_shift_expression] = STATE(3181), - [sym_math_expression] = STATE(3181), - [sym_call_expression] = STATE(3181), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6725), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6727), - [sym_null] = ACTIONS(6727), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6725), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6727), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6727), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [sym_destructor_name] = STATE(3168), + [sym_identifier] = ACTIONS(6744), + [sym_operator_name] = ACTIONS(6746), + [anon_sym_TILDE] = ACTIONS(4227), + [sym_comment] = ACTIONS(3), }, [2137] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3182), - [sym_logical_expression] = STATE(3182), - [sym_bitwise_expression] = STATE(3182), - [sym_cast_expression] = STATE(3182), - [sym_new_expression] = STATE(3182), - [sym_field_expression] = STATE(3182), - [sym_compound_literal_expression] = STATE(3182), - [sym_char_literal] = STATE(3182), - [sym_template_function] = STATE(3182), - [sym_conditional_expression] = STATE(3182), - [sym_equality_expression] = STATE(3182), - [sym_relational_expression] = STATE(3182), - [sym_delete_expression] = STATE(3182), - [sym_sizeof_expression] = STATE(3182), - [sym_parenthesized_expression] = STATE(3182), - [sym_lambda_expression] = STATE(3182), - [sym_concatenated_string] = STATE(3182), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3182), - [sym_assignment_expression] = STATE(3182), - [sym_pointer_expression] = STATE(3182), - [sym_shift_expression] = STATE(3182), - [sym_math_expression] = STATE(3182), - [sym_call_expression] = STATE(3182), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6729), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6731), - [sym_null] = ACTIONS(6731), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6729), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6731), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6731), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [anon_sym_RPAREN] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), }, [2138] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3183), - [sym_logical_expression] = STATE(3183), - [sym_bitwise_expression] = STATE(3183), - [sym_cast_expression] = STATE(3183), - [sym_new_expression] = STATE(3183), - [sym_field_expression] = STATE(3183), - [sym_compound_literal_expression] = STATE(3183), - [sym_char_literal] = STATE(3183), - [sym_template_function] = STATE(3183), - [sym_conditional_expression] = STATE(3183), - [sym_equality_expression] = STATE(3183), - [sym_relational_expression] = STATE(3183), - [sym_delete_expression] = STATE(3183), - [sym_sizeof_expression] = STATE(3183), - [sym_parenthesized_expression] = STATE(3183), - [sym_lambda_expression] = STATE(3183), - [sym_concatenated_string] = STATE(3183), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3183), - [sym_assignment_expression] = STATE(3183), - [sym_pointer_expression] = STATE(3183), - [sym_shift_expression] = STATE(3183), - [sym_math_expression] = STATE(3183), - [sym_call_expression] = STATE(3183), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6733), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6735), - [sym_null] = ACTIONS(6735), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6733), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6735), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6735), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [sym_field_declaration_list] = STATE(3171), + [sym_base_class_clause] = STATE(3172), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), }, [2139] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3184), - [sym_logical_expression] = STATE(3184), - [sym_bitwise_expression] = STATE(3184), - [sym_cast_expression] = STATE(3184), - [sym_new_expression] = STATE(3184), - [sym_field_expression] = STATE(3184), - [sym_compound_literal_expression] = STATE(3184), - [sym_char_literal] = STATE(3184), - [sym_template_function] = STATE(3184), - [sym_conditional_expression] = STATE(3184), - [sym_equality_expression] = STATE(3184), - [sym_relational_expression] = STATE(3184), - [sym_delete_expression] = STATE(3184), - [sym_sizeof_expression] = STATE(3184), - [sym_parenthesized_expression] = STATE(3184), - [sym_lambda_expression] = STATE(3184), - [sym_concatenated_string] = STATE(3184), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3184), - [sym_assignment_expression] = STATE(3184), - [sym_pointer_expression] = STATE(3184), - [sym_shift_expression] = STATE(3184), - [sym_math_expression] = STATE(3184), - [sym_call_expression] = STATE(3184), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6737), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6739), - [sym_null] = ACTIONS(6739), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6737), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6739), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_GT2] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_GT_EQ] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_explicit] = ACTIONS(3111), + [sym_identifier] = ACTIONS(3111), + [sym_operator_name] = ACTIONS(3109), + [sym_noexcept] = ACTIONS(3111), + [anon_sym_CARET] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3111), + [anon_sym__Atomic] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT_LT] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_restrict] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(3111), + [anon_sym_DASH_GT] = ACTIONS(3109), }, [2140] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3185), - [sym_logical_expression] = STATE(3185), - [sym_bitwise_expression] = STATE(3185), - [sym_cast_expression] = STATE(3185), - [sym_new_expression] = STATE(3185), - [sym_field_expression] = STATE(3185), - [sym_compound_literal_expression] = STATE(3185), - [sym_char_literal] = STATE(3185), - [sym_template_function] = STATE(3185), - [sym_conditional_expression] = STATE(3185), - [sym_equality_expression] = STATE(3185), - [sym_relational_expression] = STATE(3185), - [sym_delete_expression] = STATE(3185), - [sym_sizeof_expression] = STATE(3185), - [sym_parenthesized_expression] = STATE(3185), - [sym_lambda_expression] = STATE(3185), - [sym_concatenated_string] = STATE(3185), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3185), - [sym_assignment_expression] = STATE(3185), - [sym_pointer_expression] = STATE(3185), - [sym_shift_expression] = STATE(3185), - [sym_math_expression] = STATE(3185), - [sym_call_expression] = STATE(3185), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6743), - [sym_null] = ACTIONS(6743), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6741), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6743), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6743), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [sym_field_declaration_list] = STATE(3171), + [anon_sym_LBRACE] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), }, [2141] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3186), - [sym_logical_expression] = STATE(3186), - [sym_bitwise_expression] = STATE(3186), - [sym_cast_expression] = STATE(3186), - [sym_new_expression] = STATE(3186), - [sym_field_expression] = STATE(3186), - [sym_compound_literal_expression] = STATE(3186), - [sym_char_literal] = STATE(3186), - [sym_template_function] = STATE(3186), - [sym_conditional_expression] = STATE(3186), - [sym_equality_expression] = STATE(3186), - [sym_relational_expression] = STATE(3186), - [sym_delete_expression] = STATE(3186), - [sym_sizeof_expression] = STATE(3186), - [sym_parenthesized_expression] = STATE(3186), - [sym_lambda_expression] = STATE(3186), - [sym_concatenated_string] = STATE(3186), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3186), - [sym_assignment_expression] = STATE(3186), - [sym_pointer_expression] = STATE(3186), - [sym_shift_expression] = STATE(3186), - [sym_math_expression] = STATE(3186), - [sym_call_expression] = STATE(3186), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6745), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6747), - [sym_null] = ACTIONS(6747), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6745), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6747), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6747), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [sym_field_declaration_list] = STATE(3173), + [sym_base_class_clause] = STATE(3174), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), }, [2142] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3187), - [sym_logical_expression] = STATE(3187), - [sym_bitwise_expression] = STATE(3187), - [sym_cast_expression] = STATE(3187), - [sym_new_expression] = STATE(3187), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(3187), - [sym_char_literal] = STATE(3187), - [sym_template_function] = STATE(3187), - [sym_conditional_expression] = STATE(3187), - [sym_equality_expression] = STATE(3187), - [sym_relational_expression] = STATE(3187), - [sym_delete_expression] = STATE(3187), - [sym_sizeof_expression] = STATE(3187), - [sym_parenthesized_expression] = STATE(3187), - [sym_lambda_expression] = STATE(3187), - [sym_concatenated_string] = STATE(3187), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(3187), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(3187), - [sym_math_expression] = STATE(3187), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6749), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6751), - [sym_null] = ACTIONS(6751), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6749), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6751), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6751), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_GT2] = ACTIONS(3113), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_volatile] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_explicit] = ACTIONS(3115), + [sym_identifier] = ACTIONS(3115), + [sym_operator_name] = ACTIONS(3113), + [sym_noexcept] = ACTIONS(3115), + [anon_sym_CARET] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3115), + [anon_sym__Atomic] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT_LT] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3115), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_restrict] = ACTIONS(3115), + [anon_sym_GT_GT] = ACTIONS(3115), + [anon_sym_DASH_GT] = ACTIONS(3113), }, [2143] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3188), - [sym_logical_expression] = STATE(3188), - [sym_bitwise_expression] = STATE(3188), - [sym_cast_expression] = STATE(3188), - [sym_new_expression] = STATE(3188), - [sym_field_expression] = STATE(3188), - [sym_compound_literal_expression] = STATE(3188), - [sym_char_literal] = STATE(3188), - [sym_template_function] = STATE(3188), - [sym_conditional_expression] = STATE(3188), - [sym_equality_expression] = STATE(3188), - [sym_relational_expression] = STATE(3188), - [sym_delete_expression] = STATE(3188), - [sym_sizeof_expression] = STATE(3188), - [sym_parenthesized_expression] = STATE(3188), - [sym_lambda_expression] = STATE(3188), - [sym_concatenated_string] = STATE(3188), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3188), - [sym_assignment_expression] = STATE(3188), - [sym_pointer_expression] = STATE(3188), - [sym_shift_expression] = STATE(3188), - [sym_math_expression] = STATE(3188), - [sym_call_expression] = STATE(3188), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(6753), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(6755), - [sym_null] = ACTIONS(6755), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(6753), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(6755), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(6755), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), - }, - [2144] = { - [anon_sym_LPAREN2] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(654), - [anon_sym_LT_LT_EQ] = ACTIONS(654), - [anon_sym_PERCENT_EQ] = ACTIONS(654), - [anon_sym_GT2] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(654), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(654), - }, - [2145] = { - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR_EQ] = ACTIONS(785), - [anon_sym_LT_LT_EQ] = ACTIONS(785), - [anon_sym_PERCENT_EQ] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_CARET_EQ] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_SLASH_EQ] = ACTIONS(785), - [anon_sym_PLUS_EQ] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_PIPE_EQ] = ACTIONS(785), - [anon_sym_GT_GT_EQ] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_DASH_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_AMP_EQ] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - }, - [2146] = { - [sym_string_literal] = STATE(3189), - [aux_sym_concatenated_string_repeat1] = STATE(3189), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_GT2] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), - }, - [2147] = { - [sym_compound_statement] = STATE(3191), - [anon_sym_LPAREN2] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(6757), - [sym_comment] = ACTIONS(3), - }, - [2148] = { - [anon_sym_RPAREN] = ACTIONS(6759), - [sym_comment] = ACTIONS(3), - }, - [2149] = { - [sym_field_declaration_list] = STATE(3193), - [sym_base_class_clause] = STATE(3194), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - }, - [2150] = { - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_GT2] = ACTIONS(3107), - [anon_sym_EQ_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_explicit] = ACTIONS(3109), - [sym_identifier] = ACTIONS(3109), - [sym_operator_name] = ACTIONS(3107), - [sym_noexcept] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_register] = ACTIONS(3109), - [anon_sym__Atomic] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_PIPE_PIPE] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_constexpr] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3107), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_restrict] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_DASH_GT] = ACTIONS(3107), - }, - [2151] = { - [sym_field_declaration_list] = STATE(3193), - [anon_sym_LBRACE] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - }, - [2152] = { - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_mutable] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_GT2] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_static] = ACTIONS(3113), - [anon_sym_volatile] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_override] = ACTIONS(3113), - [anon_sym_explicit] = ACTIONS(3113), - [sym_identifier] = ACTIONS(3113), - [sym_operator_name] = ACTIONS(3111), - [sym_noexcept] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_register] = ACTIONS(3113), - [anon_sym__Atomic] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_extern] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3111), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_constexpr] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3111), - [anon_sym_QMARK] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_inline] = ACTIONS(3113), - [anon_sym_EQ] = ACTIONS(3113), - [anon_sym_restrict] = ACTIONS(3113), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_DASH_GT] = ACTIONS(3111), - }, - [2153] = { - [sym_field_declaration_list] = STATE(3195), - [anon_sym_LBRACE] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - }, - [2154] = { - [sym_field_declaration_list] = STATE(3195), - [sym_base_class_clause] = STATE(3196), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2180), + [sym_field_declaration_list] = STATE(3173), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [2155] = { - [sym_argument_list] = STATE(1165), + [2144] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2162), [anon_sym_PIPE_PIPE] = ACTIONS(2305), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), @@ -93433,9 +93274,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(2160), + [anon_sym_GT2] = ACTIONS(2162), [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2160), + [anon_sym_QMARK] = ACTIONS(2162), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -93449,130 +93290,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2156] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_GT2] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), + [2145] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2164), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), }, - [2157] = { - [anon_sym_LPAREN2] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_mutable] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_GT2] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_volatile] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_explicit] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym__Atomic] = ACTIONS(2169), - [anon_sym_constexpr] = ACTIONS(2169), + [2146] = { + [anon_sym_LPAREN2] = ACTIONS(2168), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_mutable] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_volatile] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_explicit] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2168), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym__Atomic] = ACTIONS(2171), + [anon_sym_constexpr] = ACTIONS(2171), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_restrict] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2164), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2168), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_restrict] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2166), }, - [2158] = { - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_inline] = ACTIONS(2204), - [anon_sym_mutable] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_final] = ACTIONS(2204), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_volatile] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_COLON] = ACTIONS(2204), - [anon_sym_explicit] = ACTIONS(2204), - [sym_identifier] = ACTIONS(2204), - [sym_operator_name] = ACTIONS(2202), - [sym_noexcept] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym__Atomic] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(2202), - [anon_sym_register] = ACTIONS(2204), - [anon_sym_constexpr] = ACTIONS(2204), - [sym_comment] = ACTIONS(3), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_QMARK] = ACTIONS(2202), - [anon_sym_TILDE] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_DASH_GT] = ACTIONS(2202), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_restrict] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2204), + [2147] = { + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_inline] = ACTIONS(2206), + [anon_sym_mutable] = ACTIONS(2206), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_final] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_GT2] = ACTIONS(2204), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_volatile] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2206), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_explicit] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2206), + [sym_operator_name] = ACTIONS(2204), + [sym_noexcept] = ACTIONS(2206), + [anon_sym_CARET] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym__Atomic] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_LT_LT] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2204), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_register] = ACTIONS(2206), + [anon_sym_constexpr] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_QMARK] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_DASH_GT] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_restrict] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_GT_GT] = ACTIONS(2206), }, - [2159] = { - [sym_argument_list] = STATE(1165), - [aux_sym_template_argument_list_repeat1] = STATE(3198), + [2148] = { + [aux_sym_template_argument_list_repeat1] = STATE(3176), + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), @@ -93586,7 +93427,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_GT2] = ACTIONS(6761), + [anon_sym_GT2] = ACTIONS(6750), [anon_sym_AMP] = ACTIONS(2321), [anon_sym_QMARK] = ACTIONS(2323), [sym_comment] = ACTIONS(3), @@ -93602,882 +93443,812 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2160] = { - [aux_sym_template_argument_list_repeat1] = STATE(3200), + [2149] = { + [aux_sym_template_argument_list_repeat1] = STATE(3178), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(6763), + [anon_sym_GT2] = ACTIONS(6752), [sym_comment] = ACTIONS(3), }, - [2161] = { + [2150] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6765), + [anon_sym_RBRACE] = ACTIONS(6754), }, - [2162] = { - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2397), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_PIPE_PIPE] = ACTIONS(2397), - [anon_sym_DOT] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_EQ_EQ] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_PERCENT] = ACTIONS(2397), - [anon_sym_GT2] = ACTIONS(2397), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_QMARK] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_SLASH] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2397), - [anon_sym_BANG_EQ] = ACTIONS(2397), - [anon_sym_AMP_AMP] = ACTIONS(2397), - [anon_sym_DASH_GT] = ACTIONS(2397), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_GT_GT] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2397), + [2151] = { + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_CARET] = ACTIONS(2399), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_DOT] = ACTIONS(2399), + [anon_sym_LT_LT] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2399), + [anon_sym_GT2] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_DASH_GT] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2399), }, - [2163] = { - [sym_argument_list] = STATE(341), - [aux_sym_initializer_list_repeat1] = STATE(3203), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(6767), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(6765), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2152] = { + [aux_sym_initializer_list_repeat1] = STATE(3181), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(6756), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2164] = { - [aux_sym_initializer_list_repeat1] = STATE(3203), + [2153] = { + [aux_sym_initializer_list_repeat1] = STATE(3181), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(6767), - [anon_sym_RBRACE] = ACTIONS(6765), + [anon_sym_COMMA] = ACTIONS(6756), + [anon_sym_RBRACE] = ACTIONS(6754), }, - [2165] = { - [sym_enumerator_list] = STATE(2177), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(872), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(872), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_DOT] = ACTIONS(872), - [anon_sym_LT_LT] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PERCENT] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(872), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(872), + [2154] = { + [sym_enumerator_list] = STATE(2166), + [anon_sym_LPAREN2] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_CARET] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_COMMA] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PERCENT] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_DASH_GT] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), }, - [2166] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2166), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(6769), - [anon_sym_long] = ACTIONS(6769), - [anon_sym_GT2] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(6769), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(6769), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [2155] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2155), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(6758), + [anon_sym_long] = ACTIONS(6758), + [anon_sym_GT2] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(6758), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(6758), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), }, - [2167] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3205), - [sym_logical_expression] = STATE(3205), - [sym_bitwise_expression] = STATE(3205), - [sym_cast_expression] = STATE(3205), - [sym_new_expression] = STATE(3205), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(3205), - [sym_char_literal] = STATE(3205), - [sym_template_function] = STATE(3205), - [sym_conditional_expression] = STATE(3205), - [sym_equality_expression] = STATE(3205), - [sym_relational_expression] = STATE(3205), - [sym_delete_expression] = STATE(3205), - [sym_sizeof_expression] = STATE(3205), - [sym_parenthesized_expression] = STATE(3205), - [sym_initializer_list] = STATE(3206), - [sym_concatenated_string] = STATE(3205), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(3205), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(3205), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(3205), - [sym_math_expression] = STATE(3205), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6772), + [2156] = { + [sym_template_function] = STATE(3183), + [sym__expression] = STATE(3183), + [sym_logical_expression] = STATE(3183), + [sym_bitwise_expression] = STATE(3183), + [sym_cast_expression] = STATE(3183), + [sym_delete_expression] = STATE(3183), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3183), + [sym_lambda_expression] = STATE(3183), + [sym_char_literal] = STATE(3183), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3183), + [sym_equality_expression] = STATE(3183), + [sym_relational_expression] = STATE(3183), + [sym_sizeof_expression] = STATE(3183), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(3184), + [sym_parenthesized_expression] = STATE(3183), + [sym_string_literal] = STATE(154), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3183), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3183), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3183), + [sym_math_expression] = STATE(3183), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3183), + [sym_raw_string_literal] = ACTIONS(6761), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(6774), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(6763), [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(6774), - [anon_sym_DASH_DASH] = ACTIONS(294), + [sym_null] = ACTIONS(6763), + [anon_sym_DASH_DASH] = ACTIONS(296), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6772), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(6761), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(6774), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(6774), + [sym_false] = ACTIONS(6763), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(6763), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(6776), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(6765), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_delete] = ACTIONS(288), [anon_sym_SQUOTE] = ACTIONS(41), }, - [2168] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3207), - [sym_logical_expression] = STATE(3207), - [sym_bitwise_expression] = STATE(3207), - [sym_cast_expression] = STATE(3207), - [sym_new_expression] = STATE(3207), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3207), - [sym_char_literal] = STATE(3207), - [sym_template_function] = STATE(3207), - [sym_conditional_expression] = STATE(3207), - [sym_equality_expression] = STATE(3207), - [sym_relational_expression] = STATE(3207), - [sym_delete_expression] = STATE(3207), - [sym_sizeof_expression] = STATE(3207), - [sym_parenthesized_expression] = STATE(3207), - [sym_lambda_expression] = STATE(3207), - [sym_concatenated_string] = STATE(3207), - [sym_string_literal] = STATE(967), + [2157] = { + [sym_template_function] = STATE(3185), + [sym__expression] = STATE(3185), + [sym_logical_expression] = STATE(3185), + [sym_bitwise_expression] = STATE(3185), + [sym_cast_expression] = STATE(3185), + [sym_delete_expression] = STATE(3185), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3185), + [sym_lambda_expression] = STATE(3185), + [sym_char_literal] = STATE(3185), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3207), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3207), - [sym_math_expression] = STATE(3207), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3185), + [sym_equality_expression] = STATE(3185), + [sym_relational_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(3185), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6778), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6780), - [sym_null] = ACTIONS(6780), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6778), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6780), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6780), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(3185), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3185), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3185), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3185), + [sym_math_expression] = STATE(3185), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3185), + [sym_raw_string_literal] = ACTIONS(6767), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6769), + [sym_null] = ACTIONS(6769), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6767), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6769), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6769), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [2169] = { - [sym_argument_list] = STATE(3208), - [sym_initializer_list] = STATE(3208), - [anon_sym_LPAREN2] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_GT2] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(3136), + [2158] = { + [sym_argument_list] = STATE(3186), + [sym_initializer_list] = STATE(3186), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_GT2] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_GT_GT] = ACTIONS(3138), }, - [2170] = { - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3138), - [anon_sym_GT2] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_QMARK] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [2159] = { + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_GT2] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [2171] = { - [sym_initializer_list] = STATE(3208), - [sym_new_declarator] = STATE(3209), - [sym_argument_list] = STATE(3208), - [anon_sym_LPAREN2] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_GT2] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(3136), + [2160] = { + [sym_new_declarator] = STATE(3187), + [sym_argument_list] = STATE(3186), + [sym_initializer_list] = STATE(3186), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_GT2] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_GT_GT] = ACTIONS(3138), }, - [2172] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(3210), - [sym_logical_expression] = STATE(3210), - [sym_bitwise_expression] = STATE(3210), - [sym_cast_expression] = STATE(3210), - [sym_new_expression] = STATE(3210), + [2161] = { + [sym_template_function] = STATE(3188), + [sym__expression] = STATE(3188), + [sym_logical_expression] = STATE(3188), + [sym_bitwise_expression] = STATE(3188), + [sym_cast_expression] = STATE(3188), + [sym_delete_expression] = STATE(3188), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(3210), - [sym_char_literal] = STATE(3210), - [sym_template_function] = STATE(3210), - [sym_conditional_expression] = STATE(3210), - [sym_equality_expression] = STATE(3210), - [sym_relational_expression] = STATE(3210), - [sym_delete_expression] = STATE(3210), - [sym_sizeof_expression] = STATE(3210), - [sym_parenthesized_expression] = STATE(3210), - [sym_lambda_expression] = STATE(3210), - [sym_concatenated_string] = STATE(3210), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(3188), + [sym_lambda_expression] = STATE(3188), + [sym_char_literal] = STATE(3188), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(3188), + [sym_equality_expression] = STATE(3188), + [sym_relational_expression] = STATE(3188), + [sym_sizeof_expression] = STATE(3188), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(3210), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(3188), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(3188), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(3188), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(3210), - [sym_math_expression] = STATE(3210), + [sym_shift_expression] = STATE(3188), + [sym_math_expression] = STATE(3188), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(6782), - [anon_sym_DASH] = ACTIONS(706), - [sym_true] = ACTIONS(6784), - [anon_sym_DASH_DASH] = ACTIONS(740), - [sym_null] = ACTIONS(6784), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(6782), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(6784), - [sym_nullptr] = ACTIONS(6784), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - }, - [2173] = { - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_GT2] = ACTIONS(3184), - [anon_sym_EQ_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_GT_EQ] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_CARET] = ACTIONS(3184), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PIPE_PIPE] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_LT_LT] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3184), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_DASH_GT] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3184), + [sym_new_expression] = STATE(3188), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(6771), + [anon_sym_DASH] = ACTIONS(710), + [sym_true] = ACTIONS(6773), + [anon_sym_DASH_DASH] = ACTIONS(744), + [sym_null] = ACTIONS(6773), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(6771), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(6773), + [sym_nullptr] = ACTIONS(6773), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), }, - [2174] = { + [2162] = { + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_GT2] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6786), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3186), }, - [2175] = { - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_mutable] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_GT2] = ACTIONS(2579), - [anon_sym_EQ_EQ] = ACTIONS(2579), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_volatile] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_SLASH] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_explicit] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2581), - [sym_operator_name] = ACTIONS(2579), - [sym_noexcept] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2579), - [anon_sym_GT] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2579), - [anon_sym_register] = ACTIONS(2581), - [anon_sym__Atomic] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT_LT] = ACTIONS(2579), - [anon_sym_constexpr] = ACTIONS(2581), + [2163] = { [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_inline] = ACTIONS(2581), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_restrict] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2581), - [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(6775), }, - [2176] = { - [aux_sym_enumerator_list_repeat1] = STATE(3213), + [2164] = { + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_final] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_GT2] = ACTIONS(2581), + [anon_sym_EQ_EQ] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_override] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2583), + [sym_operator_name] = ACTIONS(2581), + [sym_noexcept] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(2581), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2581), + [anon_sym_register] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_PIPE_PIPE] = ACTIONS(2581), + [anon_sym_DOT] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2581), + [anon_sym_constexpr] = ACTIONS(2583), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(6788), - [anon_sym_RBRACE] = ACTIONS(6786), + [anon_sym_PERCENT] = ACTIONS(2581), + [anon_sym_QMARK] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_BANG_EQ] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym_GT_GT] = ACTIONS(2583), + [anon_sym_DASH_GT] = ACTIONS(2581), }, - [2177] = { - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_final] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_GT2] = ACTIONS(2585), - [anon_sym_EQ_EQ] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_GT_EQ] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2587), - [anon_sym_override] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2587), - [sym_operator_name] = ACTIONS(2585), - [sym_noexcept] = ACTIONS(2587), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2587), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_register] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_constexpr] = ACTIONS(2587), + [2165] = { + [aux_sym_enumerator_list_repeat1] = STATE(3191), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_LT_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_EQ] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym_GT_GT] = ACTIONS(2587), - [anon_sym_DASH_GT] = ACTIONS(2585), + [anon_sym_COMMA] = ACTIONS(6777), + [anon_sym_RBRACE] = ACTIONS(6775), }, - [2178] = { - [sym_field_declaration_list] = STATE(3214), - [sym_base_class_clause] = STATE(3215), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2180), + [2166] = { + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_final] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [anon_sym_GT2] = ACTIONS(2587), + [anon_sym_EQ_EQ] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_override] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2589), + [sym_operator_name] = ACTIONS(2587), + [sym_noexcept] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2587), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_COMMA] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_DOT] = ACTIONS(2587), + [anon_sym_LT_LT] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2589), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(2587), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_LT_EQ] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym_GT_GT] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2587), }, - [2179] = { - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_final] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3414), - [anon_sym_GT2] = ACTIONS(3414), - [anon_sym_EQ_EQ] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_volatile] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_GT_EQ] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_override] = ACTIONS(3416), - [anon_sym_explicit] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3416), - [sym_operator_name] = ACTIONS(3414), - [sym_noexcept] = ACTIONS(3416), - [anon_sym_CARET] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3416), - [anon_sym_COMMA] = ACTIONS(3414), - [anon_sym_register] = ACTIONS(3416), - [anon_sym__Atomic] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_extern] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_DOT] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_constexpr] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3414), - [anon_sym_QMARK] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_BANG_EQ] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_inline] = ACTIONS(3416), - [anon_sym_EQ] = ACTIONS(3416), - [anon_sym_restrict] = ACTIONS(3416), - [anon_sym_GT_GT] = ACTIONS(3416), - [anon_sym_DASH_GT] = ACTIONS(3414), - }, - [2180] = { - [sym_field_declaration_list] = STATE(3214), - [anon_sym_LBRACE] = ACTIONS(2180), + [2167] = { + [sym_field_declaration_list] = STATE(3192), + [sym_base_class_clause] = STATE(3193), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [2181] = { - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_mutable] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_final] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3418), - [anon_sym_GT2] = ACTIONS(3418), - [anon_sym_EQ_EQ] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3420), - [anon_sym_volatile] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_GT_EQ] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_override] = ACTIONS(3420), - [anon_sym_explicit] = ACTIONS(3420), - [sym_identifier] = ACTIONS(3420), - [sym_operator_name] = ACTIONS(3418), - [sym_noexcept] = ACTIONS(3420), - [anon_sym_CARET] = ACTIONS(3418), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_COMMA] = ACTIONS(3418), - [anon_sym_register] = ACTIONS(3420), - [anon_sym__Atomic] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_extern] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_DOT] = ACTIONS(3418), - [anon_sym_LT_LT] = ACTIONS(3418), - [anon_sym_constexpr] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3418), - [anon_sym_QMARK] = ACTIONS(3418), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_LT_EQ] = ACTIONS(3418), - [anon_sym_BANG_EQ] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_restrict] = ACTIONS(3420), - [anon_sym_GT_GT] = ACTIONS(3420), - [anon_sym_DASH_GT] = ACTIONS(3418), + [2168] = { + [anon_sym_LPAREN2] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_mutable] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_final] = ACTIONS(3426), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_GT2] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_static] = ACTIONS(3426), + [anon_sym_volatile] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3426), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_override] = ACTIONS(3426), + [anon_sym_explicit] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3426), + [sym_operator_name] = ACTIONS(3424), + [sym_noexcept] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_register] = ACTIONS(3426), + [anon_sym__Atomic] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_extern] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_constexpr] = ACTIONS(3426), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_inline] = ACTIONS(3426), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym_restrict] = ACTIONS(3426), + [anon_sym_GT_GT] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3424), }, - [2182] = { - [sym_field_declaration_list] = STATE(3216), - [anon_sym_LBRACE] = ACTIONS(2180), + [2169] = { + [sym_field_declaration_list] = STATE(3192), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [2183] = { - [sym_field_declaration_list] = STATE(3216), - [sym_base_class_clause] = STATE(3217), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2180), + [2170] = { + [sym_field_declaration_list] = STATE(3194), + [sym_base_class_clause] = STATE(3195), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [2184] = { - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2689), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_PIPE_PIPE] = ACTIONS(2689), - [anon_sym_DOT] = ACTIONS(2689), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_EQ_EQ] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_GT2] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_QMARK] = ACTIONS(2689), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_DASH_GT] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2689), - }, - [2185] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_GT2] = ACTIONS(3739), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3741), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(3739), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3739), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_EQ] = ACTIONS(3741), - [anon_sym_GT_GT] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), + [2171] = { + [anon_sym_LPAREN2] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_final] = ACTIONS(3430), + [anon_sym_COLON_COLON] = ACTIONS(3428), + [anon_sym_GT2] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_static] = ACTIONS(3430), + [anon_sym_volatile] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_override] = ACTIONS(3430), + [anon_sym_explicit] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3430), + [sym_operator_name] = ACTIONS(3428), + [sym_noexcept] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3430), + [anon_sym__Atomic] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_extern] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_LT_LT] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3430), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3428), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3430), + [anon_sym_EQ] = ACTIONS(3430), + [anon_sym_restrict] = ACTIONS(3430), + [anon_sym_GT_GT] = ACTIONS(3430), + [anon_sym_DASH_GT] = ACTIONS(3428), }, - [2186] = { - [anon_sym_LPAREN2] = ACTIONS(3743), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), - [anon_sym_mutable] = ACTIONS(3746), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_GT2] = ACTIONS(3743), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3752), - [anon_sym_volatile] = ACTIONS(3746), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_explicit] = ACTIONS(3746), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_PERCENT] = ACTIONS(3739), - [anon_sym__Atomic] = ACTIONS(3746), - [anon_sym_constexpr] = ACTIONS(3746), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_restrict] = ACTIONS(3746), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3741), + [2172] = { + [sym_field_declaration_list] = STATE(3194), + [anon_sym_LBRACE] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), }, - [2187] = { - [anon_sym_LPAREN2] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR_EQ] = ACTIONS(3115), - [anon_sym_LT_LT_EQ] = ACTIONS(3115), - [anon_sym_PERCENT_EQ] = ACTIONS(3115), - [anon_sym_GT2] = ACTIONS(3115), - [anon_sym_EQ_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_CARET_EQ] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_SLASH_EQ] = ACTIONS(3115), - [anon_sym_PLUS_EQ] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_PIPE_EQ] = ACTIONS(3115), - [anon_sym_GT_GT_EQ] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PIPE_PIPE] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_PERCENT] = ACTIONS(3117), + [2173] = { + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_CARET] = ACTIONS(2691), + [anon_sym_GT] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2691), + [anon_sym_PIPE_PIPE] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(2691), + [anon_sym_LT_LT] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_EQ_EQ] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2691), + [anon_sym_GT2] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2691), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3115), - [anon_sym_DASH_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3115), - [anon_sym_AMP_EQ] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(2691), + [anon_sym_BANG_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_DASH_GT] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2691), }, - [2188] = { - [aux_sym_argument_list_repeat1] = STATE(3219), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2174] = { + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_LT_LT_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_GT2] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_CARET_EQ] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_GT_EQ] = ACTIONS(3119), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_SLASH] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_CARET] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3119), + [anon_sym_PIPE_EQ] = ACTIONS(3117), + [anon_sym_GT_GT_EQ] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3117), + [anon_sym_LT_LT] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_PERCENT] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_AMP_EQ] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_DASH_GT] = ACTIONS(3117), + [anon_sym_EQ] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_GT_GT] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3117), }, - [2189] = { - [aux_sym_argument_list_repeat1] = STATE(3219), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(6790), + [2175] = { + [aux_sym_argument_list_repeat1] = STATE(3197), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(6779), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [2176] = { + [aux_sym_argument_list_repeat1] = STATE(3197), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(6779), [sym_comment] = ACTIONS(3), }, - [2190] = { - [sym_argument_list] = STATE(1165), + [2177] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(3755), + [anon_sym_CARET] = ACTIONS(3901), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2317), [anon_sym_EQ_EQ] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(3757), + [anon_sym_PIPE] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(3755), + [anon_sym_GT2] = ACTIONS(3901), [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(3755), + [anon_sym_QMARK] = ACTIONS(3901), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -94485,84 +94256,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(2325), [anon_sym_LT_EQ] = ACTIONS(2327), [anon_sym_BANG_EQ] = ACTIONS(2313), - [anon_sym_AMP_AMP] = ACTIONS(3755), + [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2191] = { - [sym_argument_list] = STATE(1165), + [2178] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), + [anon_sym_GT2] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_GT_EQ] = ACTIONS(3761), + [anon_sym_GT_EQ] = ACTIONS(3907), [anon_sym_STAR] = ACTIONS(2311), [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2192] = { - [sym_argument_list] = STATE(1165), + [2179] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(3763), + [anon_sym_LT_LT] = ACTIONS(3909), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), + [anon_sym_GT2] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3765), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), [anon_sym_STAR] = ACTIONS(2311), [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(3765), + [anon_sym_GT_GT] = ACTIONS(3911), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2193] = { - [sym_argument_list] = STATE(1165), + [2180] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6781), [anon_sym_PIPE_PIPE] = ACTIONS(2305), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_GT2] = ACTIONS(6792), + [anon_sym_GT2] = ACTIONS(6781), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_PERCENT] = ACTIONS(2311), [anon_sym_EQ_EQ] = ACTIONS(2313), @@ -94584,19 +94355,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2194] = { - [anon_sym_COMMA] = ACTIONS(6794), - [anon_sym_GT2] = ACTIONS(6794), + [2181] = { + [anon_sym_COMMA] = ACTIONS(6783), + [anon_sym_GT2] = ACTIONS(6783), [sym_comment] = ACTIONS(3), }, - [2195] = { - [sym_argument_list] = STATE(1165), + [2182] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2317), @@ -94604,9 +94375,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(3769), + [anon_sym_GT2] = ACTIONS(3915), [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(3769), + [anon_sym_QMARK] = ACTIONS(3915), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -94620,206 +94391,206 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2196] = { - [sym_template_argument_list] = STATE(3220), - [anon_sym_LPAREN2] = ACTIONS(3773), - [anon_sym_DASH] = ACTIONS(3775), - [anon_sym_STAR_EQ] = ACTIONS(3773), - [anon_sym_LT_LT_EQ] = ACTIONS(3773), - [anon_sym_PERCENT_EQ] = ACTIONS(3773), - [anon_sym_GT2] = ACTIONS(3773), - [anon_sym_COLON_COLON] = ACTIONS(3777), - [anon_sym_EQ_EQ] = ACTIONS(3773), - [anon_sym_PIPE] = ACTIONS(3775), - [anon_sym_LT] = ACTIONS(6796), - [anon_sym_CARET_EQ] = ACTIONS(3773), - [anon_sym_AMP] = ACTIONS(3775), - [anon_sym_PLUS] = ACTIONS(3775), - [anon_sym_GT_EQ] = ACTIONS(3775), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_SLASH] = ACTIONS(3775), - [anon_sym_SLASH_EQ] = ACTIONS(3773), - [anon_sym_PLUS_EQ] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_PIPE_EQ] = ACTIONS(3773), - [anon_sym_GT_GT_EQ] = ACTIONS(3775), - [anon_sym_COMMA] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3773), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_LT_LT] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(3773), - [anon_sym_PERCENT] = ACTIONS(3775), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3773), - [anon_sym_DASH_EQ] = ACTIONS(3773), - [anon_sym_LT_EQ] = ACTIONS(3773), - [anon_sym_BANG_EQ] = ACTIONS(3773), - [anon_sym_AMP_EQ] = ACTIONS(3773), - [anon_sym_AMP_AMP] = ACTIONS(3773), - [anon_sym_DASH_GT] = ACTIONS(3773), - [anon_sym_EQ] = ACTIONS(3775), - [anon_sym_PLUS_PLUS] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3775), - [anon_sym_DASH_DASH] = ACTIONS(3773), + [2183] = { + [sym_template_argument_list] = STATE(3198), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR_EQ] = ACTIONS(3919), + [anon_sym_LT_LT_EQ] = ACTIONS(3919), + [anon_sym_PERCENT_EQ] = ACTIONS(3919), + [anon_sym_GT2] = ACTIONS(3919), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_EQ_EQ] = ACTIONS(3919), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(6785), + [anon_sym_CARET_EQ] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3921), + [anon_sym_SLASH] = ACTIONS(3921), + [anon_sym_SLASH_EQ] = ACTIONS(3919), + [anon_sym_PLUS_EQ] = ACTIONS(3919), + [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_PIPE_EQ] = ACTIONS(3919), + [anon_sym_GT_GT_EQ] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3919), + [anon_sym_PIPE_PIPE] = ACTIONS(3919), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_LT_LT] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3919), + [anon_sym_DASH_EQ] = ACTIONS(3919), + [anon_sym_LT_EQ] = ACTIONS(3919), + [anon_sym_BANG_EQ] = ACTIONS(3919), + [anon_sym_AMP_EQ] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_DASH_GT] = ACTIONS(3919), + [anon_sym_EQ] = ACTIONS(3921), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3919), }, - [2197] = { - [sym_template_argument_list] = STATE(3221), - [anon_sym_LT] = ACTIONS(6799), - [sym_comment] = ACTIONS(3), + [2184] = { + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_DASH] = ACTIONS(3930), + [anon_sym_STAR_EQ] = ACTIONS(3928), + [anon_sym_LT_LT_EQ] = ACTIONS(3928), + [anon_sym_PERCENT_EQ] = ACTIONS(3928), + [anon_sym_GT2] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3928), + [anon_sym_PIPE] = ACTIONS(3930), + [anon_sym_LT] = ACTIONS(3930), + [anon_sym_CARET_EQ] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_PLUS] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_STAR] = ACTIONS(3930), + [anon_sym_SLASH] = ACTIONS(3930), + [anon_sym_SLASH_EQ] = ACTIONS(3928), + [anon_sym_PLUS_EQ] = ACTIONS(3928), + [anon_sym_CARET] = ACTIONS(3930), + [anon_sym_GT] = ACTIONS(3930), + [anon_sym_PIPE_EQ] = ACTIONS(3928), + [anon_sym_GT_GT_EQ] = ACTIONS(3930), + [anon_sym_COMMA] = ACTIONS(3928), + [anon_sym_PIPE_PIPE] = ACTIONS(3928), + [anon_sym_DOT] = ACTIONS(3928), + [anon_sym_LT_LT] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_PERCENT] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3928), + [anon_sym_DASH_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3928), + [anon_sym_BANG_EQ] = ACTIONS(3928), + [anon_sym_AMP_EQ] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_DASH_GT] = ACTIONS(3928), + [anon_sym_EQ] = ACTIONS(3930), + [anon_sym_PLUS_PLUS] = ACTIONS(3928), + [anon_sym_GT_GT] = ACTIONS(3930), + [anon_sym_DASH_DASH] = ACTIONS(3928), }, - [2198] = { - [anon_sym_LPAREN2] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_STAR_EQ] = ACTIONS(3786), - [anon_sym_LT_LT_EQ] = ACTIONS(3786), - [anon_sym_PERCENT_EQ] = ACTIONS(3786), - [anon_sym_GT2] = ACTIONS(3786), - [anon_sym_EQ_EQ] = ACTIONS(3786), - [anon_sym_PIPE] = ACTIONS(3788), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_CARET_EQ] = ACTIONS(3786), - [anon_sym_AMP] = ACTIONS(3788), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_GT_EQ] = ACTIONS(3788), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_SLASH_EQ] = ACTIONS(3786), - [anon_sym_PLUS_EQ] = ACTIONS(3786), - [anon_sym_CARET] = ACTIONS(3788), - [anon_sym_GT] = ACTIONS(3788), - [anon_sym_PIPE_EQ] = ACTIONS(3786), - [anon_sym_GT_GT_EQ] = ACTIONS(3788), - [anon_sym_COMMA] = ACTIONS(3786), - [anon_sym_PIPE_PIPE] = ACTIONS(3786), - [anon_sym_DOT] = ACTIONS(3786), - [anon_sym_LT_LT] = ACTIONS(3788), - [anon_sym_LBRACK] = ACTIONS(3786), - [anon_sym_PERCENT] = ACTIONS(3788), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3786), - [anon_sym_DASH_EQ] = ACTIONS(3786), - [anon_sym_LT_EQ] = ACTIONS(3786), - [anon_sym_BANG_EQ] = ACTIONS(3786), - [anon_sym_AMP_EQ] = ACTIONS(3786), - [anon_sym_AMP_AMP] = ACTIONS(3786), - [anon_sym_DASH_GT] = ACTIONS(3786), - [anon_sym_EQ] = ACTIONS(3788), - [anon_sym_PLUS_PLUS] = ACTIONS(3786), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_DASH_DASH] = ACTIONS(3786), + [2185] = { + [sym_template_argument_list] = STATE(3199), + [anon_sym_LT] = ACTIONS(6788), + [sym_comment] = ACTIONS(3), }, - [2199] = { - [sym_argument_list] = STATE(1165), + [2186] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(3790), + [anon_sym_LT_LT] = ACTIONS(3936), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_GT2] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_GT_EQ] = ACTIONS(3792), + [anon_sym_GT_EQ] = ACTIONS(3938), [anon_sym_STAR] = ACTIONS(2311), [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(3792), + [anon_sym_GT_GT] = ACTIONS(3938), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2200] = { - [sym_argument_list] = STATE(1165), + [2187] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(3763), + [anon_sym_LT_LT] = ACTIONS(3909), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(3763), - [anon_sym_GT2] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3765), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_SLASH] = ACTIONS(3765), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3909), + [anon_sym_GT2] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3909), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(3765), + [anon_sym_GT_GT] = ACTIONS(3911), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2201] = { - [sym_argument_list] = STATE(1165), + [2188] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(3794), + [anon_sym_CARET] = ACTIONS(3940), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_GT2] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), [anon_sym_STAR] = ACTIONS(2311), [anon_sym_SLASH] = ACTIONS(2325), [anon_sym_LT_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2202] = { - [sym_argument_list] = STATE(1165), + [2189] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2317), [anon_sym_EQ_EQ] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(3757), + [anon_sym_PIPE] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(3755), + [anon_sym_GT2] = ACTIONS(3901), [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(3755), + [anon_sym_QMARK] = ACTIONS(3901), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -94827,60 +94598,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(2325), [anon_sym_LT_EQ] = ACTIONS(2327), [anon_sym_BANG_EQ] = ACTIONS(2313), - [anon_sym_AMP_AMP] = ACTIONS(3755), + [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2203] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(6801), + [2190] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(6790), }, - [2204] = { - [sym_argument_list] = STATE(1165), + [2191] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(3755), + [anon_sym_CARET] = ACTIONS(3901), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2317), [anon_sym_EQ_EQ] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(3757), + [anon_sym_PIPE] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), + [anon_sym_GT2] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -94888,50 +94659,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(2325), [anon_sym_LT_EQ] = ACTIONS(2327), [anon_sym_BANG_EQ] = ACTIONS(2313), - [anon_sym_AMP_AMP] = ACTIONS(3755), + [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2205] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(6803), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2192] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2206] = { - [sym_argument_list] = STATE(1165), + [2193] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2317), @@ -94939,9 +94710,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(3769), + [anon_sym_GT2] = ACTIONS(3915), [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(3769), + [anon_sym_QMARK] = ACTIONS(3915), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -94949,402 +94720,235 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(2325), [anon_sym_LT_EQ] = ACTIONS(2327), [anon_sym_BANG_EQ] = ACTIONS(2313), - [anon_sym_AMP_AMP] = ACTIONS(3769), + [anon_sym_AMP_AMP] = ACTIONS(3915), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2207] = { - [anon_sym_LPAREN2] = ACTIONS(6805), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_DASH_DASH] = ACTIONS(6805), - [anon_sym_DASH_GT] = ACTIONS(6805), - [anon_sym_mutable] = ACTIONS(6807), - [anon_sym_RPAREN] = ACTIONS(6805), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6805), - [anon_sym_final] = ACTIONS(6807), - [anon_sym_COLON_COLON] = ACTIONS(6805), - [anon_sym_EQ] = ACTIONS(6807), - [anon_sym_EQ_EQ] = ACTIONS(6805), - [anon_sym_PIPE] = ACTIONS(6807), - [anon_sym_LT] = ACTIONS(6807), - [anon_sym_AMP] = ACTIONS(6807), - [anon_sym_static] = ACTIONS(6807), - [anon_sym_volatile] = ACTIONS(6807), - [anon_sym_PLUS] = ACTIONS(6807), - [anon_sym_GT_EQ] = ACTIONS(6805), - [anon_sym_STAR] = ACTIONS(6805), - [anon_sym_SLASH] = ACTIONS(6807), - [anon_sym_override] = ACTIONS(6807), - [anon_sym_COLON] = ACTIONS(6807), - [anon_sym_explicit] = ACTIONS(6807), - [sym_identifier] = ACTIONS(6807), - [anon_sym_RBRACE] = ACTIONS(6805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), - [sym_operator_name] = ACTIONS(6805), - [sym_noexcept] = ACTIONS(6807), - [anon_sym_CARET] = ACTIONS(6805), - [anon_sym_GT] = ACTIONS(6807), - [anon_sym_COMMA] = ACTIONS(6805), - [anon_sym_register] = ACTIONS(6807), - [anon_sym__Atomic] = ACTIONS(6807), - [anon_sym_const] = ACTIONS(6807), - [anon_sym_extern] = ACTIONS(6807), - [anon_sym_LBRACK] = ACTIONS(6805), - [anon_sym_PIPE_PIPE] = ACTIONS(6805), - [anon_sym_LT_LT] = ACTIONS(6805), - [anon_sym_PERCENT] = ACTIONS(6805), - [anon_sym_constexpr] = ACTIONS(6807), - [anon_sym_DOT] = ACTIONS(6807), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6805), - [anon_sym_TILDE] = ACTIONS(6805), - [anon_sym_SEMI] = ACTIONS(6805), - [anon_sym_BANG_EQ] = ACTIONS(6805), - [anon_sym_LT_EQ] = ACTIONS(6805), - [anon_sym_AMP_AMP] = ACTIONS(6805), - [anon_sym_inline] = ACTIONS(6807), - [anon_sym_PLUS_PLUS] = ACTIONS(6805), - [anon_sym_restrict] = ACTIONS(6807), - [anon_sym_LBRACE] = ACTIONS(6805), - [anon_sym_GT_GT] = ACTIONS(6805), + [2194] = { + [anon_sym_LPAREN2] = ACTIONS(6794), + [anon_sym_DASH] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6794), + [anon_sym_DASH_GT] = ACTIONS(6794), + [anon_sym_mutable] = ACTIONS(6796), + [anon_sym_RPAREN] = ACTIONS(6794), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6794), + [anon_sym_final] = ACTIONS(6796), + [anon_sym_COLON_COLON] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6796), + [anon_sym_EQ_EQ] = ACTIONS(6794), + [anon_sym_PIPE] = ACTIONS(6796), + [anon_sym_LT] = ACTIONS(6796), + [anon_sym_AMP] = ACTIONS(6796), + [anon_sym_static] = ACTIONS(6796), + [anon_sym_volatile] = ACTIONS(6796), + [anon_sym_PLUS] = ACTIONS(6796), + [anon_sym_GT_EQ] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_SLASH] = ACTIONS(6796), + [anon_sym_override] = ACTIONS(6796), + [anon_sym_COLON] = ACTIONS(6796), + [anon_sym_explicit] = ACTIONS(6796), + [sym_identifier] = ACTIONS(6796), + [anon_sym_RBRACE] = ACTIONS(6794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6794), + [sym_operator_name] = ACTIONS(6794), + [sym_noexcept] = ACTIONS(6796), + [anon_sym_CARET] = ACTIONS(6794), + [anon_sym_GT] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6794), + [anon_sym_register] = ACTIONS(6796), + [anon_sym__Atomic] = ACTIONS(6796), + [anon_sym_const] = ACTIONS(6796), + [anon_sym_extern] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6796), + [anon_sym_DOT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6794), + [anon_sym_TILDE] = ACTIONS(6794), + [anon_sym_SEMI] = ACTIONS(6794), + [anon_sym_BANG_EQ] = ACTIONS(6794), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_AMP_AMP] = ACTIONS(6794), + [anon_sym_inline] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6794), + [anon_sym_restrict] = ACTIONS(6796), + [anon_sym_LBRACE] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6794), }, - [2208] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), - [anon_sym_COMMA] = ACTIONS(6809), - [anon_sym_GT2] = ACTIONS(6792), + [2195] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), + [anon_sym_COMMA] = ACTIONS(6798), + [anon_sym_GT2] = ACTIONS(6781), [sym_comment] = ACTIONS(3), }, - [2209] = { - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [anon_sym_mutable] = ACTIONS(6814), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_COLON_COLON] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_static] = ACTIONS(6814), - [anon_sym_volatile] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_explicit] = ACTIONS(6814), - [sym_identifier] = ACTIONS(6814), - [anon_sym_RBRACE] = ACTIONS(6812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [sym_operator_name] = ACTIONS(6812), - [sym_noexcept] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_register] = ACTIONS(6814), - [anon_sym__Atomic] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6814), - [anon_sym_extern] = ACTIONS(6814), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_constexpr] = ACTIONS(6814), - [anon_sym_DOT] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_TILDE] = ACTIONS(6812), - [anon_sym_SEMI] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_inline] = ACTIONS(6814), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_restrict] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6812), - }, - [2210] = { - [sym_string_literal] = STATE(2210), - [aux_sym_concatenated_string_repeat1] = STATE(2210), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_GT2] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3734), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(6816), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), - }, - [2211] = { - [sym_parameter_list] = STATE(2218), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(4989), - [sym_comment] = ACTIONS(3), + [2196] = { + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6801), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_static] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_explicit] = ACTIONS(6803), + [sym_identifier] = ACTIONS(6803), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [sym_operator_name] = ACTIONS(6801), + [sym_noexcept] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_register] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_extern] = ACTIONS(6803), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_LT_LT] = ACTIONS(6801), + [anon_sym_PERCENT] = ACTIONS(6801), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_DOT] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_TILDE] = ACTIONS(6801), + [anon_sym_SEMI] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_inline] = ACTIONS(6803), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6801), }, - [2212] = { - [sym_abstract_array_declarator] = STATE(3224), - [sym_parameter_list] = STATE(1174), - [sym_abstract_reference_declarator] = STATE(3224), - [sym_abstract_function_declarator] = STATE(3224), - [aux_sym_type_definition_repeat1] = STATE(2216), - [sym_abstract_pointer_declarator] = STATE(3224), - [sym_type_qualifier] = STATE(2216), - [sym__abstract_declarator] = STATE(3224), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_restrict] = ACTIONS(1062), - }, - [2213] = { - [sym_parameter_list] = STATE(2218), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - }, - [2214] = { - [sym_union_specifier] = STATE(3227), - [sym_macro_type_specifier] = STATE(3227), - [sym_class_specifier] = STATE(3227), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(3227), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(3227), - [aux_sym_sized_type_specifier_repeat1] = STATE(3226), - [sym_struct_specifier] = STATE(3227), - [sym_enum_specifier] = STATE(3227), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(3227), - [anon_sym_unsigned] = ACTIONS(6819), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(6821), - [anon_sym_signed] = ACTIONS(6819), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6819), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(6823), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(6819), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(6821), - }, - [2215] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(3228), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3228), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(6825), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4410), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [2216] = { - [sym_type_qualifier] = STATE(2216), - [aux_sym_type_definition_repeat1] = STATE(2216), - [anon_sym_LPAREN2] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_GT2] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), - }, - [2217] = { - [sym_parameter_list] = STATE(2218), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(5004), - [sym_comment] = ACTIONS(3), - }, - [2218] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(3229), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3229), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(6827), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4410), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [2219] = { - [sym_goto_statement] = STATE(3231), - [sym_preproc_function_def] = STATE(3231), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(3231), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(3231), - [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(3231), - [sym_return_statement] = STATE(3231), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), - [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(3231), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(3231), - [sym_break_statement] = STATE(3231), - [sym_preproc_include] = STATE(3231), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(3231), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(3231), - [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(3231), - [sym_template_instantiation] = STATE(3231), - [sym_constructor_or_destructor_definition] = STATE(3231), - [sym_expression_statement] = STATE(3231), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(3231), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(3231), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(3231), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(3231), - [aux_sym_translation_unit_repeat1] = STATE(3231), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(3231), - [sym_if_statement] = STATE(3231), - [sym_for_statement] = STATE(3231), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(3231), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(3231), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(3231), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(3231), - [sym_preproc_if] = STATE(3231), - [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(3231), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(3231), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(3231), - [sym_while_statement] = STATE(3231), - [sym_raw_string_literal] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(9), - [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(9), - [anon_sym_break] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_sizeof] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(246), - [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(27), - [aux_sym_preproc_ifdef_token1] = ACTIONS(29), - [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(5), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_constexpr] = ACTIONS(11), + [2197] = { + [sym_goto_statement] = STATE(3203), + [sym_preproc_function_def] = STATE(3203), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(3203), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_field_expression] = STATE(47), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3203), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(3203), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(3203), + [sym_namespace_definition] = STATE(3203), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(47), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(3203), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(3203), + [sym_constructor_or_destructor_definition] = STATE(3203), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(3203), + [sym_preproc_include] = STATE(3203), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(3203), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(3203), + [sym_call_expression] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(3203), + [sym_expression_statement] = STATE(3203), + [sym_do_statement] = STATE(3203), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(3203), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(3203), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(3203), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(3203), + [sym_for_statement] = STATE(3203), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(3203), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(3203), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(3203), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(3203), + [sym_preproc_if] = STATE(3203), + [sym_pointer_expression] = STATE(47), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(3203), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(3203), + [aux_sym_translation_unit_repeat1] = STATE(3203), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(3203), + [sym_while_statement] = STATE(3203), + [sym_raw_string_literal] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(7), + [sym_true] = ACTIONS(9), + [anon_sym_mutable] = ACTIONS(11), + [sym_null] = ACTIONS(9), + [anon_sym_break] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_sizeof] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(19), + [anon_sym_switch] = ACTIONS(21), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(246), + [anon_sym_delete] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [aux_sym_preproc_ifdef_token1] = ACTIONS(29), + [anon_sym__Atomic] = ACTIONS(11), + [sym_number_literal] = ACTIONS(5), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), @@ -95364,7 +94968,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(6829), + [anon_sym_RBRACE] = ACTIONS(6805), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -95396,2256 +95000,2493 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2220] = { - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4121), - [anon_sym_GT] = ACTIONS(4123), - [anon_sym_DASH] = ACTIONS(4123), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LT_LT] = ACTIONS(4121), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4123), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_GT2] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4123), - [anon_sym_QMARK] = ACTIONS(4121), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4123), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4123), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4123), - [anon_sym_DASH_DASH] = ACTIONS(4121), + [2198] = { + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_CARET] = ACTIONS(3844), + [anon_sym_GT] = ACTIONS(3846), + [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_COMMA] = ACTIONS(3844), + [anon_sym_PIPE_PIPE] = ACTIONS(3844), + [anon_sym_DOT] = ACTIONS(3844), + [anon_sym_LT_LT] = ACTIONS(3844), + [anon_sym_LBRACK] = ACTIONS(3844), + [anon_sym_EQ_EQ] = ACTIONS(3844), + [anon_sym_PIPE] = ACTIONS(3846), + [anon_sym_LT] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3844), + [anon_sym_GT2] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_QMARK] = ACTIONS(3844), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(3846), + [anon_sym_GT_EQ] = ACTIONS(3846), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_LT_EQ] = ACTIONS(3844), + [anon_sym_BANG_EQ] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_DASH_GT] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_GT_GT] = ACTIONS(3846), + [anon_sym_DASH_DASH] = ACTIONS(3844), }, - [2221] = { - [sym_abstract_array_declarator] = STATE(3232), + [2199] = { + [sym_string_literal] = STATE(2199), + [aux_sym_concatenated_string_repeat1] = STATE(2199), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_GT2] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3888), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), + }, + [2200] = { + [sym_parameter_list] = STATE(2207), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(4985), + [sym_comment] = ACTIONS(3), + }, + [2201] = { + [sym_abstract_reference_declarator] = STATE(3204), + [aux_sym_type_definition_repeat1] = STATE(2203), + [sym_abstract_array_declarator] = STATE(3204), [sym_parameter_list] = STATE(1174), - [sym_abstract_reference_declarator] = STATE(3232), - [sym_abstract_function_declarator] = STATE(3232), - [aux_sym_type_definition_repeat1] = STATE(2216), - [sym_abstract_pointer_declarator] = STATE(3232), - [sym_type_qualifier] = STATE(2216), - [sym__abstract_declarator] = STATE(3232), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(5004), - [anon_sym__Atomic] = ACTIONS(1062), + [sym_abstract_function_declarator] = STATE(3204), + [sym_abstract_pointer_declarator] = STATE(3204), + [sym_type_qualifier] = STATE(2203), + [sym__abstract_declarator] = STATE(3204), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(1070), }, - [2222] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), + [2202] = { + [sym_parameter_list] = STATE(2207), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + }, + [2203] = { + [aux_sym_type_definition_repeat1] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_mutable] = ACTIONS(4989), + [anon_sym_COMMA] = ACTIONS(2106), + [anon_sym__Atomic] = ACTIONS(4989), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_constexpr] = ACTIONS(4989), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_volatile] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_explicit] = ACTIONS(4989), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_restrict] = ACTIONS(4989), + }, + [2204] = { + [sym_parameter_list] = STATE(2207), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + }, + [2205] = { + [sym_union_specifier] = STATE(3207), + [sym_macro_type_specifier] = STATE(3207), + [sym_class_specifier] = STATE(3207), + [aux_sym_sized_type_specifier_repeat1] = STATE(3206), + [sym_sized_type_specifier] = STATE(3207), + [sym__type_specifier] = STATE(3207), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(3207), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(3207), + [sym_struct_specifier] = STATE(3207), + [anon_sym_unsigned] = ACTIONS(6810), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(6810), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(6810), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(6814), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(6810), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(6812), + }, + [2206] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3208), + [sym_type_qualifier] = STATE(3208), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(6816), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_GT2] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4409), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [2207] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3209), + [sym_type_qualifier] = STATE(3209), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(6818), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_GT2] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4409), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [2208] = { + [sym_abstract_reference_declarator] = STATE(3210), + [aux_sym_type_definition_repeat1] = STATE(2203), + [sym_abstract_array_declarator] = STATE(3210), + [sym_parameter_list] = STATE(1174), + [sym_abstract_function_declarator] = STATE(3210), + [sym_abstract_pointer_declarator] = STATE(3210), + [sym_type_qualifier] = STATE(2203), + [sym__abstract_declarator] = STATE(3210), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_GT2] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(1070), + }, + [2209] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_GT2] = ACTIONS(3850), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3852), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3852), + [anon_sym_STAR] = ACTIONS(3850), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3852), + [anon_sym_GT_GT] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + }, + [2210] = { + [anon_sym_LPAREN2] = ACTIONS(3854), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + [anon_sym_mutable] = ACTIONS(3857), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_GT2] = ACTIONS(3854), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_volatile] = ACTIONS(3857), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3852), + [anon_sym_STAR] = ACTIONS(3854), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_explicit] = ACTIONS(3857), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_const] = ACTIONS(3859), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_PERCENT] = ACTIONS(3850), + [anon_sym__Atomic] = ACTIONS(3857), + [anon_sym_constexpr] = ACTIONS(3857), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_restrict] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3852), + }, + [2211] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(1400), + [sym_raw_string_literal] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(2830), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2828), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [2223] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3233), - [sym_logical_expression] = STATE(3233), - [sym_bitwise_expression] = STATE(3233), - [sym_cast_expression] = STATE(3233), - [sym_new_expression] = STATE(3233), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(3233), - [sym_char_literal] = STATE(3233), - [sym_template_function] = STATE(3233), - [sym_conditional_expression] = STATE(3233), - [sym_equality_expression] = STATE(3233), - [sym_relational_expression] = STATE(3233), - [sym_delete_expression] = STATE(3233), - [sym_sizeof_expression] = STATE(3233), - [sym_parenthesized_expression] = STATE(3233), - [sym_lambda_expression] = STATE(3233), - [sym_concatenated_string] = STATE(3233), + [2212] = { + [sym_template_function] = STATE(3211), + [sym__expression] = STATE(3211), + [sym_logical_expression] = STATE(3211), + [sym_bitwise_expression] = STATE(3211), + [sym_cast_expression] = STATE(3211), + [sym_delete_expression] = STATE(3211), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(3211), + [sym_lambda_expression] = STATE(3211), + [sym_char_literal] = STATE(3211), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3211), + [sym_equality_expression] = STATE(3211), + [sym_relational_expression] = STATE(3211), + [sym_sizeof_expression] = STATE(3211), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3211), + [sym_lambda_capture_specifier] = STATE(50), [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(3233), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(3233), - [sym_math_expression] = STATE(3233), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(6831), - [anon_sym_DASH] = ACTIONS(748), - [sym_true] = ACTIONS(6833), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(6833), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6831), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(6833), - [sym_nullptr] = ACTIONS(6833), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_concatenated_string] = STATE(3211), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3211), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(3211), + [sym_math_expression] = STATE(3211), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(3211), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(6820), + [anon_sym_DASH] = ACTIONS(752), + [sym_true] = ACTIONS(6822), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6820), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(6822), + [sym_nullptr] = ACTIONS(6822), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), }, - [2224] = { - [sym_template_type] = STATE(239), + [2213] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(6835), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(6824), }, - [2225] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2214] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2226] = { - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_EQ] = ACTIONS(6837), + [2215] = { + [anon_sym_LPAREN2] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(6826), [sym_comment] = ACTIONS(3), }, - [2227] = { - [anon_sym_RPAREN] = ACTIONS(6839), + [2216] = { + [anon_sym_RPAREN] = ACTIONS(6828), [sym_comment] = ACTIONS(3), }, - [2228] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3237), - [sym_logical_expression] = STATE(3237), - [sym_bitwise_expression] = STATE(3237), - [sym_cast_expression] = STATE(3237), - [sym_new_expression] = STATE(3237), - [sym_field_expression] = STATE(3237), - [sym_compound_literal_expression] = STATE(3237), - [sym_char_literal] = STATE(3237), - [sym_template_function] = STATE(3237), - [sym_conditional_expression] = STATE(3237), - [sym_equality_expression] = STATE(3237), - [sym_relational_expression] = STATE(3237), - [sym_delete_expression] = STATE(3237), - [sym_sizeof_expression] = STATE(3237), - [sym_parenthesized_expression] = STATE(3237), - [sym_lambda_expression] = STATE(3237), - [sym_concatenated_string] = STATE(3237), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3237), - [sym_assignment_expression] = STATE(3237), - [sym_pointer_expression] = STATE(3237), - [sym_shift_expression] = STATE(3237), - [sym_math_expression] = STATE(3237), - [sym_call_expression] = STATE(3237), - [sym_lambda_capture_specifier] = STATE(196), + [2217] = { + [sym_template_function] = STATE(3215), + [sym__expression] = STATE(3215), + [sym_logical_expression] = STATE(3215), + [sym_bitwise_expression] = STATE(3215), + [sym_cast_expression] = STATE(3215), + [sym_delete_expression] = STATE(3215), + [sym_field_expression] = STATE(3215), + [sym_compound_literal_expression] = STATE(3215), + [sym_lambda_expression] = STATE(3215), + [sym_char_literal] = STATE(3215), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3215), + [sym_equality_expression] = STATE(3215), + [sym_relational_expression] = STATE(3215), + [sym_sizeof_expression] = STATE(3215), + [sym_subscript_expression] = STATE(3215), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6841), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6843), - [sym_null] = ACTIONS(6843), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6841), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(6845), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6843), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6843), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3215), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3215), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3215), + [sym_pointer_expression] = STATE(3215), + [sym_shift_expression] = STATE(3215), + [sym_math_expression] = STATE(3215), + [sym_call_expression] = STATE(3215), + [sym_new_expression] = STATE(3215), + [sym_raw_string_literal] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6832), + [sym_null] = ACTIONS(6832), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6830), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(6834), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6832), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6832), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2229] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(3238), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [2218] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(3216), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [2230] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2219] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2231] = { - [sym_union_specifier] = STATE(1502), - [sym_macro_type_specifier] = STATE(1502), - [sym_class_specifier] = STATE(1502), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1502), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1502), - [aux_sym_sized_type_specifier_repeat1] = STATE(2232), - [sym_struct_specifier] = STATE(1502), - [sym_enum_specifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1502), - [anon_sym_unsigned] = ACTIONS(4445), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(4445), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4445), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(4447), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(4445), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2967), + [2220] = { + [sym_union_specifier] = STATE(1497), + [sym_macro_type_specifier] = STATE(1497), + [sym_class_specifier] = STATE(1497), + [aux_sym_sized_type_specifier_repeat1] = STATE(2221), + [sym_sized_type_specifier] = STATE(1497), + [sym__type_specifier] = STATE(1497), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1497), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1497), + [sym_struct_specifier] = STATE(1497), + [anon_sym_unsigned] = ACTIONS(4443), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(4443), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(4443), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(4445), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(4443), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2969), }, - [2232] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3240), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(6853), - [anon_sym_long] = ACTIONS(6853), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(6853), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2991), - [anon_sym_unsigned] = ACTIONS(6853), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), + [2221] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3218), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(6842), + [anon_sym_long] = ACTIONS(6842), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(6842), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(2986), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(6842), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), }, - [2233] = { - [sym_initializer_list] = STATE(1522), - [sym_new_declarator] = STATE(1521), - [sym_argument_list] = STATE(1522), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(6855), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [2222] = { + [sym_new_declarator] = STATE(1514), + [sym_argument_list] = STATE(1515), + [sym_initializer_list] = STATE(1515), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [2234] = { - [sym_union_specifier] = STATE(3242), - [sym_macro_type_specifier] = STATE(3242), - [sym_class_specifier] = STATE(3242), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(3242), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(3242), - [aux_sym_sized_type_specifier_repeat1] = STATE(2232), - [sym_struct_specifier] = STATE(3242), - [sym_enum_specifier] = STATE(3242), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(3242), - [anon_sym_unsigned] = ACTIONS(4445), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(6857), - [anon_sym_signed] = ACTIONS(4445), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4445), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(4447), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(4445), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(6857), + [2223] = { + [sym_union_specifier] = STATE(3220), + [sym_macro_type_specifier] = STATE(3220), + [sym_class_specifier] = STATE(3220), + [aux_sym_sized_type_specifier_repeat1] = STATE(2221), + [sym_sized_type_specifier] = STATE(3220), + [sym__type_specifier] = STATE(3220), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(3220), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(3220), + [sym_struct_specifier] = STATE(3220), + [anon_sym_unsigned] = ACTIONS(4443), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(6846), + [anon_sym_signed] = ACTIONS(4443), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(4443), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(4445), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(4443), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(6846), }, - [2235] = { - [sym_template_type] = STATE(239), + [2224] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(6859), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(6848), }, - [2236] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(6863), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(6871), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(6873), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(6875), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2225] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(6862), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(6864), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2237] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3244), - [sym_logical_expression] = STATE(3244), - [sym_bitwise_expression] = STATE(3244), - [sym_cast_expression] = STATE(3244), - [sym_new_expression] = STATE(3244), - [sym_field_expression] = STATE(3244), - [sym_compound_literal_expression] = STATE(3244), - [sym_char_literal] = STATE(3244), - [sym_template_function] = STATE(3244), - [sym_conditional_expression] = STATE(3244), - [sym_equality_expression] = STATE(3244), - [sym_relational_expression] = STATE(3244), - [sym_delete_expression] = STATE(3244), - [sym_sizeof_expression] = STATE(3244), - [sym_parenthesized_expression] = STATE(3244), - [sym_lambda_expression] = STATE(3244), - [sym_concatenated_string] = STATE(3244), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3244), - [sym_assignment_expression] = STATE(3244), - [sym_pointer_expression] = STATE(3244), - [sym_shift_expression] = STATE(3244), - [sym_math_expression] = STATE(3244), - [sym_call_expression] = STATE(3244), - [sym_lambda_capture_specifier] = STATE(196), + [2226] = { + [sym_template_function] = STATE(3222), + [sym__expression] = STATE(3222), + [sym_logical_expression] = STATE(3222), + [sym_bitwise_expression] = STATE(3222), + [sym_cast_expression] = STATE(3222), + [sym_delete_expression] = STATE(3222), + [sym_field_expression] = STATE(3222), + [sym_compound_literal_expression] = STATE(3222), + [sym_lambda_expression] = STATE(3222), + [sym_char_literal] = STATE(3222), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3222), + [sym_equality_expression] = STATE(3222), + [sym_relational_expression] = STATE(3222), + [sym_sizeof_expression] = STATE(3222), + [sym_subscript_expression] = STATE(3222), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6877), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6879), - [sym_null] = ACTIONS(6879), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6877), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6879), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6879), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3222), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3222), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3222), + [sym_pointer_expression] = STATE(3222), + [sym_shift_expression] = STATE(3222), + [sym_math_expression] = STATE(3222), + [sym_call_expression] = STATE(3222), + [sym_new_expression] = STATE(3222), + [sym_raw_string_literal] = ACTIONS(6866), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6868), + [sym_null] = ACTIONS(6868), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6866), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6868), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6868), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2238] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3245), - [sym_logical_expression] = STATE(3245), - [sym_bitwise_expression] = STATE(3245), - [sym_cast_expression] = STATE(3245), - [sym_new_expression] = STATE(3245), - [sym_field_expression] = STATE(3245), - [sym_compound_literal_expression] = STATE(3245), - [sym_char_literal] = STATE(3245), - [sym_template_function] = STATE(3245), - [sym_conditional_expression] = STATE(3245), - [sym_equality_expression] = STATE(3245), - [sym_relational_expression] = STATE(3245), - [sym_delete_expression] = STATE(3245), - [sym_sizeof_expression] = STATE(3245), - [sym_parenthesized_expression] = STATE(3245), - [sym_lambda_expression] = STATE(3245), - [sym_concatenated_string] = STATE(3245), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3245), - [sym_assignment_expression] = STATE(3245), - [sym_pointer_expression] = STATE(3245), - [sym_shift_expression] = STATE(3245), - [sym_math_expression] = STATE(3245), - [sym_call_expression] = STATE(3245), - [sym_lambda_capture_specifier] = STATE(196), + [2227] = { + [sym_template_function] = STATE(3223), + [sym__expression] = STATE(3223), + [sym_logical_expression] = STATE(3223), + [sym_bitwise_expression] = STATE(3223), + [sym_cast_expression] = STATE(3223), + [sym_delete_expression] = STATE(3223), + [sym_field_expression] = STATE(3223), + [sym_compound_literal_expression] = STATE(3223), + [sym_lambda_expression] = STATE(3223), + [sym_char_literal] = STATE(3223), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3223), + [sym_equality_expression] = STATE(3223), + [sym_relational_expression] = STATE(3223), + [sym_sizeof_expression] = STATE(3223), + [sym_subscript_expression] = STATE(3223), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6881), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6883), - [sym_null] = ACTIONS(6883), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6881), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6883), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6883), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3223), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3223), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3223), + [sym_pointer_expression] = STATE(3223), + [sym_shift_expression] = STATE(3223), + [sym_math_expression] = STATE(3223), + [sym_call_expression] = STATE(3223), + [sym_new_expression] = STATE(3223), + [sym_raw_string_literal] = ACTIONS(6870), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6872), + [sym_null] = ACTIONS(6872), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6870), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6872), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6872), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2239] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3246), - [sym_logical_expression] = STATE(3246), - [sym_bitwise_expression] = STATE(3246), - [sym_cast_expression] = STATE(3246), - [sym_new_expression] = STATE(3246), - [sym_field_expression] = STATE(3246), - [sym_compound_literal_expression] = STATE(3246), - [sym_char_literal] = STATE(3246), - [sym_template_function] = STATE(3246), - [sym_conditional_expression] = STATE(3246), - [sym_equality_expression] = STATE(3246), - [sym_relational_expression] = STATE(3246), - [sym_delete_expression] = STATE(3246), - [sym_sizeof_expression] = STATE(3246), - [sym_parenthesized_expression] = STATE(3246), - [sym_lambda_expression] = STATE(3246), - [sym_concatenated_string] = STATE(3246), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3246), - [sym_assignment_expression] = STATE(3246), - [sym_pointer_expression] = STATE(3246), - [sym_shift_expression] = STATE(3246), - [sym_math_expression] = STATE(3246), - [sym_call_expression] = STATE(3246), - [sym_lambda_capture_specifier] = STATE(196), + [2228] = { + [sym_template_function] = STATE(3224), + [sym__expression] = STATE(3224), + [sym_logical_expression] = STATE(3224), + [sym_bitwise_expression] = STATE(3224), + [sym_cast_expression] = STATE(3224), + [sym_delete_expression] = STATE(3224), + [sym_field_expression] = STATE(3224), + [sym_compound_literal_expression] = STATE(3224), + [sym_lambda_expression] = STATE(3224), + [sym_char_literal] = STATE(3224), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3224), + [sym_equality_expression] = STATE(3224), + [sym_relational_expression] = STATE(3224), + [sym_sizeof_expression] = STATE(3224), + [sym_subscript_expression] = STATE(3224), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6885), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6887), - [sym_null] = ACTIONS(6887), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6885), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6887), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6887), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3224), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3224), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3224), + [sym_pointer_expression] = STATE(3224), + [sym_shift_expression] = STATE(3224), + [sym_math_expression] = STATE(3224), + [sym_call_expression] = STATE(3224), + [sym_new_expression] = STATE(3224), + [sym_raw_string_literal] = ACTIONS(6874), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6876), + [sym_null] = ACTIONS(6876), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6874), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6876), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6876), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2240] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3247), - [sym_logical_expression] = STATE(3247), - [sym_bitwise_expression] = STATE(3247), - [sym_cast_expression] = STATE(3247), - [sym_new_expression] = STATE(3247), - [sym_field_expression] = STATE(3247), - [sym_compound_literal_expression] = STATE(3247), - [sym_char_literal] = STATE(3247), - [sym_template_function] = STATE(3247), - [sym_conditional_expression] = STATE(3247), - [sym_equality_expression] = STATE(3247), - [sym_relational_expression] = STATE(3247), - [sym_delete_expression] = STATE(3247), - [sym_sizeof_expression] = STATE(3247), - [sym_parenthesized_expression] = STATE(3247), - [sym_lambda_expression] = STATE(3247), - [sym_concatenated_string] = STATE(3247), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3247), - [sym_assignment_expression] = STATE(3247), - [sym_pointer_expression] = STATE(3247), - [sym_shift_expression] = STATE(3247), - [sym_math_expression] = STATE(3247), - [sym_call_expression] = STATE(3247), - [sym_lambda_capture_specifier] = STATE(196), + [2229] = { + [sym_template_function] = STATE(3225), + [sym__expression] = STATE(3225), + [sym_logical_expression] = STATE(3225), + [sym_bitwise_expression] = STATE(3225), + [sym_cast_expression] = STATE(3225), + [sym_delete_expression] = STATE(3225), + [sym_field_expression] = STATE(3225), + [sym_compound_literal_expression] = STATE(3225), + [sym_lambda_expression] = STATE(3225), + [sym_char_literal] = STATE(3225), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3225), + [sym_equality_expression] = STATE(3225), + [sym_relational_expression] = STATE(3225), + [sym_sizeof_expression] = STATE(3225), + [sym_subscript_expression] = STATE(3225), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6889), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6891), - [sym_null] = ACTIONS(6891), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6889), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6891), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6891), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3225), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3225), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3225), + [sym_pointer_expression] = STATE(3225), + [sym_shift_expression] = STATE(3225), + [sym_math_expression] = STATE(3225), + [sym_call_expression] = STATE(3225), + [sym_new_expression] = STATE(3225), + [sym_raw_string_literal] = ACTIONS(6878), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6880), + [sym_null] = ACTIONS(6880), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6878), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6880), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6880), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2241] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3248), - [sym_logical_expression] = STATE(3248), - [sym_bitwise_expression] = STATE(3248), - [sym_cast_expression] = STATE(3248), - [sym_new_expression] = STATE(3248), - [sym_field_expression] = STATE(3248), - [sym_compound_literal_expression] = STATE(3248), - [sym_char_literal] = STATE(3248), - [sym_template_function] = STATE(3248), - [sym_conditional_expression] = STATE(3248), - [sym_equality_expression] = STATE(3248), - [sym_relational_expression] = STATE(3248), - [sym_delete_expression] = STATE(3248), - [sym_sizeof_expression] = STATE(3248), - [sym_parenthesized_expression] = STATE(3248), - [sym_lambda_expression] = STATE(3248), - [sym_concatenated_string] = STATE(3248), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3248), - [sym_assignment_expression] = STATE(3248), - [sym_pointer_expression] = STATE(3248), - [sym_shift_expression] = STATE(3248), - [sym_math_expression] = STATE(3248), - [sym_call_expression] = STATE(3248), - [sym_lambda_capture_specifier] = STATE(196), + [2230] = { + [sym_template_function] = STATE(3226), + [sym__expression] = STATE(3226), + [sym_logical_expression] = STATE(3226), + [sym_bitwise_expression] = STATE(3226), + [sym_cast_expression] = STATE(3226), + [sym_delete_expression] = STATE(3226), + [sym_field_expression] = STATE(3226), + [sym_compound_literal_expression] = STATE(3226), + [sym_lambda_expression] = STATE(3226), + [sym_char_literal] = STATE(3226), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3226), + [sym_equality_expression] = STATE(3226), + [sym_relational_expression] = STATE(3226), + [sym_sizeof_expression] = STATE(3226), + [sym_subscript_expression] = STATE(3226), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6893), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6895), - [sym_null] = ACTIONS(6895), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6893), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6895), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6895), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3226), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3226), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3226), + [sym_pointer_expression] = STATE(3226), + [sym_shift_expression] = STATE(3226), + [sym_math_expression] = STATE(3226), + [sym_call_expression] = STATE(3226), + [sym_new_expression] = STATE(3226), + [sym_raw_string_literal] = ACTIONS(6882), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6884), + [sym_null] = ACTIONS(6884), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6882), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6884), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2242] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1548), - [sym_logical_expression] = STATE(1548), - [sym_bitwise_expression] = STATE(1548), - [sym_cast_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_field_expression] = STATE(1548), - [sym_compound_literal_expression] = STATE(1548), - [sym_char_literal] = STATE(1548), - [sym_template_function] = STATE(1548), - [sym_conditional_expression] = STATE(1548), - [sym_equality_expression] = STATE(1548), - [sym_relational_expression] = STATE(1548), - [sym_delete_expression] = STATE(1548), - [sym_sizeof_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_lambda_expression] = STATE(1548), - [sym_concatenated_string] = STATE(1548), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1548), - [sym_assignment_expression] = STATE(1548), - [sym_pointer_expression] = STATE(1548), - [sym_shift_expression] = STATE(1548), - [sym_math_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_lambda_capture_specifier] = STATE(196), + [2231] = { + [sym_template_function] = STATE(1541), + [sym__expression] = STATE(1541), + [sym_logical_expression] = STATE(1541), + [sym_bitwise_expression] = STATE(1541), + [sym_cast_expression] = STATE(1541), + [sym_delete_expression] = STATE(1541), + [sym_field_expression] = STATE(1541), + [sym_compound_literal_expression] = STATE(1541), + [sym_lambda_expression] = STATE(1541), + [sym_char_literal] = STATE(1541), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1541), + [sym_equality_expression] = STATE(1541), + [sym_relational_expression] = STATE(1541), + [sym_sizeof_expression] = STATE(1541), + [sym_subscript_expression] = STATE(1541), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(3079), - [sym_null] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(1541), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(1541), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1541), + [sym_pointer_expression] = STATE(1541), + [sym_shift_expression] = STATE(1541), + [sym_math_expression] = STATE(1541), + [sym_call_expression] = STATE(1541), + [sym_new_expression] = STATE(1541), + [sym_raw_string_literal] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2243] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3249), - [sym_logical_expression] = STATE(3249), - [sym_bitwise_expression] = STATE(3249), - [sym_cast_expression] = STATE(3249), - [sym_new_expression] = STATE(3249), - [sym_field_expression] = STATE(3249), - [sym_compound_literal_expression] = STATE(3249), - [sym_char_literal] = STATE(3249), - [sym_template_function] = STATE(3249), - [sym_conditional_expression] = STATE(3249), - [sym_equality_expression] = STATE(3249), - [sym_relational_expression] = STATE(3249), - [sym_delete_expression] = STATE(3249), - [sym_sizeof_expression] = STATE(3249), - [sym_parenthesized_expression] = STATE(3249), - [sym_lambda_expression] = STATE(3249), - [sym_concatenated_string] = STATE(3249), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3249), - [sym_assignment_expression] = STATE(3249), - [sym_pointer_expression] = STATE(3249), - [sym_shift_expression] = STATE(3249), - [sym_math_expression] = STATE(3249), - [sym_call_expression] = STATE(3249), - [sym_lambda_capture_specifier] = STATE(196), + [2232] = { + [sym_template_function] = STATE(3227), + [sym__expression] = STATE(3227), + [sym_logical_expression] = STATE(3227), + [sym_bitwise_expression] = STATE(3227), + [sym_cast_expression] = STATE(3227), + [sym_delete_expression] = STATE(3227), + [sym_field_expression] = STATE(3227), + [sym_compound_literal_expression] = STATE(3227), + [sym_lambda_expression] = STATE(3227), + [sym_char_literal] = STATE(3227), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3227), + [sym_equality_expression] = STATE(3227), + [sym_relational_expression] = STATE(3227), + [sym_sizeof_expression] = STATE(3227), + [sym_subscript_expression] = STATE(3227), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6897), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6899), - [sym_null] = ACTIONS(6899), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6897), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6899), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6899), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3227), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3227), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3227), + [sym_pointer_expression] = STATE(3227), + [sym_shift_expression] = STATE(3227), + [sym_math_expression] = STATE(3227), + [sym_call_expression] = STATE(3227), + [sym_new_expression] = STATE(3227), + [sym_raw_string_literal] = ACTIONS(6886), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6888), + [sym_null] = ACTIONS(6888), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6886), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6888), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6888), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2244] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3250), - [sym_logical_expression] = STATE(3250), - [sym_bitwise_expression] = STATE(3250), - [sym_cast_expression] = STATE(3250), - [sym_new_expression] = STATE(3250), - [sym_field_expression] = STATE(3250), - [sym_compound_literal_expression] = STATE(3250), - [sym_char_literal] = STATE(3250), - [sym_template_function] = STATE(3250), - [sym_conditional_expression] = STATE(3250), - [sym_equality_expression] = STATE(3250), - [sym_relational_expression] = STATE(3250), - [sym_delete_expression] = STATE(3250), - [sym_sizeof_expression] = STATE(3250), - [sym_parenthesized_expression] = STATE(3250), - [sym_lambda_expression] = STATE(3250), - [sym_concatenated_string] = STATE(3250), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3250), - [sym_assignment_expression] = STATE(3250), - [sym_pointer_expression] = STATE(3250), - [sym_shift_expression] = STATE(3250), - [sym_math_expression] = STATE(3250), - [sym_call_expression] = STATE(3250), - [sym_lambda_capture_specifier] = STATE(196), + [2233] = { + [sym_template_function] = STATE(3228), + [sym__expression] = STATE(3228), + [sym_logical_expression] = STATE(3228), + [sym_bitwise_expression] = STATE(3228), + [sym_cast_expression] = STATE(3228), + [sym_delete_expression] = STATE(3228), + [sym_field_expression] = STATE(3228), + [sym_compound_literal_expression] = STATE(3228), + [sym_lambda_expression] = STATE(3228), + [sym_char_literal] = STATE(3228), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3228), + [sym_equality_expression] = STATE(3228), + [sym_relational_expression] = STATE(3228), + [sym_sizeof_expression] = STATE(3228), + [sym_subscript_expression] = STATE(3228), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6903), - [sym_null] = ACTIONS(6903), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6901), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6903), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6903), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3228), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3228), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3228), + [sym_pointer_expression] = STATE(3228), + [sym_shift_expression] = STATE(3228), + [sym_math_expression] = STATE(3228), + [sym_call_expression] = STATE(3228), + [sym_new_expression] = STATE(3228), + [sym_raw_string_literal] = ACTIONS(6890), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6892), + [sym_null] = ACTIONS(6892), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6890), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6892), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6892), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2245] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3251), - [sym_logical_expression] = STATE(3251), - [sym_bitwise_expression] = STATE(3251), - [sym_cast_expression] = STATE(3251), - [sym_new_expression] = STATE(3251), - [sym_field_expression] = STATE(3251), - [sym_compound_literal_expression] = STATE(3251), - [sym_char_literal] = STATE(3251), - [sym_template_function] = STATE(3251), - [sym_conditional_expression] = STATE(3251), - [sym_equality_expression] = STATE(3251), - [sym_relational_expression] = STATE(3251), - [sym_delete_expression] = STATE(3251), - [sym_sizeof_expression] = STATE(3251), - [sym_parenthesized_expression] = STATE(3251), - [sym_lambda_expression] = STATE(3251), - [sym_concatenated_string] = STATE(3251), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3251), - [sym_assignment_expression] = STATE(3251), - [sym_pointer_expression] = STATE(3251), - [sym_shift_expression] = STATE(3251), - [sym_math_expression] = STATE(3251), - [sym_call_expression] = STATE(3251), - [sym_lambda_capture_specifier] = STATE(196), + [2234] = { + [sym_template_function] = STATE(3229), + [sym__expression] = STATE(3229), + [sym_logical_expression] = STATE(3229), + [sym_bitwise_expression] = STATE(3229), + [sym_cast_expression] = STATE(3229), + [sym_delete_expression] = STATE(3229), + [sym_field_expression] = STATE(3229), + [sym_compound_literal_expression] = STATE(3229), + [sym_lambda_expression] = STATE(3229), + [sym_char_literal] = STATE(3229), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3229), + [sym_equality_expression] = STATE(3229), + [sym_relational_expression] = STATE(3229), + [sym_sizeof_expression] = STATE(3229), + [sym_subscript_expression] = STATE(3229), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6905), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6907), - [sym_null] = ACTIONS(6907), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6905), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6907), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6907), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3229), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3229), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3229), + [sym_pointer_expression] = STATE(3229), + [sym_shift_expression] = STATE(3229), + [sym_math_expression] = STATE(3229), + [sym_call_expression] = STATE(3229), + [sym_new_expression] = STATE(3229), + [sym_raw_string_literal] = ACTIONS(6894), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6896), + [sym_null] = ACTIONS(6896), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6894), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6896), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6896), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2246] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3252), - [sym_logical_expression] = STATE(3252), - [sym_bitwise_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_new_expression] = STATE(3252), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(3252), - [sym_char_literal] = STATE(3252), - [sym_template_function] = STATE(3252), - [sym_conditional_expression] = STATE(3252), - [sym_equality_expression] = STATE(3252), - [sym_relational_expression] = STATE(3252), - [sym_delete_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_parenthesized_expression] = STATE(3252), - [sym_lambda_expression] = STATE(3252), - [sym_concatenated_string] = STATE(3252), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(3252), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(3252), - [sym_math_expression] = STATE(3252), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6909), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(6911), - [sym_null] = ACTIONS(6911), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6909), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(6911), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(6911), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [2235] = { + [sym_template_function] = STATE(3230), + [sym__expression] = STATE(3230), + [sym_logical_expression] = STATE(3230), + [sym_bitwise_expression] = STATE(3230), + [sym_cast_expression] = STATE(3230), + [sym_delete_expression] = STATE(3230), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(3230), + [sym_lambda_expression] = STATE(3230), + [sym_char_literal] = STATE(3230), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3230), + [sym_equality_expression] = STATE(3230), + [sym_relational_expression] = STATE(3230), + [sym_sizeof_expression] = STATE(3230), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3230), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(3230), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3230), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(3230), + [sym_math_expression] = STATE(3230), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(3230), + [sym_raw_string_literal] = ACTIONS(6898), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(6900), + [sym_null] = ACTIONS(6900), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6898), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(6900), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(6900), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [2247] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3253), - [sym_logical_expression] = STATE(3253), - [sym_bitwise_expression] = STATE(3253), - [sym_cast_expression] = STATE(3253), - [sym_new_expression] = STATE(3253), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3253), - [sym_char_literal] = STATE(3253), - [sym_template_function] = STATE(3253), - [sym_conditional_expression] = STATE(3253), - [sym_equality_expression] = STATE(3253), - [sym_relational_expression] = STATE(3253), - [sym_delete_expression] = STATE(3253), - [sym_sizeof_expression] = STATE(3253), - [sym_parenthesized_expression] = STATE(3253), - [sym_lambda_expression] = STATE(3253), - [sym_concatenated_string] = STATE(3253), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3253), - [sym_assignment_expression] = STATE(3253), - [sym_pointer_expression] = STATE(3253), - [sym_shift_expression] = STATE(3253), - [sym_math_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_lambda_capture_specifier] = STATE(196), + [2236] = { + [sym_template_function] = STATE(3231), + [sym__expression] = STATE(3231), + [sym_logical_expression] = STATE(3231), + [sym_bitwise_expression] = STATE(3231), + [sym_cast_expression] = STATE(3231), + [sym_delete_expression] = STATE(3231), + [sym_field_expression] = STATE(3231), + [sym_compound_literal_expression] = STATE(3231), + [sym_lambda_expression] = STATE(3231), + [sym_char_literal] = STATE(3231), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3231), + [sym_equality_expression] = STATE(3231), + [sym_relational_expression] = STATE(3231), + [sym_sizeof_expression] = STATE(3231), + [sym_subscript_expression] = STATE(3231), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(6913), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(6915), - [sym_null] = ACTIONS(6915), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(6913), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(6915), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(6915), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(3231), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3231), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3231), + [sym_pointer_expression] = STATE(3231), + [sym_shift_expression] = STATE(3231), + [sym_math_expression] = STATE(3231), + [sym_call_expression] = STATE(3231), + [sym_new_expression] = STATE(3231), + [sym_raw_string_literal] = ACTIONS(6902), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(6904), + [sym_null] = ACTIONS(6904), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(6902), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(6904), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(6904), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [2248] = { - [sym_string_literal] = STATE(3254), - [aux_sym_concatenated_string_repeat1] = STATE(3254), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [2237] = { + [sym_string_literal] = STATE(3232), + [aux_sym_concatenated_string_repeat1] = STATE(3232), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [2249] = { - [anon_sym_RPAREN] = ACTIONS(6917), + [2238] = { + [anon_sym_RPAREN] = ACTIONS(6906), [sym_comment] = ACTIONS(3), }, - [2250] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2239] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2251] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2251), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(6919), - [anon_sym_long] = ACTIONS(6919), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(6919), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(6919), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), + [2240] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2240), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(6908), + [anon_sym_long] = ACTIONS(6908), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(6908), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(6908), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), }, - [2252] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3256), - [sym_logical_expression] = STATE(3256), - [sym_bitwise_expression] = STATE(3256), - [sym_cast_expression] = STATE(3256), - [sym_new_expression] = STATE(3256), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3256), - [sym_char_literal] = STATE(3256), - [sym_template_function] = STATE(3256), - [sym_conditional_expression] = STATE(3256), - [sym_equality_expression] = STATE(3256), - [sym_relational_expression] = STATE(3256), - [sym_delete_expression] = STATE(3256), - [sym_sizeof_expression] = STATE(3256), - [sym_parenthesized_expression] = STATE(3256), - [sym_lambda_expression] = STATE(3256), - [sym_concatenated_string] = STATE(3256), - [sym_string_literal] = STATE(967), + [2241] = { + [sym_template_function] = STATE(3234), + [sym__expression] = STATE(3234), + [sym_logical_expression] = STATE(3234), + [sym_bitwise_expression] = STATE(3234), + [sym_cast_expression] = STATE(3234), + [sym_delete_expression] = STATE(3234), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3234), + [sym_lambda_expression] = STATE(3234), + [sym_char_literal] = STATE(3234), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3256), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3256), - [sym_math_expression] = STATE(3256), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3234), + [sym_equality_expression] = STATE(3234), + [sym_relational_expression] = STATE(3234), + [sym_sizeof_expression] = STATE(3234), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(6922), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(6924), - [sym_null] = ACTIONS(6924), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(6922), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(6924), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(6924), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(3234), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3234), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3234), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3234), + [sym_math_expression] = STATE(3234), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3234), + [sym_raw_string_literal] = ACTIONS(6911), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(6913), + [sym_null] = ACTIONS(6913), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(6911), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(6913), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(6913), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [2253] = { - [sym_initializer_list] = STATE(1570), - [sym_new_declarator] = STATE(1571), - [sym_argument_list] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [2242] = { + [sym_new_declarator] = STATE(1566), + [sym_argument_list] = STATE(1565), + [sym_initializer_list] = STATE(1565), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_GT_GT] = ACTIONS(3140), }, - [2254] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2243] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2255] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_RBRACE] = ACTIONS(3759), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2244] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_RBRACE] = ACTIONS(3905), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2256] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_RBRACE] = ACTIONS(3763), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2245] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2257] = { - [anon_sym_LPAREN2] = ACTIONS(6926), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_EQ] = ACTIONS(6928), - [anon_sym_LBRACE] = ACTIONS(6926), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_PIPE] = ACTIONS(6928), - [anon_sym_LT] = ACTIONS(6928), - [anon_sym_AMP] = ACTIONS(6928), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_GT_EQ] = ACTIONS(6926), - [anon_sym_STAR] = ACTIONS(6926), - [anon_sym_SLASH] = ACTIONS(6928), - [anon_sym_RBRACE] = ACTIONS(6926), - [anon_sym_COLON] = ACTIONS(6926), - [anon_sym_CARET] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6928), - [anon_sym_COMMA] = ACTIONS(6926), - [anon_sym_PIPE_PIPE] = ACTIONS(6926), - [anon_sym_DOT] = ACTIONS(6926), - [anon_sym_LT_LT] = ACTIONS(6926), - [anon_sym_LBRACK] = ACTIONS(6926), - [anon_sym_PERCENT] = ACTIONS(6926), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6926), - [anon_sym_SEMI] = ACTIONS(6926), - [anon_sym_BANG_EQ] = ACTIONS(6926), - [anon_sym_LT_EQ] = ACTIONS(6926), - [anon_sym_AMP_AMP] = ACTIONS(6926), - [anon_sym_DASH_GT] = ACTIONS(6926), - [anon_sym_PLUS_PLUS] = ACTIONS(6926), - [anon_sym_RPAREN] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6926), - [anon_sym_DASH_DASH] = ACTIONS(6926), + [2246] = { + [anon_sym_LPAREN2] = ACTIONS(6915), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_EQ] = ACTIONS(6917), + [anon_sym_LBRACE] = ACTIONS(6915), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(6915), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6915), + [anon_sym_STAR] = ACTIONS(6915), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_RBRACE] = ACTIONS(6915), + [anon_sym_COLON] = ACTIONS(6915), + [anon_sym_CARET] = ACTIONS(6915), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_COMMA] = ACTIONS(6915), + [anon_sym_PIPE_PIPE] = ACTIONS(6915), + [anon_sym_DOT] = ACTIONS(6915), + [anon_sym_LT_LT] = ACTIONS(6915), + [anon_sym_LBRACK] = ACTIONS(6915), + [anon_sym_PERCENT] = ACTIONS(6915), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6915), + [anon_sym_SEMI] = ACTIONS(6915), + [anon_sym_BANG_EQ] = ACTIONS(6915), + [anon_sym_LT_EQ] = ACTIONS(6915), + [anon_sym_AMP_AMP] = ACTIONS(6915), + [anon_sym_DASH_GT] = ACTIONS(6915), + [anon_sym_PLUS_PLUS] = ACTIONS(6915), + [anon_sym_RPAREN] = ACTIONS(6915), + [anon_sym_GT_GT] = ACTIONS(6915), + [anon_sym_DASH_DASH] = ACTIONS(6915), }, - [2258] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(6930), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(6930), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2247] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(6919), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(6919), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2259] = { + [2248] = { [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(6930), - [anon_sym_RBRACE] = ACTIONS(6930), + [anon_sym_COMMA] = ACTIONS(6919), + [anon_sym_RBRACE] = ACTIONS(6919), }, - [2260] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2249] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2261] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_RBRACE] = ACTIONS(3790), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2250] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_RBRACE] = ACTIONS(3936), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2262] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_RBRACE] = ACTIONS(3794), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2251] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_RBRACE] = ACTIONS(3940), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2263] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2252] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2264] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2253] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2265] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(6932), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2254] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(6921), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2266] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2255] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2267] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [2256] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(6934), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(6923), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [2268] = { - [aux_sym_initializer_list_repeat1] = STATE(2268), + [2257] = { + [aux_sym_initializer_list_repeat1] = STATE(2257), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(6936), - [anon_sym_RBRACE] = ACTIONS(6930), + [anon_sym_COMMA] = ACTIONS(6925), + [anon_sym_RBRACE] = ACTIONS(6919), }, - [2269] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(6939), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(6939), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2258] = { + [sym_string_literal] = STATE(2258), + [aux_sym_concatenated_string_repeat1] = STATE(2258), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3890), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [2270] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(6939), - [anon_sym_RBRACE] = ACTIONS(6939), + [2259] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(6928), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(6928), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2271] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(6941), + [2260] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(6928), + [anon_sym_RBRACE] = ACTIONS(6928), }, - [2272] = { - [sym_string_literal] = STATE(2272), - [aux_sym_concatenated_string_repeat1] = STATE(2272), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_RBRACE] = ACTIONS(3732), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [2261] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(6930), }, - [2273] = { - [sym_pointer_type_declarator] = STATE(3261), - [sym_array_type_declarator] = STATE(3261), - [sym_function_type_declarator] = STATE(3261), - [sym__type_declarator] = STATE(3261), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [2262] = { + [sym_pointer_type_declarator] = STATE(3239), + [sym_array_type_declarator] = STATE(3239), + [sym_function_type_declarator] = STATE(3239), + [sym__type_declarator] = STATE(3239), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [2274] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(3263), - [anon_sym_LPAREN2] = ACTIONS(587), + [2263] = { + [aux_sym_type_definition_repeat2] = STATE(3241), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(6943), + [anon_sym_SEMI] = ACTIONS(6932), }, - [2275] = { - [sym_do_statement] = STATE(3265), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [2264] = { + [sym_do_statement] = STATE(3243), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(3265), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(3265), - [sym_if_statement] = STATE(3265), - [sym_switch_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_return_statement] = STATE(3265), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3243), + [sym_try_statement] = STATE(3243), + [aux_sym_switch_body_repeat1] = STATE(3243), + [sym_if_statement] = STATE(3243), + [sym_switch_statement] = STATE(3243), + [sym_for_statement] = STATE(3243), + [sym_return_statement] = STATE(3243), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(3265), - [aux_sym_switch_body_repeat1] = STATE(3265), - [sym_case_statement] = STATE(3265), - [sym_break_statement] = STATE(3265), - [sym_continue_statement] = STATE(3265), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(3243), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3243), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3265), - [sym_labeled_statement] = STATE(3265), - [sym_expression_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(3243), + [sym_for_range_loop] = STATE(3243), + [sym_compound_statement] = STATE(3243), + [sym_labeled_statement] = STATE(3243), + [sym_expression_statement] = STATE(3243), + [sym_while_statement] = STATE(3243), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(6945), + [anon_sym_RBRACE] = ACTIONS(6934), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2276] = { - [anon_sym_DASH] = ACTIONS(2156), - [sym_raw_string_literal] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [anon_sym_mutable] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [aux_sym_preproc_if_token2] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_sizeof] = ACTIONS(2156), - [anon_sym_volatile] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_typedef] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_explicit] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), - [anon_sym__Atomic] = ACTIONS(2156), - [sym_number_literal] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_constexpr] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), - [aux_sym_preproc_elif_token1] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2158), - [anon_sym_struct] = ACTIONS(2156), - [sym_auto] = ACTIONS(2156), - [anon_sym_signed] = ACTIONS(2156), - [anon_sym_long] = ACTIONS(2156), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_using] = ACTIONS(2156), - [aux_sym_preproc_else_token1] = ACTIONS(2156), - [sym_preproc_directive] = ACTIONS(2156), - [aux_sym_preproc_if_token1] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_typename] = ACTIONS(2156), - [anon_sym_short] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_goto] = ACTIONS(2156), - [sym_operator_name] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [aux_sym_preproc_include_token1] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [sym_primitive_type] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_nullptr] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_template] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [aux_sym_preproc_def_token1] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_restrict] = ACTIONS(2156), + [2265] = { + [anon_sym_DASH] = ACTIONS(2158), + [sym_raw_string_literal] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2158), + [sym_true] = ACTIONS(2158), + [anon_sym_mutable] = ACTIONS(2158), + [sym_null] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [aux_sym_preproc_if_token2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym_volatile] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2158), + [anon_sym_typedef] = ACTIONS(2158), + [anon_sym_switch] = ACTIONS(2158), + [anon_sym_explicit] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2158), + [anon_sym_delete] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2158), + [anon_sym__Atomic] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_constexpr] = ACTIONS(2158), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2158), + [aux_sym_preproc_elif_token1] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2158), + [sym_auto] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2158), + [anon_sym_long] = ACTIONS(2158), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2158), + [aux_sym_preproc_else_token1] = ACTIONS(2158), + [sym_preproc_directive] = ACTIONS(2158), + [aux_sym_preproc_if_token1] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_typename] = ACTIONS(2158), + [anon_sym_short] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2158), + [anon_sym_goto] = ACTIONS(2158), + [sym_operator_name] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [aux_sym_preproc_include_token1] = ACTIONS(2158), + [anon_sym_register] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_LBRACK] = ACTIONS(2158), + [anon_sym_class] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [sym_primitive_type] = ACTIONS(2158), + [sym_false] = ACTIONS(2158), + [sym_nullptr] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_template] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2158), }, - [2277] = { - [sym_template_argument_list] = STATE(377), + [2266] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -97653,7 +97494,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -97663,7 +97504,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(2457), + [anon_sym_COLON] = ACTIONS(2459), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -97689,281 +97530,281 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [2278] = { - [anon_sym_DASH] = ACTIONS(2353), - [sym_raw_string_literal] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [anon_sym_mutable] = ACTIONS(2353), - [sym_null] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [aux_sym_preproc_if_token2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_sizeof] = ACTIONS(2353), - [anon_sym_volatile] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_explicit] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2353), - [anon_sym_delete] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), - [anon_sym__Atomic] = ACTIONS(2353), - [sym_number_literal] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_constexpr] = ACTIONS(2353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), - [aux_sym_preproc_elif_token1] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2353), - [sym_auto] = ACTIONS(2353), - [anon_sym_signed] = ACTIONS(2353), - [anon_sym_long] = ACTIONS(2353), - [anon_sym_COLON_COLON] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2353), - [aux_sym_preproc_else_token1] = ACTIONS(2353), - [sym_preproc_directive] = ACTIONS(2353), - [aux_sym_preproc_if_token1] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_typename] = ACTIONS(2353), - [anon_sym_short] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_goto] = ACTIONS(2353), - [sym_operator_name] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [aux_sym_preproc_include_token1] = ACTIONS(2353), - [anon_sym_register] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [sym_primitive_type] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_nullptr] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_template] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2353), + [2267] = { + [anon_sym_DASH] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2355), + [sym_true] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [aux_sym_preproc_if_token2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), + [aux_sym_preproc_elif_token1] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2355), + [sym_auto] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2355), + [aux_sym_preproc_else_token1] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [aux_sym_preproc_if_token1] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [sym_operator_name] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [sym_primitive_type] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2355), }, - [2279] = { - [anon_sym_DASH] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2453), - [sym_true] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [sym_null] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [aux_sym_preproc_if_token2] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_sizeof] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_typedef] = ACTIONS(2451), - [anon_sym_switch] = ACTIONS(2451), - [anon_sym_explicit] = ACTIONS(2451), - [sym_identifier] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [sym_number_literal] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2451), - [aux_sym_preproc_elif_token1] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(2451), - [sym_auto] = ACTIONS(2451), - [anon_sym_signed] = ACTIONS(2451), - [anon_sym_long] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2451), - [aux_sym_preproc_else_token1] = ACTIONS(2451), - [sym_preproc_directive] = ACTIONS(2451), - [aux_sym_preproc_if_token1] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_typename] = ACTIONS(2451), - [anon_sym_short] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [sym_operator_name] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [aux_sym_preproc_include_token1] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [sym_primitive_type] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nullptr] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_SEMI] = ACTIONS(2453), - [aux_sym_preproc_def_token1] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_restrict] = ACTIONS(2451), + [2268] = { + [anon_sym_DASH] = ACTIONS(2453), + [sym_raw_string_literal] = ACTIONS(2455), + [sym_true] = ACTIONS(2453), + [anon_sym_mutable] = ACTIONS(2453), + [sym_null] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [aux_sym_preproc_if_token2] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_sizeof] = ACTIONS(2453), + [anon_sym_volatile] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_typedef] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_explicit] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2453), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2453), + [anon_sym__Atomic] = ACTIONS(2453), + [sym_number_literal] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_constexpr] = ACTIONS(2453), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2455), + [anon_sym_namespace] = ACTIONS(2453), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2453), + [aux_sym_preproc_elif_token1] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2453), + [sym_auto] = ACTIONS(2453), + [anon_sym_signed] = ACTIONS(2453), + [anon_sym_long] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2455), + [anon_sym_using] = ACTIONS(2453), + [aux_sym_preproc_else_token1] = ACTIONS(2453), + [sym_preproc_directive] = ACTIONS(2453), + [aux_sym_preproc_if_token1] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_typename] = ACTIONS(2453), + [anon_sym_short] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [sym_operator_name] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [aux_sym_preproc_include_token1] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [sym_primitive_type] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nullptr] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_template] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [aux_sym_preproc_def_token1] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2453), }, - [2280] = { - [aux_sym_preproc_if_token2] = ACTIONS(6947), + [2269] = { + [aux_sym_preproc_if_token2] = ACTIONS(6936), [sym_comment] = ACTIONS(3), }, - [2281] = { + [2270] = { [sym_goto_statement] = STATE(1296), [sym_preproc_function_def] = STATE(1296), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(1296), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(1296), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(1296), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(3267), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1296), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(3245), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), [sym_switch_statement] = STATE(1296), + [sym_structured_binding_declarator] = STATE(60), [sym_return_statement] = STATE(1296), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_namespace_definition] = STATE(1296), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(51), [sym_type_definition] = STATE(1296), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1296), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1296), + [sym_constructor_or_destructor_definition] = STATE(1296), + [sym_reference_declarator] = STATE(60), [sym_break_statement] = STATE(1296), [sym_preproc_include] = STATE(1296), - [sym_assignment_expression] = STATE(482), + [sym_assignment_expression] = STATE(484), [sym_preproc_ifdef] = STATE(1296), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(1296), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(1296), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), [sym_compound_statement] = STATE(1296), - [sym_template_instantiation] = STATE(1296), - [sym_constructor_or_destructor_definition] = STATE(1296), [sym_expression_statement] = STATE(1296), - [sym_reference_declarator] = STATE(56), [sym_do_statement] = STATE(1296), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), [sym_preproc_def] = STATE(1296), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_function_definition] = STATE(1296), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), [sym__empty_declaration] = STATE(1296), - [aux_sym_translation_unit_repeat1] = STATE(1296), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(1296), - [sym_preproc_else] = STATE(3267), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(3245), [sym_if_statement] = STATE(1296), [sym_for_statement] = STATE(1296), - [sym_comma_expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_preproc_call] = STATE(1296), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(1296), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(1296), - [sym_sized_type_specifier] = STATE(53), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(1296), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1296), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), [sym_continue_statement] = STATE(1296), [sym_preproc_if] = STATE(1296), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1296), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), [sym_linkage_specification] = STATE(1296), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1296), + [aux_sym_translation_unit_repeat1] = STATE(1296), + [sym_enum_specifier] = STATE(55), [sym_labeled_statement] = STATE(1296), [sym_while_statement] = STATE(1296), - [sym_raw_string_literal] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(6949), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(6938), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -97971,10 +97812,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -97982,292 +97823,294 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2282] = { - [anon_sym_DASH] = ACTIONS(2569), - [sym_raw_string_literal] = ACTIONS(2571), - [sym_true] = ACTIONS(2569), - [anon_sym_mutable] = ACTIONS(2569), - [sym_null] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [aux_sym_preproc_if_token2] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_sizeof] = ACTIONS(2569), - [anon_sym_volatile] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_typedef] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_explicit] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2569), - [anon_sym_delete] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2569), - [anon_sym__Atomic] = ACTIONS(2569), - [sym_number_literal] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_constexpr] = ACTIONS(2569), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2571), - [anon_sym_namespace] = ACTIONS(2569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2569), - [aux_sym_preproc_elif_token1] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2569), - [sym_auto] = ACTIONS(2569), - [anon_sym_signed] = ACTIONS(2569), - [anon_sym_long] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2571), - [anon_sym_using] = ACTIONS(2569), - [aux_sym_preproc_else_token1] = ACTIONS(2569), - [sym_preproc_directive] = ACTIONS(2569), - [aux_sym_preproc_if_token1] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2569), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_short] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_goto] = ACTIONS(2569), - [sym_operator_name] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [aux_sym_preproc_include_token1] = ACTIONS(2569), - [anon_sym_register] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [sym_primitive_type] = ACTIONS(2569), - [sym_false] = ACTIONS(2569), - [sym_nullptr] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [aux_sym_preproc_def_token1] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2569), + [2271] = { + [anon_sym_DASH] = ACTIONS(2571), + [sym_raw_string_literal] = ACTIONS(2573), + [sym_true] = ACTIONS(2571), + [anon_sym_mutable] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [aux_sym_preproc_if_token2] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_explicit] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_constexpr] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2571), + [aux_sym_preproc_elif_token1] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2571), + [sym_auto] = ACTIONS(2571), + [anon_sym_signed] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2571), + [aux_sym_preproc_else_token1] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [aux_sym_preproc_if_token1] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_typename] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [sym_operator_name] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [aux_sym_preproc_include_token1] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_nullptr] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_template] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2573), + [aux_sym_preproc_def_token1] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_restrict] = ACTIONS(2571), }, - [2283] = { - [sym_reference_declarator] = STATE(1299), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(1299), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(1299), - [sym_destructor_name] = STATE(1299), - [sym__declarator] = STATE(1299), - [sym_init_declarator] = STATE(1300), - [sym_array_declarator] = STATE(1299), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(1299), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), + [2272] = { + [sym_template_function] = STATE(1293), + [sym_destructor_name] = STATE(1293), + [sym_pointer_declarator] = STATE(1293), + [sym_structured_binding_declarator] = STATE(1293), + [sym__declarator] = STATE(1293), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(1293), + [sym_array_declarator] = STATE(1293), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(1294), + [sym_function_declarator] = STATE(1293), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), [sym_operator_name] = ACTIONS(2565), [sym_comment] = ACTIONS(3), }, - [2284] = { - [anon_sym_DASH] = ACTIONS(2679), - [sym_raw_string_literal] = ACTIONS(2681), - [sym_true] = ACTIONS(2679), - [anon_sym_mutable] = ACTIONS(2679), - [sym_null] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [aux_sym_preproc_if_token2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_sizeof] = ACTIONS(2679), - [anon_sym_volatile] = ACTIONS(2679), - [anon_sym_PLUS] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2679), - [anon_sym_switch] = ACTIONS(2679), - [anon_sym_explicit] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2679), - [anon_sym_delete] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), - [anon_sym__Atomic] = ACTIONS(2679), - [sym_number_literal] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_constexpr] = ACTIONS(2679), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), - [aux_sym_preproc_elif_token1] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2679), - [sym_auto] = ACTIONS(2679), - [anon_sym_signed] = ACTIONS(2679), - [anon_sym_long] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2679), - [aux_sym_preproc_else_token1] = ACTIONS(2679), - [sym_preproc_directive] = ACTIONS(2679), - [aux_sym_preproc_if_token1] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_typename] = ACTIONS(2679), - [anon_sym_short] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2679), - [anon_sym_goto] = ACTIONS(2679), - [sym_operator_name] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [aux_sym_preproc_include_token1] = ACTIONS(2679), - [anon_sym_register] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [sym_primitive_type] = ACTIONS(2679), - [sym_false] = ACTIONS(2679), - [sym_nullptr] = ACTIONS(2679), - [anon_sym_do] = ACTIONS(2679), - [anon_sym_template] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2679), + [2273] = { + [anon_sym_DASH] = ACTIONS(2681), + [sym_raw_string_literal] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [aux_sym_preproc_if_token2] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [aux_sym_preproc_elif_token1] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2681), + [sym_auto] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_using] = ACTIONS(2681), + [aux_sym_preproc_else_token1] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [sym_operator_name] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2683), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_restrict] = ACTIONS(2681), }, - [2285] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [2274] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -98309,7 +98152,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(6951), + [anon_sym_RBRACE] = ACTIONS(6940), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -98341,204 +98184,204 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2286] = { - [anon_sym_DASH] = ACTIONS(2685), - [sym_raw_string_literal] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [aux_sym_preproc_elif_token1] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2685), - [sym_auto] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2685), - [aux_sym_preproc_else_token1] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [sym_operator_name] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2685), + [2275] = { + [anon_sym_DASH] = ACTIONS(2687), + [sym_raw_string_literal] = ACTIONS(2689), + [sym_true] = ACTIONS(2687), + [anon_sym_mutable] = ACTIONS(2687), + [sym_null] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [aux_sym_preproc_if_token2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_sizeof] = ACTIONS(2687), + [anon_sym_volatile] = ACTIONS(2687), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2687), + [anon_sym_switch] = ACTIONS(2687), + [anon_sym_explicit] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2687), + [anon_sym_delete] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), + [anon_sym__Atomic] = ACTIONS(2687), + [sym_number_literal] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_constexpr] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), + [aux_sym_preproc_elif_token1] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2687), + [sym_auto] = ACTIONS(2687), + [anon_sym_signed] = ACTIONS(2687), + [anon_sym_long] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2687), + [aux_sym_preproc_else_token1] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(2687), + [aux_sym_preproc_if_token1] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_typename] = ACTIONS(2687), + [anon_sym_short] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_goto] = ACTIONS(2687), + [sym_operator_name] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [aux_sym_preproc_include_token1] = ACTIONS(2687), + [anon_sym_register] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [sym_primitive_type] = ACTIONS(2687), + [sym_false] = ACTIONS(2687), + [sym_nullptr] = ACTIONS(2687), + [anon_sym_do] = ACTIONS(2687), + [anon_sym_template] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2687), }, - [2287] = { - [aux_sym_preproc_if_token2] = ACTIONS(6953), + [2276] = { + [aux_sym_preproc_if_token2] = ACTIONS(6942), [sym_comment] = ACTIONS(3), }, - [2288] = { + [2277] = { [sym_goto_statement] = STATE(1296), [sym_preproc_function_def] = STATE(1296), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(1296), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(1296), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(1296), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(3269), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1296), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(3247), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), [sym_switch_statement] = STATE(1296), + [sym_structured_binding_declarator] = STATE(60), [sym_return_statement] = STATE(1296), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_namespace_definition] = STATE(1296), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(51), [sym_type_definition] = STATE(1296), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1296), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1296), + [sym_constructor_or_destructor_definition] = STATE(1296), + [sym_reference_declarator] = STATE(60), [sym_break_statement] = STATE(1296), [sym_preproc_include] = STATE(1296), - [sym_assignment_expression] = STATE(482), + [sym_assignment_expression] = STATE(484), [sym_preproc_ifdef] = STATE(1296), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(1296), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(1296), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), [sym_compound_statement] = STATE(1296), - [sym_template_instantiation] = STATE(1296), - [sym_constructor_or_destructor_definition] = STATE(1296), [sym_expression_statement] = STATE(1296), - [sym_reference_declarator] = STATE(56), [sym_do_statement] = STATE(1296), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), [sym_preproc_def] = STATE(1296), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_function_definition] = STATE(1296), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), [sym__empty_declaration] = STATE(1296), - [aux_sym_translation_unit_repeat1] = STATE(1296), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(1296), - [sym_preproc_else] = STATE(3269), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(3247), [sym_if_statement] = STATE(1296), [sym_for_statement] = STATE(1296), - [sym_comma_expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_preproc_call] = STATE(1296), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(1296), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(1296), - [sym_sized_type_specifier] = STATE(53), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(1296), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1296), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), [sym_continue_statement] = STATE(1296), [sym_preproc_if] = STATE(1296), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1296), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), [sym_linkage_specification] = STATE(1296), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1296), + [aux_sym_translation_unit_repeat1] = STATE(1296), + [sym_enum_specifier] = STATE(55), [sym_labeled_statement] = STATE(1296), [sym_while_statement] = STATE(1296), - [sym_raw_string_literal] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(6955), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(6944), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -98546,10 +98389,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -98557,327 +98400,327 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2289] = { - [anon_sym_DASH] = ACTIONS(2707), - [sym_raw_string_literal] = ACTIONS(2709), - [anon_sym_else] = ACTIONS(2707), - [sym_true] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [sym_null] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [aux_sym_preproc_if_token2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2707), - [anon_sym_catch] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [aux_sym_preproc_elif_token1] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2707), - [sym_auto] = ACTIONS(2707), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2707), - [aux_sym_preproc_else_token1] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [sym_operator_name] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [aux_sym_preproc_include_token1] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [sym_nullptr] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2707), + [2278] = { + [anon_sym_DASH] = ACTIONS(2709), + [sym_raw_string_literal] = ACTIONS(2711), + [anon_sym_else] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym_namespace] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [aux_sym_preproc_elif_token1] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2709), + [sym_auto] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_using] = ACTIONS(2709), + [aux_sym_preproc_else_token1] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [sym_operator_name] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2711), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_restrict] = ACTIONS(2709), }, - [2290] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [2279] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(6957), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(6946), }, - [2291] = { + [2280] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(6957), + [anon_sym_SEMI] = ACTIONS(6946), }, - [2292] = { - [sym_macro_type_specifier] = STATE(1480), - [sym_class_specifier] = STATE(1480), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1480), - [sym__type_specifier] = STATE(1480), - [sym_type_descriptor] = STATE(3271), - [sym_type_qualifier] = STATE(1482), - [sym_struct_specifier] = STATE(1480), - [sym_union_specifier] = STATE(1480), - [sym_dependent_type] = STATE(1480), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(1482), - [aux_sym_sized_type_specifier_repeat1] = STATE(1483), - [sym_enum_specifier] = STATE(1480), - [sym_scoped_type_identifier] = STATE(87), + [2281] = { + [aux_sym_type_definition_repeat1] = STATE(1475), + [sym_macro_type_specifier] = STATE(1477), + [sym_class_specifier] = STATE(1477), + [aux_sym_sized_type_specifier_repeat1] = STATE(1476), + [sym_sized_type_specifier] = STATE(1477), + [sym__type_specifier] = STATE(1477), + [sym_type_descriptor] = STATE(3249), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_type_qualifier] = STATE(1475), + [sym_struct_specifier] = STATE(1477), + [sym_union_specifier] = STATE(1477), + [sym_dependent_type] = STATE(1477), + [sym_enum_specifier] = STATE(1477), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2933), + [sym_auto] = ACTIONS(2933), + [anon_sym_signed] = ACTIONS(2935), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2935), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(147), [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2935), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2937), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2935), [anon_sym_restrict] = ACTIONS(11), }, - [2293] = { - [anon_sym_DASH] = ACTIONS(2937), - [sym_raw_string_literal] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [sym_null] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym_namespace] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [aux_sym_preproc_elif_token1] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2937), - [sym_auto] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2937), - [aux_sym_preproc_else_token1] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [sym_operator_name] = ACTIONS(2939), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [sym_nullptr] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2939), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_restrict] = ACTIONS(2937), + [2282] = { + [anon_sym_DASH] = ACTIONS(2939), + [sym_raw_string_literal] = ACTIONS(2941), + [sym_true] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [sym_null] = ACTIONS(2939), + [anon_sym_break] = ACTIONS(2939), + [aux_sym_preproc_if_token2] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_switch] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2939), + [anon_sym_delete] = ACTIONS(2939), + [anon_sym_continue] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [sym_number_literal] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [anon_sym_namespace] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [aux_sym_preproc_elif_token1] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2939), + [sym_auto] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2939), + [aux_sym_preproc_else_token1] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [anon_sym_new] = ACTIONS(2939), + [anon_sym_goto] = ACTIONS(2939), + [sym_operator_name] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2939), + [aux_sym_preproc_include_token1] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [sym_false] = ACTIONS(2939), + [sym_nullptr] = ACTIONS(2939), + [anon_sym_do] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_return] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2941), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2941), + [anon_sym_restrict] = ACTIONS(2939), }, - [2294] = { - [anon_sym_DASH] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(658), - [anon_sym_else] = ACTIONS(656), - [sym_true] = ACTIONS(656), - [anon_sym_mutable] = ACTIONS(656), - [sym_null] = ACTIONS(656), - [anon_sym_break] = ACTIONS(656), - [aux_sym_preproc_if_token2] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_sizeof] = ACTIONS(656), - [anon_sym_volatile] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_typedef] = ACTIONS(656), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_explicit] = ACTIONS(656), - [sym_identifier] = ACTIONS(656), - [anon_sym_delete] = ACTIONS(656), - [anon_sym_continue] = ACTIONS(656), - [aux_sym_preproc_ifdef_token1] = ACTIONS(656), - [anon_sym__Atomic] = ACTIONS(656), - [sym_number_literal] = ACTIONS(658), - [anon_sym_extern] = ACTIONS(656), - [anon_sym_enum] = ACTIONS(656), - [anon_sym_constexpr] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(658), - [anon_sym_namespace] = ACTIONS(656), - [aux_sym_preproc_ifdef_token2] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(658), - [anon_sym_LPAREN2] = ACTIONS(658), - [anon_sym_struct] = ACTIONS(656), - [sym_auto] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(656), - [anon_sym_long] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(658), - [anon_sym_using] = ACTIONS(656), - [sym_preproc_directive] = ACTIONS(656), - [aux_sym_preproc_if_token1] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_static] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_union] = ACTIONS(656), - [anon_sym_typename] = ACTIONS(656), - [anon_sym_short] = ACTIONS(656), - [anon_sym_new] = ACTIONS(656), - [anon_sym_goto] = ACTIONS(656), - [sym_operator_name] = ACTIONS(658), - [anon_sym_while] = ACTIONS(656), - [anon_sym_try] = ACTIONS(656), - [anon_sym_for] = ACTIONS(656), - [aux_sym_preproc_include_token1] = ACTIONS(656), - [anon_sym_register] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_const] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_class] = ACTIONS(656), - [anon_sym_if] = ACTIONS(656), - [sym_primitive_type] = ACTIONS(656), - [sym_false] = ACTIONS(656), - [sym_nullptr] = ACTIONS(656), - [anon_sym_do] = ACTIONS(656), - [anon_sym_template] = ACTIONS(656), - [anon_sym_return] = ACTIONS(656), - [anon_sym_TILDE] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(658), - [aux_sym_preproc_def_token1] = ACTIONS(656), - [anon_sym_AMP_AMP] = ACTIONS(658), - [anon_sym_inline] = ACTIONS(656), - [anon_sym_PLUS_PLUS] = ACTIONS(658), - [anon_sym_restrict] = ACTIONS(656), + [2283] = { + [anon_sym_DASH] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(662), + [anon_sym_else] = ACTIONS(660), + [sym_true] = ACTIONS(660), + [anon_sym_mutable] = ACTIONS(660), + [sym_null] = ACTIONS(660), + [anon_sym_break] = ACTIONS(660), + [aux_sym_preproc_if_token2] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_sizeof] = ACTIONS(660), + [anon_sym_volatile] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_typedef] = ACTIONS(660), + [anon_sym_switch] = ACTIONS(660), + [anon_sym_explicit] = ACTIONS(660), + [sym_identifier] = ACTIONS(660), + [anon_sym_delete] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(660), + [anon_sym__Atomic] = ACTIONS(660), + [sym_number_literal] = ACTIONS(662), + [anon_sym_extern] = ACTIONS(660), + [anon_sym_enum] = ACTIONS(660), + [anon_sym_constexpr] = ACTIONS(660), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(662), + [anon_sym_namespace] = ACTIONS(660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_LPAREN2] = ACTIONS(662), + [anon_sym_struct] = ACTIONS(660), + [sym_auto] = ACTIONS(660), + [anon_sym_signed] = ACTIONS(660), + [anon_sym_long] = ACTIONS(660), + [anon_sym_COLON_COLON] = ACTIONS(662), + [anon_sym_using] = ACTIONS(660), + [sym_preproc_directive] = ACTIONS(660), + [aux_sym_preproc_if_token1] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(660), + [anon_sym_static] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_union] = ACTIONS(660), + [anon_sym_typename] = ACTIONS(660), + [anon_sym_short] = ACTIONS(660), + [anon_sym_new] = ACTIONS(660), + [anon_sym_goto] = ACTIONS(660), + [sym_operator_name] = ACTIONS(662), + [anon_sym_while] = ACTIONS(660), + [anon_sym_try] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [aux_sym_preproc_include_token1] = ACTIONS(660), + [anon_sym_register] = ACTIONS(660), + [anon_sym_DQUOTE] = ACTIONS(662), + [anon_sym_const] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_class] = ACTIONS(660), + [anon_sym_if] = ACTIONS(660), + [sym_primitive_type] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_nullptr] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_template] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(662), + [aux_sym_preproc_def_token1] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(662), + [anon_sym_inline] = ACTIONS(660), + [anon_sym_PLUS_PLUS] = ACTIONS(662), + [anon_sym_restrict] = ACTIONS(660), }, - [2295] = { - [sym_union_specifier] = STATE(3272), - [sym_macro_type_specifier] = STATE(3272), - [sym_class_specifier] = STATE(3272), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(3272), - [sym_scoped_namespace_identifier] = STATE(88), + [2284] = { + [sym_union_specifier] = STATE(3250), + [sym_macro_type_specifier] = STATE(3250), + [sym_class_specifier] = STATE(3250), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(3250), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(3272), - [sym_enum_specifier] = STATE(3272), - [sym_dependent_type] = STATE(3272), - [sym_struct_specifier] = STATE(3272), - [sym_scoped_type_identifier] = STATE(87), + [sym__type_specifier] = STATE(3250), + [sym_struct_specifier] = STATE(3250), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(3250), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_type_qualifier] = STATE(388), + [sym_dependent_type] = STATE(3250), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(6959), + [sym_auto] = ACTIONS(6948), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -98887,7 +98730,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(6959), + [sym_primitive_type] = ACTIONS(6948), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -98898,296 +98741,296 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [2296] = { - [sym_pointer_type_declarator] = STATE(3273), - [sym_array_type_declarator] = STATE(3273), - [sym_function_type_declarator] = STATE(3273), - [sym__type_declarator] = STATE(3273), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [2285] = { + [sym_pointer_type_declarator] = STATE(3251), + [sym_array_type_declarator] = STATE(3251), + [sym_function_type_declarator] = STATE(3251), + [sym__type_declarator] = STATE(3251), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [2297] = { - [sym_switch_body] = STATE(3275), - [anon_sym_LBRACE] = ACTIONS(6961), + [2286] = { + [sym_switch_body] = STATE(3253), + [anon_sym_LBRACE] = ACTIONS(6950), [sym_comment] = ACTIONS(3), }, - [2298] = { - [sym_do_statement] = STATE(3277), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [2287] = { + [sym_do_statement] = STATE(3255), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(3277), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(3277), - [sym_if_statement] = STATE(3277), - [sym_switch_statement] = STATE(3277), - [sym_for_statement] = STATE(3277), - [sym_return_statement] = STATE(3277), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3255), + [sym_try_statement] = STATE(3255), + [sym_if_statement] = STATE(3255), + [sym_switch_statement] = STATE(3255), + [sym_for_statement] = STATE(3255), + [sym_return_statement] = STATE(3255), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(3277), - [sym_break_statement] = STATE(3277), - [sym_continue_statement] = STATE(3277), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3255), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3277), - [sym_labeled_statement] = STATE(3277), - [sym_expression_statement] = STATE(3277), - [sym_while_statement] = STATE(3277), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(3255), + [sym_for_range_loop] = STATE(3255), + [sym_compound_statement] = STATE(3255), + [sym_labeled_statement] = STATE(3255), + [sym_expression_statement] = STATE(3255), + [sym_while_statement] = STATE(3255), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2299] = { - [anon_sym_DASH] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(804), - [anon_sym_else] = ACTIONS(802), - [sym_true] = ACTIONS(802), - [anon_sym_mutable] = ACTIONS(802), - [sym_null] = ACTIONS(802), - [anon_sym_break] = ACTIONS(802), - [aux_sym_preproc_if_token2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(804), - [anon_sym_sizeof] = ACTIONS(802), - [anon_sym_volatile] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_typedef] = ACTIONS(802), - [anon_sym_switch] = ACTIONS(802), - [anon_sym_explicit] = ACTIONS(802), - [sym_identifier] = ACTIONS(802), - [anon_sym_delete] = ACTIONS(802), - [anon_sym_continue] = ACTIONS(802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(802), - [anon_sym__Atomic] = ACTIONS(802), - [sym_number_literal] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(802), - [anon_sym_enum] = ACTIONS(802), - [anon_sym_constexpr] = ACTIONS(802), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_struct] = ACTIONS(802), - [sym_auto] = ACTIONS(802), - [anon_sym_signed] = ACTIONS(802), - [anon_sym_long] = ACTIONS(802), - [anon_sym_COLON_COLON] = ACTIONS(804), - [anon_sym_using] = ACTIONS(802), - [sym_preproc_directive] = ACTIONS(802), - [aux_sym_preproc_if_token1] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - [anon_sym_static] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_union] = ACTIONS(802), - [anon_sym_typename] = ACTIONS(802), - [anon_sym_short] = ACTIONS(802), - [anon_sym_new] = ACTIONS(802), - [anon_sym_goto] = ACTIONS(802), - [sym_operator_name] = ACTIONS(804), - [anon_sym_while] = ACTIONS(802), - [anon_sym_try] = ACTIONS(802), - [anon_sym_for] = ACTIONS(802), - [aux_sym_preproc_include_token1] = ACTIONS(802), - [anon_sym_register] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_const] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_class] = ACTIONS(802), - [anon_sym_if] = ACTIONS(802), - [sym_primitive_type] = ACTIONS(802), - [sym_false] = ACTIONS(802), - [sym_nullptr] = ACTIONS(802), - [anon_sym_do] = ACTIONS(802), - [anon_sym_template] = ACTIONS(802), - [anon_sym_return] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(804), - [aux_sym_preproc_def_token1] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_inline] = ACTIONS(802), - [anon_sym_PLUS_PLUS] = ACTIONS(804), - [anon_sym_restrict] = ACTIONS(802), + [2288] = { + [anon_sym_DASH] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(808), + [anon_sym_else] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [anon_sym_mutable] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [aux_sym_preproc_if_token2] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(806), + [anon_sym_volatile] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_typedef] = ACTIONS(806), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_explicit] = ACTIONS(806), + [sym_identifier] = ACTIONS(806), + [anon_sym_delete] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(806), + [anon_sym__Atomic] = ACTIONS(806), + [sym_number_literal] = ACTIONS(808), + [anon_sym_extern] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_constexpr] = ACTIONS(806), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_LPAREN2] = ACTIONS(808), + [anon_sym_struct] = ACTIONS(806), + [sym_auto] = ACTIONS(806), + [anon_sym_signed] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_using] = ACTIONS(806), + [sym_preproc_directive] = ACTIONS(806), + [aux_sym_preproc_if_token1] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_union] = ACTIONS(806), + [anon_sym_typename] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_new] = ACTIONS(806), + [anon_sym_goto] = ACTIONS(806), + [sym_operator_name] = ACTIONS(808), + [anon_sym_while] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [aux_sym_preproc_include_token1] = ACTIONS(806), + [anon_sym_register] = ACTIONS(806), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_const] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [sym_primitive_type] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_nullptr] = ACTIONS(806), + [anon_sym_do] = ACTIONS(806), + [anon_sym_template] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(808), + [aux_sym_preproc_def_token1] = ACTIONS(806), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_restrict] = ACTIONS(806), }, - [2300] = { - [sym_goto_statement] = STATE(3280), - [sym_preproc_function_def] = STATE(3280), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(3280), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(3280), + [2289] = { + [sym_goto_statement] = STATE(3258), + [sym_preproc_function_def] = STATE(3258), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(3258), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(3279), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(3280), - [sym_return_statement] = STATE(3280), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3258), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(3257), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(3258), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(3258), + [sym_namespace_definition] = STATE(3258), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(3280), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(3280), - [sym_break_statement] = STATE(3280), - [sym_preproc_include] = STATE(3280), - [sym_assignment_expression] = STATE(482), - [sym_preproc_ifdef] = STATE(3280), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(3280), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(3258), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(3258), + [sym_constructor_or_destructor_definition] = STATE(3258), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(3258), + [sym_preproc_include] = STATE(3258), + [sym_assignment_expression] = STATE(484), + [sym_preproc_ifdef] = STATE(3258), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(3258), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), - [sym_compound_statement] = STATE(3280), - [sym_template_instantiation] = STATE(3280), - [sym_constructor_or_destructor_definition] = STATE(3280), - [sym_expression_statement] = STATE(3280), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(3280), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), - [sym_preproc_def] = STATE(3280), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), - [sym_function_definition] = STATE(3280), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(3280), - [aux_sym_translation_unit_repeat1] = STATE(3280), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(3280), - [sym_preproc_else] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_for_statement] = STATE(3280), - [sym_comma_expression] = STATE(484), - [sym_preproc_call] = STATE(3280), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(3280), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(3280), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(3280), - [sym_preproc_if] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), + [sym_compound_statement] = STATE(3258), + [sym_expression_statement] = STATE(3258), + [sym_do_statement] = STATE(3258), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), + [sym_preproc_def] = STATE(3258), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), + [sym_function_definition] = STATE(3258), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(3258), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(3257), + [sym_if_statement] = STATE(3258), + [sym_for_statement] = STATE(3258), + [sym_comma_expression] = STATE(485), + [sym_preproc_call] = STATE(3258), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(3258), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(3258), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(3258), + [sym_preproc_if] = STATE(3258), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(3280), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(3280), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(3280), - [sym_while_statement] = STATE(3280), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(3258), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(3258), + [aux_sym_translation_unit_repeat1] = STATE(3258), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(3258), + [sym_while_statement] = STATE(3258), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(6965), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(6954), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -99195,10 +99038,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -99206,59 +99049,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2301] = { - [aux_sym_function_definition_repeat1] = STATE(1269), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(3281), - [sym_declaration] = STATE(3281), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(1269), - [sym_type_qualifier] = STATE(281), - [sym_scoped_namespace_identifier] = STATE(88), - [sym_declaration_list] = STATE(3281), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(3282), - [sym_scoped_type_identifier] = STATE(87), + [2290] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_function_definition] = STATE(3259), + [sym_declaration] = STATE(3259), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(1259), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_type_qualifier] = STATE(285), + [sym_declaration_list] = STATE(3259), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(1259), + [sym__declaration_specifiers] = STATE(3260), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -99267,106 +99110,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_LBRACE] = ACTIONS(4559), }, - [2302] = { - [sym_goto_statement] = STATE(3284), - [sym_preproc_function_def] = STATE(3284), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(3284), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(3284), + [2291] = { + [sym_goto_statement] = STATE(3262), + [sym_preproc_function_def] = STATE(3262), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(3262), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(3284), - [sym_return_statement] = STATE(3284), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3262), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(3262), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(3262), + [sym_namespace_definition] = STATE(3262), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(3284), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(3284), - [sym_break_statement] = STATE(3284), - [sym_preproc_include] = STATE(3284), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(3284), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(3284), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(3262), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(3262), + [sym_constructor_or_destructor_definition] = STATE(3262), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(3262), + [sym_preproc_include] = STATE(3262), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(3262), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(3262), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(3284), - [sym_template_instantiation] = STATE(3284), - [sym_constructor_or_destructor_definition] = STATE(3284), - [sym_expression_statement] = STATE(3284), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(3284), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(3284), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(3284), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(3284), - [aux_sym_translation_unit_repeat1] = STATE(3284), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(3284), - [sym_if_statement] = STATE(3284), - [sym_for_statement] = STATE(3284), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(3284), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(3284), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(3284), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(3284), - [sym_preproc_if] = STATE(3284), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(3262), + [sym_expression_statement] = STATE(3262), + [sym_do_statement] = STATE(3262), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(3262), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(3262), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(3262), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(3262), + [sym_for_statement] = STATE(3262), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(3262), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(3262), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(3262), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(3262), + [sym_preproc_if] = STATE(3262), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(3284), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(3284), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(3284), - [sym_while_statement] = STATE(3284), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(3262), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(3262), + [aux_sym_translation_unit_repeat1] = STATE(3262), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(3262), + [sym_while_statement] = STATE(3262), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -99408,7 +99251,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(6967), + [anon_sym_RBRACE] = ACTIONS(6956), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -99440,246 +99283,246 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2303] = { - [sym_declaration_list] = STATE(3285), - [anon_sym_LBRACE] = ACTIONS(4561), + [2292] = { + [sym_declaration_list] = STATE(3263), + [anon_sym_LBRACE] = ACTIONS(4559), [sym_comment] = ACTIONS(3), }, - [2304] = { - [anon_sym_DASH] = ACTIONS(954), - [sym_raw_string_literal] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [anon_sym_mutable] = ACTIONS(954), - [sym_null] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_explicit] = ACTIONS(954), - [sym_identifier] = ACTIONS(954), - [anon_sym_delete] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(954), - [sym_auto] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_COLON_COLON] = ACTIONS(956), - [anon_sym_using] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_union] = ACTIONS(954), - [anon_sym_typename] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [anon_sym_new] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [sym_operator_name] = ACTIONS(956), - [anon_sym_while] = ACTIONS(954), - [anon_sym_try] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(956), - [anon_sym_const] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_class] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_nullptr] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_template] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(954), + [2293] = { + [anon_sym_DASH] = ACTIONS(958), + [sym_raw_string_literal] = ACTIONS(960), + [sym_true] = ACTIONS(958), + [anon_sym_mutable] = ACTIONS(958), + [sym_null] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [aux_sym_preproc_if_token2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(960), + [anon_sym_sizeof] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(958), + [anon_sym_explicit] = ACTIONS(958), + [sym_identifier] = ACTIONS(958), + [anon_sym_delete] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [anon_sym__Atomic] = ACTIONS(958), + [sym_number_literal] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_enum] = ACTIONS(958), + [anon_sym_constexpr] = ACTIONS(958), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(958), + [sym_auto] = ACTIONS(958), + [anon_sym_signed] = ACTIONS(958), + [anon_sym_long] = ACTIONS(958), + [anon_sym_COLON_COLON] = ACTIONS(960), + [anon_sym_using] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_static] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_union] = ACTIONS(958), + [anon_sym_typename] = ACTIONS(958), + [anon_sym_short] = ACTIONS(958), + [anon_sym_new] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(958), + [sym_operator_name] = ACTIONS(960), + [anon_sym_while] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [anon_sym_const] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_class] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [sym_primitive_type] = ACTIONS(958), + [sym_false] = ACTIONS(958), + [sym_nullptr] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_template] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(958), }, - [2305] = { - [anon_sym_DASH] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(964), - [anon_sym_else] = ACTIONS(962), - [sym_true] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_delete] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym_namespace] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [anon_sym_while] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [anon_sym_const] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_nullptr] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(962), + [2294] = { + [anon_sym_DASH] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(968), + [anon_sym_else] = ACTIONS(966), + [sym_true] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [sym_null] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [aux_sym_preproc_if_token2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [sym_number_literal] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_namespace] = ACTIONS(966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [anon_sym_while] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [aux_sym_preproc_include_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_const] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_nullptr] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(966), }, - [2306] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [2295] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -99721,7 +99564,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(6969), + [anon_sym_RBRACE] = ACTIONS(6958), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -99753,223 +99596,223 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2307] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(6971), + [2296] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(3266), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(6960), [sym_comment] = ACTIONS(3), }, - [2308] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [2297] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(6973), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(6975), + [anon_sym_EQ] = ACTIONS(6962), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(6964), }, - [2309] = { + [2298] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(6975), + [anon_sym_SEMI] = ACTIONS(6964), }, - [2310] = { - [anon_sym_DASH] = ACTIONS(1166), - [sym_raw_string_literal] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [anon_sym_mutable] = ACTIONS(1166), - [sym_null] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [aux_sym_preproc_if_token2] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_explicit] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1166), - [anon_sym_delete] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1166), - [sym_auto] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1168), - [anon_sym_using] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_typename] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_new] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [sym_operator_name] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_try] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_class] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [sym_nullptr] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_template] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1166), + [2299] = { + [anon_sym_DASH] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(1174), + [sym_true] = ACTIONS(1172), + [anon_sym_mutable] = ACTIONS(1172), + [sym_null] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [aux_sym_preproc_if_token2] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_sizeof] = ACTIONS(1172), + [anon_sym_volatile] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1172), + [anon_sym_switch] = ACTIONS(1172), + [anon_sym_explicit] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1172), + [anon_sym_delete] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1172), + [sym_number_literal] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_constexpr] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), + [anon_sym_namespace] = ACTIONS(1172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1172), + [sym_auto] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1172), + [anon_sym_long] = ACTIONS(1172), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1172), + [sym_preproc_directive] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_typename] = ACTIONS(1172), + [anon_sym_short] = ACTIONS(1172), + [anon_sym_new] = ACTIONS(1172), + [anon_sym_goto] = ACTIONS(1172), + [sym_operator_name] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_try] = ACTIONS(1172), + [anon_sym_for] = ACTIONS(1172), + [aux_sym_preproc_include_token1] = ACTIONS(1172), + [anon_sym_register] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [sym_primitive_type] = ACTIONS(1172), + [sym_false] = ACTIONS(1172), + [sym_nullptr] = ACTIONS(1172), + [anon_sym_do] = ACTIONS(1172), + [anon_sym_template] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1172), }, - [2311] = { - [anon_sym_LF] = ACTIONS(6977), + [2300] = { + [anon_sym_LF] = ACTIONS(6966), [sym_comment] = ACTIONS(244), }, - [2312] = { - [sym_goto_statement] = STATE(3294), - [sym_preproc_function_def] = STATE(3294), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(3294), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(3294), + [2301] = { + [sym_goto_statement] = STATE(3272), + [sym_preproc_function_def] = STATE(3272), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(3272), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(3293), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(3294), - [sym_return_statement] = STATE(3294), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3272), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(3271), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(3272), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(3272), + [sym_namespace_definition] = STATE(3272), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(3294), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(3294), - [sym_break_statement] = STATE(3294), - [sym_preproc_include] = STATE(3294), - [sym_assignment_expression] = STATE(482), - [sym_preproc_ifdef] = STATE(3294), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(3294), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(3272), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(3272), + [sym_constructor_or_destructor_definition] = STATE(3272), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(3272), + [sym_preproc_include] = STATE(3272), + [sym_assignment_expression] = STATE(484), + [sym_preproc_ifdef] = STATE(3272), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(3272), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), - [sym_compound_statement] = STATE(3294), - [sym_template_instantiation] = STATE(3294), - [sym_constructor_or_destructor_definition] = STATE(3294), - [sym_expression_statement] = STATE(3294), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(3294), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), - [sym_preproc_def] = STATE(3294), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), - [sym_function_definition] = STATE(3294), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(3294), - [aux_sym_translation_unit_repeat1] = STATE(3294), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(3294), - [sym_preproc_else] = STATE(3293), - [sym_if_statement] = STATE(3294), - [sym_for_statement] = STATE(3294), - [sym_comma_expression] = STATE(484), - [sym_preproc_call] = STATE(3294), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(3294), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(3294), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(3294), - [sym_preproc_if] = STATE(3294), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), + [sym_compound_statement] = STATE(3272), + [sym_expression_statement] = STATE(3272), + [sym_do_statement] = STATE(3272), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), + [sym_preproc_def] = STATE(3272), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), + [sym_function_definition] = STATE(3272), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(3272), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(3271), + [sym_if_statement] = STATE(3272), + [sym_for_statement] = STATE(3272), + [sym_comma_expression] = STATE(485), + [sym_preproc_call] = STATE(3272), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(3272), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(3272), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(3272), + [sym_preproc_if] = STATE(3272), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(3294), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(3294), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(3272), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(3272), + [aux_sym_translation_unit_repeat1] = STATE(3272), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(3272), + [sym_while_statement] = STATE(3272), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(6979), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(6968), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -99977,10 +99820,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -99988,398 +99831,398 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2313] = { + [2302] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(6981), + [anon_sym_SEMI] = ACTIONS(6970), }, - [2314] = { - [sym_do_statement] = STATE(3296), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [2303] = { + [sym_do_statement] = STATE(3274), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(3296), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(3296), - [sym_if_statement] = STATE(3296), - [sym_switch_statement] = STATE(3296), - [sym_for_statement] = STATE(3296), - [sym_return_statement] = STATE(3296), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3274), + [sym_try_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_switch_statement] = STATE(3274), + [sym_for_statement] = STATE(3274), + [sym_return_statement] = STATE(3274), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(3296), - [sym_break_statement] = STATE(3296), - [sym_continue_statement] = STATE(3296), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3274), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3296), - [sym_labeled_statement] = STATE(3296), - [sym_expression_statement] = STATE(3296), - [sym_while_statement] = STATE(3296), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(3274), + [sym_for_range_loop] = STATE(3274), + [sym_compound_statement] = STATE(3274), + [sym_labeled_statement] = STATE(3274), + [sym_expression_statement] = STATE(3274), + [sym_while_statement] = STATE(3274), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2315] = { - [aux_sym_try_statement_repeat1] = STATE(3298), - [sym_catch_clause] = STATE(3298), - [anon_sym_catch] = ACTIONS(6983), + [2304] = { + [sym_catch_clause] = STATE(3276), + [aux_sym_try_statement_repeat1] = STATE(3276), + [anon_sym_catch] = ACTIONS(6972), [sym_comment] = ACTIONS(3), }, - [2316] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(3300), - [sym_logical_expression] = STATE(3300), - [sym_bitwise_expression] = STATE(3300), - [sym_cast_expression] = STATE(3300), - [sym_new_expression] = STATE(3300), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3300), - [sym_declaration] = STATE(3299), - [sym_char_literal] = STATE(3300), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(3300), - [sym_conditional_expression] = STATE(3300), - [sym_equality_expression] = STATE(3300), - [sym_relational_expression] = STATE(3300), - [sym_sizeof_expression] = STATE(3300), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(3300), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(3300), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(3300), - [sym_lambda_expression] = STATE(3300), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(3301), - [sym_assignment_expression] = STATE(3300), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3300), - [sym_math_expression] = STATE(3300), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [2305] = { + [sym_template_function] = STATE(3278), + [sym__expression] = STATE(3278), + [sym_logical_expression] = STATE(3278), + [sym_bitwise_expression] = STATE(3278), + [sym_cast_expression] = STATE(3278), + [sym_delete_expression] = STATE(3278), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(3278), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(3278), + [sym_lambda_expression] = STATE(3278), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(3277), + [sym_for_range_declaration] = STATE(3279), + [sym_conditional_expression] = STATE(3278), + [sym_equality_expression] = STATE(3278), + [sym_relational_expression] = STATE(3278), + [sym_sizeof_expression] = STATE(3278), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(3278), + [sym_concatenated_string] = STATE(3278), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(6985), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(3278), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3278), + [sym_math_expression] = STATE(3278), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3278), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(6974), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(6987), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(6976), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(6987), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(6976), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(6985), + [sym_number_literal] = ACTIONS(6974), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(6987), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(6976), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(6987), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(6976), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(6989), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(6978), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [2317] = { - [anon_sym_DASH] = ACTIONS(1309), - [sym_raw_string_literal] = ACTIONS(1311), - [sym_true] = ACTIONS(1309), - [anon_sym_mutable] = ACTIONS(1309), - [sym_null] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [aux_sym_preproc_if_token2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_explicit] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1309), - [anon_sym_delete] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_constexpr] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), - [anon_sym_namespace] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1309), - [sym_auto] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_using] = ACTIONS(1309), - [sym_preproc_directive] = ACTIONS(1309), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_typename] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [anon_sym_new] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1309), - [sym_operator_name] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [sym_nullptr] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_template] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1309), - [anon_sym_AMP_AMP] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1309), + [2306] = { + [anon_sym_DASH] = ACTIONS(1317), + [sym_raw_string_literal] = ACTIONS(1319), + [sym_true] = ACTIONS(1317), + [anon_sym_mutable] = ACTIONS(1317), + [sym_null] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [aux_sym_preproc_if_token2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_explicit] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_constexpr] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1317), + [sym_auto] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1319), + [anon_sym_using] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [aux_sym_preproc_if_token1] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_typename] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_goto] = ACTIONS(1317), + [sym_operator_name] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_try] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [aux_sym_preproc_include_token1] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_class] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [sym_nullptr] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_template] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1317), + [anon_sym_AMP_AMP] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1317), }, - [2318] = { - [aux_sym_string_literal_repeat1] = STATE(3303), + [2307] = { + [aux_sym_string_literal_repeat1] = STATE(3281), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(6991), - [aux_sym_string_literal_token1] = ACTIONS(6991), - [anon_sym_DQUOTE] = ACTIONS(6993), + [sym_escape_sequence] = ACTIONS(6980), + [aux_sym_string_literal_token1] = ACTIONS(6980), + [anon_sym_DQUOTE] = ACTIONS(6982), }, - [2319] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3304), - [sym_logical_expression] = STATE(3304), - [sym_bitwise_expression] = STATE(3304), - [sym_cast_expression] = STATE(3304), - [sym_new_expression] = STATE(3304), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(3304), - [sym_char_literal] = STATE(3304), - [sym_template_function] = STATE(3304), - [sym_conditional_expression] = STATE(3304), - [sym_equality_expression] = STATE(3304), - [sym_relational_expression] = STATE(3304), - [sym_delete_expression] = STATE(3304), - [sym_sizeof_expression] = STATE(3304), - [sym_parenthesized_expression] = STATE(3304), - [sym_lambda_expression] = STATE(3304), - [sym_concatenated_string] = STATE(3304), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(3304), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(3304), - [sym_math_expression] = STATE(3304), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(6995), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(6997), - [sym_null] = ACTIONS(6997), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6995), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [2308] = { + [sym_template_function] = STATE(3282), + [sym__expression] = STATE(3282), + [sym_logical_expression] = STATE(3282), + [sym_bitwise_expression] = STATE(3282), + [sym_cast_expression] = STATE(3282), + [sym_delete_expression] = STATE(3282), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(3282), + [sym_lambda_expression] = STATE(3282), + [sym_char_literal] = STATE(3282), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3282), + [sym_equality_expression] = STATE(3282), + [sym_relational_expression] = STATE(3282), + [sym_sizeof_expression] = STATE(3282), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3282), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(3282), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3282), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(3282), + [sym_math_expression] = STATE(3282), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(3282), + [sym_raw_string_literal] = ACTIONS(6984), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(6986), + [sym_null] = ACTIONS(6986), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(6984), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(6986), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(6986), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [2320] = { - [anon_sym_LPAREN2] = ACTIONS(6999), + [2309] = { + [anon_sym_LPAREN2] = ACTIONS(6988), [sym_comment] = ACTIONS(3), }, - [2321] = { - [anon_sym_while] = ACTIONS(7001), + [2310] = { + [anon_sym_while] = ACTIONS(6990), [sym_comment] = ACTIONS(3), }, - [2322] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), + [2311] = { + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(6992), }, - [2323] = { - [aux_sym_function_definition_repeat1] = STATE(1269), - [sym_macro_type_specifier] = STATE(876), - [sym_class_specifier] = STATE(876), - [sym__type_specifier] = STATE(876), - [sym_sized_type_specifier] = STATE(876), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(3308), - [sym_declaration] = STATE(3308), - [aux_sym__declaration_specifiers_repeat1] = STATE(878), - [sym_storage_class_specifier] = STATE(878), - [sym_dependent_type] = STATE(876), - [sym_struct_specifier] = STATE(876), - [sym_union_specifier] = STATE(876), - [sym_attribute] = STATE(1269), - [sym_type_qualifier] = STATE(878), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__empty_declaration] = STATE(3308), - [aux_sym_sized_type_specifier_repeat1] = STATE(879), - [sym_enum_specifier] = STATE(876), - [sym__declaration_specifiers] = STATE(3309), - [sym_scoped_type_identifier] = STATE(87), + [2312] = { + [sym_macro_type_specifier] = STATE(55), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_sized_type_specifier] = STATE(55), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_function_definition] = STATE(3286), + [sym_declaration] = STATE(3286), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(1259), + [sym_template_type] = STATE(91), + [sym__empty_declaration] = STATE(3286), + [sym_storage_class_specifier] = STATE(881), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_union_specifier] = STATE(55), + [sym_type_qualifier] = STATE(881), + [aux_sym__declaration_specifiers_repeat1] = STATE(881), + [sym_enum_specifier] = STATE(55), + [sym_attribute] = STATE(1259), + [sym__declaration_specifiers] = STATE(1264), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1571), + [sym_auto] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(35), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(35), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -100388,889 +100231,885 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(35), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1573), + [anon_sym_typename] = ACTIONS(69), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(35), [anon_sym_restrict] = ACTIONS(11), }, - [2324] = { - [sym_reference_declarator] = STATE(3310), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(3310), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(3310), - [sym_destructor_name] = STATE(3310), - [sym__declarator] = STATE(3310), - [sym_array_declarator] = STATE(3310), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(3310), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(476), - [sym_operator_name] = ACTIONS(7005), + [2313] = { + [sym_template_function] = STATE(3287), + [sym_destructor_name] = STATE(3287), + [sym_pointer_declarator] = STATE(3287), + [sym_structured_binding_declarator] = STATE(3287), + [sym__declarator] = STATE(3287), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(3287), + [sym_array_declarator] = STATE(3287), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_function_declarator] = STATE(3287), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(6994), [sym_comment] = ACTIONS(3), }, - [2325] = { - [anon_sym_DASH] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - [anon_sym_else] = ACTIONS(1609), - [sym_true] = ACTIONS(1609), - [anon_sym_mutable] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [aux_sym_preproc_if_token2] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_typedef] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_explicit] = ACTIONS(1609), - [sym_identifier] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1609), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_constexpr] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym_namespace] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1609), - [sym_auto] = ACTIONS(1609), - [anon_sym_signed] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_using] = ACTIONS(1609), - [sym_preproc_directive] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_typename] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [sym_operator_name] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_class] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1609), - [sym_false] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_template] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1611), - [aux_sym_preproc_def_token1] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_inline] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_restrict] = ACTIONS(1609), + [2314] = { + [anon_sym_DASH] = ACTIONS(1619), + [sym_raw_string_literal] = ACTIONS(1621), + [anon_sym_else] = ACTIONS(1619), + [sym_true] = ACTIONS(1619), + [anon_sym_mutable] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [aux_sym_preproc_if_token2] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_sizeof] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1619), + [anon_sym_explicit] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [anon_sym_delete] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1619), + [anon_sym__Atomic] = ACTIONS(1619), + [sym_number_literal] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_constexpr] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1621), + [anon_sym_namespace] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1619), + [sym_auto] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_COLON_COLON] = ACTIONS(1621), + [anon_sym_using] = ACTIONS(1619), + [sym_preproc_directive] = ACTIONS(1619), + [aux_sym_preproc_if_token1] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_typename] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [sym_operator_name] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [aux_sym_preproc_include_token1] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), + [sym_nullptr] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_template] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1621), + [anon_sym_inline] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_restrict] = ACTIONS(1619), }, - [2326] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2315] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(6996), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2327] = { + [2316] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(7007), + [anon_sym_SEMI] = ACTIONS(6996), }, - [2328] = { - [sym_preproc_params] = STATE(3314), - [sym_preproc_arg] = ACTIONS(7009), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(7011), + [2317] = { + [sym_preproc_params] = STATE(3291), + [sym_preproc_arg] = ACTIONS(6998), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_LF] = ACTIONS(7000), [sym_comment] = ACTIONS(244), }, - [2329] = { - [sym_compound_statement] = STATE(3315), - [sym_field_initializer_list] = STATE(3316), - [sym_default_method_clause] = STATE(3315), - [sym_delete_method_clause] = STATE(3315), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(2497), + [2318] = { + [sym_template_function] = STATE(3292), + [sym_destructor_name] = STATE(3292), + [sym_pointer_declarator] = STATE(3292), + [sym_structured_binding_declarator] = STATE(3292), + [sym__declarator] = STATE(3292), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(3292), + [sym_array_declarator] = STATE(3292), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(3293), + [sym_function_declarator] = STATE(3292), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(7002), [sym_comment] = ACTIONS(3), }, - [2330] = { - [anon_sym_default] = ACTIONS(7013), - [anon_sym_delete] = ACTIONS(7015), + [2319] = { + [anon_sym_default] = ACTIONS(7004), + [anon_sym_delete] = ACTIONS(7006), [sym_comment] = ACTIONS(3), }, - [2331] = { - [anon_sym_DASH] = ACTIONS(1697), - [sym_raw_string_literal] = ACTIONS(1699), - [sym_true] = ACTIONS(1697), - [anon_sym_mutable] = ACTIONS(1697), - [sym_null] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [aux_sym_preproc_if_token2] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_sizeof] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_explicit] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [sym_number_literal] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1697), - [aux_sym_preproc_if_token1] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_typename] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_goto] = ACTIONS(1697), - [sym_operator_name] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [aux_sym_preproc_include_token1] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [sym_false] = ACTIONS(1697), - [sym_nullptr] = ACTIONS(1697), - [anon_sym_do] = ACTIONS(1697), - [anon_sym_template] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1697), + [2320] = { + [anon_sym_DASH] = ACTIONS(1762), + [sym_raw_string_literal] = ACTIONS(1764), + [sym_true] = ACTIONS(1762), + [anon_sym_mutable] = ACTIONS(1762), + [sym_null] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [aux_sym_preproc_if_token2] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_sizeof] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1762), + [anon_sym_switch] = ACTIONS(1762), + [anon_sym_explicit] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1762), + [anon_sym_delete] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [sym_number_literal] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1764), + [anon_sym_namespace] = ACTIONS(1762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1762), + [sym_auto] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1762), + [anon_sym_long] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_using] = ACTIONS(1762), + [sym_preproc_directive] = ACTIONS(1762), + [aux_sym_preproc_if_token1] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_typename] = ACTIONS(1762), + [anon_sym_short] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_goto] = ACTIONS(1762), + [sym_operator_name] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [aux_sym_preproc_include_token1] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [sym_primitive_type] = ACTIONS(1762), + [sym_false] = ACTIONS(1762), + [sym_nullptr] = ACTIONS(1762), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_template] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [aux_sym_preproc_def_token1] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_restrict] = ACTIONS(1762), }, - [2332] = { - [sym_compound_statement] = STATE(3315), - [sym_delete_method_clause] = STATE(3315), - [sym_default_method_clause] = STATE(3315), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(2497), + [2321] = { + [sym_compound_statement] = STATE(3296), + [sym_default_method_clause] = STATE(3296), + [sym_delete_method_clause] = STATE(3296), + [anon_sym_EQ] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(2499), [sym_comment] = ACTIONS(3), }, - [2333] = { - [anon_sym_DASH] = ACTIONS(1809), - [sym_raw_string_literal] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [anon_sym_mutable] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [aux_sym_preproc_if_token2] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_sizeof] = ACTIONS(1809), - [anon_sym_volatile] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_typedef] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_explicit] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1809), - [anon_sym__Atomic] = ACTIONS(1809), - [sym_number_literal] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_constexpr] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1809), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1809), - [sym_auto] = ACTIONS(1809), - [anon_sym_signed] = ACTIONS(1809), - [anon_sym_long] = ACTIONS(1809), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1809), - [sym_preproc_directive] = ACTIONS(1809), - [aux_sym_preproc_if_token1] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_typename] = ACTIONS(1809), - [anon_sym_short] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [sym_operator_name] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [aux_sym_preproc_include_token1] = ACTIONS(1809), - [anon_sym_register] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [sym_primitive_type] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nullptr] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_template] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1811), - [aux_sym_preproc_def_token1] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1811), - [anon_sym_inline] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_restrict] = ACTIONS(1809), - }, - [2334] = { - [sym_goto_statement] = STATE(2334), - [sym_preproc_function_def] = STATE(2334), - [sym_logical_expression] = STATE(1265), - [sym_for_range_loop] = STATE(2334), - [sym_cast_expression] = STATE(1265), - [sym_declaration] = STATE(2334), - [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(1263), - [sym_type_qualifier] = STATE(1263), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(2334), - [sym_return_statement] = STATE(2334), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), - [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(2334), - [sym_function_declarator] = STATE(1264), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2334), - [sym_break_statement] = STATE(2334), - [sym_preproc_include] = STATE(2334), - [sym_assignment_expression] = STATE(1265), - [sym_preproc_ifdef] = STATE(2334), - [sym_shift_expression] = STATE(1265), - [sym_using_declaration] = STATE(2334), - [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(1269), - [sym_compound_statement] = STATE(2334), - [sym_template_instantiation] = STATE(2334), - [sym_constructor_or_destructor_definition] = STATE(2334), - [sym_expression_statement] = STATE(2334), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2334), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(1265), - [sym_preproc_def] = STATE(2334), - [sym_bitwise_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), - [sym_function_definition] = STATE(2334), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(1265), - [sym_char_literal] = STATE(1265), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2334), - [aux_sym_translation_unit_repeat1] = STATE(2334), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(1263), - [sym_alias_declaration] = STATE(2334), - [sym_if_statement] = STATE(2334), - [sym_for_statement] = STATE(2334), - [sym_comma_expression] = STATE(1267), - [sym_preproc_call] = STATE(2334), - [sym_equality_expression] = STATE(1265), - [sym_try_statement] = STATE(2334), - [sym_sizeof_expression] = STATE(1265), - [sym__declaration_specifiers] = STATE(1268), - [sym_parenthesized_expression] = STATE(1265), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(1265), - [aux_sym_function_definition_repeat1] = STATE(1269), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(1265), - [sym_structured_binding_declaration] = STATE(2334), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2334), - [sym_preproc_if] = STATE(2334), - [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(2334), - [sym_math_expression] = STATE(1265), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2334), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2334), - [sym_while_statement] = STATE(2334), - [anon_sym_DASH] = ACTIONS(1853), - [sym_raw_string_literal] = ACTIONS(7017), - [sym_true] = ACTIONS(7020), - [anon_sym_mutable] = ACTIONS(1862), - [sym_null] = ACTIONS(7020), - [anon_sym_break] = ACTIONS(7023), - [aux_sym_preproc_if_token2] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_typedef] = ACTIONS(7026), - [anon_sym_switch] = ACTIONS(7029), - [anon_sym_explicit] = ACTIONS(1862), - [sym_identifier] = ACTIONS(7032), - [anon_sym_delete] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(7035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7038), - [anon_sym__Atomic] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(7017), - [anon_sym_extern] = ACTIONS(7041), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym_namespace] = ACTIONS(7044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7038), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(7047), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_LPAREN2] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1919), - [sym_auto] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1898), - [anon_sym_long] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(7050), - [sym_preproc_directive] = ACTIONS(7053), - [aux_sym_preproc_if_token1] = ACTIONS(7056), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_typename] = ACTIONS(1949), - [anon_sym_short] = ACTIONS(1898), - [anon_sym_new] = ACTIONS(1952), - [anon_sym_goto] = ACTIONS(7059), - [sym_operator_name] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(7062), - [anon_sym_try] = ACTIONS(7065), - [anon_sym_for] = ACTIONS(7068), - [aux_sym_preproc_include_token1] = ACTIONS(7071), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_class] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(7074), - [sym_primitive_type] = ACTIONS(1922), - [sym_false] = ACTIONS(7020), - [sym_nullptr] = ACTIONS(7020), - [anon_sym_do] = ACTIONS(7077), - [anon_sym_template] = ACTIONS(7080), - [anon_sym_return] = ACTIONS(7083), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(7086), - [aux_sym_preproc_def_token1] = ACTIONS(7089), - [anon_sym_AMP_AMP] = ACTIONS(2005), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1862), + [2322] = { + [sym_compound_statement] = STATE(3296), + [sym_field_initializer_list] = STATE(3297), + [sym_delete_method_clause] = STATE(3296), + [sym_default_method_clause] = STATE(3296), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), }, - [2335] = { - [anon_sym_DASH] = ACTIONS(2016), - [sym_raw_string_literal] = ACTIONS(2018), - [sym_true] = ACTIONS(2016), - [anon_sym_mutable] = ACTIONS(2016), - [sym_null] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [aux_sym_preproc_if_token2] = ACTIONS(2016), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_sizeof] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2016), - [anon_sym_switch] = ACTIONS(2016), - [anon_sym_explicit] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2016), - [anon_sym_delete] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), - [anon_sym__Atomic] = ACTIONS(2016), - [sym_number_literal] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_constexpr] = ACTIONS(2016), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), - [anon_sym_namespace] = ACTIONS(2016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2016), - [sym_auto] = ACTIONS(2016), - [anon_sym_signed] = ACTIONS(2016), - [anon_sym_long] = ACTIONS(2016), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_using] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_typename] = ACTIONS(2016), - [anon_sym_short] = ACTIONS(2016), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_goto] = ACTIONS(2016), - [sym_operator_name] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [aux_sym_preproc_include_token1] = ACTIONS(2016), - [anon_sym_register] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_class] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [sym_primitive_type] = ACTIONS(2016), - [sym_false] = ACTIONS(2016), - [sym_nullptr] = ACTIONS(2016), - [anon_sym_do] = ACTIONS(2016), - [anon_sym_template] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2018), - [anon_sym_SEMI] = ACTIONS(2018), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2016), - [anon_sym_PLUS_PLUS] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2016), + [2323] = { + [anon_sym_DASH] = ACTIONS(1879), + [sym_raw_string_literal] = ACTIONS(1881), + [anon_sym_else] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [sym_null] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [aux_sym_preproc_if_token2] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_sizeof] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [sym_number_literal] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), + [anon_sym_namespace] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1879), + [sym_auto] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1881), + [anon_sym_using] = ACTIONS(1879), + [sym_preproc_directive] = ACTIONS(1879), + [aux_sym_preproc_if_token1] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [sym_operator_name] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [aux_sym_preproc_include_token1] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nullptr] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [aux_sym_preproc_def_token1] = ACTIONS(1879), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_restrict] = ACTIONS(1879), }, - [2336] = { - [sym_argument_list] = STATE(3320), - [sym_initializer_list] = STATE(3320), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_EQ] = ACTIONS(7092), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), + [2324] = { + [anon_sym_DASH] = ACTIONS(1915), + [sym_raw_string_literal] = ACTIONS(1917), + [sym_true] = ACTIONS(1915), + [anon_sym_mutable] = ACTIONS(1915), + [sym_null] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [aux_sym_preproc_if_token2] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_sizeof] = ACTIONS(1915), + [anon_sym_volatile] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_typedef] = ACTIONS(1915), + [anon_sym_switch] = ACTIONS(1915), + [anon_sym_explicit] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1915), + [anon_sym_delete] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), + [anon_sym__Atomic] = ACTIONS(1915), + [sym_number_literal] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_constexpr] = ACTIONS(1915), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), + [anon_sym_namespace] = ACTIONS(1915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1917), + [anon_sym_LPAREN2] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1915), + [sym_auto] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1915), + [sym_preproc_directive] = ACTIONS(1915), + [aux_sym_preproc_if_token1] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_typename] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_goto] = ACTIONS(1915), + [sym_operator_name] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [aux_sym_preproc_include_token1] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [sym_primitive_type] = ACTIONS(1915), + [sym_false] = ACTIONS(1915), + [sym_nullptr] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_template] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [aux_sym_preproc_def_token1] = ACTIONS(1915), + [anon_sym_AMP_AMP] = ACTIONS(1917), + [anon_sym_inline] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_restrict] = ACTIONS(1915), }, - [2337] = { - [sym_compound_statement] = STATE(3323), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(3324), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(7094), - [anon_sym_SEMI] = ACTIONS(7096), + [2325] = { + [sym_compound_statement] = STATE(3300), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(3301), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(7008), + [anon_sym_SEMI] = ACTIONS(7010), }, - [2338] = { - [aux_sym_declaration_repeat1] = STATE(3324), + [2326] = { + [aux_sym_declaration_repeat1] = STATE(3301), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(7096), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(7010), }, - [2339] = { - [sym_reference_declarator] = STATE(3325), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(3325), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(3325), - [sym_destructor_name] = STATE(3325), - [sym__declarator] = STATE(3325), - [sym_init_declarator] = STATE(3326), - [sym_array_declarator] = STATE(3325), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(3325), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(7098), - [sym_comment] = ACTIONS(3), + [2327] = { + [sym_goto_statement] = STATE(2327), + [sym_preproc_function_def] = STATE(2327), + [sym_logical_expression] = STATE(1262), + [sym_try_statement] = STATE(2327), + [sym_cast_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_field_expression] = STATE(47), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2327), + [aux_sym_function_definition_repeat1] = STATE(1259), + [sym_type_qualifier] = STATE(1261), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2327), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2327), + [sym_namespace_definition] = STATE(2327), + [sym_conditional_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(47), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2327), + [sym_function_declarator] = STATE(1260), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2327), + [sym_constructor_or_destructor_definition] = STATE(2327), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2327), + [sym_preproc_include] = STATE(2327), + [sym_assignment_expression] = STATE(1262), + [sym_preproc_ifdef] = STATE(2327), + [sym_shift_expression] = STATE(1262), + [sym_for_range_loop] = STATE(2327), + [sym_call_expression] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(1261), + [sym_compound_statement] = STATE(2327), + [sym_expression_statement] = STATE(2327), + [sym_do_statement] = STATE(2327), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(1262), + [sym_preproc_def] = STATE(2327), + [sym_bitwise_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), + [sym_function_definition] = STATE(2327), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2327), + [sym_storage_class_specifier] = STATE(1261), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2327), + [sym_for_statement] = STATE(2327), + [sym_comma_expression] = STATE(1263), + [sym_preproc_call] = STATE(2327), + [sym_equality_expression] = STATE(1262), + [sym_using_declaration] = STATE(2327), + [sym_sizeof_expression] = STATE(1262), + [sym__declaration_specifiers] = STATE(1264), + [sym_parenthesized_expression] = STATE(1262), + [sym_attribute] = STATE(1259), + [sym_concatenated_string] = STATE(1262), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2327), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2327), + [sym_preproc_if] = STATE(2327), + [sym_pointer_expression] = STATE(47), + [sym_new_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2327), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2327), + [aux_sym_translation_unit_repeat1] = STATE(2327), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2327), + [sym_while_statement] = STATE(2327), + [anon_sym_DASH] = ACTIONS(1931), + [sym_raw_string_literal] = ACTIONS(7012), + [sym_true] = ACTIONS(7015), + [anon_sym_mutable] = ACTIONS(1940), + [sym_null] = ACTIONS(7015), + [anon_sym_break] = ACTIONS(7018), + [aux_sym_preproc_if_token2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1949), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(7021), + [anon_sym_switch] = ACTIONS(7024), + [anon_sym_explicit] = ACTIONS(1940), + [sym_identifier] = ACTIONS(7027), + [anon_sym_delete] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(7030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7033), + [anon_sym__Atomic] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(7012), + [anon_sym_extern] = ACTIONS(7036), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_constexpr] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym_namespace] = ACTIONS(7039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7033), + [anon_sym_SQUOTE] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(7042), + [anon_sym_DASH_DASH] = ACTIONS(1991), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1997), + [sym_auto] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_using] = ACTIONS(7045), + [sym_preproc_directive] = ACTIONS(7048), + [aux_sym_preproc_if_token1] = ACTIONS(7051), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_typename] = ACTIONS(2027), + [anon_sym_short] = ACTIONS(1976), + [anon_sym_new] = ACTIONS(2030), + [anon_sym_goto] = ACTIONS(7054), + [sym_operator_name] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(7057), + [anon_sym_try] = ACTIONS(7060), + [anon_sym_for] = ACTIONS(7063), + [aux_sym_preproc_include_token1] = ACTIONS(7066), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(7069), + [sym_primitive_type] = ACTIONS(2000), + [sym_false] = ACTIONS(7015), + [sym_nullptr] = ACTIONS(7015), + [anon_sym_do] = ACTIONS(7072), + [anon_sym_template] = ACTIONS(7075), + [anon_sym_return] = ACTIONS(7078), + [anon_sym_TILDE] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(7081), + [aux_sym_preproc_def_token1] = ACTIONS(7084), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_inline] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(1991), + [anon_sym_restrict] = ACTIONS(1940), }, - [2340] = { - [anon_sym_DASH] = ACTIONS(2943), - [sym_raw_string_literal] = ACTIONS(2945), - [sym_true] = ACTIONS(2943), - [anon_sym_mutable] = ACTIONS(2943), - [sym_null] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [aux_sym_preproc_if_token2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_volatile] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_typedef] = ACTIONS(2943), - [anon_sym_switch] = ACTIONS(2943), - [anon_sym_explicit] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2943), - [anon_sym_delete] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), - [anon_sym__Atomic] = ACTIONS(2943), - [sym_number_literal] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_constexpr] = ACTIONS(2943), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), - [aux_sym_preproc_elif_token1] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2943), - [sym_auto] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2943), - [anon_sym_long] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2943), - [aux_sym_preproc_else_token1] = ACTIONS(2943), - [sym_preproc_directive] = ACTIONS(2943), - [aux_sym_preproc_if_token1] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_typename] = ACTIONS(2943), - [anon_sym_short] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [sym_operator_name] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [aux_sym_preproc_include_token1] = ACTIONS(2943), - [anon_sym_register] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nullptr] = ACTIONS(2943), - [anon_sym_do] = ACTIONS(2943), - [anon_sym_template] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2943), + [2328] = { + [anon_sym_DASH] = ACTIONS(2945), + [sym_raw_string_literal] = ACTIONS(2947), + [sym_true] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [sym_null] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [aux_sym_preproc_if_token2] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_sizeof] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_explicit] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2945), + [anon_sym_delete] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [sym_number_literal] = ACTIONS(2947), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [anon_sym_namespace] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), + [aux_sym_preproc_elif_token1] = ACTIONS(2945), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2945), + [sym_auto] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2945), + [aux_sym_preproc_else_token1] = ACTIONS(2945), + [sym_preproc_directive] = ACTIONS(2945), + [aux_sym_preproc_if_token1] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_goto] = ACTIONS(2945), + [sym_operator_name] = ACTIONS(2947), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [aux_sym_preproc_include_token1] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_nullptr] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2947), + [aux_sym_preproc_def_token1] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_restrict] = ACTIONS(2945), }, - [2341] = { - [anon_sym_DASH] = ACTIONS(2947), - [sym_raw_string_literal] = ACTIONS(2949), - [sym_true] = ACTIONS(2947), - [anon_sym_mutable] = ACTIONS(2947), - [sym_null] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [aux_sym_preproc_if_token2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_sizeof] = ACTIONS(2947), - [anon_sym_volatile] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_typedef] = ACTIONS(2947), - [anon_sym_switch] = ACTIONS(2947), - [anon_sym_explicit] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2947), - [anon_sym_delete] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), - [anon_sym__Atomic] = ACTIONS(2947), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_constexpr] = ACTIONS(2947), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), - [aux_sym_preproc_elif_token1] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2947), - [sym_auto] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2947), - [anon_sym_long] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2947), - [aux_sym_preproc_else_token1] = ACTIONS(2947), - [sym_preproc_directive] = ACTIONS(2947), - [aux_sym_preproc_if_token1] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_typename] = ACTIONS(2947), - [anon_sym_short] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [sym_operator_name] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [aux_sym_preproc_include_token1] = ACTIONS(2947), - [anon_sym_register] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [sym_primitive_type] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nullptr] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_template] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2947), + [2329] = { + [anon_sym_DASH] = ACTIONS(2949), + [sym_raw_string_literal] = ACTIONS(2951), + [sym_true] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [sym_null] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [aux_sym_preproc_if_token2] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_explicit] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2949), + [anon_sym_delete] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), + [anon_sym__Atomic] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2951), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_constexpr] = ACTIONS(2949), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), + [anon_sym_namespace] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), + [aux_sym_preproc_elif_token1] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_LPAREN2] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2949), + [sym_auto] = ACTIONS(2949), + [anon_sym_signed] = ACTIONS(2949), + [anon_sym_long] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2949), + [aux_sym_preproc_else_token1] = ACTIONS(2949), + [sym_preproc_directive] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_typename] = ACTIONS(2949), + [anon_sym_short] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [sym_operator_name] = ACTIONS(2951), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [aux_sym_preproc_include_token1] = ACTIONS(2949), + [anon_sym_register] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_nullptr] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_template] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2951), + [aux_sym_preproc_def_token1] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_restrict] = ACTIONS(2949), }, - [2342] = { - [aux_sym_preproc_if_token2] = ACTIONS(7100), + [2330] = { + [aux_sym_preproc_if_token2] = ACTIONS(7087), [sym_comment] = ACTIONS(3), }, - [2343] = { + [2331] = { [sym_goto_statement] = STATE(1296), [sym_preproc_function_def] = STATE(1296), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(1296), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(1296), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(1296), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(3328), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1296), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(3303), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), [sym_switch_statement] = STATE(1296), + [sym_structured_binding_declarator] = STATE(60), [sym_return_statement] = STATE(1296), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_namespace_definition] = STATE(1296), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(51), [sym_type_definition] = STATE(1296), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1296), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1296), + [sym_constructor_or_destructor_definition] = STATE(1296), + [sym_reference_declarator] = STATE(60), [sym_break_statement] = STATE(1296), [sym_preproc_include] = STATE(1296), - [sym_assignment_expression] = STATE(482), + [sym_assignment_expression] = STATE(484), [sym_preproc_ifdef] = STATE(1296), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(1296), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(1296), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), [sym_compound_statement] = STATE(1296), - [sym_template_instantiation] = STATE(1296), - [sym_constructor_or_destructor_definition] = STATE(1296), [sym_expression_statement] = STATE(1296), - [sym_reference_declarator] = STATE(56), [sym_do_statement] = STATE(1296), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), [sym_preproc_def] = STATE(1296), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_function_definition] = STATE(1296), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), [sym__empty_declaration] = STATE(1296), - [aux_sym_translation_unit_repeat1] = STATE(1296), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(1296), - [sym_preproc_else] = STATE(3328), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(3303), [sym_if_statement] = STATE(1296), [sym_for_statement] = STATE(1296), - [sym_comma_expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_preproc_call] = STATE(1296), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(1296), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(1296), - [sym_sized_type_specifier] = STATE(53), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(1296), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1296), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), [sym_continue_statement] = STATE(1296), [sym_preproc_if] = STATE(1296), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1296), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), [sym_linkage_specification] = STATE(1296), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1296), + [aux_sym_translation_unit_repeat1] = STATE(1296), + [sym_enum_specifier] = STATE(55), [sym_labeled_statement] = STATE(1296), [sym_while_statement] = STATE(1296), - [sym_raw_string_literal] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(7102), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(7089), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -101278,10 +101117,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -101289,800 +101128,696 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2344] = { - [anon_sym_DASH] = ACTIONS(3140), - [sym_raw_string_literal] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [aux_sym_preproc_if_token2] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [sym_identifier] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym_namespace] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [aux_sym_preproc_elif_token1] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_struct] = ACTIONS(3140), - [sym_auto] = ACTIONS(3140), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_using] = ACTIONS(3140), - [aux_sym_preproc_else_token1] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [sym_operator_name] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [aux_sym_preproc_include_token1] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_restrict] = ACTIONS(3140), + [2332] = { + [anon_sym_DASH] = ACTIONS(3142), + [sym_raw_string_literal] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [anon_sym_mutable] = ACTIONS(3142), + [sym_null] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [aux_sym_preproc_if_token2] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_sizeof] = ACTIONS(3142), + [anon_sym_volatile] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_typedef] = ACTIONS(3142), + [anon_sym_switch] = ACTIONS(3142), + [anon_sym_explicit] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3142), + [anon_sym_delete] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3142), + [anon_sym__Atomic] = ACTIONS(3142), + [sym_number_literal] = ACTIONS(3144), + [anon_sym_extern] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), + [anon_sym_constexpr] = ACTIONS(3142), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3144), + [anon_sym_namespace] = ACTIONS(3142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3142), + [aux_sym_preproc_elif_token1] = ACTIONS(3142), + [anon_sym_SQUOTE] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_struct] = ACTIONS(3142), + [sym_auto] = ACTIONS(3142), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_COLON_COLON] = ACTIONS(3144), + [anon_sym_using] = ACTIONS(3142), + [aux_sym_preproc_else_token1] = ACTIONS(3142), + [sym_preproc_directive] = ACTIONS(3142), + [aux_sym_preproc_if_token1] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_union] = ACTIONS(3142), + [anon_sym_typename] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_goto] = ACTIONS(3142), + [sym_operator_name] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [aux_sym_preproc_include_token1] = ACTIONS(3142), + [anon_sym_register] = ACTIONS(3142), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_class] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [sym_primitive_type] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_nullptr] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3144), + [aux_sym_preproc_def_token1] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_restrict] = ACTIONS(3142), }, - [2345] = { - [anon_sym_DASH] = ACTIONS(3146), - [sym_raw_string_literal] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [anon_sym_mutable] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [aux_sym_preproc_if_token2] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_sizeof] = ACTIONS(3146), - [anon_sym_volatile] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_typedef] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_explicit] = ACTIONS(3146), - [sym_identifier] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3146), - [anon_sym__Atomic] = ACTIONS(3146), - [sym_number_literal] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [anon_sym_constexpr] = ACTIONS(3146), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3146), - [aux_sym_preproc_elif_token1] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3146), - [sym_auto] = ACTIONS(3146), - [anon_sym_signed] = ACTIONS(3146), - [anon_sym_long] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3146), - [aux_sym_preproc_else_token1] = ACTIONS(3146), - [sym_preproc_directive] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3146), - [anon_sym_typename] = ACTIONS(3146), - [anon_sym_short] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_goto] = ACTIONS(3146), - [sym_operator_name] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [aux_sym_preproc_include_token1] = ACTIONS(3146), - [anon_sym_register] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [sym_primitive_type] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_nullptr] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_template] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3146), + [2333] = { + [anon_sym_DASH] = ACTIONS(3148), + [sym_raw_string_literal] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [aux_sym_preproc_if_token2] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_sizeof] = ACTIONS(3148), + [anon_sym_volatile] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_explicit] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), + [anon_sym__Atomic] = ACTIONS(3148), + [sym_number_literal] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [anon_sym_constexpr] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), + [aux_sym_preproc_elif_token1] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), + [anon_sym_LPAREN2] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3148), + [sym_auto] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3148), + [anon_sym_long] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3148), + [aux_sym_preproc_else_token1] = ACTIONS(3148), + [sym_preproc_directive] = ACTIONS(3148), + [aux_sym_preproc_if_token1] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3148), + [anon_sym_typename] = ACTIONS(3148), + [anon_sym_short] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_goto] = ACTIONS(3148), + [sym_operator_name] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [aux_sym_preproc_include_token1] = ACTIONS(3148), + [anon_sym_register] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [sym_primitive_type] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_nullptr] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_template] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3150), + [aux_sym_preproc_def_token1] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_restrict] = ACTIONS(3148), }, - [2346] = { - [sym_parameter_list] = STATE(3329), - [anon_sym_LPAREN2] = ACTIONS(587), + [2334] = { + [sym_parameter_list] = STATE(3304), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), }, - [2347] = { - [aux_sym_try_statement_repeat1] = STATE(3330), - [sym_catch_clause] = STATE(3330), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [aux_sym_preproc_if_token2] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(7104), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [sym_operator_name] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [2335] = { + [sym_catch_clause] = STATE(3305), + [aux_sym_try_statement_repeat1] = STATE(3305), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [aux_sym_preproc_if_token2] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(7091), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3154), + [aux_sym_preproc_elif_token1] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [aux_sym_preproc_else_token1] = ACTIONS(3154), + [sym_preproc_directive] = ACTIONS(3154), + [aux_sym_preproc_if_token1] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [sym_operator_name] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [aux_sym_preproc_include_token1] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_template] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, - [2348] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3332), - [sym_logical_expression] = STATE(3332), - [sym_bitwise_expression] = STATE(3332), - [sym_cast_expression] = STATE(3332), - [sym_new_expression] = STATE(3332), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3332), - [sym_char_literal] = STATE(3332), - [sym_template_function] = STATE(3332), - [sym_conditional_expression] = STATE(3332), - [sym_equality_expression] = STATE(3332), - [sym_relational_expression] = STATE(3332), - [sym_delete_expression] = STATE(3332), - [sym_sizeof_expression] = STATE(3332), - [sym_parenthesized_expression] = STATE(3332), - [sym_lambda_expression] = STATE(3332), - [sym_concatenated_string] = STATE(3332), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3332), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3332), - [sym_math_expression] = STATE(3332), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(7108), - [sym_null] = ACTIONS(7108), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7106), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(7108), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(7108), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(7110), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [2336] = { + [sym_template_function] = STATE(3307), + [sym__expression] = STATE(3307), + [sym_logical_expression] = STATE(3307), + [sym_bitwise_expression] = STATE(3307), + [sym_cast_expression] = STATE(3307), + [sym_delete_expression] = STATE(3307), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3307), + [sym_lambda_expression] = STATE(3307), + [sym_char_literal] = STATE(3307), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3307), + [sym_equality_expression] = STATE(3307), + [sym_relational_expression] = STATE(3307), + [sym_sizeof_expression] = STATE(3307), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3307), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(3307), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3307), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3307), + [sym_math_expression] = STATE(3307), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3307), + [sym_raw_string_literal] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(7095), + [sym_null] = ACTIONS(7095), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7093), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(7095), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(7095), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(7097), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [2349] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(7112), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2337] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(7099), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2350] = { - [anon_sym_COLON] = ACTIONS(7114), + [2338] = { + [anon_sym_COLON] = ACTIONS(7101), [sym_comment] = ACTIONS(3), }, - [2351] = { - [anon_sym_DASH] = ACTIONS(1319), - [sym_raw_string_literal] = ACTIONS(1317), - [sym_true] = ACTIONS(1319), - [anon_sym_mutable] = ACTIONS(1319), - [sym_null] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [aux_sym_preproc_if_token2] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_explicit] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1319), - [anon_sym_delete] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym_namespace] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [aux_sym_preproc_elif_token1] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1319), - [sym_auto] = ACTIONS(1319), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_COLON_COLON] = ACTIONS(1317), - [anon_sym_using] = ACTIONS(1319), - [aux_sym_preproc_else_token1] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_typename] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [sym_operator_name] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_try] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_class] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [sym_nullptr] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_template] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1319), + [2339] = { + [anon_sym_DASH] = ACTIONS(1327), + [sym_raw_string_literal] = ACTIONS(1325), + [sym_true] = ACTIONS(1327), + [anon_sym_mutable] = ACTIONS(1327), + [sym_null] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_explicit] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1327), + [anon_sym_delete] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_namespace] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [aux_sym_preproc_elif_token1] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1327), + [sym_auto] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_using] = ACTIONS(1327), + [aux_sym_preproc_else_token1] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_typename] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [sym_operator_name] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [sym_nullptr] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_template] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1327), }, - [2352] = { - [aux_sym_string_literal_repeat1] = STATE(731), + [2340] = { + [aux_sym_string_literal_repeat1] = STATE(732), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(7116), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(7103), }, - [2353] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(7118), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2341] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(7105), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2354] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3337), - [sym_logical_expression] = STATE(3337), - [sym_bitwise_expression] = STATE(3337), - [sym_cast_expression] = STATE(3337), - [sym_new_expression] = STATE(3337), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(3337), - [sym_char_literal] = STATE(3337), - [sym_template_function] = STATE(3337), - [sym_conditional_expression] = STATE(3337), - [sym_equality_expression] = STATE(3337), - [sym_relational_expression] = STATE(3337), - [sym_delete_expression] = STATE(3337), - [sym_sizeof_expression] = STATE(3337), - [sym_parenthesized_expression] = STATE(3337), - [sym_lambda_expression] = STATE(3337), - [sym_concatenated_string] = STATE(3337), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(3337), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(3337), - [sym_math_expression] = STATE(3337), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7120), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(7122), - [sym_null] = ACTIONS(7122), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7120), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(7122), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7122), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [2342] = { + [sym_template_function] = STATE(3312), + [sym__expression] = STATE(3312), + [sym_logical_expression] = STATE(3312), + [sym_bitwise_expression] = STATE(3312), + [sym_cast_expression] = STATE(3312), + [sym_delete_expression] = STATE(3312), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(3312), + [sym_lambda_expression] = STATE(3312), + [sym_char_literal] = STATE(3312), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3312), + [sym_equality_expression] = STATE(3312), + [sym_relational_expression] = STATE(3312), + [sym_sizeof_expression] = STATE(3312), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3312), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(3312), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3312), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(3312), + [sym_math_expression] = STATE(3312), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(3312), + [sym_raw_string_literal] = ACTIONS(7107), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(7109), + [sym_null] = ACTIONS(7109), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7107), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(7109), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7109), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [2355] = { - [sym_parenthesized_expression] = STATE(3339), - [anon_sym_LPAREN2] = ACTIONS(7124), + [2343] = { + [sym_parenthesized_expression] = STATE(3314), + [anon_sym_LPAREN2] = ACTIONS(7111), [sym_comment] = ACTIONS(3), }, - [2356] = { - [anon_sym_DASH] = ACTIONS(3581), - [sym_raw_string_literal] = ACTIONS(3583), - [sym_true] = ACTIONS(3581), - [anon_sym_mutable] = ACTIONS(3581), - [sym_null] = ACTIONS(3581), - [anon_sym_break] = ACTIONS(3581), - [aux_sym_preproc_if_token2] = ACTIONS(3581), - [anon_sym_BANG] = ACTIONS(3583), - [anon_sym_sizeof] = ACTIONS(3581), - [anon_sym_volatile] = ACTIONS(3581), - [anon_sym_PLUS] = ACTIONS(3581), - [anon_sym_typedef] = ACTIONS(3581), - [anon_sym_switch] = ACTIONS(3581), - [anon_sym_explicit] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3581), - [anon_sym_delete] = ACTIONS(3581), - [anon_sym_continue] = ACTIONS(3581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), - [anon_sym__Atomic] = ACTIONS(3581), - [sym_number_literal] = ACTIONS(3583), - [anon_sym_extern] = ACTIONS(3581), - [anon_sym_enum] = ACTIONS(3581), - [anon_sym_constexpr] = ACTIONS(3581), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), - [anon_sym_namespace] = ACTIONS(3581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), - [aux_sym_preproc_elif_token1] = ACTIONS(3581), - [anon_sym_SQUOTE] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_DASH_DASH] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_struct] = ACTIONS(3581), - [sym_auto] = ACTIONS(3581), - [anon_sym_signed] = ACTIONS(3581), - [anon_sym_long] = ACTIONS(3581), - [anon_sym_COLON_COLON] = ACTIONS(3583), - [anon_sym_using] = ACTIONS(3581), - [aux_sym_preproc_else_token1] = ACTIONS(3581), - [sym_preproc_directive] = ACTIONS(3581), - [aux_sym_preproc_if_token1] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3581), - [anon_sym_static] = ACTIONS(3581), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_union] = ACTIONS(3581), - [anon_sym_typename] = ACTIONS(3581), - [anon_sym_short] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3581), - [anon_sym_goto] = ACTIONS(3581), - [sym_operator_name] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3581), - [anon_sym_try] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3581), - [aux_sym_preproc_include_token1] = ACTIONS(3581), - [anon_sym_register] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_const] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_class] = ACTIONS(3581), - [anon_sym_if] = ACTIONS(3581), - [sym_primitive_type] = ACTIONS(3581), - [sym_false] = ACTIONS(3581), - [sym_nullptr] = ACTIONS(3581), - [anon_sym_do] = ACTIONS(3581), - [anon_sym_template] = ACTIONS(3581), - [anon_sym_return] = ACTIONS(3581), - [anon_sym_TILDE] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3581), - [anon_sym_AMP_AMP] = ACTIONS(3583), - [anon_sym_inline] = ACTIONS(3581), - [anon_sym_PLUS_PLUS] = ACTIONS(3583), - [anon_sym_restrict] = ACTIONS(3581), - }, - [2357] = { - [anon_sym_DASH] = ACTIONS(3592), - [sym_raw_string_literal] = ACTIONS(3594), - [sym_true] = ACTIONS(3592), - [anon_sym_mutable] = ACTIONS(3592), - [sym_null] = ACTIONS(3592), - [anon_sym_break] = ACTIONS(3592), - [aux_sym_preproc_if_token2] = ACTIONS(3592), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_sizeof] = ACTIONS(3592), - [anon_sym_volatile] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_typedef] = ACTIONS(3592), - [anon_sym_switch] = ACTIONS(3592), - [anon_sym_explicit] = ACTIONS(3592), - [sym_identifier] = ACTIONS(3592), - [anon_sym_delete] = ACTIONS(3592), - [anon_sym_continue] = ACTIONS(3592), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), - [anon_sym__Atomic] = ACTIONS(3592), - [sym_number_literal] = ACTIONS(3594), - [anon_sym_extern] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_constexpr] = ACTIONS(3592), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), - [anon_sym_namespace] = ACTIONS(3592), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), - [aux_sym_preproc_elif_token1] = ACTIONS(3592), - [anon_sym_SQUOTE] = ACTIONS(3594), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_DASH_DASH] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3594), - [anon_sym_struct] = ACTIONS(3592), - [sym_auto] = ACTIONS(3592), - [anon_sym_signed] = ACTIONS(3592), - [anon_sym_long] = ACTIONS(3592), - [anon_sym_COLON_COLON] = ACTIONS(3594), - [anon_sym_using] = ACTIONS(3592), - [aux_sym_preproc_else_token1] = ACTIONS(3592), - [sym_preproc_directive] = ACTIONS(3592), - [aux_sym_preproc_if_token1] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_union] = ACTIONS(3592), - [anon_sym_typename] = ACTIONS(3592), - [anon_sym_short] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3592), - [anon_sym_goto] = ACTIONS(3592), - [sym_operator_name] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3592), - [anon_sym_try] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3592), - [aux_sym_preproc_include_token1] = ACTIONS(3592), - [anon_sym_register] = ACTIONS(3592), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_if] = ACTIONS(3592), - [sym_primitive_type] = ACTIONS(3592), - [sym_false] = ACTIONS(3592), - [sym_nullptr] = ACTIONS(3592), - [anon_sym_do] = ACTIONS(3592), - [anon_sym_template] = ACTIONS(3592), - [anon_sym_return] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_SEMI] = ACTIONS(3594), - [aux_sym_preproc_def_token1] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_inline] = ACTIONS(3592), - [anon_sym_PLUS_PLUS] = ACTIONS(3594), - [anon_sym_restrict] = ACTIONS(3592), + [2344] = { + [anon_sym_DASH] = ACTIONS(3596), + [sym_raw_string_literal] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [aux_sym_preproc_if_token2] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym_namespace] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [aux_sym_preproc_elif_token1] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_struct] = ACTIONS(3596), + [sym_auto] = ACTIONS(3596), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_using] = ACTIONS(3596), + [aux_sym_preproc_else_token1] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [sym_operator_name] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [aux_sym_preproc_include_token1] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_nullptr] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(3598), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_restrict] = ACTIONS(3596), }, - [2358] = { - [sym_reference_declarator] = STATE(1299), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(1299), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(1299), - [sym_destructor_name] = STATE(1299), - [sym__declarator] = STATE(1299), - [sym_init_declarator] = STATE(1300), - [sym_array_declarator] = STATE(1299), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(1299), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(2565), - [sym_comment] = ACTIONS(3), + [2345] = { + [anon_sym_DASH] = ACTIONS(3606), + [sym_raw_string_literal] = ACTIONS(3608), + [sym_true] = ACTIONS(3606), + [anon_sym_mutable] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [aux_sym_preproc_if_token2] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_sizeof] = ACTIONS(3606), + [anon_sym_volatile] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_typedef] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_explicit] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3606), + [anon_sym__Atomic] = ACTIONS(3606), + [sym_number_literal] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [anon_sym_constexpr] = ACTIONS(3606), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3606), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3606), + [aux_sym_preproc_elif_token1] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3606), + [sym_auto] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3606), + [anon_sym_long] = ACTIONS(3606), + [anon_sym_COLON_COLON] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3606), + [aux_sym_preproc_else_token1] = ACTIONS(3606), + [sym_preproc_directive] = ACTIONS(3606), + [aux_sym_preproc_if_token1] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3606), + [anon_sym_typename] = ACTIONS(3606), + [anon_sym_short] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_goto] = ACTIONS(3606), + [sym_operator_name] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [aux_sym_preproc_include_token1] = ACTIONS(3606), + [anon_sym_register] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [sym_primitive_type] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_nullptr] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_template] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3606), }, - [2359] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), + [2346] = { + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(7126), - }, - [2360] = { - [anon_sym_DASH] = ACTIONS(3678), - [sym_raw_string_literal] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3678), - [sym_true] = ACTIONS(3678), - [anon_sym_mutable] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [aux_sym_preproc_if_token2] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_sizeof] = ACTIONS(3678), - [anon_sym_volatile] = ACTIONS(3678), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_typedef] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3678), - [anon_sym_explicit] = ACTIONS(3678), - [sym_identifier] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), - [anon_sym__Atomic] = ACTIONS(3678), - [sym_number_literal] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), - [anon_sym_constexpr] = ACTIONS(3678), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), - [aux_sym_preproc_elif_token1] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3678), - [sym_auto] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3678), - [anon_sym_long] = ACTIONS(3678), - [anon_sym_COLON_COLON] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3678), - [aux_sym_preproc_else_token1] = ACTIONS(3678), - [sym_preproc_directive] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3678), - [anon_sym_typename] = ACTIONS(3678), - [anon_sym_short] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_goto] = ACTIONS(3678), - [sym_operator_name] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [aux_sym_preproc_include_token1] = ACTIONS(3678), - [anon_sym_register] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_if] = ACTIONS(3678), - [sym_primitive_type] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_nullptr] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_template] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(7113), }, - [2361] = { - [anon_sym_LF] = ACTIONS(7128), - [sym_comment] = ACTIONS(244), - }, - [2362] = { + [2347] = { [anon_sym_DASH] = ACTIONS(3688), [sym_raw_string_literal] = ACTIONS(3690), + [anon_sym_else] = ACTIONS(3688), [sym_true] = ACTIONS(3688), [anon_sym_mutable] = ACTIONS(3688), [sym_null] = ACTIONS(3688), @@ -102156,350 +101891,314 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3690), [anon_sym_restrict] = ACTIONS(3688), }, - [2363] = { + [2348] = { + [anon_sym_LF] = ACTIONS(7115), [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(7130), - [sym_preproc_arg] = ACTIONS(7132), }, - [2364] = { - [anon_sym_DASH] = ACTIONS(3712), - [sym_raw_string_literal] = ACTIONS(3714), - [sym_true] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [sym_null] = ACTIONS(3712), - [anon_sym_break] = ACTIONS(3712), - [aux_sym_preproc_if_token2] = ACTIONS(3712), - [anon_sym_BANG] = ACTIONS(3714), - [anon_sym_sizeof] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [sym_identifier] = ACTIONS(3712), - [anon_sym_delete] = ACTIONS(3712), - [anon_sym_continue] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [sym_number_literal] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [anon_sym_namespace] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [aux_sym_preproc_elif_token1] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_struct] = ACTIONS(3712), - [sym_auto] = ACTIONS(3712), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_using] = ACTIONS(3712), - [aux_sym_preproc_else_token1] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_goto] = ACTIONS(3712), - [sym_operator_name] = ACTIONS(3714), - [anon_sym_while] = ACTIONS(3712), - [anon_sym_try] = ACTIONS(3712), - [anon_sym_for] = ACTIONS(3712), - [aux_sym_preproc_include_token1] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [sym_false] = ACTIONS(3712), - [sym_nullptr] = ACTIONS(3712), - [anon_sym_do] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_return] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3714), - [anon_sym_SEMI] = ACTIONS(3714), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3712), + [2349] = { + [anon_sym_DASH] = ACTIONS(3698), + [sym_raw_string_literal] = ACTIONS(3700), + [sym_true] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [aux_sym_preproc_if_token2] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_sizeof] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [sym_number_literal] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [aux_sym_preproc_elif_token1] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3698), + [sym_auto] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3698), + [aux_sym_preproc_else_token1] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_goto] = ACTIONS(3698), + [sym_operator_name] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [aux_sym_preproc_include_token1] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_nullptr] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3700), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3698), }, - [2365] = { - [sym_compound_statement] = STATE(3344), - [sym_delete_method_clause] = STATE(3344), - [sym_default_method_clause] = STATE(3344), - [anon_sym_EQ] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(830), - [sym_comment] = ACTIONS(3), + [2350] = { + [sym_comment] = ACTIONS(244), + [anon_sym_LF] = ACTIONS(7117), + [sym_preproc_arg] = ACTIONS(7119), }, - [2366] = { + [2351] = { + [sym_compound_statement] = STATE(3320), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(3321), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(7121), + }, + [2352] = { + [aux_sym_declaration_repeat1] = STATE(3321), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(7121), }, - [2367] = { + [2353] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(7136), + [anon_sym_SEMI] = ACTIONS(7123), }, - [2368] = { - [anon_sym_DASH] = ACTIONS(7138), - [sym_raw_string_literal] = ACTIONS(7140), - [sym_true] = ACTIONS(7138), - [anon_sym_mutable] = ACTIONS(7138), - [sym_null] = ACTIONS(7138), - [anon_sym_break] = ACTIONS(7138), - [anon_sym_BANG] = ACTIONS(7140), - [anon_sym_sizeof] = ACTIONS(7138), - [anon_sym_volatile] = ACTIONS(7138), - [anon_sym_PLUS] = ACTIONS(7138), - [anon_sym_typedef] = ACTIONS(7138), - [anon_sym_switch] = ACTIONS(7138), - [anon_sym_explicit] = ACTIONS(7138), - [sym_identifier] = ACTIONS(7138), - [anon_sym_delete] = ACTIONS(7138), - [anon_sym_continue] = ACTIONS(7138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7138), - [anon_sym__Atomic] = ACTIONS(7138), - [sym_number_literal] = ACTIONS(7140), - [anon_sym_extern] = ACTIONS(7138), - [anon_sym_enum] = ACTIONS(7138), - [anon_sym_constexpr] = ACTIONS(7138), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7140), - [anon_sym_namespace] = ACTIONS(7138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7138), - [anon_sym_SQUOTE] = ACTIONS(7140), - [anon_sym_LBRACE] = ACTIONS(7140), - [anon_sym_DASH_DASH] = ACTIONS(7140), - [anon_sym_LPAREN2] = ACTIONS(7140), - [anon_sym_struct] = ACTIONS(7138), - [sym_auto] = ACTIONS(7138), - [anon_sym_signed] = ACTIONS(7138), - [anon_sym_long] = ACTIONS(7138), - [anon_sym_COLON_COLON] = ACTIONS(7140), - [anon_sym_using] = ACTIONS(7138), - [sym_preproc_directive] = ACTIONS(7138), - [aux_sym_preproc_if_token1] = ACTIONS(7138), - [anon_sym_AMP] = ACTIONS(7138), - [anon_sym_static] = ACTIONS(7138), - [anon_sym_RBRACE] = ACTIONS(7140), - [anon_sym_STAR] = ACTIONS(7140), - [anon_sym_union] = ACTIONS(7138), - [anon_sym_typename] = ACTIONS(7138), - [anon_sym_short] = ACTIONS(7138), - [anon_sym_new] = ACTIONS(7138), - [anon_sym_goto] = ACTIONS(7138), - [sym_operator_name] = ACTIONS(7140), - [anon_sym_while] = ACTIONS(7138), - [anon_sym_try] = ACTIONS(7138), - [anon_sym_for] = ACTIONS(7138), - [aux_sym_preproc_include_token1] = ACTIONS(7138), - [anon_sym_register] = ACTIONS(7138), - [anon_sym_DQUOTE] = ACTIONS(7140), - [anon_sym_const] = ACTIONS(7138), - [anon_sym_LBRACK] = ACTIONS(7138), - [anon_sym_class] = ACTIONS(7138), - [anon_sym_if] = ACTIONS(7138), - [sym_primitive_type] = ACTIONS(7138), - [sym_false] = ACTIONS(7138), - [sym_nullptr] = ACTIONS(7138), - [anon_sym_do] = ACTIONS(7138), - [anon_sym_template] = ACTIONS(7138), - [anon_sym_return] = ACTIONS(7138), - [anon_sym_TILDE] = ACTIONS(7140), - [anon_sym_SEMI] = ACTIONS(7140), - [ts_builtin_sym_end] = ACTIONS(7140), - [aux_sym_preproc_def_token1] = ACTIONS(7138), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_inline] = ACTIONS(7138), - [anon_sym_PLUS_PLUS] = ACTIONS(7140), - [anon_sym_restrict] = ACTIONS(7138), + [2354] = { + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(7125), }, - [2369] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3347), - [sym_logical_expression] = STATE(3347), - [sym_bitwise_expression] = STATE(3347), - [sym_cast_expression] = STATE(3347), - [sym_new_expression] = STATE(3347), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3347), - [sym_char_literal] = STATE(3347), - [sym_template_function] = STATE(3347), - [sym_conditional_expression] = STATE(3347), - [sym_equality_expression] = STATE(3347), - [sym_relational_expression] = STATE(3347), - [sym_delete_expression] = STATE(3347), - [sym_sizeof_expression] = STATE(3347), - [sym_parenthesized_expression] = STATE(3347), - [sym_initializer_list] = STATE(3348), - [sym_concatenated_string] = STATE(3347), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(3347), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3347), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3347), - [sym_math_expression] = STATE(3347), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7142), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(7144), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(7144), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7142), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(7144), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(7144), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), + [2355] = { + [anon_sym_DASH] = ACTIONS(3882), + [sym_raw_string_literal] = ACTIONS(3884), + [sym_true] = ACTIONS(3882), + [anon_sym_mutable] = ACTIONS(3882), + [sym_null] = ACTIONS(3882), + [anon_sym_break] = ACTIONS(3882), + [aux_sym_preproc_if_token2] = ACTIONS(3882), + [anon_sym_BANG] = ACTIONS(3884), + [anon_sym_sizeof] = ACTIONS(3882), + [anon_sym_volatile] = ACTIONS(3882), + [anon_sym_PLUS] = ACTIONS(3882), + [anon_sym_typedef] = ACTIONS(3882), + [anon_sym_switch] = ACTIONS(3882), + [anon_sym_explicit] = ACTIONS(3882), + [sym_identifier] = ACTIONS(3882), + [anon_sym_delete] = ACTIONS(3882), + [anon_sym_continue] = ACTIONS(3882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3882), + [anon_sym__Atomic] = ACTIONS(3882), + [sym_number_literal] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3882), + [anon_sym_enum] = ACTIONS(3882), + [anon_sym_constexpr] = ACTIONS(3882), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3884), + [anon_sym_namespace] = ACTIONS(3882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3882), + [aux_sym_preproc_elif_token1] = ACTIONS(3882), + [anon_sym_SQUOTE] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_DASH_DASH] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3882), + [sym_auto] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3882), + [anon_sym_long] = ACTIONS(3882), + [anon_sym_COLON_COLON] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3882), + [aux_sym_preproc_else_token1] = ACTIONS(3882), + [sym_preproc_directive] = ACTIONS(3882), + [aux_sym_preproc_if_token1] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3882), + [anon_sym_static] = ACTIONS(3882), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3882), + [anon_sym_typename] = ACTIONS(3882), + [anon_sym_short] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(3882), + [anon_sym_goto] = ACTIONS(3882), + [sym_operator_name] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3882), + [anon_sym_try] = ACTIONS(3882), + [anon_sym_for] = ACTIONS(3882), + [aux_sym_preproc_include_token1] = ACTIONS(3882), + [anon_sym_register] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3882), + [anon_sym_LBRACK] = ACTIONS(3882), + [anon_sym_class] = ACTIONS(3882), + [anon_sym_if] = ACTIONS(3882), + [sym_primitive_type] = ACTIONS(3882), + [sym_false] = ACTIONS(3882), + [sym_nullptr] = ACTIONS(3882), + [anon_sym_do] = ACTIONS(3882), + [anon_sym_template] = ACTIONS(3882), + [anon_sym_return] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3882), + [anon_sym_PLUS_PLUS] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3882), }, - [2370] = { + [2356] = { + [sym_compound_statement] = STATE(3324), + [sym_default_method_clause] = STATE(3324), + [sym_delete_method_clause] = STATE(3324), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(834), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(7146), }, - [2371] = { - [sym_goto_statement] = STATE(1236), - [sym_preproc_function_def] = STATE(1236), - [sym_logical_expression] = STATE(2024), - [sym_for_range_loop] = STATE(1236), - [sym_cast_expression] = STATE(2024), - [sym_declaration] = STATE(1236), - [sym_field_expression] = STATE(2022), - [sym_field_designator] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_switch_statement] = STATE(1236), - [sym_return_statement] = STATE(1236), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(2024), - [sym_relational_expression] = STATE(2024), - [sym_delete_expression] = STATE(2024), - [sym_subscript_expression] = STATE(2022), - [sym_scoped_identifier] = STATE(50), + [2357] = { + [sym_goto_statement] = STATE(1232), + [sym_preproc_function_def] = STATE(1232), + [sym_logical_expression] = STATE(2031), + [sym_try_statement] = STATE(1232), + [sym_cast_expression] = STATE(2031), + [sym_lambda_expression] = STATE(2031), + [sym_field_expression] = STATE(2029), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1232), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_field_designator] = STATE(452), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(1232), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(1232), + [sym_namespace_definition] = STATE(1232), + [sym_conditional_expression] = STATE(2031), + [sym_relational_expression] = STATE(2031), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(1232), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(2030), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1232), [sym_initializer_list] = STATE(451), - [sym_type_definition] = STATE(1236), - [sym_string_literal] = STATE(2023), - [sym_function_declarator] = STATE(51), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1236), - [sym_break_statement] = STATE(1236), - [sym_preproc_include] = STATE(1236), - [sym_assignment_expression] = STATE(2024), - [sym_preproc_ifdef] = STATE(1236), - [sym_shift_expression] = STATE(2024), - [sym_using_declaration] = STATE(1236), - [sym_call_expression] = STATE(2022), - [sym_attribute] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(1232), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(1232), + [sym_preproc_include] = STATE(1232), + [sym_assignment_expression] = STATE(2031), + [sym_preproc_ifdef] = STATE(1232), + [sym_shift_expression] = STATE(2031), + [sym_for_range_loop] = STATE(1232), + [sym_call_expression] = STATE(2029), [sym_initializer_pair] = STATE(451), - [sym_compound_statement] = STATE(1236), - [sym_template_instantiation] = STATE(1236), - [sym_constructor_or_destructor_definition] = STATE(1236), - [sym_expression_statement] = STATE(1236), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(1236), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(2024), - [sym_preproc_def] = STATE(1236), - [sym_bitwise_expression] = STATE(2024), - [sym_new_expression] = STATE(2024), - [sym_function_definition] = STATE(1236), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(2024), - [sym_char_literal] = STATE(2024), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(1236), - [sym_alias_declaration] = STATE(1236), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [aux_sym_translation_unit_repeat1] = STATE(1236), - [sym_storage_class_specifier] = STATE(48), - [sym_if_statement] = STATE(1236), - [sym_for_statement] = STATE(1236), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(1236), - [sym_equality_expression] = STATE(2024), - [sym_try_statement] = STATE(1236), - [sym_sizeof_expression] = STATE(2024), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(2024), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(2024), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(2024), - [sym_structured_binding_declaration] = STATE(1236), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(1236), - [sym_preproc_if] = STATE(1236), - [sym_pointer_expression] = STATE(2022), - [sym_namespace_definition] = STATE(1236), - [sym_math_expression] = STATE(2024), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(1236), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [sym_subscript_designator] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(1236), - [sym_while_statement] = STATE(1236), - [sym_raw_string_literal] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4043), - [sym_true] = ACTIONS(4045), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(1232), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_expression_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(2031), + [sym_preproc_def] = STATE(1232), + [sym_bitwise_expression] = STATE(2031), + [sym_delete_expression] = STATE(2031), + [sym_function_definition] = STATE(1232), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(2031), + [sym_char_literal] = STATE(2031), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(1232), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(1232), + [sym_equality_expression] = STATE(2031), + [sym_using_declaration] = STATE(1232), + [sym_sizeof_expression] = STATE(2031), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(2031), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(2031), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1232), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(1232), + [sym_preproc_if] = STATE(1232), + [sym_pointer_expression] = STATE(2029), + [sym_new_expression] = STATE(2031), + [sym_math_expression] = STATE(2031), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(1232), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1232), + [aux_sym_translation_unit_repeat1] = STATE(1232), + [sym_subscript_designator] = STATE(452), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_raw_string_literal] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4079), + [sym_true] = ACTIONS(4081), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4045), + [sym_null] = ACTIONS(4081), [anon_sym_break] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_sizeof] = ACTIONS(4049), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_sizeof] = ACTIONS(4085), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4079), [anon_sym_typedef] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(4051), - [anon_sym_delete] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4087), + [anon_sym_delete] = ACTIONS(4089), [anon_sym_continue] = ACTIONS(27), [aux_sym_preproc_ifdef_token1] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(760), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4041), + [sym_number_literal] = ACTIONS(4077), [anon_sym_extern] = ACTIONS(31), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), @@ -102509,25 +102208,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(39), [aux_sym_preproc_ifdef_token2] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [anon_sym_LPAREN2] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [anon_sym_LPAREN2] = ACTIONS(4095), [anon_sym_struct] = ACTIONS(49), [sym_auto] = ACTIONS(51), [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4097), [anon_sym_using] = ACTIONS(55), [sym_preproc_directive] = ACTIONS(57), [aux_sym_preproc_if_token1] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4099), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(7148), - [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_RBRACE] = ACTIONS(7127), + [anon_sym_STAR] = ACTIONS(4103), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), - [anon_sym_new] = ACTIONS(4069), + [anon_sym_new] = ACTIONS(4105), [anon_sym_goto] = ACTIONS(73), [sym_operator_name] = ACTIONS(75), [anon_sym_while] = ACTIONS(250), @@ -102537,1400 +102236,1455 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_LBRACK] = ACTIONS(4107), [anon_sym_class] = ACTIONS(89), [anon_sym_if] = ACTIONS(256), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(4045), - [sym_nullptr] = ACTIONS(4045), + [sym_false] = ACTIONS(4081), + [sym_nullptr] = ACTIONS(4081), [anon_sym_do] = ACTIONS(95), [anon_sym_template] = ACTIONS(97), [anon_sym_return] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4109), [anon_sym_SEMI] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_restrict] = ACTIONS(11), }, - [2372] = { - [anon_sym_DASH] = ACTIONS(4075), - [sym_raw_string_literal] = ACTIONS(4077), - [sym_true] = ACTIONS(4075), - [anon_sym_mutable] = ACTIONS(4075), - [sym_null] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [aux_sym_preproc_if_token2] = ACTIONS(4075), - [anon_sym_BANG] = ACTIONS(4077), - [anon_sym_sizeof] = ACTIONS(4075), - [anon_sym_volatile] = ACTIONS(4075), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_typedef] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(4075), - [anon_sym_explicit] = ACTIONS(4075), - [sym_identifier] = ACTIONS(4075), - [anon_sym_delete] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4075), - [anon_sym__Atomic] = ACTIONS(4075), - [sym_number_literal] = ACTIONS(4077), - [anon_sym_extern] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_constexpr] = ACTIONS(4075), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4077), - [anon_sym_namespace] = ACTIONS(4075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4075), - [aux_sym_preproc_elif_token1] = ACTIONS(4075), - [anon_sym_SQUOTE] = ACTIONS(4077), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_LPAREN2] = ACTIONS(4077), - [anon_sym_struct] = ACTIONS(4075), - [sym_auto] = ACTIONS(4075), - [anon_sym_signed] = ACTIONS(4075), - [anon_sym_long] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_using] = ACTIONS(4075), - [aux_sym_preproc_else_token1] = ACTIONS(4075), - [sym_preproc_directive] = ACTIONS(4075), - [aux_sym_preproc_if_token1] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4077), - [anon_sym_union] = ACTIONS(4075), - [anon_sym_typename] = ACTIONS(4075), - [anon_sym_short] = ACTIONS(4075), - [anon_sym_new] = ACTIONS(4075), - [anon_sym_goto] = ACTIONS(4075), - [sym_operator_name] = ACTIONS(4077), - [anon_sym_while] = ACTIONS(4075), - [anon_sym_try] = ACTIONS(4075), - [anon_sym_for] = ACTIONS(4075), - [aux_sym_preproc_include_token1] = ACTIONS(4075), - [anon_sym_register] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(4077), - [anon_sym_const] = ACTIONS(4075), - [anon_sym_LBRACK] = ACTIONS(4075), - [anon_sym_class] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [sym_primitive_type] = ACTIONS(4075), - [sym_false] = ACTIONS(4075), - [sym_nullptr] = ACTIONS(4075), - [anon_sym_do] = ACTIONS(4075), - [anon_sym_template] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_TILDE] = ACTIONS(4077), - [anon_sym_SEMI] = ACTIONS(4077), - [aux_sym_preproc_def_token1] = ACTIONS(4075), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_restrict] = ACTIONS(4075), - }, - [2373] = { - [anon_sym_DASH] = ACTIONS(4079), - [sym_raw_string_literal] = ACTIONS(4081), - [sym_true] = ACTIONS(4079), - [anon_sym_mutable] = ACTIONS(4079), - [sym_null] = ACTIONS(4079), - [anon_sym_break] = ACTIONS(4079), - [aux_sym_preproc_if_token2] = ACTIONS(4079), - [anon_sym_BANG] = ACTIONS(4081), - [anon_sym_sizeof] = ACTIONS(4079), - [anon_sym_volatile] = ACTIONS(4079), - [anon_sym_PLUS] = ACTIONS(4079), - [anon_sym_typedef] = ACTIONS(4079), - [anon_sym_switch] = ACTIONS(4079), - [anon_sym_explicit] = ACTIONS(4079), - [sym_identifier] = ACTIONS(4079), - [anon_sym_delete] = ACTIONS(4079), - [anon_sym_continue] = ACTIONS(4079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4079), - [anon_sym__Atomic] = ACTIONS(4079), - [sym_number_literal] = ACTIONS(4081), - [anon_sym_extern] = ACTIONS(4079), - [anon_sym_enum] = ACTIONS(4079), - [anon_sym_constexpr] = ACTIONS(4079), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4081), - [anon_sym_namespace] = ACTIONS(4079), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4079), - [aux_sym_preproc_elif_token1] = ACTIONS(4079), - [anon_sym_SQUOTE] = ACTIONS(4081), - [anon_sym_LBRACE] = ACTIONS(4081), - [anon_sym_DASH_DASH] = ACTIONS(4081), - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_struct] = ACTIONS(4079), - [sym_auto] = ACTIONS(4079), - [anon_sym_signed] = ACTIONS(4079), - [anon_sym_long] = ACTIONS(4079), - [anon_sym_COLON_COLON] = ACTIONS(4081), - [anon_sym_using] = ACTIONS(4079), - [aux_sym_preproc_else_token1] = ACTIONS(4079), - [sym_preproc_directive] = ACTIONS(4079), - [aux_sym_preproc_if_token1] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(4079), - [anon_sym_static] = ACTIONS(4079), - [anon_sym_STAR] = ACTIONS(4081), - [anon_sym_union] = ACTIONS(4079), - [anon_sym_typename] = ACTIONS(4079), - [anon_sym_short] = ACTIONS(4079), - [anon_sym_new] = ACTIONS(4079), - [anon_sym_goto] = ACTIONS(4079), - [sym_operator_name] = ACTIONS(4081), - [anon_sym_while] = ACTIONS(4079), - [anon_sym_try] = ACTIONS(4079), - [anon_sym_for] = ACTIONS(4079), - [aux_sym_preproc_include_token1] = ACTIONS(4079), - [anon_sym_register] = ACTIONS(4079), - [anon_sym_DQUOTE] = ACTIONS(4081), - [anon_sym_const] = ACTIONS(4079), - [anon_sym_LBRACK] = ACTIONS(4079), - [anon_sym_class] = ACTIONS(4079), - [anon_sym_if] = ACTIONS(4079), - [sym_primitive_type] = ACTIONS(4079), - [sym_false] = ACTIONS(4079), - [sym_nullptr] = ACTIONS(4079), - [anon_sym_do] = ACTIONS(4079), - [anon_sym_template] = ACTIONS(4079), - [anon_sym_return] = ACTIONS(4079), - [anon_sym_TILDE] = ACTIONS(4081), - [anon_sym_SEMI] = ACTIONS(4081), - [aux_sym_preproc_def_token1] = ACTIONS(4079), - [anon_sym_AMP_AMP] = ACTIONS(4081), - [anon_sym_inline] = ACTIONS(4079), - [anon_sym_PLUS_PLUS] = ACTIONS(4081), - [anon_sym_restrict] = ACTIONS(4079), + [2358] = { + [anon_sym_DASH] = ACTIONS(4111), + [sym_raw_string_literal] = ACTIONS(4113), + [sym_true] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [sym_null] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [aux_sym_preproc_if_token2] = ACTIONS(4111), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_switch] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [sym_identifier] = ACTIONS(4111), + [anon_sym_delete] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [sym_number_literal] = ACTIONS(4113), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym_namespace] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [aux_sym_preproc_elif_token1] = ACTIONS(4111), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_DASH_DASH] = ACTIONS(4113), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_struct] = ACTIONS(4111), + [sym_auto] = ACTIONS(4111), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_using] = ACTIONS(4111), + [aux_sym_preproc_else_token1] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_goto] = ACTIONS(4111), + [sym_operator_name] = ACTIONS(4113), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [aux_sym_preproc_include_token1] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_DQUOTE] = ACTIONS(4113), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [sym_nullptr] = ACTIONS(4111), + [anon_sym_do] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4113), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym_PLUS_PLUS] = ACTIONS(4113), + [anon_sym_restrict] = ACTIONS(4111), }, - [2374] = { - [aux_sym_declaration_repeat1] = STATE(2028), + [2359] = { + [anon_sym_DASH] = ACTIONS(4115), + [sym_raw_string_literal] = ACTIONS(4117), + [sym_true] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [sym_null] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [aux_sym_preproc_if_token2] = ACTIONS(4115), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_sizeof] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [sym_identifier] = ACTIONS(4115), + [anon_sym_delete] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [sym_number_literal] = ACTIONS(4117), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(7150), - }, - [2375] = { - [sym_compound_statement] = STATE(3352), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(3353), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(4734), - [anon_sym_SEMI] = ACTIONS(7150), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym_namespace] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [aux_sym_preproc_elif_token1] = ACTIONS(4115), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_struct] = ACTIONS(4115), + [sym_auto] = ACTIONS(4115), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_using] = ACTIONS(4115), + [aux_sym_preproc_else_token1] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_new] = ACTIONS(4115), + [anon_sym_goto] = ACTIONS(4115), + [sym_operator_name] = ACTIONS(4117), + [anon_sym_while] = ACTIONS(4115), + [anon_sym_try] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [aux_sym_preproc_include_token1] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [sym_nullptr] = ACTIONS(4115), + [anon_sym_do] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4117), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_restrict] = ACTIONS(4115), }, - [2376] = { - [aux_sym_declaration_repeat1] = STATE(3353), + [2360] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(7150), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(7121), }, - [2377] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(7152), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(7152), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2361] = { + [anon_sym_DASH] = ACTIONS(7129), + [sym_raw_string_literal] = ACTIONS(7131), + [sym_true] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [sym_null] = ACTIONS(7129), + [anon_sym_break] = ACTIONS(7129), + [anon_sym_BANG] = ACTIONS(7131), + [anon_sym_sizeof] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_typedef] = ACTIONS(7129), + [anon_sym_switch] = ACTIONS(7129), + [anon_sym_explicit] = ACTIONS(7129), + [sym_identifier] = ACTIONS(7129), + [anon_sym_delete] = ACTIONS(7129), + [anon_sym_continue] = ACTIONS(7129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [sym_number_literal] = ACTIONS(7131), + [anon_sym_extern] = ACTIONS(7129), + [anon_sym_enum] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7131), + [anon_sym_namespace] = ACTIONS(7129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7129), + [anon_sym_SQUOTE] = ACTIONS(7131), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_struct] = ACTIONS(7129), + [sym_auto] = ACTIONS(7129), + [anon_sym_signed] = ACTIONS(7129), + [anon_sym_long] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(7131), + [anon_sym_using] = ACTIONS(7129), + [sym_preproc_directive] = ACTIONS(7129), + [aux_sym_preproc_if_token1] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_static] = ACTIONS(7129), + [anon_sym_RBRACE] = ACTIONS(7131), + [anon_sym_STAR] = ACTIONS(7131), + [anon_sym_union] = ACTIONS(7129), + [anon_sym_typename] = ACTIONS(7129), + [anon_sym_short] = ACTIONS(7129), + [anon_sym_new] = ACTIONS(7129), + [anon_sym_goto] = ACTIONS(7129), + [sym_operator_name] = ACTIONS(7131), + [anon_sym_while] = ACTIONS(7129), + [anon_sym_try] = ACTIONS(7129), + [anon_sym_for] = ACTIONS(7129), + [aux_sym_preproc_include_token1] = ACTIONS(7129), + [anon_sym_register] = ACTIONS(7129), + [anon_sym_DQUOTE] = ACTIONS(7131), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_class] = ACTIONS(7129), + [anon_sym_if] = ACTIONS(7129), + [sym_primitive_type] = ACTIONS(7129), + [sym_false] = ACTIONS(7129), + [sym_nullptr] = ACTIONS(7129), + [anon_sym_do] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_return] = ACTIONS(7129), + [anon_sym_TILDE] = ACTIONS(7131), + [anon_sym_SEMI] = ACTIONS(7131), + [ts_builtin_sym_end] = ACTIONS(7131), + [aux_sym_preproc_def_token1] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_inline] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_restrict] = ACTIONS(7129), }, - [2378] = { - [anon_sym_LPAREN2] = ACTIONS(7154), - [anon_sym_DASH] = ACTIONS(7156), - [anon_sym_PLUS_PLUS] = ACTIONS(7154), - [anon_sym_LBRACE] = ACTIONS(7154), - [anon_sym_mutable] = ACTIONS(7156), - [anon_sym_DASH_DASH] = ACTIONS(7154), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7154), - [anon_sym_EQ] = ACTIONS(7156), - [anon_sym_COLON_COLON] = ACTIONS(7154), - [anon_sym_final] = ACTIONS(7156), - [anon_sym_EQ_EQ] = ACTIONS(7154), - [anon_sym_PIPE] = ACTIONS(7156), - [anon_sym_LT] = ACTIONS(7156), - [anon_sym_AMP] = ACTIONS(7156), - [anon_sym_static] = ACTIONS(7156), - [anon_sym_volatile] = ACTIONS(7156), - [anon_sym_PLUS] = ACTIONS(7156), - [anon_sym_GT_EQ] = ACTIONS(7154), - [anon_sym_STAR] = ACTIONS(7154), - [anon_sym_SLASH] = ACTIONS(7156), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7154), - [anon_sym_COLON] = ACTIONS(7156), - [anon_sym_explicit] = ACTIONS(7156), - [sym_identifier] = ACTIONS(7156), - [anon_sym_RBRACE] = ACTIONS(7154), - [anon_sym_override] = ACTIONS(7156), - [sym_operator_name] = ACTIONS(7154), - [sym_noexcept] = ACTIONS(7156), - [anon_sym_CARET] = ACTIONS(7154), - [anon_sym_GT] = ACTIONS(7156), - [anon_sym_COMMA] = ACTIONS(7154), - [anon_sym_register] = ACTIONS(7156), - [anon_sym__Atomic] = ACTIONS(7156), - [anon_sym_const] = ACTIONS(7156), - [anon_sym_extern] = ACTIONS(7156), - [anon_sym_LBRACK] = ACTIONS(7154), - [anon_sym_PIPE_PIPE] = ACTIONS(7154), - [anon_sym_DOT] = ACTIONS(7156), - [anon_sym_LT_LT] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7156), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7154), - [anon_sym_QMARK] = ACTIONS(7154), - [anon_sym_TILDE] = ACTIONS(7154), - [anon_sym_SEMI] = ACTIONS(7154), - [anon_sym_BANG_EQ] = ACTIONS(7154), - [anon_sym_LT_EQ] = ACTIONS(7154), - [anon_sym_AMP_AMP] = ACTIONS(7154), - [anon_sym_inline] = ACTIONS(7156), - [anon_sym_RPAREN] = ACTIONS(7154), - [anon_sym_restrict] = ACTIONS(7156), - [anon_sym_GT_GT] = ACTIONS(7154), - [anon_sym_DASH_GT] = ACTIONS(7154), + [2362] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2379] = { + [2363] = { + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7137), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7137), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7137), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_final] = ACTIONS(7137), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7137), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_AMP] = ACTIONS(7137), + [anon_sym_static] = ACTIONS(7137), + [anon_sym_volatile] = ACTIONS(7137), + [anon_sym_PLUS] = ACTIONS(7137), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COLON] = ACTIONS(7137), + [anon_sym_explicit] = ACTIONS(7137), + [sym_identifier] = ACTIONS(7137), + [anon_sym_RBRACE] = ACTIONS(7135), + [anon_sym_override] = ACTIONS(7137), + [sym_operator_name] = ACTIONS(7135), + [sym_noexcept] = ACTIONS(7137), + [anon_sym_CARET] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7137), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_register] = ACTIONS(7137), + [anon_sym__Atomic] = ACTIONS(7137), + [anon_sym_const] = ACTIONS(7137), + [anon_sym_extern] = ACTIONS(7137), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(7135), + [anon_sym_constexpr] = ACTIONS(7137), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_TILDE] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_inline] = ACTIONS(7137), + [anon_sym_RPAREN] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7137), + [anon_sym_GT_GT] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + }, + [2364] = { [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(7158), - [anon_sym_RBRACE] = ACTIONS(7158), + [anon_sym_COMMA] = ACTIONS(7139), + [anon_sym_RBRACE] = ACTIONS(7139), }, - [2380] = { - [sym_enumerator] = STATE(2379), + [2365] = { + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(7160), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(7141), }, - [2381] = { - [aux_sym_enumerator_list_repeat1] = STATE(2381), + [2366] = { + [aux_sym_enumerator_list_repeat1] = STATE(2366), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(7162), - [anon_sym_RBRACE] = ACTIONS(7158), + [anon_sym_COMMA] = ACTIONS(7143), + [anon_sym_RBRACE] = ACTIONS(7139), }, - [2382] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3356), - [sym_logical_expression] = STATE(3356), - [sym_bitwise_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(3356), - [sym_char_literal] = STATE(3356), - [sym_template_function] = STATE(3356), - [sym_conditional_expression] = STATE(3356), - [sym_equality_expression] = STATE(3356), - [sym_relational_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_concatenated_string] = STATE(3356), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(3356), - [sym_math_expression] = STATE(3356), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7165), + [2367] = { + [sym_template_function] = STATE(3328), + [sym__expression] = STATE(3328), + [sym_logical_expression] = STATE(3328), + [sym_bitwise_expression] = STATE(3328), + [sym_cast_expression] = STATE(3328), + [sym_delete_expression] = STATE(3328), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(3328), + [sym_lambda_expression] = STATE(3328), + [sym_char_literal] = STATE(3328), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3328), + [sym_equality_expression] = STATE(3328), + [sym_relational_expression] = STATE(3328), + [sym_sizeof_expression] = STATE(3328), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3328), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(3328), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3328), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(3328), + [sym_math_expression] = STATE(3328), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(3328), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7146), [anon_sym_DASH] = ACTIONS(212), - [sym_true] = ACTIONS(7167), + [sym_true] = ACTIONS(7148), [anon_sym_DASH_DASH] = ACTIONS(232), - [sym_null] = ACTIONS(7167), + [sym_null] = ACTIONS(7148), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7165), + [sym_number_literal] = ACTIONS(7146), [anon_sym_COLON_COLON] = ACTIONS(218), - [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1343), [anon_sym_BANG] = ACTIONS(220), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7167), - [sym_nullptr] = ACTIONS(7167), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7148), + [sym_nullptr] = ACTIONS(7148), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), - [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1343), [anon_sym_TILDE] = ACTIONS(226), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1343), [sym_identifier] = ACTIONS(228), [anon_sym_new] = ACTIONS(230), [anon_sym_PLUS_PLUS] = ACTIONS(232), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(234), }, - [2383] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(506), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [2368] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(5269), - [anon_sym_DASH_DASH] = ACTIONS(896), - [sym_null] = ACTIONS(5269), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5267), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(5269), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(507), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [sym_raw_string_literal] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(5268), + [anon_sym_DASH_DASH] = ACTIONS(900), + [sym_null] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5266), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(5268), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(1234), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1240), }, - [2384] = { - [sym_template_type] = STATE(239), + [2369] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(7169), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(7150), }, - [2385] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2370] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2386] = { - [anon_sym_RPAREN] = ACTIONS(7171), + [2371] = { + [anon_sym_RPAREN] = ACTIONS(7152), [sym_comment] = ACTIONS(3), }, - [2387] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2372] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2388] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2388), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(7173), - [anon_sym_long] = ACTIONS(7173), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(7173), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(7173), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [2373] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(7154), + [anon_sym_long] = ACTIONS(7154), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(7154), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(7154), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), }, - [2389] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3359), - [sym_logical_expression] = STATE(3359), - [sym_bitwise_expression] = STATE(3359), - [sym_cast_expression] = STATE(3359), - [sym_new_expression] = STATE(3359), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3359), - [sym_char_literal] = STATE(3359), - [sym_template_function] = STATE(3359), - [sym_conditional_expression] = STATE(3359), - [sym_equality_expression] = STATE(3359), - [sym_relational_expression] = STATE(3359), - [sym_delete_expression] = STATE(3359), - [sym_sizeof_expression] = STATE(3359), - [sym_parenthesized_expression] = STATE(3359), - [sym_lambda_expression] = STATE(3359), - [sym_concatenated_string] = STATE(3359), - [sym_string_literal] = STATE(967), + [2374] = { + [sym_template_function] = STATE(3331), + [sym__expression] = STATE(3331), + [sym_logical_expression] = STATE(3331), + [sym_bitwise_expression] = STATE(3331), + [sym_cast_expression] = STATE(3331), + [sym_delete_expression] = STATE(3331), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3331), + [sym_lambda_expression] = STATE(3331), + [sym_char_literal] = STATE(3331), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3359), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3359), - [sym_math_expression] = STATE(3359), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3331), + [sym_equality_expression] = STATE(3331), + [sym_relational_expression] = STATE(3331), + [sym_sizeof_expression] = STATE(3331), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(7176), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(7178), - [sym_null] = ACTIONS(7178), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(7176), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(7178), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7178), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(3331), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3331), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3331), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3331), + [sym_math_expression] = STATE(3331), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3331), + [sym_raw_string_literal] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(7159), + [sym_null] = ACTIONS(7159), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(7157), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(7159), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7159), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [2390] = { - [sym_initializer_list] = STATE(2571), - [sym_new_declarator] = STATE(2572), - [sym_argument_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [2375] = { + [sym_new_declarator] = STATE(2556), + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [2391] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3360), - [sym_logical_expression] = STATE(3360), - [sym_bitwise_expression] = STATE(3360), - [sym_cast_expression] = STATE(3360), - [sym_new_expression] = STATE(3360), - [sym_field_expression] = STATE(3360), - [sym_compound_literal_expression] = STATE(3360), - [sym_char_literal] = STATE(3360), - [sym_template_function] = STATE(3360), - [sym_conditional_expression] = STATE(3360), - [sym_equality_expression] = STATE(3360), - [sym_relational_expression] = STATE(3360), - [sym_delete_expression] = STATE(3360), - [sym_sizeof_expression] = STATE(3360), - [sym_parenthesized_expression] = STATE(3360), - [sym_lambda_expression] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3360), - [sym_assignment_expression] = STATE(3360), - [sym_pointer_expression] = STATE(3360), - [sym_shift_expression] = STATE(3360), - [sym_math_expression] = STATE(3360), - [sym_call_expression] = STATE(3360), - [sym_lambda_capture_specifier] = STATE(196), + [2376] = { + [sym_template_function] = STATE(3332), + [sym__expression] = STATE(3332), + [sym_logical_expression] = STATE(3332), + [sym_bitwise_expression] = STATE(3332), + [sym_cast_expression] = STATE(3332), + [sym_delete_expression] = STATE(3332), + [sym_field_expression] = STATE(3332), + [sym_compound_literal_expression] = STATE(3332), + [sym_lambda_expression] = STATE(3332), + [sym_char_literal] = STATE(3332), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3332), + [sym_equality_expression] = STATE(3332), + [sym_relational_expression] = STATE(3332), + [sym_sizeof_expression] = STATE(3332), + [sym_subscript_expression] = STATE(3332), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7180), - [anon_sym_DASH] = ACTIONS(882), - [sym_true] = ACTIONS(7182), - [anon_sym_DASH_DASH] = ACTIONS(896), - [sym_null] = ACTIONS(7182), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7180), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7182), - [sym_nullptr] = ACTIONS(7182), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(892), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), + [sym_parenthesized_expression] = STATE(3332), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(3332), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3332), + [sym_pointer_expression] = STATE(3332), + [sym_shift_expression] = STATE(3332), + [sym_math_expression] = STATE(3332), + [sym_call_expression] = STATE(3332), + [sym_new_expression] = STATE(3332), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7161), + [anon_sym_DASH] = ACTIONS(886), + [sym_true] = ACTIONS(7163), + [anon_sym_DASH_DASH] = ACTIONS(900), + [sym_null] = ACTIONS(7163), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7161), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7163), + [sym_nullptr] = ACTIONS(7163), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(896), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), }, - [2392] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2377] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2393] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2378] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2394] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2379] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2395] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2380] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2396] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2381] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2397] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2382] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2398] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2383] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2399] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2384] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2400] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(7184), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2385] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(7165), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2401] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2386] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2402] = { - [sym_string_literal] = STATE(2402), - [aux_sym_concatenated_string_repeat1] = STATE(2402), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [2387] = { + [sym_string_literal] = STATE(2387), + [aux_sym_concatenated_string_repeat1] = STATE(2387), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5323), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [2403] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(122), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), + [2388] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(122), [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(123), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(1400), [anon_sym_LPAREN2] = ACTIONS(214), [anon_sym_DASH] = ACTIONS(212), - [sym_raw_string_literal] = ACTIONS(2826), - [sym_true] = ACTIONS(2828), + [sym_raw_string_literal] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(2828), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4127), + [sym_null] = ACTIONS(2830), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4125), [anon_sym_COLON_COLON] = ACTIONS(218), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(7186), - [anon_sym_AMP] = ACTIONS(7188), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(7167), + [anon_sym_AMP] = ACTIONS(7169), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(4127), + [anon_sym_GT_EQ] = ACTIONS(4125), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4127), [sym_identifier] = ACTIONS(228), [anon_sym_new] = ACTIONS(230), [anon_sym_delete] = ACTIONS(234), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LT_LT] = ACTIONS(4125), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_number_literal] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_number_literal] = ACTIONS(2828), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(2828), + [sym_false] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(2830), [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), [anon_sym_PLUS_PLUS] = ACTIONS(232), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_GT_GT] = ACTIONS(4125), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [2404] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(7190), + [2389] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(7171), }, - [2405] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4529), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2390] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4527), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2406] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3363), - [sym_logical_expression] = STATE(3363), - [sym_bitwise_expression] = STATE(3363), - [sym_cast_expression] = STATE(3363), - [sym_new_expression] = STATE(3363), - [sym_field_expression] = STATE(121), - [sym_compound_literal_expression] = STATE(3363), - [sym_char_literal] = STATE(3363), - [sym_template_function] = STATE(3363), - [sym_conditional_expression] = STATE(3363), - [sym_equality_expression] = STATE(3363), - [sym_relational_expression] = STATE(3363), - [sym_delete_expression] = STATE(3363), - [sym_sizeof_expression] = STATE(3363), - [sym_parenthesized_expression] = STATE(3363), - [sym_lambda_expression] = STATE(3363), - [sym_concatenated_string] = STATE(3363), - [sym_string_literal] = STATE(122), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(121), - [sym_assignment_expression] = STATE(3363), - [sym_pointer_expression] = STATE(121), - [sym_shift_expression] = STATE(3363), - [sym_math_expression] = STATE(3363), - [sym_call_expression] = STATE(121), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7192), + [2391] = { + [sym_template_function] = STATE(3335), + [sym__expression] = STATE(3335), + [sym_logical_expression] = STATE(3335), + [sym_bitwise_expression] = STATE(3335), + [sym_cast_expression] = STATE(3335), + [sym_delete_expression] = STATE(3335), + [sym_field_expression] = STATE(122), + [sym_compound_literal_expression] = STATE(3335), + [sym_lambda_expression] = STATE(3335), + [sym_char_literal] = STATE(3335), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3335), + [sym_equality_expression] = STATE(3335), + [sym_relational_expression] = STATE(3335), + [sym_sizeof_expression] = STATE(3335), + [sym_subscript_expression] = STATE(122), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3335), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(123), + [sym_concatenated_string] = STATE(3335), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3335), + [sym_pointer_expression] = STATE(122), + [sym_shift_expression] = STATE(3335), + [sym_math_expression] = STATE(3335), + [sym_call_expression] = STATE(122), + [sym_new_expression] = STATE(3335), + [sym_raw_string_literal] = ACTIONS(7173), [anon_sym_DASH] = ACTIONS(212), [anon_sym_LPAREN2] = ACTIONS(214), - [sym_true] = ACTIONS(7194), - [sym_null] = ACTIONS(7194), + [sym_true] = ACTIONS(7175), + [sym_null] = ACTIONS(7175), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7192), + [sym_number_literal] = ACTIONS(7173), [anon_sym_COLON_COLON] = ACTIONS(218), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(220), - [sym_false] = ACTIONS(7194), + [sym_false] = ACTIONS(7175), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(7194), + [sym_nullptr] = ACTIONS(7175), [anon_sym_PLUS] = ACTIONS(212), [anon_sym_sizeof] = ACTIONS(224), [anon_sym_STAR] = ACTIONS(222), @@ -103943,325 +103697,325 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(234), [anon_sym_DASH_DASH] = ACTIONS(232), }, - [2407] = { - [aux_sym_try_statement_repeat1] = STATE(2407), - [sym_catch_clause] = STATE(2407), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(5357), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_namespace] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_using] = ACTIONS(5353), - [sym_preproc_directive] = ACTIONS(5353), - [aux_sym_preproc_if_token1] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_RBRACE] = ACTIONS(5355), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [sym_operator_name] = ACTIONS(5355), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [aux_sym_preproc_include_token1] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_template] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [aux_sym_preproc_def_token1] = ACTIONS(5353), - [anon_sym_AMP_AMP] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [2392] = { + [sym_catch_clause] = STATE(2392), + [aux_sym_try_statement_repeat1] = STATE(2392), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(5356), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_namespace] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_using] = ACTIONS(5352), + [sym_preproc_directive] = ACTIONS(5352), + [aux_sym_preproc_if_token1] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [sym_operator_name] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [aux_sym_preproc_include_token1] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_template] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [aux_sym_preproc_def_token1] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [2408] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3365), - [sym_logical_expression] = STATE(3365), - [sym_bitwise_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(3365), - [sym_char_literal] = STATE(3365), - [sym_template_function] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_equality_expression] = STATE(3365), - [sym_relational_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_concatenated_string] = STATE(3365), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(3365), - [sym_math_expression] = STATE(3365), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7196), + [2393] = { + [sym_template_function] = STATE(3337), + [sym__expression] = STATE(3337), + [sym_logical_expression] = STATE(3337), + [sym_bitwise_expression] = STATE(3337), + [sym_cast_expression] = STATE(3337), + [sym_delete_expression] = STATE(3337), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3337), + [sym_lambda_expression] = STATE(3337), + [sym_char_literal] = STATE(3337), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3337), + [sym_equality_expression] = STATE(3337), + [sym_relational_expression] = STATE(3337), + [sym_sizeof_expression] = STATE(3337), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3337), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(3337), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3337), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3337), + [sym_math_expression] = STATE(3337), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3337), + [sym_raw_string_literal] = ACTIONS(7177), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(7198), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(7198), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(7179), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(7179), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7196), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(7177), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(7198), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(7198), + [sym_false] = ACTIONS(7179), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(7179), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(7200), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(7181), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [2409] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(7202), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2394] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2410] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3367), - [sym_logical_expression] = STATE(3367), - [sym_bitwise_expression] = STATE(3367), - [sym_cast_expression] = STATE(3367), - [sym_new_expression] = STATE(3367), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3367), - [sym_char_literal] = STATE(3367), - [sym_template_function] = STATE(3367), - [sym_conditional_expression] = STATE(3367), - [sym_equality_expression] = STATE(3367), - [sym_relational_expression] = STATE(3367), - [sym_delete_expression] = STATE(3367), - [sym_sizeof_expression] = STATE(3367), - [sym_parenthesized_expression] = STATE(3367), - [sym_lambda_expression] = STATE(3367), - [sym_concatenated_string] = STATE(3367), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3367), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3367), - [sym_math_expression] = STATE(3367), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7204), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(7206), - [sym_null] = ACTIONS(7206), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7204), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(7206), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(7206), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(7202), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [2395] = { + [sym_template_function] = STATE(3339), + [sym__expression] = STATE(3339), + [sym_logical_expression] = STATE(3339), + [sym_bitwise_expression] = STATE(3339), + [sym_cast_expression] = STATE(3339), + [sym_delete_expression] = STATE(3339), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3339), + [sym_lambda_expression] = STATE(3339), + [sym_char_literal] = STATE(3339), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3339), + [sym_equality_expression] = STATE(3339), + [sym_relational_expression] = STATE(3339), + [sym_sizeof_expression] = STATE(3339), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3339), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(3339), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3339), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3339), + [sym_math_expression] = STATE(3339), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3339), + [sym_raw_string_literal] = ACTIONS(7185), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(7187), + [sym_null] = ACTIONS(7187), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [2411] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3368), - [sym_logical_expression] = STATE(3368), - [sym_bitwise_expression] = STATE(3368), - [sym_cast_expression] = STATE(3368), - [sym_new_expression] = STATE(3368), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(3368), - [sym_char_literal] = STATE(3368), - [sym_template_function] = STATE(3368), - [sym_conditional_expression] = STATE(3368), - [sym_equality_expression] = STATE(3368), - [sym_relational_expression] = STATE(3368), - [sym_delete_expression] = STATE(3368), - [sym_sizeof_expression] = STATE(3368), - [sym_parenthesized_expression] = STATE(3368), - [sym_lambda_expression] = STATE(3368), - [sym_concatenated_string] = STATE(3368), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(3368), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(3368), - [sym_math_expression] = STATE(3368), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7208), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(7210), - [sym_null] = ACTIONS(7210), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7208), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(7210), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7210), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [2396] = { + [sym_template_function] = STATE(3340), + [sym__expression] = STATE(3340), + [sym_logical_expression] = STATE(3340), + [sym_bitwise_expression] = STATE(3340), + [sym_cast_expression] = STATE(3340), + [sym_delete_expression] = STATE(3340), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(3340), + [sym_lambda_expression] = STATE(3340), + [sym_char_literal] = STATE(3340), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3340), + [sym_equality_expression] = STATE(3340), + [sym_relational_expression] = STATE(3340), + [sym_sizeof_expression] = STATE(3340), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3340), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(3340), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3340), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(3340), + [sym_math_expression] = STATE(3340), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(3340), + [sym_raw_string_literal] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(7191), + [sym_null] = ACTIONS(7191), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7189), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(7191), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7191), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [2412] = { - [sym_do_statement] = STATE(3374), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [2397] = { + [sym_do_statement] = STATE(3346), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(3374), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(3374), - [sym_if_statement] = STATE(3374), - [sym_switch_statement] = STATE(3374), - [sym_for_statement] = STATE(3374), - [sym_return_statement] = STATE(3374), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3346), + [sym_try_statement] = STATE(3346), + [sym_if_statement] = STATE(3346), + [sym_switch_statement] = STATE(3346), + [sym_for_statement] = STATE(3346), + [sym_return_statement] = STATE(3346), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(3374), - [sym_break_statement] = STATE(3374), - [sym_continue_statement] = STATE(3374), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3346), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3374), - [sym_labeled_statement] = STATE(3374), - [sym_expression_statement] = STATE(3374), - [sym_while_statement] = STATE(3374), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(3346), + [sym_for_range_loop] = STATE(3346), + [sym_compound_statement] = STATE(3346), + [sym_labeled_statement] = STATE(3346), + [sym_expression_statement] = STATE(3346), + [sym_while_statement] = STATE(3346), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -104275,18 +104029,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -104299,1776 +104053,1781 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2413] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(7222), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2398] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(7203), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2414] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3376), - [sym_logical_expression] = STATE(3376), - [sym_bitwise_expression] = STATE(3376), - [sym_cast_expression] = STATE(3376), - [sym_new_expression] = STATE(3376), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(3376), - [sym_char_literal] = STATE(3376), - [sym_template_function] = STATE(3376), - [sym_conditional_expression] = STATE(3376), - [sym_equality_expression] = STATE(3376), - [sym_relational_expression] = STATE(3376), - [sym_delete_expression] = STATE(3376), - [sym_sizeof_expression] = STATE(3376), - [sym_parenthesized_expression] = STATE(3376), - [sym_lambda_expression] = STATE(3376), - [sym_concatenated_string] = STATE(3376), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(3376), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(3376), - [sym_math_expression] = STATE(3376), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7224), + [2399] = { + [sym_template_function] = STATE(3348), + [sym__expression] = STATE(3348), + [sym_logical_expression] = STATE(3348), + [sym_bitwise_expression] = STATE(3348), + [sym_cast_expression] = STATE(3348), + [sym_delete_expression] = STATE(3348), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3348), + [sym_lambda_expression] = STATE(3348), + [sym_char_literal] = STATE(3348), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3348), + [sym_equality_expression] = STATE(3348), + [sym_relational_expression] = STATE(3348), + [sym_sizeof_expression] = STATE(3348), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3348), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(3348), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3348), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3348), + [sym_math_expression] = STATE(3348), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3348), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7205), [anon_sym_DASH] = ACTIONS(266), - [sym_true] = ACTIONS(7226), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(7226), + [sym_true] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(7207), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7224), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(7205), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(1343), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7226), - [sym_nullptr] = ACTIONS(7226), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7207), + [sym_nullptr] = ACTIONS(7207), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [2415] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(554), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [2400] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(5269), - [anon_sym_DASH_DASH] = ACTIONS(980), - [sym_null] = ACTIONS(5269), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5267), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(5269), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1234), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(555), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [sym_raw_string_literal] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(5268), + [anon_sym_DASH_DASH] = ACTIONS(984), + [sym_null] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5266), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(1240), }, - [2416] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2416), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(7228), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(7228), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(7228), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(7228), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [2401] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2401), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(7209), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), }, - [2417] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3377), - [sym_logical_expression] = STATE(3377), - [sym_bitwise_expression] = STATE(3377), - [sym_cast_expression] = STATE(3377), - [sym_new_expression] = STATE(3377), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3377), - [sym_char_literal] = STATE(3377), - [sym_template_function] = STATE(3377), - [sym_conditional_expression] = STATE(3377), - [sym_equality_expression] = STATE(3377), - [sym_relational_expression] = STATE(3377), - [sym_delete_expression] = STATE(3377), - [sym_sizeof_expression] = STATE(3377), - [sym_parenthesized_expression] = STATE(3377), - [sym_lambda_expression] = STATE(3377), - [sym_concatenated_string] = STATE(3377), - [sym_string_literal] = STATE(967), + [2402] = { + [sym_template_function] = STATE(3349), + [sym__expression] = STATE(3349), + [sym_logical_expression] = STATE(3349), + [sym_bitwise_expression] = STATE(3349), + [sym_cast_expression] = STATE(3349), + [sym_delete_expression] = STATE(3349), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3349), + [sym_lambda_expression] = STATE(3349), + [sym_char_literal] = STATE(3349), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3377), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3377), - [sym_math_expression] = STATE(3377), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3349), + [sym_equality_expression] = STATE(3349), + [sym_relational_expression] = STATE(3349), + [sym_sizeof_expression] = STATE(3349), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(7231), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(7233), - [sym_null] = ACTIONS(7233), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(7233), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7233), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(3349), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3349), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3349), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3349), + [sym_math_expression] = STATE(3349), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3349), + [sym_raw_string_literal] = ACTIONS(7212), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(7214), + [sym_null] = ACTIONS(7214), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(7212), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(7214), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7214), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [2418] = { - [sym_initializer_list] = STATE(2571), - [sym_new_declarator] = STATE(2572), - [sym_argument_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [2403] = { + [sym_new_declarator] = STATE(2556), + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [2419] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3378), - [sym_logical_expression] = STATE(3378), - [sym_bitwise_expression] = STATE(3378), - [sym_cast_expression] = STATE(3378), - [sym_new_expression] = STATE(3378), - [sym_field_expression] = STATE(3378), - [sym_compound_literal_expression] = STATE(3378), - [sym_char_literal] = STATE(3378), - [sym_template_function] = STATE(3378), - [sym_conditional_expression] = STATE(3378), - [sym_equality_expression] = STATE(3378), - [sym_relational_expression] = STATE(3378), - [sym_delete_expression] = STATE(3378), - [sym_sizeof_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym_lambda_expression] = STATE(3378), - [sym_concatenated_string] = STATE(3378), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3378), - [sym_assignment_expression] = STATE(3378), - [sym_pointer_expression] = STATE(3378), - [sym_shift_expression] = STATE(3378), - [sym_math_expression] = STATE(3378), - [sym_call_expression] = STATE(3378), - [sym_lambda_capture_specifier] = STATE(196), + [2404] = { + [sym_template_function] = STATE(3350), + [sym__expression] = STATE(3350), + [sym_logical_expression] = STATE(3350), + [sym_bitwise_expression] = STATE(3350), + [sym_cast_expression] = STATE(3350), + [sym_delete_expression] = STATE(3350), + [sym_field_expression] = STATE(3350), + [sym_compound_literal_expression] = STATE(3350), + [sym_lambda_expression] = STATE(3350), + [sym_char_literal] = STATE(3350), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3350), + [sym_equality_expression] = STATE(3350), + [sym_relational_expression] = STATE(3350), + [sym_sizeof_expression] = STATE(3350), + [sym_subscript_expression] = STATE(3350), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7235), - [anon_sym_DASH] = ACTIONS(978), - [sym_true] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(980), - [sym_null] = ACTIONS(7237), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7235), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7237), - [sym_nullptr] = ACTIONS(7237), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), + [sym_parenthesized_expression] = STATE(3350), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(3350), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3350), + [sym_pointer_expression] = STATE(3350), + [sym_shift_expression] = STATE(3350), + [sym_math_expression] = STATE(3350), + [sym_call_expression] = STATE(3350), + [sym_new_expression] = STATE(3350), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7216), + [anon_sym_DASH] = ACTIONS(982), + [sym_true] = ACTIONS(7218), + [anon_sym_DASH_DASH] = ACTIONS(984), + [sym_null] = ACTIONS(7218), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7216), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7218), + [sym_nullptr] = ACTIONS(7218), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), }, - [2420] = { - [sym_template_type] = STATE(239), + [2405] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(7239), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(7220), }, - [2421] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2406] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2422] = { - [anon_sym_RPAREN] = ACTIONS(7241), + [2407] = { + [anon_sym_RPAREN] = ACTIONS(7222), [sym_comment] = ACTIONS(3), }, - [2423] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2408] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2424] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2409] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2425] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_RPAREN] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2410] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2426] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_RPAREN] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2411] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2427] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2412] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2428] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2413] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2429] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_RPAREN] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2414] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_RPAREN] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2430] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2415] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2431] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2416] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2432] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2417] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(7224), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2433] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2418] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2434] = { - [sym_string_literal] = STATE(2434), - [aux_sym_concatenated_string_repeat1] = STATE(2434), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [2419] = { + [sym_string_literal] = STATE(2419), + [aux_sym_concatenated_string_repeat1] = STATE(2419), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5323), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [2435] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(632), + [2420] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(154), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1400), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_DASH] = ACTIONS(266), - [sym_raw_string_literal] = ACTIONS(2826), - [sym_true] = ACTIONS(2828), + [sym_raw_string_literal] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), [anon_sym_SQUOTE] = ACTIONS(41), - [sym_null] = ACTIONS(2828), + [sym_null] = ACTIONS(2830), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(7245), - [anon_sym_AMP] = ACTIONS(7247), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(7226), + [anon_sym_AMP] = ACTIONS(7228), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), [anon_sym_delete] = ACTIONS(288), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_number_literal] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_RPAREN] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_GT_GT] = ACTIONS(4127), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_number_literal] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [2436] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(7249), + [2421] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(7230), }, - [2437] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2422] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2438] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3383), - [sym_logical_expression] = STATE(3383), - [sym_bitwise_expression] = STATE(3383), - [sym_cast_expression] = STATE(3383), - [sym_new_expression] = STATE(3383), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(3383), - [sym_char_literal] = STATE(3383), - [sym_template_function] = STATE(3383), - [sym_conditional_expression] = STATE(3383), - [sym_equality_expression] = STATE(3383), - [sym_relational_expression] = STATE(3383), - [sym_delete_expression] = STATE(3383), - [sym_sizeof_expression] = STATE(3383), - [sym_parenthesized_expression] = STATE(3383), - [sym_lambda_expression] = STATE(3383), - [sym_concatenated_string] = STATE(3383), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(3383), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(3383), - [sym_math_expression] = STATE(3383), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7251), + [2423] = { + [sym_template_function] = STATE(3355), + [sym__expression] = STATE(3355), + [sym_logical_expression] = STATE(3355), + [sym_bitwise_expression] = STATE(3355), + [sym_cast_expression] = STATE(3355), + [sym_delete_expression] = STATE(3355), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3355), + [sym_lambda_expression] = STATE(3355), + [sym_char_literal] = STATE(3355), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3355), + [sym_equality_expression] = STATE(3355), + [sym_relational_expression] = STATE(3355), + [sym_sizeof_expression] = STATE(3355), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3355), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(3355), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3355), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3355), + [sym_math_expression] = STATE(3355), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3355), + [sym_raw_string_literal] = ACTIONS(7232), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(7253), - [sym_null] = ACTIONS(7253), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(7234), + [sym_null] = ACTIONS(7234), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7251), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(7232), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(7253), + [sym_false] = ACTIONS(7234), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(7234), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [2439] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(2440), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(4973), + [2424] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(2425), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(4969), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(4973), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(4969), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4973), + [anon_sym_long] = ACTIONS(4969), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(4977), + [anon_sym_typename] = ACTIONS(4973), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(4973), + [anon_sym_short] = ACTIONS(4969), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [2440] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3384), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_short] = ACTIONS(7255), - [sym_identifier] = ACTIONS(1074), + [2425] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3356), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(7236), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(7236), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(7236), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_short] = ACTIONS(7236), + [sym_identifier] = ACTIONS(1066), }, - [2441] = { - [sym_parameter_list] = STATE(3387), - [sym_abstract_array_declarator] = STATE(3388), - [sym_abstract_pointer_declarator] = STATE(3388), - [sym_abstract_reference_declarator] = STATE(3388), - [sym_abstract_function_declarator] = STATE(3388), - [sym__abstract_declarator] = STATE(3388), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7257), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(7259), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_RPAREN] = ACTIONS(6210), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_restrict] = ACTIONS(6210), + [2426] = { + [sym_abstract_reference_declarator] = STATE(3360), + [sym_abstract_array_declarator] = STATE(3360), + [sym_abstract_pointer_declarator] = STATE(3360), + [sym_parameter_list] = STATE(3359), + [sym_abstract_function_declarator] = STATE(3360), + [sym__abstract_declarator] = STATE(3360), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7238), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(7240), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_RPAREN] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(7242), + [anon_sym_restrict] = ACTIONS(6085), }, - [2442] = { - [sym_virtual_specifier] = STATE(2442), - [aux_sym_function_declarator_repeat1] = STATE(2442), - [sym_trailing_return_type] = STATE(2442), - [sym_type_qualifier] = STATE(2442), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(7263), - [anon_sym_mutable] = ACTIONS(7266), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_const] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(7266), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7266), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_explicit] = ACTIONS(7266), - [anon_sym_RPAREN] = ACTIONS(6220), - [anon_sym_DASH_GT] = ACTIONS(7272), - [anon_sym_restrict] = ACTIONS(7266), + [2427] = { + [sym_virtual_specifier] = STATE(2427), + [aux_sym_function_declarator_repeat1] = STATE(2427), + [sym_type_qualifier] = STATE(2427), + [sym_trailing_return_type] = STATE(2427), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(7244), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym_const] = ACTIONS(7250), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(7247), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_explicit] = ACTIONS(7247), + [anon_sym_RPAREN] = ACTIONS(6286), + [anon_sym_DASH_GT] = ACTIONS(7253), + [anon_sym_restrict] = ACTIONS(7247), }, - [2443] = { - [sym_parameter_list] = STATE(1415), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(7275), - [anon_sym_LBRACK] = ACTIONS(2067), + [2428] = { + [sym_parameter_list] = STATE(1410), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(1748), [sym_comment] = ACTIONS(3), }, - [2444] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(2445), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(4993), + [2429] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(2430), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(4994), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(4993), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(4994), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(4993), + [anon_sym_long] = ACTIONS(4994), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(4997), + [anon_sym_typename] = ACTIONS(4998), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(4993), + [anon_sym_short] = ACTIONS(4994), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [2445] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3389), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(7277), - [anon_sym_signed] = ACTIONS(7277), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_long] = ACTIONS(7277), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_short] = ACTIONS(7277), - [sym_identifier] = ACTIONS(1074), - [sym_primitive_type] = ACTIONS(627), + [2430] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3361), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(7258), + [anon_sym_signed] = ACTIONS(7258), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_long] = ACTIONS(7258), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_short] = ACTIONS(7258), + [sym_identifier] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(560), }, - [2446] = { - [sym_parameter_list] = STATE(587), - [sym_abstract_array_declarator] = STATE(3390), - [sym_abstract_pointer_declarator] = STATE(3390), - [sym_abstract_reference_declarator] = STATE(3390), - [sym_abstract_function_declarator] = STATE(3390), - [sym__abstract_declarator] = STATE(3390), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(6210), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1064), + [2431] = { + [sym_abstract_reference_declarator] = STATE(3362), + [sym_abstract_array_declarator] = STATE(3362), + [sym_abstract_pointer_declarator] = STATE(3362), + [sym_parameter_list] = STATE(590), + [sym_abstract_function_declarator] = STATE(3362), + [sym__abstract_declarator] = STATE(3362), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(6085), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [2447] = { - [sym_type_qualifier] = STATE(2447), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2447), - [anon_sym_LPAREN2] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(7279), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), - [anon_sym_constexpr] = ACTIONS(6404), + [2432] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(2432), + [sym_type_qualifier] = STATE(2432), + [anon_sym_LPAREN2] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(7260), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), + [anon_sym_constexpr] = ACTIONS(6092), [sym_comment] = ACTIONS(3), }, - [2448] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(2447), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2447), - [anon_sym_LPAREN2] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(4999), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [2433] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(2432), + [sym_type_qualifier] = STATE(2432), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(5000), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_DASH_GT] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(2843), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [2449] = { - [sym_parameter_list] = STATE(1415), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(7282), - [anon_sym_LBRACK] = ACTIONS(2067), + [2434] = { + [sym_parameter_list] = STATE(1410), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(7263), + [anon_sym_LBRACK] = ACTIONS(1748), [sym_comment] = ACTIONS(3), }, - [2450] = { - [aux_sym_base_class_clause_repeat1] = STATE(2456), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(7284), + [2435] = { + [aux_sym_base_class_clause_repeat1] = STATE(2441), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(7265), [sym_comment] = ACTIONS(3), }, - [2451] = { - [aux_sym_base_class_clause_repeat1] = STATE(2456), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(7286), + [2436] = { + [aux_sym_base_class_clause_repeat1] = STATE(2441), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(7267), [sym_comment] = ACTIONS(3), }, - [2452] = { - [sym_template_type] = STATE(3392), - [sym_scoped_type_identifier] = STATE(3393), - [sym_scoped_namespace_identifier] = STATE(88), + [2437] = { + [sym_scoped_type_identifier] = STATE(3364), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_template_type] = STATE(3365), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(7288), + [sym_identifier] = ACTIONS(7269), [sym_comment] = ACTIONS(3), }, - [2453] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(670), + [2438] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(674), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(7290), - [anon_sym_LBRACE] = ACTIONS(7290), - [anon_sym_LT] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_LT] = ACTIONS(534), }, - [2454] = { - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(7292), - [anon_sym_LBRACE] = ACTIONS(7292), + [2439] = { + [sym_template_argument_list] = STATE(312), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(7273), + [anon_sym_LT] = ACTIONS(534), }, - [2455] = { - [sym_template_argument_list] = STATE(354), + [2440] = { + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(7273), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(7292), - [anon_sym_LBRACE] = ACTIONS(7292), - [anon_sym_LT] = ACTIONS(609), }, - [2456] = { - [aux_sym_base_class_clause_repeat1] = STATE(2456), - [anon_sym_COMMA] = ACTIONS(7294), - [anon_sym_LBRACE] = ACTIONS(7292), + [2441] = { + [aux_sym_base_class_clause_repeat1] = STATE(2441), + [anon_sym_COMMA] = ACTIONS(7275), + [anon_sym_LBRACE] = ACTIONS(7273), [sym_comment] = ACTIONS(3), }, - [2457] = { - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_mutable] = ACTIONS(7299), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_COLON_COLON] = ACTIONS(7297), - [anon_sym_final] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_static] = ACTIONS(7299), - [anon_sym_volatile] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7297), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), - [anon_sym_COLON] = ACTIONS(7299), - [anon_sym_explicit] = ACTIONS(7299), - [sym_identifier] = ACTIONS(7299), - [anon_sym_RBRACE] = ACTIONS(7297), - [anon_sym_override] = ACTIONS(7299), - [sym_operator_name] = ACTIONS(7297), - [sym_noexcept] = ACTIONS(7299), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_register] = ACTIONS(7299), - [anon_sym__Atomic] = ACTIONS(7299), - [anon_sym_const] = ACTIONS(7299), - [anon_sym_extern] = ACTIONS(7299), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7299), - [anon_sym_LT_LT] = ACTIONS(7297), - [anon_sym_constexpr] = ACTIONS(7299), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_TILDE] = ACTIONS(7297), - [anon_sym_SEMI] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_inline] = ACTIONS(7299), - [anon_sym_RPAREN] = ACTIONS(7297), - [anon_sym_restrict] = ACTIONS(7299), - [anon_sym_GT_GT] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7297), + [2442] = { + [anon_sym_LPAREN2] = ACTIONS(7278), + [anon_sym_DASH] = ACTIONS(7280), + [anon_sym_PLUS_PLUS] = ACTIONS(7278), + [anon_sym_LBRACE] = ACTIONS(7278), + [anon_sym_mutable] = ACTIONS(7280), + [anon_sym_DASH_DASH] = ACTIONS(7278), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7278), + [anon_sym_EQ] = ACTIONS(7280), + [anon_sym_COLON_COLON] = ACTIONS(7278), + [anon_sym_final] = ACTIONS(7280), + [anon_sym_EQ_EQ] = ACTIONS(7278), + [anon_sym_PIPE] = ACTIONS(7280), + [anon_sym_LT] = ACTIONS(7280), + [anon_sym_AMP] = ACTIONS(7280), + [anon_sym_static] = ACTIONS(7280), + [anon_sym_volatile] = ACTIONS(7280), + [anon_sym_PLUS] = ACTIONS(7280), + [anon_sym_GT_EQ] = ACTIONS(7278), + [anon_sym_STAR] = ACTIONS(7278), + [anon_sym_SLASH] = ACTIONS(7280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7278), + [anon_sym_COLON] = ACTIONS(7280), + [anon_sym_explicit] = ACTIONS(7280), + [sym_identifier] = ACTIONS(7280), + [anon_sym_RBRACE] = ACTIONS(7278), + [anon_sym_override] = ACTIONS(7280), + [sym_operator_name] = ACTIONS(7278), + [sym_noexcept] = ACTIONS(7280), + [anon_sym_CARET] = ACTIONS(7278), + [anon_sym_GT] = ACTIONS(7280), + [anon_sym_COMMA] = ACTIONS(7278), + [anon_sym_register] = ACTIONS(7280), + [anon_sym__Atomic] = ACTIONS(7280), + [anon_sym_const] = ACTIONS(7280), + [anon_sym_extern] = ACTIONS(7280), + [anon_sym_LBRACK] = ACTIONS(7278), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_DOT] = ACTIONS(7280), + [anon_sym_LT_LT] = ACTIONS(7278), + [anon_sym_constexpr] = ACTIONS(7280), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7278), + [anon_sym_QMARK] = ACTIONS(7278), + [anon_sym_TILDE] = ACTIONS(7278), + [anon_sym_SEMI] = ACTIONS(7278), + [anon_sym_BANG_EQ] = ACTIONS(7278), + [anon_sym_LT_EQ] = ACTIONS(7278), + [anon_sym_AMP_AMP] = ACTIONS(7278), + [anon_sym_inline] = ACTIONS(7280), + [anon_sym_RPAREN] = ACTIONS(7278), + [anon_sym_restrict] = ACTIONS(7280), + [anon_sym_GT_GT] = ACTIONS(7278), + [anon_sym_DASH_GT] = ACTIONS(7278), }, - [2458] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [2443] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(7301), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(7282), }, - [2459] = { + [2444] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(7301), + [anon_sym_SEMI] = ACTIONS(7282), }, - [2460] = { - [sym_macro_type_specifier] = STATE(1480), - [sym_class_specifier] = STATE(1480), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1480), - [sym__type_specifier] = STATE(1480), - [sym_type_descriptor] = STATE(3395), - [sym_type_qualifier] = STATE(1482), - [sym_struct_specifier] = STATE(1480), - [sym_union_specifier] = STATE(1480), - [sym_dependent_type] = STATE(1480), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(1482), - [aux_sym_sized_type_specifier_repeat1] = STATE(1483), - [sym_enum_specifier] = STATE(1480), - [sym_scoped_type_identifier] = STATE(87), + [2445] = { + [aux_sym_type_definition_repeat1] = STATE(1475), + [sym_macro_type_specifier] = STATE(1477), + [sym_class_specifier] = STATE(1477), + [aux_sym_sized_type_specifier_repeat1] = STATE(1476), + [sym_sized_type_specifier] = STATE(1477), + [sym__type_specifier] = STATE(1477), + [sym_type_descriptor] = STATE(3367), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_type_qualifier] = STATE(1475), + [sym_struct_specifier] = STATE(1477), + [sym_union_specifier] = STATE(1477), + [sym_dependent_type] = STATE(1477), + [sym_enum_specifier] = STATE(1477), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2933), + [sym_auto] = ACTIONS(2933), + [anon_sym_signed] = ACTIONS(2935), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2935), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(147), [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2935), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2937), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2935), [anon_sym_restrict] = ACTIONS(11), }, - [2461] = { - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2937), - [sym_auto] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(2939), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_private] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2937), - [sym_operator_name] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_public] = ACTIONS(2937), - [anon_sym_protected] = ACTIONS(2937), - [anon_sym_friend] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), + [2446] = { + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2939), + [sym_auto] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_private] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2939), + [sym_operator_name] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_virtual] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_public] = ACTIONS(2939), + [anon_sym_protected] = ACTIONS(2939), + [anon_sym_friend] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2939), + [anon_sym_restrict] = ACTIONS(2939), }, - [2462] = { - [anon_sym_LPAREN2] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2943), - [sym_auto] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2943), - [anon_sym_mutable] = ACTIONS(2943), - [anon_sym_long] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2943), - [sym_preproc_directive] = ACTIONS(2943), - [aux_sym_preproc_if_token1] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_volatile] = ACTIONS(2943), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_typename] = ACTIONS(2943), - [anon_sym_private] = ACTIONS(2943), - [anon_sym_explicit] = ACTIONS(2943), - [anon_sym_short] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2943), - [sym_operator_name] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), - [anon_sym_register] = ACTIONS(2943), - [anon_sym__Atomic] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym_virtual] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_constexpr] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(2943), - [anon_sym_unsigned] = ACTIONS(2943), - [anon_sym_public] = ACTIONS(2943), - [anon_sym_protected] = ACTIONS(2943), - [anon_sym_friend] = ACTIONS(2943), - [anon_sym_template] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2943), - [anon_sym_restrict] = ACTIONS(2943), + [2447] = { + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2945), + [sym_auto] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2945), + [sym_preproc_directive] = ACTIONS(2945), + [aux_sym_preproc_if_token1] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_private] = ACTIONS(2945), + [anon_sym_explicit] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2945), + [sym_operator_name] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_virtual] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2945), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_public] = ACTIONS(2945), + [anon_sym_protected] = ACTIONS(2945), + [anon_sym_friend] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2947), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym_restrict] = ACTIONS(2945), }, - [2463] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(3398), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(7303), - [anon_sym_namespace] = ACTIONS(7305), + [2448] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(3370), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(7284), + [anon_sym_namespace] = ACTIONS(7286), [sym_comment] = ACTIONS(3), }, - [2464] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3413), - [sym_preproc_function_def] = STATE(3413), - [sym_alias_declaration] = STATE(3413), + [2449] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3382), + [sym_preproc_function_def] = STATE(3382), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(3381), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(3409), - [sym_storage_class_specifier] = STATE(3409), - [sym_type_qualifier] = STATE(3409), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3413), - [sym_preproc_if_in_field_declaration_list] = STATE(3413), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3413), - [sym_type_definition] = STATE(3413), - [sym__declaration_specifiers] = STATE(3410), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(3411), - [aux_sym_function_definition_repeat1] = STATE(3412), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3413), - [sym__field_declaration_list_item] = STATE(3413), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3413), - [sym_inline_method_definition] = STATE(3413), - [sym_friend_declaration] = STATE(3413), - [sym_access_specifier] = STATE(3413), - [sym_using_declaration] = STATE(3413), - [sym_attribute] = STATE(3412), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3413), - [sym_constructor_or_destructor_definition] = STATE(3413), - [sym_constructor_or_destructor_declaration] = STATE(3413), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3382), + [sym_storage_class_specifier] = STATE(3385), + [sym_type_qualifier] = STATE(3385), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3382), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3382), + [sym_preproc_if_in_field_declaration_list] = STATE(3382), + [sym_attribute] = STATE(3381), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3382), + [sym_type_definition] = STATE(3382), + [sym_using_declaration] = STATE(3382), + [sym__declaration_specifiers] = STATE(3383), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(3384), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3382), + [sym_inline_method_definition] = STATE(3382), + [sym_constructor_or_destructor_definition] = STATE(3382), + [sym_access_specifier] = STATE(3382), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3382), + [sym_alias_declaration] = STATE(3382), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(3385), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3382), + [sym_constructor_or_destructor_declaration] = STATE(3382), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(7307), - [aux_sym_preproc_if_token2] = ACTIONS(7309), - [sym_preproc_directive] = ACTIONS(7311), - [aux_sym_preproc_if_token1] = ACTIONS(7313), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(7288), + [aux_sym_preproc_if_token2] = ACTIONS(7290), + [sym_preproc_directive] = ACTIONS(7292), + [aux_sym_preproc_if_token1] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(7315), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(7317), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(7298), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7319), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7300), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(7321), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(7302), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(7317), - [anon_sym_protected] = ACTIONS(7317), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(7298), + [anon_sym_protected] = ACTIONS(7298), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(7323), - [anon_sym_template] = ACTIONS(7325), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7319), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7306), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7300), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7327), + [aux_sym_preproc_def_token1] = ACTIONS(7308), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [2465] = { - [anon_sym_LPAREN2] = ACTIONS(7329), - [anon_sym_struct] = ACTIONS(7331), - [sym_auto] = ACTIONS(7331), - [anon_sym_signed] = ACTIONS(7331), - [anon_sym_mutable] = ACTIONS(7331), - [anon_sym_long] = ACTIONS(7331), - [anon_sym_COLON_COLON] = ACTIONS(7329), - [anon_sym_using] = ACTIONS(7331), - [sym_preproc_directive] = ACTIONS(7331), - [aux_sym_preproc_if_token1] = ACTIONS(7331), - [anon_sym_AMP] = ACTIONS(7331), - [anon_sym_static] = ACTIONS(7331), - [anon_sym_volatile] = ACTIONS(7331), - [anon_sym_RBRACE] = ACTIONS(7329), - [anon_sym_typedef] = ACTIONS(7331), - [anon_sym_STAR] = ACTIONS(7329), - [anon_sym_union] = ACTIONS(7331), - [anon_sym_typename] = ACTIONS(7331), - [anon_sym_private] = ACTIONS(7331), - [anon_sym_explicit] = ACTIONS(7331), - [anon_sym_short] = ACTIONS(7331), - [sym_identifier] = ACTIONS(7331), - [sym_operator_name] = ACTIONS(7329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7331), - [anon_sym_register] = ACTIONS(7331), - [anon_sym__Atomic] = ACTIONS(7331), - [anon_sym_const] = ACTIONS(7331), - [anon_sym_extern] = ACTIONS(7331), - [anon_sym_virtual] = ACTIONS(7331), - [anon_sym_enum] = ACTIONS(7331), - [anon_sym_class] = ACTIONS(7331), - [anon_sym_constexpr] = ACTIONS(7331), - [sym_primitive_type] = ACTIONS(7331), - [anon_sym_unsigned] = ACTIONS(7331), - [anon_sym_public] = ACTIONS(7331), - [anon_sym_protected] = ACTIONS(7331), - [anon_sym_friend] = ACTIONS(7331), - [anon_sym_template] = ACTIONS(7331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7331), - [anon_sym_TILDE] = ACTIONS(7329), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7331), - [anon_sym_AMP_AMP] = ACTIONS(7329), - [anon_sym_inline] = ACTIONS(7331), - [anon_sym_restrict] = ACTIONS(7331), + [2450] = { + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_struct] = ACTIONS(7312), + [sym_auto] = ACTIONS(7312), + [anon_sym_signed] = ACTIONS(7312), + [anon_sym_mutable] = ACTIONS(7312), + [anon_sym_long] = ACTIONS(7312), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_using] = ACTIONS(7312), + [sym_preproc_directive] = ACTIONS(7312), + [aux_sym_preproc_if_token1] = ACTIONS(7312), + [anon_sym_AMP] = ACTIONS(7312), + [anon_sym_static] = ACTIONS(7312), + [anon_sym_volatile] = ACTIONS(7312), + [anon_sym_RBRACE] = ACTIONS(7310), + [anon_sym_typedef] = ACTIONS(7312), + [anon_sym_STAR] = ACTIONS(7310), + [anon_sym_union] = ACTIONS(7312), + [anon_sym_typename] = ACTIONS(7312), + [anon_sym_private] = ACTIONS(7312), + [anon_sym_explicit] = ACTIONS(7312), + [anon_sym_short] = ACTIONS(7312), + [sym_identifier] = ACTIONS(7312), + [sym_operator_name] = ACTIONS(7310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7312), + [anon_sym_register] = ACTIONS(7312), + [anon_sym__Atomic] = ACTIONS(7312), + [anon_sym_const] = ACTIONS(7312), + [anon_sym_extern] = ACTIONS(7312), + [anon_sym_LBRACK] = ACTIONS(7312), + [anon_sym_virtual] = ACTIONS(7312), + [anon_sym_enum] = ACTIONS(7312), + [anon_sym_class] = ACTIONS(7312), + [anon_sym_constexpr] = ACTIONS(7312), + [sym_primitive_type] = ACTIONS(7312), + [anon_sym_unsigned] = ACTIONS(7312), + [anon_sym_public] = ACTIONS(7312), + [anon_sym_protected] = ACTIONS(7312), + [anon_sym_friend] = ACTIONS(7312), + [anon_sym_template] = ACTIONS(7312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7312), + [anon_sym_TILDE] = ACTIONS(7310), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7312), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_inline] = ACTIONS(7312), + [anon_sym_restrict] = ACTIONS(7312), }, - [2466] = { + [2451] = { [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(7333), - [sym_preproc_arg] = ACTIONS(7335), + [anon_sym_LF] = ACTIONS(7314), + [sym_preproc_arg] = ACTIONS(7316), }, - [2467] = { - [sym_preproc_arg] = ACTIONS(7337), + [2452] = { + [sym_preproc_arg] = ACTIONS(7318), [sym_comment] = ACTIONS(3), }, - [2468] = { - [sym_union_specifier] = STATE(3418), - [sym_macro_type_specifier] = STATE(3418), - [sym_class_specifier] = STATE(3418), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(3418), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(3417), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_dependent_type] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_scoped_type_identifier] = STATE(87), - [sym_type_qualifier] = STATE(3417), + [2453] = { + [sym_union_specifier] = STATE(3390), + [sym_macro_type_specifier] = STATE(3390), + [sym_class_specifier] = STATE(3390), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(3390), + [aux_sym_type_definition_repeat1] = STATE(3389), + [sym__type_specifier] = STATE(3390), + [sym_struct_specifier] = STATE(3390), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(3390), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_type_qualifier] = STATE(3389), + [sym_dependent_type] = STATE(3390), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(7339), + [sym_auto] = ACTIONS(7320), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -106078,7 +105837,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(7339), + [sym_primitive_type] = ACTIONS(7320), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -106089,97 +105848,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [2469] = { - [anon_sym_COLON] = ACTIONS(7341), + [2454] = { + [anon_sym_COLON] = ACTIONS(7322), [sym_comment] = ACTIONS(3), }, - [2470] = { - [sym_identifier] = ACTIONS(7343), + [2455] = { + [sym_identifier] = ACTIONS(7324), [sym_comment] = ACTIONS(3), }, - [2471] = { - [sym_function_declarator] = STATE(3422), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_type] = STATE(613), - [sym_destructor_name] = STATE(1438), - [sym__declarator] = STATE(1438), - [sym_array_declarator] = STATE(1438), - [aux_sym__declaration_specifiers_repeat1] = STATE(1439), - [sym_storage_class_specifier] = STATE(1439), - [sym_dependent_type] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_type_qualifier] = STATE(1439), - [sym_pointer_declarator] = STATE(1438), - [sym_scoped_namespace_identifier] = STATE(621), - [sym_template_function] = STATE(1438), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym__declaration_specifiers] = STATE(3421), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(1438), - [anon_sym_LPAREN2] = ACTIONS(456), + [2456] = { + [sym_template_function] = STATE(1433), + [sym_macro_type_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(1433), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(1433), + [sym_array_declarator] = STATE(1433), + [sym_template_type] = STATE(622), + [sym_storage_class_specifier] = STATE(1434), + [sym_dependent_type] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_destructor_name] = STATE(1433), + [sym_type_qualifier] = STATE(1434), + [sym_pointer_declarator] = STATE(1433), + [sym_structured_binding_declarator] = STATE(1433), + [aux_sym__declaration_specifiers_repeat1] = STATE(1434), + [sym_enum_specifier] = STATE(620), + [sym__declaration_specifiers] = STATE(3393), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(3394), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(2879), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(2881), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1096), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [2472] = { - [aux_sym_function_definition_repeat1] = STATE(3423), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(3424), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(3425), - [sym_declaration] = STATE(3425), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(3423), - [sym_type_qualifier] = STATE(281), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(3426), - [sym_scoped_type_identifier] = STATE(87), + [2457] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(3395), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_function_definition] = STATE(3396), + [sym_declaration] = STATE(3396), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(3397), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_type_qualifier] = STATE(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(3397), + [sym__declaration_specifiers] = STATE(3398), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -106188,1446 +105949,1393 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, - [2473] = { - [sym_template_parameter_list] = STATE(3427), - [anon_sym_LT] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - }, - [2474] = { - [sym_preproc_arg] = ACTIONS(7345), - [sym_comment] = ACTIONS(3), - }, - [2475] = { - [sym_identifier] = ACTIONS(7347), + [2458] = { + [sym_template_parameter_list] = STATE(3399), + [anon_sym_LT] = ACTIONS(466), [sym_comment] = ACTIONS(3), }, - [2476] = { - [sym_function_declarator] = STATE(3430), - [sym_macro_type_specifier] = STATE(1450), - [sym_class_specifier] = STATE(1450), - [sym_template_type] = STATE(613), - [sym_sized_type_specifier] = STATE(1450), - [sym__type_specifier] = STATE(1450), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_array_declarator] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(313), - [sym_storage_class_specifier] = STATE(313), - [sym_dependent_type] = STATE(1450), - [sym_struct_specifier] = STATE(1450), - [sym_union_specifier] = STATE(1450), - [sym_type_qualifier] = STATE(313), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(621), - [sym_template_function] = STATE(56), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(1450), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(56), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(2885), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(75), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(1092), + [2459] = { + [sym_preproc_arg] = ACTIONS(7326), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_restrict] = ACTIONS(11), }, - [2477] = { - [sym_function_field_declarator] = STATE(3433), - [sym_reference_field_declarator] = STATE(3433), - [sym_template_method] = STATE(3433), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(3433), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(3433), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(3433), - [sym_bitfield_clause] = STATE(3434), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(3434), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(7349), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(7351), - [sym_operator_name] = ACTIONS(7353), - [anon_sym_LBRACE] = ACTIONS(175), + [2460] = { + [sym_identifier] = ACTIONS(7328), [sym_comment] = ACTIONS(3), }, - [2478] = { - [sym_compound_statement] = STATE(3438), - [sym_field_initializer_list] = STATE(3439), - [sym_default_method_clause] = STATE(3438), - [sym_delete_method_clause] = STATE(3438), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(7355), - [anon_sym_LBRACE] = ACTIONS(7357), - [anon_sym_SEMI] = ACTIONS(7359), - }, - [2479] = { - [aux_sym_function_definition_repeat1] = STATE(1468), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(1439), - [sym_storage_class_specifier] = STATE(1439), - [sym_type_qualifier] = STATE(1439), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_attribute] = STATE(1468), - [sym_struct_specifier] = STATE(619), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym__declaration_specifiers] = STATE(3441), - [sym_scoped_type_identifier] = STATE(87), + [2461] = { + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(1445), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(1434), + [sym_type_qualifier] = STATE(1434), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [aux_sym__declaration_specifiers_repeat1] = STATE(1434), + [sym_enum_specifier] = STATE(620), + [sym_attribute] = STATE(1445), + [sym__declaration_specifiers] = STATE(3403), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1096), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_virtual] = ACTIONS(7361), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_virtual] = ACTIONS(7330), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1096), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1096), [anon_sym_restrict] = ACTIONS(11), }, - [2480] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3443), - [sym_preproc_function_def] = STATE(3443), - [sym_alias_declaration] = STATE(3443), + [2462] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3405), + [sym_preproc_function_def] = STATE(3405), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3443), - [sym_preproc_if_in_field_declaration_list] = STATE(3443), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3443), - [sym_type_definition] = STATE(3443), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3443), - [sym__field_declaration_list_item] = STATE(3443), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3443), - [sym_inline_method_definition] = STATE(3443), - [sym_friend_declaration] = STATE(3443), - [sym_access_specifier] = STATE(3443), - [sym_using_declaration] = STATE(3443), - [sym_preproc_else_in_field_declaration_list] = STATE(3444), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(3444), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3443), - [sym_constructor_or_destructor_definition] = STATE(3443), - [sym_constructor_or_destructor_declaration] = STATE(3443), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3405), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3405), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3405), + [sym_preproc_if_in_field_declaration_list] = STATE(3405), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3405), + [sym_type_definition] = STATE(3405), + [sym_using_declaration] = STATE(3405), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3405), + [sym_inline_method_definition] = STATE(3405), + [sym_constructor_or_destructor_definition] = STATE(3405), + [sym_access_specifier] = STATE(3405), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3405), + [sym_alias_declaration] = STATE(3405), + [sym_preproc_else_in_field_declaration_list] = STATE(3406), + [sym_preproc_elif_in_field_declaration_list] = STATE(3406), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3405), + [sym_constructor_or_destructor_declaration] = STATE(3405), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(7363), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(7332), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [2481] = { - [aux_sym_preproc_if_token2] = ACTIONS(7365), - [sym_comment] = ACTIONS(3), - }, - [2482] = { - [sym_pointer_type_declarator] = STATE(3445), - [sym_array_type_declarator] = STATE(3445), - [sym_function_type_declarator] = STATE(3445), - [sym__type_declarator] = STATE(3445), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [2463] = { + [sym_function_field_declarator] = STATE(3410), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(3410), + [sym_pointer_field_declarator] = STATE(3410), + [sym__field_declarator] = STATE(3410), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(3409), + [sym_array_field_declarator] = STATE(3410), + [sym_initializer_list] = STATE(3409), + [sym_template_method] = STATE(3410), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(7334), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(7336), + [sym_operator_name] = ACTIONS(7338), + [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), }, - [2483] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(3447), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(7367), + [2464] = { + [sym_compound_statement] = STATE(3414), + [sym_field_initializer_list] = STATE(3415), + [sym_delete_method_clause] = STATE(3414), + [sym_default_method_clause] = STATE(3414), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(7340), + [anon_sym_LBRACE] = ACTIONS(7342), + [anon_sym_SEMI] = ACTIONS(7344), }, - [2484] = { - [anon_sym_LPAREN2] = ACTIONS(2166), - [sym_operator_name] = ACTIONS(2169), - [anon_sym_mutable] = ACTIONS(2171), - [anon_sym_register] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_constexpr] = ACTIONS(2171), + [2465] = { + [aux_sym_preproc_if_token2] = ACTIONS(7346), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_COLON] = ACTIONS(2171), - [anon_sym_explicit] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2171), - [anon_sym_EQ] = ACTIONS(2169), - [anon_sym_restrict] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2171), }, - [2485] = { - [anon_sym_LPAREN2] = ACTIONS(7369), - [anon_sym_struct] = ACTIONS(7371), - [sym_auto] = ACTIONS(7371), - [anon_sym_signed] = ACTIONS(7371), - [anon_sym_mutable] = ACTIONS(7371), - [anon_sym_long] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(7369), - [anon_sym_using] = ACTIONS(7371), - [sym_preproc_directive] = ACTIONS(7371), - [aux_sym_preproc_if_token1] = ACTIONS(7371), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_static] = ACTIONS(7371), - [anon_sym_volatile] = ACTIONS(7371), - [anon_sym_RBRACE] = ACTIONS(7369), - [anon_sym_typedef] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(7369), - [anon_sym_union] = ACTIONS(7371), - [anon_sym_typename] = ACTIONS(7371), - [anon_sym_private] = ACTIONS(7371), - [anon_sym_explicit] = ACTIONS(7371), - [anon_sym_short] = ACTIONS(7371), - [sym_identifier] = ACTIONS(7371), - [sym_operator_name] = ACTIONS(7369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7371), - [anon_sym_register] = ACTIONS(7371), - [anon_sym__Atomic] = ACTIONS(7371), - [anon_sym_const] = ACTIONS(7371), - [anon_sym_extern] = ACTIONS(7371), - [anon_sym_virtual] = ACTIONS(7371), - [anon_sym_enum] = ACTIONS(7371), - [anon_sym_class] = ACTIONS(7371), - [anon_sym_constexpr] = ACTIONS(7371), - [sym_primitive_type] = ACTIONS(7371), - [anon_sym_unsigned] = ACTIONS(7371), - [anon_sym_public] = ACTIONS(7371), - [anon_sym_protected] = ACTIONS(7371), - [anon_sym_friend] = ACTIONS(7371), - [anon_sym_template] = ACTIONS(7371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7371), - [anon_sym_TILDE] = ACTIONS(7369), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7371), - [anon_sym_AMP_AMP] = ACTIONS(7369), - [anon_sym_inline] = ACTIONS(7371), - [anon_sym_restrict] = ACTIONS(7371), - }, - [2486] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3443), - [sym_preproc_function_def] = STATE(3443), - [sym_alias_declaration] = STATE(3443), - [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), - [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3443), - [sym_preproc_if_in_field_declaration_list] = STATE(3443), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3443), - [sym_type_definition] = STATE(3443), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3443), - [sym__field_declaration_list_item] = STATE(3443), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3443), - [sym_inline_method_definition] = STATE(3443), - [sym_friend_declaration] = STATE(3443), - [sym_access_specifier] = STATE(3443), - [sym_using_declaration] = STATE(3443), - [sym_preproc_else_in_field_declaration_list] = STATE(3449), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(3449), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3443), - [sym_constructor_or_destructor_definition] = STATE(3443), - [sym_constructor_or_destructor_declaration] = STATE(3443), - [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [2466] = { + [sym_template_function] = STATE(60), + [sym_macro_type_specifier] = STATE(1467), + [sym_class_specifier] = STATE(1467), + [sym_sized_type_specifier] = STATE(1467), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym__type_specifier] = STATE(1467), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(60), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(60), + [sym_array_declarator] = STATE(60), + [sym_template_type] = STATE(622), + [sym_storage_class_specifier] = STATE(336), + [sym_dependent_type] = STATE(1467), + [sym_struct_specifier] = STATE(1467), + [sym_union_specifier] = STATE(1467), + [sym_destructor_name] = STATE(60), + [sym_type_qualifier] = STATE(336), + [sym_pointer_declarator] = STATE(60), + [sym_structured_binding_declarator] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(336), + [sym_enum_specifier] = STATE(1467), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(3416), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(2917), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(7373), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(75), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [2487] = { - [aux_sym_preproc_if_token2] = ACTIONS(7375), + [2467] = { + [sym_pointer_type_declarator] = STATE(3417), + [sym_array_type_declarator] = STATE(3417), + [sym_function_type_declarator] = STATE(3417), + [sym__type_declarator] = STATE(3417), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [2488] = { - [anon_sym_LPAREN2] = ACTIONS(7377), - [anon_sym_struct] = ACTIONS(7379), - [sym_auto] = ACTIONS(7379), - [anon_sym_signed] = ACTIONS(7379), - [anon_sym_mutable] = ACTIONS(7379), - [anon_sym_long] = ACTIONS(7379), - [anon_sym_COLON_COLON] = ACTIONS(7377), - [anon_sym_using] = ACTIONS(7379), - [sym_preproc_directive] = ACTIONS(7379), - [aux_sym_preproc_if_token1] = ACTIONS(7379), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_static] = ACTIONS(7379), - [anon_sym_volatile] = ACTIONS(7379), - [anon_sym_RBRACE] = ACTIONS(7377), - [anon_sym_typedef] = ACTIONS(7379), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_union] = ACTIONS(7379), - [anon_sym_typename] = ACTIONS(7379), - [anon_sym_private] = ACTIONS(7379), - [anon_sym_explicit] = ACTIONS(7379), - [anon_sym_short] = ACTIONS(7379), - [sym_identifier] = ACTIONS(7379), - [sym_operator_name] = ACTIONS(7377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7379), - [anon_sym_register] = ACTIONS(7379), - [anon_sym__Atomic] = ACTIONS(7379), - [anon_sym_const] = ACTIONS(7379), - [anon_sym_extern] = ACTIONS(7379), - [anon_sym_virtual] = ACTIONS(7379), - [anon_sym_enum] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7379), - [anon_sym_constexpr] = ACTIONS(7379), - [sym_primitive_type] = ACTIONS(7379), - [anon_sym_unsigned] = ACTIONS(7379), - [anon_sym_public] = ACTIONS(7379), - [anon_sym_protected] = ACTIONS(7379), - [anon_sym_friend] = ACTIONS(7379), - [anon_sym_template] = ACTIONS(7379), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7379), - [anon_sym_TILDE] = ACTIONS(7377), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7379), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_inline] = ACTIONS(7379), - [anon_sym_restrict] = ACTIONS(7379), - }, - [2489] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3450), - [sym_logical_expression] = STATE(3450), - [sym_bitwise_expression] = STATE(3450), - [sym_cast_expression] = STATE(3450), - [sym_new_expression] = STATE(3450), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3450), - [sym_char_literal] = STATE(3450), - [sym_template_function] = STATE(3450), - [sym_conditional_expression] = STATE(3450), - [sym_equality_expression] = STATE(3450), - [sym_relational_expression] = STATE(3450), - [sym_delete_expression] = STATE(3450), - [sym_sizeof_expression] = STATE(3450), - [sym_parenthesized_expression] = STATE(3450), - [sym_initializer_list] = STATE(3451), - [sym_concatenated_string] = STATE(3450), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(3450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3450), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3450), - [sym_math_expression] = STATE(3450), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7381), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(7383), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(7383), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7381), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(7383), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(7383), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), + [2468] = { + [aux_sym_type_definition_repeat2] = STATE(3419), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_COMMA] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(7348), }, - [2490] = { - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(3451), - [aux_sym_field_declaration_repeat1] = STATE(3454), - [sym_initializer_list] = STATE(3451), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(7385), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_LBRACE] = ACTIONS(175), + [2469] = { + [anon_sym_LPAREN2] = ACTIONS(2168), + [sym_operator_name] = ACTIONS(2171), + [anon_sym_mutable] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym__Atomic] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_constexpr] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_volatile] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_explicit] = ACTIONS(2173), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_inline] = ACTIONS(2173), + [anon_sym_EQ] = ACTIONS(2171), + [anon_sym_restrict] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + }, + [2470] = { + [anon_sym_LPAREN2] = ACTIONS(7350), + [anon_sym_struct] = ACTIONS(7352), + [sym_auto] = ACTIONS(7352), + [anon_sym_signed] = ACTIONS(7352), + [anon_sym_mutable] = ACTIONS(7352), + [anon_sym_long] = ACTIONS(7352), + [anon_sym_COLON_COLON] = ACTIONS(7350), + [anon_sym_using] = ACTIONS(7352), + [sym_preproc_directive] = ACTIONS(7352), + [aux_sym_preproc_if_token1] = ACTIONS(7352), + [anon_sym_AMP] = ACTIONS(7352), + [anon_sym_static] = ACTIONS(7352), + [anon_sym_volatile] = ACTIONS(7352), + [anon_sym_RBRACE] = ACTIONS(7350), + [anon_sym_typedef] = ACTIONS(7352), + [anon_sym_STAR] = ACTIONS(7350), + [anon_sym_union] = ACTIONS(7352), + [anon_sym_typename] = ACTIONS(7352), + [anon_sym_private] = ACTIONS(7352), + [anon_sym_explicit] = ACTIONS(7352), + [anon_sym_short] = ACTIONS(7352), + [sym_identifier] = ACTIONS(7352), + [sym_operator_name] = ACTIONS(7350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7352), + [anon_sym_register] = ACTIONS(7352), + [anon_sym__Atomic] = ACTIONS(7352), + [anon_sym_const] = ACTIONS(7352), + [anon_sym_extern] = ACTIONS(7352), + [anon_sym_LBRACK] = ACTIONS(7352), + [anon_sym_virtual] = ACTIONS(7352), + [anon_sym_enum] = ACTIONS(7352), + [anon_sym_class] = ACTIONS(7352), + [anon_sym_constexpr] = ACTIONS(7352), + [sym_primitive_type] = ACTIONS(7352), + [anon_sym_unsigned] = ACTIONS(7352), + [anon_sym_public] = ACTIONS(7352), + [anon_sym_protected] = ACTIONS(7352), + [anon_sym_friend] = ACTIONS(7352), + [anon_sym_template] = ACTIONS(7352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7352), + [anon_sym_TILDE] = ACTIONS(7350), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7352), + [anon_sym_AMP_AMP] = ACTIONS(7350), + [anon_sym_inline] = ACTIONS(7352), + [anon_sym_restrict] = ACTIONS(7352), + }, + [2471] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3405), + [sym_preproc_function_def] = STATE(3405), + [sym__declarator] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), + [sym_array_declarator] = STATE(614), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3405), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3405), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3405), + [sym_preproc_if_in_field_declaration_list] = STATE(3405), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3405), + [sym_type_definition] = STATE(3405), + [sym_using_declaration] = STATE(3405), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3405), + [sym_inline_method_definition] = STATE(3405), + [sym_constructor_or_destructor_definition] = STATE(3405), + [sym_access_specifier] = STATE(3405), + [sym_reference_declarator] = STATE(614), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3405), + [sym_alias_declaration] = STATE(3405), + [sym_preproc_else_in_field_declaration_list] = STATE(3421), + [sym_preproc_elif_in_field_declaration_list] = STATE(3421), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3405), + [sym_constructor_or_destructor_declaration] = STATE(3405), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(7354), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), + [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(11), }, - [2491] = { + [2472] = { + [aux_sym_preproc_if_token2] = ACTIONS(7356), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(7385), }, - [2492] = { - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_struct] = ACTIONS(7391), - [sym_auto] = ACTIONS(7391), - [anon_sym_signed] = ACTIONS(7391), - [anon_sym_mutable] = ACTIONS(7391), - [anon_sym_long] = ACTIONS(7391), - [anon_sym_COLON_COLON] = ACTIONS(7389), - [anon_sym_using] = ACTIONS(7391), - [sym_preproc_directive] = ACTIONS(7391), - [aux_sym_preproc_if_token1] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_static] = ACTIONS(7391), - [anon_sym_volatile] = ACTIONS(7391), - [anon_sym_RBRACE] = ACTIONS(7389), - [anon_sym_typedef] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7389), - [anon_sym_union] = ACTIONS(7391), - [anon_sym_typename] = ACTIONS(7391), - [anon_sym_private] = ACTIONS(7391), - [anon_sym_explicit] = ACTIONS(7391), - [anon_sym_short] = ACTIONS(7391), - [sym_identifier] = ACTIONS(7391), - [sym_operator_name] = ACTIONS(7389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7391), - [anon_sym_register] = ACTIONS(7391), - [anon_sym__Atomic] = ACTIONS(7391), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_extern] = ACTIONS(7391), - [anon_sym_virtual] = ACTIONS(7391), - [anon_sym_enum] = ACTIONS(7391), - [anon_sym_class] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7391), - [sym_primitive_type] = ACTIONS(7391), - [anon_sym_unsigned] = ACTIONS(7391), - [anon_sym_public] = ACTIONS(7391), - [anon_sym_protected] = ACTIONS(7391), - [anon_sym_friend] = ACTIONS(7391), - [anon_sym_template] = ACTIONS(7391), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7391), - [anon_sym_TILDE] = ACTIONS(7389), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_inline] = ACTIONS(7391), - [anon_sym_restrict] = ACTIONS(7391), + [2473] = { + [anon_sym_LPAREN2] = ACTIONS(7358), + [anon_sym_struct] = ACTIONS(7360), + [sym_auto] = ACTIONS(7360), + [anon_sym_signed] = ACTIONS(7360), + [anon_sym_mutable] = ACTIONS(7360), + [anon_sym_long] = ACTIONS(7360), + [anon_sym_COLON_COLON] = ACTIONS(7358), + [anon_sym_using] = ACTIONS(7360), + [sym_preproc_directive] = ACTIONS(7360), + [aux_sym_preproc_if_token1] = ACTIONS(7360), + [anon_sym_AMP] = ACTIONS(7360), + [anon_sym_static] = ACTIONS(7360), + [anon_sym_volatile] = ACTIONS(7360), + [anon_sym_RBRACE] = ACTIONS(7358), + [anon_sym_typedef] = ACTIONS(7360), + [anon_sym_STAR] = ACTIONS(7358), + [anon_sym_union] = ACTIONS(7360), + [anon_sym_typename] = ACTIONS(7360), + [anon_sym_private] = ACTIONS(7360), + [anon_sym_explicit] = ACTIONS(7360), + [anon_sym_short] = ACTIONS(7360), + [sym_identifier] = ACTIONS(7360), + [sym_operator_name] = ACTIONS(7358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7360), + [anon_sym_register] = ACTIONS(7360), + [anon_sym__Atomic] = ACTIONS(7360), + [anon_sym_const] = ACTIONS(7360), + [anon_sym_extern] = ACTIONS(7360), + [anon_sym_LBRACK] = ACTIONS(7360), + [anon_sym_virtual] = ACTIONS(7360), + [anon_sym_enum] = ACTIONS(7360), + [anon_sym_class] = ACTIONS(7360), + [anon_sym_constexpr] = ACTIONS(7360), + [sym_primitive_type] = ACTIONS(7360), + [anon_sym_unsigned] = ACTIONS(7360), + [anon_sym_public] = ACTIONS(7360), + [anon_sym_protected] = ACTIONS(7360), + [anon_sym_friend] = ACTIONS(7360), + [anon_sym_template] = ACTIONS(7360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7360), + [anon_sym_TILDE] = ACTIONS(7358), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7360), + [anon_sym_AMP_AMP] = ACTIONS(7358), + [anon_sym_inline] = ACTIONS(7360), + [anon_sym_restrict] = ACTIONS(7360), }, - [2493] = { - [sym_reference_declarator] = STATE(3455), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(3455), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(3455), - [sym_destructor_name] = STATE(3455), - [sym__declarator] = STATE(3455), - [sym_init_declarator] = STATE(3456), - [sym_array_declarator] = STATE(3455), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(3455), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(7393), + [2474] = { + [sym_template_function] = STATE(3422), + [sym__expression] = STATE(3422), + [sym_logical_expression] = STATE(3422), + [sym_bitwise_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_char_literal] = STATE(3422), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3422), + [sym_equality_expression] = STATE(3422), + [sym_relational_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(3423), + [sym_parenthesized_expression] = STATE(3422), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3422), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3422), + [sym_math_expression] = STATE(3422), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3422), + [sym_raw_string_literal] = ACTIONS(7362), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(7364), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(7364), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7362), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(7364), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(7364), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [2475] = { [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(7366), }, - [2494] = { - [anon_sym_LPAREN2] = ACTIONS(7395), - [anon_sym_struct] = ACTIONS(7397), - [sym_auto] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(7397), - [anon_sym_mutable] = ACTIONS(7397), - [anon_sym_long] = ACTIONS(7397), - [anon_sym_COLON_COLON] = ACTIONS(7395), - [anon_sym_using] = ACTIONS(7397), - [sym_preproc_directive] = ACTIONS(7397), - [aux_sym_preproc_if_token1] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7397), - [anon_sym_static] = ACTIONS(7397), - [anon_sym_volatile] = ACTIONS(7397), - [anon_sym_RBRACE] = ACTIONS(7395), - [anon_sym_typedef] = ACTIONS(7397), - [anon_sym_STAR] = ACTIONS(7395), - [anon_sym_union] = ACTIONS(7397), - [anon_sym_typename] = ACTIONS(7397), - [anon_sym_private] = ACTIONS(7397), - [anon_sym_explicit] = ACTIONS(7397), - [anon_sym_short] = ACTIONS(7397), - [sym_identifier] = ACTIONS(7397), - [sym_operator_name] = ACTIONS(7395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7397), - [anon_sym_register] = ACTIONS(7397), - [anon_sym__Atomic] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7397), - [anon_sym_extern] = ACTIONS(7397), - [anon_sym_virtual] = ACTIONS(7397), - [anon_sym_enum] = ACTIONS(7397), - [anon_sym_class] = ACTIONS(7397), - [anon_sym_constexpr] = ACTIONS(7397), - [sym_primitive_type] = ACTIONS(7397), - [anon_sym_unsigned] = ACTIONS(7397), - [anon_sym_public] = ACTIONS(7397), - [anon_sym_protected] = ACTIONS(7397), - [anon_sym_friend] = ACTIONS(7397), - [anon_sym_template] = ACTIONS(7397), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7397), - [anon_sym_TILDE] = ACTIONS(7395), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7395), - [anon_sym_inline] = ACTIONS(7397), - [anon_sym_restrict] = ACTIONS(7397), + [2476] = { + [sym_parameter_list] = STATE(2505), + [sym_bitfield_clause] = STATE(3423), + [sym_initializer_list] = STATE(3423), + [aux_sym_field_declaration_repeat1] = STATE(3426), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(7366), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(7368), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), }, - [2495] = { - [sym_compound_statement] = STATE(3458), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(3459), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(5128), - [anon_sym_SEMI] = ACTIONS(7399), + [2477] = { + [anon_sym_LPAREN2] = ACTIONS(7370), + [anon_sym_struct] = ACTIONS(7372), + [sym_auto] = ACTIONS(7372), + [anon_sym_signed] = ACTIONS(7372), + [anon_sym_mutable] = ACTIONS(7372), + [anon_sym_long] = ACTIONS(7372), + [anon_sym_COLON_COLON] = ACTIONS(7370), + [anon_sym_using] = ACTIONS(7372), + [sym_preproc_directive] = ACTIONS(7372), + [aux_sym_preproc_if_token1] = ACTIONS(7372), + [anon_sym_AMP] = ACTIONS(7372), + [anon_sym_static] = ACTIONS(7372), + [anon_sym_volatile] = ACTIONS(7372), + [anon_sym_RBRACE] = ACTIONS(7370), + [anon_sym_typedef] = ACTIONS(7372), + [anon_sym_STAR] = ACTIONS(7370), + [anon_sym_union] = ACTIONS(7372), + [anon_sym_typename] = ACTIONS(7372), + [anon_sym_private] = ACTIONS(7372), + [anon_sym_explicit] = ACTIONS(7372), + [anon_sym_short] = ACTIONS(7372), + [sym_identifier] = ACTIONS(7372), + [sym_operator_name] = ACTIONS(7370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7372), + [anon_sym_register] = ACTIONS(7372), + [anon_sym__Atomic] = ACTIONS(7372), + [anon_sym_const] = ACTIONS(7372), + [anon_sym_extern] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(7372), + [anon_sym_virtual] = ACTIONS(7372), + [anon_sym_enum] = ACTIONS(7372), + [anon_sym_class] = ACTIONS(7372), + [anon_sym_constexpr] = ACTIONS(7372), + [sym_primitive_type] = ACTIONS(7372), + [anon_sym_unsigned] = ACTIONS(7372), + [anon_sym_public] = ACTIONS(7372), + [anon_sym_protected] = ACTIONS(7372), + [anon_sym_friend] = ACTIONS(7372), + [anon_sym_template] = ACTIONS(7372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7372), + [anon_sym_TILDE] = ACTIONS(7370), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7370), + [anon_sym_inline] = ACTIONS(7372), + [anon_sym_restrict] = ACTIONS(7372), }, - [2496] = { - [aux_sym_declaration_repeat1] = STATE(3459), + [2478] = { + [anon_sym_LPAREN2] = ACTIONS(7374), + [anon_sym_struct] = ACTIONS(7376), + [sym_auto] = ACTIONS(7376), + [anon_sym_signed] = ACTIONS(7376), + [anon_sym_mutable] = ACTIONS(7376), + [anon_sym_long] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7374), + [anon_sym_using] = ACTIONS(7376), + [sym_preproc_directive] = ACTIONS(7376), + [aux_sym_preproc_if_token1] = ACTIONS(7376), + [anon_sym_AMP] = ACTIONS(7376), + [anon_sym_static] = ACTIONS(7376), + [anon_sym_volatile] = ACTIONS(7376), + [anon_sym_RBRACE] = ACTIONS(7374), + [anon_sym_typedef] = ACTIONS(7376), + [anon_sym_STAR] = ACTIONS(7374), + [anon_sym_union] = ACTIONS(7376), + [anon_sym_typename] = ACTIONS(7376), + [anon_sym_private] = ACTIONS(7376), + [anon_sym_explicit] = ACTIONS(7376), + [anon_sym_short] = ACTIONS(7376), + [sym_identifier] = ACTIONS(7376), + [sym_operator_name] = ACTIONS(7374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7376), + [anon_sym_register] = ACTIONS(7376), + [anon_sym__Atomic] = ACTIONS(7376), + [anon_sym_const] = ACTIONS(7376), + [anon_sym_extern] = ACTIONS(7376), + [anon_sym_LBRACK] = ACTIONS(7376), + [anon_sym_virtual] = ACTIONS(7376), + [anon_sym_enum] = ACTIONS(7376), + [anon_sym_class] = ACTIONS(7376), + [anon_sym_constexpr] = ACTIONS(7376), + [sym_primitive_type] = ACTIONS(7376), + [anon_sym_unsigned] = ACTIONS(7376), + [anon_sym_public] = ACTIONS(7376), + [anon_sym_protected] = ACTIONS(7376), + [anon_sym_friend] = ACTIONS(7376), + [anon_sym_template] = ACTIONS(7376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7376), + [anon_sym_TILDE] = ACTIONS(7374), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7376), + [anon_sym_AMP_AMP] = ACTIONS(7374), + [anon_sym_inline] = ACTIONS(7376), + [anon_sym_restrict] = ACTIONS(7376), + }, + [2479] = { + [sym_template_function] = STATE(3427), + [sym_destructor_name] = STATE(3427), + [sym_pointer_declarator] = STATE(3427), + [sym_structured_binding_declarator] = STATE(3427), + [sym__declarator] = STATE(3427), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(3427), + [sym_array_declarator] = STATE(3427), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(3428), + [sym_function_declarator] = STATE(3427), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(7378), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(7399), }, - [2497] = { - [anon_sym_LPAREN2] = ACTIONS(3594), - [anon_sym_struct] = ACTIONS(3592), - [sym_auto] = ACTIONS(3592), - [anon_sym_signed] = ACTIONS(3592), - [anon_sym_mutable] = ACTIONS(3592), - [anon_sym_long] = ACTIONS(3592), - [anon_sym_COLON_COLON] = ACTIONS(3594), - [anon_sym_using] = ACTIONS(3592), - [sym_preproc_directive] = ACTIONS(3592), - [aux_sym_preproc_if_token1] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_volatile] = ACTIONS(3592), - [anon_sym_RBRACE] = ACTIONS(3594), - [anon_sym_typedef] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_union] = ACTIONS(3592), - [anon_sym_typename] = ACTIONS(3592), - [anon_sym_private] = ACTIONS(3592), - [anon_sym_explicit] = ACTIONS(3592), - [anon_sym_short] = ACTIONS(3592), - [sym_identifier] = ACTIONS(3592), - [sym_operator_name] = ACTIONS(3594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), - [anon_sym_register] = ACTIONS(3592), - [anon_sym__Atomic] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_extern] = ACTIONS(3592), - [anon_sym_virtual] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_constexpr] = ACTIONS(3592), - [sym_primitive_type] = ACTIONS(3592), - [anon_sym_unsigned] = ACTIONS(3592), - [anon_sym_public] = ACTIONS(3592), - [anon_sym_protected] = ACTIONS(3592), - [anon_sym_friend] = ACTIONS(3592), - [anon_sym_template] = ACTIONS(3592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3594), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_inline] = ACTIONS(3592), - [anon_sym_restrict] = ACTIONS(3592), + [2480] = { + [sym_compound_statement] = STATE(3430), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(3431), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(5219), + [anon_sym_SEMI] = ACTIONS(7380), }, - [2498] = { - [sym_reference_declarator] = STATE(2495), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2495), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(2495), - [sym_destructor_name] = STATE(2495), - [sym__declarator] = STATE(2495), - [sym_init_declarator] = STATE(2496), - [sym_array_declarator] = STATE(2495), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2495), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(7401), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(5080), + [2481] = { + [aux_sym_declaration_repeat1] = STATE(3431), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(7380), }, - [2499] = { - [anon_sym_LF] = ACTIONS(7403), - [sym_comment] = ACTIONS(244), + [2482] = { + [anon_sym_LPAREN2] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3606), + [sym_auto] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3606), + [anon_sym_mutable] = ACTIONS(3606), + [anon_sym_long] = ACTIONS(3606), + [anon_sym_COLON_COLON] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3606), + [sym_preproc_directive] = ACTIONS(3606), + [aux_sym_preproc_if_token1] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_volatile] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3606), + [anon_sym_typename] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_explicit] = ACTIONS(3606), + [anon_sym_short] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3606), + [sym_operator_name] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3606), + [anon_sym_register] = ACTIONS(3606), + [anon_sym__Atomic] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_extern] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_virtual] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_constexpr] = ACTIONS(3606), + [sym_primitive_type] = ACTIONS(3606), + [anon_sym_unsigned] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_friend] = ACTIONS(3606), + [anon_sym_template] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3606), + [anon_sym_restrict] = ACTIONS(3606), }, - [2500] = { - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_struct] = ACTIONS(3688), - [sym_auto] = ACTIONS(3688), - [anon_sym_signed] = ACTIONS(3688), - [anon_sym_mutable] = ACTIONS(3688), - [anon_sym_long] = ACTIONS(3688), - [anon_sym_COLON_COLON] = ACTIONS(3690), - [anon_sym_using] = ACTIONS(3688), - [sym_preproc_directive] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_volatile] = ACTIONS(3688), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3690), - [anon_sym_union] = ACTIONS(3688), - [anon_sym_typename] = ACTIONS(3688), - [anon_sym_private] = ACTIONS(3688), - [anon_sym_explicit] = ACTIONS(3688), - [anon_sym_short] = ACTIONS(3688), - [sym_identifier] = ACTIONS(3688), - [sym_operator_name] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), - [anon_sym_register] = ACTIONS(3688), - [anon_sym__Atomic] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(3688), - [anon_sym_virtual] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_constexpr] = ACTIONS(3688), - [sym_primitive_type] = ACTIONS(3688), - [anon_sym_unsigned] = ACTIONS(3688), - [anon_sym_public] = ACTIONS(3688), - [anon_sym_protected] = ACTIONS(3688), - [anon_sym_friend] = ACTIONS(3688), - [anon_sym_template] = ACTIONS(3688), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), - [anon_sym_TILDE] = ACTIONS(3690), + [2483] = { + [sym_template_function] = STATE(2480), + [sym_destructor_name] = STATE(2480), + [sym_pointer_declarator] = STATE(2480), + [sym_structured_binding_declarator] = STATE(2480), + [sym__declarator] = STATE(2480), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2480), + [sym_array_declarator] = STATE(2480), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(2481), + [sym_function_declarator] = STATE(2480), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(7382), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(5076), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_inline] = ACTIONS(3688), - [anon_sym_restrict] = ACTIONS(3688), }, - [2501] = { + [2484] = { + [anon_sym_LF] = ACTIONS(7384), [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(7405), - [sym_preproc_arg] = ACTIONS(7407), }, - [2502] = { - [anon_sym_LPAREN2] = ACTIONS(3743), - [sym_operator_name] = ACTIONS(3746), - [anon_sym_mutable] = ACTIONS(3748), - [anon_sym_register] = ACTIONS(3748), - [anon_sym__Atomic] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3743), - [anon_sym_constexpr] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3748), - [anon_sym_static] = ACTIONS(3748), - [anon_sym_volatile] = ACTIONS(3748), - [anon_sym_STAR] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_COLON] = ACTIONS(3748), - [anon_sym_explicit] = ACTIONS(3748), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_inline] = ACTIONS(3748), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_restrict] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3746), - [sym_identifier] = ACTIONS(3748), + [2485] = { + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3698), + [sym_auto] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3698), + [sym_operator_name] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_friend] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), }, - [2503] = { - [sym_union_specifier] = STATE(3466), - [sym_macro_type_specifier] = STATE(3466), - [sym_class_specifier] = STATE(3466), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(3466), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(3466), - [aux_sym_sized_type_specifier_repeat1] = STATE(3465), - [sym_struct_specifier] = STATE(3466), - [sym_enum_specifier] = STATE(3466), - [sym_scoped_type_identifier] = STATE(1989), - [sym_dependent_type] = STATE(3466), - [anon_sym_unsigned] = ACTIONS(7409), - [anon_sym_struct] = ACTIONS(3914), - [sym_auto] = ACTIONS(7411), - [anon_sym_signed] = ACTIONS(7409), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(7409), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(7413), + [2486] = { + [sym_comment] = ACTIONS(244), + [anon_sym_LF] = ACTIONS(7386), + [sym_preproc_arg] = ACTIONS(7388), + }, + [2487] = { + [sym_union_specifier] = STATE(3438), + [sym_macro_type_specifier] = STATE(3438), + [sym_class_specifier] = STATE(3438), + [aux_sym_sized_type_specifier_repeat1] = STATE(3437), + [sym_sized_type_specifier] = STATE(3438), + [sym__type_specifier] = STATE(3438), + [sym_scoped_type_identifier] = STATE(2005), + [sym_enum_specifier] = STATE(3438), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(3438), + [sym_struct_specifier] = STATE(3438), + [anon_sym_unsigned] = ACTIONS(7390), + [anon_sym_struct] = ACTIONS(3992), + [sym_auto] = ACTIONS(7392), + [anon_sym_signed] = ACTIONS(7390), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(7390), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(7394), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(7409), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(3920), - [sym_primitive_type] = ACTIONS(7411), + [anon_sym_short] = ACTIONS(7390), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(7392), }, - [2504] = { - [sym_virtual_specifier] = STATE(3467), - [aux_sym_function_declarator_repeat1] = STATE(3467), - [sym_trailing_return_type] = STATE(3467), - [sym_type_qualifier] = STATE(3467), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(7415), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(4011), - [anon_sym_COLON] = ACTIONS(4011), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4011), + [2488] = { + [sym_virtual_specifier] = STATE(3439), + [aux_sym_function_declarator_repeat1] = STATE(3439), + [sym_type_qualifier] = STATE(3439), + [sym_trailing_return_type] = STATE(3439), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(7396), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4059), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(4059), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(4059), }, - [2505] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2530), - [sym_storage_class_specifier] = STATE(2530), - [sym_type_qualifier] = STATE(2530), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), + [2489] = { + [sym_function_field_declarator] = STATE(3440), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(3440), + [sym_pointer_field_declarator] = STATE(3440), + [sym__field_declarator] = STATE(3440), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(3423), + [sym_array_field_declarator] = STATE(3440), + [sym_initializer_list] = STATE(3423), + [sym_template_method] = STATE(3440), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(7366), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(7368), + [sym_operator_name] = ACTIONS(7398), + [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3708), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [sym_identifier] = ACTIONS(3710), - [anon_sym_EQ] = ACTIONS(3708), - [sym_operator_name] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_inline] = ACTIONS(63), - }, - [2506] = { - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_struct] = ACTIONS(3712), - [sym_auto] = ACTIONS(3712), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_using] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_RBRACE] = ACTIONS(3714), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_private] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [sym_identifier] = ACTIONS(3712), - [sym_operator_name] = ACTIONS(3714), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym_virtual] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_public] = ACTIONS(3712), - [anon_sym_protected] = ACTIONS(3712), - [anon_sym_friend] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3714), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym_restrict] = ACTIONS(3712), }, - [2507] = { - [sym_compound_statement] = STATE(3468), - [sym_delete_method_clause] = STATE(3468), - [sym_default_method_clause] = STATE(3468), - [anon_sym_EQ] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), + [2490] = { + [sym_compound_statement] = STATE(3442), + [sym_parameter_list] = STATE(2505), + [sym_delete_method_clause] = STATE(3442), + [sym_bitfield_clause] = STATE(3423), + [sym_initializer_list] = STATE(3423), + [aux_sym_field_declaration_repeat1] = STATE(3426), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(7366), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(7400), + [anon_sym_LBRACE] = ACTIONS(5219), [sym_comment] = ACTIONS(3), }, - [2508] = { - [sym_function_field_declarator] = STATE(3469), - [sym_reference_field_declarator] = STATE(3469), - [sym_template_method] = STATE(3469), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(3469), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(3469), - [sym_scoped_field_identifier] = STATE(2511), - [sym_array_field_declarator] = STATE(3469), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5094), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(5096), - [sym_operator_name] = ACTIONS(7417), + [2491] = { + [sym_function_field_declarator] = STATE(3443), + [sym_scoped_field_identifier] = STATE(2493), + [sym_pointer_field_declarator] = STATE(3443), + [sym__field_declarator] = STATE(3443), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_array_field_declarator] = STATE(3443), + [sym_template_method] = STATE(3443), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_reference_field_declarator] = STATE(3443), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [sym_operator_name] = ACTIONS(7402), [sym_comment] = ACTIONS(3), }, - [2509] = { - [sym_function_field_declarator] = STATE(3471), - [sym_reference_field_declarator] = STATE(3471), - [sym_template_method] = STATE(3471), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(3471), - [sym_scoped_namespace_identifier] = STATE(949), - [aux_sym_type_definition_repeat1] = STATE(3470), - [sym__field_declarator] = STATE(3471), - [sym_scoped_field_identifier] = STATE(2511), - [sym_array_field_declarator] = STATE(3471), - [sym_scoped_type_identifier] = STATE(174), - [sym_type_qualifier] = STATE(3470), - [anon_sym_LPAREN2] = ACTIONS(2887), + [2492] = { + [sym_function_field_declarator] = STATE(3445), + [aux_sym_type_definition_repeat1] = STATE(3444), + [sym_scoped_field_identifier] = STATE(2493), + [sym_reference_field_declarator] = STATE(3445), + [sym_pointer_field_declarator] = STATE(3445), + [sym__field_declarator] = STATE(3445), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_array_field_declarator] = STATE(3445), + [sym_template_method] = STATE(3445), + [sym_type_qualifier] = STATE(3444), + [sym_scoped_namespace_identifier] = STATE(988), + [anon_sym_LPAREN2] = ACTIONS(2889), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1733), + [anon_sym_COLON_COLON] = ACTIONS(1825), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5181), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5183), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(5096), - [sym_operator_name] = ACTIONS(7419), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [sym_operator_name] = ACTIONS(7404), [anon_sym_restrict] = ACTIONS(11), }, - [2510] = { - [sym_parameter_list] = STATE(3473), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_RPAREN] = ACTIONS(7421), + [2493] = { + [sym_template_argument_list] = STATE(1953), + [anon_sym_LT] = ACTIONS(534), [sym_comment] = ACTIONS(3), }, - [2511] = { - [sym_template_argument_list] = STATE(1887), - [anon_sym_LT] = ACTIONS(609), + [2494] = { + [sym_parameter_list] = STATE(3447), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(7406), [sym_comment] = ACTIONS(3), }, - [2512] = { - [sym_parameter_list] = STATE(2522), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(7423), - [anon_sym_SEMI] = ACTIONS(7423), - [anon_sym_COLON] = ACTIONS(7423), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(7423), - [anon_sym_LBRACE] = ACTIONS(7423), + [2495] = { + [sym_parameter_list] = STATE(2505), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(7408), + [anon_sym_SEMI] = ACTIONS(7408), + [anon_sym_COLON] = ACTIONS(7408), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(7408), + [anon_sym_LBRACE] = ACTIONS(7408), [sym_comment] = ACTIONS(3), }, - [2513] = { - [sym_function_field_declarator] = STATE(3475), - [sym_reference_field_declarator] = STATE(3475), - [sym_template_method] = STATE(3475), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(3475), - [sym_scoped_namespace_identifier] = STATE(949), - [aux_sym_type_definition_repeat1] = STATE(3474), - [sym__field_declarator] = STATE(3475), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(3475), - [sym_scoped_type_identifier] = STATE(174), - [sym_type_qualifier] = STATE(3474), - [anon_sym_LPAREN2] = ACTIONS(2887), + [2496] = { + [sym_function_field_declarator] = STATE(3449), + [aux_sym_type_definition_repeat1] = STATE(3448), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(3449), + [sym_pointer_field_declarator] = STATE(3449), + [sym__field_declarator] = STATE(3449), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_array_field_declarator] = STATE(3449), + [sym_template_method] = STATE(3449), + [sym_type_qualifier] = STATE(3448), + [sym_scoped_namespace_identifier] = STATE(988), + [anon_sym_LPAREN2] = ACTIONS(2889), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1733), + [anon_sym_COLON_COLON] = ACTIONS(1825), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [sym_operator_name] = ACTIONS(7425), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [sym_operator_name] = ACTIONS(7410), [anon_sym_restrict] = ACTIONS(11), }, - [2514] = { - [sym_parameter_list] = STATE(2522), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(7427), - [anon_sym_SEMI] = ACTIONS(7427), - [anon_sym_COLON] = ACTIONS(7427), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(7427), - [anon_sym_LBRACE] = ACTIONS(7427), + [2497] = { + [sym_parameter_list] = STATE(2505), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(7412), + [anon_sym_SEMI] = ACTIONS(7412), + [anon_sym_COLON] = ACTIONS(7412), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(7412), + [anon_sym_LBRACE] = ACTIONS(7412), [sym_comment] = ACTIONS(3), }, - [2515] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(7429), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2498] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(7414), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2516] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(7385), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2499] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(7366), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2517] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3478), - [sym_logical_expression] = STATE(3478), - [sym_bitwise_expression] = STATE(3478), - [sym_cast_expression] = STATE(3478), - [sym_new_expression] = STATE(3478), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3478), - [sym_char_literal] = STATE(3478), - [sym_type_qualifier] = STATE(3479), - [sym_template_function] = STATE(3478), - [sym_conditional_expression] = STATE(3478), - [sym_equality_expression] = STATE(3478), - [sym_relational_expression] = STATE(3478), - [sym_delete_expression] = STATE(3478), - [sym_sizeof_expression] = STATE(3478), - [sym_parenthesized_expression] = STATE(3478), - [sym_lambda_expression] = STATE(3478), - [sym_concatenated_string] = STATE(3478), - [sym_string_literal] = STATE(967), + [2500] = { + [sym_template_function] = STATE(3452), + [sym__expression] = STATE(3452), + [sym_logical_expression] = STATE(3452), + [sym_bitwise_expression] = STATE(3452), + [sym_cast_expression] = STATE(3452), + [sym_delete_expression] = STATE(3452), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3452), + [sym_lambda_expression] = STATE(3452), + [sym_char_literal] = STATE(3452), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3478), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3478), - [sym_math_expression] = STATE(3478), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_type_qualifier] = STATE(3453), + [sym_conditional_expression] = STATE(3452), + [sym_equality_expression] = STATE(3452), + [sym_relational_expression] = STATE(3452), + [sym_sizeof_expression] = STATE(3452), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(3479), - [sym_raw_string_literal] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(7433), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(7433), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(7435), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(7431), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(7433), - [sym_nullptr] = ACTIONS(7433), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(7437), + [sym_parenthesized_expression] = STATE(3452), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(3453), + [sym_concatenated_string] = STATE(3452), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3452), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3452), + [sym_math_expression] = STATE(3452), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3452), + [sym_raw_string_literal] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(7418), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(7418), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(7420), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(7416), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(7418), + [sym_nullptr] = ACTIONS(7418), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(7422), }, - [2518] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3450), - [sym_logical_expression] = STATE(3450), - [sym_bitwise_expression] = STATE(3450), - [sym_cast_expression] = STATE(3450), - [sym_new_expression] = STATE(3450), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3450), - [sym_char_literal] = STATE(3450), - [sym_template_function] = STATE(3450), - [sym_conditional_expression] = STATE(3450), - [sym_equality_expression] = STATE(3450), - [sym_relational_expression] = STATE(3450), - [sym_delete_expression] = STATE(3450), - [sym_sizeof_expression] = STATE(3450), - [sym_parenthesized_expression] = STATE(3450), - [sym_initializer_list] = STATE(3451), - [sym_concatenated_string] = STATE(3450), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(3450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3450), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3450), - [sym_math_expression] = STATE(3450), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7381), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(7383), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(7383), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7381), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(7383), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(7383), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(7439), + [2501] = { + [sym_template_function] = STATE(3422), + [sym__expression] = STATE(3422), + [sym_logical_expression] = STATE(3422), + [sym_bitwise_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_char_literal] = STATE(3422), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3422), + [sym_equality_expression] = STATE(3422), + [sym_relational_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(3423), + [sym_parenthesized_expression] = STATE(3422), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3422), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3422), + [sym_math_expression] = STATE(3422), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3422), + [sym_raw_string_literal] = ACTIONS(7362), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(7364), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(7364), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7362), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(7364), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(7364), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(7424), [anon_sym_LBRACE] = ACTIONS(175), }, - [2519] = { - [sym_function_field_declarator] = STATE(3481), - [sym_reference_field_declarator] = STATE(3481), - [sym_template_method] = STATE(3481), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(3481), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(3481), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(3481), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [sym_operator_name] = ACTIONS(7441), + [2502] = { + [sym_function_field_declarator] = STATE(3455), + [sym_scoped_field_identifier] = STATE(1457), + [sym_pointer_field_declarator] = STATE(3455), + [sym__field_declarator] = STATE(3455), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_array_field_declarator] = STATE(3455), + [sym_template_method] = STATE(3455), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_reference_field_declarator] = STATE(3455), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [sym_operator_name] = ACTIONS(7426), [sym_comment] = ACTIONS(3), }, - [2520] = { - [sym_goto_statement] = STATE(2527), - [sym_preproc_function_def] = STATE(2527), - [sym_logical_expression] = STATE(2024), - [sym_for_range_loop] = STATE(2527), - [sym_cast_expression] = STATE(2024), - [sym_declaration] = STATE(2527), - [sym_field_expression] = STATE(2022), - [sym_field_designator] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_switch_statement] = STATE(2527), - [sym_return_statement] = STATE(2527), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(2024), - [sym_relational_expression] = STATE(2024), - [sym_delete_expression] = STATE(2024), - [sym_subscript_expression] = STATE(2022), - [sym_scoped_identifier] = STATE(50), + [2503] = { + [sym_goto_statement] = STATE(2511), + [sym_preproc_function_def] = STATE(2511), + [sym_logical_expression] = STATE(2031), + [sym_try_statement] = STATE(2511), + [sym_cast_expression] = STATE(2031), + [sym_lambda_expression] = STATE(2031), + [sym_field_expression] = STATE(2029), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2511), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_field_designator] = STATE(452), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2511), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2511), + [sym_namespace_definition] = STATE(2511), + [sym_conditional_expression] = STATE(2031), + [sym_relational_expression] = STATE(2031), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2511), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(2030), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2511), [sym_initializer_list] = STATE(451), - [sym_type_definition] = STATE(2527), - [sym_string_literal] = STATE(2023), - [sym_function_declarator] = STATE(51), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2527), - [sym_break_statement] = STATE(2527), - [sym_preproc_include] = STATE(2527), - [sym_assignment_expression] = STATE(2024), - [sym_preproc_ifdef] = STATE(2527), - [sym_shift_expression] = STATE(2024), - [sym_using_declaration] = STATE(2527), - [sym_call_expression] = STATE(2022), - [sym_attribute] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(2511), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2511), + [sym_preproc_include] = STATE(2511), + [sym_assignment_expression] = STATE(2031), + [sym_preproc_ifdef] = STATE(2511), + [sym_shift_expression] = STATE(2031), + [sym_for_range_loop] = STATE(2511), + [sym_call_expression] = STATE(2029), [sym_initializer_pair] = STATE(451), - [sym_compound_statement] = STATE(2527), - [sym_template_instantiation] = STATE(2527), - [sym_constructor_or_destructor_definition] = STATE(2527), - [sym_expression_statement] = STATE(2527), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2527), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(2024), - [sym_preproc_def] = STATE(2527), - [sym_bitwise_expression] = STATE(2024), - [sym_new_expression] = STATE(2024), - [sym_function_definition] = STATE(2527), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(2024), - [sym_char_literal] = STATE(2024), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2527), - [sym_alias_declaration] = STATE(2527), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [aux_sym_translation_unit_repeat1] = STATE(2527), - [sym_storage_class_specifier] = STATE(48), - [sym_if_statement] = STATE(2527), - [sym_for_statement] = STATE(2527), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(2527), - [sym_equality_expression] = STATE(2024), - [sym_try_statement] = STATE(2527), - [sym_sizeof_expression] = STATE(2024), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(2024), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(2024), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(2024), - [sym_structured_binding_declaration] = STATE(2527), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2527), - [sym_preproc_if] = STATE(2527), - [sym_pointer_expression] = STATE(2022), - [sym_namespace_definition] = STATE(2527), - [sym_math_expression] = STATE(2024), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2527), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [sym_subscript_designator] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2527), - [sym_while_statement] = STATE(2527), - [sym_raw_string_literal] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4043), - [sym_true] = ACTIONS(4045), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(2511), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_expression_statement] = STATE(2511), + [sym_do_statement] = STATE(2511), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(2031), + [sym_preproc_def] = STATE(2511), + [sym_bitwise_expression] = STATE(2031), + [sym_delete_expression] = STATE(2031), + [sym_function_definition] = STATE(2511), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(2031), + [sym_char_literal] = STATE(2031), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2511), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2511), + [sym_for_statement] = STATE(2511), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(2511), + [sym_equality_expression] = STATE(2031), + [sym_using_declaration] = STATE(2511), + [sym_sizeof_expression] = STATE(2031), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(2031), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(2031), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2511), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2511), + [sym_preproc_if] = STATE(2511), + [sym_pointer_expression] = STATE(2029), + [sym_new_expression] = STATE(2031), + [sym_math_expression] = STATE(2031), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2511), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2511), + [aux_sym_translation_unit_repeat1] = STATE(2511), + [sym_subscript_designator] = STATE(452), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2511), + [sym_while_statement] = STATE(2511), + [sym_raw_string_literal] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4079), + [sym_true] = ACTIONS(4081), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4045), + [sym_null] = ACTIONS(4081), [anon_sym_break] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_sizeof] = ACTIONS(4049), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_sizeof] = ACTIONS(4085), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4079), [anon_sym_typedef] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(4051), - [anon_sym_delete] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4087), + [anon_sym_delete] = ACTIONS(4089), [anon_sym_continue] = ACTIONS(27), [aux_sym_preproc_ifdef_token1] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(760), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4041), + [sym_number_literal] = ACTIONS(4077), [anon_sym_extern] = ACTIONS(31), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), @@ -107637,25 +107345,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(39), [aux_sym_preproc_ifdef_token2] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [anon_sym_LPAREN2] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [anon_sym_LPAREN2] = ACTIONS(4095), [anon_sym_struct] = ACTIONS(49), [sym_auto] = ACTIONS(51), [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4097), [anon_sym_using] = ACTIONS(55), [sym_preproc_directive] = ACTIONS(57), [aux_sym_preproc_if_token1] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4099), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(7443), - [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_RBRACE] = ACTIONS(7428), + [anon_sym_STAR] = ACTIONS(4103), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), - [anon_sym_new] = ACTIONS(4069), + [anon_sym_new] = ACTIONS(4105), [anon_sym_goto] = ACTIONS(73), [sym_operator_name] = ACTIONS(75), [anon_sym_while] = ACTIONS(250), @@ -107665,248 +107373,277 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_LBRACK] = ACTIONS(4107), [anon_sym_class] = ACTIONS(89), [anon_sym_if] = ACTIONS(256), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(4045), - [sym_nullptr] = ACTIONS(4045), + [sym_false] = ACTIONS(4081), + [sym_nullptr] = ACTIONS(4081), [anon_sym_do] = ACTIONS(95), [anon_sym_template] = ACTIONS(97), [anon_sym_return] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4109), [anon_sym_SEMI] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_restrict] = ACTIONS(11), }, - [2521] = { - [anon_sym_LPAREN2] = ACTIONS(7445), - [anon_sym_struct] = ACTIONS(7447), - [sym_auto] = ACTIONS(7447), - [anon_sym_signed] = ACTIONS(7447), - [anon_sym_mutable] = ACTIONS(7447), - [anon_sym_long] = ACTIONS(7447), - [anon_sym_COLON_COLON] = ACTIONS(7445), - [anon_sym_using] = ACTIONS(7447), - [sym_preproc_directive] = ACTIONS(7447), - [aux_sym_preproc_if_token1] = ACTIONS(7447), - [anon_sym_AMP] = ACTIONS(7447), - [anon_sym_static] = ACTIONS(7447), - [anon_sym_volatile] = ACTIONS(7447), - [anon_sym_RBRACE] = ACTIONS(7445), - [anon_sym_typedef] = ACTIONS(7447), - [anon_sym_STAR] = ACTIONS(7445), - [anon_sym_union] = ACTIONS(7447), - [anon_sym_typename] = ACTIONS(7447), - [anon_sym_private] = ACTIONS(7447), - [anon_sym_explicit] = ACTIONS(7447), - [anon_sym_short] = ACTIONS(7447), - [sym_identifier] = ACTIONS(7447), - [sym_operator_name] = ACTIONS(7445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7447), - [anon_sym_register] = ACTIONS(7447), - [anon_sym__Atomic] = ACTIONS(7447), - [anon_sym_const] = ACTIONS(7447), - [anon_sym_extern] = ACTIONS(7447), - [anon_sym_virtual] = ACTIONS(7447), - [anon_sym_enum] = ACTIONS(7447), - [anon_sym_class] = ACTIONS(7447), - [anon_sym_constexpr] = ACTIONS(7447), - [sym_primitive_type] = ACTIONS(7447), - [anon_sym_unsigned] = ACTIONS(7447), - [anon_sym_public] = ACTIONS(7447), - [anon_sym_protected] = ACTIONS(7447), - [anon_sym_friend] = ACTIONS(7447), - [anon_sym_template] = ACTIONS(7447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7447), - [anon_sym_TILDE] = ACTIONS(7445), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7447), - [anon_sym_AMP_AMP] = ACTIONS(7445), - [anon_sym_inline] = ACTIONS(7447), - [anon_sym_restrict] = ACTIONS(7447), + [2504] = { + [anon_sym_LPAREN2] = ACTIONS(7430), + [anon_sym_struct] = ACTIONS(7432), + [sym_auto] = ACTIONS(7432), + [anon_sym_signed] = ACTIONS(7432), + [anon_sym_mutable] = ACTIONS(7432), + [anon_sym_long] = ACTIONS(7432), + [anon_sym_COLON_COLON] = ACTIONS(7430), + [anon_sym_using] = ACTIONS(7432), + [sym_preproc_directive] = ACTIONS(7432), + [aux_sym_preproc_if_token1] = ACTIONS(7432), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_static] = ACTIONS(7432), + [anon_sym_volatile] = ACTIONS(7432), + [anon_sym_RBRACE] = ACTIONS(7430), + [anon_sym_typedef] = ACTIONS(7432), + [anon_sym_STAR] = ACTIONS(7430), + [anon_sym_union] = ACTIONS(7432), + [anon_sym_typename] = ACTIONS(7432), + [anon_sym_private] = ACTIONS(7432), + [anon_sym_explicit] = ACTIONS(7432), + [anon_sym_short] = ACTIONS(7432), + [sym_identifier] = ACTIONS(7432), + [sym_operator_name] = ACTIONS(7430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7432), + [anon_sym_register] = ACTIONS(7432), + [anon_sym__Atomic] = ACTIONS(7432), + [anon_sym_const] = ACTIONS(7432), + [anon_sym_extern] = ACTIONS(7432), + [anon_sym_LBRACK] = ACTIONS(7432), + [anon_sym_virtual] = ACTIONS(7432), + [anon_sym_enum] = ACTIONS(7432), + [anon_sym_class] = ACTIONS(7432), + [anon_sym_constexpr] = ACTIONS(7432), + [sym_primitive_type] = ACTIONS(7432), + [anon_sym_unsigned] = ACTIONS(7432), + [anon_sym_public] = ACTIONS(7432), + [anon_sym_protected] = ACTIONS(7432), + [anon_sym_friend] = ACTIONS(7432), + [anon_sym_template] = ACTIONS(7432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7432), + [anon_sym_TILDE] = ACTIONS(7430), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7432), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_inline] = ACTIONS(7432), + [anon_sym_restrict] = ACTIONS(7432), }, - [2522] = { - [sym_virtual_specifier] = STATE(3484), - [aux_sym_function_declarator_repeat1] = STATE(3484), - [sym_trailing_return_type] = STATE(3484), - [sym_type_qualifier] = STATE(3484), - [anon_sym_LPAREN2] = ACTIONS(7449), - [sym_noexcept] = ACTIONS(7451), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(7449), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(7449), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(7449), - [anon_sym_COLON] = ACTIONS(7449), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(7453), - [anon_sym_EQ] = ACTIONS(7449), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(7449), + [2505] = { + [sym_virtual_specifier] = STATE(3458), + [aux_sym_function_declarator_repeat1] = STATE(3458), + [sym_type_qualifier] = STATE(3458), + [sym_trailing_return_type] = STATE(3458), + [anon_sym_LPAREN2] = ACTIONS(7434), + [sym_noexcept] = ACTIONS(7436), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(7434), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(7434), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(7434), + [anon_sym_COLON] = ACTIONS(7434), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(7438), + [anon_sym_EQ] = ACTIONS(7434), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(7434), }, - [2523] = { - [sym_bitfield_clause] = STATE(3451), - [aux_sym_field_declaration_repeat1] = STATE(3485), - [sym_initializer_list] = STATE(3451), - [anon_sym_COLON] = ACTIONS(5122), + [2506] = { + [sym_bitfield_clause] = STATE(3423), + [sym_initializer_list] = STATE(3423), + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(5213), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_EQ] = ACTIONS(7368), + [anon_sym_COMMA] = ACTIONS(5211), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(7385), + [anon_sym_SEMI] = ACTIONS(7366), }, - [2524] = { + [2507] = { + [anon_sym_LPAREN2] = ACTIONS(3854), + [sym_operator_name] = ACTIONS(3857), + [anon_sym_mutable] = ACTIONS(3859), + [anon_sym_register] = ACTIONS(3859), + [anon_sym__Atomic] = ACTIONS(3859), + [anon_sym_const] = ACTIONS(3859), + [anon_sym_extern] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(3859), + [anon_sym_volatile] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3857), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_explicit] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_inline] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3857), + [anon_sym_restrict] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3857), + [sym_identifier] = ACTIONS(3859), + }, + [2508] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(7455), + [anon_sym_SEMI] = ACTIONS(7440), }, - [2525] = { + [2509] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(7457), + [anon_sym_SEMI] = ACTIONS(7442), }, - [2526] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_private] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_virtual] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_public] = ACTIONS(962), - [anon_sym_protected] = ACTIONS(962), - [anon_sym_friend] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), + [2510] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_private] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_virtual] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_public] = ACTIONS(966), + [anon_sym_protected] = ACTIONS(966), + [anon_sym_friend] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_restrict] = ACTIONS(966), }, - [2527] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [2511] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -107948,7 +107685,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(7459), + [anon_sym_RBRACE] = ACTIONS(7444), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -107980,2037 +107717,2082 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2528] = { - [sym_function_field_declarator] = STATE(3489), - [sym_reference_field_declarator] = STATE(3489), - [sym_template_method] = STATE(3489), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(3489), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(3489), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(3489), - [sym_bitfield_clause] = STATE(3451), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(3451), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(7385), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(7387), - [sym_operator_name] = ACTIONS(7461), - [anon_sym_LBRACE] = ACTIONS(175), + [2512] = { + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3882), + [sym_auto] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3882), + [anon_sym_mutable] = ACTIONS(3882), + [anon_sym_long] = ACTIONS(3882), + [anon_sym_COLON_COLON] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3882), + [sym_preproc_directive] = ACTIONS(3882), + [aux_sym_preproc_if_token1] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3882), + [anon_sym_static] = ACTIONS(3882), + [anon_sym_volatile] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3884), + [anon_sym_typedef] = ACTIONS(3882), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3882), + [anon_sym_typename] = ACTIONS(3882), + [anon_sym_private] = ACTIONS(3882), + [anon_sym_explicit] = ACTIONS(3882), + [anon_sym_short] = ACTIONS(3882), + [sym_identifier] = ACTIONS(3882), + [sym_operator_name] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3882), + [anon_sym_register] = ACTIONS(3882), + [anon_sym__Atomic] = ACTIONS(3882), + [anon_sym_const] = ACTIONS(3882), + [anon_sym_extern] = ACTIONS(3882), + [anon_sym_LBRACK] = ACTIONS(3882), + [anon_sym_virtual] = ACTIONS(3882), + [anon_sym_enum] = ACTIONS(3882), + [anon_sym_class] = ACTIONS(3882), + [anon_sym_constexpr] = ACTIONS(3882), + [sym_primitive_type] = ACTIONS(3882), + [anon_sym_unsigned] = ACTIONS(3882), + [anon_sym_public] = ACTIONS(3882), + [anon_sym_protected] = ACTIONS(3882), + [anon_sym_friend] = ACTIONS(3882), + [anon_sym_template] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3882), + [anon_sym_restrict] = ACTIONS(3882), + }, + [2513] = { + [sym_storage_class_specifier] = STATE(2513), + [sym_type_qualifier] = STATE(2513), + [aux_sym__declaration_specifiers_repeat1] = STATE(2513), + [anon_sym_LPAREN2] = ACTIONS(1795), + [sym_operator_name] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1802), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_COLON] = ACTIONS(1797), + [anon_sym_explicit] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + }, + [2514] = { + [sym_storage_class_specifier] = STATE(2513), + [sym_type_qualifier] = STATE(2513), + [aux_sym__declaration_specifiers_repeat1] = STATE(2513), + [anon_sym_LPAREN2] = ACTIONS(3895), + [anon_sym_restrict] = ACTIONS(11), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(3895), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(3895), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_COLON] = ACTIONS(3897), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [sym_identifier] = ACTIONS(3897), + [anon_sym_EQ] = ACTIONS(3895), + [sym_operator_name] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_inline] = ACTIONS(63), }, - [2529] = { - [sym_compound_statement] = STATE(3491), - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(3451), - [aux_sym_field_declaration_repeat1] = STATE(3454), - [sym_initializer_list] = STATE(3451), - [sym_delete_method_clause] = STATE(3491), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(7385), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(7463), - [anon_sym_LBRACE] = ACTIONS(5128), + [2515] = { + [sym_compound_statement] = STATE(3463), + [sym_default_method_clause] = STATE(3463), + [sym_delete_method_clause] = STATE(3463), + [anon_sym_EQ] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), [sym_comment] = ACTIONS(3), }, - [2530] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2530), - [sym_storage_class_specifier] = STATE(2530), - [sym_type_qualifier] = STATE(2530), - [anon_sym_LPAREN2] = ACTIONS(1679), - [sym_operator_name] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1683), + [2516] = { + [anon_sym_LPAREN2] = ACTIONS(7446), + [anon_sym_DASH] = ACTIONS(7448), + [anon_sym_PLUS_PLUS] = ACTIONS(7446), + [anon_sym_LBRACE] = ACTIONS(7446), + [anon_sym_mutable] = ACTIONS(7448), + [anon_sym_DASH_DASH] = ACTIONS(7446), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7446), + [anon_sym_EQ] = ACTIONS(7448), + [anon_sym_COLON_COLON] = ACTIONS(7446), + [anon_sym_final] = ACTIONS(7448), + [anon_sym_EQ_EQ] = ACTIONS(7446), + [anon_sym_PIPE] = ACTIONS(7448), + [anon_sym_LT] = ACTIONS(7448), + [anon_sym_AMP] = ACTIONS(7448), + [anon_sym_static] = ACTIONS(7448), + [anon_sym_volatile] = ACTIONS(7448), + [anon_sym_PLUS] = ACTIONS(7448), + [anon_sym_GT_EQ] = ACTIONS(7446), + [anon_sym_STAR] = ACTIONS(7446), + [anon_sym_SLASH] = ACTIONS(7448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7446), + [anon_sym_COLON] = ACTIONS(7448), + [anon_sym_explicit] = ACTIONS(7448), + [sym_identifier] = ACTIONS(7448), + [anon_sym_RBRACE] = ACTIONS(7446), + [anon_sym_override] = ACTIONS(7448), + [sym_operator_name] = ACTIONS(7446), + [sym_noexcept] = ACTIONS(7448), + [anon_sym_CARET] = ACTIONS(7446), + [anon_sym_GT] = ACTIONS(7448), + [anon_sym_COMMA] = ACTIONS(7446), + [anon_sym_register] = ACTIONS(7448), + [anon_sym__Atomic] = ACTIONS(7448), + [anon_sym_const] = ACTIONS(7448), + [anon_sym_extern] = ACTIONS(7448), + [anon_sym_LBRACK] = ACTIONS(7446), + [anon_sym_PIPE_PIPE] = ACTIONS(7446), + [anon_sym_DOT] = ACTIONS(7448), + [anon_sym_LT_LT] = ACTIONS(7446), + [anon_sym_constexpr] = ACTIONS(7448), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7446), + [anon_sym_QMARK] = ACTIONS(7446), + [anon_sym_TILDE] = ACTIONS(7446), + [anon_sym_SEMI] = ACTIONS(7446), + [anon_sym_BANG_EQ] = ACTIONS(7446), + [anon_sym_LT_EQ] = ACTIONS(7446), + [anon_sym_AMP_AMP] = ACTIONS(7446), + [anon_sym_inline] = ACTIONS(7448), + [anon_sym_RPAREN] = ACTIONS(7446), + [anon_sym_restrict] = ACTIONS(7448), + [anon_sym_GT_GT] = ACTIONS(7446), + [anon_sym_DASH_GT] = ACTIONS(7446), + }, + [2517] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(7450), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [2518] = { + [sym_abstract_reference_declarator] = STATE(3465), + [aux_sym_type_definition_repeat1] = STATE(3464), + [sym_abstract_array_declarator] = STATE(3465), + [sym_parameter_list] = STATE(2523), + [sym_abstract_function_declarator] = STATE(3465), + [sym_abstract_pointer_declarator] = STATE(3465), + [sym_type_qualifier] = STATE(3464), + [sym__abstract_declarator] = STATE(3465), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(5256), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_COLON] = ACTIONS(1681), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym_EQ] = ACTIONS(1679), - [anon_sym_restrict] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym_identifier] = ACTIONS(1681), }, - [2531] = { - [anon_sym_LPAREN2] = ACTIONS(7465), - [anon_sym_DASH] = ACTIONS(7467), - [anon_sym_PLUS_PLUS] = ACTIONS(7465), + [2519] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2519), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(7452), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(7452), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(7452), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(7452), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_restrict] = ACTIONS(1783), + }, + [2520] = { + [sym_abstract_reference_declarator] = STATE(3466), + [sym_abstract_array_declarator] = STATE(3466), + [sym_abstract_pointer_declarator] = STATE(3466), + [sym_parameter_list] = STATE(2523), + [sym_abstract_function_declarator] = STATE(3466), + [sym__abstract_declarator] = STATE(3466), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(5256), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(2835), + }, + [2521] = { + [sym_abstract_reference_declarator] = STATE(3468), + [aux_sym_type_definition_repeat1] = STATE(3467), + [sym_abstract_array_declarator] = STATE(3468), + [sym_parameter_list] = STATE(2523), + [sym_abstract_function_declarator] = STATE(3468), + [sym_abstract_pointer_declarator] = STATE(3468), + [sym_type_qualifier] = STATE(3467), + [sym__abstract_declarator] = STATE(3468), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(5256), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [2522] = { + [sym_abstract_reference_declarator] = STATE(3465), + [aux_sym_type_definition_repeat1] = STATE(3469), + [sym_abstract_array_declarator] = STATE(3465), + [sym_parameter_list] = STATE(2523), + [sym_abstract_function_declarator] = STATE(3465), + [sym_abstract_pointer_declarator] = STATE(3465), + [sym_type_qualifier] = STATE(3469), + [sym__abstract_declarator] = STATE(3465), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(5256), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [2523] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3471), + [sym_type_qualifier] = STATE(3471), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(7455), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7457), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [2524] = { + [sym_parameter_list] = STATE(3472), + [anon_sym_LPAREN2] = ACTIONS(614), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(2839), + }, + [2525] = { + [anon_sym_DASH] = ACTIONS(7459), + [sym_raw_string_literal] = ACTIONS(7461), + [sym_true] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [sym_null] = ACTIONS(7459), + [anon_sym_break] = ACTIONS(7459), + [anon_sym_BANG] = ACTIONS(7461), + [anon_sym_sizeof] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_typedef] = ACTIONS(7459), + [anon_sym_switch] = ACTIONS(7459), + [anon_sym_explicit] = ACTIONS(7459), + [sym_identifier] = ACTIONS(7459), + [anon_sym_delete] = ACTIONS(7459), + [anon_sym_continue] = ACTIONS(7459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [sym_number_literal] = ACTIONS(7461), + [anon_sym_extern] = ACTIONS(7459), + [anon_sym_enum] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7461), + [anon_sym_namespace] = ACTIONS(7459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7459), + [anon_sym_SQUOTE] = ACTIONS(7461), + [anon_sym_LBRACE] = ACTIONS(7461), + [anon_sym_DASH_DASH] = ACTIONS(7461), + [anon_sym_LPAREN2] = ACTIONS(7461), + [anon_sym_struct] = ACTIONS(7459), + [sym_auto] = ACTIONS(7459), + [anon_sym_signed] = ACTIONS(7459), + [anon_sym_long] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7461), + [anon_sym_using] = ACTIONS(7459), + [sym_preproc_directive] = ACTIONS(7459), + [aux_sym_preproc_if_token1] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_static] = ACTIONS(7459), + [anon_sym_RBRACE] = ACTIONS(7461), + [anon_sym_STAR] = ACTIONS(7461), + [anon_sym_union] = ACTIONS(7459), + [anon_sym_typename] = ACTIONS(7459), + [anon_sym_short] = ACTIONS(7459), + [anon_sym_new] = ACTIONS(7459), + [anon_sym_goto] = ACTIONS(7459), + [sym_operator_name] = ACTIONS(7461), + [anon_sym_while] = ACTIONS(7459), + [anon_sym_try] = ACTIONS(7459), + [anon_sym_for] = ACTIONS(7459), + [aux_sym_preproc_include_token1] = ACTIONS(7459), + [anon_sym_register] = ACTIONS(7459), + [anon_sym_DQUOTE] = ACTIONS(7461), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_LBRACK] = ACTIONS(7459), + [anon_sym_class] = ACTIONS(7459), + [anon_sym_if] = ACTIONS(7459), + [sym_primitive_type] = ACTIONS(7459), + [sym_false] = ACTIONS(7459), + [sym_nullptr] = ACTIONS(7459), + [anon_sym_do] = ACTIONS(7459), + [anon_sym_template] = ACTIONS(7459), + [anon_sym_return] = ACTIONS(7459), + [anon_sym_TILDE] = ACTIONS(7461), + [anon_sym_SEMI] = ACTIONS(7461), + [ts_builtin_sym_end] = ACTIONS(7461), + [aux_sym_preproc_def_token1] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_inline] = ACTIONS(7459), + [anon_sym_PLUS_PLUS] = ACTIONS(7461), + [anon_sym_restrict] = ACTIONS(7459), + }, + [2526] = { + [anon_sym_DASH] = ACTIONS(7463), + [sym_raw_string_literal] = ACTIONS(7465), + [sym_true] = ACTIONS(7463), + [anon_sym_mutable] = ACTIONS(7463), + [sym_null] = ACTIONS(7463), + [anon_sym_break] = ACTIONS(7463), + [anon_sym_BANG] = ACTIONS(7465), + [anon_sym_sizeof] = ACTIONS(7463), + [anon_sym_volatile] = ACTIONS(7463), + [anon_sym_PLUS] = ACTIONS(7463), + [anon_sym_typedef] = ACTIONS(7463), + [anon_sym_switch] = ACTIONS(7463), + [anon_sym_explicit] = ACTIONS(7463), + [sym_identifier] = ACTIONS(7463), + [anon_sym_delete] = ACTIONS(7463), + [anon_sym_continue] = ACTIONS(7463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7463), + [anon_sym__Atomic] = ACTIONS(7463), + [sym_number_literal] = ACTIONS(7465), + [anon_sym_extern] = ACTIONS(7463), + [anon_sym_enum] = ACTIONS(7463), + [anon_sym_constexpr] = ACTIONS(7463), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7465), + [anon_sym_namespace] = ACTIONS(7463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7463), + [anon_sym_SQUOTE] = ACTIONS(7465), [anon_sym_LBRACE] = ACTIONS(7465), - [anon_sym_mutable] = ACTIONS(7467), [anon_sym_DASH_DASH] = ACTIONS(7465), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7465), - [anon_sym_EQ] = ACTIONS(7467), + [anon_sym_LPAREN2] = ACTIONS(7465), + [anon_sym_struct] = ACTIONS(7463), + [sym_auto] = ACTIONS(7463), + [anon_sym_signed] = ACTIONS(7463), + [anon_sym_long] = ACTIONS(7463), [anon_sym_COLON_COLON] = ACTIONS(7465), - [anon_sym_final] = ACTIONS(7467), - [anon_sym_EQ_EQ] = ACTIONS(7465), - [anon_sym_PIPE] = ACTIONS(7467), - [anon_sym_LT] = ACTIONS(7467), - [anon_sym_AMP] = ACTIONS(7467), - [anon_sym_static] = ACTIONS(7467), - [anon_sym_volatile] = ACTIONS(7467), - [anon_sym_PLUS] = ACTIONS(7467), - [anon_sym_GT_EQ] = ACTIONS(7465), - [anon_sym_STAR] = ACTIONS(7465), - [anon_sym_SLASH] = ACTIONS(7467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7465), - [anon_sym_COLON] = ACTIONS(7467), - [anon_sym_explicit] = ACTIONS(7467), - [sym_identifier] = ACTIONS(7467), + [anon_sym_using] = ACTIONS(7463), + [sym_preproc_directive] = ACTIONS(7463), + [aux_sym_preproc_if_token1] = ACTIONS(7463), + [anon_sym_AMP] = ACTIONS(7463), + [anon_sym_static] = ACTIONS(7463), [anon_sym_RBRACE] = ACTIONS(7465), - [anon_sym_override] = ACTIONS(7467), + [anon_sym_STAR] = ACTIONS(7465), + [anon_sym_union] = ACTIONS(7463), + [anon_sym_typename] = ACTIONS(7463), + [anon_sym_short] = ACTIONS(7463), + [anon_sym_new] = ACTIONS(7463), + [anon_sym_goto] = ACTIONS(7463), [sym_operator_name] = ACTIONS(7465), - [sym_noexcept] = ACTIONS(7467), - [anon_sym_CARET] = ACTIONS(7465), - [anon_sym_GT] = ACTIONS(7467), - [anon_sym_COMMA] = ACTIONS(7465), - [anon_sym_register] = ACTIONS(7467), - [anon_sym__Atomic] = ACTIONS(7467), - [anon_sym_const] = ACTIONS(7467), - [anon_sym_extern] = ACTIONS(7467), - [anon_sym_LBRACK] = ACTIONS(7465), - [anon_sym_PIPE_PIPE] = ACTIONS(7465), - [anon_sym_DOT] = ACTIONS(7467), - [anon_sym_LT_LT] = ACTIONS(7465), - [anon_sym_constexpr] = ACTIONS(7467), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7465), - [anon_sym_QMARK] = ACTIONS(7465), + [anon_sym_while] = ACTIONS(7463), + [anon_sym_try] = ACTIONS(7463), + [anon_sym_for] = ACTIONS(7463), + [aux_sym_preproc_include_token1] = ACTIONS(7463), + [anon_sym_register] = ACTIONS(7463), + [anon_sym_DQUOTE] = ACTIONS(7465), + [anon_sym_const] = ACTIONS(7463), + [anon_sym_LBRACK] = ACTIONS(7463), + [anon_sym_class] = ACTIONS(7463), + [anon_sym_if] = ACTIONS(7463), + [sym_primitive_type] = ACTIONS(7463), + [sym_false] = ACTIONS(7463), + [sym_nullptr] = ACTIONS(7463), + [anon_sym_do] = ACTIONS(7463), + [anon_sym_template] = ACTIONS(7463), + [anon_sym_return] = ACTIONS(7463), [anon_sym_TILDE] = ACTIONS(7465), [anon_sym_SEMI] = ACTIONS(7465), - [anon_sym_BANG_EQ] = ACTIONS(7465), - [anon_sym_LT_EQ] = ACTIONS(7465), + [ts_builtin_sym_end] = ACTIONS(7465), + [aux_sym_preproc_def_token1] = ACTIONS(7463), [anon_sym_AMP_AMP] = ACTIONS(7465), - [anon_sym_inline] = ACTIONS(7467), - [anon_sym_RPAREN] = ACTIONS(7465), - [anon_sym_restrict] = ACTIONS(7467), - [anon_sym_GT_GT] = ACTIONS(7465), - [anon_sym_DASH_GT] = ACTIONS(7465), + [anon_sym_inline] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(7465), + [anon_sym_restrict] = ACTIONS(7463), + }, + [2527] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(4979), + [anon_sym_STAR_EQ] = ACTIONS(4979), + [anon_sym_LT_LT_EQ] = ACTIONS(4979), + [anon_sym_PERCENT_EQ] = ACTIONS(4979), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_CARET_EQ] = ACTIONS(4979), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_RBRACE] = ACTIONS(4979), + [anon_sym_SLASH_EQ] = ACTIONS(4979), + [anon_sym_PLUS_EQ] = ACTIONS(4979), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_PIPE_EQ] = ACTIONS(4979), + [anon_sym_GT_GT_EQ] = ACTIONS(4979), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4977), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_DASH_EQ] = ACTIONS(4979), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_AMP_EQ] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_EQ] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2528] = { + [anon_sym_LPAREN2] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_STAR_EQ] = ACTIONS(4981), + [anon_sym_LT_LT_EQ] = ACTIONS(4981), + [anon_sym_PERCENT_EQ] = ACTIONS(4981), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_CARET_EQ] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4981), + [anon_sym_COLON] = ACTIONS(4981), + [anon_sym_SLASH_EQ] = ACTIONS(4981), + [anon_sym_PLUS_EQ] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_PIPE_EQ] = ACTIONS(4981), + [anon_sym_GT_GT_EQ] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4983), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4981), + [anon_sym_DASH_EQ] = ACTIONS(4981), + [anon_sym_SEMI] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_AMP_EQ] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4983), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4981), + }, + [2529] = { + [sym_field_declaration_list] = STATE(3473), + [sym_base_class_clause] = STATE(3474), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), + }, + [2530] = { + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_DASH_GT] = ACTIONS(2853), + [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_STAR_EQ] = ACTIONS(2853), + [anon_sym_LT_LT_EQ] = ACTIONS(2853), + [anon_sym_PERCENT_EQ] = ACTIONS(2853), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2853), + [anon_sym_EQ_EQ] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_CARET_EQ] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_COLON] = ACTIONS(2853), + [anon_sym_SLASH_EQ] = ACTIONS(2853), + [anon_sym_PLUS_EQ] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_PIPE_EQ] = ACTIONS(2853), + [anon_sym_GT_GT_EQ] = ACTIONS(2853), + [anon_sym_COMMA] = ACTIONS(2853), + [anon_sym_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_DOT] = ACTIONS(2853), + [anon_sym_LT_LT] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_PERCENT] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2853), + [anon_sym_DASH_EQ] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(2853), + [anon_sym_AMP_EQ] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2853), + [anon_sym_EQ] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_GT_GT] = ACTIONS(2855), + }, + [2531] = { + [sym_field_declaration_list] = STATE(3473), + [anon_sym_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), }, [2532] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(7469), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_DASH_GT] = ACTIONS(2869), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_STAR_EQ] = ACTIONS(2869), + [anon_sym_LT_LT_EQ] = ACTIONS(2869), + [anon_sym_PERCENT_EQ] = ACTIONS(2869), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_CARET_EQ] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_COLON] = ACTIONS(2869), + [anon_sym_SLASH_EQ] = ACTIONS(2869), + [anon_sym_PLUS_EQ] = ACTIONS(2869), + [anon_sym_CARET] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_PIPE_EQ] = ACTIONS(2869), + [anon_sym_GT_GT_EQ] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_PERCENT] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2869), + [anon_sym_DASH_EQ] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), + [anon_sym_AMP_EQ] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_LT_EQ] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_GT_GT] = ACTIONS(2871), }, [2533] = { - [sym_parameter_list] = STATE(2535), - [sym_abstract_array_declarator] = STATE(3492), - [sym_abstract_pointer_declarator] = STATE(3492), - [sym_abstract_reference_declarator] = STATE(3492), - [sym_abstract_function_declarator] = STATE(3492), - [sym__abstract_declarator] = STATE(3492), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SEMI] = ACTIONS(2830), + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(1448), + [sym_preproc_function_def] = STATE(1448), + [sym__declarator] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), + [sym_array_declarator] = STATE(614), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1448), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(1448), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(1448), + [sym_preproc_if_in_field_declaration_list] = STATE(1448), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1448), + [sym_type_definition] = STATE(1448), + [sym_using_declaration] = STATE(1448), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(1448), + [sym_inline_method_definition] = STATE(1448), + [sym_constructor_or_destructor_definition] = STATE(1448), + [sym_access_specifier] = STATE(1448), + [sym_reference_declarator] = STATE(614), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(1448), + [sym_alias_declaration] = STATE(1448), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(1448), + [sym_constructor_or_destructor_declaration] = STATE(1448), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(7467), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_restrict] = ACTIONS(11), }, [2534] = { - [sym_abstract_array_declarator] = STATE(3494), - [sym_parameter_list] = STATE(2535), - [sym_abstract_reference_declarator] = STATE(3494), - [sym_abstract_function_declarator] = STATE(3494), - [aux_sym_type_definition_repeat1] = STATE(3493), - [sym_abstract_pointer_declarator] = STATE(3494), - [sym_type_qualifier] = STATE(3493), - [sym__abstract_declarator] = STATE(3494), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(5249), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [sym_field_declaration_list] = STATE(3476), + [sym_base_class_clause] = STATE(3477), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, [2535] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(3496), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3496), - [anon_sym_LPAREN2] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(7471), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7473), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_DASH_GT] = ACTIONS(2919), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_STAR_EQ] = ACTIONS(2919), + [anon_sym_LT_LT_EQ] = ACTIONS(2919), + [anon_sym_PERCENT_EQ] = ACTIONS(2919), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2919), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_CARET_EQ] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_COLON] = ACTIONS(2919), + [anon_sym_SLASH_EQ] = ACTIONS(2919), + [anon_sym_PLUS_EQ] = ACTIONS(2919), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_PIPE_EQ] = ACTIONS(2919), + [anon_sym_GT_GT_EQ] = ACTIONS(2919), + [anon_sym_COMMA] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_PERCENT] = ACTIONS(2921), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2919), + [anon_sym_DASH_EQ] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_AMP_EQ] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_GT_GT] = ACTIONS(2921), }, [2536] = { - [sym_abstract_array_declarator] = STATE(3498), - [sym_parameter_list] = STATE(2535), - [sym_abstract_reference_declarator] = STATE(3498), - [sym_abstract_function_declarator] = STATE(3498), - [aux_sym_type_definition_repeat1] = STATE(3497), - [sym_abstract_pointer_declarator] = STATE(3498), - [sym_type_qualifier] = STATE(3497), - [sym__abstract_declarator] = STATE(3498), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(5249), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [sym_field_declaration_list] = STATE(3476), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, [2537] = { - [sym_parameter_list] = STATE(3499), - [anon_sym_LPAREN2] = ACTIONS(587), + [sym_field_declaration_list] = STATE(3478), + [sym_base_class_clause] = STATE(3479), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2838), }, [2538] = { - [anon_sym_DASH] = ACTIONS(7475), - [sym_raw_string_literal] = ACTIONS(7477), - [sym_true] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [sym_null] = ACTIONS(7475), - [anon_sym_break] = ACTIONS(7475), - [anon_sym_BANG] = ACTIONS(7477), - [anon_sym_sizeof] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_PLUS] = ACTIONS(7475), - [anon_sym_typedef] = ACTIONS(7475), - [anon_sym_switch] = ACTIONS(7475), - [anon_sym_explicit] = ACTIONS(7475), - [sym_identifier] = ACTIONS(7475), - [anon_sym_delete] = ACTIONS(7475), - [anon_sym_continue] = ACTIONS(7475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [sym_number_literal] = ACTIONS(7477), - [anon_sym_extern] = ACTIONS(7475), - [anon_sym_enum] = ACTIONS(7475), - [anon_sym_constexpr] = ACTIONS(7475), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7477), - [anon_sym_namespace] = ACTIONS(7475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7475), - [anon_sym_SQUOTE] = ACTIONS(7477), - [anon_sym_LBRACE] = ACTIONS(7477), - [anon_sym_DASH_DASH] = ACTIONS(7477), - [anon_sym_LPAREN2] = ACTIONS(7477), - [anon_sym_struct] = ACTIONS(7475), - [sym_auto] = ACTIONS(7475), - [anon_sym_signed] = ACTIONS(7475), - [anon_sym_long] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7477), - [anon_sym_using] = ACTIONS(7475), - [sym_preproc_directive] = ACTIONS(7475), - [aux_sym_preproc_if_token1] = ACTIONS(7475), - [anon_sym_AMP] = ACTIONS(7475), - [anon_sym_static] = ACTIONS(7475), - [anon_sym_RBRACE] = ACTIONS(7477), - [anon_sym_STAR] = ACTIONS(7477), - [anon_sym_union] = ACTIONS(7475), - [anon_sym_typename] = ACTIONS(7475), - [anon_sym_short] = ACTIONS(7475), - [anon_sym_new] = ACTIONS(7475), - [anon_sym_goto] = ACTIONS(7475), - [sym_operator_name] = ACTIONS(7477), - [anon_sym_while] = ACTIONS(7475), - [anon_sym_try] = ACTIONS(7475), - [anon_sym_for] = ACTIONS(7475), - [aux_sym_preproc_include_token1] = ACTIONS(7475), - [anon_sym_register] = ACTIONS(7475), - [anon_sym_DQUOTE] = ACTIONS(7477), - [anon_sym_const] = ACTIONS(7475), - [anon_sym_LBRACK] = ACTIONS(7475), - [anon_sym_class] = ACTIONS(7475), - [anon_sym_if] = ACTIONS(7475), - [sym_primitive_type] = ACTIONS(7475), - [sym_false] = ACTIONS(7475), - [sym_nullptr] = ACTIONS(7475), - [anon_sym_do] = ACTIONS(7475), - [anon_sym_template] = ACTIONS(7475), - [anon_sym_return] = ACTIONS(7475), - [anon_sym_TILDE] = ACTIONS(7477), - [anon_sym_SEMI] = ACTIONS(7477), - [ts_builtin_sym_end] = ACTIONS(7477), - [aux_sym_preproc_def_token1] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7477), - [anon_sym_inline] = ACTIONS(7475), - [anon_sym_PLUS_PLUS] = ACTIONS(7477), - [anon_sym_restrict] = ACTIONS(7475), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_DASH_GT] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_LT_LT_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_CARET_EQ] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_CARET] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_PIPE_EQ] = ACTIONS(3109), + [anon_sym_GT_GT_EQ] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT_LT] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3109), + [anon_sym_AMP_EQ] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(3111), }, [2539] = { - [sym_abstract_array_declarator] = STATE(3498), - [sym_parameter_list] = STATE(2535), - [sym_abstract_reference_declarator] = STATE(3498), - [sym_abstract_function_declarator] = STATE(3498), - [aux_sym_type_definition_repeat1] = STATE(3500), - [sym_abstract_pointer_declarator] = STATE(3498), - [sym_type_qualifier] = STATE(3500), - [sym__abstract_declarator] = STATE(3498), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(5249), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [sym_field_declaration_list] = STATE(3478), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, [2540] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2540), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(7479), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(7479), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(7479), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(7479), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_restrict] = ACTIONS(2082), + [sym_field_declaration_list] = STATE(3480), + [sym_base_class_clause] = STATE(3481), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), }, [2541] = { - [anon_sym_DASH] = ACTIONS(7482), - [sym_raw_string_literal] = ACTIONS(7484), - [sym_true] = ACTIONS(7482), - [anon_sym_mutable] = ACTIONS(7482), - [sym_null] = ACTIONS(7482), - [anon_sym_break] = ACTIONS(7482), - [anon_sym_BANG] = ACTIONS(7484), - [anon_sym_sizeof] = ACTIONS(7482), - [anon_sym_volatile] = ACTIONS(7482), - [anon_sym_PLUS] = ACTIONS(7482), - [anon_sym_typedef] = ACTIONS(7482), - [anon_sym_switch] = ACTIONS(7482), - [anon_sym_explicit] = ACTIONS(7482), - [sym_identifier] = ACTIONS(7482), - [anon_sym_delete] = ACTIONS(7482), - [anon_sym_continue] = ACTIONS(7482), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7482), - [anon_sym__Atomic] = ACTIONS(7482), - [sym_number_literal] = ACTIONS(7484), - [anon_sym_extern] = ACTIONS(7482), - [anon_sym_enum] = ACTIONS(7482), - [anon_sym_constexpr] = ACTIONS(7482), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7482), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7484), - [anon_sym_namespace] = ACTIONS(7482), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7482), - [anon_sym_SQUOTE] = ACTIONS(7484), - [anon_sym_LBRACE] = ACTIONS(7484), - [anon_sym_DASH_DASH] = ACTIONS(7484), - [anon_sym_LPAREN2] = ACTIONS(7484), - [anon_sym_struct] = ACTIONS(7482), - [sym_auto] = ACTIONS(7482), - [anon_sym_signed] = ACTIONS(7482), - [anon_sym_long] = ACTIONS(7482), - [anon_sym_COLON_COLON] = ACTIONS(7484), - [anon_sym_using] = ACTIONS(7482), - [sym_preproc_directive] = ACTIONS(7482), - [aux_sym_preproc_if_token1] = ACTIONS(7482), - [anon_sym_AMP] = ACTIONS(7482), - [anon_sym_static] = ACTIONS(7482), - [anon_sym_RBRACE] = ACTIONS(7484), - [anon_sym_STAR] = ACTIONS(7484), - [anon_sym_union] = ACTIONS(7482), - [anon_sym_typename] = ACTIONS(7482), - [anon_sym_short] = ACTIONS(7482), - [anon_sym_new] = ACTIONS(7482), - [anon_sym_goto] = ACTIONS(7482), - [sym_operator_name] = ACTIONS(7484), - [anon_sym_while] = ACTIONS(7482), - [anon_sym_try] = ACTIONS(7482), - [anon_sym_for] = ACTIONS(7482), - [aux_sym_preproc_include_token1] = ACTIONS(7482), - [anon_sym_register] = ACTIONS(7482), - [anon_sym_DQUOTE] = ACTIONS(7484), - [anon_sym_const] = ACTIONS(7482), - [anon_sym_LBRACK] = ACTIONS(7482), - [anon_sym_class] = ACTIONS(7482), - [anon_sym_if] = ACTIONS(7482), - [sym_primitive_type] = ACTIONS(7482), - [sym_false] = ACTIONS(7482), - [sym_nullptr] = ACTIONS(7482), - [anon_sym_do] = ACTIONS(7482), - [anon_sym_template] = ACTIONS(7482), - [anon_sym_return] = ACTIONS(7482), - [anon_sym_TILDE] = ACTIONS(7484), - [anon_sym_SEMI] = ACTIONS(7484), - [ts_builtin_sym_end] = ACTIONS(7484), - [aux_sym_preproc_def_token1] = ACTIONS(7482), - [anon_sym_AMP_AMP] = ACTIONS(7484), - [anon_sym_inline] = ACTIONS(7482), - [anon_sym_PLUS_PLUS] = ACTIONS(7484), - [anon_sym_restrict] = ACTIONS(7482), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_DASH_GT] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_LT_LT_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3113), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3115), + [anon_sym_CARET_EQ] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_SLASH] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_CARET] = ACTIONS(3115), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_PIPE_EQ] = ACTIONS(3113), + [anon_sym_GT_GT_EQ] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT_LT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_AMP_EQ] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_GT_GT] = ACTIONS(3115), }, [2542] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_STAR_EQ] = ACTIONS(4983), - [anon_sym_LT_LT_EQ] = ACTIONS(4983), - [anon_sym_PERCENT_EQ] = ACTIONS(4983), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_CARET_EQ] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4983), - [anon_sym_SLASH_EQ] = ACTIONS(4983), - [anon_sym_PLUS_EQ] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_PIPE_EQ] = ACTIONS(4983), - [anon_sym_GT_GT_EQ] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4981), + [sym_field_declaration_list] = STATE(3480), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_DASH_EQ] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_AMP_EQ] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(2959), }, [2543] = { - [anon_sym_LPAREN2] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_STAR_EQ] = ACTIONS(4985), - [anon_sym_LT_LT_EQ] = ACTIONS(4985), - [anon_sym_PERCENT_EQ] = ACTIONS(4985), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_CARET_EQ] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_COLON] = ACTIONS(4985), - [anon_sym_SLASH_EQ] = ACTIONS(4985), - [anon_sym_PLUS_EQ] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_PIPE_EQ] = ACTIONS(4985), - [anon_sym_GT_GT_EQ] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4987), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4985), - [anon_sym_DASH_EQ] = ACTIONS(4985), - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_AMP_EQ] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_GT_GT] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4985), + [anon_sym_LPAREN2] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_DASH_GT] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_final] = ACTIONS(2171), + [anon_sym_STAR_EQ] = ACTIONS(2171), + [anon_sym_LT_LT_EQ] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_CARET_EQ] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(2171), + [anon_sym_PLUS_EQ] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE_EQ] = ACTIONS(2171), + [anon_sym_GT_GT_EQ] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_DASH_EQ] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_AMP_EQ] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_EQ] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2173), }, [2544] = { - [sym_field_declaration_list] = STATE(3501), - [sym_base_class_clause] = STATE(3502), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2963), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7469), }, [2545] = { - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_DASH_GT] = ACTIONS(2851), - [anon_sym_RPAREN] = ACTIONS(2851), - [anon_sym_STAR_EQ] = ACTIONS(2851), - [anon_sym_LT_LT_EQ] = ACTIONS(2851), - [anon_sym_PERCENT_EQ] = ACTIONS(2851), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2851), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_CARET_EQ] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_COLON] = ACTIONS(2851), - [anon_sym_SLASH_EQ] = ACTIONS(2851), - [anon_sym_PLUS_EQ] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2853), - [anon_sym_GT] = ACTIONS(2853), - [anon_sym_PIPE_EQ] = ACTIONS(2851), - [anon_sym_GT_GT_EQ] = ACTIONS(2851), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_LT_LT] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_PERCENT] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_DASH_EQ] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_AMP_EQ] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_EQ] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_GT_GT] = ACTIONS(2853), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_DASH_GT] = ACTIONS(2581), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_STAR_EQ] = ACTIONS(2581), + [anon_sym_LT_LT_EQ] = ACTIONS(2581), + [anon_sym_PERCENT_EQ] = ACTIONS(2581), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2581), + [anon_sym_EQ_EQ] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_CARET_EQ] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_COLON] = ACTIONS(2581), + [anon_sym_SLASH_EQ] = ACTIONS(2581), + [anon_sym_PLUS_EQ] = ACTIONS(2581), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_PIPE_EQ] = ACTIONS(2581), + [anon_sym_GT_GT_EQ] = ACTIONS(2581), + [anon_sym_COMMA] = ACTIONS(2581), + [anon_sym_PIPE_PIPE] = ACTIONS(2581), + [anon_sym_DOT] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_PERCENT] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2581), + [anon_sym_DASH_EQ] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_BANG_EQ] = ACTIONS(2581), + [anon_sym_AMP_EQ] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_GT_GT] = ACTIONS(2583), }, [2546] = { - [sym_field_declaration_list] = STATE(3501), - [anon_sym_LBRACE] = ACTIONS(2963), + [aux_sym_enumerator_list_repeat1] = STATE(3484), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(7471), + [anon_sym_RBRACE] = ACTIONS(7469), }, [2547] = { - [anon_sym_LPAREN2] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_DASH_GT] = ACTIONS(2867), - [anon_sym_RPAREN] = ACTIONS(2867), - [anon_sym_STAR_EQ] = ACTIONS(2867), - [anon_sym_LT_LT_EQ] = ACTIONS(2867), - [anon_sym_PERCENT_EQ] = ACTIONS(2867), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_CARET_EQ] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_COLON] = ACTIONS(2867), - [anon_sym_SLASH_EQ] = ACTIONS(2867), - [anon_sym_PLUS_EQ] = ACTIONS(2867), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_PIPE_EQ] = ACTIONS(2867), - [anon_sym_GT_GT_EQ] = ACTIONS(2867), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_PERCENT] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_DASH_EQ] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_AMP_EQ] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2587), + [anon_sym_RPAREN] = ACTIONS(2587), + [anon_sym_STAR_EQ] = ACTIONS(2587), + [anon_sym_LT_LT_EQ] = ACTIONS(2587), + [anon_sym_PERCENT_EQ] = ACTIONS(2587), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2587), + [anon_sym_EQ_EQ] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_CARET_EQ] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_COLON] = ACTIONS(2587), + [anon_sym_SLASH_EQ] = ACTIONS(2587), + [anon_sym_PLUS_EQ] = ACTIONS(2587), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE_EQ] = ACTIONS(2587), + [anon_sym_GT_GT_EQ] = ACTIONS(2587), + [anon_sym_COMMA] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_DOT] = ACTIONS(2587), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_DASH_EQ] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2587), + [anon_sym_AMP_EQ] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_LT_EQ] = ACTIONS(2587), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_GT_GT] = ACTIONS(2589), }, [2548] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(1472), - [sym_preproc_function_def] = STATE(1472), - [sym_alias_declaration] = STATE(1472), - [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), - [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(1472), - [sym_preproc_if_in_field_declaration_list] = STATE(1472), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1472), - [sym_type_definition] = STATE(1472), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(1472), - [sym__field_declaration_list_item] = STATE(1472), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1472), - [sym_inline_method_definition] = STATE(1472), - [sym_friend_declaration] = STATE(1472), - [sym_access_specifier] = STATE(1472), - [sym_using_declaration] = STATE(1472), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(1472), - [sym_constructor_or_destructor_definition] = STATE(1472), - [sym_constructor_or_destructor_declaration] = STATE(1472), - [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(7486), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [sym_field_declaration_list] = STATE(3485), + [sym_base_class_clause] = STATE(3486), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_restrict] = ACTIONS(11), }, [2549] = { - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_STAR_EQ] = ACTIONS(2917), - [anon_sym_LT_LT_EQ] = ACTIONS(2917), - [anon_sym_PERCENT_EQ] = ACTIONS(2917), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_CARET_EQ] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_SLASH_EQ] = ACTIONS(2917), - [anon_sym_PLUS_EQ] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_PIPE_EQ] = ACTIONS(2917), - [anon_sym_GT_GT_EQ] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_DASH_EQ] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_AMP_EQ] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2919), + [anon_sym_LPAREN2] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_DASH_GT] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_LT_LT_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_CARET_EQ] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_COLON] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_PIPE_EQ] = ACTIONS(3424), + [anon_sym_GT_GT_EQ] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_PERCENT] = ACTIONS(3426), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_AMP_EQ] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3426), }, [2550] = { - [sym_field_declaration_list] = STATE(3504), - [anon_sym_LBRACE] = ACTIONS(2963), + [sym_field_declaration_list] = STATE(3485), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, [2551] = { - [sym_field_declaration_list] = STATE(3504), - [sym_base_class_clause] = STATE(3505), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2963), + [sym_field_declaration_list] = STATE(3487), + [sym_base_class_clause] = STATE(3488), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, [2552] = { - [sym_field_declaration_list] = STATE(3506), - [sym_base_class_clause] = STATE(3507), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2963), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_DASH_GT] = ACTIONS(3428), + [anon_sym_RPAREN] = ACTIONS(3428), + [anon_sym_STAR_EQ] = ACTIONS(3428), + [anon_sym_LT_LT_EQ] = ACTIONS(3428), + [anon_sym_PERCENT_EQ] = ACTIONS(3428), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_CARET_EQ] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_COLON] = ACTIONS(3428), + [anon_sym_SLASH_EQ] = ACTIONS(3428), + [anon_sym_PLUS_EQ] = ACTIONS(3428), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_PIPE_EQ] = ACTIONS(3428), + [anon_sym_GT_GT_EQ] = ACTIONS(3428), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_LT_LT] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3430), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_DASH_EQ] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_AMP_EQ] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_EQ] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(3430), }, [2553] = { - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_DASH_GT] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_LT_LT_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3107), - [anon_sym_EQ_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_CARET_EQ] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_COLON] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_PIPE_EQ] = ACTIONS(3107), - [anon_sym_GT_GT_EQ] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_PIPE_PIPE] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_PERCENT] = ACTIONS(3109), + [sym_field_declaration_list] = STATE(3487), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3107), - [anon_sym_AMP_EQ] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3109), }, [2554] = { - [sym_field_declaration_list] = STATE(3506), - [anon_sym_LBRACE] = ACTIONS(2963), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(7473), }, [2555] = { - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_DASH_GT] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_LT_LT_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_CARET_EQ] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_PIPE_EQ] = ACTIONS(3111), - [anon_sym_GT_GT_EQ] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3111), - [anon_sym_LT_LT] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_PERCENT] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3111), - [anon_sym_AMP_EQ] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_EQ] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_RPAREN] = ACTIONS(5348), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_PERCENT_EQ] = ACTIONS(5348), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_CARET_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_PIPE_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5348), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5350), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_SEMI] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), }, [2556] = { - [sym_field_declaration_list] = STATE(3508), - [anon_sym_LBRACE] = ACTIONS(2963), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(3490), + [sym_initializer_list] = STATE(3490), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(5348), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_PERCENT_EQ] = ACTIONS(5348), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_CARET_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_PIPE_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5348), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5350), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_SEMI] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), }, [2557] = { - [sym_field_declaration_list] = STATE(3508), - [sym_base_class_clause] = STATE(3509), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2963), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3857), + [anon_sym_DASH_GT] = ACTIONS(3857), + [anon_sym_RPAREN] = ACTIONS(3857), + [anon_sym_final] = ACTIONS(3857), + [anon_sym_STAR_EQ] = ACTIONS(3857), + [anon_sym_LT_LT_EQ] = ACTIONS(3857), + [anon_sym_PERCENT_EQ] = ACTIONS(3857), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3857), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_CARET_EQ] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3859), + [anon_sym_override] = ACTIONS(3857), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_RBRACE] = ACTIONS(3857), + [anon_sym_SLASH_EQ] = ACTIONS(3857), + [anon_sym_PLUS_EQ] = ACTIONS(3857), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_PIPE_EQ] = ACTIONS(3857), + [anon_sym_GT_GT_EQ] = ACTIONS(3857), + [anon_sym_COMMA] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_PERCENT] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3857), + [anon_sym_DASH_EQ] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_AMP_EQ] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3859), }, [2558] = { - [anon_sym_LPAREN2] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_DASH_GT] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2169), - [anon_sym_final] = ACTIONS(2169), - [anon_sym_STAR_EQ] = ACTIONS(2169), - [anon_sym_LT_LT_EQ] = ACTIONS(2169), - [anon_sym_PERCENT_EQ] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_CARET_EQ] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_override] = ACTIONS(2169), - [anon_sym_COLON] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2169), - [anon_sym_SLASH_EQ] = ACTIONS(2169), - [anon_sym_PLUS_EQ] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_PIPE_EQ] = ACTIONS(2169), - [anon_sym_GT_GT_EQ] = ACTIONS(2169), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_PERCENT] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_DASH_EQ] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_AMP_EQ] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2171), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [2559] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7488), + [sym_template_function] = STATE(3491), + [sym__expression] = STATE(3491), + [sym_logical_expression] = STATE(3491), + [sym_bitwise_expression] = STATE(3491), + [sym_cast_expression] = STATE(3491), + [sym_delete_expression] = STATE(3491), + [sym_field_expression] = STATE(3491), + [sym_compound_literal_expression] = STATE(3491), + [sym_lambda_expression] = STATE(3491), + [sym_char_literal] = STATE(3491), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3491), + [sym_equality_expression] = STATE(3491), + [sym_relational_expression] = STATE(3491), + [sym_sizeof_expression] = STATE(3491), + [sym_subscript_expression] = STATE(3491), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(3491), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(3491), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3491), + [sym_pointer_expression] = STATE(3491), + [sym_shift_expression] = STATE(3491), + [sym_math_expression] = STATE(3491), + [sym_call_expression] = STATE(3491), + [sym_new_expression] = STATE(3491), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7477), + [anon_sym_DASH] = ACTIONS(330), + [sym_true] = ACTIONS(7479), + [anon_sym_DASH_DASH] = ACTIONS(336), + [sym_null] = ACTIONS(7479), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7477), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(342), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7479), + [sym_nullptr] = ACTIONS(7479), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), }, [2560] = { - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_STAR_EQ] = ACTIONS(2579), - [anon_sym_LT_LT_EQ] = ACTIONS(2579), - [anon_sym_PERCENT_EQ] = ACTIONS(2579), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2579), - [anon_sym_EQ_EQ] = ACTIONS(2579), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_CARET_EQ] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_SLASH_EQ] = ACTIONS(2579), - [anon_sym_PLUS_EQ] = ACTIONS(2579), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_GT] = ACTIONS(2581), - [anon_sym_PIPE_EQ] = ACTIONS(2579), - [anon_sym_GT_GT_EQ] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2581), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_DASH_EQ] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2579), - [anon_sym_AMP_EQ] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_GT_GT] = ACTIONS(2581), + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(196), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_GT] = ACTIONS(4125), + [sym_raw_string_literal] = ACTIONS(5266), + [sym_true] = ACTIONS(5268), + [sym_null] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(7481), + [anon_sym_AMP] = ACTIONS(4131), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4131), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_number_literal] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(336), }, [2561] = { - [aux_sym_enumerator_list_repeat1] = STATE(3512), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(7490), - [anon_sym_RBRACE] = ACTIONS(7488), + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_DASH_DASH] = ACTIONS(4378), + [anon_sym_DASH_GT] = ACTIONS(4378), + [anon_sym_RPAREN] = ACTIONS(4378), + [anon_sym_final] = ACTIONS(4378), + [anon_sym_STAR_EQ] = ACTIONS(4378), + [anon_sym_LT_LT_EQ] = ACTIONS(4378), + [anon_sym_PERCENT_EQ] = ACTIONS(4378), + [anon_sym_COLON_COLON] = ACTIONS(4378), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4378), + [anon_sym_EQ_EQ] = ACTIONS(4378), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4380), + [anon_sym_CARET_EQ] = ACTIONS(4378), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_GT_EQ] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_override] = ACTIONS(4378), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_SLASH_EQ] = ACTIONS(4378), + [anon_sym_PLUS_EQ] = ACTIONS(4378), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_GT] = ACTIONS(4380), + [anon_sym_PIPE_EQ] = ACTIONS(4378), + [anon_sym_GT_GT_EQ] = ACTIONS(4378), + [anon_sym_COMMA] = ACTIONS(4378), + [anon_sym_PIPE_PIPE] = ACTIONS(4378), + [anon_sym_DOT] = ACTIONS(4378), + [anon_sym_LT_LT] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4378), + [anon_sym_PERCENT] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4378), + [anon_sym_DASH_EQ] = ACTIONS(4378), + [anon_sym_SEMI] = ACTIONS(4378), + [anon_sym_BANG_EQ] = ACTIONS(4378), + [anon_sym_AMP_EQ] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_LT_EQ] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4378), + [anon_sym_LBRACE] = ACTIONS(4378), + [anon_sym_GT_GT] = ACTIONS(4380), }, [2562] = { - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_DASH_GT] = ACTIONS(2585), - [anon_sym_RPAREN] = ACTIONS(2585), - [anon_sym_STAR_EQ] = ACTIONS(2585), - [anon_sym_LT_LT_EQ] = ACTIONS(2585), - [anon_sym_PERCENT_EQ] = ACTIONS(2585), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_EQ_EQ] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2587), - [anon_sym_CARET_EQ] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_GT_EQ] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2587), - [anon_sym_SLASH] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2585), - [anon_sym_SLASH_EQ] = ACTIONS(2585), - [anon_sym_PLUS_EQ] = ACTIONS(2585), - [anon_sym_CARET] = ACTIONS(2587), - [anon_sym_GT] = ACTIONS(2587), - [anon_sym_PIPE_EQ] = ACTIONS(2585), - [anon_sym_GT_GT_EQ] = ACTIONS(2585), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2587), + [aux_sym_template_argument_list_repeat1] = STATE(2195), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_GT2] = ACTIONS(7483), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_DASH_EQ] = ACTIONS(2585), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_AMP_EQ] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_LT_EQ] = ACTIONS(2585), - [anon_sym_EQ] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_GT_GT] = ACTIONS(2587), }, [2563] = { - [sym_field_declaration_list] = STATE(3513), - [sym_base_class_clause] = STATE(3514), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2963), - [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4396), + [anon_sym_RPAREN] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_LT_LT_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_PIPE] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_CARET_EQ] = ACTIONS(4396), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4398), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_COLON] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_CARET] = ACTIONS(4398), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_PIPE_EQ] = ACTIONS(4396), + [anon_sym_GT_GT_EQ] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_LT_LT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4398), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_AMP_EQ] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_GT_GT] = ACTIONS(4398), }, [2564] = { - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_DASH_GT] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3414), - [anon_sym_STAR_EQ] = ACTIONS(3414), - [anon_sym_LT_LT_EQ] = ACTIONS(3414), - [anon_sym_PERCENT_EQ] = ACTIONS(3414), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3414), - [anon_sym_EQ_EQ] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_CARET_EQ] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_RBRACE] = ACTIONS(3414), - [anon_sym_COLON] = ACTIONS(3414), - [anon_sym_SLASH_EQ] = ACTIONS(3414), - [anon_sym_PLUS_EQ] = ACTIONS(3414), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_GT] = ACTIONS(3416), - [anon_sym_PIPE_EQ] = ACTIONS(3414), - [anon_sym_GT_GT_EQ] = ACTIONS(3414), - [anon_sym_COMMA] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_DOT] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_PERCENT] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3414), - [anon_sym_DASH_EQ] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_BANG_EQ] = ACTIONS(3414), - [anon_sym_AMP_EQ] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_EQ] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3416), + [aux_sym_template_argument_list_repeat1] = STATE(2195), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_GT2] = ACTIONS(7485), + [sym_comment] = ACTIONS(3), }, [2565] = { - [sym_field_declaration_list] = STATE(3513), - [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_LPAREN2] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_DASH_GT] = ACTIONS(4429), + [anon_sym_RPAREN] = ACTIONS(4429), + [anon_sym_STAR_EQ] = ACTIONS(4429), + [anon_sym_LT_LT_EQ] = ACTIONS(4429), + [anon_sym_PERCENT_EQ] = ACTIONS(4429), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4429), + [anon_sym_PIPE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4431), + [anon_sym_CARET_EQ] = ACTIONS(4429), + [anon_sym_AMP] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_SLASH] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4429), + [anon_sym_COLON] = ACTIONS(4429), + [anon_sym_SLASH_EQ] = ACTIONS(4429), + [anon_sym_PLUS_EQ] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4431), + [anon_sym_GT] = ACTIONS(4431), + [anon_sym_PIPE_EQ] = ACTIONS(4429), + [anon_sym_GT_GT_EQ] = ACTIONS(4429), + [anon_sym_COMMA] = ACTIONS(4429), + [anon_sym_PIPE_PIPE] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_LT_LT] = ACTIONS(4431), + [anon_sym_LBRACK] = ACTIONS(4429), + [anon_sym_PERCENT] = ACTIONS(4431), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_DASH_EQ] = ACTIONS(4429), + [anon_sym_SEMI] = ACTIONS(4429), + [anon_sym_BANG_EQ] = ACTIONS(4429), + [anon_sym_AMP_EQ] = ACTIONS(4429), + [anon_sym_AMP_AMP] = ACTIONS(4429), + [anon_sym_LT_EQ] = ACTIONS(4429), + [anon_sym_EQ] = ACTIONS(4431), + [anon_sym_PLUS_PLUS] = ACTIONS(4429), + [anon_sym_GT_GT] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4429), }, [2566] = { - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_DASH_GT] = ACTIONS(3418), - [anon_sym_RPAREN] = ACTIONS(3418), - [anon_sym_STAR_EQ] = ACTIONS(3418), - [anon_sym_LT_LT_EQ] = ACTIONS(3418), - [anon_sym_PERCENT_EQ] = ACTIONS(3418), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3418), - [anon_sym_EQ_EQ] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_CARET_EQ] = ACTIONS(3418), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_GT_EQ] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_RBRACE] = ACTIONS(3418), - [anon_sym_COLON] = ACTIONS(3418), - [anon_sym_SLASH_EQ] = ACTIONS(3418), - [anon_sym_PLUS_EQ] = ACTIONS(3418), - [anon_sym_CARET] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_PIPE_EQ] = ACTIONS(3418), - [anon_sym_GT_GT_EQ] = ACTIONS(3418), - [anon_sym_COMMA] = ACTIONS(3418), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_DOT] = ACTIONS(3418), - [anon_sym_LT_LT] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_PERCENT] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3418), - [anon_sym_DASH_EQ] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym_BANG_EQ] = ACTIONS(3418), - [anon_sym_AMP_EQ] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_LT_EQ] = ACTIONS(3418), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_GT_GT] = ACTIONS(3420), + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), + [sym_string_literal] = STATE(450), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(7487), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(175), }, [2567] = { - [sym_field_declaration_list] = STATE(3515), - [anon_sym_LBRACE] = ACTIONS(2963), + [aux_sym_initializer_list_repeat1] = STATE(2257), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(7489), + [anon_sym_RBRACE] = ACTIONS(7487), }, [2568] = { - [sym_field_declaration_list] = STATE(3515), - [sym_base_class_clause] = STATE(3516), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(2963), + [sym_template_function] = STATE(3496), + [sym__expression] = STATE(3496), + [sym_logical_expression] = STATE(3496), + [sym_bitwise_expression] = STATE(3496), + [sym_cast_expression] = STATE(3496), + [sym_delete_expression] = STATE(3496), + [sym_field_expression] = STATE(3496), + [sym_compound_literal_expression] = STATE(3496), + [sym_lambda_expression] = STATE(3496), + [sym_char_literal] = STATE(3496), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3496), + [sym_equality_expression] = STATE(3496), + [sym_relational_expression] = STATE(3496), + [sym_sizeof_expression] = STATE(3496), + [sym_subscript_expression] = STATE(3496), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(3496), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(196), + [sym_concatenated_string] = STATE(3496), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3496), + [sym_pointer_expression] = STATE(3496), + [sym_shift_expression] = STATE(3496), + [sym_math_expression] = STATE(3496), + [sym_call_expression] = STATE(3496), + [sym_new_expression] = STATE(3496), + [sym_raw_string_literal] = ACTIONS(7491), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(646), + [sym_true] = ACTIONS(7493), + [sym_null] = ACTIONS(7493), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7491), + [anon_sym_COLON_COLON] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(342), + [sym_false] = ACTIONS(7493), + [anon_sym_AMP] = ACTIONS(119), + [sym_nullptr] = ACTIONS(7493), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_sizeof] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(648), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_DASH_DASH] = ACTIONS(336), }, [2569] = { - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_DASH_GT] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3746), - [anon_sym_final] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3746), - [anon_sym_LT_LT_EQ] = ACTIONS(3746), - [anon_sym_PERCENT_EQ] = ACTIONS(3746), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3746), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(3748), - [anon_sym_CARET_EQ] = ACTIONS(3746), - [anon_sym_AMP] = ACTIONS(3748), - [anon_sym_PLUS] = ACTIONS(3748), - [anon_sym_GT_EQ] = ACTIONS(3746), - [anon_sym_STAR] = ACTIONS(3748), - [anon_sym_SLASH] = ACTIONS(3748), - [anon_sym_override] = ACTIONS(3746), - [anon_sym_COLON] = ACTIONS(3748), - [anon_sym_RBRACE] = ACTIONS(3746), - [anon_sym_SLASH_EQ] = ACTIONS(3746), - [anon_sym_PLUS_EQ] = ACTIONS(3746), - [anon_sym_CARET] = ACTIONS(3748), - [anon_sym_GT] = ACTIONS(3748), - [anon_sym_PIPE_EQ] = ACTIONS(3746), - [anon_sym_GT_GT_EQ] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3746), - [anon_sym_PERCENT] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_DASH_EQ] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_AMP_EQ] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3746), - [anon_sym_EQ] = ACTIONS(3748), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3748), + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(2570), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(5313), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(5313), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(5317), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(5313), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(358), }, [2570] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(7492), + [aux_sym_sized_type_specifier_repeat1] = STATE(3497), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(7495), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(7495), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(7495), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_short] = ACTIONS(7495), + [anon_sym_restrict] = ACTIONS(558), + [sym_identifier] = ACTIONS(1066), }, [2571] = { - [anon_sym_LPAREN2] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_RPAREN] = ACTIONS(5349), - [anon_sym_STAR_EQ] = ACTIONS(5349), - [anon_sym_LT_LT_EQ] = ACTIONS(5349), - [anon_sym_PERCENT_EQ] = ACTIONS(5349), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_CARET_EQ] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5351), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SLASH_EQ] = ACTIONS(5349), - [anon_sym_PLUS_EQ] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_PIPE_EQ] = ACTIONS(5349), - [anon_sym_GT_GT_EQ] = ACTIONS(5349), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_DASH_EQ] = ACTIONS(5349), - [anon_sym_SEMI] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), + [sym_abstract_reference_declarator] = STATE(3501), + [sym_abstract_array_declarator] = STATE(3501), + [sym_abstract_pointer_declarator] = STATE(3501), + [sym_parameter_list] = STATE(3500), + [sym_abstract_function_declarator] = STATE(3501), + [sym__abstract_declarator] = STATE(3501), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7497), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(7499), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_restrict] = ACTIONS(6085), }, [2572] = { - [sym_argument_list] = STATE(3518), - [sym_initializer_list] = STATE(3518), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(5349), - [anon_sym_STAR_EQ] = ACTIONS(5349), - [anon_sym_LT_LT_EQ] = ACTIONS(5349), - [anon_sym_PERCENT_EQ] = ACTIONS(5349), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_CARET_EQ] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5351), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5349), - [anon_sym_SLASH_EQ] = ACTIONS(5349), - [anon_sym_PLUS_EQ] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_PIPE_EQ] = ACTIONS(5349), - [anon_sym_GT_GT_EQ] = ACTIONS(5349), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_DASH_EQ] = ACTIONS(5349), - [anon_sym_SEMI] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), + [sym_virtual_specifier] = STATE(2572), + [aux_sym_function_declarator_repeat1] = STATE(2572), + [sym_type_qualifier] = STATE(2572), + [sym_trailing_return_type] = STATE(2572), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [anon_sym_volatile] = ACTIONS(7247), + [sym_noexcept] = ACTIONS(7503), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(6288), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym_const] = ACTIONS(7250), + [anon_sym_explicit] = ACTIONS(7247), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_DASH_GT] = ACTIONS(7506), + [anon_sym_restrict] = ACTIONS(7247), + [anon_sym_constexpr] = ACTIONS(7247), + [sym_comment] = ACTIONS(3), }, [2573] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4529), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_GT] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_LT_LT_EQ] = ACTIONS(968), + [anon_sym_PERCENT_EQ] = ACTIONS(968), + [anon_sym_RBRACK_RBRACK] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(968), + [anon_sym_GT_GT_EQ] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_AMP_EQ] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), }, [2574] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3519), - [sym_logical_expression] = STATE(3519), - [sym_bitwise_expression] = STATE(3519), - [sym_cast_expression] = STATE(3519), - [sym_new_expression] = STATE(3519), - [sym_field_expression] = STATE(3519), - [sym_compound_literal_expression] = STATE(3519), - [sym_char_literal] = STATE(3519), - [sym_template_function] = STATE(3519), - [sym_conditional_expression] = STATE(3519), - [sym_equality_expression] = STATE(3519), - [sym_relational_expression] = STATE(3519), - [sym_delete_expression] = STATE(3519), - [sym_sizeof_expression] = STATE(3519), - [sym_parenthesized_expression] = STATE(3519), - [sym_lambda_expression] = STATE(3519), - [sym_concatenated_string] = STATE(3519), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3519), - [sym_assignment_expression] = STATE(3519), - [sym_pointer_expression] = STATE(3519), - [sym_shift_expression] = STATE(3519), - [sym_math_expression] = STATE(3519), - [sym_call_expression] = STATE(3519), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7496), - [anon_sym_DASH] = ACTIONS(328), - [sym_true] = ACTIONS(7498), - [anon_sym_DASH_DASH] = ACTIONS(334), - [sym_null] = ACTIONS(7498), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7496), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(340), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7498), - [sym_nullptr] = ACTIONS(7498), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(644), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - }, - [2575] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(194), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(4127), - [sym_raw_string_literal] = ACTIONS(5267), - [sym_true] = ACTIONS(5269), - [sym_null] = ACTIONS(5269), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(7500), - [anon_sym_AMP] = ACTIONS(4133), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_number_literal] = ACTIONS(5267), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5269), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(334), - }, - [2576] = { - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_DASH_GT] = ACTIONS(4384), - [anon_sym_RPAREN] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_STAR_EQ] = ACTIONS(4384), - [anon_sym_LT_LT_EQ] = ACTIONS(4384), - [anon_sym_PERCENT_EQ] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4384), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_PIPE] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4386), - [anon_sym_CARET_EQ] = ACTIONS(4384), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [anon_sym_SLASH] = ACTIONS(4386), - [anon_sym_RBRACE] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_COLON] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4384), - [anon_sym_PLUS_EQ] = ACTIONS(4384), - [anon_sym_CARET] = ACTIONS(4386), - [anon_sym_GT] = ACTIONS(4386), - [anon_sym_PIPE_EQ] = ACTIONS(4384), - [anon_sym_GT_GT_EQ] = ACTIONS(4384), - [anon_sym_COMMA] = ACTIONS(4384), - [anon_sym_PIPE_PIPE] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_LT_LT] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_DASH_EQ] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4384), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_AMP_EQ] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_LT_EQ] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_GT_GT] = ACTIONS(4386), - }, - [2577] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(7502), - [sym_comment] = ACTIONS(3), - }, - [2578] = { - [anon_sym_LPAREN2] = ACTIONS(4402), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_RPAREN] = ACTIONS(4402), - [anon_sym_final] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_LT_LT_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4402), - [anon_sym_PIPE] = ACTIONS(4404), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_CARET_EQ] = ACTIONS(4402), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_override] = ACTIONS(4402), - [anon_sym_COLON] = ACTIONS(4404), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_CARET] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_PIPE_EQ] = ACTIONS(4402), - [anon_sym_GT_GT_EQ] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_DOT] = ACTIONS(4402), - [anon_sym_LT_LT] = ACTIONS(4404), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_PERCENT] = ACTIONS(4404), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4402), - [anon_sym_AMP_EQ] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_GT_GT] = ACTIONS(4404), - }, - [2579] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(7504), - [sym_comment] = ACTIONS(3), - }, - [2580] = { - [anon_sym_LPAREN2] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_DASH_GT] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_LT_LT_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_CARET_EQ] = ACTIONS(4431), - [anon_sym_AMP] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_COLON] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_PIPE_EQ] = ACTIONS(4431), - [anon_sym_GT_GT_EQ] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4433), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_AMP_EQ] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4431), - }, - [2581] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), - [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(7506), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [2582] = { - [aux_sym_initializer_list_repeat1] = STATE(2268), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(7508), - [anon_sym_RBRACE] = ACTIONS(7506), - }, - [2583] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3524), - [sym_logical_expression] = STATE(3524), - [sym_bitwise_expression] = STATE(3524), - [sym_cast_expression] = STATE(3524), - [sym_new_expression] = STATE(3524), - [sym_field_expression] = STATE(3524), - [sym_compound_literal_expression] = STATE(3524), - [sym_char_literal] = STATE(3524), - [sym_template_function] = STATE(3524), - [sym_conditional_expression] = STATE(3524), - [sym_equality_expression] = STATE(3524), - [sym_relational_expression] = STATE(3524), - [sym_delete_expression] = STATE(3524), - [sym_sizeof_expression] = STATE(3524), - [sym_parenthesized_expression] = STATE(3524), - [sym_lambda_expression] = STATE(3524), - [sym_concatenated_string] = STATE(3524), - [sym_string_literal] = STATE(194), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3524), - [sym_assignment_expression] = STATE(3524), - [sym_pointer_expression] = STATE(3524), - [sym_shift_expression] = STATE(3524), - [sym_math_expression] = STATE(3524), - [sym_call_expression] = STATE(3524), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7510), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_LPAREN2] = ACTIONS(642), - [sym_true] = ACTIONS(7512), - [sym_null] = ACTIONS(7512), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7510), - [anon_sym_COLON_COLON] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(340), - [sym_false] = ACTIONS(7512), - [anon_sym_AMP] = ACTIONS(119), - [sym_nullptr] = ACTIONS(7512), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(644), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(334), - }, - [2584] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(2585), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(5314), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(5314), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(5314), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(5318), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(5314), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), - }, - [2585] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3525), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(7514), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(7514), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(7514), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_short] = ACTIONS(7514), - [anon_sym_restrict] = ACTIONS(625), - [sym_identifier] = ACTIONS(1074), - }, - [2586] = { - [sym_parameter_list] = STATE(3528), - [sym_abstract_array_declarator] = STATE(3529), - [sym_abstract_pointer_declarator] = STATE(3529), - [sym_abstract_reference_declarator] = STATE(3529), - [sym_abstract_function_declarator] = STATE(3529), - [sym__abstract_declarator] = STATE(3529), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7516), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(7518), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(7520), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_restrict] = ACTIONS(6210), - }, - [2587] = { - [sym_virtual_specifier] = STATE(2587), - [aux_sym_function_declarator_repeat1] = STATE(2587), - [sym_trailing_return_type] = STATE(2587), - [sym_type_qualifier] = STATE(2587), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [anon_sym_volatile] = ACTIONS(7266), - [sym_noexcept] = ACTIONS(7522), - [anon_sym_mutable] = ACTIONS(7266), - [anon_sym_override] = ACTIONS(6222), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_const] = ACTIONS(7269), - [anon_sym_explicit] = ACTIONS(7266), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_DASH_GT] = ACTIONS(7525), - [anon_sym_restrict] = ACTIONS(7266), - [anon_sym_constexpr] = ACTIONS(7266), - [sym_comment] = ACTIONS(3), - }, - [2588] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_DASH_GT] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_LT_LT_EQ] = ACTIONS(964), - [anon_sym_PERCENT_EQ] = ACTIONS(964), - [anon_sym_RBRACK_RBRACK] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_CARET_EQ] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_COLON] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_CARET] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_PIPE_EQ] = ACTIONS(964), - [anon_sym_GT_GT_EQ] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_PERCENT] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_AMP_EQ] = ACTIONS(964), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - }, - [2589] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -110052,7 +109834,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(7528), + [anon_sym_RBRACE] = ACTIONS(7509), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -110084,490 +109866,493 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2590] = { + [2575] = { + [anon_sym_LPAREN2] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7511), + [anon_sym_LBRACE] = ACTIONS(7511), + [anon_sym_mutable] = ACTIONS(7513), + [anon_sym_DASH_DASH] = ACTIONS(7511), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7511), + [anon_sym_EQ] = ACTIONS(7513), + [anon_sym_COLON_COLON] = ACTIONS(7511), + [anon_sym_final] = ACTIONS(7513), + [anon_sym_EQ_EQ] = ACTIONS(7511), + [anon_sym_PIPE] = ACTIONS(7513), + [anon_sym_LT] = ACTIONS(7513), + [anon_sym_AMP] = ACTIONS(7513), + [anon_sym_static] = ACTIONS(7513), + [anon_sym_volatile] = ACTIONS(7513), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_GT_EQ] = ACTIONS(7511), + [anon_sym_STAR] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7511), + [anon_sym_COLON] = ACTIONS(7513), + [anon_sym_explicit] = ACTIONS(7513), + [sym_identifier] = ACTIONS(7513), + [anon_sym_RBRACE] = ACTIONS(7511), + [anon_sym_override] = ACTIONS(7513), + [sym_operator_name] = ACTIONS(7511), + [sym_noexcept] = ACTIONS(7513), + [anon_sym_CARET] = ACTIONS(7511), + [anon_sym_GT] = ACTIONS(7513), + [anon_sym_COMMA] = ACTIONS(7511), + [anon_sym_register] = ACTIONS(7513), + [anon_sym__Atomic] = ACTIONS(7513), + [anon_sym_const] = ACTIONS(7513), + [anon_sym_extern] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7511), + [anon_sym_DOT] = ACTIONS(7513), + [anon_sym_LT_LT] = ACTIONS(7511), + [anon_sym_constexpr] = ACTIONS(7513), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_QMARK] = ACTIONS(7511), + [anon_sym_TILDE] = ACTIONS(7511), + [anon_sym_SEMI] = ACTIONS(7511), + [anon_sym_BANG_EQ] = ACTIONS(7511), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_AMP_AMP] = ACTIONS(7511), + [anon_sym_inline] = ACTIONS(7513), + [anon_sym_RPAREN] = ACTIONS(7511), + [anon_sym_restrict] = ACTIONS(7513), + [anon_sym_GT_GT] = ACTIONS(7511), + [anon_sym_DASH_GT] = ACTIONS(7511), + }, + [2576] = { + [anon_sym_LPAREN2] = ACTIONS(7515), + [anon_sym_DASH] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7515), + [anon_sym_LBRACE] = ACTIONS(7515), + [anon_sym_mutable] = ACTIONS(7517), + [anon_sym_DASH_DASH] = ACTIONS(7515), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7515), + [anon_sym_EQ] = ACTIONS(7517), + [anon_sym_COLON_COLON] = ACTIONS(7515), + [anon_sym_final] = ACTIONS(7517), + [anon_sym_EQ_EQ] = ACTIONS(7515), + [anon_sym_PIPE] = ACTIONS(7517), + [anon_sym_LT] = ACTIONS(7517), + [anon_sym_AMP] = ACTIONS(7517), + [anon_sym_static] = ACTIONS(7517), + [anon_sym_volatile] = ACTIONS(7517), + [anon_sym_PLUS] = ACTIONS(7517), + [anon_sym_GT_EQ] = ACTIONS(7515), + [anon_sym_STAR] = ACTIONS(7515), + [anon_sym_SLASH] = ACTIONS(7517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7515), + [anon_sym_COLON] = ACTIONS(7517), + [anon_sym_explicit] = ACTIONS(7517), + [sym_identifier] = ACTIONS(7517), + [anon_sym_RBRACE] = ACTIONS(7515), + [anon_sym_override] = ACTIONS(7517), + [sym_operator_name] = ACTIONS(7515), + [sym_noexcept] = ACTIONS(7517), + [anon_sym_CARET] = ACTIONS(7515), + [anon_sym_GT] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(7515), + [anon_sym_register] = ACTIONS(7517), + [anon_sym__Atomic] = ACTIONS(7517), + [anon_sym_const] = ACTIONS(7517), + [anon_sym_extern] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7515), + [anon_sym_DOT] = ACTIONS(7517), + [anon_sym_LT_LT] = ACTIONS(7515), + [anon_sym_constexpr] = ACTIONS(7517), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7515), + [anon_sym_QMARK] = ACTIONS(7515), + [anon_sym_TILDE] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(7515), + [anon_sym_BANG_EQ] = ACTIONS(7515), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_AMP_AMP] = ACTIONS(7515), + [anon_sym_inline] = ACTIONS(7517), + [anon_sym_RPAREN] = ACTIONS(7515), + [anon_sym_restrict] = ACTIONS(7517), + [anon_sym_GT_GT] = ACTIONS(7515), + [anon_sym_DASH_GT] = ACTIONS(7515), + }, + [2577] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(7519), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [2578] = { + [anon_sym_COMMA] = ACTIONS(7519), + [anon_sym_RPAREN] = ACTIONS(7519), + [sym_comment] = ACTIONS(3), + }, + [2579] = { + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_struct] = ACTIONS(7523), + [sym_auto] = ACTIONS(7523), + [anon_sym_signed] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_long] = ACTIONS(7523), + [anon_sym_STAR_EQ] = ACTIONS(7521), + [anon_sym_LT_LT_EQ] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_PERCENT_EQ] = ACTIONS(7521), + [anon_sym_DASH_DASH] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_CARET_EQ] = ACTIONS(7521), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_RPAREN] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_GT_EQ] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7523), + [anon_sym_union] = ACTIONS(7523), + [anon_sym_typename] = ACTIONS(7523), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_RBRACE] = ACTIONS(7521), + [anon_sym_short] = ACTIONS(7523), + [sym_identifier] = ACTIONS(7523), + [anon_sym_SLASH_EQ] = ACTIONS(7521), + [anon_sym_PLUS_EQ] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7523), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_PIPE_EQ] = ACTIONS(7521), + [anon_sym_GT_GT_EQ] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7523), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_PERCENT] = ACTIONS(7523), + [anon_sym_enum] = ACTIONS(7523), + [anon_sym_class] = ACTIONS(7523), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7523), + [sym_primitive_type] = ACTIONS(7523), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_DASH_EQ] = ACTIONS(7521), + [anon_sym_SEMI] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_AMP_EQ] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7521), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_EQ] = ACTIONS(7523), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7523), + }, + [2580] = { + [aux_sym_argument_list_repeat1] = STATE(2580), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7519), + [sym_comment] = ACTIONS(3), + }, + [2581] = { + [anon_sym_LPAREN2] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5338), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_AMP] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_GT_EQ] = ACTIONS(5338), + [anon_sym_STAR] = ACTIONS(5338), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_RBRACE] = ACTIONS(5338), + [anon_sym_COLON] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5338), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_PIPE_PIPE] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_PERCENT] = ACTIONS(5338), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5338), + [anon_sym_SEMI] = ACTIONS(5338), + [anon_sym_BANG_EQ] = ACTIONS(5338), + [anon_sym_LT_EQ] = ACTIONS(5338), + [anon_sym_AMP_AMP] = ACTIONS(5338), + [anon_sym_DASH_GT] = ACTIONS(5338), + [anon_sym_PLUS_PLUS] = ACTIONS(5338), + [anon_sym_RPAREN] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5338), + [anon_sym_DASH_DASH] = ACTIONS(5338), + }, + [2582] = { + [aux_sym_argument_list_repeat1] = STATE(2580), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(7528), + [sym_comment] = ACTIONS(3), + }, + [2583] = { + [sym_new_declarator] = STATE(3504), [anon_sym_LPAREN2] = ACTIONS(7530), [anon_sym_DASH] = ACTIONS(7532), - [anon_sym_PLUS_PLUS] = ACTIONS(7530), - [anon_sym_LBRACE] = ACTIONS(7530), - [anon_sym_mutable] = ACTIONS(7532), - [anon_sym_DASH_DASH] = ACTIONS(7530), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7530), - [anon_sym_EQ] = ACTIONS(7532), - [anon_sym_COLON_COLON] = ACTIONS(7530), - [anon_sym_final] = ACTIONS(7532), + [anon_sym_GT_GT] = ACTIONS(7530), [anon_sym_EQ_EQ] = ACTIONS(7530), [anon_sym_PIPE] = ACTIONS(7532), [anon_sym_LT] = ACTIONS(7532), [anon_sym_AMP] = ACTIONS(7532), - [anon_sym_static] = ACTIONS(7532), - [anon_sym_volatile] = ACTIONS(7532), [anon_sym_PLUS] = ACTIONS(7532), [anon_sym_GT_EQ] = ACTIONS(7530), [anon_sym_STAR] = ACTIONS(7530), [anon_sym_SLASH] = ACTIONS(7532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7530), - [anon_sym_COLON] = ACTIONS(7532), - [anon_sym_explicit] = ACTIONS(7532), - [sym_identifier] = ACTIONS(7532), - [anon_sym_RBRACE] = ACTIONS(7530), - [anon_sym_override] = ACTIONS(7532), - [sym_operator_name] = ACTIONS(7530), - [sym_noexcept] = ACTIONS(7532), [anon_sym_CARET] = ACTIONS(7530), [anon_sym_GT] = ACTIONS(7532), [anon_sym_COMMA] = ACTIONS(7530), - [anon_sym_register] = ACTIONS(7532), - [anon_sym__Atomic] = ACTIONS(7532), - [anon_sym_const] = ACTIONS(7532), - [anon_sym_extern] = ACTIONS(7532), - [anon_sym_LBRACK] = ACTIONS(7530), [anon_sym_PIPE_PIPE] = ACTIONS(7530), - [anon_sym_DOT] = ACTIONS(7532), + [anon_sym_DOT] = ACTIONS(7530), [anon_sym_LT_LT] = ACTIONS(7530), - [anon_sym_constexpr] = ACTIONS(7532), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_PERCENT] = ACTIONS(7530), + [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(7530), - [anon_sym_TILDE] = ACTIONS(7530), [anon_sym_SEMI] = ACTIONS(7530), [anon_sym_BANG_EQ] = ACTIONS(7530), [anon_sym_LT_EQ] = ACTIONS(7530), [anon_sym_AMP_AMP] = ACTIONS(7530), - [anon_sym_inline] = ACTIONS(7532), - [anon_sym_RPAREN] = ACTIONS(7530), - [anon_sym_restrict] = ACTIONS(7532), - [anon_sym_GT_GT] = ACTIONS(7530), [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_DASH_DASH] = ACTIONS(7530), }, - [2591] = { + [2584] = { [anon_sym_LPAREN2] = ACTIONS(7534), [anon_sym_DASH] = ACTIONS(7536), - [anon_sym_PLUS_PLUS] = ACTIONS(7534), - [anon_sym_LBRACE] = ACTIONS(7534), - [anon_sym_mutable] = ACTIONS(7536), - [anon_sym_DASH_DASH] = ACTIONS(7534), [anon_sym_RBRACK_RBRACK] = ACTIONS(7534), - [anon_sym_EQ] = ACTIONS(7536), - [anon_sym_COLON_COLON] = ACTIONS(7534), - [anon_sym_final] = ACTIONS(7536), [anon_sym_EQ_EQ] = ACTIONS(7534), [anon_sym_PIPE] = ACTIONS(7536), [anon_sym_LT] = ACTIONS(7536), [anon_sym_AMP] = ACTIONS(7536), - [anon_sym_static] = ACTIONS(7536), - [anon_sym_volatile] = ACTIONS(7536), [anon_sym_PLUS] = ACTIONS(7536), [anon_sym_GT_EQ] = ACTIONS(7534), [anon_sym_STAR] = ACTIONS(7534), [anon_sym_SLASH] = ACTIONS(7536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7534), - [anon_sym_COLON] = ACTIONS(7536), - [anon_sym_explicit] = ACTIONS(7536), - [sym_identifier] = ACTIONS(7536), [anon_sym_RBRACE] = ACTIONS(7534), - [anon_sym_override] = ACTIONS(7536), - [sym_operator_name] = ACTIONS(7534), - [sym_noexcept] = ACTIONS(7536), + [anon_sym_COLON] = ACTIONS(7534), [anon_sym_CARET] = ACTIONS(7534), [anon_sym_GT] = ACTIONS(7536), [anon_sym_COMMA] = ACTIONS(7534), - [anon_sym_register] = ACTIONS(7536), - [anon_sym__Atomic] = ACTIONS(7536), - [anon_sym_const] = ACTIONS(7536), - [anon_sym_extern] = ACTIONS(7536), - [anon_sym_LBRACK] = ACTIONS(7534), [anon_sym_PIPE_PIPE] = ACTIONS(7534), - [anon_sym_DOT] = ACTIONS(7536), + [anon_sym_DOT] = ACTIONS(7534), [anon_sym_LT_LT] = ACTIONS(7534), - [anon_sym_constexpr] = ACTIONS(7536), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(7534), [anon_sym_PERCENT] = ACTIONS(7534), + [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(7534), - [anon_sym_TILDE] = ACTIONS(7534), [anon_sym_SEMI] = ACTIONS(7534), [anon_sym_BANG_EQ] = ACTIONS(7534), [anon_sym_LT_EQ] = ACTIONS(7534), [anon_sym_AMP_AMP] = ACTIONS(7534), - [anon_sym_inline] = ACTIONS(7536), + [anon_sym_DASH_GT] = ACTIONS(7534), + [anon_sym_PLUS_PLUS] = ACTIONS(7534), [anon_sym_RPAREN] = ACTIONS(7534), - [anon_sym_restrict] = ACTIONS(7536), [anon_sym_GT_GT] = ACTIONS(7534), - [anon_sym_DASH_GT] = ACTIONS(7534), - }, - [2592] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7538), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(7538), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2593] = { - [anon_sym_COMMA] = ACTIONS(7538), - [anon_sym_RPAREN] = ACTIONS(7538), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH_DASH] = ACTIONS(7534), }, - [2594] = { + [2585] = { + [anon_sym_DASH] = ACTIONS(7538), + [sym_raw_string_literal] = ACTIONS(7540), + [anon_sym_else] = ACTIONS(7538), + [sym_true] = ACTIONS(7538), + [anon_sym_mutable] = ACTIONS(7538), + [sym_null] = ACTIONS(7538), + [anon_sym_break] = ACTIONS(7538), + [anon_sym_BANG] = ACTIONS(7540), + [anon_sym_sizeof] = ACTIONS(7538), + [anon_sym_volatile] = ACTIONS(7538), + [anon_sym_PLUS] = ACTIONS(7538), + [anon_sym_typedef] = ACTIONS(7538), + [anon_sym_switch] = ACTIONS(7538), + [anon_sym_explicit] = ACTIONS(7538), + [sym_identifier] = ACTIONS(7538), + [anon_sym_catch] = ACTIONS(7538), + [anon_sym_delete] = ACTIONS(7538), + [anon_sym_continue] = ACTIONS(7538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7538), + [anon_sym__Atomic] = ACTIONS(7538), + [sym_number_literal] = ACTIONS(7540), + [anon_sym_extern] = ACTIONS(7538), + [anon_sym_enum] = ACTIONS(7538), + [anon_sym_constexpr] = ACTIONS(7538), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7540), + [anon_sym_namespace] = ACTIONS(7538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7538), + [anon_sym_SQUOTE] = ACTIONS(7540), + [anon_sym_LBRACE] = ACTIONS(7540), + [anon_sym_DASH_DASH] = ACTIONS(7540), [anon_sym_LPAREN2] = ACTIONS(7540), - [anon_sym_struct] = ACTIONS(7542), - [sym_auto] = ACTIONS(7542), - [anon_sym_signed] = ACTIONS(7542), - [anon_sym_DASH] = ACTIONS(7542), - [anon_sym_long] = ACTIONS(7542), - [anon_sym_STAR_EQ] = ACTIONS(7540), - [anon_sym_LT_LT_EQ] = ACTIONS(7540), + [anon_sym_struct] = ACTIONS(7538), + [sym_auto] = ACTIONS(7538), + [anon_sym_signed] = ACTIONS(7538), + [anon_sym_long] = ACTIONS(7538), [anon_sym_COLON_COLON] = ACTIONS(7540), - [anon_sym_PERCENT_EQ] = ACTIONS(7540), - [anon_sym_DASH_DASH] = ACTIONS(7540), - [anon_sym_EQ_EQ] = ACTIONS(7540), - [anon_sym_PIPE] = ACTIONS(7542), - [anon_sym_LT] = ACTIONS(7542), - [anon_sym_CARET_EQ] = ACTIONS(7540), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7540), - [anon_sym_AMP] = ACTIONS(7542), - [anon_sym_RPAREN] = ACTIONS(7540), - [anon_sym_LBRACE] = ACTIONS(7540), - [anon_sym_PLUS] = ACTIONS(7542), - [anon_sym_GT_EQ] = ACTIONS(7540), - [anon_sym_STAR] = ACTIONS(7542), - [anon_sym_union] = ACTIONS(7542), - [anon_sym_typename] = ACTIONS(7542), - [anon_sym_SLASH] = ACTIONS(7542), + [anon_sym_using] = ACTIONS(7538), + [sym_preproc_directive] = ACTIONS(7538), + [aux_sym_preproc_if_token1] = ACTIONS(7538), + [anon_sym_AMP] = ACTIONS(7538), + [anon_sym_static] = ACTIONS(7538), [anon_sym_RBRACE] = ACTIONS(7540), - [anon_sym_short] = ACTIONS(7542), - [sym_identifier] = ACTIONS(7542), - [anon_sym_SLASH_EQ] = ACTIONS(7540), - [anon_sym_PLUS_EQ] = ACTIONS(7540), - [anon_sym_CARET] = ACTIONS(7542), - [anon_sym_GT] = ACTIONS(7542), - [anon_sym_PIPE_EQ] = ACTIONS(7540), - [anon_sym_GT_GT_EQ] = ACTIONS(7540), - [anon_sym_COMMA] = ACTIONS(7540), - [anon_sym_PIPE_PIPE] = ACTIONS(7540), - [anon_sym_DOT] = ACTIONS(7540), - [anon_sym_LT_LT] = ACTIONS(7542), - [anon_sym_LBRACK] = ACTIONS(7540), - [anon_sym_PERCENT] = ACTIONS(7542), - [anon_sym_enum] = ACTIONS(7542), - [anon_sym_class] = ACTIONS(7542), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7542), - [sym_primitive_type] = ACTIONS(7542), - [anon_sym_QMARK] = ACTIONS(7540), - [anon_sym_DASH_EQ] = ACTIONS(7540), + [anon_sym_STAR] = ACTIONS(7540), + [anon_sym_union] = ACTIONS(7538), + [anon_sym_typename] = ACTIONS(7538), + [anon_sym_short] = ACTIONS(7538), + [anon_sym_new] = ACTIONS(7538), + [anon_sym_goto] = ACTIONS(7538), + [sym_operator_name] = ACTIONS(7540), + [anon_sym_while] = ACTIONS(7538), + [anon_sym_try] = ACTIONS(7538), + [anon_sym_for] = ACTIONS(7538), + [aux_sym_preproc_include_token1] = ACTIONS(7538), + [anon_sym_register] = ACTIONS(7538), + [anon_sym_DQUOTE] = ACTIONS(7540), + [anon_sym_const] = ACTIONS(7538), + [anon_sym_LBRACK] = ACTIONS(7538), + [anon_sym_class] = ACTIONS(7538), + [anon_sym_if] = ACTIONS(7538), + [sym_primitive_type] = ACTIONS(7538), + [sym_false] = ACTIONS(7538), + [sym_nullptr] = ACTIONS(7538), + [anon_sym_do] = ACTIONS(7538), + [anon_sym_template] = ACTIONS(7538), + [anon_sym_return] = ACTIONS(7538), + [anon_sym_TILDE] = ACTIONS(7540), [anon_sym_SEMI] = ACTIONS(7540), - [anon_sym_BANG_EQ] = ACTIONS(7540), - [anon_sym_AMP_EQ] = ACTIONS(7540), + [ts_builtin_sym_end] = ACTIONS(7540), + [aux_sym_preproc_def_token1] = ACTIONS(7538), [anon_sym_AMP_AMP] = ACTIONS(7540), - [anon_sym_DASH_GT] = ACTIONS(7540), - [anon_sym_LT_EQ] = ACTIONS(7540), - [anon_sym_EQ] = ACTIONS(7542), + [anon_sym_inline] = ACTIONS(7538), [anon_sym_PLUS_PLUS] = ACTIONS(7540), - [anon_sym_GT_GT] = ACTIONS(7542), - }, - [2595] = { - [aux_sym_argument_list_repeat1] = STATE(2595), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7538), - [sym_comment] = ACTIONS(3), - }, - [2596] = { - [anon_sym_LPAREN2] = ACTIONS(5339), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5339), - [anon_sym_EQ_EQ] = ACTIONS(5339), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_AMP] = ACTIONS(5341), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_GT_EQ] = ACTIONS(5339), - [anon_sym_STAR] = ACTIONS(5339), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_RBRACE] = ACTIONS(5339), - [anon_sym_COLON] = ACTIONS(5339), - [anon_sym_CARET] = ACTIONS(5339), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_PIPE_PIPE] = ACTIONS(5339), - [anon_sym_DOT] = ACTIONS(5339), - [anon_sym_LT_LT] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_PERCENT] = ACTIONS(5339), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5339), - [anon_sym_SEMI] = ACTIONS(5339), - [anon_sym_BANG_EQ] = ACTIONS(5339), - [anon_sym_LT_EQ] = ACTIONS(5339), - [anon_sym_AMP_AMP] = ACTIONS(5339), - [anon_sym_DASH_GT] = ACTIONS(5339), - [anon_sym_PLUS_PLUS] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_GT_GT] = ACTIONS(5339), - [anon_sym_DASH_DASH] = ACTIONS(5339), - }, - [2597] = { - [aux_sym_argument_list_repeat1] = STATE(2595), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(7547), - [sym_comment] = ACTIONS(3), - }, - [2598] = { - [sym_new_declarator] = STATE(3532), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_SEMI] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), - }, - [2599] = { - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7553), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7553), - [anon_sym_STAR] = ACTIONS(7553), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_RBRACE] = ACTIONS(7553), - [anon_sym_COLON] = ACTIONS(7553), - [anon_sym_CARET] = ACTIONS(7553), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7553), - [anon_sym_LT_LT] = ACTIONS(7553), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_PERCENT] = ACTIONS(7553), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_SEMI] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_LT_EQ] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7553), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_RPAREN] = ACTIONS(7553), - [anon_sym_GT_GT] = ACTIONS(7553), - [anon_sym_DASH_DASH] = ACTIONS(7553), - }, - [2600] = { - [anon_sym_DASH] = ACTIONS(7557), - [sym_raw_string_literal] = ACTIONS(7559), - [anon_sym_else] = ACTIONS(7557), - [sym_true] = ACTIONS(7557), - [anon_sym_mutable] = ACTIONS(7557), - [sym_null] = ACTIONS(7557), - [anon_sym_break] = ACTIONS(7557), - [anon_sym_BANG] = ACTIONS(7559), - [anon_sym_sizeof] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [anon_sym_PLUS] = ACTIONS(7557), - [anon_sym_typedef] = ACTIONS(7557), - [anon_sym_switch] = ACTIONS(7557), - [anon_sym_explicit] = ACTIONS(7557), - [sym_identifier] = ACTIONS(7557), - [anon_sym_catch] = ACTIONS(7557), - [anon_sym_delete] = ACTIONS(7557), - [anon_sym_continue] = ACTIONS(7557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7557), - [anon_sym__Atomic] = ACTIONS(7557), - [sym_number_literal] = ACTIONS(7559), - [anon_sym_extern] = ACTIONS(7557), - [anon_sym_enum] = ACTIONS(7557), - [anon_sym_constexpr] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7559), - [anon_sym_namespace] = ACTIONS(7557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7557), - [anon_sym_SQUOTE] = ACTIONS(7559), - [anon_sym_LBRACE] = ACTIONS(7559), - [anon_sym_DASH_DASH] = ACTIONS(7559), - [anon_sym_LPAREN2] = ACTIONS(7559), - [anon_sym_struct] = ACTIONS(7557), - [sym_auto] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(7557), - [anon_sym_long] = ACTIONS(7557), - [anon_sym_COLON_COLON] = ACTIONS(7559), - [anon_sym_using] = ACTIONS(7557), - [sym_preproc_directive] = ACTIONS(7557), - [aux_sym_preproc_if_token1] = ACTIONS(7557), - [anon_sym_AMP] = ACTIONS(7557), - [anon_sym_static] = ACTIONS(7557), - [anon_sym_RBRACE] = ACTIONS(7559), - [anon_sym_STAR] = ACTIONS(7559), - [anon_sym_union] = ACTIONS(7557), - [anon_sym_typename] = ACTIONS(7557), - [anon_sym_short] = ACTIONS(7557), - [anon_sym_new] = ACTIONS(7557), - [anon_sym_goto] = ACTIONS(7557), - [sym_operator_name] = ACTIONS(7559), - [anon_sym_while] = ACTIONS(7557), - [anon_sym_try] = ACTIONS(7557), - [anon_sym_for] = ACTIONS(7557), - [aux_sym_preproc_include_token1] = ACTIONS(7557), - [anon_sym_register] = ACTIONS(7557), - [anon_sym_DQUOTE] = ACTIONS(7559), - [anon_sym_const] = ACTIONS(7557), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_class] = ACTIONS(7557), - [anon_sym_if] = ACTIONS(7557), - [sym_primitive_type] = ACTIONS(7557), - [sym_false] = ACTIONS(7557), - [sym_nullptr] = ACTIONS(7557), - [anon_sym_do] = ACTIONS(7557), - [anon_sym_template] = ACTIONS(7557), - [anon_sym_return] = ACTIONS(7557), - [anon_sym_TILDE] = ACTIONS(7559), - [anon_sym_SEMI] = ACTIONS(7559), - [ts_builtin_sym_end] = ACTIONS(7559), - [aux_sym_preproc_def_token1] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_inline] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7559), - [anon_sym_restrict] = ACTIONS(7557), + [anon_sym_restrict] = ACTIONS(7538), }, - [2601] = { - [anon_sym_LPAREN2] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_restrict] = ACTIONS(2171), - [anon_sym_mutable] = ACTIONS(2171), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_explicit] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2171), - [sym_operator_name] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_register] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2171), - [anon_sym_constexpr] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_inline] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2162), + [2586] = { + [anon_sym_LPAREN2] = ACTIONS(2168), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_restrict] = ACTIONS(2173), + [anon_sym_mutable] = ACTIONS(2173), + [anon_sym_EQ] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_volatile] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2171), + [anon_sym_explicit] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2173), + [sym_operator_name] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym__Atomic] = ACTIONS(2173), + [anon_sym_constexpr] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2168), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2168), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_inline] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2164), }, - [2602] = { - [sym_do_statement] = STATE(3533), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [2587] = { + [sym_do_statement] = STATE(3505), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(3533), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(3533), - [sym_if_statement] = STATE(3533), - [sym_switch_statement] = STATE(3533), - [sym_for_statement] = STATE(3533), - [sym_return_statement] = STATE(3533), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3505), + [sym_try_statement] = STATE(3505), + [sym_if_statement] = STATE(3505), + [sym_switch_statement] = STATE(3505), + [sym_for_statement] = STATE(3505), + [sym_return_statement] = STATE(3505), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(3533), - [sym_break_statement] = STATE(3533), - [sym_continue_statement] = STATE(3533), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3505), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3533), - [sym_labeled_statement] = STATE(3533), - [sym_expression_statement] = STATE(3533), - [sym_while_statement] = STATE(3533), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(3505), + [sym_for_range_loop] = STATE(3505), + [sym_compound_statement] = STATE(3505), + [sym_labeled_statement] = STATE(3505), + [sym_expression_statement] = STATE(3505), + [sym_while_statement] = STATE(3505), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -110581,7 +110366,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -110605,907 +110390,912 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2603] = { - [aux_sym_for_statement_repeat1] = STATE(3536), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2588] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(3508), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2604] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3537), - [sym_logical_expression] = STATE(3537), - [sym_bitwise_expression] = STATE(3537), - [sym_cast_expression] = STATE(3537), - [sym_new_expression] = STATE(3537), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(3537), - [sym_char_literal] = STATE(3537), - [sym_template_function] = STATE(3537), - [sym_conditional_expression] = STATE(3537), - [sym_equality_expression] = STATE(3537), - [sym_relational_expression] = STATE(3537), - [sym_delete_expression] = STATE(3537), - [sym_sizeof_expression] = STATE(3537), - [sym_parenthesized_expression] = STATE(3537), - [sym_lambda_expression] = STATE(3537), - [sym_concatenated_string] = STATE(3537), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(3537), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(3537), - [sym_math_expression] = STATE(3537), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7565), + [2589] = { + [sym_template_function] = STATE(3509), + [sym__expression] = STATE(3509), + [sym_logical_expression] = STATE(3509), + [sym_bitwise_expression] = STATE(3509), + [sym_cast_expression] = STATE(3509), + [sym_delete_expression] = STATE(3509), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3509), + [sym_lambda_expression] = STATE(3509), + [sym_char_literal] = STATE(3509), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3509), + [sym_equality_expression] = STATE(3509), + [sym_relational_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3509), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3509), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(3509), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3509), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3509), + [sym_math_expression] = STATE(3509), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3509), + [sym_raw_string_literal] = ACTIONS(7546), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(7567), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(7567), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(7548), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(7548), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7565), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(7546), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(7567), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(7567), + [sym_false] = ACTIONS(7548), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(7548), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(7563), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(7544), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [2605] = { - [anon_sym_LPAREN2] = ACTIONS(3743), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), - [anon_sym_restrict] = ACTIONS(3748), - [anon_sym_mutable] = ACTIONS(3748), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3752), - [anon_sym_static] = ACTIONS(3748), - [anon_sym_volatile] = ACTIONS(3748), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_explicit] = ACTIONS(3748), - [sym_identifier] = ACTIONS(3748), - [sym_operator_name] = ACTIONS(3746), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3739), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym__Atomic] = ACTIONS(3748), - [anon_sym_constexpr] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_inline] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3739), + [2590] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(7550), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2606] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(7569), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2591] = { + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(3512), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(7552), }, - [2607] = { - [sym_parameter_list] = STATE(2611), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2754), + [2592] = { + [aux_sym_declaration_repeat1] = STATE(3512), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(7552), }, - [2608] = { - [sym_scoped_type_identifier] = STATE(174), - [sym_template_type] = STATE(308), - [sym_reference_declarator] = STATE(3539), - [sym_pointer_declarator] = STATE(3539), - [sym_scoped_namespace_identifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(694), - [sym_template_function] = STATE(3539), - [sym_destructor_name] = STATE(3539), - [sym__declarator] = STATE(3539), - [sym_array_declarator] = STATE(3539), - [sym_scoped_identifier] = STATE(1587), - [sym_type_qualifier] = STATE(694), - [sym_function_declarator] = STATE(3539), - [anon_sym_LPAREN2] = ACTIONS(456), + [2593] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(7554), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [2594] = { + [sym_parameter_list] = STATE(2598), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_COLON] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(3), + }, + [2595] = { + [aux_sym_type_definition_repeat1] = STATE(695), + [sym_template_function] = STATE(3514), + [sym_destructor_name] = STATE(3514), + [sym_pointer_declarator] = STATE(3514), + [sym_structured_binding_declarator] = STATE(3514), + [sym__declarator] = STATE(3514), + [sym_scoped_identifier] = STATE(1581), + [sym_scoped_type_identifier] = STATE(173), + [sym_reference_declarator] = STATE(3514), + [sym_array_declarator] = STATE(3514), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_type_qualifier] = STATE(695), + [sym_function_declarator] = STATE(3514), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(478), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3174), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [sym_operator_name] = ACTIONS(7571), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [sym_operator_name] = ACTIONS(7556), [anon_sym_restrict] = ACTIONS(11), }, - [2609] = { - [sym_parameter_list] = STATE(2611), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), + [2596] = { + [sym_parameter_list] = STATE(2598), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), [sym_comment] = ACTIONS(3), }, - [2610] = { - [anon_sym_LPAREN2] = ACTIONS(4077), - [anon_sym_DASH] = ACTIONS(4075), - [sym_raw_string_literal] = ACTIONS(4077), - [sym_true] = ACTIONS(4075), - [sym_null] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(4077), - [sym_number_literal] = ACTIONS(4077), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_LBRACK] = ACTIONS(4077), - [anon_sym_BANG] = ACTIONS(4077), - [anon_sym_AMP] = ACTIONS(4077), - [anon_sym_sizeof] = ACTIONS(4075), - [sym_false] = ACTIONS(4075), - [anon_sym_PLUS] = ACTIONS(4075), - [sym_nullptr] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4077), - [anon_sym_TILDE] = ACTIONS(4077), - [anon_sym_SEMI] = ACTIONS(4077), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(4075), - [anon_sym_new] = ACTIONS(4075), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_SQUOTE] = ACTIONS(4077), - [anon_sym_delete] = ACTIONS(4075), - [anon_sym_DASH_DASH] = ACTIONS(4077), + [2597] = { + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4111), + [sym_raw_string_literal] = ACTIONS(4113), + [sym_true] = ACTIONS(4111), + [sym_null] = ACTIONS(4111), + [anon_sym_DQUOTE] = ACTIONS(4113), + [sym_number_literal] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_LBRACK] = ACTIONS(4113), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [sym_nullptr] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4113), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_PLUS_PLUS] = ACTIONS(4113), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_delete] = ACTIONS(4111), + [anon_sym_DASH_DASH] = ACTIONS(4113), }, - [2611] = { - [sym_virtual_specifier] = STATE(3540), - [aux_sym_function_declarator_repeat1] = STATE(3540), - [sym_trailing_return_type] = STATE(3540), - [sym_type_qualifier] = STATE(3540), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(7573), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(7453), - [anon_sym_EQ] = ACTIONS(1841), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1841), + [2598] = { + [sym_virtual_specifier] = STATE(3515), + [aux_sym_function_declarator_repeat1] = STATE(3515), + [sym_type_qualifier] = STATE(3515), + [sym_trailing_return_type] = STATE(3515), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(7558), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_COLON] = ACTIONS(1899), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(7438), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1899), }, - [2612] = { - [aux_sym_declaration_repeat1] = STATE(2028), + [2599] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(7575), - }, - [2613] = { - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(3542), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(7575), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(7552), }, - [2614] = { - [aux_sym_declaration_repeat1] = STATE(3542), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(7575), + [2600] = { + [anon_sym_LPAREN2] = ACTIONS(3854), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + [anon_sym_restrict] = ACTIONS(3859), + [anon_sym_mutable] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_static] = ACTIONS(3859), + [anon_sym_volatile] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3854), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3857), + [anon_sym_explicit] = ACTIONS(3859), + [sym_identifier] = ACTIONS(3859), + [sym_operator_name] = ACTIONS(3857), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3852), + [anon_sym_register] = ACTIONS(3859), + [anon_sym_const] = ACTIONS(3859), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_PERCENT] = ACTIONS(3850), + [anon_sym_extern] = ACTIONS(3859), + [anon_sym__Atomic] = ACTIONS(3859), + [anon_sym_constexpr] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(3854), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_inline] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3850), }, - [2615] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(7577), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2601] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4979), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4979), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(4979), + [anon_sym_RBRACK] = ACTIONS(4979), }, - [2616] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_PERCENT] = ACTIONS(4983), + [2602] = { + [anon_sym_LPAREN2] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_PERCENT] = ACTIONS(4981), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(4983), - [anon_sym_RBRACK] = ACTIONS(4983), - }, - [2617] = { - [anon_sym_LPAREN2] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4985), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_GT_GT] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_QMARK] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), }, - [2618] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3544), - [sym_logical_expression] = STATE(3544), - [sym_bitwise_expression] = STATE(3544), - [sym_cast_expression] = STATE(3544), - [sym_new_expression] = STATE(3544), + [2603] = { + [sym_template_function] = STATE(3516), + [sym__expression] = STATE(3516), + [sym_logical_expression] = STATE(3516), + [sym_bitwise_expression] = STATE(3516), + [sym_cast_expression] = STATE(3516), + [sym_delete_expression] = STATE(3516), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(3544), - [sym_char_literal] = STATE(3544), - [sym_template_function] = STATE(3544), - [sym_conditional_expression] = STATE(3544), - [sym_equality_expression] = STATE(3544), - [sym_relational_expression] = STATE(3544), - [sym_delete_expression] = STATE(3544), - [sym_sizeof_expression] = STATE(3544), - [sym_parenthesized_expression] = STATE(3544), - [sym_lambda_expression] = STATE(3544), - [sym_concatenated_string] = STATE(3544), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(3516), + [sym_lambda_expression] = STATE(3516), + [sym_char_literal] = STATE(3516), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(3516), + [sym_equality_expression] = STATE(3516), + [sym_relational_expression] = STATE(3516), + [sym_sizeof_expression] = STATE(3516), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(3544), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(3516), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(3516), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3516), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(3544), - [sym_math_expression] = STATE(3544), + [sym_shift_expression] = STATE(3516), + [sym_math_expression] = STATE(3516), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7579), - [anon_sym_DASH] = ACTIONS(388), - [sym_true] = ACTIONS(7581), - [anon_sym_DASH_DASH] = ACTIONS(396), - [sym_null] = ACTIONS(7581), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(7579), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(402), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7581), - [sym_nullptr] = ACTIONS(7581), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), + [sym_new_expression] = STATE(3516), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7560), + [anon_sym_DASH] = ACTIONS(390), + [sym_true] = ACTIONS(7562), + [anon_sym_DASH_DASH] = ACTIONS(398), + [sym_null] = ACTIONS(7562), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(7560), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7562), + [sym_nullptr] = ACTIONS(7562), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), }, - [2619] = { - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_STAR_EQ] = ACTIONS(2816), - [anon_sym_LT_LT_EQ] = ACTIONS(2816), - [anon_sym_PERCENT_EQ] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_CARET_EQ] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_SLASH_EQ] = ACTIONS(2816), - [anon_sym_PLUS_EQ] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_PIPE_EQ] = ACTIONS(2816), - [anon_sym_GT_GT_EQ] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_DASH_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_AMP_EQ] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_DASH_GT] = ACTIONS(2816), - [anon_sym_EQ] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_RBRACK] = ACTIONS(2816), + [2604] = { + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_STAR_EQ] = ACTIONS(2818), + [anon_sym_LT_LT_EQ] = ACTIONS(2818), + [anon_sym_PERCENT_EQ] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_CARET_EQ] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_SLASH_EQ] = ACTIONS(2818), + [anon_sym_PLUS_EQ] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_PIPE_EQ] = ACTIONS(2818), + [anon_sym_GT_GT_EQ] = ACTIONS(2818), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_DASH_EQ] = ACTIONS(2818), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_AMP_EQ] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_DASH_GT] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_RBRACK] = ACTIONS(2818), }, - [2620] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3545), - [sym_logical_expression] = STATE(3545), - [sym_bitwise_expression] = STATE(3545), - [sym_cast_expression] = STATE(3545), - [sym_new_expression] = STATE(3545), - [sym_field_expression] = STATE(3545), - [sym_compound_literal_expression] = STATE(3545), - [sym_char_literal] = STATE(3545), - [sym_template_function] = STATE(3545), - [sym_conditional_expression] = STATE(3545), - [sym_equality_expression] = STATE(3545), - [sym_relational_expression] = STATE(3545), - [sym_delete_expression] = STATE(3545), - [sym_sizeof_expression] = STATE(3545), - [sym_parenthesized_expression] = STATE(3545), - [sym_initializer_list] = STATE(3546), - [sym_concatenated_string] = STATE(3545), - [sym_string_literal] = STATE(758), - [sym_lambda_expression] = STATE(3545), + [2605] = { + [sym_template_function] = STATE(3517), + [sym__expression] = STATE(3517), + [sym_logical_expression] = STATE(3517), + [sym_bitwise_expression] = STATE(3517), + [sym_cast_expression] = STATE(3517), + [sym_delete_expression] = STATE(3517), + [sym_field_expression] = STATE(3517), + [sym_compound_literal_expression] = STATE(3517), + [sym_lambda_expression] = STATE(3517), + [sym_char_literal] = STATE(3517), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3545), - [sym_assignment_expression] = STATE(3545), - [sym_pointer_expression] = STATE(3545), - [sym_shift_expression] = STATE(3545), - [sym_math_expression] = STATE(3545), - [sym_call_expression] = STATE(3545), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3517), + [sym_equality_expression] = STATE(3517), + [sym_relational_expression] = STATE(3517), + [sym_sizeof_expression] = STATE(3517), + [sym_subscript_expression] = STATE(3517), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7583), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(7585), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [sym_null] = ACTIONS(7585), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7583), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(7585), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(7585), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(3241), + [sym_initializer_list] = STATE(3518), + [sym_parenthesized_expression] = STATE(3517), + [sym_string_literal] = STATE(759), + [sym_lambda_capture_specifier] = STATE(758), + [sym_concatenated_string] = STATE(3517), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3517), + [sym_pointer_expression] = STATE(3517), + [sym_shift_expression] = STATE(3517), + [sym_math_expression] = STATE(3517), + [sym_call_expression] = STATE(3517), + [sym_new_expression] = STATE(3517), + [sym_raw_string_literal] = ACTIONS(7564), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [sym_null] = ACTIONS(7566), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7564), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(7566), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(3243), }, - [2621] = { - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_STAR_EQ] = ACTIONS(3184), - [anon_sym_LT_LT_EQ] = ACTIONS(3184), - [anon_sym_PERCENT_EQ] = ACTIONS(3184), - [anon_sym_EQ_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_CARET_EQ] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_GT_EQ] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_SLASH_EQ] = ACTIONS(3184), - [anon_sym_PLUS_EQ] = ACTIONS(3184), - [anon_sym_CARET] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_PIPE_EQ] = ACTIONS(3184), - [anon_sym_GT_GT_EQ] = ACTIONS(3184), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PIPE_PIPE] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_LT_LT] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3184), - [anon_sym_DASH_EQ] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3184), - [anon_sym_AMP_EQ] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_DASH_GT] = ACTIONS(3184), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3186), - [anon_sym_RBRACK] = ACTIONS(3184), + [2606] = { + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_LT_LT_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_CARET_EQ] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3188), + [anon_sym_GT] = ACTIONS(3188), + [anon_sym_PIPE_EQ] = ACTIONS(3186), + [anon_sym_GT_GT_EQ] = ACTIONS(3186), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_AMP_EQ] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3186), }, - [2622] = { - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1651), - [anon_sym_LT_LT_EQ] = ACTIONS(1651), - [anon_sym_PERCENT_EQ] = ACTIONS(1651), - [anon_sym_EQ_EQ] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_CARET_EQ] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_SLASH_EQ] = ACTIONS(1651), - [anon_sym_PLUS_EQ] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_PIPE_EQ] = ACTIONS(1651), - [anon_sym_GT_GT_EQ] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_PIPE_PIPE] = ACTIONS(1651), - [anon_sym_DOT] = ACTIONS(1651), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_PERCENT] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_DASH_EQ] = ACTIONS(1651), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_AMP_EQ] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_DASH_GT] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_RBRACK] = ACTIONS(1651), + [2607] = { + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_STAR_EQ] = ACTIONS(1661), + [anon_sym_LT_LT_EQ] = ACTIONS(1661), + [anon_sym_PERCENT_EQ] = ACTIONS(1661), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_CARET_EQ] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_SLASH_EQ] = ACTIONS(1661), + [anon_sym_PLUS_EQ] = ACTIONS(1661), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_PIPE_EQ] = ACTIONS(1661), + [anon_sym_GT_GT_EQ] = ACTIONS(1661), + [anon_sym_COMMA] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_DOT] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_DASH_EQ] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_AMP_EQ] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_DASH_GT] = ACTIONS(1661), + [anon_sym_EQ] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_GT_GT] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(1661), }, - [2623] = { - [sym_template_type] = STATE(239), + [2608] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(7587), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(7568), }, - [2624] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(5490), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(2925), + [2609] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(5485), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(5487), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(5489), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(2927), }, - [2625] = { - [anon_sym_RPAREN] = ACTIONS(7589), + [2610] = { + [anon_sym_RPAREN] = ACTIONS(7570), [sym_comment] = ACTIONS(3), }, - [2626] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(5490), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(2160), - }, - [2627] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [2611] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), [anon_sym_STAR_EQ] = ACTIONS(2162), [anon_sym_LT_LT_EQ] = ACTIONS(2162), [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5479), [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), [anon_sym_SLASH_EQ] = ACTIONS(2162), [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(5485), + [anon_sym_GT] = ACTIONS(5479), [anon_sym_PIPE_EQ] = ACTIONS(2162), [anon_sym_GT_GT_EQ] = ACTIONS(2162), [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(5487), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(2162), [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(5489), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), [anon_sym_RBRACK] = ACTIONS(2162), }, - [2628] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_LT_LT_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2164), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_RBRACK] = ACTIONS(2162), + [2612] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_STAR_EQ] = ACTIONS(2164), + [anon_sym_LT_LT_EQ] = ACTIONS(2164), + [anon_sym_PERCENT_EQ] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_CARET_EQ] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_SLASH_EQ] = ACTIONS(2164), + [anon_sym_PLUS_EQ] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_PIPE_EQ] = ACTIONS(2164), + [anon_sym_GT_GT_EQ] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_DASH_EQ] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_RBRACK] = ACTIONS(2164), }, - [2629] = { - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_final] = ACTIONS(2202), - [anon_sym_STAR_EQ] = ACTIONS(2202), - [anon_sym_LT_LT_EQ] = ACTIONS(2202), - [anon_sym_PERCENT_EQ] = ACTIONS(2202), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_CARET_EQ] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2204), - [anon_sym_SLASH_EQ] = ACTIONS(2202), - [anon_sym_PLUS_EQ] = ACTIONS(2202), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_PIPE_EQ] = ACTIONS(2202), - [anon_sym_GT_GT_EQ] = ACTIONS(2202), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(2202), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2204), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2202), - [anon_sym_DASH_EQ] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_AMP_EQ] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_DASH_GT] = ACTIONS(2202), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACK] = ACTIONS(2202), + [2613] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_STAR_EQ] = ACTIONS(2164), + [anon_sym_LT_LT_EQ] = ACTIONS(2164), + [anon_sym_PERCENT_EQ] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_CARET_EQ] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_SLASH_EQ] = ACTIONS(2164), + [anon_sym_PLUS_EQ] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_PIPE_EQ] = ACTIONS(2164), + [anon_sym_GT_GT_EQ] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_DASH_EQ] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_RBRACK] = ACTIONS(2164), }, - [2630] = { - [sym_argument_list] = STATE(1165), - [aux_sym_template_argument_list_repeat1] = STATE(3550), + [2614] = { + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_GT_GT] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_final] = ACTIONS(2204), + [anon_sym_STAR_EQ] = ACTIONS(2204), + [anon_sym_LT_LT_EQ] = ACTIONS(2204), + [anon_sym_PERCENT_EQ] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_CARET_EQ] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_SLASH_EQ] = ACTIONS(2204), + [anon_sym_PLUS_EQ] = ACTIONS(2204), + [anon_sym_CARET] = ACTIONS(2206), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_PIPE_EQ] = ACTIONS(2204), + [anon_sym_GT_GT_EQ] = ACTIONS(2204), + [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2204), + [anon_sym_DASH_EQ] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_AMP_EQ] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_DASH_GT] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACK] = ACTIONS(2204), + }, + [2615] = { + [aux_sym_template_argument_list_repeat1] = STATE(3522), + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), @@ -111519,7 +111309,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_GT2] = ACTIONS(7591), + [anon_sym_GT2] = ACTIONS(7572), [anon_sym_AMP] = ACTIONS(2321), [anon_sym_QMARK] = ACTIONS(2323), [sym_comment] = ACTIONS(3), @@ -111535,779 +111325,739 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2631] = { - [aux_sym_template_argument_list_repeat1] = STATE(3552), + [2616] = { + [aux_sym_template_argument_list_repeat1] = STATE(3524), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(7593), + [anon_sym_GT2] = ACTIONS(7574), [sym_comment] = ACTIONS(3), }, - [2632] = { + [2617] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7595), + [anon_sym_RBRACE] = ACTIONS(7576), }, - [2633] = { - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2397), - [anon_sym_STAR_EQ] = ACTIONS(2397), - [anon_sym_LT_LT_EQ] = ACTIONS(2397), - [anon_sym_PERCENT_EQ] = ACTIONS(2397), - [anon_sym_EQ_EQ] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_CARET_EQ] = ACTIONS(2397), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_GT_EQ] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_SLASH] = ACTIONS(2399), - [anon_sym_SLASH_EQ] = ACTIONS(2397), - [anon_sym_PLUS_EQ] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_PIPE_EQ] = ACTIONS(2397), - [anon_sym_GT_GT_EQ] = ACTIONS(2397), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_PIPE_PIPE] = ACTIONS(2397), - [anon_sym_DOT] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2397), - [anon_sym_DASH_EQ] = ACTIONS(2397), - [anon_sym_LT_EQ] = ACTIONS(2397), - [anon_sym_BANG_EQ] = ACTIONS(2397), - [anon_sym_AMP_EQ] = ACTIONS(2397), - [anon_sym_AMP_AMP] = ACTIONS(2397), - [anon_sym_DASH_GT] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_GT_GT] = ACTIONS(2399), - [anon_sym_RBRACK] = ACTIONS(2397), + [2618] = { + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_STAR_EQ] = ACTIONS(2399), + [anon_sym_LT_LT_EQ] = ACTIONS(2399), + [anon_sym_PERCENT_EQ] = ACTIONS(2399), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_CARET_EQ] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_SLASH_EQ] = ACTIONS(2399), + [anon_sym_PLUS_EQ] = ACTIONS(2399), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_PIPE_EQ] = ACTIONS(2399), + [anon_sym_GT_GT_EQ] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_DOT] = ACTIONS(2399), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_PERCENT] = ACTIONS(2401), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2399), + [anon_sym_DASH_EQ] = ACTIONS(2399), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_AMP_EQ] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_DASH_GT] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_RBRACK] = ACTIONS(2399), }, - [2634] = { - [sym_argument_list] = STATE(341), - [aux_sym_initializer_list_repeat1] = STATE(3555), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(7595), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2619] = { + [aux_sym_initializer_list_repeat1] = STATE(3527), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(7578), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(7576), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2635] = { - [aux_sym_initializer_list_repeat1] = STATE(3555), + [2620] = { + [aux_sym_initializer_list_repeat1] = STATE(3527), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_RBRACE] = ACTIONS(7595), + [anon_sym_COMMA] = ACTIONS(7578), + [anon_sym_RBRACE] = ACTIONS(7576), }, - [2636] = { - [sym_template_argument_list] = STATE(2652), - [sym_virtual_specifier] = STATE(3556), - [sym_field_declaration_list] = STATE(3557), - [sym_base_class_clause] = STATE(3558), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1084), - [anon_sym_LT_LT_EQ] = ACTIONS(1084), - [anon_sym_PERCENT_EQ] = ACTIONS(1084), - [anon_sym_COLON_COLON] = ACTIONS(5446), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_CARET_EQ] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_SLASH] = ACTIONS(1086), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1084), - [anon_sym_PLUS_EQ] = ACTIONS(1084), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1084), - [anon_sym_GT_GT_EQ] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_PERCENT] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_DASH_EQ] = ACTIONS(1084), - [anon_sym_LT_EQ] = ACTIONS(1084), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_AMP_EQ] = ACTIONS(1084), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_DASH_GT] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(1084), + [2621] = { + [sym_virtual_specifier] = STATE(3528), + [sym_template_argument_list] = STATE(2637), + [sym_field_declaration_list] = STATE(3529), + [sym_base_class_clause] = STATE(3530), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1088), + [anon_sym_LT_LT_EQ] = ACTIONS(1088), + [anon_sym_PERCENT_EQ] = ACTIONS(1088), + [anon_sym_COLON_COLON] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1088), + [anon_sym_PLUS_EQ] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1088), + [anon_sym_GT_GT_EQ] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_PERCENT] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_DASH_EQ] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_AMP_EQ] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_DASH_GT] = ACTIONS(1088), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(1088), }, - [2637] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3560), - [sym_preproc_function_def] = STATE(3560), - [sym_alias_declaration] = STATE(3560), + [2622] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3532), + [sym_preproc_function_def] = STATE(3532), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3560), - [sym_preproc_if_in_field_declaration_list] = STATE(3560), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3560), - [sym_type_definition] = STATE(3560), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3560), - [sym__field_declaration_list_item] = STATE(3560), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3560), - [sym_inline_method_definition] = STATE(3560), - [sym_friend_declaration] = STATE(3560), - [sym_access_specifier] = STATE(3560), - [sym_using_declaration] = STATE(3560), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3560), - [sym_constructor_or_destructor_definition] = STATE(3560), - [sym_constructor_or_destructor_declaration] = STATE(3560), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3532), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3532), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3532), + [sym_preproc_if_in_field_declaration_list] = STATE(3532), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3532), + [sym_type_definition] = STATE(3532), + [sym_using_declaration] = STATE(3532), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3532), + [sym_inline_method_definition] = STATE(3532), + [sym_constructor_or_destructor_definition] = STATE(3532), + [sym_access_specifier] = STATE(3532), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3532), + [sym_alias_declaration] = STATE(3532), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3532), + [sym_constructor_or_destructor_declaration] = STATE(3532), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(7601), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(7582), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [2638] = { - [sym_field_declaration_list] = STATE(3561), - [sym_base_class_clause] = STATE(3562), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(5438), + [2623] = { + [sym_virtual_specifier] = STATE(3533), + [sym_template_argument_list] = STATE(2654), + [sym_field_declaration_list] = STATE(3534), + [sym_base_class_clause] = STATE(3535), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1132), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(1130), }, - [2639] = { - [sym_virtual_specifier] = STATE(3563), - [sym_field_declaration_list] = STATE(3561), - [sym_base_class_clause] = STATE(3562), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(5457), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(1126), - }, - [2640] = { - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_RBRACK] = ACTIONS(1126), - }, - [2641] = { - [sym_template_argument_list] = STATE(2663), - [sym_virtual_specifier] = STATE(3563), - [sym_field_declaration_list] = STATE(3561), - [sym_base_class_clause] = STATE(3562), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(1126), - }, - [2642] = { - [sym_field_declaration_list] = STATE(3561), - [anon_sym_LBRACE] = ACTIONS(5438), + [2624] = { + [sym_field_declaration_list] = STATE(3534), + [sym_base_class_clause] = STATE(3535), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [2643] = { - [sym_template_argument_list] = STATE(2652), - [sym_virtual_specifier] = STATE(3564), - [sym_field_declaration_list] = STATE(3565), - [sym_base_class_clause] = STATE(3566), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(5446), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1251), - [anon_sym_GT_GT_EQ] = ACTIONS(1251), - [anon_sym_COMMA] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_AMP_EQ] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_DASH_GT] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(1251), - }, - [2644] = { - [sym_field_declaration_list] = STATE(3567), - [sym_base_class_clause] = STATE(3568), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(5438), + [2625] = { + [sym_virtual_specifier] = STATE(3533), + [sym_field_declaration_list] = STATE(3534), + [sym_base_class_clause] = STATE(3535), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(5469), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1132), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(1130), }, - [2645] = { - [sym_virtual_specifier] = STATE(3569), - [sym_field_declaration_list] = STATE(3567), - [sym_base_class_clause] = STATE(3568), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_LT_LT_EQ] = ACTIONS(1255), - [anon_sym_PERCENT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(5457), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_CARET_EQ] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1255), - [anon_sym_GT_GT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1257), + [2626] = { + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1132), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACK] = ACTIONS(1130), }, - [2646] = { - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_LT_LT_EQ] = ACTIONS(1255), - [anon_sym_PERCENT_EQ] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_CARET_EQ] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1255), - [anon_sym_GT_GT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1257), + [2627] = { + [sym_field_declaration_list] = STATE(3534), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACK] = ACTIONS(1255), }, - [2647] = { - [sym_template_argument_list] = STATE(2663), - [sym_virtual_specifier] = STATE(3569), - [sym_field_declaration_list] = STATE(3567), - [sym_base_class_clause] = STATE(3568), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_LT_LT_EQ] = ACTIONS(1255), - [anon_sym_PERCENT_EQ] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_CARET_EQ] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1255), - [anon_sym_GT_GT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1257), + [2628] = { + [sym_virtual_specifier] = STATE(3536), + [sym_template_argument_list] = STATE(2637), + [sym_field_declaration_list] = STATE(3537), + [sym_base_class_clause] = STATE(3538), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_DASH_GT] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(1257), }, - [2648] = { - [sym_field_declaration_list] = STATE(3567), - [anon_sym_LBRACE] = ACTIONS(5438), - [sym_comment] = ACTIONS(3), + [2629] = { + [sym_virtual_specifier] = STATE(3539), + [sym_template_argument_list] = STATE(2654), + [sym_field_declaration_list] = STATE(3540), + [sym_base_class_clause] = STATE(3541), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(1261), }, - [2649] = { - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_GT_GT] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_STAR_EQ] = ACTIONS(1259), - [anon_sym_LT_LT_EQ] = ACTIONS(1259), - [anon_sym_PERCENT_EQ] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_CARET_EQ] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_SLASH_EQ] = ACTIONS(1259), - [anon_sym_PLUS_EQ] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_PIPE_EQ] = ACTIONS(1259), - [anon_sym_GT_GT_EQ] = ACTIONS(1259), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT_LT] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_PERCENT] = ACTIONS(1261), + [2630] = { + [sym_field_declaration_list] = STATE(3540), + [sym_base_class_clause] = STATE(3541), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_DASH_EQ] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_AMP_EQ] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_DASH_GT] = ACTIONS(1259), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACK] = ACTIONS(1259), }, - [2650] = { - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1135), - [anon_sym_final] = ACTIONS(1135), - [anon_sym_STAR_EQ] = ACTIONS(1135), - [anon_sym_LT_LT_EQ] = ACTIONS(1135), - [anon_sym_PERCENT_EQ] = ACTIONS(1135), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_CARET_EQ] = ACTIONS(1135), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_GT_EQ] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_SLASH] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1137), - [anon_sym_SLASH_EQ] = ACTIONS(1135), - [anon_sym_PLUS_EQ] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1137), - [anon_sym_GT] = ACTIONS(1137), - [anon_sym_PIPE_EQ] = ACTIONS(1135), - [anon_sym_GT_GT_EQ] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_PERCENT] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_DASH_EQ] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1135), - [anon_sym_BANG_EQ] = ACTIONS(1135), - [anon_sym_AMP_EQ] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_DASH_GT] = ACTIONS(1135), - [anon_sym_EQ] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_RBRACK] = ACTIONS(1135), + [2631] = { + [sym_virtual_specifier] = STATE(3539), + [sym_field_declaration_list] = STATE(3540), + [sym_base_class_clause] = STATE(3541), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(5469), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(1261), }, - [2651] = { - [sym_identifier] = ACTIONS(7603), + [2632] = { + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1261), + }, + [2633] = { + [sym_field_declaration_list] = STATE(3540), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [2652] = { - [anon_sym_LPAREN2] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(789), - [anon_sym_final] = ACTIONS(789), - [anon_sym_STAR_EQ] = ACTIONS(789), - [anon_sym_LT_LT_EQ] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_CARET_EQ] = ACTIONS(789), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_override] = ACTIONS(789), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_SLASH_EQ] = ACTIONS(789), - [anon_sym_PLUS_EQ] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_PIPE_EQ] = ACTIONS(789), - [anon_sym_GT_GT_EQ] = ACTIONS(789), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_DASH_EQ] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_AMP_EQ] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_DASH_GT] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(789), + [2634] = { + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_PERCENT] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_DASH_GT] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACK] = ACTIONS(1265), }, - [2653] = { - [sym_enumerator] = STATE(3573), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(7605), - [anon_sym_COMMA] = ACTIONS(7607), + [2635] = { + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_final] = ACTIONS(1141), + [anon_sym_STAR_EQ] = ACTIONS(1141), + [anon_sym_LT_LT_EQ] = ACTIONS(1141), + [anon_sym_PERCENT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_CARET_EQ] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_override] = ACTIONS(1141), + [anon_sym_COLON] = ACTIONS(1143), + [anon_sym_SLASH_EQ] = ACTIONS(1141), + [anon_sym_PLUS_EQ] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_PIPE_EQ] = ACTIONS(1141), + [anon_sym_GT_GT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_PERCENT] = ACTIONS(1143), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_DASH_EQ] = ACTIONS(1141), + [anon_sym_LT_EQ] = ACTIONS(1141), + [anon_sym_BANG_EQ] = ACTIONS(1141), + [anon_sym_AMP_EQ] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_DASH_GT] = ACTIONS(1141), + [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_RBRACK] = ACTIONS(1141), }, - [2654] = { - [sym_enumerator_list] = STATE(3574), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_STAR_EQ] = ACTIONS(872), - [anon_sym_LT_LT_EQ] = ACTIONS(872), - [anon_sym_PERCENT_EQ] = ACTIONS(872), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_CARET_EQ] = ACTIONS(872), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_SLASH_EQ] = ACTIONS(872), - [anon_sym_PLUS_EQ] = ACTIONS(872), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_PIPE_EQ] = ACTIONS(872), - [anon_sym_GT_GT_EQ] = ACTIONS(872), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_DOT] = ACTIONS(872), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PERCENT] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(872), - [anon_sym_DASH_EQ] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_AMP_EQ] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_RBRACK] = ACTIONS(872), + [2636] = { + [sym_identifier] = ACTIONS(7584), + [sym_comment] = ACTIONS(3), }, - [2655] = { + [2637] = { + [anon_sym_LPAREN2] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_final] = ACTIONS(797), + [anon_sym_STAR_EQ] = ACTIONS(797), + [anon_sym_LT_LT_EQ] = ACTIONS(797), + [anon_sym_PERCENT_EQ] = ACTIONS(797), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_CARET_EQ] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_override] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SLASH_EQ] = ACTIONS(797), + [anon_sym_PLUS_EQ] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_PIPE_EQ] = ACTIONS(797), + [anon_sym_GT_GT_EQ] = ACTIONS(797), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_LT_LT] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_PERCENT] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_DASH_EQ] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_AMP_EQ] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_DASH_GT] = ACTIONS(797), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_RBRACK] = ACTIONS(797), + }, + [2638] = { + [sym_enumerator] = STATE(3545), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7588), + [sym_comment] = ACTIONS(3), + }, + [2639] = { + [sym_enumerator_list] = STATE(3546), [anon_sym_LPAREN2] = ACTIONS(876), [anon_sym_GT_GT] = ACTIONS(878), [anon_sym_DASH] = ACTIONS(878), @@ -112349,1336 +112099,1250 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(876), [anon_sym_RBRACK] = ACTIONS(876), }, - [2656] = { - [sym_template_argument_list] = STATE(2652), - [sym_virtual_specifier] = STATE(3575), - [sym_field_declaration_list] = STATE(3576), - [sym_base_class_clause] = STATE(3577), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_GT_GT] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_LT_LT_EQ] = ACTIONS(1472), - [anon_sym_PERCENT_EQ] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(5446), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_CARET_EQ] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_SLASH] = ACTIONS(1474), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_PIPE_EQ] = ACTIONS(1472), - [anon_sym_GT_GT_EQ] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_LT_LT] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_AMP_EQ] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_DASH_GT] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(1472), + [2640] = { + [anon_sym_LPAREN2] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_STAR_EQ] = ACTIONS(880), + [anon_sym_LT_LT_EQ] = ACTIONS(880), + [anon_sym_PERCENT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_CARET_EQ] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_SLASH_EQ] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_PIPE_EQ] = ACTIONS(880), + [anon_sym_GT_GT_EQ] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_PERCENT] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(880), + [anon_sym_DASH_EQ] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_AMP_EQ] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_DASH_GT] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(880), }, - [2657] = { - [sym_field_declaration_list] = STATE(3578), - [sym_base_class_clause] = STATE(3579), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(5438), - [sym_comment] = ACTIONS(3), + [2641] = { + [sym_virtual_specifier] = STATE(3547), + [sym_template_argument_list] = STATE(2637), + [sym_field_declaration_list] = STATE(3548), + [sym_base_class_clause] = STATE(3549), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_DASH_GT] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(1486), }, - [2658] = { - [sym_virtual_specifier] = STATE(3580), - [sym_field_declaration_list] = STATE(3578), - [sym_base_class_clause] = STATE(3579), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(5457), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(1476), + [2642] = { + [sym_virtual_specifier] = STATE(3550), + [sym_template_argument_list] = STATE(2654), + [sym_field_declaration_list] = STATE(3551), + [sym_base_class_clause] = STATE(3552), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(1490), }, - [2659] = { - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1476), + [2643] = { + [sym_field_declaration_list] = STATE(3551), + [sym_base_class_clause] = STATE(3552), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(5437), + [sym_comment] = ACTIONS(3), }, - [2660] = { - [sym_template_argument_list] = STATE(2663), - [sym_virtual_specifier] = STATE(3580), - [sym_field_declaration_list] = STATE(3578), - [sym_base_class_clause] = STATE(3579), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(1476), + [2644] = { + [sym_virtual_specifier] = STATE(3550), + [sym_field_declaration_list] = STATE(3551), + [sym_base_class_clause] = STATE(3552), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(5469), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(1490), }, - [2661] = { - [sym_field_declaration_list] = STATE(3578), - [anon_sym_LBRACE] = ACTIONS(5438), - [sym_comment] = ACTIONS(3), + [2645] = { + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), }, - [2662] = { - [sym_identifier] = ACTIONS(7609), + [2646] = { + [sym_field_declaration_list] = STATE(3551), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [2663] = { - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_final] = ACTIONS(2036), - [anon_sym_STAR_EQ] = ACTIONS(2036), - [anon_sym_LT_LT_EQ] = ACTIONS(2036), - [anon_sym_PERCENT_EQ] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_CARET_EQ] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_override] = ACTIONS(2036), - [anon_sym_COLON] = ACTIONS(2038), - [anon_sym_SLASH_EQ] = ACTIONS(2036), - [anon_sym_PLUS_EQ] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2038), - [anon_sym_GT] = ACTIONS(2038), - [anon_sym_PIPE_EQ] = ACTIONS(2036), - [anon_sym_GT_GT_EQ] = ACTIONS(2036), - [anon_sym_COMMA] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_PERCENT] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2036), - [anon_sym_DASH_EQ] = ACTIONS(2036), - [anon_sym_LT_EQ] = ACTIONS(2036), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_AMP_EQ] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_DASH_GT] = ACTIONS(2036), - [anon_sym_EQ] = ACTIONS(2038), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACK] = ACTIONS(2036), - }, - [2664] = { - [anon_sym_LPAREN2] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_STAR_EQ] = ACTIONS(2069), - [anon_sym_LT_LT_EQ] = ACTIONS(2069), - [anon_sym_PERCENT_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_CARET_EQ] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_SLASH] = ACTIONS(2071), - [anon_sym_SLASH_EQ] = ACTIONS(2069), - [anon_sym_PLUS_EQ] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2071), - [anon_sym_GT] = ACTIONS(2071), - [anon_sym_PIPE_EQ] = ACTIONS(2069), - [anon_sym_GT_GT_EQ] = ACTIONS(2069), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_PERCENT] = ACTIONS(2071), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2069), - [anon_sym_DASH_EQ] = ACTIONS(2069), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_AMP_EQ] = ACTIONS(2069), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_DASH_GT] = ACTIONS(2069), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACK] = ACTIONS(2069), + [2647] = { + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_LT_LT_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_CARET_EQ] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_PIPE_EQ] = ACTIONS(1770), + [anon_sym_GT_GT_EQ] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_AMP_EQ] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), }, - [2665] = { - [anon_sym_LPAREN2] = ACTIONS(2073), - [anon_sym_GT_GT] = ACTIONS(2075), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_STAR_EQ] = ACTIONS(2073), - [anon_sym_LT_LT_EQ] = ACTIONS(2073), - [anon_sym_PERCENT_EQ] = ACTIONS(2073), - [anon_sym_EQ_EQ] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_CARET_EQ] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2075), - [anon_sym_GT_EQ] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_SLASH] = ACTIONS(2075), - [anon_sym_SLASH_EQ] = ACTIONS(2073), - [anon_sym_PLUS_EQ] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2075), - [anon_sym_GT] = ACTIONS(2075), - [anon_sym_PIPE_EQ] = ACTIONS(2073), - [anon_sym_GT_GT_EQ] = ACTIONS(2073), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(2073), - [anon_sym_DOT] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_PERCENT] = ACTIONS(2075), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2073), - [anon_sym_DASH_EQ] = ACTIONS(2073), - [anon_sym_LT_EQ] = ACTIONS(2073), - [anon_sym_BANG_EQ] = ACTIONS(2073), - [anon_sym_AMP_EQ] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(2073), - [anon_sym_DASH_GT] = ACTIONS(2073), - [anon_sym_EQ] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_RBRACK] = ACTIONS(2073), + [2648] = { + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_STAR_EQ] = ACTIONS(1774), + [anon_sym_LT_LT_EQ] = ACTIONS(1774), + [anon_sym_PERCENT_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1774), + [anon_sym_PLUS_EQ] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_PIPE_EQ] = ACTIONS(1774), + [anon_sym_GT_GT_EQ] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_DASH_EQ] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_AMP_EQ] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACK] = ACTIONS(1774), }, - [2666] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2666), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(7611), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(7611), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(7611), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(7611), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACK] = ACTIONS(2077), + [2649] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2649), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(7590), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(7590), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(7590), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(7590), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_RBRACK] = ACTIONS(1778), }, - [2667] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3582), - [sym_logical_expression] = STATE(3582), - [sym_bitwise_expression] = STATE(3582), - [sym_cast_expression] = STATE(3582), - [sym_new_expression] = STATE(3582), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3582), - [sym_char_literal] = STATE(3582), - [sym_template_function] = STATE(3582), - [sym_conditional_expression] = STATE(3582), - [sym_equality_expression] = STATE(3582), - [sym_relational_expression] = STATE(3582), - [sym_delete_expression] = STATE(3582), - [sym_sizeof_expression] = STATE(3582), - [sym_parenthesized_expression] = STATE(3582), - [sym_lambda_expression] = STATE(3582), - [sym_concatenated_string] = STATE(3582), - [sym_string_literal] = STATE(967), + [2650] = { + [sym_template_function] = STATE(3553), + [sym__expression] = STATE(3553), + [sym_logical_expression] = STATE(3553), + [sym_bitwise_expression] = STATE(3553), + [sym_cast_expression] = STATE(3553), + [sym_delete_expression] = STATE(3553), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3553), + [sym_lambda_expression] = STATE(3553), + [sym_char_literal] = STATE(3553), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3582), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3582), - [sym_math_expression] = STATE(3582), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3553), + [sym_equality_expression] = STATE(3553), + [sym_relational_expression] = STATE(3553), + [sym_sizeof_expression] = STATE(3553), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(7614), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(7616), - [sym_null] = ACTIONS(7616), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(7614), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(7616), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7616), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(3553), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3553), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3553), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3553), + [sym_math_expression] = STATE(3553), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3553), + [sym_raw_string_literal] = ACTIONS(7593), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(7595), + [sym_null] = ACTIONS(7595), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(7593), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [2668] = { - [sym_argument_list] = STATE(3583), - [sym_initializer_list] = STATE(3583), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_RBRACK] = ACTIONS(3138), + [2651] = { + [sym_argument_list] = STATE(3554), + [sym_initializer_list] = STATE(3554), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_RBRACK] = ACTIONS(3140), }, - [2669] = { - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_RBRACK] = ACTIONS(3138), + [2652] = { + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_RBRACK] = ACTIONS(3140), }, - [2670] = { - [sym_initializer_list] = STATE(3583), - [sym_new_declarator] = STATE(3584), - [sym_argument_list] = STATE(3583), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(5468), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_RBRACK] = ACTIONS(3138), + [2653] = { + [sym_new_declarator] = STATE(3555), + [sym_argument_list] = STATE(3554), + [sym_initializer_list] = STATE(3554), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_RBRACK] = ACTIONS(3140), }, - [2671] = { - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_STAR_EQ] = ACTIONS(2689), - [anon_sym_LT_LT_EQ] = ACTIONS(2689), - [anon_sym_PERCENT_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2689), - [anon_sym_PLUS_EQ] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2689), - [anon_sym_GT_GT_EQ] = ACTIONS(2689), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_PIPE_PIPE] = ACTIONS(2689), - [anon_sym_DOT] = ACTIONS(2689), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_PERCENT] = ACTIONS(2691), + [2654] = { + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_final] = ACTIONS(1683), + [anon_sym_STAR_EQ] = ACTIONS(1683), + [anon_sym_LT_LT_EQ] = ACTIONS(1683), + [anon_sym_PERCENT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_CARET_EQ] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_override] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_SLASH_EQ] = ACTIONS(1683), + [anon_sym_PLUS_EQ] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_PIPE_EQ] = ACTIONS(1683), + [anon_sym_GT_GT_EQ] = ACTIONS(1683), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1683), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_PERCENT] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1683), + [anon_sym_DASH_EQ] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_AMP_EQ] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_DASH_GT] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACK] = ACTIONS(1683), + }, + [2655] = { + [sym_identifier] = ACTIONS(7597), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2689), - [anon_sym_DASH_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2689), - [anon_sym_AMP_EQ] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_DASH_GT] = ACTIONS(2689), - [anon_sym_EQ] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_RBRACK] = ACTIONS(2689), }, - [2672] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3585), - [sym_logical_expression] = STATE(3585), - [sym_bitwise_expression] = STATE(3585), - [sym_cast_expression] = STATE(3585), - [sym_new_expression] = STATE(3585), - [sym_field_expression] = STATE(3585), - [sym_compound_literal_expression] = STATE(3585), - [sym_char_literal] = STATE(3585), - [sym_template_function] = STATE(3585), - [sym_conditional_expression] = STATE(3585), - [sym_equality_expression] = STATE(3585), - [sym_relational_expression] = STATE(3585), - [sym_delete_expression] = STATE(3585), - [sym_sizeof_expression] = STATE(3585), - [sym_parenthesized_expression] = STATE(3585), - [sym_lambda_expression] = STATE(3585), - [sym_concatenated_string] = STATE(3585), - [sym_string_literal] = STATE(758), + [2656] = { + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_EQ_EQ] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_CARET] = ACTIONS(2693), + [anon_sym_GT] = ACTIONS(2693), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_COMMA] = ACTIONS(2691), + [anon_sym_PIPE_PIPE] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(2691), + [anon_sym_LT_LT] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_PERCENT] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_LT_EQ] = ACTIONS(2691), + [anon_sym_BANG_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_DASH_GT] = ACTIONS(2691), + [anon_sym_EQ] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2693), + [anon_sym_RBRACK] = ACTIONS(2691), + }, + [2657] = { + [sym_template_function] = STATE(3557), + [sym__expression] = STATE(3557), + [sym_logical_expression] = STATE(3557), + [sym_bitwise_expression] = STATE(3557), + [sym_cast_expression] = STATE(3557), + [sym_delete_expression] = STATE(3557), + [sym_field_expression] = STATE(3557), + [sym_compound_literal_expression] = STATE(3557), + [sym_lambda_expression] = STATE(3557), + [sym_char_literal] = STATE(3557), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3585), - [sym_assignment_expression] = STATE(3585), - [sym_pointer_expression] = STATE(3585), - [sym_shift_expression] = STATE(3585), - [sym_math_expression] = STATE(3585), - [sym_call_expression] = STATE(3585), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3557), + [sym_equality_expression] = STATE(3557), + [sym_relational_expression] = STATE(3557), + [sym_sizeof_expression] = STATE(3557), + [sym_subscript_expression] = STATE(3557), [sym_scoped_namespace_identifier] = STATE(760), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7618), - [anon_sym_DASH] = ACTIONS(1357), - [sym_true] = ACTIONS(7620), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [sym_null] = ACTIONS(7620), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7618), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7620), - [sym_nullptr] = ACTIONS(7620), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - }, - [2673] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), - [anon_sym_STAR_EQ] = ACTIONS(3739), - [anon_sym_LT_LT_EQ] = ACTIONS(3739), - [anon_sym_PERCENT_EQ] = ACTIONS(3739), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3741), - [anon_sym_CARET_EQ] = ACTIONS(3739), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3741), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_SLASH_EQ] = ACTIONS(3739), - [anon_sym_PLUS_EQ] = ACTIONS(3739), - [anon_sym_CARET] = ACTIONS(3741), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_PIPE_EQ] = ACTIONS(3739), - [anon_sym_GT_GT_EQ] = ACTIONS(3739), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3741), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3741), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_DASH_EQ] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_EQ] = ACTIONS(3741), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_GT_GT] = ACTIONS(3741), - [anon_sym_RBRACK] = ACTIONS(3739), - }, - [2674] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3739), - [anon_sym_LT_LT_EQ] = ACTIONS(3739), - [anon_sym_PERCENT_EQ] = ACTIONS(3739), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3739), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3741), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_SLASH_EQ] = ACTIONS(3739), - [anon_sym_PLUS_EQ] = ACTIONS(3739), - [anon_sym_CARET] = ACTIONS(3741), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_PIPE_EQ] = ACTIONS(3739), - [anon_sym_GT_GT_EQ] = ACTIONS(3739), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3741), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3741), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_DASH_EQ] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_EQ] = ACTIONS(3741), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_GT_GT] = ACTIONS(3741), - [anon_sym_RBRACK] = ACTIONS(3739), - }, - [2675] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(3755), + [sym_parenthesized_expression] = STATE(3557), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(3557), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3557), + [sym_pointer_expression] = STATE(3557), + [sym_shift_expression] = STATE(3557), + [sym_math_expression] = STATE(3557), + [sym_call_expression] = STATE(3557), + [sym_new_expression] = STATE(3557), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7599), + [anon_sym_DASH] = ACTIONS(1365), + [sym_true] = ACTIONS(7601), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [sym_null] = ACTIONS(7601), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7599), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7601), + [sym_nullptr] = ACTIONS(7601), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), }, - [2676] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(3759), + [2658] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(3901), }, - [2677] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_RBRACK] = ACTIONS(3763), + [2659] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(3905), }, - [2678] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(5490), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(3769), + [2660] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_RBRACK] = ACTIONS(3909), }, - [2679] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_RBRACK] = ACTIONS(3790), + [2661] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(5485), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(5489), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(3915), }, - [2680] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3765), - [anon_sym_SLASH] = ACTIONS(3765), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(3765), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_RBRACK] = ACTIONS(3763), + [2662] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_RBRACK] = ACTIONS(3936), }, - [2681] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(3794), + [2663] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(3911), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_RBRACK] = ACTIONS(3909), }, - [2682] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(3755), + [2664] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(3940), }, - [2683] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(3755), + [2665] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(5485), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(3901), }, - [2684] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(7622), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2666] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(3901), }, - [2685] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(3769), + [2667] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(7603), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2686] = { - [sym_string_literal] = STATE(2686), - [aux_sym_concatenated_string_repeat1] = STATE(2686), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(7624), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_RBRACK] = ACTIONS(3732), + [2668] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(5485), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(3915), }, - [2687] = { - [sym_goto_statement] = STATE(3588), - [sym_preproc_function_def] = STATE(3588), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(3588), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(3588), + [2669] = { + [sym_goto_statement] = STATE(3560), + [sym_preproc_function_def] = STATE(3560), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(3560), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(3588), - [sym_return_statement] = STATE(3588), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3560), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(3560), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(3560), + [sym_namespace_definition] = STATE(3560), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(3588), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(3588), - [sym_break_statement] = STATE(3588), - [sym_preproc_include] = STATE(3588), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(3588), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(3588), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(3560), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(3560), + [sym_constructor_or_destructor_definition] = STATE(3560), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(3560), + [sym_preproc_include] = STATE(3560), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(3560), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(3560), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(3588), - [sym_template_instantiation] = STATE(3588), - [sym_constructor_or_destructor_definition] = STATE(3588), - [sym_expression_statement] = STATE(3588), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(3588), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(3588), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(3588), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(3588), - [aux_sym_translation_unit_repeat1] = STATE(3588), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(3588), - [sym_if_statement] = STATE(3588), - [sym_for_statement] = STATE(3588), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(3588), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(3588), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(3588), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(3588), - [sym_preproc_if] = STATE(3588), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(3560), + [sym_expression_statement] = STATE(3560), + [sym_do_statement] = STATE(3560), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(3560), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(3560), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(3560), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(3560), + [sym_for_statement] = STATE(3560), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(3560), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(3560), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(3560), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(3560), + [sym_preproc_if] = STATE(3560), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(3588), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(3588), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(3588), - [sym_while_statement] = STATE(3588), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(3560), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(3560), + [aux_sym_translation_unit_repeat1] = STATE(3560), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(3560), + [sym_while_statement] = STATE(3560), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -113720,7 +113384,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7605), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -113752,1477 +113416,1607 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2688] = { - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4123), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_STAR_EQ] = ACTIONS(4121), - [anon_sym_LT_LT_EQ] = ACTIONS(4121), - [anon_sym_PERCENT_EQ] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4123), - [anon_sym_CARET_EQ] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4123), - [anon_sym_SLASH] = ACTIONS(4123), - [anon_sym_SLASH_EQ] = ACTIONS(4121), - [anon_sym_PLUS_EQ] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4123), - [anon_sym_GT] = ACTIONS(4123), - [anon_sym_PIPE_EQ] = ACTIONS(4121), - [anon_sym_GT_GT_EQ] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LT_LT] = ACTIONS(4123), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_PERCENT] = ACTIONS(4123), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_DASH_EQ] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_AMP_EQ] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(4123), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4123), - [anon_sym_RBRACK] = ACTIONS(4121), + [2670] = { + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_STAR_EQ] = ACTIONS(3844), + [anon_sym_LT_LT_EQ] = ACTIONS(3844), + [anon_sym_PERCENT_EQ] = ACTIONS(3844), + [anon_sym_EQ_EQ] = ACTIONS(3844), + [anon_sym_PIPE] = ACTIONS(3846), + [anon_sym_LT] = ACTIONS(3846), + [anon_sym_CARET_EQ] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PLUS] = ACTIONS(3846), + [anon_sym_GT_EQ] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3846), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_SLASH_EQ] = ACTIONS(3844), + [anon_sym_PLUS_EQ] = ACTIONS(3844), + [anon_sym_CARET] = ACTIONS(3846), + [anon_sym_GT] = ACTIONS(3846), + [anon_sym_PIPE_EQ] = ACTIONS(3844), + [anon_sym_GT_GT_EQ] = ACTIONS(3844), + [anon_sym_COMMA] = ACTIONS(3844), + [anon_sym_PIPE_PIPE] = ACTIONS(3844), + [anon_sym_DOT] = ACTIONS(3844), + [anon_sym_LT_LT] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3844), + [anon_sym_PERCENT] = ACTIONS(3846), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3844), + [anon_sym_DASH_EQ] = ACTIONS(3844), + [anon_sym_LT_EQ] = ACTIONS(3844), + [anon_sym_BANG_EQ] = ACTIONS(3844), + [anon_sym_AMP_EQ] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_DASH_GT] = ACTIONS(3844), + [anon_sym_EQ] = ACTIONS(3846), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_GT_GT] = ACTIONS(3846), + [anon_sym_RBRACK] = ACTIONS(3844), }, - [2689] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2616), - [sym_logical_expression] = STATE(2616), - [sym_bitwise_expression] = STATE(2616), - [sym_cast_expression] = STATE(2616), - [sym_new_expression] = STATE(2616), + [2671] = { + [sym_string_literal] = STATE(2671), + [aux_sym_concatenated_string_repeat1] = STATE(2671), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(7607), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_RBRACK] = ACTIONS(3886), + }, + [2672] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + [anon_sym_STAR_EQ] = ACTIONS(3850), + [anon_sym_LT_LT_EQ] = ACTIONS(3850), + [anon_sym_PERCENT_EQ] = ACTIONS(3850), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3852), + [anon_sym_CARET_EQ] = ACTIONS(3850), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3852), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_SLASH_EQ] = ACTIONS(3850), + [anon_sym_PLUS_EQ] = ACTIONS(3850), + [anon_sym_CARET] = ACTIONS(3852), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_PIPE_EQ] = ACTIONS(3850), + [anon_sym_GT_GT_EQ] = ACTIONS(3850), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3852), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3852), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_DASH_EQ] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3852), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_GT_GT] = ACTIONS(3852), + [anon_sym_RBRACK] = ACTIONS(3850), + }, + [2673] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_STAR_EQ] = ACTIONS(3850), + [anon_sym_LT_LT_EQ] = ACTIONS(3850), + [anon_sym_PERCENT_EQ] = ACTIONS(3850), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_CARET_EQ] = ACTIONS(3850), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3852), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_SLASH_EQ] = ACTIONS(3850), + [anon_sym_PLUS_EQ] = ACTIONS(3850), + [anon_sym_CARET] = ACTIONS(3852), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_PIPE_EQ] = ACTIONS(3850), + [anon_sym_GT_GT_EQ] = ACTIONS(3850), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3852), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3852), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_DASH_EQ] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3852), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_GT_GT] = ACTIONS(3852), + [anon_sym_RBRACK] = ACTIONS(3850), + }, + [2674] = { + [sym_template_function] = STATE(2601), + [sym__expression] = STATE(2601), + [sym_logical_expression] = STATE(2601), + [sym_bitwise_expression] = STATE(2601), + [sym_cast_expression] = STATE(2601), + [sym_delete_expression] = STATE(2601), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(2616), - [sym_char_literal] = STATE(2616), - [sym_template_function] = STATE(2616), - [sym_conditional_expression] = STATE(2616), - [sym_equality_expression] = STATE(2616), - [sym_relational_expression] = STATE(2616), - [sym_delete_expression] = STATE(2616), - [sym_sizeof_expression] = STATE(2616), - [sym_parenthesized_expression] = STATE(2616), - [sym_initializer_list] = STATE(2617), - [sym_concatenated_string] = STATE(2616), - [sym_string_literal] = STATE(244), - [sym_lambda_expression] = STATE(2616), + [sym_compound_literal_expression] = STATE(2601), + [sym_lambda_expression] = STATE(2601), + [sym_char_literal] = STATE(2601), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2601), + [sym_equality_expression] = STATE(2601), + [sym_relational_expression] = STATE(2601), + [sym_sizeof_expression] = STATE(2601), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(2616), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_initializer_list] = STATE(2602), + [sym_parenthesized_expression] = STATE(2601), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), + [sym_concatenated_string] = STATE(2601), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2601), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(2616), - [sym_math_expression] = STATE(2616), + [sym_shift_expression] = STATE(2601), + [sym_math_expression] = STATE(2601), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [anon_sym_LPAREN2] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(388), - [sym_raw_string_literal] = ACTIONS(5390), - [anon_sym_RBRACK] = ACTIONS(4127), - [sym_true] = ACTIONS(5392), - [sym_null] = ACTIONS(5392), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7631), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LT_LT] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_number_literal] = ACTIONS(5390), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5392), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(5392), - [anon_sym_TILDE] = ACTIONS(410), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_GT_GT] = ACTIONS(4127), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_new_expression] = STATE(2601), + [anon_sym_LPAREN2] = ACTIONS(392), + [anon_sym_DASH] = ACTIONS(390), + [sym_raw_string_literal] = ACTIONS(5389), + [anon_sym_RBRACK] = ACTIONS(4125), + [sym_true] = ACTIONS(5391), + [sym_null] = ACTIONS(5391), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(7610), + [anon_sym_AMP] = ACTIONS(7612), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_number_literal] = ACTIONS(5389), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5391), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(5391), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [2690] = { - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_RBRACK] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_PIPE] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4386), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4386), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_COLON] = ACTIONS(4386), - [anon_sym_CARET] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4384), - [anon_sym_PIPE_PIPE] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_LT_LT] = ACTIONS(4384), - [anon_sym_LBRACK] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_LT_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_DASH_GT] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_GT_GT] = ACTIONS(4384), - [anon_sym_DASH_DASH] = ACTIONS(4384), + [2675] = { + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4378), + [anon_sym_RBRACK] = ACTIONS(4378), + [anon_sym_final] = ACTIONS(4378), + [anon_sym_COLON_COLON] = ACTIONS(4378), + [anon_sym_EQ_EQ] = ACTIONS(4378), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_GT_EQ] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4378), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_override] = ACTIONS(4378), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_CARET] = ACTIONS(4378), + [anon_sym_GT] = ACTIONS(4380), + [anon_sym_COMMA] = ACTIONS(4378), + [anon_sym_PIPE_PIPE] = ACTIONS(4378), + [anon_sym_DOT] = ACTIONS(4378), + [anon_sym_LT_LT] = ACTIONS(4378), + [anon_sym_LBRACK] = ACTIONS(4378), + [anon_sym_PERCENT] = ACTIONS(4378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4378), + [anon_sym_LT_EQ] = ACTIONS(4378), + [anon_sym_BANG_EQ] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_DASH_GT] = ACTIONS(4378), + [anon_sym_PLUS_PLUS] = ACTIONS(4378), + [anon_sym_GT_GT] = ACTIONS(4378), + [anon_sym_DASH_DASH] = ACTIONS(4378), }, - [2691] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [2676] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(7633), + [anon_sym_GT2] = ACTIONS(7614), [sym_comment] = ACTIONS(3), }, - [2692] = { - [anon_sym_LPAREN2] = ACTIONS(4402), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_RBRACK] = ACTIONS(4402), - [anon_sym_final] = ACTIONS(4402), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4402), - [anon_sym_PIPE] = ACTIONS(4404), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_STAR] = ACTIONS(4402), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4402), - [anon_sym_COLON] = ACTIONS(4404), - [anon_sym_CARET] = ACTIONS(4402), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_DOT] = ACTIONS(4402), - [anon_sym_LT_LT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_PERCENT] = ACTIONS(4402), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_GT_GT] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), + [2677] = { + [anon_sym_LPAREN2] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACK] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_PIPE] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_COLON] = ACTIONS(4398), + [anon_sym_CARET] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_LT_LT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_GT_GT] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), }, - [2693] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [2678] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(7635), + [anon_sym_GT2] = ACTIONS(7616), [sym_comment] = ACTIONS(3), }, - [2694] = { - [anon_sym_LPAREN2] = ACTIONS(4431), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_PERCENT] = ACTIONS(4431), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(4433), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), + [2679] = { + [anon_sym_LPAREN2] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4429), + [anon_sym_GT] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4429), + [anon_sym_COMMA] = ACTIONS(4429), + [anon_sym_PIPE_PIPE] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_LT_LT] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4429), + [anon_sym_PIPE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4431), + [anon_sym_PERCENT] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4431), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4429), + [anon_sym_SLASH] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4429), + [anon_sym_BANG_EQ] = ACTIONS(4429), + [anon_sym_AMP_AMP] = ACTIONS(4429), + [anon_sym_DASH_GT] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4429), + [anon_sym_GT_GT] = ACTIONS(4429), + [anon_sym_RBRACK] = ACTIONS(4429), }, - [2695] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [2680] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(7637), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(7618), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [2696] = { - [aux_sym_initializer_list_repeat1] = STATE(2268), + [2681] = { + [aux_sym_initializer_list_repeat1] = STATE(2257), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(7639), - [anon_sym_RBRACE] = ACTIONS(7637), + [anon_sym_COMMA] = ACTIONS(7620), + [anon_sym_RBRACE] = ACTIONS(7618), }, - [2697] = { - [sym_field_declaration_list] = STATE(3593), - [sym_base_class_clause] = STATE(3594), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(3302), + [2682] = { + [sym_field_declaration_list] = STATE(3565), + [sym_base_class_clause] = STATE(3566), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2698] = { - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACK] = ACTIONS(2851), - [anon_sym_final] = ACTIONS(2851), - [anon_sym_mutable] = ACTIONS(2851), - [anon_sym_restrict] = ACTIONS(2851), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_override] = ACTIONS(2851), - [anon_sym_COLON] = ACTIONS(2851), - [anon_sym_explicit] = ACTIONS(2851), - [sym_noexcept] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2851), - [anon_sym_GT] = ACTIONS(2853), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym__Atomic] = ACTIONS(2851), - [anon_sym_LT_LT] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_PERCENT] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2851), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_DASH_GT] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_EQ] = ACTIONS(2853), - [anon_sym_GT_GT] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), + [2683] = { + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_RBRACK] = ACTIONS(2853), + [anon_sym_final] = ACTIONS(2853), + [anon_sym_mutable] = ACTIONS(2853), + [anon_sym_restrict] = ACTIONS(2853), + [anon_sym_EQ_EQ] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_override] = ACTIONS(2853), + [anon_sym_COLON] = ACTIONS(2853), + [anon_sym_explicit] = ACTIONS(2853), + [sym_noexcept] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2853), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2853), + [anon_sym_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_DOT] = ACTIONS(2853), + [anon_sym__Atomic] = ACTIONS(2853), + [anon_sym_LT_LT] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_PERCENT] = ACTIONS(2853), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_DASH_GT] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_EQ] = ACTIONS(2855), + [anon_sym_GT_GT] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2853), }, - [2699] = { - [sym_field_declaration_list] = STATE(3593), - [anon_sym_LBRACE] = ACTIONS(3302), + [2684] = { + [sym_field_declaration_list] = STATE(3565), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2700] = { - [anon_sym_LPAREN2] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_RBRACK] = ACTIONS(2867), - [anon_sym_final] = ACTIONS(2867), - [anon_sym_mutable] = ACTIONS(2867), - [anon_sym_restrict] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_volatile] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_override] = ACTIONS(2867), - [anon_sym_COLON] = ACTIONS(2867), - [anon_sym_explicit] = ACTIONS(2867), - [sym_noexcept] = ACTIONS(2867), - [anon_sym_CARET] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym__Atomic] = ACTIONS(2867), - [anon_sym_LT_LT] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_PERCENT] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_constexpr] = ACTIONS(2867), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_DASH_GT] = ACTIONS(2867), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2867), + [2685] = { + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACK] = ACTIONS(2869), + [anon_sym_final] = ACTIONS(2869), + [anon_sym_mutable] = ACTIONS(2869), + [anon_sym_restrict] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_override] = ACTIONS(2869), + [anon_sym_COLON] = ACTIONS(2869), + [anon_sym_explicit] = ACTIONS(2869), + [sym_noexcept] = ACTIONS(2869), + [anon_sym_CARET] = ACTIONS(2869), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym__Atomic] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_PERCENT] = ACTIONS(2869), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2869), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2869), + [anon_sym_LT_EQ] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_DASH_GT] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_DASH_DASH] = ACTIONS(2869), }, - [2701] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(1472), - [sym_preproc_function_def] = STATE(1472), - [sym_alias_declaration] = STATE(1472), + [2686] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(1448), + [sym_preproc_function_def] = STATE(1448), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(1472), - [sym_preproc_if_in_field_declaration_list] = STATE(1472), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1472), - [sym_type_definition] = STATE(1472), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(1472), - [sym__field_declaration_list_item] = STATE(1472), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1472), - [sym_inline_method_definition] = STATE(1472), - [sym_friend_declaration] = STATE(1472), - [sym_access_specifier] = STATE(1472), - [sym_using_declaration] = STATE(1472), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(1472), - [sym_constructor_or_destructor_definition] = STATE(1472), - [sym_constructor_or_destructor_declaration] = STATE(1472), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1448), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(1448), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(1448), + [sym_preproc_if_in_field_declaration_list] = STATE(1448), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1448), + [sym_type_definition] = STATE(1448), + [sym_using_declaration] = STATE(1448), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(1448), + [sym_inline_method_definition] = STATE(1448), + [sym_constructor_or_destructor_definition] = STATE(1448), + [sym_access_specifier] = STATE(1448), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(1448), + [sym_alias_declaration] = STATE(1448), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(1448), + [sym_constructor_or_destructor_declaration] = STATE(1448), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(7641), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(7622), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [2702] = { - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_final] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_override] = ACTIONS(2917), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [sym_noexcept] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - }, - [2703] = { - [sym_field_declaration_list] = STATE(3596), - [anon_sym_LBRACE] = ACTIONS(3302), + [2687] = { + [sym_field_declaration_list] = STATE(3568), + [sym_base_class_clause] = STATE(3569), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2704] = { - [sym_field_declaration_list] = STATE(3596), - [sym_base_class_clause] = STATE(3597), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(3302), + [2688] = { + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_RBRACK] = ACTIONS(2919), + [anon_sym_final] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2919), + [anon_sym_restrict] = ACTIONS(2919), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_override] = ACTIONS(2919), + [anon_sym_COLON] = ACTIONS(2919), + [anon_sym_explicit] = ACTIONS(2919), + [sym_noexcept] = ACTIONS(2919), + [anon_sym_CARET] = ACTIONS(2919), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_COMMA] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym__Atomic] = ACTIONS(2919), + [anon_sym_LT_LT] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_PERCENT] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_constexpr] = ACTIONS(2919), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2919), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_DASH_GT] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2919), }, - [2705] = { - [sym_field_declaration_list] = STATE(3598), - [sym_base_class_clause] = STATE(3599), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(3302), + [2689] = { + [sym_field_declaration_list] = STATE(3568), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2706] = { - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_mutable] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym_EQ_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_COLON] = ACTIONS(3107), - [anon_sym_explicit] = ACTIONS(3107), - [sym_noexcept] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_PIPE_PIPE] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_PERCENT] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_constexpr] = ACTIONS(3107), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_DASH_GT] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - }, - [2707] = { - [sym_field_declaration_list] = STATE(3598), - [anon_sym_LBRACE] = ACTIONS(3302), + [2690] = { + [sym_field_declaration_list] = STATE(3570), + [sym_base_class_clause] = STATE(3571), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2708] = { - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_mutable] = ACTIONS(3111), - [anon_sym_restrict] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_volatile] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_explicit] = ACTIONS(3111), - [sym_noexcept] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3111), - [anon_sym__Atomic] = ACTIONS(3111), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_PERCENT] = ACTIONS(3111), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_constexpr] = ACTIONS(3111), + [2691] = { + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_RBRACK] = ACTIONS(3109), + [anon_sym_final] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_override] = ACTIONS(3109), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [sym_noexcept] = ACTIONS(3109), + [anon_sym_CARET] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym_LT_LT] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_constexpr] = ACTIONS(3109), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_DASH_GT] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_EQ] = ACTIONS(3113), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_DASH_GT] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3109), }, - [2709] = { - [sym_field_declaration_list] = STATE(3600), - [anon_sym_LBRACE] = ACTIONS(3302), + [2692] = { + [sym_field_declaration_list] = STATE(3570), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2710] = { - [sym_field_declaration_list] = STATE(3600), - [sym_base_class_clause] = STATE(3601), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(3302), + [2693] = { + [sym_field_declaration_list] = STATE(3572), + [sym_base_class_clause] = STATE(3573), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2711] = { - [anon_sym_LPAREN2] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2169), - [anon_sym_final] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_override] = ACTIONS(2169), - [anon_sym_COLON] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_PERCENT] = ACTIONS(2169), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_DASH_GT] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2169), + [2694] = { + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACK] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [sym_noexcept] = ACTIONS(3113), + [anon_sym_CARET] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym_LT_LT] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_constexpr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_DASH_GT] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_GT_GT] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3113), }, - [2712] = { + [2695] = { + [sym_field_declaration_list] = STATE(3572), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7643), }, - [2713] = { - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_RBRACK] = ACTIONS(2579), - [anon_sym_final] = ACTIONS(2579), - [anon_sym_mutable] = ACTIONS(2579), - [anon_sym_restrict] = ACTIONS(2579), - [anon_sym_EQ_EQ] = ACTIONS(2579), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_volatile] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_SLASH] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2579), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_explicit] = ACTIONS(2579), - [sym_noexcept] = ACTIONS(2579), - [anon_sym_CARET] = ACTIONS(2579), - [anon_sym_GT] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym__Atomic] = ACTIONS(2579), - [anon_sym_LT_LT] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_constexpr] = ACTIONS(2579), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2579), + [2696] = { + [anon_sym_LPAREN2] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACK] = ACTIONS(2171), + [anon_sym_final] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_DASH_GT] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), }, - [2714] = { - [aux_sym_enumerator_list_repeat1] = STATE(3604), + [2697] = { [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(7645), - [anon_sym_RBRACE] = ACTIONS(7643), + [anon_sym_RBRACE] = ACTIONS(7624), }, - [2715] = { - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACK] = ACTIONS(2585), - [anon_sym_final] = ACTIONS(2585), - [anon_sym_mutable] = ACTIONS(2585), - [anon_sym_restrict] = ACTIONS(2585), - [anon_sym_EQ_EQ] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_GT_EQ] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2587), - [anon_sym_override] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2585), - [anon_sym_explicit] = ACTIONS(2585), - [sym_noexcept] = ACTIONS(2585), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2587), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym__Atomic] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2585), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_LT_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_DASH_GT] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_EQ] = ACTIONS(2587), - [anon_sym_GT_GT] = ACTIONS(2585), - [anon_sym_DASH_DASH] = ACTIONS(2585), + [2698] = { + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_RBRACK] = ACTIONS(2581), + [anon_sym_final] = ACTIONS(2581), + [anon_sym_mutable] = ACTIONS(2581), + [anon_sym_restrict] = ACTIONS(2581), + [anon_sym_EQ_EQ] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_override] = ACTIONS(2581), + [anon_sym_COLON] = ACTIONS(2581), + [anon_sym_explicit] = ACTIONS(2581), + [sym_noexcept] = ACTIONS(2581), + [anon_sym_CARET] = ACTIONS(2581), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2581), + [anon_sym_PIPE_PIPE] = ACTIONS(2581), + [anon_sym_DOT] = ACTIONS(2581), + [anon_sym__Atomic] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_PERCENT] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2581), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2581), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_BANG_EQ] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_DASH_GT] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_GT_GT] = ACTIONS(2581), + [anon_sym_DASH_DASH] = ACTIONS(2581), }, - [2716] = { - [sym_field_declaration_list] = STATE(3605), - [sym_base_class_clause] = STATE(3606), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(3302), + [2699] = { + [aux_sym_enumerator_list_repeat1] = STATE(3576), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(7626), + [anon_sym_RBRACE] = ACTIONS(7624), }, - [2717] = { - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_RBRACK] = ACTIONS(3414), - [anon_sym_final] = ACTIONS(3414), - [anon_sym_mutable] = ACTIONS(3414), - [anon_sym_restrict] = ACTIONS(3414), - [anon_sym_EQ_EQ] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_override] = ACTIONS(3414), - [anon_sym_COLON] = ACTIONS(3414), - [anon_sym_explicit] = ACTIONS(3414), - [sym_noexcept] = ACTIONS(3414), - [anon_sym_CARET] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3416), - [anon_sym_COMMA] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_DOT] = ACTIONS(3414), - [anon_sym__Atomic] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_PERCENT] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_constexpr] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3414), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_BANG_EQ] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_DASH_GT] = ACTIONS(3414), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_EQ] = ACTIONS(3416), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3414), + [2700] = { + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_RBRACK] = ACTIONS(2587), + [anon_sym_final] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym_EQ_EQ] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_override] = ACTIONS(2587), + [anon_sym_COLON] = ACTIONS(2587), + [anon_sym_explicit] = ACTIONS(2587), + [sym_noexcept] = ACTIONS(2587), + [anon_sym_CARET] = ACTIONS(2587), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_COMMA] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_DOT] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_LT_LT] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2587), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_LT_EQ] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_GT_GT] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2587), }, - [2718] = { - [sym_field_declaration_list] = STATE(3605), - [anon_sym_LBRACE] = ACTIONS(3302), + [2701] = { + [sym_field_declaration_list] = STATE(3577), + [sym_base_class_clause] = STATE(3578), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2719] = { - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_RBRACK] = ACTIONS(3418), - [anon_sym_final] = ACTIONS(3418), - [anon_sym_mutable] = ACTIONS(3418), - [anon_sym_restrict] = ACTIONS(3418), - [anon_sym_EQ_EQ] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_volatile] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_GT_EQ] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_override] = ACTIONS(3418), - [anon_sym_COLON] = ACTIONS(3418), - [anon_sym_explicit] = ACTIONS(3418), - [sym_noexcept] = ACTIONS(3418), - [anon_sym_CARET] = ACTIONS(3418), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_COMMA] = ACTIONS(3418), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_DOT] = ACTIONS(3418), - [anon_sym__Atomic] = ACTIONS(3418), - [anon_sym_LT_LT] = ACTIONS(3418), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_PERCENT] = ACTIONS(3418), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_constexpr] = ACTIONS(3418), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3418), - [anon_sym_LT_EQ] = ACTIONS(3418), - [anon_sym_BANG_EQ] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_DASH_GT] = ACTIONS(3418), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_GT_GT] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3418), + [2702] = { + [anon_sym_LPAREN2] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACK] = ACTIONS(3424), + [anon_sym_final] = ACTIONS(3424), + [anon_sym_mutable] = ACTIONS(3424), + [anon_sym_restrict] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_volatile] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_override] = ACTIONS(3424), + [anon_sym_COLON] = ACTIONS(3424), + [anon_sym_explicit] = ACTIONS(3424), + [sym_noexcept] = ACTIONS(3424), + [anon_sym_CARET] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym__Atomic] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_constexpr] = ACTIONS(3424), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_DASH_GT] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), }, - [2720] = { - [sym_field_declaration_list] = STATE(3607), - [anon_sym_LBRACE] = ACTIONS(3302), + [2703] = { + [sym_field_declaration_list] = STATE(3577), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2721] = { - [sym_field_declaration_list] = STATE(3607), - [sym_base_class_clause] = STATE(3608), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(3302), + [2704] = { + [sym_field_declaration_list] = STATE(3579), + [sym_base_class_clause] = STATE(3580), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [2722] = { - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_RBRACK] = ACTIONS(3746), - [anon_sym_final] = ACTIONS(3746), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(3748), - [anon_sym_AMP] = ACTIONS(3748), - [anon_sym_PLUS] = ACTIONS(3748), - [anon_sym_GT_EQ] = ACTIONS(3746), - [anon_sym_STAR] = ACTIONS(3746), - [anon_sym_SLASH] = ACTIONS(3748), - [anon_sym_override] = ACTIONS(3746), - [anon_sym_COLON] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3748), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(3746), - [anon_sym_LBRACK] = ACTIONS(3746), - [anon_sym_PERCENT] = ACTIONS(3746), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_DASH_GT] = ACTIONS(3746), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3746), - [anon_sym_DASH_DASH] = ACTIONS(3746), + [2705] = { + [anon_sym_LPAREN2] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_RBRACK] = ACTIONS(3428), + [anon_sym_final] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_override] = ACTIONS(3428), + [anon_sym_COLON] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [sym_noexcept] = ACTIONS(3428), + [anon_sym_CARET] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym_LT_LT] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_constexpr] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_DASH_GT] = ACTIONS(3428), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_EQ] = ACTIONS(3430), + [anon_sym_GT_GT] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), }, - [2723] = { - [anon_sym_LPAREN2] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3115), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PIPE_PIPE] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_EQ_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3115), + [2706] = { + [sym_field_declaration_list] = STATE(3579), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3115), - [anon_sym_RBRACK] = ACTIONS(3115), }, - [2724] = { - [aux_sym_argument_list_repeat1] = STATE(3610), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(7647), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2707] = { + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_CARET] = ACTIONS(3117), + [anon_sym_GT] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3117), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3117), + [anon_sym_LT_LT] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_SLASH] = ACTIONS(3119), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_DASH_GT] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_GT_GT] = ACTIONS(3117), + [anon_sym_RBRACK] = ACTIONS(3117), }, - [2725] = { - [aux_sym_argument_list_repeat1] = STATE(3610), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(7647), + [2708] = { + [aux_sym_argument_list_repeat1] = STATE(3582), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(7628), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [2709] = { + [aux_sym_argument_list_repeat1] = STATE(3582), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(7628), [sym_comment] = ACTIONS(3), }, - [2726] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(7649), + [2710] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(7630), }, - [2727] = { - [anon_sym_LPAREN2] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5349), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_PERCENT] = ACTIONS(5349), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5349), - [anon_sym_RBRACK] = ACTIONS(5349), + [2711] = { + [anon_sym_LPAREN2] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_PERCENT] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5348), + [anon_sym_RBRACK] = ACTIONS(5348), }, - [2728] = { - [sym_argument_list] = STATE(3612), - [sym_initializer_list] = STATE(3612), - [anon_sym_LPAREN2] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_GT_GT] = ACTIONS(5349), - [anon_sym_RBRACK] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5349), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5349), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(5349), + [2712] = { + [sym_argument_list] = STATE(3584), + [sym_initializer_list] = STATE(3584), + [anon_sym_LPAREN2] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5348), + [anon_sym_RBRACK] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(5348), }, - [2729] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(4529), + [2713] = { + [anon_sym_LPAREN2] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(3857), + [anon_sym_final] = ACTIONS(3857), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_STAR] = ACTIONS(3857), + [anon_sym_SLASH] = ACTIONS(3859), + [anon_sym_override] = ACTIONS(3857), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3857), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_LT_LT] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_PERCENT] = ACTIONS(3857), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_DASH_GT] = ACTIONS(3857), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3857), }, - [2730] = { - [anon_sym_LPAREN2] = ACTIONS(5339), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_DASH_DASH] = ACTIONS(5339), - [anon_sym_STAR_EQ] = ACTIONS(5339), - [anon_sym_LT_LT_EQ] = ACTIONS(5339), - [anon_sym_PERCENT_EQ] = ACTIONS(5339), - [anon_sym_EQ_EQ] = ACTIONS(5339), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_CARET_EQ] = ACTIONS(5339), - [anon_sym_AMP] = ACTIONS(5341), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_GT_EQ] = ACTIONS(5339), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5339), - [anon_sym_SLASH_EQ] = ACTIONS(5339), - [anon_sym_PLUS_EQ] = ACTIONS(5339), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_PIPE_EQ] = ACTIONS(5339), - [anon_sym_GT_GT_EQ] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_PIPE_PIPE] = ACTIONS(5339), - [anon_sym_DOT] = ACTIONS(5339), - [anon_sym_LT_LT] = ACTIONS(5341), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_PERCENT] = ACTIONS(5341), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5339), - [anon_sym_DASH_EQ] = ACTIONS(5339), - [anon_sym_LT_EQ] = ACTIONS(5339), - [anon_sym_BANG_EQ] = ACTIONS(5339), - [anon_sym_AMP_EQ] = ACTIONS(5339), - [anon_sym_AMP_AMP] = ACTIONS(5339), - [anon_sym_DASH_GT] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5341), - [anon_sym_PLUS_PLUS] = ACTIONS(5339), - [anon_sym_GT_GT] = ACTIONS(5341), - [anon_sym_RBRACK] = ACTIONS(5339), + [2714] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(4527), }, - [2731] = { - [aux_sym_argument_list_repeat1] = STATE(2595), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(7651), + [2715] = { + [anon_sym_LPAREN2] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_DASH_DASH] = ACTIONS(5338), + [anon_sym_STAR_EQ] = ACTIONS(5338), + [anon_sym_LT_LT_EQ] = ACTIONS(5338), + [anon_sym_PERCENT_EQ] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5338), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_CARET_EQ] = ACTIONS(5338), + [anon_sym_AMP] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_GT_EQ] = ACTIONS(5338), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_COLON] = ACTIONS(5338), + [anon_sym_SLASH_EQ] = ACTIONS(5338), + [anon_sym_PLUS_EQ] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_PIPE_EQ] = ACTIONS(5338), + [anon_sym_GT_GT_EQ] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_PIPE_PIPE] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_PERCENT] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5338), + [anon_sym_DASH_EQ] = ACTIONS(5338), + [anon_sym_LT_EQ] = ACTIONS(5338), + [anon_sym_BANG_EQ] = ACTIONS(5338), + [anon_sym_AMP_EQ] = ACTIONS(5338), + [anon_sym_AMP_AMP] = ACTIONS(5338), + [anon_sym_DASH_GT] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5340), + [anon_sym_PLUS_PLUS] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5340), + [anon_sym_RBRACK] = ACTIONS(5338), + }, + [2716] = { + [aux_sym_argument_list_repeat1] = STATE(2580), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(7632), [sym_comment] = ACTIONS(3), }, - [2732] = { - [anon_sym_LPAREN2] = ACTIONS(5947), - [anon_sym_DASH] = ACTIONS(5949), - [anon_sym_DASH_DASH] = ACTIONS(5947), - [anon_sym_STAR_EQ] = ACTIONS(5947), - [anon_sym_LT_LT_EQ] = ACTIONS(5947), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(5947), - [anon_sym_EQ_EQ] = ACTIONS(5947), - [anon_sym_PIPE] = ACTIONS(5949), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_CARET_EQ] = ACTIONS(5947), - [anon_sym_AMP] = ACTIONS(5949), - [anon_sym_PLUS] = ACTIONS(5949), - [anon_sym_GT_EQ] = ACTIONS(5947), - [anon_sym_STAR] = ACTIONS(5949), - [anon_sym_SLASH] = ACTIONS(5949), - [anon_sym_SLASH_EQ] = ACTIONS(5947), - [anon_sym_PLUS_EQ] = ACTIONS(5947), - [anon_sym_CARET] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_PIPE_EQ] = ACTIONS(5947), - [anon_sym_GT_GT_EQ] = ACTIONS(5947), - [anon_sym_COMMA] = ACTIONS(5947), - [anon_sym_PIPE_PIPE] = ACTIONS(5947), - [anon_sym_DOT] = ACTIONS(5947), - [anon_sym_LT_LT] = ACTIONS(5949), - [anon_sym_LBRACK] = ACTIONS(5947), - [anon_sym_PERCENT] = ACTIONS(5949), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5947), - [anon_sym_DASH_EQ] = ACTIONS(5947), - [anon_sym_LT_EQ] = ACTIONS(5947), - [anon_sym_BANG_EQ] = ACTIONS(5947), - [anon_sym_AMP_EQ] = ACTIONS(5947), - [anon_sym_AMP_AMP] = ACTIONS(5947), - [anon_sym_DASH_GT] = ACTIONS(5947), - [anon_sym_EQ] = ACTIONS(5949), - [anon_sym_PLUS_PLUS] = ACTIONS(5947), - [anon_sym_GT_GT] = ACTIONS(5949), - [anon_sym_RBRACK] = ACTIONS(5947), + [2717] = { + [anon_sym_LPAREN2] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6145), + [anon_sym_DASH_DASH] = ACTIONS(6143), + [anon_sym_STAR_EQ] = ACTIONS(6143), + [anon_sym_LT_LT_EQ] = ACTIONS(6143), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_PERCENT_EQ] = ACTIONS(6143), + [anon_sym_EQ_EQ] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6145), + [anon_sym_LT] = ACTIONS(6145), + [anon_sym_CARET_EQ] = ACTIONS(6143), + [anon_sym_AMP] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6145), + [anon_sym_SLASH] = ACTIONS(6145), + [anon_sym_SLASH_EQ] = ACTIONS(6143), + [anon_sym_PLUS_EQ] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6145), + [anon_sym_GT] = ACTIONS(6145), + [anon_sym_PIPE_EQ] = ACTIONS(6143), + [anon_sym_GT_GT_EQ] = ACTIONS(6143), + [anon_sym_COMMA] = ACTIONS(6143), + [anon_sym_PIPE_PIPE] = ACTIONS(6143), + [anon_sym_DOT] = ACTIONS(6143), + [anon_sym_LT_LT] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6143), + [anon_sym_PERCENT] = ACTIONS(6145), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6143), + [anon_sym_DASH_EQ] = ACTIONS(6143), + [anon_sym_LT_EQ] = ACTIONS(6143), + [anon_sym_BANG_EQ] = ACTIONS(6143), + [anon_sym_AMP_EQ] = ACTIONS(6143), + [anon_sym_AMP_AMP] = ACTIONS(6143), + [anon_sym_DASH_GT] = ACTIONS(6143), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_PLUS_PLUS] = ACTIONS(6143), + [anon_sym_GT_GT] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6143), }, - [2733] = { - [anon_sym_LPAREN2] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5953), - [anon_sym_DASH_DASH] = ACTIONS(5951), - [anon_sym_STAR_EQ] = ACTIONS(5951), - [anon_sym_LT_LT_EQ] = ACTIONS(5951), - [anon_sym_PERCENT_EQ] = ACTIONS(5951), - [anon_sym_EQ_EQ] = ACTIONS(5951), - [anon_sym_PIPE] = ACTIONS(5953), - [anon_sym_LT] = ACTIONS(5953), - [anon_sym_CARET_EQ] = ACTIONS(5951), - [anon_sym_AMP] = ACTIONS(5953), - [anon_sym_PLUS] = ACTIONS(5953), - [anon_sym_GT_EQ] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_SLASH_EQ] = ACTIONS(5951), - [anon_sym_PLUS_EQ] = ACTIONS(5951), - [anon_sym_CARET] = ACTIONS(5953), - [anon_sym_GT] = ACTIONS(5953), - [anon_sym_PIPE_EQ] = ACTIONS(5951), - [anon_sym_GT_GT_EQ] = ACTIONS(5951), - [anon_sym_COMMA] = ACTIONS(5951), - [anon_sym_PIPE_PIPE] = ACTIONS(5951), - [anon_sym_DOT] = ACTIONS(5951), - [anon_sym_LT_LT] = ACTIONS(5953), - [anon_sym_LBRACK] = ACTIONS(5951), - [anon_sym_PERCENT] = ACTIONS(5953), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5951), - [anon_sym_DASH_EQ] = ACTIONS(5951), - [anon_sym_LT_EQ] = ACTIONS(5951), - [anon_sym_BANG_EQ] = ACTIONS(5951), - [anon_sym_AMP_EQ] = ACTIONS(5951), - [anon_sym_AMP_AMP] = ACTIONS(5951), - [anon_sym_DASH_GT] = ACTIONS(5951), - [anon_sym_EQ] = ACTIONS(5953), - [anon_sym_PLUS_PLUS] = ACTIONS(5951), - [anon_sym_GT_GT] = ACTIONS(5953), - [anon_sym_RBRACK] = ACTIONS(5951), + [2718] = { + [anon_sym_LPAREN2] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6149), + [anon_sym_DASH_DASH] = ACTIONS(6147), + [anon_sym_STAR_EQ] = ACTIONS(6147), + [anon_sym_LT_LT_EQ] = ACTIONS(6147), + [anon_sym_PERCENT_EQ] = ACTIONS(6147), + [anon_sym_EQ_EQ] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6149), + [anon_sym_LT] = ACTIONS(6149), + [anon_sym_CARET_EQ] = ACTIONS(6147), + [anon_sym_AMP] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6149), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6149), + [anon_sym_SLASH] = ACTIONS(6149), + [anon_sym_SLASH_EQ] = ACTIONS(6147), + [anon_sym_PLUS_EQ] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6149), + [anon_sym_GT] = ACTIONS(6149), + [anon_sym_PIPE_EQ] = ACTIONS(6147), + [anon_sym_GT_GT_EQ] = ACTIONS(6147), + [anon_sym_COMMA] = ACTIONS(6147), + [anon_sym_PIPE_PIPE] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(6147), + [anon_sym_LT_LT] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6147), + [anon_sym_PERCENT] = ACTIONS(6149), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6147), + [anon_sym_DASH_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_BANG_EQ] = ACTIONS(6147), + [anon_sym_AMP_EQ] = ACTIONS(6147), + [anon_sym_AMP_AMP] = ACTIONS(6147), + [anon_sym_DASH_GT] = ACTIONS(6147), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_PLUS_PLUS] = ACTIONS(6147), + [anon_sym_GT_GT] = ACTIONS(6149), + [anon_sym_RBRACK] = ACTIONS(6147), }, - [2734] = { - [anon_sym_LPAREN2] = ACTIONS(6009), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_DASH_DASH] = ACTIONS(6009), - [anon_sym_STAR_EQ] = ACTIONS(6009), - [anon_sym_LT_LT_EQ] = ACTIONS(6009), - [anon_sym_PERCENT_EQ] = ACTIONS(6009), - [anon_sym_EQ_EQ] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6011), - [anon_sym_CARET_EQ] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_GT_EQ] = ACTIONS(6009), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_SLASH_EQ] = ACTIONS(6009), - [anon_sym_PLUS_EQ] = ACTIONS(6009), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_GT] = ACTIONS(6011), - [anon_sym_PIPE_EQ] = ACTIONS(6009), - [anon_sym_GT_GT_EQ] = ACTIONS(6009), - [anon_sym_COMMA] = ACTIONS(6009), - [anon_sym_PIPE_PIPE] = ACTIONS(6009), - [anon_sym_DOT] = ACTIONS(6009), - [anon_sym_LT_LT] = ACTIONS(6011), - [anon_sym_LBRACK] = ACTIONS(6009), - [anon_sym_PERCENT] = ACTIONS(6011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6009), - [anon_sym_DASH_EQ] = ACTIONS(6009), - [anon_sym_LT_EQ] = ACTIONS(6009), - [anon_sym_BANG_EQ] = ACTIONS(6009), - [anon_sym_AMP_EQ] = ACTIONS(6009), - [anon_sym_AMP_AMP] = ACTIONS(6009), - [anon_sym_DASH_GT] = ACTIONS(6009), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_PLUS_PLUS] = ACTIONS(6009), - [anon_sym_GT_GT] = ACTIONS(6011), - [anon_sym_RBRACK] = ACTIONS(6009), + [2719] = { + [anon_sym_LPAREN2] = ACTIONS(6153), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_DASH_DASH] = ACTIONS(6153), + [anon_sym_STAR_EQ] = ACTIONS(6153), + [anon_sym_LT_LT_EQ] = ACTIONS(6153), + [anon_sym_PERCENT_EQ] = ACTIONS(6153), + [anon_sym_EQ_EQ] = ACTIONS(6153), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_CARET_EQ] = ACTIONS(6153), + [anon_sym_AMP] = ACTIONS(6155), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_GT_EQ] = ACTIONS(6153), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_SLASH_EQ] = ACTIONS(6153), + [anon_sym_PLUS_EQ] = ACTIONS(6153), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_PIPE_EQ] = ACTIONS(6153), + [anon_sym_GT_GT_EQ] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(6153), + [anon_sym_LT_LT] = ACTIONS(6155), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_PERCENT] = ACTIONS(6155), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DASH_EQ] = ACTIONS(6153), + [anon_sym_LT_EQ] = ACTIONS(6153), + [anon_sym_BANG_EQ] = ACTIONS(6153), + [anon_sym_AMP_EQ] = ACTIONS(6153), + [anon_sym_AMP_AMP] = ACTIONS(6153), + [anon_sym_DASH_GT] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6155), + [anon_sym_PLUS_PLUS] = ACTIONS(6153), + [anon_sym_GT_GT] = ACTIONS(6155), + [anon_sym_RBRACK] = ACTIONS(6153), }, - [2735] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3614), - [sym_logical_expression] = STATE(3614), - [sym_bitwise_expression] = STATE(3614), - [sym_cast_expression] = STATE(3614), - [sym_new_expression] = STATE(3614), + [2720] = { + [sym_template_function] = STATE(3586), + [sym__expression] = STATE(3586), + [sym_logical_expression] = STATE(3586), + [sym_bitwise_expression] = STATE(3586), + [sym_cast_expression] = STATE(3586), + [sym_delete_expression] = STATE(3586), [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(3614), - [sym_char_literal] = STATE(3614), - [sym_template_function] = STATE(3614), - [sym_conditional_expression] = STATE(3614), - [sym_equality_expression] = STATE(3614), - [sym_relational_expression] = STATE(3614), - [sym_delete_expression] = STATE(3614), - [sym_sizeof_expression] = STATE(3614), - [sym_parenthesized_expression] = STATE(3614), - [sym_lambda_expression] = STATE(3614), - [sym_concatenated_string] = STATE(3614), - [sym_string_literal] = STATE(244), + [sym_compound_literal_expression] = STATE(3586), + [sym_lambda_expression] = STATE(3586), + [sym_char_literal] = STATE(3586), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(3586), + [sym_equality_expression] = STATE(3586), + [sym_relational_expression] = STATE(3586), + [sym_sizeof_expression] = STATE(3586), [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(3614), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(3586), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(245), + [sym_concatenated_string] = STATE(3586), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3586), [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(3614), - [sym_math_expression] = STATE(3614), + [sym_shift_expression] = STATE(3586), + [sym_math_expression] = STATE(3586), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(7655), - [sym_null] = ACTIONS(7655), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(7653), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(7655), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(7655), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_new_expression] = STATE(3586), + [sym_raw_string_literal] = ACTIONS(7634), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(7636), + [sym_null] = ACTIONS(7636), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(7634), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(7636), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(7636), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(398), }, - [2736] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_PERCENT] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_DASH_GT] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_GT_GT] = ACTIONS(964), - [anon_sym_RBRACK] = ACTIONS(964), + [2721] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_QMARK] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_DASH_GT] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [anon_sym_RBRACK] = ACTIONS(968), }, - [2737] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [2722] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -115264,7 +115058,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(7657), + [anon_sym_RBRACE] = ACTIONS(7638), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -115296,1860 +115090,1860 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [2738] = { - [anon_sym_LPAREN2] = ACTIONS(7659), - [anon_sym_DASH] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7659), - [anon_sym_LBRACE] = ACTIONS(7659), - [anon_sym_mutable] = ACTIONS(7661), - [anon_sym_DASH_DASH] = ACTIONS(7659), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7659), - [anon_sym_EQ] = ACTIONS(7661), - [anon_sym_COLON_COLON] = ACTIONS(7659), - [anon_sym_final] = ACTIONS(7661), - [anon_sym_EQ_EQ] = ACTIONS(7659), - [anon_sym_PIPE] = ACTIONS(7661), - [anon_sym_LT] = ACTIONS(7661), - [anon_sym_AMP] = ACTIONS(7661), - [anon_sym_static] = ACTIONS(7661), - [anon_sym_volatile] = ACTIONS(7661), - [anon_sym_PLUS] = ACTIONS(7661), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7659), - [anon_sym_SLASH] = ACTIONS(7661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7659), - [anon_sym_COLON] = ACTIONS(7661), - [anon_sym_explicit] = ACTIONS(7661), - [sym_identifier] = ACTIONS(7661), - [anon_sym_RBRACE] = ACTIONS(7659), - [anon_sym_override] = ACTIONS(7661), - [sym_operator_name] = ACTIONS(7659), - [sym_noexcept] = ACTIONS(7661), - [anon_sym_CARET] = ACTIONS(7659), - [anon_sym_GT] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7659), - [anon_sym_register] = ACTIONS(7661), - [anon_sym__Atomic] = ACTIONS(7661), - [anon_sym_const] = ACTIONS(7661), - [anon_sym_extern] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7659), - [anon_sym_DOT] = ACTIONS(7661), - [anon_sym_LT_LT] = ACTIONS(7659), - [anon_sym_constexpr] = ACTIONS(7661), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7659), - [anon_sym_QMARK] = ACTIONS(7659), - [anon_sym_TILDE] = ACTIONS(7659), - [anon_sym_SEMI] = ACTIONS(7659), - [anon_sym_BANG_EQ] = ACTIONS(7659), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_AMP_AMP] = ACTIONS(7659), - [anon_sym_inline] = ACTIONS(7661), - [anon_sym_RPAREN] = ACTIONS(7659), - [anon_sym_restrict] = ACTIONS(7661), - [anon_sym_GT_GT] = ACTIONS(7659), - [anon_sym_DASH_GT] = ACTIONS(7659), + [2723] = { + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_mutable] = ACTIONS(7642), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_COLON_COLON] = ACTIONS(7640), + [anon_sym_final] = ACTIONS(7642), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_static] = ACTIONS(7642), + [anon_sym_volatile] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7640), + [anon_sym_STAR] = ACTIONS(7640), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7640), + [anon_sym_COLON] = ACTIONS(7642), + [anon_sym_explicit] = ACTIONS(7642), + [sym_identifier] = ACTIONS(7642), + [anon_sym_RBRACE] = ACTIONS(7640), + [anon_sym_override] = ACTIONS(7642), + [sym_operator_name] = ACTIONS(7640), + [sym_noexcept] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7640), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_register] = ACTIONS(7642), + [anon_sym__Atomic] = ACTIONS(7642), + [anon_sym_const] = ACTIONS(7642), + [anon_sym_extern] = ACTIONS(7642), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7642), + [anon_sym_LT_LT] = ACTIONS(7640), + [anon_sym_constexpr] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7640), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_TILDE] = ACTIONS(7640), + [anon_sym_SEMI] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_inline] = ACTIONS(7642), + [anon_sym_RPAREN] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7642), + [anon_sym_GT_GT] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7640), }, - [2739] = { - [anon_sym_LPAREN2] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7663), - [anon_sym_LBRACE] = ACTIONS(7663), - [anon_sym_mutable] = ACTIONS(7665), - [anon_sym_DASH_DASH] = ACTIONS(7663), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7663), - [anon_sym_EQ] = ACTIONS(7665), - [anon_sym_COLON_COLON] = ACTIONS(7663), - [anon_sym_final] = ACTIONS(7665), - [anon_sym_EQ_EQ] = ACTIONS(7663), - [anon_sym_PIPE] = ACTIONS(7665), - [anon_sym_LT] = ACTIONS(7665), - [anon_sym_AMP] = ACTIONS(7665), - [anon_sym_static] = ACTIONS(7665), - [anon_sym_volatile] = ACTIONS(7665), - [anon_sym_PLUS] = ACTIONS(7665), - [anon_sym_GT_EQ] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7663), - [anon_sym_COLON] = ACTIONS(7665), - [anon_sym_explicit] = ACTIONS(7665), - [sym_identifier] = ACTIONS(7665), - [anon_sym_RBRACE] = ACTIONS(7663), - [anon_sym_override] = ACTIONS(7665), - [sym_operator_name] = ACTIONS(7663), - [sym_noexcept] = ACTIONS(7665), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_GT] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7663), - [anon_sym_register] = ACTIONS(7665), - [anon_sym__Atomic] = ACTIONS(7665), - [anon_sym_const] = ACTIONS(7665), - [anon_sym_extern] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7663), - [anon_sym_DOT] = ACTIONS(7665), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_constexpr] = ACTIONS(7665), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_QMARK] = ACTIONS(7663), - [anon_sym_TILDE] = ACTIONS(7663), - [anon_sym_SEMI] = ACTIONS(7663), - [anon_sym_BANG_EQ] = ACTIONS(7663), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_AMP_AMP] = ACTIONS(7663), - [anon_sym_inline] = ACTIONS(7665), - [anon_sym_RPAREN] = ACTIONS(7663), - [anon_sym_restrict] = ACTIONS(7665), - [anon_sym_GT_GT] = ACTIONS(7663), - [anon_sym_DASH_GT] = ACTIONS(7663), + [2724] = { + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_mutable] = ACTIONS(7646), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_COLON_COLON] = ACTIONS(7644), + [anon_sym_final] = ACTIONS(7646), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_static] = ACTIONS(7646), + [anon_sym_volatile] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7644), + [anon_sym_STAR] = ACTIONS(7644), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7644), + [anon_sym_COLON] = ACTIONS(7646), + [anon_sym_explicit] = ACTIONS(7646), + [sym_identifier] = ACTIONS(7646), + [anon_sym_RBRACE] = ACTIONS(7644), + [anon_sym_override] = ACTIONS(7646), + [sym_operator_name] = ACTIONS(7644), + [sym_noexcept] = ACTIONS(7646), + [anon_sym_CARET] = ACTIONS(7644), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_register] = ACTIONS(7646), + [anon_sym__Atomic] = ACTIONS(7646), + [anon_sym_const] = ACTIONS(7646), + [anon_sym_extern] = ACTIONS(7646), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7646), + [anon_sym_LT_LT] = ACTIONS(7644), + [anon_sym_constexpr] = ACTIONS(7646), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7644), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_TILDE] = ACTIONS(7644), + [anon_sym_SEMI] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_inline] = ACTIONS(7646), + [anon_sym_RPAREN] = ACTIONS(7644), + [anon_sym_restrict] = ACTIONS(7646), + [anon_sym_GT_GT] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7644), }, - [2740] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(828), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [sym_null] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [2725] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(832), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(1400), + [sym_raw_string_literal] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_null] = ACTIONS(2830), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2828), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1518), [anon_sym_LBRACE] = ACTIONS(175), }, - [2741] = { - [sym_template_type] = STATE(239), + [2726] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(7667), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(7648), }, - [2742] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2727] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2743] = { - [anon_sym_RPAREN] = ACTIONS(7669), + [2728] = { + [anon_sym_RPAREN] = ACTIONS(7650), [sym_comment] = ACTIONS(3), }, - [2744] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3619), - [sym_logical_expression] = STATE(3619), - [sym_bitwise_expression] = STATE(3619), - [sym_cast_expression] = STATE(3619), - [sym_new_expression] = STATE(3619), - [sym_field_expression] = STATE(3619), - [sym_compound_literal_expression] = STATE(3619), - [sym_char_literal] = STATE(3619), - [sym_template_function] = STATE(3619), - [sym_conditional_expression] = STATE(3619), - [sym_equality_expression] = STATE(3619), - [sym_relational_expression] = STATE(3619), - [sym_delete_expression] = STATE(3619), - [sym_sizeof_expression] = STATE(3619), - [sym_parenthesized_expression] = STATE(3619), - [sym_lambda_expression] = STATE(3619), - [sym_concatenated_string] = STATE(3619), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3619), - [sym_assignment_expression] = STATE(3619), - [sym_pointer_expression] = STATE(3619), - [sym_shift_expression] = STATE(3619), - [sym_math_expression] = STATE(3619), - [sym_call_expression] = STATE(3619), - [sym_lambda_capture_specifier] = STATE(196), + [2729] = { + [sym_template_function] = STATE(3591), + [sym__expression] = STATE(3591), + [sym_logical_expression] = STATE(3591), + [sym_bitwise_expression] = STATE(3591), + [sym_cast_expression] = STATE(3591), + [sym_delete_expression] = STATE(3591), + [sym_field_expression] = STATE(3591), + [sym_compound_literal_expression] = STATE(3591), + [sym_lambda_expression] = STATE(3591), + [sym_char_literal] = STATE(3591), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3591), + [sym_equality_expression] = STATE(3591), + [sym_relational_expression] = STATE(3591), + [sym_sizeof_expression] = STATE(3591), + [sym_subscript_expression] = STATE(3591), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7671), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7673), - [sym_null] = ACTIONS(7673), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7671), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(7675), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7673), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7673), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3591), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3591), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3591), + [sym_pointer_expression] = STATE(3591), + [sym_shift_expression] = STATE(3591), + [sym_math_expression] = STATE(3591), + [sym_call_expression] = STATE(3591), + [sym_new_expression] = STATE(3591), + [sym_raw_string_literal] = ACTIONS(7652), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7654), + [sym_null] = ACTIONS(7654), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7652), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(7656), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7654), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7654), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2745] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(3620), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [2730] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(3592), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [2746] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2731] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2747] = { - [sym_union_specifier] = STATE(1502), - [sym_macro_type_specifier] = STATE(1502), - [sym_class_specifier] = STATE(1502), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1502), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1502), - [aux_sym_sized_type_specifier_repeat1] = STATE(2748), - [sym_struct_specifier] = STATE(1502), - [sym_enum_specifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1502), - [anon_sym_unsigned] = ACTIONS(5630), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(5630), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(5630), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(5632), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(5630), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2967), + [2732] = { + [sym_union_specifier] = STATE(1497), + [sym_macro_type_specifier] = STATE(1497), + [sym_class_specifier] = STATE(1497), + [aux_sym_sized_type_specifier_repeat1] = STATE(2733), + [sym_sized_type_specifier] = STATE(1497), + [sym__type_specifier] = STATE(1497), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1497), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1497), + [sym_struct_specifier] = STATE(1497), + [anon_sym_unsigned] = ACTIONS(5636), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(5636), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(5638), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(5636), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2969), }, - [2748] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3622), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(7683), - [anon_sym_long] = ACTIONS(7683), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(7683), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2991), - [anon_sym_unsigned] = ACTIONS(7683), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), + [2733] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3594), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(7664), + [anon_sym_long] = ACTIONS(7664), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(7664), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(2986), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(7664), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), }, - [2749] = { - [sym_initializer_list] = STATE(1522), - [sym_new_declarator] = STATE(1521), - [sym_argument_list] = STATE(1522), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(7685), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [2734] = { + [sym_new_declarator] = STATE(1514), + [sym_argument_list] = STATE(1515), + [sym_initializer_list] = STATE(1515), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(7666), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [2750] = { - [sym_union_specifier] = STATE(3624), - [sym_macro_type_specifier] = STATE(3624), - [sym_class_specifier] = STATE(3624), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(3624), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(3624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2748), - [sym_struct_specifier] = STATE(3624), - [sym_enum_specifier] = STATE(3624), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(3624), - [anon_sym_unsigned] = ACTIONS(5630), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(7687), - [anon_sym_signed] = ACTIONS(5630), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(5630), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(5632), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(5630), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(7687), + [2735] = { + [sym_union_specifier] = STATE(3596), + [sym_macro_type_specifier] = STATE(3596), + [sym_class_specifier] = STATE(3596), + [aux_sym_sized_type_specifier_repeat1] = STATE(2733), + [sym_sized_type_specifier] = STATE(3596), + [sym__type_specifier] = STATE(3596), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(3596), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(3596), + [sym_struct_specifier] = STATE(3596), + [anon_sym_unsigned] = ACTIONS(5636), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(7668), + [anon_sym_signed] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(5636), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(5638), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(5636), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(7668), }, - [2751] = { - [sym_template_type] = STATE(239), + [2736] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(7689), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(7670), }, - [2752] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2737] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(7674), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(7684), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2753] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3626), - [sym_logical_expression] = STATE(3626), - [sym_bitwise_expression] = STATE(3626), - [sym_cast_expression] = STATE(3626), - [sym_new_expression] = STATE(3626), - [sym_field_expression] = STATE(3626), - [sym_compound_literal_expression] = STATE(3626), - [sym_char_literal] = STATE(3626), - [sym_template_function] = STATE(3626), - [sym_conditional_expression] = STATE(3626), - [sym_equality_expression] = STATE(3626), - [sym_relational_expression] = STATE(3626), - [sym_delete_expression] = STATE(3626), - [sym_sizeof_expression] = STATE(3626), - [sym_parenthesized_expression] = STATE(3626), - [sym_lambda_expression] = STATE(3626), - [sym_concatenated_string] = STATE(3626), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3626), - [sym_assignment_expression] = STATE(3626), - [sym_pointer_expression] = STATE(3626), - [sym_shift_expression] = STATE(3626), - [sym_math_expression] = STATE(3626), - [sym_call_expression] = STATE(3626), - [sym_lambda_capture_specifier] = STATE(196), + [2738] = { + [sym_template_function] = STATE(3598), + [sym__expression] = STATE(3598), + [sym_logical_expression] = STATE(3598), + [sym_bitwise_expression] = STATE(3598), + [sym_cast_expression] = STATE(3598), + [sym_delete_expression] = STATE(3598), + [sym_field_expression] = STATE(3598), + [sym_compound_literal_expression] = STATE(3598), + [sym_lambda_expression] = STATE(3598), + [sym_char_literal] = STATE(3598), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3598), + [sym_equality_expression] = STATE(3598), + [sym_relational_expression] = STATE(3598), + [sym_sizeof_expression] = STATE(3598), + [sym_subscript_expression] = STATE(3598), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7707), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7709), - [sym_null] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7707), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7709), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7709), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3598), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3598), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3598), + [sym_pointer_expression] = STATE(3598), + [sym_shift_expression] = STATE(3598), + [sym_math_expression] = STATE(3598), + [sym_call_expression] = STATE(3598), + [sym_new_expression] = STATE(3598), + [sym_raw_string_literal] = ACTIONS(7688), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7690), + [sym_null] = ACTIONS(7690), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7688), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7690), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7690), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2754] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3627), - [sym_logical_expression] = STATE(3627), - [sym_bitwise_expression] = STATE(3627), - [sym_cast_expression] = STATE(3627), - [sym_new_expression] = STATE(3627), - [sym_field_expression] = STATE(3627), - [sym_compound_literal_expression] = STATE(3627), - [sym_char_literal] = STATE(3627), - [sym_template_function] = STATE(3627), - [sym_conditional_expression] = STATE(3627), - [sym_equality_expression] = STATE(3627), - [sym_relational_expression] = STATE(3627), - [sym_delete_expression] = STATE(3627), - [sym_sizeof_expression] = STATE(3627), - [sym_parenthesized_expression] = STATE(3627), - [sym_lambda_expression] = STATE(3627), - [sym_concatenated_string] = STATE(3627), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3627), - [sym_assignment_expression] = STATE(3627), - [sym_pointer_expression] = STATE(3627), - [sym_shift_expression] = STATE(3627), - [sym_math_expression] = STATE(3627), - [sym_call_expression] = STATE(3627), - [sym_lambda_capture_specifier] = STATE(196), + [2739] = { + [sym_template_function] = STATE(3599), + [sym__expression] = STATE(3599), + [sym_logical_expression] = STATE(3599), + [sym_bitwise_expression] = STATE(3599), + [sym_cast_expression] = STATE(3599), + [sym_delete_expression] = STATE(3599), + [sym_field_expression] = STATE(3599), + [sym_compound_literal_expression] = STATE(3599), + [sym_lambda_expression] = STATE(3599), + [sym_char_literal] = STATE(3599), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3599), + [sym_equality_expression] = STATE(3599), + [sym_relational_expression] = STATE(3599), + [sym_sizeof_expression] = STATE(3599), + [sym_subscript_expression] = STATE(3599), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7711), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7713), - [sym_null] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7711), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7713), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7713), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3599), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3599), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3599), + [sym_pointer_expression] = STATE(3599), + [sym_shift_expression] = STATE(3599), + [sym_math_expression] = STATE(3599), + [sym_call_expression] = STATE(3599), + [sym_new_expression] = STATE(3599), + [sym_raw_string_literal] = ACTIONS(7692), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7694), + [sym_null] = ACTIONS(7694), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7692), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7694), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7694), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2755] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3628), - [sym_logical_expression] = STATE(3628), - [sym_bitwise_expression] = STATE(3628), - [sym_cast_expression] = STATE(3628), - [sym_new_expression] = STATE(3628), - [sym_field_expression] = STATE(3628), - [sym_compound_literal_expression] = STATE(3628), - [sym_char_literal] = STATE(3628), - [sym_template_function] = STATE(3628), - [sym_conditional_expression] = STATE(3628), - [sym_equality_expression] = STATE(3628), - [sym_relational_expression] = STATE(3628), - [sym_delete_expression] = STATE(3628), - [sym_sizeof_expression] = STATE(3628), - [sym_parenthesized_expression] = STATE(3628), - [sym_lambda_expression] = STATE(3628), - [sym_concatenated_string] = STATE(3628), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3628), - [sym_assignment_expression] = STATE(3628), - [sym_pointer_expression] = STATE(3628), - [sym_shift_expression] = STATE(3628), - [sym_math_expression] = STATE(3628), - [sym_call_expression] = STATE(3628), - [sym_lambda_capture_specifier] = STATE(196), + [2740] = { + [sym_template_function] = STATE(3600), + [sym__expression] = STATE(3600), + [sym_logical_expression] = STATE(3600), + [sym_bitwise_expression] = STATE(3600), + [sym_cast_expression] = STATE(3600), + [sym_delete_expression] = STATE(3600), + [sym_field_expression] = STATE(3600), + [sym_compound_literal_expression] = STATE(3600), + [sym_lambda_expression] = STATE(3600), + [sym_char_literal] = STATE(3600), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3600), + [sym_equality_expression] = STATE(3600), + [sym_relational_expression] = STATE(3600), + [sym_sizeof_expression] = STATE(3600), + [sym_subscript_expression] = STATE(3600), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7715), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7717), - [sym_null] = ACTIONS(7717), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7715), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3600), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3600), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3600), + [sym_pointer_expression] = STATE(3600), + [sym_shift_expression] = STATE(3600), + [sym_math_expression] = STATE(3600), + [sym_call_expression] = STATE(3600), + [sym_new_expression] = STATE(3600), + [sym_raw_string_literal] = ACTIONS(7696), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7698), + [sym_null] = ACTIONS(7698), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7696), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7698), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7698), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2756] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3629), - [sym_logical_expression] = STATE(3629), - [sym_bitwise_expression] = STATE(3629), - [sym_cast_expression] = STATE(3629), - [sym_new_expression] = STATE(3629), - [sym_field_expression] = STATE(3629), - [sym_compound_literal_expression] = STATE(3629), - [sym_char_literal] = STATE(3629), - [sym_template_function] = STATE(3629), - [sym_conditional_expression] = STATE(3629), - [sym_equality_expression] = STATE(3629), - [sym_relational_expression] = STATE(3629), - [sym_delete_expression] = STATE(3629), - [sym_sizeof_expression] = STATE(3629), - [sym_parenthesized_expression] = STATE(3629), - [sym_lambda_expression] = STATE(3629), - [sym_concatenated_string] = STATE(3629), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3629), - [sym_assignment_expression] = STATE(3629), - [sym_pointer_expression] = STATE(3629), - [sym_shift_expression] = STATE(3629), - [sym_math_expression] = STATE(3629), - [sym_call_expression] = STATE(3629), - [sym_lambda_capture_specifier] = STATE(196), + [2741] = { + [sym_template_function] = STATE(3601), + [sym__expression] = STATE(3601), + [sym_logical_expression] = STATE(3601), + [sym_bitwise_expression] = STATE(3601), + [sym_cast_expression] = STATE(3601), + [sym_delete_expression] = STATE(3601), + [sym_field_expression] = STATE(3601), + [sym_compound_literal_expression] = STATE(3601), + [sym_lambda_expression] = STATE(3601), + [sym_char_literal] = STATE(3601), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3601), + [sym_equality_expression] = STATE(3601), + [sym_relational_expression] = STATE(3601), + [sym_sizeof_expression] = STATE(3601), + [sym_subscript_expression] = STATE(3601), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7721), - [sym_null] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7719), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7721), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7721), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3601), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3601), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3601), + [sym_pointer_expression] = STATE(3601), + [sym_shift_expression] = STATE(3601), + [sym_math_expression] = STATE(3601), + [sym_call_expression] = STATE(3601), + [sym_new_expression] = STATE(3601), + [sym_raw_string_literal] = ACTIONS(7700), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7702), + [sym_null] = ACTIONS(7702), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7700), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7702), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7702), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2757] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3630), - [sym_logical_expression] = STATE(3630), - [sym_bitwise_expression] = STATE(3630), - [sym_cast_expression] = STATE(3630), - [sym_new_expression] = STATE(3630), - [sym_field_expression] = STATE(3630), - [sym_compound_literal_expression] = STATE(3630), - [sym_char_literal] = STATE(3630), - [sym_template_function] = STATE(3630), - [sym_conditional_expression] = STATE(3630), - [sym_equality_expression] = STATE(3630), - [sym_relational_expression] = STATE(3630), - [sym_delete_expression] = STATE(3630), - [sym_sizeof_expression] = STATE(3630), - [sym_parenthesized_expression] = STATE(3630), - [sym_lambda_expression] = STATE(3630), - [sym_concatenated_string] = STATE(3630), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3630), - [sym_assignment_expression] = STATE(3630), - [sym_pointer_expression] = STATE(3630), - [sym_shift_expression] = STATE(3630), - [sym_math_expression] = STATE(3630), - [sym_call_expression] = STATE(3630), - [sym_lambda_capture_specifier] = STATE(196), + [2742] = { + [sym_template_function] = STATE(3602), + [sym__expression] = STATE(3602), + [sym_logical_expression] = STATE(3602), + [sym_bitwise_expression] = STATE(3602), + [sym_cast_expression] = STATE(3602), + [sym_delete_expression] = STATE(3602), + [sym_field_expression] = STATE(3602), + [sym_compound_literal_expression] = STATE(3602), + [sym_lambda_expression] = STATE(3602), + [sym_char_literal] = STATE(3602), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3602), + [sym_equality_expression] = STATE(3602), + [sym_relational_expression] = STATE(3602), + [sym_sizeof_expression] = STATE(3602), + [sym_subscript_expression] = STATE(3602), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7723), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7725), - [sym_null] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7723), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7725), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7725), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3602), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3602), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3602), + [sym_pointer_expression] = STATE(3602), + [sym_shift_expression] = STATE(3602), + [sym_math_expression] = STATE(3602), + [sym_call_expression] = STATE(3602), + [sym_new_expression] = STATE(3602), + [sym_raw_string_literal] = ACTIONS(7704), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7706), + [sym_null] = ACTIONS(7706), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7704), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7706), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7706), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2758] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1548), - [sym_logical_expression] = STATE(1548), - [sym_bitwise_expression] = STATE(1548), - [sym_cast_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_field_expression] = STATE(1548), - [sym_compound_literal_expression] = STATE(1548), - [sym_char_literal] = STATE(1548), - [sym_template_function] = STATE(1548), - [sym_conditional_expression] = STATE(1548), - [sym_equality_expression] = STATE(1548), - [sym_relational_expression] = STATE(1548), - [sym_delete_expression] = STATE(1548), - [sym_sizeof_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_lambda_expression] = STATE(1548), - [sym_concatenated_string] = STATE(1548), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1548), - [sym_assignment_expression] = STATE(1548), - [sym_pointer_expression] = STATE(1548), - [sym_shift_expression] = STATE(1548), - [sym_math_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_lambda_capture_specifier] = STATE(196), + [2743] = { + [sym_template_function] = STATE(1541), + [sym__expression] = STATE(1541), + [sym_logical_expression] = STATE(1541), + [sym_bitwise_expression] = STATE(1541), + [sym_cast_expression] = STATE(1541), + [sym_delete_expression] = STATE(1541), + [sym_field_expression] = STATE(1541), + [sym_compound_literal_expression] = STATE(1541), + [sym_lambda_expression] = STATE(1541), + [sym_char_literal] = STATE(1541), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1541), + [sym_equality_expression] = STATE(1541), + [sym_relational_expression] = STATE(1541), + [sym_sizeof_expression] = STATE(1541), + [sym_subscript_expression] = STATE(1541), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(3079), - [sym_null] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(1541), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(1541), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1541), + [sym_pointer_expression] = STATE(1541), + [sym_shift_expression] = STATE(1541), + [sym_math_expression] = STATE(1541), + [sym_call_expression] = STATE(1541), + [sym_new_expression] = STATE(1541), + [sym_raw_string_literal] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2759] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3631), - [sym_logical_expression] = STATE(3631), - [sym_bitwise_expression] = STATE(3631), - [sym_cast_expression] = STATE(3631), - [sym_new_expression] = STATE(3631), - [sym_field_expression] = STATE(3631), - [sym_compound_literal_expression] = STATE(3631), - [sym_char_literal] = STATE(3631), - [sym_template_function] = STATE(3631), - [sym_conditional_expression] = STATE(3631), - [sym_equality_expression] = STATE(3631), - [sym_relational_expression] = STATE(3631), - [sym_delete_expression] = STATE(3631), - [sym_sizeof_expression] = STATE(3631), - [sym_parenthesized_expression] = STATE(3631), - [sym_lambda_expression] = STATE(3631), - [sym_concatenated_string] = STATE(3631), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3631), - [sym_assignment_expression] = STATE(3631), - [sym_pointer_expression] = STATE(3631), - [sym_shift_expression] = STATE(3631), - [sym_math_expression] = STATE(3631), - [sym_call_expression] = STATE(3631), - [sym_lambda_capture_specifier] = STATE(196), + [2744] = { + [sym_template_function] = STATE(3603), + [sym__expression] = STATE(3603), + [sym_logical_expression] = STATE(3603), + [sym_bitwise_expression] = STATE(3603), + [sym_cast_expression] = STATE(3603), + [sym_delete_expression] = STATE(3603), + [sym_field_expression] = STATE(3603), + [sym_compound_literal_expression] = STATE(3603), + [sym_lambda_expression] = STATE(3603), + [sym_char_literal] = STATE(3603), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3603), + [sym_equality_expression] = STATE(3603), + [sym_relational_expression] = STATE(3603), + [sym_sizeof_expression] = STATE(3603), + [sym_subscript_expression] = STATE(3603), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7727), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7729), - [sym_null] = ACTIONS(7729), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7727), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7729), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7729), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3603), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3603), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3603), + [sym_pointer_expression] = STATE(3603), + [sym_shift_expression] = STATE(3603), + [sym_math_expression] = STATE(3603), + [sym_call_expression] = STATE(3603), + [sym_new_expression] = STATE(3603), + [sym_raw_string_literal] = ACTIONS(7708), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7710), + [sym_null] = ACTIONS(7710), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7708), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7710), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2760] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3632), - [sym_logical_expression] = STATE(3632), - [sym_bitwise_expression] = STATE(3632), - [sym_cast_expression] = STATE(3632), - [sym_new_expression] = STATE(3632), - [sym_field_expression] = STATE(3632), - [sym_compound_literal_expression] = STATE(3632), - [sym_char_literal] = STATE(3632), - [sym_template_function] = STATE(3632), - [sym_conditional_expression] = STATE(3632), - [sym_equality_expression] = STATE(3632), - [sym_relational_expression] = STATE(3632), - [sym_delete_expression] = STATE(3632), - [sym_sizeof_expression] = STATE(3632), - [sym_parenthesized_expression] = STATE(3632), - [sym_lambda_expression] = STATE(3632), - [sym_concatenated_string] = STATE(3632), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3632), - [sym_assignment_expression] = STATE(3632), - [sym_pointer_expression] = STATE(3632), - [sym_shift_expression] = STATE(3632), - [sym_math_expression] = STATE(3632), - [sym_call_expression] = STATE(3632), - [sym_lambda_capture_specifier] = STATE(196), + [2745] = { + [sym_template_function] = STATE(3604), + [sym__expression] = STATE(3604), + [sym_logical_expression] = STATE(3604), + [sym_bitwise_expression] = STATE(3604), + [sym_cast_expression] = STATE(3604), + [sym_delete_expression] = STATE(3604), + [sym_field_expression] = STATE(3604), + [sym_compound_literal_expression] = STATE(3604), + [sym_lambda_expression] = STATE(3604), + [sym_char_literal] = STATE(3604), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3604), + [sym_equality_expression] = STATE(3604), + [sym_relational_expression] = STATE(3604), + [sym_sizeof_expression] = STATE(3604), + [sym_subscript_expression] = STATE(3604), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7733), - [sym_null] = ACTIONS(7733), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7731), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7733), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7733), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3604), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3604), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3604), + [sym_pointer_expression] = STATE(3604), + [sym_shift_expression] = STATE(3604), + [sym_math_expression] = STATE(3604), + [sym_call_expression] = STATE(3604), + [sym_new_expression] = STATE(3604), + [sym_raw_string_literal] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7714), + [sym_null] = ACTIONS(7714), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7712), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7714), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7714), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2761] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3633), - [sym_logical_expression] = STATE(3633), - [sym_bitwise_expression] = STATE(3633), - [sym_cast_expression] = STATE(3633), - [sym_new_expression] = STATE(3633), - [sym_field_expression] = STATE(3633), - [sym_compound_literal_expression] = STATE(3633), - [sym_char_literal] = STATE(3633), - [sym_template_function] = STATE(3633), - [sym_conditional_expression] = STATE(3633), - [sym_equality_expression] = STATE(3633), - [sym_relational_expression] = STATE(3633), - [sym_delete_expression] = STATE(3633), - [sym_sizeof_expression] = STATE(3633), - [sym_parenthesized_expression] = STATE(3633), - [sym_lambda_expression] = STATE(3633), - [sym_concatenated_string] = STATE(3633), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3633), - [sym_assignment_expression] = STATE(3633), - [sym_pointer_expression] = STATE(3633), - [sym_shift_expression] = STATE(3633), - [sym_math_expression] = STATE(3633), - [sym_call_expression] = STATE(3633), - [sym_lambda_capture_specifier] = STATE(196), + [2746] = { + [sym_template_function] = STATE(3605), + [sym__expression] = STATE(3605), + [sym_logical_expression] = STATE(3605), + [sym_bitwise_expression] = STATE(3605), + [sym_cast_expression] = STATE(3605), + [sym_delete_expression] = STATE(3605), + [sym_field_expression] = STATE(3605), + [sym_compound_literal_expression] = STATE(3605), + [sym_lambda_expression] = STATE(3605), + [sym_char_literal] = STATE(3605), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3605), + [sym_equality_expression] = STATE(3605), + [sym_relational_expression] = STATE(3605), + [sym_sizeof_expression] = STATE(3605), + [sym_subscript_expression] = STATE(3605), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7735), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7737), - [sym_null] = ACTIONS(7737), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7735), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7737), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7737), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3605), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3605), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3605), + [sym_pointer_expression] = STATE(3605), + [sym_shift_expression] = STATE(3605), + [sym_math_expression] = STATE(3605), + [sym_call_expression] = STATE(3605), + [sym_new_expression] = STATE(3605), + [sym_raw_string_literal] = ACTIONS(7716), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7718), + [sym_null] = ACTIONS(7718), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7716), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2762] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3634), - [sym_logical_expression] = STATE(3634), - [sym_bitwise_expression] = STATE(3634), - [sym_cast_expression] = STATE(3634), - [sym_new_expression] = STATE(3634), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(3634), - [sym_char_literal] = STATE(3634), - [sym_template_function] = STATE(3634), - [sym_conditional_expression] = STATE(3634), - [sym_equality_expression] = STATE(3634), - [sym_relational_expression] = STATE(3634), - [sym_delete_expression] = STATE(3634), - [sym_sizeof_expression] = STATE(3634), - [sym_parenthesized_expression] = STATE(3634), - [sym_lambda_expression] = STATE(3634), - [sym_concatenated_string] = STATE(3634), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(3634), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(3634), - [sym_math_expression] = STATE(3634), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7739), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(7741), - [sym_null] = ACTIONS(7741), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7739), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(7741), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(7741), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [2747] = { + [sym_template_function] = STATE(3606), + [sym__expression] = STATE(3606), + [sym_logical_expression] = STATE(3606), + [sym_bitwise_expression] = STATE(3606), + [sym_cast_expression] = STATE(3606), + [sym_delete_expression] = STATE(3606), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(3606), + [sym_lambda_expression] = STATE(3606), + [sym_char_literal] = STATE(3606), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3606), + [sym_equality_expression] = STATE(3606), + [sym_relational_expression] = STATE(3606), + [sym_sizeof_expression] = STATE(3606), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3606), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(3606), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3606), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(3606), + [sym_math_expression] = STATE(3606), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(3606), + [sym_raw_string_literal] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(7722), + [sym_null] = ACTIONS(7722), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7720), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(7722), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(7722), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [2763] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3635), - [sym_logical_expression] = STATE(3635), - [sym_bitwise_expression] = STATE(3635), - [sym_cast_expression] = STATE(3635), - [sym_new_expression] = STATE(3635), - [sym_field_expression] = STATE(3635), - [sym_compound_literal_expression] = STATE(3635), - [sym_char_literal] = STATE(3635), - [sym_template_function] = STATE(3635), - [sym_conditional_expression] = STATE(3635), - [sym_equality_expression] = STATE(3635), - [sym_relational_expression] = STATE(3635), - [sym_delete_expression] = STATE(3635), - [sym_sizeof_expression] = STATE(3635), - [sym_parenthesized_expression] = STATE(3635), - [sym_lambda_expression] = STATE(3635), - [sym_concatenated_string] = STATE(3635), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3635), - [sym_assignment_expression] = STATE(3635), - [sym_pointer_expression] = STATE(3635), - [sym_shift_expression] = STATE(3635), - [sym_math_expression] = STATE(3635), - [sym_call_expression] = STATE(3635), - [sym_lambda_capture_specifier] = STATE(196), + [2748] = { + [sym_template_function] = STATE(3607), + [sym__expression] = STATE(3607), + [sym_logical_expression] = STATE(3607), + [sym_bitwise_expression] = STATE(3607), + [sym_cast_expression] = STATE(3607), + [sym_delete_expression] = STATE(3607), + [sym_field_expression] = STATE(3607), + [sym_compound_literal_expression] = STATE(3607), + [sym_lambda_expression] = STATE(3607), + [sym_char_literal] = STATE(3607), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3607), + [sym_equality_expression] = STATE(3607), + [sym_relational_expression] = STATE(3607), + [sym_sizeof_expression] = STATE(3607), + [sym_subscript_expression] = STATE(3607), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(7743), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(7745), - [sym_null] = ACTIONS(7745), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7743), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(7745), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7745), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(3607), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(3607), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3607), + [sym_pointer_expression] = STATE(3607), + [sym_shift_expression] = STATE(3607), + [sym_math_expression] = STATE(3607), + [sym_call_expression] = STATE(3607), + [sym_new_expression] = STATE(3607), + [sym_raw_string_literal] = ACTIONS(7724), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(7726), + [sym_null] = ACTIONS(7726), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7724), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(7726), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7726), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [2764] = { - [sym_string_literal] = STATE(3636), - [aux_sym_concatenated_string_repeat1] = STATE(3636), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_RPAREN] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [2749] = { + [sym_string_literal] = STATE(3608), + [aux_sym_concatenated_string_repeat1] = STATE(3608), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [2765] = { - [anon_sym_RPAREN] = ACTIONS(7747), + [2750] = { + [anon_sym_RPAREN] = ACTIONS(7728), [sym_comment] = ACTIONS(3), }, - [2766] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2751] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2767] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2767), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(7749), - [anon_sym_long] = ACTIONS(7749), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(7749), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(7749), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), + [2752] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2752), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(7730), + [anon_sym_long] = ACTIONS(7730), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(7730), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(7730), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), }, - [2768] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3638), - [sym_logical_expression] = STATE(3638), - [sym_bitwise_expression] = STATE(3638), - [sym_cast_expression] = STATE(3638), - [sym_new_expression] = STATE(3638), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3638), - [sym_char_literal] = STATE(3638), - [sym_template_function] = STATE(3638), - [sym_conditional_expression] = STATE(3638), - [sym_equality_expression] = STATE(3638), - [sym_relational_expression] = STATE(3638), - [sym_delete_expression] = STATE(3638), - [sym_sizeof_expression] = STATE(3638), - [sym_parenthesized_expression] = STATE(3638), - [sym_lambda_expression] = STATE(3638), - [sym_concatenated_string] = STATE(3638), - [sym_string_literal] = STATE(967), + [2753] = { + [sym_template_function] = STATE(3610), + [sym__expression] = STATE(3610), + [sym_logical_expression] = STATE(3610), + [sym_bitwise_expression] = STATE(3610), + [sym_cast_expression] = STATE(3610), + [sym_delete_expression] = STATE(3610), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3610), + [sym_lambda_expression] = STATE(3610), + [sym_char_literal] = STATE(3610), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3638), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3638), - [sym_math_expression] = STATE(3638), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3610), + [sym_equality_expression] = STATE(3610), + [sym_relational_expression] = STATE(3610), + [sym_sizeof_expression] = STATE(3610), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(7752), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(7754), - [sym_null] = ACTIONS(7754), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(7752), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(7754), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7754), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(3610), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3610), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3610), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3610), + [sym_math_expression] = STATE(3610), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3610), + [sym_raw_string_literal] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(7735), + [sym_null] = ACTIONS(7735), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(7733), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(7735), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [2769] = { - [sym_initializer_list] = STATE(1570), - [sym_new_declarator] = STATE(1571), - [sym_argument_list] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), + [2754] = { + [sym_new_declarator] = STATE(1566), + [sym_argument_list] = STATE(1565), + [sym_initializer_list] = STATE(1565), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(5646), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(5652), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [2770] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3639), - [sym_logical_expression] = STATE(3639), - [sym_bitwise_expression] = STATE(3639), - [sym_cast_expression] = STATE(3639), - [sym_new_expression] = STATE(3639), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(3639), - [sym_char_literal] = STATE(3639), - [sym_template_function] = STATE(3639), - [sym_conditional_expression] = STATE(3639), - [sym_equality_expression] = STATE(3639), - [sym_relational_expression] = STATE(3639), - [sym_delete_expression] = STATE(3639), - [sym_sizeof_expression] = STATE(3639), - [sym_parenthesized_expression] = STATE(3639), - [sym_lambda_expression] = STATE(3639), - [sym_concatenated_string] = STATE(3639), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(3639), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(3639), - [sym_math_expression] = STATE(3639), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7756), - [anon_sym_DASH] = ACTIONS(1482), - [sym_true] = ACTIONS(7758), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [sym_null] = ACTIONS(7758), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7756), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7758), - [sym_nullptr] = ACTIONS(7758), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), + [2755] = { + [sym_template_function] = STATE(3611), + [sym__expression] = STATE(3611), + [sym_logical_expression] = STATE(3611), + [sym_bitwise_expression] = STATE(3611), + [sym_cast_expression] = STATE(3611), + [sym_delete_expression] = STATE(3611), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(3611), + [sym_lambda_expression] = STATE(3611), + [sym_char_literal] = STATE(3611), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3611), + [sym_equality_expression] = STATE(3611), + [sym_relational_expression] = STATE(3611), + [sym_sizeof_expression] = STATE(3611), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3611), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(3611), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3611), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(3611), + [sym_math_expression] = STATE(3611), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(3611), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(1496), + [sym_true] = ACTIONS(7739), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_null] = ACTIONS(7739), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7737), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7739), + [sym_nullptr] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1518), }, - [2771] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2756] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2772] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_RPAREN] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2757] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2773] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_RPAREN] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2758] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2774] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2759] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2775] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2760] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2776] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_RPAREN] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2761] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_RPAREN] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2777] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2762] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2778] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2763] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2779] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(7760), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2764] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2780] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2765] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2781] = { - [sym_template_argument_list] = STATE(377), + [2766] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -117157,7 +116951,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -117167,7 +116961,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(7762), + [anon_sym_COLON] = ACTIONS(7743), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -117193,177 +116987,177 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [2782] = { - [sym_parenthesized_expression] = STATE(3642), - [anon_sym_LPAREN2] = ACTIONS(372), + [2767] = { + [sym_parenthesized_expression] = STATE(3614), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [2783] = { - [anon_sym_LPAREN2] = ACTIONS(7764), + [2768] = { + [anon_sym_LPAREN2] = ACTIONS(7745), [sym_comment] = ACTIONS(3), }, - [2784] = { - [sym_compound_statement] = STATE(3644), - [anon_sym_LBRACE] = ACTIONS(374), + [2769] = { + [sym_compound_statement] = STATE(3616), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [2785] = { - [anon_sym_LPAREN2] = ACTIONS(7766), - [anon_sym_constexpr] = ACTIONS(7768), + [2770] = { + [anon_sym_LPAREN2] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7749), [sym_comment] = ACTIONS(3), }, - [2786] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(7774), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_namespace] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_using] = ACTIONS(7770), - [sym_preproc_directive] = ACTIONS(7770), - [aux_sym_preproc_if_token1] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7770), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [sym_operator_name] = ACTIONS(7772), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [aux_sym_preproc_include_token1] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_template] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [ts_builtin_sym_end] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7770), - [anon_sym_AMP_AMP] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [2771] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(7755), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_namespace] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_using] = ACTIONS(7751), + [sym_preproc_directive] = ACTIONS(7751), + [aux_sym_preproc_if_token1] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [sym_operator_name] = ACTIONS(7753), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [aux_sym_preproc_include_token1] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [ts_builtin_sym_end] = ACTIONS(7753), + [aux_sym_preproc_def_token1] = ACTIONS(7751), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [2787] = { - [sym_string_literal] = STATE(2787), - [aux_sym_concatenated_string_repeat1] = STATE(2787), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [2772] = { + [sym_string_literal] = STATE(2772), + [aux_sym_concatenated_string_repeat1] = STATE(2772), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3890), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [2788] = { - [sym_do_statement] = STATE(3648), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [2773] = { + [sym_do_statement] = STATE(3620), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(3648), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(3648), - [sym_if_statement] = STATE(3648), - [sym_switch_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3620), + [sym_try_statement] = STATE(3620), + [sym_if_statement] = STATE(3620), + [sym_switch_statement] = STATE(3620), + [sym_for_statement] = STATE(3620), + [sym_return_statement] = STATE(3620), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3620), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3648), - [sym_labeled_statement] = STATE(3648), - [sym_expression_statement] = STATE(3648), - [sym_while_statement] = STATE(3648), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(3620), + [sym_for_range_loop] = STATE(3620), + [sym_compound_statement] = STATE(3620), + [sym_labeled_statement] = STATE(3620), + [sym_expression_statement] = STATE(3620), + [sym_while_statement] = STATE(3620), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -117377,18 +117171,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -117401,1009 +117195,1060 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2789] = { - [anon_sym_else] = ACTIONS(4161), - [anon_sym_while] = ACTIONS(4161), + [2774] = { + [anon_sym_else] = ACTIONS(4159), + [anon_sym_while] = ACTIONS(4159), [sym_comment] = ACTIONS(3), }, - [2790] = { - [sym_do_statement] = STATE(2078), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [2775] = { + [sym_do_statement] = STATE(2067), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(2078), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(2078), - [sym_if_statement] = STATE(2078), - [sym_switch_statement] = STATE(2078), - [sym_for_statement] = STATE(2078), - [sym_return_statement] = STATE(2078), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2067), + [sym_try_statement] = STATE(2067), + [aux_sym_switch_body_repeat1] = STATE(2067), + [sym_if_statement] = STATE(2067), + [sym_switch_statement] = STATE(2067), + [sym_for_statement] = STATE(2067), + [sym_return_statement] = STATE(2067), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(2078), - [aux_sym_switch_body_repeat1] = STATE(2078), - [sym_case_statement] = STATE(2078), - [sym_break_statement] = STATE(2078), - [sym_continue_statement] = STATE(2078), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(2067), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2067), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2078), - [sym_labeled_statement] = STATE(2078), - [sym_expression_statement] = STATE(2078), - [sym_while_statement] = STATE(2078), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(2067), + [sym_for_range_loop] = STATE(2067), + [sym_compound_statement] = STATE(2067), + [sym_labeled_statement] = STATE(2067), + [sym_expression_statement] = STATE(2067), + [sym_while_statement] = STATE(2067), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(7776), + [anon_sym_RBRACE] = ACTIONS(7757), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2791] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3651), - [sym_logical_expression] = STATE(3651), - [sym_bitwise_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(3651), - [sym_char_literal] = STATE(3651), - [sym_template_function] = STATE(3651), - [sym_conditional_expression] = STATE(3651), - [sym_equality_expression] = STATE(3651), - [sym_relational_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_concatenated_string] = STATE(3651), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(3651), - [sym_math_expression] = STATE(3651), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7778), + [2776] = { + [sym_template_function] = STATE(3623), + [sym__expression] = STATE(3623), + [sym_logical_expression] = STATE(3623), + [sym_bitwise_expression] = STATE(3623), + [sym_cast_expression] = STATE(3623), + [sym_delete_expression] = STATE(3623), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3623), + [sym_lambda_expression] = STATE(3623), + [sym_char_literal] = STATE(3623), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3623), + [sym_equality_expression] = STATE(3623), + [sym_relational_expression] = STATE(3623), + [sym_sizeof_expression] = STATE(3623), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3623), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(3623), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3623), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3623), + [sym_math_expression] = STATE(3623), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3623), + [sym_raw_string_literal] = ACTIONS(7759), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(7780), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(7780), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(7761), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(7761), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7778), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(7759), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(7780), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(7780), + [sym_false] = ACTIONS(7761), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(7761), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(7782), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(7763), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [2792] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(7784), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2777] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(7765), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2793] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3653), - [sym_logical_expression] = STATE(3653), - [sym_bitwise_expression] = STATE(3653), - [sym_cast_expression] = STATE(3653), - [sym_new_expression] = STATE(3653), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3653), - [sym_char_literal] = STATE(3653), - [sym_template_function] = STATE(3653), - [sym_conditional_expression] = STATE(3653), - [sym_equality_expression] = STATE(3653), - [sym_relational_expression] = STATE(3653), - [sym_delete_expression] = STATE(3653), - [sym_sizeof_expression] = STATE(3653), - [sym_parenthesized_expression] = STATE(3653), - [sym_lambda_expression] = STATE(3653), - [sym_concatenated_string] = STATE(3653), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3653), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3653), - [sym_math_expression] = STATE(3653), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7786), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(7788), - [sym_null] = ACTIONS(7788), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7786), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(7788), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(7788), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(7784), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [2778] = { + [sym_template_function] = STATE(3625), + [sym__expression] = STATE(3625), + [sym_logical_expression] = STATE(3625), + [sym_bitwise_expression] = STATE(3625), + [sym_cast_expression] = STATE(3625), + [sym_delete_expression] = STATE(3625), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3625), + [sym_lambda_expression] = STATE(3625), + [sym_char_literal] = STATE(3625), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3625), + [sym_equality_expression] = STATE(3625), + [sym_relational_expression] = STATE(3625), + [sym_sizeof_expression] = STATE(3625), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3625), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(3625), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3625), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3625), + [sym_math_expression] = STATE(3625), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3625), + [sym_raw_string_literal] = ACTIONS(7767), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(7769), + [sym_null] = ACTIONS(7769), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7767), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(7769), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(7769), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(7765), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [2794] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3654), - [sym_logical_expression] = STATE(3654), - [sym_bitwise_expression] = STATE(3654), - [sym_cast_expression] = STATE(3654), - [sym_new_expression] = STATE(3654), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(3654), - [sym_char_literal] = STATE(3654), - [sym_template_function] = STATE(3654), - [sym_conditional_expression] = STATE(3654), - [sym_equality_expression] = STATE(3654), - [sym_relational_expression] = STATE(3654), - [sym_delete_expression] = STATE(3654), - [sym_sizeof_expression] = STATE(3654), - [sym_parenthesized_expression] = STATE(3654), - [sym_lambda_expression] = STATE(3654), - [sym_concatenated_string] = STATE(3654), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(3654), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(3654), - [sym_math_expression] = STATE(3654), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7790), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(7792), - [sym_null] = ACTIONS(7792), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7790), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(7792), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(7792), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [2779] = { + [sym_template_function] = STATE(3626), + [sym__expression] = STATE(3626), + [sym_logical_expression] = STATE(3626), + [sym_bitwise_expression] = STATE(3626), + [sym_cast_expression] = STATE(3626), + [sym_delete_expression] = STATE(3626), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(3626), + [sym_lambda_expression] = STATE(3626), + [sym_char_literal] = STATE(3626), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3626), + [sym_equality_expression] = STATE(3626), + [sym_relational_expression] = STATE(3626), + [sym_sizeof_expression] = STATE(3626), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3626), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(3626), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3626), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(3626), + [sym_math_expression] = STATE(3626), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(3626), + [sym_raw_string_literal] = ACTIONS(7771), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(7773), + [sym_null] = ACTIONS(7773), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7771), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(7773), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(7773), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [2795] = { - [sym_compound_statement] = STATE(3655), - [anon_sym_LBRACE] = ACTIONS(374), + [2780] = { + [sym_compound_statement] = STATE(3627), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [2796] = { - [aux_sym_try_statement_repeat1] = STATE(2796), - [sym_catch_clause] = STATE(2796), - [anon_sym_catch] = ACTIONS(7794), - [anon_sym_while] = ACTIONS(5355), + [2781] = { + [sym_catch_clause] = STATE(2781), + [aux_sym_try_statement_repeat1] = STATE(2781), + [anon_sym_catch] = ACTIONS(7775), + [anon_sym_while] = ACTIONS(5354), [sym_comment] = ACTIONS(3), }, - [2797] = { - [sym_do_statement] = STATE(3661), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [2782] = { + [sym_do_statement] = STATE(3633), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(3661), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(3661), - [sym_if_statement] = STATE(3661), - [sym_switch_statement] = STATE(3661), - [sym_for_statement] = STATE(3661), - [sym_return_statement] = STATE(3661), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3633), + [sym_try_statement] = STATE(3633), + [sym_if_statement] = STATE(3633), + [sym_switch_statement] = STATE(3633), + [sym_for_statement] = STATE(3633), + [sym_return_statement] = STATE(3633), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(3661), - [sym_break_statement] = STATE(3661), - [sym_continue_statement] = STATE(3661), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3633), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3661), - [sym_labeled_statement] = STATE(3661), - [sym_expression_statement] = STATE(3661), - [sym_while_statement] = STATE(3661), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(3633), + [sym_for_range_loop] = STATE(3633), + [sym_compound_statement] = STATE(3633), + [sym_labeled_statement] = STATE(3633), + [sym_expression_statement] = STATE(3633), + [sym_while_statement] = STATE(3633), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [2798] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(7807), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2783] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(7788), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2799] = { - [anon_sym_else] = ACTIONS(5728), - [anon_sym_while] = ACTIONS(5728), + [2784] = { + [anon_sym_else] = ACTIONS(5734), + [anon_sym_while] = ACTIONS(5734), [sym_comment] = ACTIONS(3), }, - [2800] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(7809), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2785] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(7790), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2801] = { - [anon_sym_RPAREN] = ACTIONS(7809), + [2786] = { + [anon_sym_RPAREN] = ACTIONS(7790), [sym_comment] = ACTIONS(3), }, - [2802] = { - [anon_sym_COMMA] = ACTIONS(7811), - [anon_sym_GT2] = ACTIONS(7811), + [2787] = { + [anon_sym_COMMA] = ACTIONS(7792), + [anon_sym_GT2] = ACTIONS(7792), [sym_comment] = ACTIONS(3), }, - [2803] = { - [sym_union_specifier] = STATE(3666), - [sym_macro_type_specifier] = STATE(3666), - [sym_class_specifier] = STATE(3666), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(3666), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(3666), - [aux_sym_sized_type_specifier_repeat1] = STATE(3665), - [sym_struct_specifier] = STATE(3666), - [sym_enum_specifier] = STATE(3666), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(3666), - [anon_sym_unsigned] = ACTIONS(7813), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(7815), - [anon_sym_signed] = ACTIONS(7813), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(7813), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(7817), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(7813), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(7815), + [2788] = { + [sym_union_specifier] = STATE(3638), + [sym_macro_type_specifier] = STATE(3638), + [sym_class_specifier] = STATE(3638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3637), + [sym_sized_type_specifier] = STATE(3638), + [sym__type_specifier] = STATE(3638), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(3638), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(3638), + [sym_struct_specifier] = STATE(3638), + [anon_sym_unsigned] = ACTIONS(7794), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(7796), + [anon_sym_signed] = ACTIONS(7794), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(7794), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(7798), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(7794), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(7796), }, - [2804] = { - [anon_sym_LPAREN2] = ACTIONS(2169), - [anon_sym_final] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_DASH_GT] = ACTIONS(2169), - [anon_sym_mutable] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_GT2] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_override] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_COLON] = ACTIONS(2171), - [anon_sym_explicit] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2171), - [sym_operator_name] = ACTIONS(2169), - [sym_noexcept] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_register] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_constexpr] = ACTIONS(2171), + [2789] = { + [anon_sym_LPAREN2] = ACTIONS(2171), + [anon_sym_final] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_DASH_GT] = ACTIONS(2171), + [anon_sym_mutable] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_GT2] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_volatile] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_explicit] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2173), + [sym_operator_name] = ACTIONS(2171), + [sym_noexcept] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_register] = ACTIONS(2173), + [anon_sym__Atomic] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_constexpr] = ACTIONS(2173), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2171), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_restrict] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_inline] = ACTIONS(2173), + [anon_sym_EQ] = ACTIONS(2173), + [anon_sym_restrict] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2173), }, - [2805] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(3667), - [sym_storage_class_specifier] = STATE(3667), - [sym_type_qualifier] = STATE(3667), - [anon_sym_LPAREN2] = ACTIONS(1675), + [2790] = { + [sym_storage_class_specifier] = STATE(2790), + [sym_type_qualifier] = STATE(2790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2790), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_register] = ACTIONS(1802), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_GT2] = ACTIONS(1795), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1797), + [sym_operator_name] = ACTIONS(1795), + }, + [2791] = { + [anon_sym_COMMA] = ACTIONS(7800), + [anon_sym_GT2] = ACTIONS(7800), + [sym_comment] = ACTIONS(3), + }, + [2792] = { + [anon_sym_struct] = ACTIONS(7802), + [sym_auto] = ACTIONS(7802), + [anon_sym_signed] = ACTIONS(7802), + [anon_sym_mutable] = ACTIONS(7802), + [anon_sym_long] = ACTIONS(7802), + [anon_sym_register] = ACTIONS(7802), + [anon_sym__Atomic] = ACTIONS(7802), + [anon_sym_const] = ACTIONS(7802), + [anon_sym_extern] = ACTIONS(7802), + [anon_sym_COLON_COLON] = ACTIONS(7804), + [anon_sym_enum] = ACTIONS(7802), + [anon_sym_class] = ACTIONS(7802), + [anon_sym_constexpr] = ACTIONS(7802), + [sym_primitive_type] = ACTIONS(7802), + [anon_sym_unsigned] = ACTIONS(7802), + [anon_sym_static] = ACTIONS(7802), + [anon_sym_volatile] = ACTIONS(7802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7804), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(7802), + [anon_sym_typename] = ACTIONS(7802), + [anon_sym_explicit] = ACTIONS(7802), + [anon_sym_short] = ACTIONS(7802), + [anon_sym_inline] = ACTIONS(7802), + [sym_identifier] = ACTIONS(7802), + [anon_sym_restrict] = ACTIONS(7802), + }, + [2793] = { + [aux_sym_template_parameter_list_repeat1] = STATE(2793), + [anon_sym_COMMA] = ACTIONS(7806), + [anon_sym_GT2] = ACTIONS(7800), + [sym_comment] = ACTIONS(3), + }, + [2794] = { + [sym_storage_class_specifier] = STATE(3639), + [sym_type_qualifier] = STATE(3639), + [aux_sym__declaration_specifiers_repeat1] = STATE(3639), + [anon_sym_LPAREN2] = ACTIONS(1785), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(1785), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_GT2] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1787), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(1675), + [sym_operator_name] = ACTIONS(1785), [anon_sym_restrict] = ACTIONS(11), }, - [2806] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(3668), - [sym_storage_class_specifier] = STATE(3668), - [sym_type_qualifier] = STATE(3668), - [anon_sym_LPAREN2] = ACTIONS(1675), + [2795] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2795), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(7809), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1783), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(7809), + [anon_sym_GT2] = ACTIONS(1778), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(7809), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(7809), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1783), + [sym_operator_name] = ACTIONS(1778), + }, + [2796] = { + [sym_storage_class_specifier] = STATE(3640), + [sym_type_qualifier] = STATE(3640), + [aux_sym__declaration_specifiers_repeat1] = STATE(3640), + [anon_sym_LPAREN2] = ACTIONS(1785), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(1785), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_GT2] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1787), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(1675), + [sym_operator_name] = ACTIONS(1785), [anon_sym_restrict] = ACTIONS(11), }, - [2807] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2807), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(7819), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(7819), - [anon_sym_GT2] = ACTIONS(2077), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(7819), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(7819), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), - [sym_operator_name] = ACTIONS(2077), - }, - [2808] = { - [sym__abstract_declarator] = STATE(2211), - [sym_template_type] = STATE(1807), - [sym_abstract_array_declarator] = STATE(2211), - [sym_function_declarator] = STATE(3669), - [sym_destructor_name] = STATE(3669), - [sym__declarator] = STATE(3669), - [sym_abstract_pointer_declarator] = STATE(2211), - [sym_array_declarator] = STATE(3669), + [2797] = { + [sym_abstract_reference_declarator] = STATE(2200), + [sym_template_function] = STATE(3641), + [sym_abstract_array_declarator] = STATE(2200), + [sym__declarator] = STATE(3641), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1806), + [sym_reference_declarator] = STATE(3641), + [sym_array_declarator] = STATE(3641), + [sym_abstract_pointer_declarator] = STATE(2200), + [sym_template_type] = STATE(1808), + [sym_destructor_name] = STATE(3641), [sym_parameter_list] = STATE(1174), - [sym_pointer_declarator] = STATE(3669), - [sym_scoped_namespace_identifier] = STATE(1807), - [sym_abstract_reference_declarator] = STATE(2211), - [sym_abstract_function_declarator] = STATE(2211), - [sym_template_function] = STATE(3669), - [sym_scoped_identifier] = STATE(1809), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(3669), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(5743), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(5747), - [anon_sym_TILDE] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(3565), - [anon_sym_GT2] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [sym_identifier] = ACTIONS(3567), - [anon_sym_AMP_AMP] = ACTIONS(5749), - [sym_operator_name] = ACTIONS(7822), + [sym_pointer_declarator] = STATE(3641), + [sym_structured_binding_declarator] = STATE(3641), + [sym_abstract_function_declarator] = STATE(2200), + [sym_scoped_namespace_identifier] = STATE(1808), + [sym__abstract_declarator] = STATE(2200), + [sym_function_declarator] = STATE(3641), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(5762), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(3575), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(5764), + [sym_operator_name] = ACTIONS(7812), [sym_comment] = ACTIONS(3), }, - [2809] = { - [sym__abstract_declarator] = STATE(2213), - [sym_template_type] = STATE(1807), - [sym_abstract_array_declarator] = STATE(2213), - [sym_function_declarator] = STATE(3670), - [sym_destructor_name] = STATE(3670), - [sym__declarator] = STATE(3670), - [sym_abstract_pointer_declarator] = STATE(2213), - [sym_array_declarator] = STATE(3670), - [sym_type_qualifier] = STATE(3671), + [2798] = { + [sym_abstract_reference_declarator] = STATE(2202), + [sym_template_function] = STATE(3643), + [sym_abstract_array_declarator] = STATE(2202), + [aux_sym_type_definition_repeat1] = STATE(3642), + [sym__declarator] = STATE(3643), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1806), + [sym_reference_declarator] = STATE(3643), + [sym_array_declarator] = STATE(3643), + [sym_abstract_pointer_declarator] = STATE(2202), + [sym_template_type] = STATE(1808), + [sym_type_qualifier] = STATE(3642), + [sym_destructor_name] = STATE(3643), [sym_parameter_list] = STATE(1174), - [sym_pointer_declarator] = STATE(3670), - [sym_scoped_namespace_identifier] = STATE(1807), - [sym_abstract_reference_declarator] = STATE(2213), - [sym_abstract_function_declarator] = STATE(2213), - [sym_template_function] = STATE(3670), - [aux_sym_type_definition_repeat1] = STATE(3671), - [sym_scoped_identifier] = STATE(1809), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(3670), - [anon_sym_LPAREN2] = ACTIONS(3557), + [sym_pointer_declarator] = STATE(3643), + [sym_structured_binding_declarator] = STATE(3643), + [sym_abstract_function_declarator] = STATE(2202), + [sym_scoped_namespace_identifier] = STATE(1808), + [sym__abstract_declarator] = STATE(2202), + [sym_function_declarator] = STATE(3643), + [anon_sym_LPAREN2] = ACTIONS(3567), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(2832), + [anon_sym_COMMA] = ACTIONS(2837), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_COLON_COLON] = ACTIONS(3565), + [anon_sym_GT2] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_COLON_COLON] = ACTIONS(3575), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_AMP] = ACTIONS(5758), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(5747), - [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(5762), + [anon_sym_TILDE] = ACTIONS(2200), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(3567), - [anon_sym_AMP_AMP] = ACTIONS(5749), - [sym_operator_name] = ACTIONS(7824), + [sym_identifier] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(5764), + [sym_operator_name] = ACTIONS(7814), [anon_sym_restrict] = ACTIONS(11), }, - [2810] = { - [sym_parameter_list] = STATE(3672), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(7826), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(7826), - [sym_comment] = ACTIONS(3), - }, - [2811] = { - [sym_parameter_list] = STATE(2218), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(7826), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(7826), - [sym_comment] = ACTIONS(3), - }, - [2812] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2812), - [sym_storage_class_specifier] = STATE(2812), - [sym_type_qualifier] = STATE(2812), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_COMMA] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym_EQ] = ACTIONS(1679), - [anon_sym_restrict] = ACTIONS(1683), - [sym_identifier] = ACTIONS(1681), - [sym_operator_name] = ACTIONS(1679), - }, - [2813] = { - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_final] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_DASH_GT] = ACTIONS(3746), - [anon_sym_mutable] = ACTIONS(3748), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_GT2] = ACTIONS(3746), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(3748), - [anon_sym_AMP] = ACTIONS(3748), - [anon_sym_static] = ACTIONS(3748), - [anon_sym_volatile] = ACTIONS(3748), - [anon_sym_PLUS] = ACTIONS(3748), - [anon_sym_GT_EQ] = ACTIONS(3748), - [anon_sym_STAR] = ACTIONS(3746), - [anon_sym_override] = ACTIONS(3748), - [anon_sym_SLASH] = ACTIONS(3748), - [anon_sym_COLON] = ACTIONS(3748), - [anon_sym_explicit] = ACTIONS(3748), - [sym_identifier] = ACTIONS(3748), - [sym_operator_name] = ACTIONS(3746), - [sym_noexcept] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3748), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_register] = ACTIONS(3748), - [anon_sym__Atomic] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3746), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(3746), - [anon_sym_constexpr] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3746), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_inline] = ACTIONS(3748), - [anon_sym_EQ] = ACTIONS(3748), - [anon_sym_restrict] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3748), - }, - [2814] = { - [anon_sym_COMMA] = ACTIONS(7828), - [anon_sym_GT2] = ACTIONS(7828), + [2799] = { + [sym_parameter_list] = STATE(3644), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(7816), [sym_comment] = ACTIONS(3), }, - [2815] = { - [anon_sym_struct] = ACTIONS(7830), - [sym_auto] = ACTIONS(7830), - [anon_sym_signed] = ACTIONS(7830), - [anon_sym_mutable] = ACTIONS(7830), - [anon_sym_long] = ACTIONS(7830), - [anon_sym_register] = ACTIONS(7830), - [anon_sym__Atomic] = ACTIONS(7830), - [anon_sym_const] = ACTIONS(7830), - [anon_sym_extern] = ACTIONS(7830), - [anon_sym_COLON_COLON] = ACTIONS(7832), - [anon_sym_enum] = ACTIONS(7830), - [anon_sym_class] = ACTIONS(7830), - [anon_sym_constexpr] = ACTIONS(7830), - [sym_primitive_type] = ACTIONS(7830), - [anon_sym_unsigned] = ACTIONS(7830), - [anon_sym_static] = ACTIONS(7830), - [anon_sym_volatile] = ACTIONS(7830), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7832), + [2800] = { + [sym_parameter_list] = STATE(2207), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(7816), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(7830), - [anon_sym_typename] = ACTIONS(7830), - [anon_sym_explicit] = ACTIONS(7830), - [anon_sym_short] = ACTIONS(7830), - [anon_sym_inline] = ACTIONS(7830), - [sym_identifier] = ACTIONS(7830), - [anon_sym_restrict] = ACTIONS(7830), }, - [2816] = { - [aux_sym_template_parameter_list_repeat1] = STATE(2816), - [anon_sym_COMMA] = ACTIONS(7834), - [anon_sym_GT2] = ACTIONS(7828), - [sym_comment] = ACTIONS(3), + [2801] = { + [anon_sym_LPAREN2] = ACTIONS(3857), + [anon_sym_final] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_DASH_GT] = ACTIONS(3857), + [anon_sym_mutable] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3857), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_GT2] = ACTIONS(3857), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(3859), + [anon_sym_volatile] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3857), + [anon_sym_override] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_explicit] = ACTIONS(3859), + [sym_identifier] = ACTIONS(3859), + [sym_operator_name] = ACTIONS(3857), + [sym_noexcept] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3857), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3857), + [anon_sym_register] = ACTIONS(3859), + [anon_sym__Atomic] = ACTIONS(3859), + [anon_sym_const] = ACTIONS(3859), + [anon_sym_extern] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_LT_LT] = ACTIONS(3857), + [anon_sym_constexpr] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_inline] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_restrict] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3859), }, - [2817] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2812), - [sym_storage_class_specifier] = STATE(2812), - [sym_type_qualifier] = STATE(2812), - [anon_sym_LPAREN2] = ACTIONS(3708), + [2802] = { + [sym_storage_class_specifier] = STATE(2790), + [sym_type_qualifier] = STATE(2790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2790), + [anon_sym_LPAREN2] = ACTIONS(3895), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(3708), + [anon_sym_COMMA] = ACTIONS(3895), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(3708), - [anon_sym_GT2] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3895), + [anon_sym_GT2] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3897), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [sym_identifier] = ACTIONS(3710), - [anon_sym_EQ] = ACTIONS(3708), - [sym_operator_name] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [sym_identifier] = ACTIONS(3897), + [anon_sym_EQ] = ACTIONS(3895), + [sym_operator_name] = ACTIONS(3895), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [2818] = { - [sym__abstract_declarator] = STATE(1408), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(1408), - [sym_function_declarator] = STATE(553), - [sym_destructor_name] = STATE(553), - [sym__declarator] = STATE(553), - [sym_abstract_pointer_declarator] = STATE(1408), - [sym_array_declarator] = STATE(553), - [sym_parameter_list] = STATE(587), - [sym_pointer_declarator] = STATE(553), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(1408), - [sym_abstract_function_declarator] = STATE(1408), - [sym_template_function] = STATE(553), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(553), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(5764), - [anon_sym_STAR] = ACTIONS(5766), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(5768), - [sym_operator_name] = ACTIONS(994), + [2803] = { + [sym_abstract_reference_declarator] = STATE(1403), + [sym_template_function] = STATE(554), + [sym_abstract_array_declarator] = STATE(1403), + [sym__declarator] = STATE(554), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(554), + [sym_array_declarator] = STATE(554), + [sym_abstract_pointer_declarator] = STATE(1403), + [sym_template_type] = STATE(310), + [sym_destructor_name] = STATE(554), + [sym_parameter_list] = STATE(590), + [sym_pointer_declarator] = STATE(554), + [sym_structured_binding_declarator] = STATE(554), + [sym_abstract_function_declarator] = STATE(1403), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(1403), + [sym_function_declarator] = STATE(554), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(5770), + [anon_sym_STAR] = ACTIONS(5772), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(3579), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5776), + [sym_operator_name] = ACTIONS(998), [sym_comment] = ACTIONS(3), }, - [2819] = { - [sym__abstract_declarator] = STATE(1410), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(1410), - [sym_function_declarator] = STATE(557), - [sym_destructor_name] = STATE(557), - [sym__declarator] = STATE(557), - [sym_abstract_pointer_declarator] = STATE(1410), - [sym_array_declarator] = STATE(557), - [sym_type_qualifier] = STATE(3673), - [sym_parameter_list] = STATE(587), - [sym_pointer_declarator] = STATE(557), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(1410), - [sym_abstract_function_declarator] = STATE(1410), - [sym_template_function] = STATE(557), - [aux_sym_type_definition_repeat1] = STATE(3673), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(557), - [anon_sym_LPAREN2] = ACTIONS(3557), + [2804] = { + [sym_abstract_reference_declarator] = STATE(1405), + [sym_template_function] = STATE(558), + [sym_abstract_array_declarator] = STATE(1405), + [aux_sym_type_definition_repeat1] = STATE(3645), + [sym__declarator] = STATE(558), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(558), + [sym_array_declarator] = STATE(558), + [sym_abstract_pointer_declarator] = STATE(1405), + [sym_template_type] = STATE(310), + [sym_type_qualifier] = STATE(3645), + [sym_destructor_name] = STATE(558), + [sym_parameter_list] = STATE(590), + [sym_pointer_declarator] = STATE(558), + [sym_structured_binding_declarator] = STATE(558), + [sym_abstract_function_declarator] = STATE(1405), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(1405), + [sym_function_declarator] = STATE(558), + [anon_sym_LPAREN2] = ACTIONS(3567), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(3579), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(5764), + [anon_sym_AMP] = ACTIONS(5770), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(5766), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(5772), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(2832), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(5768), - [sym_operator_name] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(2837), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5776), + [sym_operator_name] = ACTIONS(1006), [anon_sym_restrict] = ACTIONS(11), }, - [2820] = { - [sym_parameter_list] = STATE(2827), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - }, - [2821] = { - [sym_parameter_list] = STATE(2827), - [anon_sym_LPAREN2] = ACTIONS(587), + [2805] = { + [sym_parameter_list] = STATE(2812), + [anon_sym_LPAREN2] = ACTIONS(614), [anon_sym_GT2] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(616), [anon_sym_EQ] = ACTIONS(2756), [anon_sym_COMMA] = ACTIONS(2756), [sym_comment] = ACTIONS(3), }, - [2822] = { - [sym__abstract_declarator] = STATE(3224), - [sym_template_type] = STATE(1807), - [sym_abstract_array_declarator] = STATE(3224), - [sym_function_declarator] = STATE(3674), - [sym_destructor_name] = STATE(3674), - [sym__declarator] = STATE(3674), - [sym_abstract_pointer_declarator] = STATE(3224), - [sym_array_declarator] = STATE(3674), - [sym_type_qualifier] = STATE(3675), + [2806] = { + [sym_abstract_reference_declarator] = STATE(3204), + [sym_template_function] = STATE(3647), + [sym_abstract_array_declarator] = STATE(3204), + [aux_sym_type_definition_repeat1] = STATE(3646), + [sym__declarator] = STATE(3647), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1806), + [sym_reference_declarator] = STATE(3647), + [sym_array_declarator] = STATE(3647), + [sym_abstract_pointer_declarator] = STATE(3204), + [sym_template_type] = STATE(1808), + [sym_type_qualifier] = STATE(3646), + [sym_destructor_name] = STATE(3647), [sym_parameter_list] = STATE(1174), - [sym_pointer_declarator] = STATE(3674), - [sym_scoped_namespace_identifier] = STATE(1807), - [sym_abstract_reference_declarator] = STATE(3224), - [sym_abstract_function_declarator] = STATE(3224), - [sym_template_function] = STATE(3674), - [aux_sym_type_definition_repeat1] = STATE(3675), - [sym_scoped_identifier] = STATE(1809), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(3674), - [anon_sym_LPAREN2] = ACTIONS(3557), + [sym_pointer_declarator] = STATE(3647), + [sym_structured_binding_declarator] = STATE(3647), + [sym_abstract_function_declarator] = STATE(3204), + [sym_scoped_namespace_identifier] = STATE(1808), + [sym__abstract_declarator] = STATE(3204), + [sym_function_declarator] = STATE(3647), + [anon_sym_LPAREN2] = ACTIONS(3567), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4987), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_COLON_COLON] = ACTIONS(3565), + [anon_sym_GT2] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_COLON_COLON] = ACTIONS(3575), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3569), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(2200), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(3567), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [sym_operator_name] = ACTIONS(7837), + [sym_identifier] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [sym_operator_name] = ACTIONS(7818), [anon_sym_restrict] = ACTIONS(11), }, - [2823] = { - [sym_destructor_name] = STATE(2156), - [sym_identifier] = ACTIONS(3700), - [sym_operator_name] = ACTIONS(4290), - [anon_sym_TILDE] = ACTIONS(2198), + [2807] = { + [sym_parameter_list] = STATE(2812), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), [sym_comment] = ACTIONS(3), }, - [2824] = { - [sym_argument_list] = STATE(1165), + [2808] = { + [sym_destructor_name] = STATE(2145), + [sym_identifier] = ACTIONS(3710), + [sym_operator_name] = ACTIONS(4288), + [anon_sym_TILDE] = ACTIONS(2200), + [sym_comment] = ACTIONS(3), + }, + [2809] = { + [aux_sym_structured_binding_declarator_repeat1] = STATE(771), + [sym_initializer_list] = STATE(772), + [sym_template_argument_list] = STATE(773), + [anon_sym_LPAREN2] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_RBRACK] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(3784), + [anon_sym_LT_LT_EQ] = ACTIONS(3784), + [anon_sym_PERCENT_EQ] = ACTIONS(3784), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_CARET_EQ] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_GT_EQ] = ACTIONS(165), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(3784), + [anon_sym_PLUS_EQ] = ACTIONS(3784), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(3784), + [anon_sym_GT_GT_EQ] = ACTIONS(3784), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_LT_LT] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(163), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(165), + [anon_sym_DASH_EQ] = ACTIONS(3784), + [anon_sym_LT_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_AMP_EQ] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(3786), + [anon_sym_GT_GT] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(165), + }, + [2810] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(7839), + [anon_sym_COMMA] = ACTIONS(7820), [anon_sym_PIPE_PIPE] = ACTIONS(2305), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_GT2] = ACTIONS(7839), + [anon_sym_GT2] = ACTIONS(7820), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_PERCENT] = ACTIONS(2311), [anon_sym_EQ_EQ] = ACTIONS(2313), @@ -118425,6739 +118270,6848 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [2825] = { - [sym_destructor_name] = STATE(2185), - [sym_identifier] = ACTIONS(3702), - [sym_operator_name] = ACTIONS(4334), - [anon_sym_TILDE] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - }, - [2826] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(3676), - [sym_logical_expression] = STATE(3676), - [sym_bitwise_expression] = STATE(3676), - [sym_cast_expression] = STATE(3676), - [sym_new_expression] = STATE(3676), + [2811] = { + [sym_template_function] = STATE(3648), + [sym__expression] = STATE(3648), + [sym_logical_expression] = STATE(3648), + [sym_bitwise_expression] = STATE(3648), + [sym_cast_expression] = STATE(3648), + [sym_delete_expression] = STATE(3648), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(3676), - [sym_char_literal] = STATE(3676), - [sym_template_function] = STATE(3676), - [sym_conditional_expression] = STATE(3676), - [sym_equality_expression] = STATE(3676), - [sym_relational_expression] = STATE(3676), - [sym_delete_expression] = STATE(3676), - [sym_sizeof_expression] = STATE(3676), - [sym_parenthesized_expression] = STATE(3676), - [sym_lambda_expression] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(3648), + [sym_lambda_expression] = STATE(3648), + [sym_char_literal] = STATE(3648), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(3648), + [sym_equality_expression] = STATE(3648), + [sym_relational_expression] = STATE(3648), + [sym_sizeof_expression] = STATE(3648), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(3676), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(3648), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(3648), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(3648), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(3676), - [sym_math_expression] = STATE(3676), + [sym_shift_expression] = STATE(3648), + [sym_math_expression] = STATE(3648), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(7841), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(7843), - [sym_null] = ACTIONS(7843), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(7841), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(7843), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(7843), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(3648), + [sym_raw_string_literal] = ACTIONS(7822), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(7824), + [sym_null] = ACTIONS(7824), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(7822), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(7824), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(7824), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [2827] = { - [sym_virtual_specifier] = STATE(3678), - [aux_sym_function_declarator_repeat1] = STATE(3678), - [sym_trailing_return_type] = STATE(3678), - [sym_type_qualifier] = STATE(3678), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(7845), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym__Atomic] = ACTIONS(1062), + [2812] = { + [sym_virtual_specifier] = STATE(3650), + [aux_sym_function_declarator_repeat1] = STATE(3650), + [sym_type_qualifier] = STATE(3650), + [sym_trailing_return_type] = STATE(3650), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(7826), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7847), - [anon_sym_EQ] = ACTIONS(1841), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7828), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_restrict] = ACTIONS(1070), }, - [2828] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(2829), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(5784), + [2813] = { + [sym_destructor_name] = STATE(2209), + [sym_identifier] = ACTIONS(3712), + [sym_operator_name] = ACTIONS(4413), + [anon_sym_TILDE] = ACTIONS(2200), + [sym_comment] = ACTIONS(3), + }, + [2814] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(2815), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(5794), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(5784), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(5794), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(5784), + [anon_sym_long] = ACTIONS(5794), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(5788), + [anon_sym_typename] = ACTIONS(5798), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(5784), + [anon_sym_short] = ACTIONS(5794), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), - }, - [2829] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3679), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(7849), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_long] = ACTIONS(7849), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(7849), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_short] = ACTIONS(7849), - [anon_sym_restrict] = ACTIONS(625), - [sym_identifier] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(358), }, - [2830] = { - [sym_parameter_list] = STATE(3682), - [sym_abstract_array_declarator] = STATE(3683), - [sym_abstract_pointer_declarator] = STATE(3683), - [sym_abstract_reference_declarator] = STATE(3683), - [sym_abstract_function_declarator] = STATE(3683), - [sym__abstract_declarator] = STATE(3683), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7851), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(7853), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_SEMI] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(7855), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_restrict] = ACTIONS(6210), - }, - [2831] = { - [sym_virtual_specifier] = STATE(2831), - [aux_sym_function_declarator_repeat1] = STATE(2831), - [sym_trailing_return_type] = STATE(2831), - [sym_type_qualifier] = STATE(2831), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(7857), - [anon_sym_mutable] = ACTIONS(7266), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_const] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(7266), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7266), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_SEMI] = ACTIONS(6220), - [anon_sym_explicit] = ACTIONS(7266), - [anon_sym_DASH_GT] = ACTIONS(7860), - [anon_sym_restrict] = ACTIONS(7266), + [2815] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3651), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(7830), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_long] = ACTIONS(7830), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(7830), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_short] = ACTIONS(7830), + [anon_sym_restrict] = ACTIONS(558), + [sym_identifier] = ACTIONS(1066), }, - [2832] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2832), - [sym_storage_class_specifier] = STATE(2832), - [sym_type_qualifier] = STATE(2832), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1683), - [sym_operator_name] = ACTIONS(1679), + [2816] = { + [sym_abstract_reference_declarator] = STATE(3655), + [sym_abstract_array_declarator] = STATE(3655), + [sym_abstract_pointer_declarator] = STATE(3655), + [sym_parameter_list] = STATE(3654), + [sym_abstract_function_declarator] = STATE(3655), + [sym__abstract_declarator] = STATE(3655), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7832), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_SEMI] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_restrict] = ACTIONS(6085), }, - [2833] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2832), - [sym_storage_class_specifier] = STATE(2832), - [sym_type_qualifier] = STATE(2832), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), + [2817] = { + [sym_virtual_specifier] = STATE(2817), + [aux_sym_function_declarator_repeat1] = STATE(2817), + [sym_type_qualifier] = STATE(2817), + [sym_trailing_return_type] = STATE(2817), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(7838), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym_const] = ACTIONS(7250), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(7247), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3708), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [sym_identifier] = ACTIONS(3710), - [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_SEMI] = ACTIONS(6286), + [anon_sym_explicit] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(7841), + [anon_sym_restrict] = ACTIONS(7247), }, - [2834] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(4529), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2818] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2835] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3684), - [sym_logical_expression] = STATE(3684), - [sym_bitwise_expression] = STATE(3684), - [sym_cast_expression] = STATE(3684), - [sym_new_expression] = STATE(3684), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3684), - [sym_char_literal] = STATE(3684), - [sym_template_function] = STATE(3684), - [sym_conditional_expression] = STATE(3684), - [sym_equality_expression] = STATE(3684), - [sym_relational_expression] = STATE(3684), - [sym_delete_expression] = STATE(3684), - [sym_sizeof_expression] = STATE(3684), - [sym_parenthesized_expression] = STATE(3684), - [sym_lambda_expression] = STATE(3684), - [sym_concatenated_string] = STATE(3684), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3684), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3684), - [sym_math_expression] = STATE(3684), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7863), - [anon_sym_DASH] = ACTIONS(480), - [sym_true] = ACTIONS(7865), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(7865), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7863), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7865), - [sym_nullptr] = ACTIONS(7865), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [2819] = { + [sym_template_function] = STATE(3656), + [sym__expression] = STATE(3656), + [sym_logical_expression] = STATE(3656), + [sym_bitwise_expression] = STATE(3656), + [sym_cast_expression] = STATE(3656), + [sym_delete_expression] = STATE(3656), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3656), + [sym_lambda_expression] = STATE(3656), + [sym_char_literal] = STATE(3656), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3656), + [sym_equality_expression] = STATE(3656), + [sym_relational_expression] = STATE(3656), + [sym_sizeof_expression] = STATE(3656), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3656), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(3656), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3656), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3656), + [sym_math_expression] = STATE(3656), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3656), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7844), + [anon_sym_DASH] = ACTIONS(484), + [sym_true] = ACTIONS(7846), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(7846), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7844), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7846), + [sym_nullptr] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), }, - [2836] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(894), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [2820] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(5269), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [sym_null] = ACTIONS(5269), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5267), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(5269), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1234), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(895), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [sym_raw_string_literal] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(5268), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [sym_null] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5266), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1240), }, - [2837] = { - [sym_template_type] = STATE(239), + [2821] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(7848), + }, + [2822] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(5836), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(5846), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2823] = { + [anon_sym_RPAREN] = ACTIONS(7850), + [sym_comment] = ACTIONS(3), + }, + [2824] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(5836), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(5846), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2825] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2825), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(7852), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(7852), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(7852), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(7852), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), + }, + [2826] = { + [sym_template_function] = STATE(3659), + [sym__expression] = STATE(3659), + [sym_logical_expression] = STATE(3659), + [sym_bitwise_expression] = STATE(3659), + [sym_cast_expression] = STATE(3659), + [sym_delete_expression] = STATE(3659), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3659), + [sym_lambda_expression] = STATE(3659), + [sym_char_literal] = STATE(3659), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(3659), + [sym_equality_expression] = STATE(3659), + [sym_relational_expression] = STATE(3659), + [sym_sizeof_expression] = STATE(3659), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(7867), + [sym_parenthesized_expression] = STATE(3659), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3659), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3659), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3659), + [sym_math_expression] = STATE(3659), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3659), + [sym_raw_string_literal] = ACTIONS(7855), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(7857), + [sym_null] = ACTIONS(7857), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(7855), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(7857), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7857), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), + }, + [2827] = { + [sym_new_declarator] = STATE(2556), + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(5828), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + }, + [2828] = { + [sym_template_function] = STATE(3660), + [sym__expression] = STATE(3660), + [sym_logical_expression] = STATE(3660), + [sym_bitwise_expression] = STATE(3660), + [sym_cast_expression] = STATE(3660), + [sym_delete_expression] = STATE(3660), + [sym_field_expression] = STATE(3660), + [sym_compound_literal_expression] = STATE(3660), + [sym_lambda_expression] = STATE(3660), + [sym_char_literal] = STATE(3660), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3660), + [sym_equality_expression] = STATE(3660), + [sym_relational_expression] = STATE(3660), + [sym_sizeof_expression] = STATE(3660), + [sym_subscript_expression] = STATE(3660), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(3660), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(3660), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3660), + [sym_pointer_expression] = STATE(3660), + [sym_shift_expression] = STATE(3660), + [sym_math_expression] = STATE(3660), + [sym_call_expression] = STATE(3660), + [sym_new_expression] = STATE(3660), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(7859), + [anon_sym_DASH] = ACTIONS(1595), + [sym_true] = ACTIONS(7861), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [sym_null] = ACTIONS(7861), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(7859), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(7861), + [sym_nullptr] = ACTIONS(7861), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + }, + [2829] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2830] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2831] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2832] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(5836), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2833] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2834] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2835] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2836] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [2837] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(7863), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2838] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(5829), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(5841), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(5836), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [2839] = { - [anon_sym_RPAREN] = ACTIONS(7869), - [sym_comment] = ACTIONS(3), + [sym_string_literal] = STATE(2839), + [aux_sym_concatenated_string_repeat1] = STATE(2839), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5323), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, [2840] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(5829), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(5841), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(1400), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_DASH] = ACTIONS(484), + [sym_raw_string_literal] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_null] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(7865), + [anon_sym_AMP] = ACTIONS(7867), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2828), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [2841] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2841), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(7871), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(7871), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(7871), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(7871), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(7869), }, [2842] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3687), - [sym_logical_expression] = STATE(3687), - [sym_bitwise_expression] = STATE(3687), - [sym_cast_expression] = STATE(3687), - [sym_new_expression] = STATE(3687), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3687), - [sym_char_literal] = STATE(3687), - [sym_template_function] = STATE(3687), - [sym_conditional_expression] = STATE(3687), - [sym_equality_expression] = STATE(3687), - [sym_relational_expression] = STATE(3687), - [sym_delete_expression] = STATE(3687), - [sym_sizeof_expression] = STATE(3687), - [sym_parenthesized_expression] = STATE(3687), - [sym_lambda_expression] = STATE(3687), - [sym_concatenated_string] = STATE(3687), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3687), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3687), - [sym_math_expression] = STATE(3687), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(7874), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(7876), - [sym_null] = ACTIONS(7876), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(7874), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(7876), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7876), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_template_function] = STATE(3663), + [sym__expression] = STATE(3663), + [sym_logical_expression] = STATE(3663), + [sym_bitwise_expression] = STATE(3663), + [sym_cast_expression] = STATE(3663), + [sym_delete_expression] = STATE(3663), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3663), + [sym_lambda_expression] = STATE(3663), + [sym_char_literal] = STATE(3663), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3663), + [sym_equality_expression] = STATE(3663), + [sym_relational_expression] = STATE(3663), + [sym_sizeof_expression] = STATE(3663), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3663), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(3663), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3663), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3663), + [sym_math_expression] = STATE(3663), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3663), + [sym_raw_string_literal] = ACTIONS(7871), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(7873), + [sym_null] = ACTIONS(7873), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7871), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(7873), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(7873), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, [2843] = { - [sym_initializer_list] = STATE(2571), - [sym_new_declarator] = STATE(2572), - [sym_argument_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(5821), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7875), + [sym_identifier] = ACTIONS(7875), + [sym_comment] = ACTIONS(3), }, [2844] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3688), - [sym_logical_expression] = STATE(3688), - [sym_bitwise_expression] = STATE(3688), - [sym_cast_expression] = STATE(3688), - [sym_new_expression] = STATE(3688), - [sym_field_expression] = STATE(3688), - [sym_compound_literal_expression] = STATE(3688), - [sym_char_literal] = STATE(3688), - [sym_template_function] = STATE(3688), - [sym_conditional_expression] = STATE(3688), - [sym_equality_expression] = STATE(3688), - [sym_relational_expression] = STATE(3688), - [sym_delete_expression] = STATE(3688), - [sym_sizeof_expression] = STATE(3688), - [sym_parenthesized_expression] = STATE(3688), - [sym_lambda_expression] = STATE(3688), - [sym_concatenated_string] = STATE(3688), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3688), - [sym_assignment_expression] = STATE(3688), - [sym_pointer_expression] = STATE(3688), - [sym_shift_expression] = STATE(3688), - [sym_math_expression] = STATE(3688), - [sym_call_expression] = STATE(3688), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(7878), - [anon_sym_DASH] = ACTIONS(1585), - [sym_true] = ACTIONS(7880), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [sym_null] = ACTIONS(7880), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(7878), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(7880), - [sym_nullptr] = ACTIONS(7880), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), + [sym_comment] = ACTIONS(244), + [anon_sym_LF] = ACTIONS(7877), + [sym_preproc_arg] = ACTIONS(7879), }, [2845] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [aux_sym_preproc_params_repeat1] = STATE(3666), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(7881), + [sym_comment] = ACTIONS(3), }, [2846] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_SEMI] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(7883), + [sym_raw_string_literal] = ACTIONS(7885), + [sym_true] = ACTIONS(7883), + [anon_sym_mutable] = ACTIONS(7883), + [sym_null] = ACTIONS(7883), + [anon_sym_break] = ACTIONS(7883), + [anon_sym_BANG] = ACTIONS(7885), + [anon_sym_sizeof] = ACTIONS(7883), + [anon_sym_volatile] = ACTIONS(7883), + [anon_sym_PLUS] = ACTIONS(7883), + [anon_sym_typedef] = ACTIONS(7883), + [anon_sym_switch] = ACTIONS(7883), + [anon_sym_explicit] = ACTIONS(7883), + [sym_identifier] = ACTIONS(7883), + [anon_sym_delete] = ACTIONS(7883), + [anon_sym_continue] = ACTIONS(7883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7883), + [anon_sym__Atomic] = ACTIONS(7883), + [sym_number_literal] = ACTIONS(7885), + [anon_sym_extern] = ACTIONS(7883), + [anon_sym_enum] = ACTIONS(7883), + [anon_sym_constexpr] = ACTIONS(7883), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7885), + [anon_sym_namespace] = ACTIONS(7883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7883), + [anon_sym_SQUOTE] = ACTIONS(7885), + [anon_sym_LBRACE] = ACTIONS(7885), + [anon_sym_DASH_DASH] = ACTIONS(7885), + [anon_sym_LPAREN2] = ACTIONS(7885), + [anon_sym_struct] = ACTIONS(7883), + [sym_auto] = ACTIONS(7883), + [anon_sym_signed] = ACTIONS(7883), + [anon_sym_long] = ACTIONS(7883), + [anon_sym_COLON_COLON] = ACTIONS(7885), + [anon_sym_using] = ACTIONS(7883), + [sym_preproc_directive] = ACTIONS(7883), + [aux_sym_preproc_if_token1] = ACTIONS(7883), + [anon_sym_AMP] = ACTIONS(7883), + [anon_sym_static] = ACTIONS(7883), + [anon_sym_RBRACE] = ACTIONS(7885), + [anon_sym_STAR] = ACTIONS(7885), + [anon_sym_union] = ACTIONS(7883), + [anon_sym_typename] = ACTIONS(7883), + [anon_sym_short] = ACTIONS(7883), + [anon_sym_new] = ACTIONS(7883), + [anon_sym_goto] = ACTIONS(7883), + [sym_operator_name] = ACTIONS(7885), + [anon_sym_while] = ACTIONS(7883), + [anon_sym_try] = ACTIONS(7883), + [anon_sym_for] = ACTIONS(7883), + [aux_sym_preproc_include_token1] = ACTIONS(7883), + [anon_sym_register] = ACTIONS(7883), + [anon_sym_DQUOTE] = ACTIONS(7885), + [anon_sym_const] = ACTIONS(7883), + [anon_sym_LBRACK] = ACTIONS(7883), + [anon_sym_class] = ACTIONS(7883), + [anon_sym_if] = ACTIONS(7883), + [sym_primitive_type] = ACTIONS(7883), + [sym_false] = ACTIONS(7883), + [sym_nullptr] = ACTIONS(7883), + [anon_sym_do] = ACTIONS(7883), + [anon_sym_template] = ACTIONS(7883), + [anon_sym_return] = ACTIONS(7883), + [anon_sym_TILDE] = ACTIONS(7885), + [anon_sym_SEMI] = ACTIONS(7885), + [ts_builtin_sym_end] = ACTIONS(7885), + [aux_sym_preproc_def_token1] = ACTIONS(7883), + [anon_sym_AMP_AMP] = ACTIONS(7885), + [anon_sym_inline] = ACTIONS(7883), + [anon_sym_PLUS_PLUS] = ACTIONS(7885), + [anon_sym_restrict] = ACTIONS(7883), }, [2847] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_SEMI] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(7887), + [sym_raw_string_literal] = ACTIONS(7889), + [sym_true] = ACTIONS(7887), + [anon_sym_mutable] = ACTIONS(7887), + [sym_null] = ACTIONS(7887), + [anon_sym_break] = ACTIONS(7887), + [anon_sym_BANG] = ACTIONS(7889), + [anon_sym_sizeof] = ACTIONS(7887), + [anon_sym_volatile] = ACTIONS(7887), + [anon_sym_PLUS] = ACTIONS(7887), + [anon_sym_typedef] = ACTIONS(7887), + [anon_sym_switch] = ACTIONS(7887), + [anon_sym_explicit] = ACTIONS(7887), + [sym_identifier] = ACTIONS(7887), + [anon_sym_delete] = ACTIONS(7887), + [anon_sym_continue] = ACTIONS(7887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7887), + [anon_sym__Atomic] = ACTIONS(7887), + [sym_number_literal] = ACTIONS(7889), + [anon_sym_extern] = ACTIONS(7887), + [anon_sym_enum] = ACTIONS(7887), + [anon_sym_constexpr] = ACTIONS(7887), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7887), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7889), + [anon_sym_namespace] = ACTIONS(7887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7887), + [anon_sym_SQUOTE] = ACTIONS(7889), + [anon_sym_LBRACE] = ACTIONS(7889), + [anon_sym_DASH_DASH] = ACTIONS(7889), + [anon_sym_LPAREN2] = ACTIONS(7889), + [anon_sym_struct] = ACTIONS(7887), + [sym_auto] = ACTIONS(7887), + [anon_sym_signed] = ACTIONS(7887), + [anon_sym_long] = ACTIONS(7887), + [anon_sym_COLON_COLON] = ACTIONS(7889), + [anon_sym_using] = ACTIONS(7887), + [sym_preproc_directive] = ACTIONS(7887), + [aux_sym_preproc_if_token1] = ACTIONS(7887), + [anon_sym_AMP] = ACTIONS(7887), + [anon_sym_static] = ACTIONS(7887), + [anon_sym_RBRACE] = ACTIONS(7889), + [anon_sym_STAR] = ACTIONS(7889), + [anon_sym_union] = ACTIONS(7887), + [anon_sym_typename] = ACTIONS(7887), + [anon_sym_short] = ACTIONS(7887), + [anon_sym_new] = ACTIONS(7887), + [anon_sym_goto] = ACTIONS(7887), + [sym_operator_name] = ACTIONS(7889), + [anon_sym_while] = ACTIONS(7887), + [anon_sym_try] = ACTIONS(7887), + [anon_sym_for] = ACTIONS(7887), + [aux_sym_preproc_include_token1] = ACTIONS(7887), + [anon_sym_register] = ACTIONS(7887), + [anon_sym_DQUOTE] = ACTIONS(7889), + [anon_sym_const] = ACTIONS(7887), + [anon_sym_LBRACK] = ACTIONS(7887), + [anon_sym_class] = ACTIONS(7887), + [anon_sym_if] = ACTIONS(7887), + [sym_primitive_type] = ACTIONS(7887), + [sym_false] = ACTIONS(7887), + [sym_nullptr] = ACTIONS(7887), + [anon_sym_do] = ACTIONS(7887), + [anon_sym_template] = ACTIONS(7887), + [anon_sym_return] = ACTIONS(7887), + [anon_sym_TILDE] = ACTIONS(7889), + [anon_sym_SEMI] = ACTIONS(7889), + [ts_builtin_sym_end] = ACTIONS(7889), + [aux_sym_preproc_def_token1] = ACTIONS(7887), + [anon_sym_AMP_AMP] = ACTIONS(7889), + [anon_sym_inline] = ACTIONS(7887), + [anon_sym_PLUS_PLUS] = ACTIONS(7889), + [anon_sym_restrict] = ACTIONS(7887), }, [2848] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(5829), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(5841), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(7891), + [anon_sym_RPAREN] = ACTIONS(7891), + [sym_comment] = ACTIONS(3), }, [2849] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_LPAREN2] = ACTIONS(7893), + [sym_noexcept] = ACTIONS(7893), + [anon_sym_final] = ACTIONS(7893), + [anon_sym_mutable] = ACTIONS(7893), + [anon_sym_COMMA] = ACTIONS(7893), + [anon_sym__Atomic] = ACTIONS(7893), + [anon_sym_const] = ACTIONS(7895), + [anon_sym_GT2] = ACTIONS(7893), + [anon_sym_LBRACK] = ACTIONS(7893), + [anon_sym_constexpr] = ACTIONS(7893), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7893), + [anon_sym_override] = ACTIONS(7893), + [anon_sym_SEMI] = ACTIONS(7893), + [anon_sym_COLON] = ACTIONS(7893), + [anon_sym_explicit] = ACTIONS(7893), + [anon_sym_RPAREN] = ACTIONS(7893), + [anon_sym_DASH_GT] = ACTIONS(7893), + [anon_sym_EQ] = ACTIONS(7893), + [anon_sym_restrict] = ACTIONS(7893), + [anon_sym_LBRACE] = ACTIONS(7893), }, [2850] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [aux_sym_parameter_list_repeat1] = STATE(2850), + [anon_sym_COMMA] = ACTIONS(7897), + [anon_sym_RPAREN] = ACTIONS(7891), + [sym_comment] = ACTIONS(3), }, [2851] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_storage_class_specifier] = STATE(2851), + [sym_type_qualifier] = STATE(2851), + [aux_sym__declaration_specifiers_repeat1] = STATE(2851), + [anon_sym_LPAREN2] = ACTIONS(1795), + [sym_operator_name] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_register] = ACTIONS(1802), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1795), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), }, [2852] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_storage_class_specifier] = STATE(3667), + [sym_type_qualifier] = STATE(3667), + [aux_sym__declaration_specifiers_repeat1] = STATE(3667), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [sym_operator_name] = ACTIONS(1785), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_restrict] = ACTIONS(11), }, [2853] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(7882), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [aux_sym_sized_type_specifier_repeat1] = STATE(2853), + [anon_sym_LPAREN2] = ACTIONS(1778), + [sym_operator_name] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(7900), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1783), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(7900), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(7900), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(7900), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), }, [2854] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(5829), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_storage_class_specifier] = STATE(3668), + [sym_type_qualifier] = STATE(3668), + [aux_sym__declaration_specifiers_repeat1] = STATE(3668), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [sym_operator_name] = ACTIONS(1785), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_restrict] = ACTIONS(11), }, [2855] = { - [sym_string_literal] = STATE(2855), - [aux_sym_concatenated_string_repeat1] = STATE(2855), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [sym_abstract_reference_declarator] = STATE(2864), + [sym_template_function] = STATE(3669), + [sym_abstract_array_declarator] = STATE(2864), + [sym__declarator] = STATE(3669), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(3669), + [sym_array_declarator] = STATE(3669), + [sym_abstract_pointer_declarator] = STATE(2864), + [sym_template_type] = STATE(310), + [sym_destructor_name] = STATE(3669), + [sym_parameter_list] = STATE(1886), + [sym_pointer_declarator] = STATE(3669), + [sym_structured_binding_declarator] = STATE(3669), + [sym_abstract_function_declarator] = STATE(2864), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(2864), + [sym_function_declarator] = STATE(3669), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(5944), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(5946), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(3579), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5948), + [sym_operator_name] = ACTIONS(7903), + [sym_comment] = ACTIONS(3), }, [2856] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(480), - [sym_raw_string_literal] = ACTIONS(2826), - [sym_true] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(7884), - [anon_sym_AMP] = ACTIONS(7886), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2826), - [anon_sym_LT_LT] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), + [sym_abstract_reference_declarator] = STATE(2867), + [sym_template_function] = STATE(3671), + [sym_abstract_array_declarator] = STATE(2867), + [aux_sym_type_definition_repeat1] = STATE(3670), + [sym__declarator] = STATE(3671), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(3671), + [sym_array_declarator] = STATE(3671), + [sym_abstract_pointer_declarator] = STATE(2867), + [sym_template_type] = STATE(310), + [sym_type_qualifier] = STATE(3670), + [sym_destructor_name] = STATE(3671), + [sym_parameter_list] = STATE(1886), + [sym_pointer_declarator] = STATE(3671), + [sym_structured_binding_declarator] = STATE(3671), + [sym_abstract_function_declarator] = STATE(2867), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(2867), + [sym_function_declarator] = STATE(3671), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_GT_GT] = ACTIONS(4127), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_AMP] = ACTIONS(5944), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(5946), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(2837), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5948), + [sym_operator_name] = ACTIONS(7905), + [anon_sym_restrict] = ACTIONS(11), }, [2857] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(7888), + [sym_parameter_list] = STATE(3672), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(7816), + [sym_comment] = ACTIONS(3), }, [2858] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3691), - [sym_logical_expression] = STATE(3691), - [sym_bitwise_expression] = STATE(3691), - [sym_cast_expression] = STATE(3691), - [sym_new_expression] = STATE(3691), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3691), - [sym_char_literal] = STATE(3691), - [sym_template_function] = STATE(3691), - [sym_conditional_expression] = STATE(3691), - [sym_equality_expression] = STATE(3691), - [sym_relational_expression] = STATE(3691), - [sym_delete_expression] = STATE(3691), - [sym_sizeof_expression] = STATE(3691), - [sym_parenthesized_expression] = STATE(3691), - [sym_lambda_expression] = STATE(3691), - [sym_concatenated_string] = STATE(3691), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3691), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3691), - [sym_math_expression] = STATE(3691), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7890), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(7892), - [sym_null] = ACTIONS(7892), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7890), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(7892), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(7892), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [sym_parameter_list] = STATE(2873), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(7816), + [sym_comment] = ACTIONS(3), }, [2859] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7894), - [sym_identifier] = ACTIONS(7894), + [sym_storage_class_specifier] = STATE(2851), + [sym_type_qualifier] = STATE(2851), + [aux_sym__declaration_specifiers_repeat1] = STATE(2851), + [anon_sym_LPAREN2] = ACTIONS(3895), + [anon_sym_restrict] = ACTIONS(11), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(3895), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(3895), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3895), + [sym_identifier] = ACTIONS(3897), + [sym_operator_name] = ACTIONS(3895), + [anon_sym_inline] = ACTIONS(63), }, [2860] = { - [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(7896), - [sym_preproc_arg] = ACTIONS(7898), + [anon_sym_COMMA] = ACTIONS(7907), + [anon_sym_RPAREN] = ACTIONS(7907), + [sym_comment] = ACTIONS(3), }, [2861] = { - [aux_sym_preproc_params_repeat1] = STATE(3694), - [anon_sym_COMMA] = ACTIONS(5898), - [anon_sym_RPAREN] = ACTIONS(7900), + [sym_abstract_reference_declarator] = STATE(2864), + [sym_template_function] = STATE(2862), + [sym_abstract_array_declarator] = STATE(2864), + [sym__declarator] = STATE(2862), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2862), + [sym_array_declarator] = STATE(2862), + [sym_abstract_pointer_declarator] = STATE(2864), + [sym_template_type] = STATE(310), + [sym_destructor_name] = STATE(2862), + [sym_parameter_list] = STATE(1886), + [sym_pointer_declarator] = STATE(2862), + [sym_structured_binding_declarator] = STATE(2862), + [sym_abstract_function_declarator] = STATE(2864), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(2864), + [sym_function_declarator] = STATE(2862), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(3579), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5956), + [sym_operator_name] = ACTIONS(5958), [sym_comment] = ACTIONS(3), }, [2862] = { - [anon_sym_DASH] = ACTIONS(7902), - [sym_raw_string_literal] = ACTIONS(7904), - [sym_true] = ACTIONS(7902), - [anon_sym_mutable] = ACTIONS(7902), - [sym_null] = ACTIONS(7902), - [anon_sym_break] = ACTIONS(7902), - [anon_sym_BANG] = ACTIONS(7904), - [anon_sym_sizeof] = ACTIONS(7902), - [anon_sym_volatile] = ACTIONS(7902), - [anon_sym_PLUS] = ACTIONS(7902), - [anon_sym_typedef] = ACTIONS(7902), - [anon_sym_switch] = ACTIONS(7902), - [anon_sym_explicit] = ACTIONS(7902), - [sym_identifier] = ACTIONS(7902), - [anon_sym_delete] = ACTIONS(7902), - [anon_sym_continue] = ACTIONS(7902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7902), - [anon_sym__Atomic] = ACTIONS(7902), - [sym_number_literal] = ACTIONS(7904), - [anon_sym_extern] = ACTIONS(7902), - [anon_sym_enum] = ACTIONS(7902), - [anon_sym_constexpr] = ACTIONS(7902), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7904), - [anon_sym_namespace] = ACTIONS(7902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7902), - [anon_sym_SQUOTE] = ACTIONS(7904), - [anon_sym_LBRACE] = ACTIONS(7904), - [anon_sym_DASH_DASH] = ACTIONS(7904), - [anon_sym_LPAREN2] = ACTIONS(7904), - [anon_sym_struct] = ACTIONS(7902), - [sym_auto] = ACTIONS(7902), - [anon_sym_signed] = ACTIONS(7902), - [anon_sym_long] = ACTIONS(7902), - [anon_sym_COLON_COLON] = ACTIONS(7904), - [anon_sym_using] = ACTIONS(7902), - [sym_preproc_directive] = ACTIONS(7902), - [aux_sym_preproc_if_token1] = ACTIONS(7902), - [anon_sym_AMP] = ACTIONS(7902), - [anon_sym_static] = ACTIONS(7902), - [anon_sym_RBRACE] = ACTIONS(7904), - [anon_sym_STAR] = ACTIONS(7904), - [anon_sym_union] = ACTIONS(7902), - [anon_sym_typename] = ACTIONS(7902), - [anon_sym_short] = ACTIONS(7902), - [anon_sym_new] = ACTIONS(7902), - [anon_sym_goto] = ACTIONS(7902), - [sym_operator_name] = ACTIONS(7904), - [anon_sym_while] = ACTIONS(7902), - [anon_sym_try] = ACTIONS(7902), - [anon_sym_for] = ACTIONS(7902), - [aux_sym_preproc_include_token1] = ACTIONS(7902), - [anon_sym_register] = ACTIONS(7902), - [anon_sym_DQUOTE] = ACTIONS(7904), - [anon_sym_const] = ACTIONS(7902), - [anon_sym_LBRACK] = ACTIONS(7902), - [anon_sym_class] = ACTIONS(7902), - [anon_sym_if] = ACTIONS(7902), - [sym_primitive_type] = ACTIONS(7902), - [sym_false] = ACTIONS(7902), - [sym_nullptr] = ACTIONS(7902), - [anon_sym_do] = ACTIONS(7902), - [anon_sym_template] = ACTIONS(7902), - [anon_sym_return] = ACTIONS(7902), - [anon_sym_TILDE] = ACTIONS(7904), - [anon_sym_SEMI] = ACTIONS(7904), - [ts_builtin_sym_end] = ACTIONS(7904), - [aux_sym_preproc_def_token1] = ACTIONS(7902), - [anon_sym_AMP_AMP] = ACTIONS(7904), - [anon_sym_inline] = ACTIONS(7902), - [anon_sym_PLUS_PLUS] = ACTIONS(7904), - [anon_sym_restrict] = ACTIONS(7902), + [sym_parameter_list] = STATE(2870), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(2756), + [anon_sym_COMMA] = ACTIONS(2756), + [sym_comment] = ACTIONS(3), }, [2863] = { - [anon_sym_LPAREN2] = ACTIONS(7906), - [anon_sym_LT] = ACTIONS(7906), - [anon_sym_LBRACE] = ACTIONS(7906), + [anon_sym_COMMA] = ACTIONS(7909), + [anon_sym_RPAREN] = ACTIONS(7909), [sym_comment] = ACTIONS(3), }, [2864] = { - [anon_sym_LPAREN2] = ACTIONS(7908), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(7908), + [sym_parameter_list] = STATE(2873), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(4985), [sym_comment] = ACTIONS(3), }, [2865] = { - [anon_sym_LPAREN2] = ACTIONS(7910), - [anon_sym_LT] = ACTIONS(7910), - [anon_sym_LBRACE] = ACTIONS(7910), + [sym_abstract_reference_declarator] = STATE(3675), + [sym_template_function] = STATE(3674), + [sym_abstract_array_declarator] = STATE(3675), + [aux_sym_type_definition_repeat1] = STATE(3673), + [sym__declarator] = STATE(3674), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(3674), + [sym_array_declarator] = STATE(3674), + [sym_abstract_pointer_declarator] = STATE(3675), + [sym_template_type] = STATE(310), + [sym_type_qualifier] = STATE(3673), + [sym_destructor_name] = STATE(3674), + [sym_parameter_list] = STATE(1886), + [sym_pointer_declarator] = STATE(3674), + [sym_structured_binding_declarator] = STATE(3674), + [sym_abstract_function_declarator] = STATE(3675), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(3675), + [sym_function_declarator] = STATE(3674), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(5954), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(4987), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5956), + [sym_operator_name] = ACTIONS(7911), + [anon_sym_restrict] = ACTIONS(11), }, [2866] = { - [anon_sym_LPAREN2] = ACTIONS(7912), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(3746), - [anon_sym_LBRACE] = ACTIONS(7912), + [sym_parameter_list] = STATE(2870), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), [sym_comment] = ACTIONS(3), }, [2867] = { - [anon_sym_EQ] = ACTIONS(7914), - [anon_sym_COMMA] = ACTIONS(7914), - [anon_sym_LBRACE] = ACTIONS(7914), + [sym_parameter_list] = STATE(2873), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(4987), [sym_comment] = ACTIONS(3), }, [2868] = { - [aux_sym_field_initializer_list_repeat1] = STATE(2868), - [anon_sym_EQ] = ACTIONS(7914), - [anon_sym_COMMA] = ACTIONS(7916), - [anon_sym_LBRACE] = ACTIONS(7914), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7820), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(7820), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2869] = { - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(7919), + [sym_template_function] = STATE(3676), + [sym__expression] = STATE(3676), + [sym_logical_expression] = STATE(3676), + [sym_bitwise_expression] = STATE(3676), + [sym_cast_expression] = STATE(3676), + [sym_delete_expression] = STATE(3676), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3676), + [sym_lambda_expression] = STATE(3676), + [sym_char_literal] = STATE(3676), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3676), + [sym_equality_expression] = STATE(3676), + [sym_relational_expression] = STATE(3676), + [sym_sizeof_expression] = STATE(3676), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3676), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(3676), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3676), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3676), + [sym_math_expression] = STATE(3676), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3676), + [sym_raw_string_literal] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(7915), + [sym_null] = ACTIONS(7915), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(7913), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(272), + [sym_false] = ACTIONS(7915), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(7915), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_sizeof] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(690), + [anon_sym_new] = ACTIONS(284), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(296), }, [2870] = { - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(7922), + [sym_virtual_specifier] = STATE(3678), + [aux_sym_function_declarator_repeat1] = STATE(3678), + [sym_type_qualifier] = STATE(3678), + [sym_trailing_return_type] = STATE(3678), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(7917), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(7919), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_restrict] = ACTIONS(1070), }, [2871] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2616), - [sym_logical_expression] = STATE(2616), - [sym_bitwise_expression] = STATE(2616), - [sym_cast_expression] = STATE(2616), - [sym_new_expression] = STATE(2616), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2616), - [sym_char_literal] = STATE(2616), - [sym_template_function] = STATE(2616), - [sym_conditional_expression] = STATE(2616), - [sym_equality_expression] = STATE(2616), - [sym_relational_expression] = STATE(2616), - [sym_delete_expression] = STATE(2616), - [sym_sizeof_expression] = STATE(2616), - [sym_parenthesized_expression] = STATE(2616), - [sym_initializer_list] = STATE(2617), - [sym_concatenated_string] = STATE(2616), - [sym_string_literal] = STATE(967), - [sym_lambda_expression] = STATE(2616), + [sym_union_specifier] = STATE(3681), + [sym_macro_type_specifier] = STATE(3681), + [sym_class_specifier] = STATE(3681), + [aux_sym_sized_type_specifier_repeat1] = STATE(3680), + [sym_sized_type_specifier] = STATE(3681), + [sym__type_specifier] = STATE(3681), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(3681), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(3681), + [sym_struct_specifier] = STATE(3681), + [anon_sym_unsigned] = ACTIONS(7921), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(7923), + [anon_sym_signed] = ACTIONS(7921), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(7921), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(7925), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(7921), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(7923), + }, + [2872] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3682), + [sym_type_qualifier] = STATE(3682), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(7927), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(5970), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [2873] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3683), + [sym_type_qualifier] = STATE(3683), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(7929), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(5970), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [2874] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(2875), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(5978), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(5978), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(5982), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(5978), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(358), + }, + [2875] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3684), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(7931), + [anon_sym_signed] = ACTIONS(7931), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_long] = ACTIONS(7931), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_short] = ACTIONS(7931), + [sym_identifier] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(560), + }, + [2876] = { + [sym_abstract_reference_declarator] = STATE(935), + [sym_abstract_array_declarator] = STATE(935), + [sym_abstract_pointer_declarator] = STATE(935), + [sym_parameter_list] = STATE(934), + [sym_abstract_function_declarator] = STATE(935), + [sym__abstract_declarator] = STATE(935), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(544), + [sym_comment] = ACTIONS(3), + }, + [2877] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(2877), + [sym_type_qualifier] = STATE(2877), + [anon_sym_LPAREN2] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(7933), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + }, + [2878] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(2877), + [sym_type_qualifier] = STATE(2877), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(5984), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [2879] = { + [sym_template_function] = STATE(2601), + [sym__expression] = STATE(2601), + [sym_logical_expression] = STATE(2601), + [sym_bitwise_expression] = STATE(2601), + [sym_cast_expression] = STATE(2601), + [sym_delete_expression] = STATE(2601), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2601), + [sym_lambda_expression] = STATE(2601), + [sym_char_literal] = STATE(2601), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2616), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2616), - [sym_math_expression] = STATE(2616), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(2601), + [sym_equality_expression] = STATE(2601), + [sym_relational_expression] = STATE(2601), + [sym_sizeof_expression] = STATE(2601), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(5392), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [sym_null] = ACTIONS(5392), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5390), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(5392), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5392), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1393), + [sym_initializer_list] = STATE(2602), + [sym_parenthesized_expression] = STATE(2601), + [sym_string_literal] = STATE(951), + [sym_lambda_capture_specifier] = STATE(244), + [sym_concatenated_string] = STATE(2601), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2601), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2601), + [sym_math_expression] = STATE(2601), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2601), + [sym_raw_string_literal] = ACTIONS(5389), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(5391), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [sym_null] = ACTIONS(5391), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(5389), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(5391), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(5391), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1404), }, - [2872] = { - [sym_template_type] = STATE(239), + [2880] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(7925), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(7936), }, - [2873] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(2925), + [2881] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(2927), }, - [2874] = { - [anon_sym_RPAREN] = ACTIONS(7927), + [2882] = { + [anon_sym_RPAREN] = ACTIONS(7938), [sym_comment] = ACTIONS(3), }, - [2875] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3698), - [sym_logical_expression] = STATE(3698), - [sym_bitwise_expression] = STATE(3698), - [sym_cast_expression] = STATE(3698), - [sym_new_expression] = STATE(3698), - [sym_field_expression] = STATE(3698), - [sym_compound_literal_expression] = STATE(3698), - [sym_char_literal] = STATE(3698), - [sym_template_function] = STATE(3698), - [sym_conditional_expression] = STATE(3698), - [sym_equality_expression] = STATE(3698), - [sym_relational_expression] = STATE(3698), - [sym_delete_expression] = STATE(3698), - [sym_sizeof_expression] = STATE(3698), - [sym_parenthesized_expression] = STATE(3698), - [sym_lambda_expression] = STATE(3698), - [sym_concatenated_string] = STATE(3698), - [sym_string_literal] = STATE(1899), + [2883] = { + [sym_template_function] = STATE(3688), + [sym__expression] = STATE(3688), + [sym_logical_expression] = STATE(3688), + [sym_bitwise_expression] = STATE(3688), + [sym_cast_expression] = STATE(3688), + [sym_delete_expression] = STATE(3688), + [sym_field_expression] = STATE(3688), + [sym_compound_literal_expression] = STATE(3688), + [sym_lambda_expression] = STATE(3688), + [sym_char_literal] = STATE(3688), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3698), - [sym_assignment_expression] = STATE(3698), - [sym_pointer_expression] = STATE(3698), - [sym_shift_expression] = STATE(3698), - [sym_math_expression] = STATE(3698), - [sym_call_expression] = STATE(3698), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3688), + [sym_equality_expression] = STATE(3688), + [sym_relational_expression] = STATE(3688), + [sym_sizeof_expression] = STATE(3688), + [sym_subscript_expression] = STATE(3688), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7929), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7931), - [sym_null] = ACTIONS(7931), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7929), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(7933), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7931), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7931), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3688), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3688), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3688), + [sym_pointer_expression] = STATE(3688), + [sym_shift_expression] = STATE(3688), + [sym_math_expression] = STATE(3688), + [sym_call_expression] = STATE(3688), + [sym_new_expression] = STATE(3688), + [sym_raw_string_literal] = ACTIONS(7940), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(7942), + [sym_null] = ACTIONS(7942), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7940), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(7944), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(7942), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7942), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2876] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(1598), - [sym_logical_expression] = STATE(1598), - [sym_bitwise_expression] = STATE(1598), - [sym_cast_expression] = STATE(1598), - [sym_new_expression] = STATE(1598), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(1598), - [sym_type_descriptor] = STATE(3699), - [sym_char_literal] = STATE(1598), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(1598), - [sym_conditional_expression] = STATE(1598), - [sym_equality_expression] = STATE(1598), - [sym_relational_expression] = STATE(1598), - [sym_delete_expression] = STATE(1598), - [sym_sizeof_expression] = STATE(1598), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(1598), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(1598), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(1598), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(1600), - [sym_assignment_expression] = STATE(1598), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(1598), - [sym_math_expression] = STATE(1598), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(3211), + [2884] = { + [sym_template_function] = STATE(1593), + [sym__expression] = STATE(1593), + [sym_logical_expression] = STATE(1593), + [sym_bitwise_expression] = STATE(1593), + [sym_cast_expression] = STATE(1593), + [sym_delete_expression] = STATE(1593), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(1593), + [sym_char_literal] = STATE(1593), + [sym_lambda_expression] = STATE(1593), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(3689), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(1595), + [sym_conditional_expression] = STATE(1593), + [sym_equality_expression] = STATE(1593), + [sym_relational_expression] = STATE(1593), + [sym_sizeof_expression] = STATE(1593), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(1593), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1593), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(1593), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(1593), + [sym_math_expression] = STATE(1593), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(1593), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(3213), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(3213), + [sym_true] = ACTIONS(3215), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(3213), + [sym_null] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3211), + [sym_number_literal] = ACTIONS(3213), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(3213), + [sym_false] = ACTIONS(3215), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(3213), + [sym_nullptr] = ACTIONS(3215), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [2877] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(664), + [2885] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(668), }, - [2878] = { - [sym_union_specifier] = STATE(2649), - [sym_macro_type_specifier] = STATE(2649), - [sym_class_specifier] = STATE(2649), - [sym_template_type] = STATE(1623), - [sym_sized_type_specifier] = STATE(2649), - [sym_scoped_namespace_identifier] = STATE(1625), - [sym__type_specifier] = STATE(2649), - [aux_sym_sized_type_specifier_repeat1] = STATE(2879), - [sym_struct_specifier] = STATE(2649), - [sym_enum_specifier] = STATE(2649), - [sym_scoped_type_identifier] = STATE(1624), - [sym_dependent_type] = STATE(2649), - [anon_sym_unsigned] = ACTIONS(5975), - [anon_sym_struct] = ACTIONS(3248), - [sym_auto] = ACTIONS(5442), - [anon_sym_signed] = ACTIONS(5975), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(5975), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(5977), - [anon_sym_COLON_COLON] = ACTIONS(3254), - [sym_identifier] = ACTIONS(3264), - [anon_sym_short] = ACTIONS(5975), - [anon_sym_enum] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3258), - [sym_primitive_type] = ACTIONS(5442), + [2886] = { + [sym_union_specifier] = STATE(2634), + [sym_macro_type_specifier] = STATE(2634), + [sym_class_specifier] = STATE(2634), + [aux_sym_sized_type_specifier_repeat1] = STATE(2887), + [sym_sized_type_specifier] = STATE(2634), + [sym__type_specifier] = STATE(2634), + [sym_scoped_type_identifier] = STATE(1621), + [sym_enum_specifier] = STATE(2634), + [sym_template_type] = STATE(1622), + [sym_scoped_namespace_identifier] = STATE(1623), + [sym_dependent_type] = STATE(2634), + [sym_struct_specifier] = STATE(2634), + [anon_sym_unsigned] = ACTIONS(6006), + [anon_sym_struct] = ACTIONS(3250), + [sym_auto] = ACTIONS(5441), + [anon_sym_signed] = ACTIONS(6006), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(6006), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(6008), + [anon_sym_COLON_COLON] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(6006), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3260), + [sym_primitive_type] = ACTIONS(5441), }, - [2879] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3701), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(7941), - [anon_sym_long] = ACTIONS(7941), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(7941), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(5464), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(5466), - [anon_sym_unsigned] = ACTIONS(7941), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), + [2887] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3691), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(7952), + [anon_sym_long] = ACTIONS(7952), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(7952), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(5458), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(5460), + [anon_sym_unsigned] = ACTIONS(7952), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACK] = ACTIONS(554), }, - [2880] = { - [sym_initializer_list] = STATE(2669), - [sym_new_declarator] = STATE(2668), - [sym_argument_list] = STATE(2669), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(7943), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_RBRACK] = ACTIONS(1283), + [2888] = { + [sym_new_declarator] = STATE(2651), + [sym_argument_list] = STATE(2652), + [sym_initializer_list] = STATE(2652), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(7954), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_RBRACK] = ACTIONS(1286), }, - [2881] = { - [sym_union_specifier] = STATE(3703), - [sym_macro_type_specifier] = STATE(3703), - [sym_class_specifier] = STATE(3703), - [sym_template_type] = STATE(1623), - [sym_sized_type_specifier] = STATE(3703), - [sym_scoped_namespace_identifier] = STATE(1625), - [sym__type_specifier] = STATE(3703), - [aux_sym_sized_type_specifier_repeat1] = STATE(2879), - [sym_struct_specifier] = STATE(3703), - [sym_enum_specifier] = STATE(3703), - [sym_scoped_type_identifier] = STATE(1624), - [sym_dependent_type] = STATE(3703), - [anon_sym_unsigned] = ACTIONS(5975), - [anon_sym_struct] = ACTIONS(3248), - [sym_auto] = ACTIONS(7945), - [anon_sym_signed] = ACTIONS(5975), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(5975), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(5977), - [anon_sym_COLON_COLON] = ACTIONS(3254), - [sym_identifier] = ACTIONS(3264), - [anon_sym_short] = ACTIONS(5975), - [anon_sym_enum] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3258), - [sym_primitive_type] = ACTIONS(7945), + [2889] = { + [sym_union_specifier] = STATE(3693), + [sym_macro_type_specifier] = STATE(3693), + [sym_class_specifier] = STATE(3693), + [aux_sym_sized_type_specifier_repeat1] = STATE(2887), + [sym_sized_type_specifier] = STATE(3693), + [sym__type_specifier] = STATE(3693), + [sym_scoped_type_identifier] = STATE(1621), + [sym_enum_specifier] = STATE(3693), + [sym_template_type] = STATE(1622), + [sym_scoped_namespace_identifier] = STATE(1623), + [sym_dependent_type] = STATE(3693), + [sym_struct_specifier] = STATE(3693), + [anon_sym_unsigned] = ACTIONS(6006), + [anon_sym_struct] = ACTIONS(3250), + [sym_auto] = ACTIONS(7956), + [anon_sym_signed] = ACTIONS(6006), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(6006), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(6008), + [anon_sym_COLON_COLON] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(6006), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3260), + [sym_primitive_type] = ACTIONS(7956), }, - [2882] = { - [sym_template_type] = STATE(239), + [2890] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(7947), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(7958), }, - [2883] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(7951), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(7959), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(7961), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(7963), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(800), + [2891] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(7972), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(7974), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(804), }, - [2884] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3705), - [sym_logical_expression] = STATE(3705), - [sym_bitwise_expression] = STATE(3705), - [sym_cast_expression] = STATE(3705), - [sym_new_expression] = STATE(3705), - [sym_field_expression] = STATE(3705), - [sym_compound_literal_expression] = STATE(3705), - [sym_char_literal] = STATE(3705), - [sym_template_function] = STATE(3705), - [sym_conditional_expression] = STATE(3705), - [sym_equality_expression] = STATE(3705), - [sym_relational_expression] = STATE(3705), - [sym_delete_expression] = STATE(3705), - [sym_sizeof_expression] = STATE(3705), - [sym_parenthesized_expression] = STATE(3705), - [sym_lambda_expression] = STATE(3705), - [sym_concatenated_string] = STATE(3705), - [sym_string_literal] = STATE(1899), + [2892] = { + [sym_template_function] = STATE(3695), + [sym__expression] = STATE(3695), + [sym_logical_expression] = STATE(3695), + [sym_bitwise_expression] = STATE(3695), + [sym_cast_expression] = STATE(3695), + [sym_delete_expression] = STATE(3695), + [sym_field_expression] = STATE(3695), + [sym_compound_literal_expression] = STATE(3695), + [sym_lambda_expression] = STATE(3695), + [sym_char_literal] = STATE(3695), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3705), - [sym_assignment_expression] = STATE(3705), - [sym_pointer_expression] = STATE(3705), - [sym_shift_expression] = STATE(3705), - [sym_math_expression] = STATE(3705), - [sym_call_expression] = STATE(3705), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3695), + [sym_equality_expression] = STATE(3695), + [sym_relational_expression] = STATE(3695), + [sym_sizeof_expression] = STATE(3695), + [sym_subscript_expression] = STATE(3695), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7965), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7967), - [sym_null] = ACTIONS(7967), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7965), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7967), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7967), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3695), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3695), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3695), + [sym_pointer_expression] = STATE(3695), + [sym_shift_expression] = STATE(3695), + [sym_math_expression] = STATE(3695), + [sym_call_expression] = STATE(3695), + [sym_new_expression] = STATE(3695), + [sym_raw_string_literal] = ACTIONS(7976), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(7978), + [sym_null] = ACTIONS(7978), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7976), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(7978), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7978), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2885] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3706), - [sym_logical_expression] = STATE(3706), - [sym_bitwise_expression] = STATE(3706), - [sym_cast_expression] = STATE(3706), - [sym_new_expression] = STATE(3706), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3706), - [sym_char_literal] = STATE(3706), - [sym_template_function] = STATE(3706), - [sym_conditional_expression] = STATE(3706), - [sym_equality_expression] = STATE(3706), - [sym_relational_expression] = STATE(3706), - [sym_delete_expression] = STATE(3706), - [sym_sizeof_expression] = STATE(3706), - [sym_parenthesized_expression] = STATE(3706), - [sym_lambda_expression] = STATE(3706), - [sym_concatenated_string] = STATE(3706), - [sym_string_literal] = STATE(1899), + [2893] = { + [sym_template_function] = STATE(3696), + [sym__expression] = STATE(3696), + [sym_logical_expression] = STATE(3696), + [sym_bitwise_expression] = STATE(3696), + [sym_cast_expression] = STATE(3696), + [sym_delete_expression] = STATE(3696), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3696), + [sym_lambda_expression] = STATE(3696), + [sym_char_literal] = STATE(3696), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3706), - [sym_assignment_expression] = STATE(3706), - [sym_pointer_expression] = STATE(3706), - [sym_shift_expression] = STATE(3706), - [sym_math_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3696), + [sym_equality_expression] = STATE(3696), + [sym_relational_expression] = STATE(3696), + [sym_sizeof_expression] = STATE(3696), + [sym_subscript_expression] = STATE(3696), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7969), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7971), - [sym_null] = ACTIONS(7971), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7969), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7971), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7971), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3696), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3696), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3696), + [sym_pointer_expression] = STATE(3696), + [sym_shift_expression] = STATE(3696), + [sym_math_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_new_expression] = STATE(3696), + [sym_raw_string_literal] = ACTIONS(7980), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(7982), + [sym_null] = ACTIONS(7982), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7980), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(7982), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7982), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2886] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3707), - [sym_logical_expression] = STATE(3707), - [sym_bitwise_expression] = STATE(3707), - [sym_cast_expression] = STATE(3707), - [sym_new_expression] = STATE(3707), - [sym_field_expression] = STATE(3707), - [sym_compound_literal_expression] = STATE(3707), - [sym_char_literal] = STATE(3707), - [sym_template_function] = STATE(3707), - [sym_conditional_expression] = STATE(3707), - [sym_equality_expression] = STATE(3707), - [sym_relational_expression] = STATE(3707), - [sym_delete_expression] = STATE(3707), - [sym_sizeof_expression] = STATE(3707), - [sym_parenthesized_expression] = STATE(3707), - [sym_lambda_expression] = STATE(3707), - [sym_concatenated_string] = STATE(3707), - [sym_string_literal] = STATE(1899), + [2894] = { + [sym_template_function] = STATE(3697), + [sym__expression] = STATE(3697), + [sym_logical_expression] = STATE(3697), + [sym_bitwise_expression] = STATE(3697), + [sym_cast_expression] = STATE(3697), + [sym_delete_expression] = STATE(3697), + [sym_field_expression] = STATE(3697), + [sym_compound_literal_expression] = STATE(3697), + [sym_lambda_expression] = STATE(3697), + [sym_char_literal] = STATE(3697), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3707), - [sym_assignment_expression] = STATE(3707), - [sym_pointer_expression] = STATE(3707), - [sym_shift_expression] = STATE(3707), - [sym_math_expression] = STATE(3707), - [sym_call_expression] = STATE(3707), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3697), + [sym_equality_expression] = STATE(3697), + [sym_relational_expression] = STATE(3697), + [sym_sizeof_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7973), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7975), - [sym_null] = ACTIONS(7975), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7973), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7975), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7975), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3697), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3697), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3697), + [sym_pointer_expression] = STATE(3697), + [sym_shift_expression] = STATE(3697), + [sym_math_expression] = STATE(3697), + [sym_call_expression] = STATE(3697), + [sym_new_expression] = STATE(3697), + [sym_raw_string_literal] = ACTIONS(7984), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(7986), + [sym_null] = ACTIONS(7986), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7984), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(7986), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7986), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2887] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3708), - [sym_logical_expression] = STATE(3708), - [sym_bitwise_expression] = STATE(3708), - [sym_cast_expression] = STATE(3708), - [sym_new_expression] = STATE(3708), - [sym_field_expression] = STATE(3708), - [sym_compound_literal_expression] = STATE(3708), - [sym_char_literal] = STATE(3708), - [sym_template_function] = STATE(3708), - [sym_conditional_expression] = STATE(3708), - [sym_equality_expression] = STATE(3708), - [sym_relational_expression] = STATE(3708), - [sym_delete_expression] = STATE(3708), - [sym_sizeof_expression] = STATE(3708), - [sym_parenthesized_expression] = STATE(3708), - [sym_lambda_expression] = STATE(3708), - [sym_concatenated_string] = STATE(3708), - [sym_string_literal] = STATE(1899), + [2895] = { + [sym_template_function] = STATE(3698), + [sym__expression] = STATE(3698), + [sym_logical_expression] = STATE(3698), + [sym_bitwise_expression] = STATE(3698), + [sym_cast_expression] = STATE(3698), + [sym_delete_expression] = STATE(3698), + [sym_field_expression] = STATE(3698), + [sym_compound_literal_expression] = STATE(3698), + [sym_lambda_expression] = STATE(3698), + [sym_char_literal] = STATE(3698), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3708), - [sym_assignment_expression] = STATE(3708), - [sym_pointer_expression] = STATE(3708), - [sym_shift_expression] = STATE(3708), - [sym_math_expression] = STATE(3708), - [sym_call_expression] = STATE(3708), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3698), + [sym_equality_expression] = STATE(3698), + [sym_relational_expression] = STATE(3698), + [sym_sizeof_expression] = STATE(3698), + [sym_subscript_expression] = STATE(3698), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7977), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7979), - [sym_null] = ACTIONS(7979), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7977), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7979), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7979), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3698), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3698), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3698), + [sym_pointer_expression] = STATE(3698), + [sym_shift_expression] = STATE(3698), + [sym_math_expression] = STATE(3698), + [sym_call_expression] = STATE(3698), + [sym_new_expression] = STATE(3698), + [sym_raw_string_literal] = ACTIONS(7988), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(7990), + [sym_null] = ACTIONS(7990), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7988), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(7990), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7990), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2888] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3709), - [sym_logical_expression] = STATE(3709), - [sym_bitwise_expression] = STATE(3709), - [sym_cast_expression] = STATE(3709), - [sym_new_expression] = STATE(3709), - [sym_field_expression] = STATE(3709), - [sym_compound_literal_expression] = STATE(3709), - [sym_char_literal] = STATE(3709), - [sym_template_function] = STATE(3709), - [sym_conditional_expression] = STATE(3709), - [sym_equality_expression] = STATE(3709), - [sym_relational_expression] = STATE(3709), - [sym_delete_expression] = STATE(3709), - [sym_sizeof_expression] = STATE(3709), - [sym_parenthesized_expression] = STATE(3709), - [sym_lambda_expression] = STATE(3709), - [sym_concatenated_string] = STATE(3709), - [sym_string_literal] = STATE(1899), + [2896] = { + [sym_template_function] = STATE(3699), + [sym__expression] = STATE(3699), + [sym_logical_expression] = STATE(3699), + [sym_bitwise_expression] = STATE(3699), + [sym_cast_expression] = STATE(3699), + [sym_delete_expression] = STATE(3699), + [sym_field_expression] = STATE(3699), + [sym_compound_literal_expression] = STATE(3699), + [sym_lambda_expression] = STATE(3699), + [sym_char_literal] = STATE(3699), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3709), - [sym_assignment_expression] = STATE(3709), - [sym_pointer_expression] = STATE(3709), - [sym_shift_expression] = STATE(3709), - [sym_math_expression] = STATE(3709), - [sym_call_expression] = STATE(3709), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3699), + [sym_equality_expression] = STATE(3699), + [sym_relational_expression] = STATE(3699), + [sym_sizeof_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7981), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7983), - [sym_null] = ACTIONS(7983), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7981), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7983), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7983), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3699), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3699), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3699), + [sym_pointer_expression] = STATE(3699), + [sym_shift_expression] = STATE(3699), + [sym_math_expression] = STATE(3699), + [sym_call_expression] = STATE(3699), + [sym_new_expression] = STATE(3699), + [sym_raw_string_literal] = ACTIONS(7992), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(7994), + [sym_null] = ACTIONS(7994), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7992), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(7994), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7994), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2889] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(2680), - [sym_logical_expression] = STATE(2680), - [sym_bitwise_expression] = STATE(2680), - [sym_cast_expression] = STATE(2680), - [sym_new_expression] = STATE(2680), - [sym_field_expression] = STATE(2680), - [sym_compound_literal_expression] = STATE(2680), - [sym_char_literal] = STATE(2680), - [sym_template_function] = STATE(2680), - [sym_conditional_expression] = STATE(2680), - [sym_equality_expression] = STATE(2680), - [sym_relational_expression] = STATE(2680), - [sym_delete_expression] = STATE(2680), - [sym_sizeof_expression] = STATE(2680), - [sym_parenthesized_expression] = STATE(2680), - [sym_lambda_expression] = STATE(2680), - [sym_concatenated_string] = STATE(2680), - [sym_string_literal] = STATE(1899), + [2897] = { + [sym_template_function] = STATE(2663), + [sym__expression] = STATE(2663), + [sym_logical_expression] = STATE(2663), + [sym_bitwise_expression] = STATE(2663), + [sym_cast_expression] = STATE(2663), + [sym_delete_expression] = STATE(2663), + [sym_field_expression] = STATE(2663), + [sym_compound_literal_expression] = STATE(2663), + [sym_lambda_expression] = STATE(2663), + [sym_char_literal] = STATE(2663), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(2680), - [sym_assignment_expression] = STATE(2680), - [sym_pointer_expression] = STATE(2680), - [sym_shift_expression] = STATE(2680), - [sym_math_expression] = STATE(2680), - [sym_call_expression] = STATE(2680), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(2663), + [sym_equality_expression] = STATE(2663), + [sym_relational_expression] = STATE(2663), + [sym_sizeof_expression] = STATE(2663), + [sym_subscript_expression] = STATE(2663), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(5516), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(5518), - [sym_null] = ACTIONS(5518), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(5516), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(5518), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(2663), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(2663), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(2663), + [sym_pointer_expression] = STATE(2663), + [sym_shift_expression] = STATE(2663), + [sym_math_expression] = STATE(2663), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(2663), + [sym_raw_string_literal] = ACTIONS(5511), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(5513), + [sym_null] = ACTIONS(5513), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(5513), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2890] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3710), - [sym_logical_expression] = STATE(3710), - [sym_bitwise_expression] = STATE(3710), - [sym_cast_expression] = STATE(3710), - [sym_new_expression] = STATE(3710), - [sym_field_expression] = STATE(3710), - [sym_compound_literal_expression] = STATE(3710), - [sym_char_literal] = STATE(3710), - [sym_template_function] = STATE(3710), - [sym_conditional_expression] = STATE(3710), - [sym_equality_expression] = STATE(3710), - [sym_relational_expression] = STATE(3710), - [sym_delete_expression] = STATE(3710), - [sym_sizeof_expression] = STATE(3710), - [sym_parenthesized_expression] = STATE(3710), - [sym_lambda_expression] = STATE(3710), - [sym_concatenated_string] = STATE(3710), - [sym_string_literal] = STATE(1899), + [2898] = { + [sym_template_function] = STATE(3700), + [sym__expression] = STATE(3700), + [sym_logical_expression] = STATE(3700), + [sym_bitwise_expression] = STATE(3700), + [sym_cast_expression] = STATE(3700), + [sym_delete_expression] = STATE(3700), + [sym_field_expression] = STATE(3700), + [sym_compound_literal_expression] = STATE(3700), + [sym_lambda_expression] = STATE(3700), + [sym_char_literal] = STATE(3700), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3710), - [sym_assignment_expression] = STATE(3710), - [sym_pointer_expression] = STATE(3710), - [sym_shift_expression] = STATE(3710), - [sym_math_expression] = STATE(3710), - [sym_call_expression] = STATE(3710), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3700), + [sym_equality_expression] = STATE(3700), + [sym_relational_expression] = STATE(3700), + [sym_sizeof_expression] = STATE(3700), + [sym_subscript_expression] = STATE(3700), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7985), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7987), - [sym_null] = ACTIONS(7987), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7985), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7987), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7987), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3700), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3700), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3700), + [sym_pointer_expression] = STATE(3700), + [sym_shift_expression] = STATE(3700), + [sym_math_expression] = STATE(3700), + [sym_call_expression] = STATE(3700), + [sym_new_expression] = STATE(3700), + [sym_raw_string_literal] = ACTIONS(7996), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(7998), + [sym_null] = ACTIONS(7998), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7996), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(7998), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7998), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2891] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3711), - [sym_logical_expression] = STATE(3711), - [sym_bitwise_expression] = STATE(3711), - [sym_cast_expression] = STATE(3711), - [sym_new_expression] = STATE(3711), - [sym_field_expression] = STATE(3711), - [sym_compound_literal_expression] = STATE(3711), - [sym_char_literal] = STATE(3711), - [sym_template_function] = STATE(3711), - [sym_conditional_expression] = STATE(3711), - [sym_equality_expression] = STATE(3711), - [sym_relational_expression] = STATE(3711), - [sym_delete_expression] = STATE(3711), - [sym_sizeof_expression] = STATE(3711), - [sym_parenthesized_expression] = STATE(3711), - [sym_lambda_expression] = STATE(3711), - [sym_concatenated_string] = STATE(3711), - [sym_string_literal] = STATE(1899), + [2899] = { + [sym_template_function] = STATE(3701), + [sym__expression] = STATE(3701), + [sym_logical_expression] = STATE(3701), + [sym_bitwise_expression] = STATE(3701), + [sym_cast_expression] = STATE(3701), + [sym_delete_expression] = STATE(3701), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(3701), + [sym_lambda_expression] = STATE(3701), + [sym_char_literal] = STATE(3701), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3711), - [sym_assignment_expression] = STATE(3711), - [sym_pointer_expression] = STATE(3711), - [sym_shift_expression] = STATE(3711), - [sym_math_expression] = STATE(3711), - [sym_call_expression] = STATE(3711), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3701), + [sym_equality_expression] = STATE(3701), + [sym_relational_expression] = STATE(3701), + [sym_sizeof_expression] = STATE(3701), + [sym_subscript_expression] = STATE(3701), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7989), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7991), - [sym_null] = ACTIONS(7991), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7989), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7991), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7991), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3701), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3701), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3701), + [sym_pointer_expression] = STATE(3701), + [sym_shift_expression] = STATE(3701), + [sym_math_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_new_expression] = STATE(3701), + [sym_raw_string_literal] = ACTIONS(8000), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(8002), + [sym_null] = ACTIONS(8002), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(8000), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(8002), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(8002), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2892] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3712), - [sym_logical_expression] = STATE(3712), - [sym_bitwise_expression] = STATE(3712), - [sym_cast_expression] = STATE(3712), - [sym_new_expression] = STATE(3712), - [sym_field_expression] = STATE(3712), - [sym_compound_literal_expression] = STATE(3712), - [sym_char_literal] = STATE(3712), - [sym_template_function] = STATE(3712), - [sym_conditional_expression] = STATE(3712), - [sym_equality_expression] = STATE(3712), - [sym_relational_expression] = STATE(3712), - [sym_delete_expression] = STATE(3712), - [sym_sizeof_expression] = STATE(3712), - [sym_parenthesized_expression] = STATE(3712), - [sym_lambda_expression] = STATE(3712), - [sym_concatenated_string] = STATE(3712), - [sym_string_literal] = STATE(1899), + [2900] = { + [sym_template_function] = STATE(3702), + [sym__expression] = STATE(3702), + [sym_logical_expression] = STATE(3702), + [sym_bitwise_expression] = STATE(3702), + [sym_cast_expression] = STATE(3702), + [sym_delete_expression] = STATE(3702), + [sym_field_expression] = STATE(3702), + [sym_compound_literal_expression] = STATE(3702), + [sym_lambda_expression] = STATE(3702), + [sym_char_literal] = STATE(3702), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3712), - [sym_assignment_expression] = STATE(3712), - [sym_pointer_expression] = STATE(3712), - [sym_shift_expression] = STATE(3712), - [sym_math_expression] = STATE(3712), - [sym_call_expression] = STATE(3712), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3702), + [sym_equality_expression] = STATE(3702), + [sym_relational_expression] = STATE(3702), + [sym_sizeof_expression] = STATE(3702), + [sym_subscript_expression] = STATE(3702), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7993), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7995), - [sym_null] = ACTIONS(7995), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7993), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7995), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7995), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3702), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3702), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3702), + [sym_pointer_expression] = STATE(3702), + [sym_shift_expression] = STATE(3702), + [sym_math_expression] = STATE(3702), + [sym_call_expression] = STATE(3702), + [sym_new_expression] = STATE(3702), + [sym_raw_string_literal] = ACTIONS(8004), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(8006), + [sym_null] = ACTIONS(8006), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(8004), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(8006), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(8006), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2893] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3713), - [sym_logical_expression] = STATE(3713), - [sym_bitwise_expression] = STATE(3713), - [sym_cast_expression] = STATE(3713), - [sym_new_expression] = STATE(3713), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(3713), - [sym_char_literal] = STATE(3713), - [sym_template_function] = STATE(3713), - [sym_conditional_expression] = STATE(3713), - [sym_equality_expression] = STATE(3713), - [sym_relational_expression] = STATE(3713), - [sym_delete_expression] = STATE(3713), - [sym_sizeof_expression] = STATE(3713), - [sym_parenthesized_expression] = STATE(3713), - [sym_lambda_expression] = STATE(3713), - [sym_concatenated_string] = STATE(3713), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(3713), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(3713), - [sym_math_expression] = STATE(3713), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(7997), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(7999), - [sym_null] = ACTIONS(7999), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(7997), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(7999), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(7999), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [2901] = { + [sym_template_function] = STATE(3703), + [sym__expression] = STATE(3703), + [sym_logical_expression] = STATE(3703), + [sym_bitwise_expression] = STATE(3703), + [sym_cast_expression] = STATE(3703), + [sym_delete_expression] = STATE(3703), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(3703), + [sym_lambda_expression] = STATE(3703), + [sym_char_literal] = STATE(3703), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3703), + [sym_equality_expression] = STATE(3703), + [sym_relational_expression] = STATE(3703), + [sym_sizeof_expression] = STATE(3703), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3703), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(3703), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3703), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(3703), + [sym_math_expression] = STATE(3703), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(3703), + [sym_raw_string_literal] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(8010), + [sym_null] = ACTIONS(8010), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8008), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(8010), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8010), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [2894] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3714), - [sym_logical_expression] = STATE(3714), - [sym_bitwise_expression] = STATE(3714), - [sym_cast_expression] = STATE(3714), - [sym_new_expression] = STATE(3714), - [sym_field_expression] = STATE(3714), - [sym_compound_literal_expression] = STATE(3714), - [sym_char_literal] = STATE(3714), - [sym_template_function] = STATE(3714), - [sym_conditional_expression] = STATE(3714), - [sym_equality_expression] = STATE(3714), - [sym_relational_expression] = STATE(3714), - [sym_delete_expression] = STATE(3714), - [sym_sizeof_expression] = STATE(3714), - [sym_parenthesized_expression] = STATE(3714), - [sym_lambda_expression] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(1899), + [2902] = { + [sym_template_function] = STATE(3704), + [sym__expression] = STATE(3704), + [sym_logical_expression] = STATE(3704), + [sym_bitwise_expression] = STATE(3704), + [sym_cast_expression] = STATE(3704), + [sym_delete_expression] = STATE(3704), + [sym_field_expression] = STATE(3704), + [sym_compound_literal_expression] = STATE(3704), + [sym_lambda_expression] = STATE(3704), + [sym_char_literal] = STATE(3704), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3714), - [sym_assignment_expression] = STATE(3714), - [sym_pointer_expression] = STATE(3714), - [sym_shift_expression] = STATE(3714), - [sym_math_expression] = STATE(3714), - [sym_call_expression] = STATE(3714), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3704), + [sym_equality_expression] = STATE(3704), + [sym_relational_expression] = STATE(3704), + [sym_sizeof_expression] = STATE(3704), + [sym_subscript_expression] = STATE(3704), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(8001), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(8003), - [sym_null] = ACTIONS(8003), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(8001), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(8003), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(8003), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [sym_parenthesized_expression] = STATE(3704), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(3704), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3704), + [sym_pointer_expression] = STATE(3704), + [sym_shift_expression] = STATE(3704), + [sym_math_expression] = STATE(3704), + [sym_call_expression] = STATE(3704), + [sym_new_expression] = STATE(3704), + [sym_raw_string_literal] = ACTIONS(8012), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(8014), + [sym_null] = ACTIONS(8014), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(8012), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(8014), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(8014), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [2895] = { - [sym_string_literal] = STATE(3715), - [aux_sym_concatenated_string_repeat1] = STATE(3715), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_RBRACK] = ACTIONS(1701), + [2903] = { + [sym_string_literal] = STATE(3705), + [aux_sym_concatenated_string_repeat1] = STATE(3705), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_RBRACK] = ACTIONS(1766), }, - [2896] = { - [anon_sym_RPAREN] = ACTIONS(8005), + [2904] = { + [anon_sym_RPAREN] = ACTIONS(8016), [sym_comment] = ACTIONS(3), }, - [2897] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(2160), + [2905] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(2162), }, - [2898] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2898), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(8007), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(8007), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(8007), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(8007), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), + [2906] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2906), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(8018), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(8018), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(8018), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(8018), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), }, - [2899] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3717), - [sym_logical_expression] = STATE(3717), - [sym_bitwise_expression] = STATE(3717), - [sym_cast_expression] = STATE(3717), - [sym_new_expression] = STATE(3717), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3717), - [sym_char_literal] = STATE(3717), - [sym_template_function] = STATE(3717), - [sym_conditional_expression] = STATE(3717), - [sym_equality_expression] = STATE(3717), - [sym_relational_expression] = STATE(3717), - [sym_delete_expression] = STATE(3717), - [sym_sizeof_expression] = STATE(3717), - [sym_parenthesized_expression] = STATE(3717), - [sym_lambda_expression] = STATE(3717), - [sym_concatenated_string] = STATE(3717), - [sym_string_literal] = STATE(967), + [2907] = { + [sym_template_function] = STATE(3707), + [sym__expression] = STATE(3707), + [sym_logical_expression] = STATE(3707), + [sym_bitwise_expression] = STATE(3707), + [sym_cast_expression] = STATE(3707), + [sym_delete_expression] = STATE(3707), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3707), + [sym_lambda_expression] = STATE(3707), + [sym_char_literal] = STATE(3707), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3717), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3717), - [sym_math_expression] = STATE(3717), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3707), + [sym_equality_expression] = STATE(3707), + [sym_relational_expression] = STATE(3707), + [sym_sizeof_expression] = STATE(3707), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(8010), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(8012), - [sym_null] = ACTIONS(8012), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(8010), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(8012), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(8012), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(3707), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3707), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3707), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3707), + [sym_math_expression] = STATE(3707), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3707), + [sym_raw_string_literal] = ACTIONS(8021), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(8023), + [sym_null] = ACTIONS(8023), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(8021), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(8023), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(8023), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [2900] = { - [sym_initializer_list] = STATE(2727), - [sym_new_declarator] = STATE(2728), - [sym_argument_list] = STATE(2727), - [anon_sym_LPAREN2] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(5991), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_RBRACK] = ACTIONS(3138), + [2908] = { + [sym_new_declarator] = STATE(2712), + [sym_argument_list] = STATE(2711), + [sym_initializer_list] = STATE(2711), + [anon_sym_LPAREN2] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_RBRACK] = ACTIONS(3140), }, - [2901] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3718), - [sym_logical_expression] = STATE(3718), - [sym_bitwise_expression] = STATE(3718), - [sym_cast_expression] = STATE(3718), - [sym_new_expression] = STATE(3718), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3718), - [sym_char_literal] = STATE(3718), - [sym_template_function] = STATE(3718), - [sym_conditional_expression] = STATE(3718), - [sym_equality_expression] = STATE(3718), - [sym_relational_expression] = STATE(3718), - [sym_delete_expression] = STATE(3718), - [sym_sizeof_expression] = STATE(3718), - [sym_parenthesized_expression] = STATE(3718), - [sym_lambda_expression] = STATE(3718), - [sym_concatenated_string] = STATE(3718), - [sym_string_literal] = STATE(967), + [2909] = { + [sym_template_function] = STATE(3708), + [sym__expression] = STATE(3708), + [sym_logical_expression] = STATE(3708), + [sym_bitwise_expression] = STATE(3708), + [sym_cast_expression] = STATE(3708), + [sym_delete_expression] = STATE(3708), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3708), + [sym_lambda_expression] = STATE(3708), + [sym_char_literal] = STATE(3708), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3718), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3718), - [sym_math_expression] = STATE(3718), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3708), + [sym_equality_expression] = STATE(3708), + [sym_relational_expression] = STATE(3708), + [sym_sizeof_expression] = STATE(3708), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8014), - [anon_sym_DASH] = ACTIONS(1755), - [sym_true] = ACTIONS(8016), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [sym_null] = ACTIONS(8016), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(8014), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8016), - [sym_nullptr] = ACTIONS(8016), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), + [sym_parenthesized_expression] = STATE(3708), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3708), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3708), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3708), + [sym_math_expression] = STATE(3708), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3708), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8025), + [anon_sym_DASH] = ACTIONS(1710), + [sym_true] = ACTIONS(8027), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [sym_null] = ACTIONS(8027), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(8025), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8027), + [sym_nullptr] = ACTIONS(8027), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), }, - [2902] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(3755), + [2910] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(3901), }, - [2903] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_PERCENT] = ACTIONS(3850), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(3759), + [2911] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(3905), }, - [2904] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(3850), + [2912] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_RBRACK] = ACTIONS(3909), + }, + [2913] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(3915), + }, + [2914] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_RBRACK] = ACTIONS(3936), + }, + [2915] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(3940), + }, + [2916] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(3901), + }, + [2917] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(3901), + }, + [2918] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(8029), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [2919] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(3915), + }, + [2920] = { + [sym_string_literal] = STATE(2920), + [aux_sym_concatenated_string_repeat1] = STATE(2920), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5607), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_RBRACK] = ACTIONS(3886), + }, + [2921] = { + [anon_sym_LPAREN2] = ACTIONS(8031), + [anon_sym_final] = ACTIONS(8031), + [sym_noexcept] = ACTIONS(8031), + [anon_sym_mutable] = ACTIONS(8031), + [anon_sym_COMMA] = ACTIONS(8031), + [anon_sym__Atomic] = ACTIONS(8031), + [anon_sym_const] = ACTIONS(8033), + [anon_sym_GT2] = ACTIONS(8031), + [anon_sym_LBRACK] = ACTIONS(8031), + [anon_sym_constexpr] = ACTIONS(8031), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8031), + [anon_sym_override] = ACTIONS(8031), + [anon_sym_SEMI] = ACTIONS(8031), + [anon_sym_COLON] = ACTIONS(8031), + [anon_sym_explicit] = ACTIONS(8031), + [anon_sym_RPAREN] = ACTIONS(8031), + [anon_sym_DASH_GT] = ACTIONS(8031), + [anon_sym_EQ] = ACTIONS(8031), + [anon_sym_restrict] = ACTIONS(8031), + [anon_sym_LBRACE] = ACTIONS(8031), + }, + [2922] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2922), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_unsigned] = ACTIONS(8035), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(8035), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(8035), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(8035), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + }, + [2923] = { + [sym_abstract_reference_declarator] = STATE(3710), + [sym_abstract_array_declarator] = STATE(3710), + [sym_abstract_pointer_declarator] = STATE(3710), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(3710), + [sym__abstract_declarator] = STATE(3710), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6083), + [anon_sym_LBRACE] = ACTIONS(2835), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_RBRACK] = ACTIONS(3763), }, - [2905] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), + [2924] = { + [sym_abstract_reference_declarator] = STATE(3712), + [aux_sym_type_definition_repeat1] = STATE(3711), + [sym_abstract_array_declarator] = STATE(3712), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(3712), + [sym_abstract_pointer_declarator] = STATE(3712), + [sym_type_qualifier] = STATE(3711), + [sym__abstract_declarator] = STATE(3712), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(6079), + [anon_sym_volatile] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(6083), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(6081), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_constexpr] = ACTIONS(1070), + }, + [2925] = { + [sym_parameter_list] = STATE(959), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(8038), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(3769), }, - [2906] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_PERCENT] = ACTIONS(3850), + [2926] = { + [sym_template_function] = STATE(755), + [sym__expression] = STATE(755), + [sym_logical_expression] = STATE(755), + [sym_bitwise_expression] = STATE(755), + [sym_cast_expression] = STATE(755), + [sym_delete_expression] = STATE(755), + [sym_field_expression] = STATE(755), + [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), + [sym_char_literal] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), + [sym_conditional_expression] = STATE(755), + [sym_equality_expression] = STATE(755), + [sym_relational_expression] = STATE(755), + [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), + [sym_parenthesized_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(755), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(755), + [sym_pointer_expression] = STATE(755), + [sym_shift_expression] = STATE(755), + [sym_math_expression] = STATE(755), + [sym_call_expression] = STATE(755), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(8040), + }, + [2927] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8040), + }, + [2928] = { + [anon_sym_LPAREN2] = ACTIONS(8042), + [anon_sym_final] = ACTIONS(8042), + [sym_noexcept] = ACTIONS(8042), + [anon_sym_mutable] = ACTIONS(8042), + [anon_sym_COMMA] = ACTIONS(8042), + [anon_sym__Atomic] = ACTIONS(8042), + [anon_sym_const] = ACTIONS(8044), + [anon_sym_GT2] = ACTIONS(8042), + [anon_sym_LBRACK] = ACTIONS(8042), + [anon_sym_constexpr] = ACTIONS(8042), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8042), + [anon_sym_override] = ACTIONS(8042), + [anon_sym_SEMI] = ACTIONS(8042), + [anon_sym_COLON] = ACTIONS(8042), + [anon_sym_explicit] = ACTIONS(8042), + [anon_sym_RPAREN] = ACTIONS(8042), + [anon_sym_DASH_GT] = ACTIONS(8042), + [anon_sym_EQ] = ACTIONS(8042), + [anon_sym_restrict] = ACTIONS(8042), + [anon_sym_LBRACE] = ACTIONS(8042), + }, + [2929] = { + [anon_sym_LPAREN2] = ACTIONS(8046), + [anon_sym_LT] = ACTIONS(8046), + [anon_sym_LBRACE] = ACTIONS(8046), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_RBRACK] = ACTIONS(3790), }, - [2907] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), + [2930] = { + [anon_sym_LPAREN2] = ACTIONS(8048), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(8048), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(3794), }, - [2908] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), + [2931] = { + [anon_sym_LPAREN2] = ACTIONS(8050), + [anon_sym_LT] = ACTIONS(8050), + [anon_sym_LBRACE] = ACTIONS(8050), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(3755), }, - [2909] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), + [2932] = { + [anon_sym_LPAREN2] = ACTIONS(8052), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(8052), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(3755), }, - [2910] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(8018), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2933] = { + [anon_sym_EQ] = ACTIONS(8054), + [anon_sym_COMMA] = ACTIONS(8054), + [anon_sym_LBRACE] = ACTIONS(8054), + [sym_comment] = ACTIONS(3), }, - [2911] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), + [2934] = { + [aux_sym_field_initializer_list_repeat1] = STATE(2934), + [anon_sym_EQ] = ACTIONS(8054), + [anon_sym_COMMA] = ACTIONS(8056), + [anon_sym_LBRACE] = ACTIONS(8054), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(3769), }, - [2912] = { - [sym_string_literal] = STATE(2912), - [aux_sym_concatenated_string_repeat1] = STATE(2912), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5599), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_RBRACK] = ACTIONS(3732), + [2935] = { + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(8059), + [sym_comment] = ACTIONS(3), }, - [2913] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3720), - [sym_logical_expression] = STATE(3720), - [sym_bitwise_expression] = STATE(3720), - [sym_cast_expression] = STATE(3720), - [sym_new_expression] = STATE(3720), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(3720), - [sym_char_literal] = STATE(3720), - [sym_template_function] = STATE(3720), - [sym_conditional_expression] = STATE(3720), - [sym_equality_expression] = STATE(3720), - [sym_relational_expression] = STATE(3720), - [sym_delete_expression] = STATE(3720), - [sym_sizeof_expression] = STATE(3720), - [sym_parenthesized_expression] = STATE(3720), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(3720), - [sym_string_literal] = STATE(982), - [sym_lambda_expression] = STATE(3720), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(3720), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(3720), - [sym_math_expression] = STATE(3720), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8020), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(8022), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [sym_null] = ACTIONS(8022), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8020), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(8022), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8022), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), + [2936] = { + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(8062), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), + }, + [2937] = { + [sym_template_function] = STATE(3714), + [sym__expression] = STATE(3714), + [sym_logical_expression] = STATE(3714), + [sym_bitwise_expression] = STATE(3714), + [sym_cast_expression] = STATE(3714), + [sym_delete_expression] = STATE(3714), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(3714), + [sym_lambda_expression] = STATE(3714), + [sym_char_literal] = STATE(3714), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3714), + [sym_equality_expression] = STATE(3714), + [sym_relational_expression] = STATE(3714), + [sym_sizeof_expression] = STATE(3714), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(3714), + [sym_string_literal] = STATE(1008), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3714), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3714), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(3714), + [sym_math_expression] = STATE(3714), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(3714), + [sym_raw_string_literal] = ACTIONS(8065), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(8067), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [sym_null] = ACTIONS(8067), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8065), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(8067), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8067), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(175), }, - [2914] = { - [sym_template_type] = STATE(239), + [2938] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(8024), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(8069), }, - [2915] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2939] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [2916] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(654), - [anon_sym_LT_LT_EQ] = ACTIONS(654), - [anon_sym_PERCENT_EQ] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_SLASH_EQ] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(654), - [anon_sym_GT_GT_EQ] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_AMP_EQ] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2940] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(654), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2917] = { - [anon_sym_RPAREN] = ACTIONS(8026), + [2941] = { + [anon_sym_RPAREN] = ACTIONS(8071), [sym_comment] = ACTIONS(3), }, - [2918] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3724), - [sym_logical_expression] = STATE(3724), - [sym_bitwise_expression] = STATE(3724), - [sym_cast_expression] = STATE(3724), - [sym_new_expression] = STATE(3724), - [sym_field_expression] = STATE(3724), - [sym_compound_literal_expression] = STATE(3724), - [sym_char_literal] = STATE(3724), - [sym_template_function] = STATE(3724), - [sym_conditional_expression] = STATE(3724), - [sym_equality_expression] = STATE(3724), - [sym_relational_expression] = STATE(3724), - [sym_delete_expression] = STATE(3724), - [sym_sizeof_expression] = STATE(3724), - [sym_parenthesized_expression] = STATE(3724), - [sym_lambda_expression] = STATE(3724), - [sym_concatenated_string] = STATE(3724), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3724), - [sym_assignment_expression] = STATE(3724), - [sym_pointer_expression] = STATE(3724), - [sym_shift_expression] = STATE(3724), - [sym_math_expression] = STATE(3724), - [sym_call_expression] = STATE(3724), - [sym_lambda_capture_specifier] = STATE(196), + [2942] = { + [sym_template_function] = STATE(3718), + [sym__expression] = STATE(3718), + [sym_logical_expression] = STATE(3718), + [sym_bitwise_expression] = STATE(3718), + [sym_cast_expression] = STATE(3718), + [sym_delete_expression] = STATE(3718), + [sym_field_expression] = STATE(3718), + [sym_compound_literal_expression] = STATE(3718), + [sym_lambda_expression] = STATE(3718), + [sym_char_literal] = STATE(3718), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3718), + [sym_equality_expression] = STATE(3718), + [sym_relational_expression] = STATE(3718), + [sym_sizeof_expression] = STATE(3718), + [sym_subscript_expression] = STATE(3718), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8028), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8030), - [sym_null] = ACTIONS(8030), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8028), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(8032), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8030), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8030), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_parenthesized_expression] = STATE(3718), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(3718), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3718), + [sym_pointer_expression] = STATE(3718), + [sym_shift_expression] = STATE(3718), + [sym_math_expression] = STATE(3718), + [sym_call_expression] = STATE(3718), + [sym_new_expression] = STATE(3718), + [sym_raw_string_literal] = ACTIONS(8073), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8075), + [sym_null] = ACTIONS(8075), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8073), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(8077), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8075), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8075), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [2919] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(662), - [anon_sym_LT_LT_EQ] = ACTIONS(662), - [anon_sym_PERCENT_EQ] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(660), - [anon_sym_COLON] = ACTIONS(662), - [anon_sym_SLASH_EQ] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(660), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(662), - [anon_sym_GT_GT_EQ] = ACTIONS(662), - [anon_sym_PIPE_PIPE] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(660), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_AMP_EQ] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(662), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(662), + [2943] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_STAR_EQ] = ACTIONS(666), + [anon_sym_LT_LT_EQ] = ACTIONS(666), + [anon_sym_PERCENT_EQ] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_SLASH_EQ] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(666), + [anon_sym_GT_GT_EQ] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(664), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_DASH_EQ] = ACTIONS(666), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_AMP_EQ] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(664), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(666), }, - [2920] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(3725), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [2944] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(3719), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [2921] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2945] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(668), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2922] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_COLON] = ACTIONS(1655), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(1653), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), + [2946] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR_EQ] = ACTIONS(1665), + [anon_sym_LT_LT_EQ] = ACTIONS(1665), + [anon_sym_PERCENT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_CARET_EQ] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_COLON] = ACTIONS(1665), + [anon_sym_SLASH_EQ] = ACTIONS(1665), + [anon_sym_PLUS_EQ] = ACTIONS(1665), + [anon_sym_CARET] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_PIPE_EQ] = ACTIONS(1665), + [anon_sym_GT_GT_EQ] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(1663), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_DASH_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_AMP_EQ] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1665), }, - [2923] = { - [sym_union_specifier] = STATE(1502), - [sym_macro_type_specifier] = STATE(1502), - [sym_class_specifier] = STATE(1502), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1502), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1502), - [aux_sym_sized_type_specifier_repeat1] = STATE(2924), - [sym_struct_specifier] = STATE(1502), - [sym_enum_specifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1502), - [anon_sym_unsigned] = ACTIONS(6071), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(6071), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6071), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(6073), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(6071), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2967), + [2947] = { + [sym_union_specifier] = STATE(1497), + [sym_macro_type_specifier] = STATE(1497), + [sym_class_specifier] = STATE(1497), + [aux_sym_sized_type_specifier_repeat1] = STATE(2948), + [sym_sized_type_specifier] = STATE(1497), + [sym__type_specifier] = STATE(1497), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1497), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1497), + [sym_struct_specifier] = STATE(1497), + [anon_sym_unsigned] = ACTIONS(6187), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(6187), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(6187), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(6189), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(6187), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2969), }, - [2924] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3727), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(8040), - [anon_sym_long] = ACTIONS(8040), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_short] = ACTIONS(8040), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2991), - [anon_sym_unsigned] = ACTIONS(8040), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), + [2948] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3721), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(8085), + [anon_sym_long] = ACTIONS(8085), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_COLON] = ACTIONS(554), + [anon_sym_short] = ACTIONS(8085), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(2986), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(8085), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), }, - [2925] = { - [sym_initializer_list] = STATE(1522), - [sym_new_declarator] = STATE(3729), - [sym_argument_list] = STATE(1522), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_COLON] = ACTIONS(1283), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(8042), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [2949] = { + [sym_new_declarator] = STATE(3723), + [sym_argument_list] = STATE(1515), + [sym_initializer_list] = STATE(1515), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [2926] = { - [sym_union_specifier] = STATE(3730), - [sym_macro_type_specifier] = STATE(3730), - [sym_class_specifier] = STATE(3730), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(3730), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(3730), - [aux_sym_sized_type_specifier_repeat1] = STATE(2924), - [sym_struct_specifier] = STATE(3730), - [sym_enum_specifier] = STATE(3730), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(3730), - [anon_sym_unsigned] = ACTIONS(6071), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(8044), - [anon_sym_signed] = ACTIONS(6071), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6071), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(6073), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(6071), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(8044), + [2950] = { + [sym_union_specifier] = STATE(3724), + [sym_macro_type_specifier] = STATE(3724), + [sym_class_specifier] = STATE(3724), + [aux_sym_sized_type_specifier_repeat1] = STATE(2948), + [sym_sized_type_specifier] = STATE(3724), + [sym__type_specifier] = STATE(3724), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(3724), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(3724), + [sym_struct_specifier] = STATE(3724), + [anon_sym_unsigned] = ACTIONS(6187), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(8089), + [anon_sym_signed] = ACTIONS(6187), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(6187), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(6189), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(6187), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(8089), }, - [2927] = { - [sym_template_type] = STATE(239), + [2951] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(8046), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(8091), }, - [2928] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(8058), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(8060), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(8062), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [2952] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(8095), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(804), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(8103), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(8105), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(8107), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [2929] = { - [sym_template_type] = STATE(189), + [2953] = { + [sym_template_function] = STATE(3726), + [sym__expression] = STATE(3726), + [sym_logical_expression] = STATE(3726), + [sym_bitwise_expression] = STATE(3726), + [sym_cast_expression] = STATE(3726), + [sym_delete_expression] = STATE(3726), + [sym_field_expression] = STATE(3726), + [sym_compound_literal_expression] = STATE(3726), + [sym_lambda_expression] = STATE(3726), + [sym_char_literal] = STATE(3726), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3726), + [sym_equality_expression] = STATE(3726), + [sym_relational_expression] = STATE(3726), + [sym_sizeof_expression] = STATE(3726), + [sym_subscript_expression] = STATE(3726), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(3726), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(3726), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3726), + [sym_pointer_expression] = STATE(3726), + [sym_shift_expression] = STATE(3726), + [sym_math_expression] = STATE(3726), + [sym_call_expression] = STATE(3726), + [sym_new_expression] = STATE(3726), + [sym_raw_string_literal] = ACTIONS(8109), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8111), + [sym_null] = ACTIONS(8111), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8109), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8111), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8111), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), + }, + [2954] = { + [sym_template_function] = STATE(3727), + [sym__expression] = STATE(3727), + [sym_logical_expression] = STATE(3727), + [sym_bitwise_expression] = STATE(3727), + [sym_cast_expression] = STATE(3727), + [sym_delete_expression] = STATE(3727), + [sym_field_expression] = STATE(3727), + [sym_compound_literal_expression] = STATE(3727), + [sym_lambda_expression] = STATE(3727), + [sym_char_literal] = STATE(3727), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3727), + [sym_equality_expression] = STATE(3727), + [sym_relational_expression] = STATE(3727), + [sym_sizeof_expression] = STATE(3727), + [sym_subscript_expression] = STATE(3727), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(3727), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(3727), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3727), + [sym_pointer_expression] = STATE(3727), + [sym_shift_expression] = STATE(3727), + [sym_math_expression] = STATE(3727), + [sym_call_expression] = STATE(3727), + [sym_new_expression] = STATE(3727), + [sym_raw_string_literal] = ACTIONS(8113), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8115), + [sym_null] = ACTIONS(8115), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8113), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8115), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8115), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), + }, + [2955] = { + [sym_template_function] = STATE(3728), + [sym__expression] = STATE(3728), + [sym_logical_expression] = STATE(3728), + [sym_bitwise_expression] = STATE(3728), + [sym_cast_expression] = STATE(3728), + [sym_delete_expression] = STATE(3728), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3728), + [sym_lambda_expression] = STATE(3728), + [sym_char_literal] = STATE(3728), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3728), + [sym_equality_expression] = STATE(3728), + [sym_relational_expression] = STATE(3728), + [sym_sizeof_expression] = STATE(3728), + [sym_subscript_expression] = STATE(3728), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(3728), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(3728), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3728), + [sym_pointer_expression] = STATE(3728), + [sym_shift_expression] = STATE(3728), + [sym_math_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_new_expression] = STATE(3728), + [sym_raw_string_literal] = ACTIONS(8117), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8119), + [sym_null] = ACTIONS(8119), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8117), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8119), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8119), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), + }, + [2956] = { + [sym_template_function] = STATE(3729), + [sym__expression] = STATE(3729), + [sym_logical_expression] = STATE(3729), + [sym_bitwise_expression] = STATE(3729), + [sym_cast_expression] = STATE(3729), + [sym_delete_expression] = STATE(3729), + [sym_field_expression] = STATE(3729), + [sym_compound_literal_expression] = STATE(3729), + [sym_lambda_expression] = STATE(3729), + [sym_char_literal] = STATE(3729), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3729), + [sym_equality_expression] = STATE(3729), + [sym_relational_expression] = STATE(3729), + [sym_sizeof_expression] = STATE(3729), + [sym_subscript_expression] = STATE(3729), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(3729), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(3729), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3729), + [sym_pointer_expression] = STATE(3729), + [sym_shift_expression] = STATE(3729), + [sym_math_expression] = STATE(3729), + [sym_call_expression] = STATE(3729), + [sym_new_expression] = STATE(3729), + [sym_raw_string_literal] = ACTIONS(8121), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8123), + [sym_null] = ACTIONS(8123), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8121), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8123), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8123), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), + }, + [2957] = { + [sym_template_function] = STATE(3730), + [sym__expression] = STATE(3730), + [sym_logical_expression] = STATE(3730), + [sym_bitwise_expression] = STATE(3730), + [sym_cast_expression] = STATE(3730), + [sym_delete_expression] = STATE(3730), + [sym_field_expression] = STATE(3730), + [sym_compound_literal_expression] = STATE(3730), + [sym_lambda_expression] = STATE(3730), + [sym_char_literal] = STATE(3730), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3730), + [sym_equality_expression] = STATE(3730), + [sym_relational_expression] = STATE(3730), + [sym_sizeof_expression] = STATE(3730), + [sym_subscript_expression] = STATE(3730), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(3730), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(3730), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3730), + [sym_pointer_expression] = STATE(3730), + [sym_shift_expression] = STATE(3730), + [sym_math_expression] = STATE(3730), + [sym_call_expression] = STATE(3730), + [sym_new_expression] = STATE(3730), + [sym_raw_string_literal] = ACTIONS(8125), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8127), + [sym_null] = ACTIONS(8127), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8125), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8127), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8127), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), + }, + [2958] = { + [sym_template_function] = STATE(3731), + [sym__expression] = STATE(3731), + [sym_logical_expression] = STATE(3731), + [sym_bitwise_expression] = STATE(3731), + [sym_cast_expression] = STATE(3731), + [sym_delete_expression] = STATE(3731), + [sym_field_expression] = STATE(3731), + [sym_compound_literal_expression] = STATE(3731), + [sym_lambda_expression] = STATE(3731), + [sym_char_literal] = STATE(3731), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3731), + [sym_equality_expression] = STATE(3731), + [sym_relational_expression] = STATE(3731), + [sym_sizeof_expression] = STATE(3731), + [sym_subscript_expression] = STATE(3731), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(3731), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(3731), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3731), + [sym_pointer_expression] = STATE(3731), + [sym_shift_expression] = STATE(3731), + [sym_math_expression] = STATE(3731), + [sym_call_expression] = STATE(3731), + [sym_new_expression] = STATE(3731), + [sym_raw_string_literal] = ACTIONS(8129), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8131), + [sym_null] = ACTIONS(8131), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8129), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8131), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8131), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), + }, + [2959] = { + [sym_template_function] = STATE(3732), [sym__expression] = STATE(3732), [sym_logical_expression] = STATE(3732), [sym_bitwise_expression] = STATE(3732), [sym_cast_expression] = STATE(3732), - [sym_new_expression] = STATE(3732), + [sym_delete_expression] = STATE(3732), [sym_field_expression] = STATE(3732), [sym_compound_literal_expression] = STATE(3732), + [sym_lambda_expression] = STATE(3732), [sym_char_literal] = STATE(3732), - [sym_template_function] = STATE(3732), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), [sym_conditional_expression] = STATE(3732), [sym_equality_expression] = STATE(3732), [sym_relational_expression] = STATE(3732), - [sym_delete_expression] = STATE(3732), [sym_sizeof_expression] = STATE(3732), + [sym_subscript_expression] = STATE(3732), + [sym_scoped_namespace_identifier] = STATE(197), [sym_parenthesized_expression] = STATE(3732), - [sym_lambda_expression] = STATE(3732), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), [sym_concatenated_string] = STATE(3732), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3732), + [sym_template_type] = STATE(198), [sym_assignment_expression] = STATE(3732), [sym_pointer_expression] = STATE(3732), [sym_shift_expression] = STATE(3732), [sym_math_expression] = STATE(3732), [sym_call_expression] = STATE(3732), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8064), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8066), - [sym_null] = ACTIONS(8066), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8064), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8066), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8066), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_new_expression] = STATE(3732), + [sym_raw_string_literal] = ACTIONS(8133), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8135), + [sym_null] = ACTIONS(8135), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8133), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8135), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8135), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [2930] = { - [sym_template_type] = STATE(189), + [2960] = { + [sym_template_function] = STATE(3733), [sym__expression] = STATE(3733), [sym_logical_expression] = STATE(3733), [sym_bitwise_expression] = STATE(3733), [sym_cast_expression] = STATE(3733), - [sym_new_expression] = STATE(3733), + [sym_delete_expression] = STATE(3733), [sym_field_expression] = STATE(3733), [sym_compound_literal_expression] = STATE(3733), + [sym_lambda_expression] = STATE(3733), [sym_char_literal] = STATE(3733), - [sym_template_function] = STATE(3733), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), [sym_conditional_expression] = STATE(3733), [sym_equality_expression] = STATE(3733), [sym_relational_expression] = STATE(3733), - [sym_delete_expression] = STATE(3733), [sym_sizeof_expression] = STATE(3733), + [sym_subscript_expression] = STATE(3733), + [sym_scoped_namespace_identifier] = STATE(197), [sym_parenthesized_expression] = STATE(3733), - [sym_lambda_expression] = STATE(3733), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), [sym_concatenated_string] = STATE(3733), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3733), + [sym_template_type] = STATE(198), [sym_assignment_expression] = STATE(3733), [sym_pointer_expression] = STATE(3733), [sym_shift_expression] = STATE(3733), [sym_math_expression] = STATE(3733), [sym_call_expression] = STATE(3733), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8068), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8070), - [sym_null] = ACTIONS(8070), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8068), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8070), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8070), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_new_expression] = STATE(3733), + [sym_raw_string_literal] = ACTIONS(8137), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8139), + [sym_null] = ACTIONS(8139), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8137), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8139), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8139), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [2931] = { - [sym_template_type] = STATE(189), + [2961] = { + [sym_template_function] = STATE(3734), [sym__expression] = STATE(3734), [sym_logical_expression] = STATE(3734), [sym_bitwise_expression] = STATE(3734), [sym_cast_expression] = STATE(3734), - [sym_new_expression] = STATE(3734), + [sym_delete_expression] = STATE(3734), [sym_field_expression] = STATE(3734), [sym_compound_literal_expression] = STATE(3734), + [sym_lambda_expression] = STATE(3734), [sym_char_literal] = STATE(3734), - [sym_template_function] = STATE(3734), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), [sym_conditional_expression] = STATE(3734), [sym_equality_expression] = STATE(3734), [sym_relational_expression] = STATE(3734), - [sym_delete_expression] = STATE(3734), [sym_sizeof_expression] = STATE(3734), + [sym_subscript_expression] = STATE(3734), + [sym_scoped_namespace_identifier] = STATE(197), [sym_parenthesized_expression] = STATE(3734), - [sym_lambda_expression] = STATE(3734), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), [sym_concatenated_string] = STATE(3734), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3734), + [sym_template_type] = STATE(198), [sym_assignment_expression] = STATE(3734), [sym_pointer_expression] = STATE(3734), [sym_shift_expression] = STATE(3734), [sym_math_expression] = STATE(3734), [sym_call_expression] = STATE(3734), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8072), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8074), - [sym_null] = ACTIONS(8074), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8072), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8074), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8074), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_new_expression] = STATE(3734), + [sym_raw_string_literal] = ACTIONS(8141), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8143), + [sym_null] = ACTIONS(8143), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8141), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8143), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8143), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [2932] = { - [sym_template_type] = STATE(189), + [2962] = { + [sym_template_function] = STATE(3735), [sym__expression] = STATE(3735), [sym_logical_expression] = STATE(3735), [sym_bitwise_expression] = STATE(3735), [sym_cast_expression] = STATE(3735), - [sym_new_expression] = STATE(3735), - [sym_field_expression] = STATE(3735), + [sym_delete_expression] = STATE(3735), + [sym_field_expression] = STATE(1006), [sym_compound_literal_expression] = STATE(3735), + [sym_lambda_expression] = STATE(3735), [sym_char_literal] = STATE(3735), - [sym_template_function] = STATE(3735), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), [sym_conditional_expression] = STATE(3735), [sym_equality_expression] = STATE(3735), [sym_relational_expression] = STATE(3735), - [sym_delete_expression] = STATE(3735), [sym_sizeof_expression] = STATE(3735), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), [sym_parenthesized_expression] = STATE(3735), - [sym_lambda_expression] = STATE(3735), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), [sym_concatenated_string] = STATE(3735), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3735), + [sym_template_type] = STATE(76), [sym_assignment_expression] = STATE(3735), - [sym_pointer_expression] = STATE(3735), + [sym_pointer_expression] = STATE(1006), [sym_shift_expression] = STATE(3735), [sym_math_expression] = STATE(3735), - [sym_call_expression] = STATE(3735), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8076), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8078), - [sym_null] = ACTIONS(8078), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8076), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8078), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8078), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(3735), + [sym_raw_string_literal] = ACTIONS(8145), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(8147), + [sym_null] = ACTIONS(8147), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8145), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(8147), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8147), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [2933] = { - [sym_template_type] = STATE(189), + [2963] = { + [sym_template_function] = STATE(3736), [sym__expression] = STATE(3736), [sym_logical_expression] = STATE(3736), [sym_bitwise_expression] = STATE(3736), [sym_cast_expression] = STATE(3736), - [sym_new_expression] = STATE(3736), + [sym_delete_expression] = STATE(3736), [sym_field_expression] = STATE(3736), [sym_compound_literal_expression] = STATE(3736), + [sym_lambda_expression] = STATE(3736), [sym_char_literal] = STATE(3736), - [sym_template_function] = STATE(3736), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), [sym_conditional_expression] = STATE(3736), [sym_equality_expression] = STATE(3736), [sym_relational_expression] = STATE(3736), - [sym_delete_expression] = STATE(3736), [sym_sizeof_expression] = STATE(3736), + [sym_subscript_expression] = STATE(3736), + [sym_scoped_namespace_identifier] = STATE(197), [sym_parenthesized_expression] = STATE(3736), - [sym_lambda_expression] = STATE(3736), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), [sym_concatenated_string] = STATE(3736), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3736), + [sym_template_type] = STATE(198), [sym_assignment_expression] = STATE(3736), [sym_pointer_expression] = STATE(3736), [sym_shift_expression] = STATE(3736), [sym_math_expression] = STATE(3736), [sym_call_expression] = STATE(3736), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8080), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8082), - [sym_null] = ACTIONS(8082), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8080), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8082), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8082), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), - }, - [2934] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3737), - [sym_logical_expression] = STATE(3737), - [sym_bitwise_expression] = STATE(3737), - [sym_cast_expression] = STATE(3737), - [sym_new_expression] = STATE(3737), - [sym_field_expression] = STATE(3737), - [sym_compound_literal_expression] = STATE(3737), - [sym_char_literal] = STATE(3737), - [sym_template_function] = STATE(3737), - [sym_conditional_expression] = STATE(3737), - [sym_equality_expression] = STATE(3737), - [sym_relational_expression] = STATE(3737), - [sym_delete_expression] = STATE(3737), - [sym_sizeof_expression] = STATE(3737), - [sym_parenthesized_expression] = STATE(3737), - [sym_lambda_expression] = STATE(3737), - [sym_concatenated_string] = STATE(3737), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3737), - [sym_assignment_expression] = STATE(3737), - [sym_pointer_expression] = STATE(3737), - [sym_shift_expression] = STATE(3737), - [sym_math_expression] = STATE(3737), - [sym_call_expression] = STATE(3737), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8086), - [sym_null] = ACTIONS(8086), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8084), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8086), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8086), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [sym_new_expression] = STATE(3736), + [sym_raw_string_literal] = ACTIONS(8149), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(8151), + [sym_null] = ACTIONS(8151), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8149), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(8151), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(8151), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [2935] = { - [sym_template_type] = STATE(189), + [2964] = { + [sym_template_function] = STATE(3738), [sym__expression] = STATE(3738), [sym_logical_expression] = STATE(3738), [sym_bitwise_expression] = STATE(3738), [sym_cast_expression] = STATE(3738), - [sym_new_expression] = STATE(3738), - [sym_field_expression] = STATE(3738), + [sym_delete_expression] = STATE(3738), + [sym_field_expression] = STATE(421), + [sym_scoped_type_identifier] = STATE(422), [sym_compound_literal_expression] = STATE(3738), [sym_char_literal] = STATE(3738), - [sym_template_function] = STATE(3738), + [sym_lambda_expression] = STATE(3738), + [sym_scoped_identifier] = STATE(423), + [sym_type_descriptor] = STATE(3739), + [sym_dependent_type] = STATE(428), + [sym_struct_specifier] = STATE(428), + [sym_union_specifier] = STATE(428), + [sym_type_qualifier] = STATE(429), [sym_conditional_expression] = STATE(3738), [sym_equality_expression] = STATE(3738), [sym_relational_expression] = STATE(3738), - [sym_delete_expression] = STATE(3738), [sym_sizeof_expression] = STATE(3738), + [sym_subscript_expression] = STATE(421), [sym_parenthesized_expression] = STATE(3738), - [sym_lambda_expression] = STATE(3738), + [sym_lambda_capture_specifier] = STATE(425), [sym_concatenated_string] = STATE(3738), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3738), + [sym_string_literal] = STATE(426), + [sym_macro_type_specifier] = STATE(428), + [sym_class_specifier] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(427), + [sym_sized_type_specifier] = STATE(428), + [sym__type_specifier] = STATE(428), + [aux_sym_type_definition_repeat1] = STATE(429), + [sym_scoped_namespace_identifier] = STATE(430), + [sym_template_type] = STATE(431), [sym_assignment_expression] = STATE(3738), - [sym_pointer_expression] = STATE(3738), + [sym_pointer_expression] = STATE(421), [sym_shift_expression] = STATE(3738), [sym_math_expression] = STATE(3738), - [sym_call_expression] = STATE(3738), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8088), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8090), - [sym_null] = ACTIONS(8090), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8088), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8090), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8090), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), - }, - [2936] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3739), - [sym_logical_expression] = STATE(3739), - [sym_bitwise_expression] = STATE(3739), - [sym_cast_expression] = STATE(3739), - [sym_new_expression] = STATE(3739), - [sym_field_expression] = STATE(3739), - [sym_compound_literal_expression] = STATE(3739), - [sym_char_literal] = STATE(3739), - [sym_template_function] = STATE(3739), - [sym_conditional_expression] = STATE(3739), - [sym_equality_expression] = STATE(3739), - [sym_relational_expression] = STATE(3739), - [sym_delete_expression] = STATE(3739), - [sym_sizeof_expression] = STATE(3739), - [sym_parenthesized_expression] = STATE(3739), - [sym_lambda_expression] = STATE(3739), - [sym_concatenated_string] = STATE(3739), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3739), - [sym_assignment_expression] = STATE(3739), - [sym_pointer_expression] = STATE(3739), - [sym_shift_expression] = STATE(3739), - [sym_math_expression] = STATE(3739), - [sym_call_expression] = STATE(3739), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8092), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8094), - [sym_null] = ACTIONS(8094), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8092), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8094), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8094), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), - }, - [2937] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3740), - [sym_logical_expression] = STATE(3740), - [sym_bitwise_expression] = STATE(3740), - [sym_cast_expression] = STATE(3740), - [sym_new_expression] = STATE(3740), - [sym_field_expression] = STATE(3740), - [sym_compound_literal_expression] = STATE(3740), - [sym_char_literal] = STATE(3740), - [sym_template_function] = STATE(3740), - [sym_conditional_expression] = STATE(3740), - [sym_equality_expression] = STATE(3740), - [sym_relational_expression] = STATE(3740), - [sym_delete_expression] = STATE(3740), - [sym_sizeof_expression] = STATE(3740), - [sym_parenthesized_expression] = STATE(3740), - [sym_lambda_expression] = STATE(3740), - [sym_concatenated_string] = STATE(3740), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3740), - [sym_assignment_expression] = STATE(3740), - [sym_pointer_expression] = STATE(3740), - [sym_shift_expression] = STATE(3740), - [sym_math_expression] = STATE(3740), - [sym_call_expression] = STATE(3740), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8096), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8098), - [sym_null] = ACTIONS(8098), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8096), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8098), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8098), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), - }, - [2938] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3741), - [sym_logical_expression] = STATE(3741), - [sym_bitwise_expression] = STATE(3741), - [sym_cast_expression] = STATE(3741), - [sym_new_expression] = STATE(3741), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(3741), - [sym_char_literal] = STATE(3741), - [sym_template_function] = STATE(3741), - [sym_conditional_expression] = STATE(3741), - [sym_equality_expression] = STATE(3741), - [sym_relational_expression] = STATE(3741), - [sym_delete_expression] = STATE(3741), - [sym_sizeof_expression] = STATE(3741), - [sym_parenthesized_expression] = STATE(3741), - [sym_lambda_expression] = STATE(3741), - [sym_concatenated_string] = STATE(3741), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(3741), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(3741), - [sym_math_expression] = STATE(3741), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8100), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(8102), - [sym_null] = ACTIONS(8102), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8100), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(8102), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8102), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, - [2939] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3742), - [sym_logical_expression] = STATE(3742), - [sym_bitwise_expression] = STATE(3742), - [sym_cast_expression] = STATE(3742), - [sym_new_expression] = STATE(3742), - [sym_field_expression] = STATE(3742), - [sym_compound_literal_expression] = STATE(3742), - [sym_char_literal] = STATE(3742), - [sym_template_function] = STATE(3742), - [sym_conditional_expression] = STATE(3742), - [sym_equality_expression] = STATE(3742), - [sym_relational_expression] = STATE(3742), - [sym_delete_expression] = STATE(3742), - [sym_sizeof_expression] = STATE(3742), - [sym_parenthesized_expression] = STATE(3742), - [sym_lambda_expression] = STATE(3742), - [sym_concatenated_string] = STATE(3742), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3742), - [sym_assignment_expression] = STATE(3742), - [sym_pointer_expression] = STATE(3742), - [sym_shift_expression] = STATE(3742), - [sym_math_expression] = STATE(3742), - [sym_call_expression] = STATE(3742), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8104), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(8106), - [sym_null] = ACTIONS(8106), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8104), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(8106), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8106), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), - }, - [2940] = { - [sym_template_type] = STATE(419), - [sym__expression] = STATE(3744), - [sym_logical_expression] = STATE(3744), - [sym_bitwise_expression] = STATE(3744), - [sym_cast_expression] = STATE(3744), - [sym_new_expression] = STATE(3744), - [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(3744), - [sym_type_descriptor] = STATE(3745), - [sym_char_literal] = STATE(3744), - [sym_type_qualifier] = STATE(429), - [sym_dependent_type] = STATE(426), - [sym_union_specifier] = STATE(426), - [sym_struct_specifier] = STATE(426), - [sym_template_function] = STATE(3744), - [sym_conditional_expression] = STATE(3744), - [sym_equality_expression] = STATE(3744), - [sym_relational_expression] = STATE(3744), - [sym_delete_expression] = STATE(3744), - [sym_sizeof_expression] = STATE(3744), - [sym_subscript_expression] = STATE(421), - [sym_parenthesized_expression] = STATE(3744), - [sym_scoped_type_identifier] = STATE(423), - [sym_string_literal] = STATE(424), - [sym_macro_type_specifier] = STATE(426), - [sym_class_specifier] = STATE(426), - [sym_concatenated_string] = STATE(3744), - [sym_sized_type_specifier] = STATE(426), - [sym_lambda_expression] = STATE(3744), - [sym_scoped_identifier] = STATE(425), - [sym__type_specifier] = STATE(426), - [sym_assignment_expression] = STATE(3744), - [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(3744), - [sym_math_expression] = STATE(3744), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(429), - [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [sym_enum_specifier] = STATE(426), - [sym_raw_string_literal] = ACTIONS(8108), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(702), - [sym_true] = ACTIONS(8110), + [sym_new_expression] = STATE(3738), + [sym_enum_specifier] = STATE(428), + [sym_raw_string_literal] = ACTIONS(8153), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(706), + [sym_true] = ACTIONS(8155), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(8110), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(710), - [anon_sym_signed] = ACTIONS(712), - [anon_sym_long] = ACTIONS(712), - [anon_sym_GT2] = ACTIONS(8112), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(720), + [sym_null] = ACTIONS(8155), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_GT2] = ACTIONS(8157), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_sizeof] = ACTIONS(724), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(728), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(726), - [anon_sym_new] = ACTIONS(728), - [anon_sym_short] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_short] = ACTIONS(716), + [anon_sym_delete] = ACTIONS(734), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(8108), - [anon_sym_DQUOTE] = ACTIONS(732), + [sym_number_literal] = ACTIONS(8153), + [anon_sym_DQUOTE] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(702), - [sym_false] = ACTIONS(8110), - [anon_sym_unsigned] = ACTIONS(712), - [sym_nullptr] = ACTIONS(8110), + [sym_primitive_type] = ACTIONS(706), + [sym_false] = ACTIONS(8155), + [anon_sym_unsigned] = ACTIONS(716), + [sym_nullptr] = ACTIONS(8155), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_restrict] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [2941] = { - [sym_string_literal] = STATE(3746), - [aux_sym_concatenated_string_repeat1] = STATE(3746), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_COLON] = ACTIONS(1701), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [2965] = { + [sym_string_literal] = STATE(3740), + [aux_sym_concatenated_string_repeat1] = STATE(3740), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_COLON] = ACTIONS(1766), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [2942] = { - [anon_sym_RPAREN] = ACTIONS(8114), + [2966] = { + [anon_sym_RPAREN] = ACTIONS(8159), [sym_comment] = ACTIONS(3), }, - [2943] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2944] = { - [sym_template_argument_list] = STATE(385), - [sym_virtual_specifier] = STATE(2697), - [sym_field_declaration_list] = STATE(2698), - [sym_base_class_clause] = STATE(2699), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_mutable] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym_COLON_COLON] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_SLASH] = ACTIONS(1086), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1084), - [sym_noexcept] = ACTIONS(1084), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_PERCENT] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_constexpr] = ACTIONS(1084), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_LT_EQ] = ACTIONS(1084), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_DASH_GT] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(1084), - }, - [2945] = { - [sym_virtual_specifier] = STATE(2704), - [sym_field_declaration_list] = STATE(2702), - [sym_base_class_clause] = STATE(2703), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_mutable] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1126), - [sym_noexcept] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(1126), - }, - [2946] = { - [sym_template_argument_list] = STATE(354), - [sym_virtual_specifier] = STATE(2704), - [sym_field_declaration_list] = STATE(2702), - [sym_base_class_clause] = STATE(2703), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_mutable] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_explicit] = ACTIONS(1126), - [sym_noexcept] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_constexpr] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(1126), - }, - [2947] = { - [sym_template_argument_list] = STATE(385), - [sym_virtual_specifier] = STATE(2705), - [sym_field_declaration_list] = STATE(2706), - [sym_base_class_clause] = STATE(2707), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1251), - [anon_sym_mutable] = ACTIONS(1251), - [anon_sym_restrict] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1251), - [sym_noexcept] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym__Atomic] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_COMMA] = ACTIONS(1251), - [anon_sym_constexpr] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_DASH_GT] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(1251), - }, - [2948] = { - [sym_virtual_specifier] = STATE(2710), - [sym_field_declaration_list] = STATE(2708), - [sym_base_class_clause] = STATE(2709), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_mutable] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1255), - [sym_noexcept] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(1255), - }, - [2949] = { - [sym_template_argument_list] = STATE(354), - [sym_virtual_specifier] = STATE(2710), - [sym_field_declaration_list] = STATE(2708), - [sym_base_class_clause] = STATE(2709), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_mutable] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_explicit] = ACTIONS(1255), - [sym_noexcept] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(1255), - }, - [2950] = { - [sym_template_argument_list] = STATE(385), - [sym_virtual_specifier] = STATE(2716), - [sym_field_declaration_list] = STATE(2717), - [sym_base_class_clause] = STATE(2718), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_mutable] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1474), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1472), - [sym_noexcept] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_DASH_GT] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(1472), - }, - [2951] = { - [sym_virtual_specifier] = STATE(2721), - [sym_field_declaration_list] = STATE(2719), - [sym_base_class_clause] = STATE(2720), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_mutable] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_explicit] = ACTIONS(1476), - [sym_noexcept] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(1476), - }, - [2952] = { - [sym_template_argument_list] = STATE(354), - [sym_virtual_specifier] = STATE(2721), - [sym_field_declaration_list] = STATE(2719), - [sym_base_class_clause] = STATE(2720), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_mutable] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_explicit] = ACTIONS(1476), - [sym_noexcept] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(1476), - }, - [2953] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2953), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(8116), - [anon_sym_long] = ACTIONS(8116), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_COLON] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(8116), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(8116), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), - }, - [2954] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3748), - [sym_logical_expression] = STATE(3748), - [sym_bitwise_expression] = STATE(3748), - [sym_cast_expression] = STATE(3748), - [sym_new_expression] = STATE(3748), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3748), - [sym_char_literal] = STATE(3748), - [sym_template_function] = STATE(3748), - [sym_conditional_expression] = STATE(3748), - [sym_equality_expression] = STATE(3748), - [sym_relational_expression] = STATE(3748), - [sym_delete_expression] = STATE(3748), - [sym_sizeof_expression] = STATE(3748), - [sym_parenthesized_expression] = STATE(3748), - [sym_lambda_expression] = STATE(3748), - [sym_concatenated_string] = STATE(3748), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3748), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3748), - [sym_math_expression] = STATE(3748), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(8119), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(8121), - [sym_null] = ACTIONS(8121), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(8119), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(8121), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(8121), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [2955] = { - [sym_initializer_list] = STATE(1570), - [sym_new_declarator] = STATE(1571), - [sym_argument_list] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(6096), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - }, - [2956] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3749), - [sym_logical_expression] = STATE(3749), - [sym_bitwise_expression] = STATE(3749), - [sym_cast_expression] = STATE(3749), - [sym_new_expression] = STATE(3749), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(3749), - [sym_char_literal] = STATE(3749), - [sym_template_function] = STATE(3749), - [sym_conditional_expression] = STATE(3749), - [sym_equality_expression] = STATE(3749), - [sym_relational_expression] = STATE(3749), - [sym_delete_expression] = STATE(3749), - [sym_sizeof_expression] = STATE(3749), - [sym_parenthesized_expression] = STATE(3749), - [sym_lambda_expression] = STATE(3749), - [sym_concatenated_string] = STATE(3749), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(3749), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(3749), - [sym_math_expression] = STATE(3749), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8123), - [anon_sym_DASH] = ACTIONS(1785), - [sym_true] = ACTIONS(8125), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [sym_null] = ACTIONS(8125), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8123), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8125), - [sym_nullptr] = ACTIONS(8125), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - }, - [2957] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2958] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_COLON] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2959] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_COLON] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2960] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2961] = { - [sym_template_argument_list] = STATE(1887), - [anon_sym_LT] = ACTIONS(8127), - [sym_comment] = ACTIONS(3), - }, - [2962] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_COLON] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2963] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_PERCENT] = ACTIONS(3763), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_SLASH] = ACTIONS(3765), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_COLON] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2964] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3794), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2965] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2966] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [2967] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(8129), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [2967] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2968] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(565), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(8131), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_virtual_specifier] = STATE(2682), + [sym_template_argument_list] = STATE(386), + [sym_field_declaration_list] = STATE(2683), + [sym_base_class_clause] = STATE(2684), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_mutable] = ACTIONS(1088), + [anon_sym_restrict] = ACTIONS(1088), + [anon_sym_COLON_COLON] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1088), + [sym_noexcept] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym__Atomic] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_PERCENT] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_constexpr] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_DASH_GT] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(1088), }, [2969] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_virtual_specifier] = STATE(2687), + [sym_template_argument_list] = STATE(312), + [sym_field_declaration_list] = STATE(2688), + [sym_base_class_clause] = STATE(2689), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_mutable] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_explicit] = ACTIONS(1130), + [sym_noexcept] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(1130), }, [2970] = { - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_CARET] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(2202), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_DASH_GT] = ACTIONS(2202), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2202), + [sym_virtual_specifier] = STATE(2687), + [sym_field_declaration_list] = STATE(2688), + [sym_base_class_clause] = STATE(2689), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_mutable] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1130), + [sym_noexcept] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(1130), }, [2971] = { - [sym_argument_list] = STATE(1165), - [aux_sym_template_argument_list_repeat1] = STATE(3752), - [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_PIPE_PIPE] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_EQ_EQ] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_GT2] = ACTIONS(8133), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2323), + [sym_virtual_specifier] = STATE(2690), + [sym_template_argument_list] = STATE(386), + [sym_field_declaration_list] = STATE(2691), + [sym_base_class_clause] = STATE(2692), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_mutable] = ACTIONS(1257), + [anon_sym_restrict] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1257), + [sym_noexcept] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym__Atomic] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_constexpr] = ACTIONS(1257), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_GT_EQ] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_LT_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ] = ACTIONS(2313), - [anon_sym_AMP_AMP] = ACTIONS(2329), - [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(2333), - [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_DASH_GT] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(1257), }, [2972] = { - [aux_sym_template_argument_list_repeat1] = STATE(3754), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(8135), + [sym_virtual_specifier] = STATE(2693), + [sym_template_argument_list] = STATE(312), + [sym_field_declaration_list] = STATE(2694), + [sym_base_class_clause] = STATE(2695), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_mutable] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_explicit] = ACTIONS(1261), + [sym_noexcept] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym__Atomic] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1261), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(1261), }, [2973] = { - [sym_string_literal] = STATE(2973), - [aux_sym_concatenated_string_repeat1] = STATE(2973), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_COLON] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [sym_virtual_specifier] = STATE(2693), + [sym_field_declaration_list] = STATE(2694), + [sym_base_class_clause] = STATE(2695), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_mutable] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1261), + [sym_noexcept] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym__Atomic] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1261), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(1261), }, [2974] = { - [anon_sym_COMMA] = ACTIONS(8137), - [anon_sym_RPAREN] = ACTIONS(8137), - [sym_comment] = ACTIONS(3), + [sym_virtual_specifier] = STATE(2701), + [sym_template_argument_list] = STATE(386), + [sym_field_declaration_list] = STATE(2702), + [sym_base_class_clause] = STATE(2703), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_mutable] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1486), + [sym_noexcept] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_DASH_GT] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(1486), }, [2975] = { - [anon_sym_LPAREN2] = ACTIONS(8139), - [anon_sym_final] = ACTIONS(8139), - [sym_noexcept] = ACTIONS(8139), - [anon_sym_mutable] = ACTIONS(8139), - [anon_sym_COMMA] = ACTIONS(8139), - [anon_sym__Atomic] = ACTIONS(8139), - [anon_sym_const] = ACTIONS(8141), - [anon_sym_GT2] = ACTIONS(8139), - [anon_sym_LBRACK] = ACTIONS(8139), - [anon_sym_constexpr] = ACTIONS(8139), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8139), - [anon_sym_override] = ACTIONS(8139), - [anon_sym_SEMI] = ACTIONS(8139), - [anon_sym_COLON] = ACTIONS(8139), - [anon_sym_explicit] = ACTIONS(8139), - [anon_sym_RPAREN] = ACTIONS(8139), - [anon_sym_DASH_GT] = ACTIONS(8139), - [anon_sym_EQ] = ACTIONS(8139), - [anon_sym_restrict] = ACTIONS(8139), - [anon_sym_LBRACE] = ACTIONS(8139), + [sym_virtual_specifier] = STATE(2704), + [sym_template_argument_list] = STATE(312), + [sym_field_declaration_list] = STATE(2705), + [sym_base_class_clause] = STATE(2706), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1490), + [anon_sym_mutable] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_explicit] = ACTIONS(1490), + [sym_noexcept] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(1490), }, [2976] = { - [aux_sym_parameter_list_repeat1] = STATE(2976), - [anon_sym_COMMA] = ACTIONS(8143), - [anon_sym_RPAREN] = ACTIONS(8137), - [sym_comment] = ACTIONS(3), + [sym_virtual_specifier] = STATE(2704), + [sym_field_declaration_list] = STATE(2705), + [sym_base_class_clause] = STATE(2706), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1490), + [anon_sym_mutable] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_explicit] = ACTIONS(1490), + [sym_noexcept] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(1490), }, [2977] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(3755), - [sym_storage_class_specifier] = STATE(3755), - [sym_type_qualifier] = STATE(3755), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [sym_operator_name] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_restrict] = ACTIONS(11), + [aux_sym_sized_type_specifier_repeat1] = STATE(2977), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(8161), + [anon_sym_long] = ACTIONS(8161), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(8161), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(8161), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), }, [2978] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(3756), - [sym_storage_class_specifier] = STATE(3756), - [sym_type_qualifier] = STATE(3756), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [sym_operator_name] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_restrict] = ACTIONS(11), + [sym_template_function] = STATE(3742), + [sym__expression] = STATE(3742), + [sym_logical_expression] = STATE(3742), + [sym_bitwise_expression] = STATE(3742), + [sym_cast_expression] = STATE(3742), + [sym_delete_expression] = STATE(3742), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3742), + [sym_lambda_expression] = STATE(3742), + [sym_char_literal] = STATE(3742), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(3742), + [sym_equality_expression] = STATE(3742), + [sym_relational_expression] = STATE(3742), + [sym_sizeof_expression] = STATE(3742), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(3742), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3742), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3742), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3742), + [sym_math_expression] = STATE(3742), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3742), + [sym_raw_string_literal] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(8166), + [sym_null] = ACTIONS(8166), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(8164), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(8166), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, [2979] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2979), - [anon_sym_LPAREN2] = ACTIONS(2077), - [sym_operator_name] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(8146), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(8146), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(8146), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(8146), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), + [sym_new_declarator] = STATE(1566), + [sym_argument_list] = STATE(1565), + [sym_initializer_list] = STATE(1565), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, [2980] = { - [sym__abstract_declarator] = STATE(2990), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(2990), - [sym_function_declarator] = STATE(3757), - [sym_destructor_name] = STATE(3757), - [sym__declarator] = STATE(3757), - [sym_abstract_pointer_declarator] = STATE(2990), - [sym_array_declarator] = STATE(3757), - [sym_parameter_list] = STATE(1982), - [sym_pointer_declarator] = STATE(3757), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(2990), - [sym_abstract_function_declarator] = STATE(2990), - [sym_template_function] = STATE(3757), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(3757), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(6172), - [sym_operator_name] = ACTIONS(8149), - [sym_comment] = ACTIONS(3), + [sym_template_function] = STATE(3743), + [sym__expression] = STATE(3743), + [sym_logical_expression] = STATE(3743), + [sym_bitwise_expression] = STATE(3743), + [sym_cast_expression] = STATE(3743), + [sym_delete_expression] = STATE(3743), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(3743), + [sym_lambda_expression] = STATE(3743), + [sym_char_literal] = STATE(3743), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3743), + [sym_equality_expression] = STATE(3743), + [sym_relational_expression] = STATE(3743), + [sym_sizeof_expression] = STATE(3743), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3743), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(3743), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3743), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(3743), + [sym_math_expression] = STATE(3743), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(3743), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(1855), + [sym_true] = ACTIONS(8170), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [sym_null] = ACTIONS(8170), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8168), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8170), + [sym_nullptr] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), }, [2981] = { - [sym__abstract_declarator] = STATE(2993), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(2993), - [sym_function_declarator] = STATE(3758), - [sym_destructor_name] = STATE(3758), - [sym__declarator] = STATE(3758), - [sym_abstract_pointer_declarator] = STATE(2993), - [sym_array_declarator] = STATE(3758), - [sym_type_qualifier] = STATE(3759), - [sym_parameter_list] = STATE(1982), - [sym_pointer_declarator] = STATE(3758), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(2993), - [sym_abstract_function_declarator] = STATE(2993), - [sym_template_function] = STATE(3758), - [aux_sym_type_definition_repeat1] = STATE(3759), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(3758), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(2832), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(6172), - [sym_operator_name] = ACTIONS(8151), - [anon_sym_restrict] = ACTIONS(11), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2982] = { - [sym_parameter_list] = STATE(3760), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(7826), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(7826), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_COLON] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2983] = { - [sym_parameter_list] = STATE(2999), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(7826), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(7826), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2984] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2984), - [sym_storage_class_specifier] = STATE(2984), - [sym_type_qualifier] = STATE(2984), - [anon_sym_LPAREN2] = ACTIONS(1679), - [sym_operator_name] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_COMMA] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym_EQ] = ACTIONS(1679), - [anon_sym_restrict] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [sym_identifier] = ACTIONS(1681), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2985] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(2984), - [sym_storage_class_specifier] = STATE(2984), - [sym_type_qualifier] = STATE(2984), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), + [sym_template_argument_list] = STATE(1953), + [anon_sym_LT] = ACTIONS(8172), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3708), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3708), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_EQ] = ACTIONS(3708), - [sym_identifier] = ACTIONS(3710), - [sym_operator_name] = ACTIONS(3708), - [anon_sym_inline] = ACTIONS(63), }, [2986] = { - [anon_sym_COMMA] = ACTIONS(8153), - [anon_sym_RPAREN] = ACTIONS(8153), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_COLON] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2987] = { - [sym__abstract_declarator] = STATE(2990), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(2990), - [sym_function_declarator] = STATE(2988), - [sym_destructor_name] = STATE(2988), - [sym__declarator] = STATE(2988), - [sym_abstract_pointer_declarator] = STATE(2990), - [sym_array_declarator] = STATE(2988), - [sym_parameter_list] = STATE(1982), - [sym_pointer_declarator] = STATE(2988), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(2990), - [sym_abstract_function_declarator] = STATE(2990), - [sym_template_function] = STATE(2988), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(2988), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [sym_operator_name] = ACTIONS(6185), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3909), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2988] = { - [sym_parameter_list] = STATE(2996), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(3940), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2989] = { - [anon_sym_COMMA] = ACTIONS(8155), - [anon_sym_RPAREN] = ACTIONS(8155), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2990] = { - [sym_parameter_list] = STATE(2999), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(4989), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2991] = { - [sym_parameter_list] = STATE(2996), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_COMMA] = ACTIONS(2756), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(8174), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2992] = { - [sym__abstract_declarator] = STATE(3763), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(3763), - [sym_function_declarator] = STATE(3761), - [sym_destructor_name] = STATE(3761), - [sym__declarator] = STATE(3761), - [sym_abstract_pointer_declarator] = STATE(3763), - [sym_array_declarator] = STATE(3761), - [sym_type_qualifier] = STATE(3762), - [sym_parameter_list] = STATE(1982), - [sym_pointer_declarator] = STATE(3761), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(3763), - [sym_abstract_function_declarator] = STATE(3763), - [sym_template_function] = STATE(3761), - [aux_sym_type_definition_repeat1] = STATE(3762), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(3761), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [sym_operator_name] = ACTIONS(8157), - [anon_sym_restrict] = ACTIONS(11), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(8176), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2993] = { - [sym_parameter_list] = STATE(2999), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [2994] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7839), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(7839), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_COLON] = ACTIONS(2204), + [anon_sym_CARET] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_LT_LT] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2204), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_DASH_GT] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_GT_GT] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), }, [2995] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3764), - [sym_logical_expression] = STATE(3764), - [sym_bitwise_expression] = STATE(3764), - [sym_cast_expression] = STATE(3764), - [sym_new_expression] = STATE(3764), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(3764), - [sym_char_literal] = STATE(3764), - [sym_template_function] = STATE(3764), - [sym_conditional_expression] = STATE(3764), - [sym_equality_expression] = STATE(3764), - [sym_relational_expression] = STATE(3764), - [sym_delete_expression] = STATE(3764), - [sym_sizeof_expression] = STATE(3764), - [sym_parenthesized_expression] = STATE(3764), - [sym_lambda_expression] = STATE(3764), - [sym_concatenated_string] = STATE(3764), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(3764), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(3764), - [sym_math_expression] = STATE(3764), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8159), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(8161), - [sym_null] = ACTIONS(8161), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8159), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(8161), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(8161), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [aux_sym_template_argument_list_repeat1] = STATE(3746), + [sym_argument_list] = STATE(1160), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_GT] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2305), + [anon_sym_DOT] = ACTIONS(2307), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_PERCENT] = ACTIONS(2311), + [anon_sym_EQ_EQ] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_GT2] = ACTIONS(8178), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_QMARK] = ACTIONS(2323), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_GT_EQ] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2311), + [anon_sym_SLASH] = ACTIONS(2325), + [anon_sym_LT_EQ] = ACTIONS(2327), + [anon_sym_BANG_EQ] = ACTIONS(2313), + [anon_sym_AMP_AMP] = ACTIONS(2329), + [anon_sym_DASH_GT] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_GT_GT] = ACTIONS(2333), + [anon_sym_DASH_DASH] = ACTIONS(2331), }, [2996] = { - [sym_virtual_specifier] = STATE(3766), - [aux_sym_function_declarator_repeat1] = STATE(3766), - [sym_trailing_return_type] = STATE(3766), - [sym_type_qualifier] = STATE(3766), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(8163), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1062), + [aux_sym_template_argument_list_repeat1] = STATE(3748), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_GT2] = ACTIONS(8180), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_DASH_GT] = ACTIONS(8165), - [anon_sym_EQ] = ACTIONS(1841), - [anon_sym_restrict] = ACTIONS(1062), }, [2997] = { - [sym_union_specifier] = STATE(3769), - [sym_macro_type_specifier] = STATE(3769), - [sym_class_specifier] = STATE(3769), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(3769), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(3769), - [aux_sym_sized_type_specifier_repeat1] = STATE(3768), - [sym_struct_specifier] = STATE(3769), - [sym_enum_specifier] = STATE(3769), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(3769), - [anon_sym_unsigned] = ACTIONS(8167), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(8169), - [anon_sym_signed] = ACTIONS(8167), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(8167), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(8171), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(8167), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(8169), + [sym_string_literal] = STATE(2997), + [aux_sym_concatenated_string_repeat1] = STATE(2997), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3890), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, [2998] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(3770), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3770), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(8173), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(6199), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LPAREN2] = ACTIONS(8182), + [anon_sym_COMMA] = ACTIONS(8182), + [anon_sym_SEMI] = ACTIONS(8182), + [anon_sym_COLON] = ACTIONS(8182), + [anon_sym_GT2] = ACTIONS(8182), + [anon_sym_LBRACK] = ACTIONS(8182), + [anon_sym_RPAREN] = ACTIONS(8182), + [anon_sym_EQ] = ACTIONS(8182), + [anon_sym_LBRACE] = ACTIONS(8182), [sym_comment] = ACTIONS(3), }, [2999] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(3771), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3771), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(8175), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(6199), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(2999), + [anon_sym_LPAREN2] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_final] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(8184), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(8184), + [sym_noexcept] = ACTIONS(1783), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(8184), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(8184), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), }, [3000] = { - [anon_sym_LPAREN2] = ACTIONS(8177), - [anon_sym_COMMA] = ACTIONS(8177), - [anon_sym_SEMI] = ACTIONS(8177), - [anon_sym_COLON] = ACTIONS(8177), - [anon_sym_GT2] = ACTIONS(8177), - [anon_sym_LBRACK] = ACTIONS(8177), - [anon_sym_RPAREN] = ACTIONS(8177), - [anon_sym_EQ] = ACTIONS(8177), - [anon_sym_LBRACE] = ACTIONS(8177), - [sym_comment] = ACTIONS(3), + [sym_abstract_reference_declarator] = STATE(3749), + [sym_abstract_array_declarator] = STATE(3749), + [sym_abstract_pointer_declarator] = STATE(3749), + [sym_parameter_list] = STATE(3002), + [sym_abstract_function_declarator] = STATE(3749), + [sym__abstract_declarator] = STATE(3749), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(6282), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(6284), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2835), }, [3001] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3001), - [anon_sym_LPAREN2] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(8179), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(8179), - [sym_noexcept] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(8179), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_COLON] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(8179), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), + [sym_abstract_reference_declarator] = STATE(3751), + [aux_sym_type_definition_repeat1] = STATE(3750), + [sym_abstract_array_declarator] = STATE(3751), + [sym_parameter_list] = STATE(3002), + [sym_abstract_function_declarator] = STATE(3751), + [sym_abstract_pointer_declarator] = STATE(3751), + [sym_type_qualifier] = STATE(3750), + [sym__abstract_declarator] = STATE(3751), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(6282), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_COLON] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(6284), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(2837), }, [3002] = { - [sym_parameter_list] = STATE(3004), - [sym_abstract_array_declarator] = STATE(3772), - [sym_abstract_pointer_declarator] = STATE(3772), - [sym_abstract_reference_declarator] = STATE(3772), - [sym_abstract_function_declarator] = STATE(3772), - [sym__abstract_declarator] = STATE(3772), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6214), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(6216), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(6218), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3752), + [sym_type_qualifier] = STATE(3752), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(8189), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_COLON] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1740), }, [3003] = { - [sym_abstract_array_declarator] = STATE(3774), - [sym_parameter_list] = STATE(3004), - [sym_abstract_reference_declarator] = STATE(3774), - [sym_abstract_function_declarator] = STATE(3774), - [aux_sym_type_definition_repeat1] = STATE(3773), - [sym_abstract_pointer_declarator] = STATE(3774), - [sym_type_qualifier] = STATE(3773), - [sym__abstract_declarator] = STATE(3774), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6214), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(6216), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_AMP_AMP] = ACTIONS(6218), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(2832), + [sym_parameter_list] = STATE(3753), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_COLON] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_EQ] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), + [anon_sym_LBRACE] = ACTIONS(8038), }, [3004] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(3775), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3775), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(8184), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_COLON] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(2059), - }, - [3005] = { - [sym_parameter_list] = STATE(3776), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_COLON] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_EQ] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), - [anon_sym_LBRACE] = ACTIONS(8186), - }, - [3006] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8190), - [anon_sym_RBRACK] = ACTIONS(8190), - }, - [3007] = { - [anon_sym_LPAREN2] = ACTIONS(8192), - [anon_sym_EQ] = ACTIONS(8192), - [anon_sym_LBRACE] = ACTIONS(8192), - [sym_comment] = ACTIONS(3), - }, - [3008] = { - [aux_sym_structured_binding_declarator_repeat1] = STATE(3008), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8194), - [anon_sym_RBRACK] = ACTIONS(8190), - }, - [3009] = { - [anon_sym_DASH] = ACTIONS(8197), - [sym_raw_string_literal] = ACTIONS(8199), - [sym_true] = ACTIONS(8197), - [anon_sym_mutable] = ACTIONS(8197), - [sym_null] = ACTIONS(8197), - [anon_sym_break] = ACTIONS(8197), - [anon_sym_BANG] = ACTIONS(8199), - [anon_sym_sizeof] = ACTIONS(8197), - [anon_sym_volatile] = ACTIONS(8197), - [anon_sym_PLUS] = ACTIONS(8197), - [anon_sym_typedef] = ACTIONS(8197), - [anon_sym_switch] = ACTIONS(8197), - [anon_sym_explicit] = ACTIONS(8197), - [sym_identifier] = ACTIONS(8197), - [anon_sym_delete] = ACTIONS(8197), - [anon_sym_continue] = ACTIONS(8197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8197), - [anon_sym__Atomic] = ACTIONS(8197), - [sym_number_literal] = ACTIONS(8199), - [anon_sym_extern] = ACTIONS(8197), - [anon_sym_enum] = ACTIONS(8197), - [anon_sym_constexpr] = ACTIONS(8197), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8199), - [anon_sym_namespace] = ACTIONS(8197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8197), - [anon_sym_SQUOTE] = ACTIONS(8199), - [anon_sym_LBRACE] = ACTIONS(8199), - [anon_sym_DASH_DASH] = ACTIONS(8199), - [anon_sym_LPAREN2] = ACTIONS(8199), - [anon_sym_struct] = ACTIONS(8197), - [sym_auto] = ACTIONS(8197), - [anon_sym_signed] = ACTIONS(8197), - [anon_sym_long] = ACTIONS(8197), - [anon_sym_COLON_COLON] = ACTIONS(8199), - [anon_sym_using] = ACTIONS(8197), - [sym_preproc_directive] = ACTIONS(8197), - [aux_sym_preproc_if_token1] = ACTIONS(8197), - [anon_sym_AMP] = ACTIONS(8197), - [anon_sym_static] = ACTIONS(8197), - [anon_sym_RBRACE] = ACTIONS(8199), - [anon_sym_STAR] = ACTIONS(8199), - [anon_sym_union] = ACTIONS(8197), - [anon_sym_typename] = ACTIONS(8197), - [anon_sym_short] = ACTIONS(8197), - [anon_sym_new] = ACTIONS(8197), - [anon_sym_goto] = ACTIONS(8197), - [sym_operator_name] = ACTIONS(8199), - [anon_sym_while] = ACTIONS(8197), - [anon_sym_try] = ACTIONS(8197), - [anon_sym_for] = ACTIONS(8197), - [aux_sym_preproc_include_token1] = ACTIONS(8197), - [anon_sym_register] = ACTIONS(8197), - [anon_sym_DQUOTE] = ACTIONS(8199), - [anon_sym_const] = ACTIONS(8197), - [anon_sym_LBRACK] = ACTIONS(8197), - [anon_sym_class] = ACTIONS(8197), - [anon_sym_if] = ACTIONS(8197), - [sym_primitive_type] = ACTIONS(8197), - [sym_false] = ACTIONS(8197), - [sym_nullptr] = ACTIONS(8197), - [anon_sym_do] = ACTIONS(8197), - [anon_sym_template] = ACTIONS(8197), - [anon_sym_return] = ACTIONS(8197), - [anon_sym_TILDE] = ACTIONS(8199), - [anon_sym_SEMI] = ACTIONS(8199), - [ts_builtin_sym_end] = ACTIONS(8199), - [aux_sym_preproc_def_token1] = ACTIONS(8197), - [anon_sym_AMP_AMP] = ACTIONS(8199), - [anon_sym_inline] = ACTIONS(8197), - [anon_sym_PLUS_PLUS] = ACTIONS(8199), - [anon_sym_restrict] = ACTIONS(8197), - }, - [3010] = { - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_EQ] = ACTIONS(1137), - [anon_sym_inline] = ACTIONS(1137), - [anon_sym_restrict] = ACTIONS(1137), - [anon_sym_mutable] = ACTIONS(1137), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_explicit] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [sym_operator_name] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1133), - [anon_sym_register] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1141), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym__Atomic] = ACTIONS(1137), - [anon_sym_constexpr] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_DASH_GT] = ACTIONS(1141), - [anon_sym_GT_GT] = ACTIONS(1141), - [anon_sym_DASH_DASH] = ACTIONS(1141), - }, - [3011] = { - [sym_destructor_name] = STATE(399), - [sym_identifier] = ACTIONS(8201), - [sym_operator_name] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - }, - [3012] = { - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_GT_GT] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(785), - [anon_sym_mutable] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(785), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(787), - [anon_sym_volatile] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_explicit] = ACTIONS(787), - [sym_identifier] = ACTIONS(787), - [sym_operator_name] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_register] = ACTIONS(787), - [anon_sym__Atomic] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_extern] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(780), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_constexpr] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_inline] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_restrict] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(780), - }, - [3013] = { - [sym_destructor_name] = STATE(938), - [sym_identifier] = ACTIONS(8203), - [sym_operator_name] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - }, - [3014] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(3025), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(3015), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -125165,20 +125119,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -125195,157 +125149,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [3015] = { - [sym_destructor_name] = STATE(166), + [3005] = { + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(640), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(6290), + [sym_identifier] = ACTIONS(642), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(6338), }, - [3016] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(190), - [sym_logical_expression] = STATE(190), - [sym_bitwise_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_new_expression] = STATE(190), - [sym_field_expression] = STATE(190), - [sym_compound_literal_expression] = STATE(190), - [sym_char_literal] = STATE(190), - [sym_template_function] = STATE(190), - [sym_conditional_expression] = STATE(190), - [sym_equality_expression] = STATE(190), - [sym_relational_expression] = STATE(190), - [sym_delete_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_parenthesized_expression] = STATE(190), - [sym_lambda_expression] = STATE(190), - [sym_concatenated_string] = STATE(190), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_pointer_expression] = STATE(190), - [sym_shift_expression] = STATE(190), - [sym_math_expression] = STATE(190), - [sym_call_expression] = STATE(190), - [sym_lambda_capture_specifier] = STATE(196), + [3006] = { + [sym_template_function] = STATE(191), + [sym__expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_delete_expression] = STATE(191), + [sym_field_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_lambda_expression] = STATE(191), + [sym_char_literal] = STATE(191), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(330), - [sym_null] = ACTIONS(330), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(330), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(191), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(191), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_call_expression] = STATE(191), + [sym_new_expression] = STATE(191), + [sym_raw_string_literal] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(332), + [sym_null] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3017] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(303), - [sym_logical_expression] = STATE(303), - [sym_bitwise_expression] = STATE(303), - [sym_cast_expression] = STATE(303), - [sym_new_expression] = STATE(303), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(303), - [sym_char_literal] = STATE(303), - [sym_template_function] = STATE(303), - [sym_conditional_expression] = STATE(303), - [sym_equality_expression] = STATE(303), - [sym_relational_expression] = STATE(303), - [sym_delete_expression] = STATE(303), - [sym_sizeof_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_lambda_expression] = STATE(303), - [sym_concatenated_string] = STATE(303), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(303), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(303), - [sym_math_expression] = STATE(303), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(508), - [sym_null] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(506), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [3007] = { + [sym_template_function] = STATE(305), + [sym__expression] = STATE(305), + [sym_logical_expression] = STATE(305), + [sym_bitwise_expression] = STATE(305), + [sym_cast_expression] = STATE(305), + [sym_delete_expression] = STATE(305), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(305), + [sym_lambda_expression] = STATE(305), + [sym_char_literal] = STATE(305), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(305), + [sym_equality_expression] = STATE(305), + [sym_relational_expression] = STATE(305), + [sym_sizeof_expression] = STATE(305), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(305), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(305), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(305), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(305), + [sym_math_expression] = STATE(305), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(305), + [sym_raw_string_literal] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(512), + [sym_null] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [3018] = { - [sym_template_argument_list] = STATE(377), + [3008] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(6280), + [anon_sym_EQ] = ACTIONS(6328), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(6278), - [anon_sym_LT_LT_EQ] = ACTIONS(6278), - [anon_sym_PERCENT_EQ] = ACTIONS(6278), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_EQ] = ACTIONS(6326), + [anon_sym_PERCENT_EQ] = ACTIONS(6326), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(6278), + [anon_sym_CARET_EQ] = ACTIONS(6326), [anon_sym_AMP] = ACTIONS(163), [anon_sym_RBRACE] = ACTIONS(165), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(6278), - [anon_sym_PLUS_EQ] = ACTIONS(6278), + [anon_sym_SLASH_EQ] = ACTIONS(6326), + [anon_sym_PLUS_EQ] = ACTIONS(6326), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(6278), - [anon_sym_GT_GT_EQ] = ACTIONS(6278), + [anon_sym_PIPE_EQ] = ACTIONS(6326), + [anon_sym_GT_GT_EQ] = ACTIONS(6326), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), @@ -125354,60 +125308,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(6278), + [anon_sym_DASH_EQ] = ACTIONS(6326), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(6278), + [anon_sym_AMP_EQ] = ACTIONS(6326), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [3019] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(147), - [sym_logical_expression] = STATE(147), - [sym_bitwise_expression] = STATE(147), - [sym_cast_expression] = STATE(147), - [sym_new_expression] = STATE(147), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(147), - [sym_type_descriptor] = STATE(3781), - [sym_char_literal] = STATE(147), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(147), - [sym_conditional_expression] = STATE(147), - [sym_equality_expression] = STATE(147), - [sym_relational_expression] = STATE(147), - [sym_delete_expression] = STATE(147), - [sym_sizeof_expression] = STATE(147), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(147), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(147), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(147), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(153), - [sym_assignment_expression] = STATE(147), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(147), - [sym_math_expression] = STATE(147), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), + [3009] = { + [sym_template_function] = STATE(148), + [sym__expression] = STATE(148), + [sym_logical_expression] = STATE(148), + [sym_bitwise_expression] = STATE(148), + [sym_cast_expression] = STATE(148), + [sym_delete_expression] = STATE(148), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(148), + [sym_char_literal] = STATE(148), + [sym_lambda_expression] = STATE(148), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(3756), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(152), + [sym_conditional_expression] = STATE(148), + [sym_equality_expression] = STATE(148), + [sym_relational_expression] = STATE(148), + [sym_sizeof_expression] = STATE(148), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(148), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(148), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(148), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(148), + [sym_math_expression] = STATE(148), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(148), + [sym_enum_specifier] = STATE(155), [sym_raw_string_literal] = ACTIONS(262), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), @@ -125415,20 +125369,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(11), [sym_null] = ACTIONS(264), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), @@ -125445,379 +125399,380 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(270), [sym_nullptr] = ACTIONS(264), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [3020] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3010] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3021] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3782), - [sym_logical_expression] = STATE(3782), - [sym_bitwise_expression] = STATE(3782), - [sym_cast_expression] = STATE(3782), - [sym_new_expression] = STATE(3782), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3782), - [sym_char_literal] = STATE(3782), - [sym_template_function] = STATE(3782), - [sym_conditional_expression] = STATE(3782), - [sym_equality_expression] = STATE(3782), - [sym_relational_expression] = STATE(3782), - [sym_delete_expression] = STATE(3782), - [sym_sizeof_expression] = STATE(3782), - [sym_parenthesized_expression] = STATE(3782), - [sym_lambda_expression] = STATE(3782), - [sym_concatenated_string] = STATE(3782), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3782), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3782), - [sym_math_expression] = STATE(3782), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8209), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(8211), - [sym_null] = ACTIONS(8211), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8209), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(8211), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(8211), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [3011] = { + [sym_template_function] = STATE(3757), + [sym__expression] = STATE(3757), + [sym_logical_expression] = STATE(3757), + [sym_bitwise_expression] = STATE(3757), + [sym_cast_expression] = STATE(3757), + [sym_delete_expression] = STATE(3757), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3757), + [sym_lambda_expression] = STATE(3757), + [sym_char_literal] = STATE(3757), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_relational_expression] = STATE(3757), + [sym_sizeof_expression] = STATE(3757), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3757), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3757), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3757), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3757), + [sym_math_expression] = STATE(3757), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3757), + [sym_raw_string_literal] = ACTIONS(8197), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(8199), + [sym_null] = ACTIONS(8199), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8197), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(8199), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(8199), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [3022] = { - [sym_template_type] = STATE(239), + [3012] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(8213), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(8201), }, - [3023] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(6338), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3013] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(6386), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3024] = { - [anon_sym_DASH] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [anon_sym_delete] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym_namespace] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [anon_sym_while] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [anon_sym_const] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_nullptr] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(962), + [3014] = { + [anon_sym_DASH] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(968), + [sym_true] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [sym_null] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(966), + [sym_number_literal] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_namespace] = ACTIONS(966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [anon_sym_while] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [aux_sym_preproc_include_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_const] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_nullptr] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(966), }, - [3025] = { - [anon_sym_RPAREN] = ACTIONS(8215), + [3015] = { + [anon_sym_RPAREN] = ACTIONS(8203), [sym_comment] = ACTIONS(3), }, - [3026] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3786), - [sym_logical_expression] = STATE(3786), - [sym_bitwise_expression] = STATE(3786), - [sym_cast_expression] = STATE(3786), - [sym_new_expression] = STATE(3786), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3786), - [sym_char_literal] = STATE(3786), - [sym_template_function] = STATE(3786), - [sym_conditional_expression] = STATE(3786), - [sym_equality_expression] = STATE(3786), - [sym_relational_expression] = STATE(3786), - [sym_delete_expression] = STATE(3786), - [sym_sizeof_expression] = STATE(3786), - [sym_parenthesized_expression] = STATE(3786), - [sym_lambda_expression] = STATE(3786), - [sym_concatenated_string] = STATE(3786), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3786), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3786), - [sym_math_expression] = STATE(3786), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8217), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(8219), - [sym_null] = ACTIONS(8219), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8217), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(8221), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(8219), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(8219), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), + [3016] = { + [sym_template_function] = STATE(3761), + [sym__expression] = STATE(3761), + [sym_logical_expression] = STATE(3761), + [sym_bitwise_expression] = STATE(3761), + [sym_cast_expression] = STATE(3761), + [sym_delete_expression] = STATE(3761), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3761), + [sym_lambda_expression] = STATE(3761), + [sym_char_literal] = STATE(3761), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3761), + [sym_equality_expression] = STATE(3761), + [sym_relational_expression] = STATE(3761), + [sym_sizeof_expression] = STATE(3761), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3761), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3761), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3761), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3761), + [sym_math_expression] = STATE(3761), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3761), + [sym_raw_string_literal] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(8207), + [sym_null] = ACTIONS(8207), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8205), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(8209), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(8207), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(8207), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [3027] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_destructor_name] = STATE(148), - [sym__declarator] = STATE(148), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_array_declarator] = STATE(148), - [sym_char_literal] = STATE(640), - [sym_type_descriptor] = STATE(3787), - [sym_dependent_type] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_type_qualifier] = STATE(154), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_identifier] = STATE(50), - [sym_scoped_type_identifier] = STATE(61), - [sym_function_declarator] = STATE(148), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_string_literal] = STATE(151), - [sym_delete_expression] = STATE(640), - [sym_lambda_expression] = STATE(640), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_pointer_declarator] = STATE(148), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_reference_declarator] = STATE(148), + [3017] = { + [sym_template_function] = STATE(57), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(149), + [sym_scoped_type_identifier] = STATE(48), + [sym_field_expression] = STATE(150), + [sym_array_declarator] = STATE(149), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_lambda_expression] = STATE(641), + [sym_type_qualifier] = STATE(156), + [sym_type_descriptor] = STATE(3762), + [sym_structured_binding_declarator] = STATE(149), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_function_declarator] = STATE(149), + [sym_concatenated_string] = STATE(641), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym_string_literal] = STATE(154), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_reference_declarator] = STATE(149), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_destructor_name] = STATE(149), + [sym_call_expression] = STATE(150), + [sym_pointer_declarator] = STATE(149), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), [anon_sym_LPAREN2] = ACTIONS(258), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_raw_string_literal] = ACTIONS(1174), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_mutable] = ACTIONS(11), - [sym_true] = ACTIONS(1176), - [sym_null] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), @@ -125838,340 +125793,340 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(290), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [3028] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(643), - [sym_logical_expression] = STATE(643), - [sym_bitwise_expression] = STATE(643), - [sym_cast_expression] = STATE(643), - [sym_new_expression] = STATE(643), - [sym_field_expression] = STATE(643), - [sym_compound_literal_expression] = STATE(643), - [sym_char_literal] = STATE(643), - [sym_template_function] = STATE(643), - [sym_conditional_expression] = STATE(643), - [sym_equality_expression] = STATE(643), - [sym_relational_expression] = STATE(643), - [sym_delete_expression] = STATE(643), - [sym_sizeof_expression] = STATE(643), - [sym_parenthesized_expression] = STATE(643), - [sym_lambda_expression] = STATE(643), - [sym_concatenated_string] = STATE(643), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(643), - [sym_assignment_expression] = STATE(643), - [sym_pointer_expression] = STATE(643), - [sym_shift_expression] = STATE(643), - [sym_math_expression] = STATE(643), - [sym_call_expression] = STATE(643), - [sym_lambda_capture_specifier] = STATE(196), + [3018] = { + [sym_template_function] = STATE(644), + [sym__expression] = STATE(644), + [sym_logical_expression] = STATE(644), + [sym_bitwise_expression] = STATE(644), + [sym_cast_expression] = STATE(644), + [sym_delete_expression] = STATE(644), + [sym_field_expression] = STATE(644), + [sym_compound_literal_expression] = STATE(644), + [sym_lambda_expression] = STATE(644), + [sym_char_literal] = STATE(644), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(644), + [sym_equality_expression] = STATE(644), + [sym_relational_expression] = STATE(644), + [sym_sizeof_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(1180), - [sym_null] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(644), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(644), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(644), + [sym_pointer_expression] = STATE(644), + [sym_shift_expression] = STATE(644), + [sym_math_expression] = STATE(644), + [sym_call_expression] = STATE(644), + [sym_new_expression] = STATE(644), + [sym_raw_string_literal] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3029] = { - [sym_union_specifier] = STATE(3790), - [sym_macro_type_specifier] = STATE(3790), - [sym_class_specifier] = STATE(3790), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(3790), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(3790), - [aux_sym_sized_type_specifier_repeat1] = STATE(3789), - [sym_argument_list] = STATE(3791), - [sym_enum_specifier] = STATE(3790), - [sym_struct_specifier] = STATE(3790), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(3790), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(8223), - [anon_sym_signed] = ACTIONS(8225), - [anon_sym_long] = ACTIONS(8225), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(8223), - [anon_sym_unsigned] = ACTIONS(8225), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(8227), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(8225), + [3019] = { + [sym_union_specifier] = STATE(3765), + [sym_macro_type_specifier] = STATE(3765), + [sym_class_specifier] = STATE(3765), + [aux_sym_sized_type_specifier_repeat1] = STATE(3764), + [sym_sized_type_specifier] = STATE(3765), + [sym__type_specifier] = STATE(3765), + [sym_argument_list] = STATE(3766), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(3765), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(3765), + [sym_struct_specifier] = STATE(3765), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(8211), + [anon_sym_signed] = ACTIONS(8213), + [anon_sym_long] = ACTIONS(8213), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(8211), + [anon_sym_unsigned] = ACTIONS(8213), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(8215), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(8213), }, - [3030] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3793), - [sym_logical_expression] = STATE(3793), - [sym_bitwise_expression] = STATE(3793), - [sym_cast_expression] = STATE(3793), - [sym_new_expression] = STATE(3793), - [sym_field_expression] = STATE(3793), - [sym_compound_literal_expression] = STATE(3793), - [sym_char_literal] = STATE(3793), - [sym_template_function] = STATE(3793), - [sym_conditional_expression] = STATE(3793), - [sym_equality_expression] = STATE(3793), - [sym_relational_expression] = STATE(3793), - [sym_delete_expression] = STATE(3793), - [sym_sizeof_expression] = STATE(3793), - [sym_parenthesized_expression] = STATE(3793), - [sym_lambda_expression] = STATE(3793), - [sym_concatenated_string] = STATE(3793), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3793), - [sym_assignment_expression] = STATE(3793), - [sym_pointer_expression] = STATE(3793), - [sym_shift_expression] = STATE(3793), - [sym_math_expression] = STATE(3793), - [sym_call_expression] = STATE(3793), - [sym_lambda_capture_specifier] = STATE(196), + [3020] = { + [sym_template_function] = STATE(3768), + [sym__expression] = STATE(3768), + [sym_logical_expression] = STATE(3768), + [sym_bitwise_expression] = STATE(3768), + [sym_cast_expression] = STATE(3768), + [sym_delete_expression] = STATE(3768), + [sym_field_expression] = STATE(3768), + [sym_compound_literal_expression] = STATE(3768), + [sym_lambda_expression] = STATE(3768), + [sym_char_literal] = STATE(3768), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3768), + [sym_equality_expression] = STATE(3768), + [sym_relational_expression] = STATE(3768), + [sym_sizeof_expression] = STATE(3768), + [sym_subscript_expression] = STATE(3768), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8229), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(8231), - [sym_null] = ACTIONS(8231), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8229), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(8233), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(8231), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(8231), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(3768), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3768), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3768), + [sym_pointer_expression] = STATE(3768), + [sym_shift_expression] = STATE(3768), + [sym_math_expression] = STATE(3768), + [sym_call_expression] = STATE(3768), + [sym_new_expression] = STATE(3768), + [sym_raw_string_literal] = ACTIONS(8217), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(8219), + [sym_null] = ACTIONS(8219), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8217), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(8219), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(8219), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3031] = { - [sym_destructor_name] = STATE(662), + [3021] = { + [sym_destructor_name] = STATE(663), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1210), - [sym_operator_name] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_delete] = ACTIONS(8235), + [sym_identifier] = ACTIONS(1216), + [sym_operator_name] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(8223), }, - [3032] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(665), - [sym_logical_expression] = STATE(665), - [sym_bitwise_expression] = STATE(665), - [sym_cast_expression] = STATE(665), - [sym_new_expression] = STATE(665), - [sym_field_expression] = STATE(665), - [sym_compound_literal_expression] = STATE(665), - [sym_char_literal] = STATE(665), - [sym_template_function] = STATE(665), - [sym_conditional_expression] = STATE(665), - [sym_equality_expression] = STATE(665), - [sym_relational_expression] = STATE(665), - [sym_delete_expression] = STATE(665), - [sym_sizeof_expression] = STATE(665), - [sym_parenthesized_expression] = STATE(665), - [sym_lambda_expression] = STATE(665), - [sym_concatenated_string] = STATE(665), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(665), - [sym_assignment_expression] = STATE(665), - [sym_pointer_expression] = STATE(665), - [sym_shift_expression] = STATE(665), - [sym_math_expression] = STATE(665), - [sym_call_expression] = STATE(665), - [sym_lambda_capture_specifier] = STATE(196), + [3022] = { + [sym_template_function] = STATE(666), + [sym__expression] = STATE(666), + [sym_logical_expression] = STATE(666), + [sym_bitwise_expression] = STATE(666), + [sym_cast_expression] = STATE(666), + [sym_delete_expression] = STATE(666), + [sym_field_expression] = STATE(666), + [sym_compound_literal_expression] = STATE(666), + [sym_lambda_expression] = STATE(666), + [sym_char_literal] = STATE(666), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(666), + [sym_equality_expression] = STATE(666), + [sym_relational_expression] = STATE(666), + [sym_sizeof_expression] = STATE(666), + [sym_subscript_expression] = STATE(666), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(1220), - [sym_null] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), - }, - [3033] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3796), - [sym_logical_expression] = STATE(3796), - [sym_bitwise_expression] = STATE(3796), - [sym_cast_expression] = STATE(3796), - [sym_new_expression] = STATE(3796), - [sym_field_expression] = STATE(3796), - [sym_compound_literal_expression] = STATE(3796), - [sym_char_literal] = STATE(3796), - [sym_template_function] = STATE(3796), - [sym_conditional_expression] = STATE(3796), - [sym_equality_expression] = STATE(3796), - [sym_relational_expression] = STATE(3796), - [sym_delete_expression] = STATE(3796), - [sym_sizeof_expression] = STATE(3796), - [sym_parenthesized_expression] = STATE(3796), - [sym_lambda_expression] = STATE(3796), - [sym_concatenated_string] = STATE(3796), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3796), - [sym_assignment_expression] = STATE(3796), - [sym_pointer_expression] = STATE(3796), - [sym_shift_expression] = STATE(3796), - [sym_math_expression] = STATE(3796), - [sym_call_expression] = STATE(3796), - [sym_lambda_capture_specifier] = STATE(196), + [sym_parenthesized_expression] = STATE(666), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(666), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(666), + [sym_pointer_expression] = STATE(666), + [sym_shift_expression] = STATE(666), + [sym_math_expression] = STATE(666), + [sym_call_expression] = STATE(666), + [sym_new_expression] = STATE(666), + [sym_raw_string_literal] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), + }, + [3023] = { + [sym_template_function] = STATE(3771), + [sym__expression] = STATE(3771), + [sym_logical_expression] = STATE(3771), + [sym_bitwise_expression] = STATE(3771), + [sym_cast_expression] = STATE(3771), + [sym_delete_expression] = STATE(3771), + [sym_field_expression] = STATE(3771), + [sym_compound_literal_expression] = STATE(3771), + [sym_lambda_expression] = STATE(3771), + [sym_char_literal] = STATE(3771), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3771), + [sym_equality_expression] = STATE(3771), + [sym_relational_expression] = STATE(3771), + [sym_sizeof_expression] = STATE(3771), + [sym_subscript_expression] = STATE(3771), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8237), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8239), - [sym_true] = ACTIONS(8241), - [sym_null] = ACTIONS(8241), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8237), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(8241), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(8241), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(3771), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3771), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3771), + [sym_pointer_expression] = STATE(3771), + [sym_shift_expression] = STATE(3771), + [sym_math_expression] = STATE(3771), + [sym_call_expression] = STATE(3771), + [sym_new_expression] = STATE(3771), + [sym_raw_string_literal] = ACTIONS(8225), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8227), + [sym_true] = ACTIONS(8229), + [sym_null] = ACTIONS(8229), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8225), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(8229), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(8229), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3034] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), + [3024] = { + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1238), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3035] = { - [sym_string_literal] = STATE(3808), - [aux_sym_concatenated_string_repeat1] = STATE(3808), + [3025] = { + [sym_string_literal] = STATE(3783), + [aux_sym_concatenated_string_repeat1] = STATE(3783), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -126197,7 +126152,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [anon_sym_PERCENT] = ACTIONS(163), @@ -126214,1545 +126169,1186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [3036] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(3037), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(6312), + [3026] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3027), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(6360), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(6312), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(6360), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6312), + [anon_sym_long] = ACTIONS(6360), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(6314), + [anon_sym_typename] = ACTIONS(6362), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(6312), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(6360), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [3037] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3809), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(8243), - [anon_sym_long] = ACTIONS(8243), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(8243), - [sym_identifier] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(8243), - [anon_sym_QMARK] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), + [3027] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3784), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(8231), + [anon_sym_long] = ACTIONS(8231), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(8231), + [sym_identifier] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_unsigned] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), }, - [3038] = { - [sym_initializer_list] = STATE(709), - [sym_new_declarator] = STATE(708), - [sym_argument_list] = STATE(709), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1281), + [3028] = { + [sym_new_declarator] = STATE(709), + [sym_argument_list] = STATE(710), + [sym_initializer_list] = STATE(710), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1284), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(8245), - [anon_sym_PERCENT] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(8233), + [anon_sym_PERCENT] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [3039] = { - [sym_union_specifier] = STATE(3811), - [sym_macro_type_specifier] = STATE(3811), - [sym_class_specifier] = STATE(3811), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(3811), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(3811), - [aux_sym_sized_type_specifier_repeat1] = STATE(3037), - [sym_struct_specifier] = STATE(3811), - [sym_enum_specifier] = STATE(3811), - [sym_scoped_type_identifier] = STATE(210), - [sym_dependent_type] = STATE(3811), - [anon_sym_unsigned] = ACTIONS(6312), + [3029] = { + [sym_union_specifier] = STATE(3786), + [sym_macro_type_specifier] = STATE(3786), + [sym_class_specifier] = STATE(3786), + [aux_sym_sized_type_specifier_repeat1] = STATE(3027), + [sym_sized_type_specifier] = STATE(3786), + [sym__type_specifier] = STATE(3786), + [sym_scoped_type_identifier] = STATE(214), + [sym_enum_specifier] = STATE(3786), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(3786), + [sym_struct_specifier] = STATE(3786), + [anon_sym_unsigned] = ACTIONS(6360), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(8247), - [anon_sym_signed] = ACTIONS(6312), + [sym_auto] = ACTIONS(8235), + [anon_sym_signed] = ACTIONS(6360), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6312), + [anon_sym_long] = ACTIONS(6360), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(6314), + [anon_sym_typename] = ACTIONS(6362), [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(368), - [anon_sym_short] = ACTIONS(6312), - [anon_sym_enum] = ACTIONS(364), + [sym_identifier] = ACTIONS(370), + [anon_sym_short] = ACTIONS(6360), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(8247), + [sym_primitive_type] = ACTIONS(8235), }, - [3040] = { - [sym_template_argument_list] = STATE(377), + [3030] = { [sym_initializer_list] = STATE(100), - [anon_sym_LPAREN2] = ACTIONS(1651), + [sym_template_argument_list] = STATE(378), + [anon_sym_LPAREN2] = ACTIONS(1661), [anon_sym_DASH] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(6280), + [anon_sym_EQ] = ACTIONS(6328), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_EQ] = ACTIONS(6278), - [anon_sym_LT_LT_EQ] = ACTIONS(6278), - [anon_sym_PERCENT_EQ] = ACTIONS(6278), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_EQ] = ACTIONS(6326), + [anon_sym_PERCENT_EQ] = ACTIONS(6326), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), - [anon_sym_CARET_EQ] = ACTIONS(6278), + [anon_sym_CARET_EQ] = ACTIONS(6326), [anon_sym_AMP] = ACTIONS(163), [anon_sym_RBRACE] = ACTIONS(165), [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_PLUS] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(6278), - [anon_sym_PLUS_EQ] = ACTIONS(6278), + [anon_sym_SLASH_EQ] = ACTIONS(6326), + [anon_sym_PLUS_EQ] = ACTIONS(6326), [anon_sym_CARET] = ACTIONS(163), [anon_sym_GT] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(6278), - [anon_sym_GT_GT_EQ] = ACTIONS(6278), + [anon_sym_PIPE_EQ] = ACTIONS(6326), + [anon_sym_GT_GT_EQ] = ACTIONS(6326), [anon_sym_COMMA] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_DOT] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1661), [anon_sym_PERCENT] = ACTIONS(163), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(165), - [anon_sym_DASH_EQ] = ACTIONS(6278), + [anon_sym_DASH_EQ] = ACTIONS(6326), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_BANG_EQ] = ACTIONS(165), [anon_sym_LT_EQ] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(165), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_AMP_EQ] = ACTIONS(6278), + [anon_sym_AMP_EQ] = ACTIONS(6326), [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [3041] = { - [sym_string_literal] = STATE(3812), - [aux_sym_concatenated_string_repeat1] = STATE(3812), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [3031] = { + [sym_string_literal] = STATE(3787), + [aux_sym_concatenated_string_repeat1] = STATE(3787), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [3042] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3813), - [sym_logical_expression] = STATE(3813), - [sym_bitwise_expression] = STATE(3813), - [sym_cast_expression] = STATE(3813), - [sym_new_expression] = STATE(3813), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3813), - [sym_char_literal] = STATE(3813), - [sym_template_function] = STATE(3813), - [sym_conditional_expression] = STATE(3813), - [sym_equality_expression] = STATE(3813), - [sym_relational_expression] = STATE(3813), - [sym_delete_expression] = STATE(3813), - [sym_sizeof_expression] = STATE(3813), - [sym_parenthesized_expression] = STATE(3813), - [sym_lambda_expression] = STATE(3813), - [sym_concatenated_string] = STATE(3813), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3813), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3813), - [sym_math_expression] = STATE(3813), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [3032] = { + [sym_template_function] = STATE(3788), + [sym__expression] = STATE(3788), + [sym_logical_expression] = STATE(3788), + [sym_bitwise_expression] = STATE(3788), + [sym_cast_expression] = STATE(3788), + [sym_delete_expression] = STATE(3788), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3788), + [sym_lambda_expression] = STATE(3788), + [sym_char_literal] = STATE(3788), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3788), + [sym_equality_expression] = STATE(3788), + [sym_relational_expression] = STATE(3788), + [sym_sizeof_expression] = STATE(3788), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3788), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3788), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3788), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3788), + [sym_math_expression] = STATE(3788), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3788), + [sym_raw_string_literal] = ACTIONS(8237), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(8239), + [sym_null] = ACTIONS(8239), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8237), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(8239), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(8239), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), + }, + [3033] = { + [sym_template_function] = STATE(3789), + [sym__expression] = STATE(3789), + [sym_logical_expression] = STATE(3789), + [sym_bitwise_expression] = STATE(3789), + [sym_cast_expression] = STATE(3789), + [sym_delete_expression] = STATE(3789), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3789), + [sym_lambda_expression] = STATE(3789), + [sym_char_literal] = STATE(3789), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3789), + [sym_equality_expression] = STATE(3789), + [sym_relational_expression] = STATE(3789), + [sym_sizeof_expression] = STATE(3789), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3789), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3789), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3789), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3789), + [sym_math_expression] = STATE(3789), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3789), + [sym_raw_string_literal] = ACTIONS(8241), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(8243), + [sym_null] = ACTIONS(8243), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8241), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(8243), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(8243), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), + }, + [3034] = { + [sym_template_function] = STATE(3790), + [sym__expression] = STATE(3790), + [sym_logical_expression] = STATE(3790), + [sym_bitwise_expression] = STATE(3790), + [sym_cast_expression] = STATE(3790), + [sym_delete_expression] = STATE(3790), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3790), + [sym_lambda_expression] = STATE(3790), + [sym_char_literal] = STATE(3790), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3790), + [sym_equality_expression] = STATE(3790), + [sym_relational_expression] = STATE(3790), + [sym_sizeof_expression] = STATE(3790), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3790), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3790), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3790), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3790), + [sym_math_expression] = STATE(3790), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3790), + [sym_raw_string_literal] = ACTIONS(8245), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(8247), + [sym_null] = ACTIONS(8247), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8245), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(8247), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(8247), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), + }, + [3035] = { + [sym_template_function] = STATE(3791), + [sym__expression] = STATE(3791), + [sym_logical_expression] = STATE(3791), + [sym_bitwise_expression] = STATE(3791), + [sym_cast_expression] = STATE(3791), + [sym_delete_expression] = STATE(3791), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3791), + [sym_lambda_expression] = STATE(3791), + [sym_char_literal] = STATE(3791), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_comma_expression] = STATE(982), + [sym_conditional_expression] = STATE(3791), + [sym_equality_expression] = STATE(3791), + [sym_relational_expression] = STATE(3791), + [sym_sizeof_expression] = STATE(3791), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(3791), + [sym_string_literal] = STATE(2030), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3791), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3791), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3791), + [sym_math_expression] = STATE(3791), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3791), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), [sym_raw_string_literal] = ACTIONS(8249), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), [sym_true] = ACTIONS(8251), + [anon_sym_DASH_DASH] = ACTIONS(4093), [sym_null] = ACTIONS(8251), + [anon_sym_DOT] = ACTIONS(760), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(8249), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(4083), [sym_false] = ACTIONS(8251), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(6314), [sym_nullptr] = ACTIONS(8251), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [anon_sym_RBRACE] = ACTIONS(4479), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_LBRACE] = ACTIONS(175), }, - [3043] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3814), - [sym_logical_expression] = STATE(3814), - [sym_bitwise_expression] = STATE(3814), - [sym_cast_expression] = STATE(3814), - [sym_new_expression] = STATE(3814), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3814), - [sym_char_literal] = STATE(3814), - [sym_template_function] = STATE(3814), - [sym_conditional_expression] = STATE(3814), - [sym_equality_expression] = STATE(3814), - [sym_relational_expression] = STATE(3814), - [sym_delete_expression] = STATE(3814), - [sym_sizeof_expression] = STATE(3814), - [sym_parenthesized_expression] = STATE(3814), - [sym_lambda_expression] = STATE(3814), - [sym_concatenated_string] = STATE(3814), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3814), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3814), - [sym_math_expression] = STATE(3814), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [3036] = { + [sym_template_function] = STATE(3792), + [sym__expression] = STATE(3792), + [sym_logical_expression] = STATE(3792), + [sym_bitwise_expression] = STATE(3792), + [sym_cast_expression] = STATE(3792), + [sym_delete_expression] = STATE(3792), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3792), + [sym_lambda_expression] = STATE(3792), + [sym_char_literal] = STATE(3792), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3792), + [sym_equality_expression] = STATE(3792), + [sym_relational_expression] = STATE(3792), + [sym_sizeof_expression] = STATE(3792), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3792), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3792), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3792), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3792), + [sym_math_expression] = STATE(3792), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3792), [sym_raw_string_literal] = ACTIONS(8253), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), [sym_true] = ACTIONS(8255), [sym_null] = ACTIONS(8255), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(8253), - [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_COLON_COLON] = ACTIONS(6312), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4083), [sym_false] = ACTIONS(8255), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(6314), [sym_nullptr] = ACTIONS(8255), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [3044] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3815), - [sym_logical_expression] = STATE(3815), - [sym_bitwise_expression] = STATE(3815), - [sym_cast_expression] = STATE(3815), - [sym_new_expression] = STATE(3815), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3815), - [sym_char_literal] = STATE(3815), - [sym_template_function] = STATE(3815), - [sym_conditional_expression] = STATE(3815), - [sym_equality_expression] = STATE(3815), - [sym_relational_expression] = STATE(3815), - [sym_delete_expression] = STATE(3815), - [sym_sizeof_expression] = STATE(3815), - [sym_parenthesized_expression] = STATE(3815), - [sym_lambda_expression] = STATE(3815), - [sym_concatenated_string] = STATE(3815), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3815), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3815), - [sym_math_expression] = STATE(3815), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), + [3037] = { + [sym_template_function] = STATE(3793), + [sym__expression] = STATE(3793), + [sym_logical_expression] = STATE(3793), + [sym_bitwise_expression] = STATE(3793), + [sym_cast_expression] = STATE(3793), + [sym_delete_expression] = STATE(3793), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3793), + [sym_lambda_expression] = STATE(3793), + [sym_char_literal] = STATE(3793), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3793), + [sym_equality_expression] = STATE(3793), + [sym_relational_expression] = STATE(3793), + [sym_sizeof_expression] = STATE(3793), + [sym_subscript_expression] = STATE(2029), [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3793), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3793), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3793), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3793), + [sym_math_expression] = STATE(3793), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3793), [sym_raw_string_literal] = ACTIONS(8257), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), [sym_true] = ACTIONS(8259), [sym_null] = ACTIONS(8259), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(8257), - [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_COLON_COLON] = ACTIONS(6312), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4083), [sym_false] = ACTIONS(8259), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(6314), [sym_nullptr] = ACTIONS(8259), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [3045] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3816), - [sym_logical_expression] = STATE(3816), - [sym_bitwise_expression] = STATE(3816), - [sym_cast_expression] = STATE(3816), - [sym_new_expression] = STATE(3816), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3816), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(3816), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_comma_expression] = STATE(944), - [sym_template_function] = STATE(3816), - [sym_conditional_expression] = STATE(3816), - [sym_equality_expression] = STATE(3816), - [sym_delete_expression] = STATE(3816), - [sym_relational_expression] = STATE(3816), - [sym_parenthesized_expression] = STATE(3816), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(3816), - [sym_string_literal] = STATE(2023), - [sym_sizeof_expression] = STATE(3816), - [sym_lambda_expression] = STATE(3816), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3816), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3816), - [sym_math_expression] = STATE(3816), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), + [3038] = { + [sym_template_function] = STATE(990), + [sym__expression] = STATE(990), + [sym_logical_expression] = STATE(990), + [sym_bitwise_expression] = STATE(990), + [sym_cast_expression] = STATE(990), + [sym_delete_expression] = STATE(990), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(990), + [sym_lambda_expression] = STATE(990), + [sym_char_literal] = STATE(990), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(990), + [sym_equality_expression] = STATE(990), + [sym_relational_expression] = STATE(990), + [sym_sizeof_expression] = STATE(990), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(990), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(990), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(990), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(990), + [sym_math_expression] = STATE(990), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(990), + [sym_raw_string_literal] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), + }, + [3039] = { + [sym_template_function] = STATE(3794), + [sym__expression] = STATE(3794), + [sym_logical_expression] = STATE(3794), + [sym_bitwise_expression] = STATE(3794), + [sym_cast_expression] = STATE(3794), + [sym_delete_expression] = STATE(3794), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3794), + [sym_lambda_expression] = STATE(3794), + [sym_char_literal] = STATE(3794), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3794), + [sym_equality_expression] = STATE(3794), + [sym_relational_expression] = STATE(3794), + [sym_sizeof_expression] = STATE(3794), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3794), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3794), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3794), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3794), + [sym_math_expression] = STATE(3794), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3794), [sym_raw_string_literal] = ACTIONS(8261), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), [sym_true] = ACTIONS(8263), - [anon_sym_DASH_DASH] = ACTIONS(4057), [sym_null] = ACTIONS(8263), - [anon_sym_DOT] = ACTIONS(756), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(8261), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), [sym_false] = ACTIONS(8263), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(6314), [sym_nullptr] = ACTIONS(8263), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [anon_sym_RBRACE] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [3046] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3817), - [sym_logical_expression] = STATE(3817), - [sym_bitwise_expression] = STATE(3817), - [sym_cast_expression] = STATE(3817), - [sym_new_expression] = STATE(3817), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3817), - [sym_char_literal] = STATE(3817), - [sym_template_function] = STATE(3817), - [sym_conditional_expression] = STATE(3817), - [sym_equality_expression] = STATE(3817), - [sym_relational_expression] = STATE(3817), - [sym_delete_expression] = STATE(3817), - [sym_sizeof_expression] = STATE(3817), - [sym_parenthesized_expression] = STATE(3817), - [sym_lambda_expression] = STATE(3817), - [sym_concatenated_string] = STATE(3817), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3817), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3817), - [sym_math_expression] = STATE(3817), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [3040] = { + [sym_template_function] = STATE(3795), + [sym__expression] = STATE(3795), + [sym_logical_expression] = STATE(3795), + [sym_bitwise_expression] = STATE(3795), + [sym_cast_expression] = STATE(3795), + [sym_delete_expression] = STATE(3795), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3795), + [sym_lambda_expression] = STATE(3795), + [sym_char_literal] = STATE(3795), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3795), + [sym_equality_expression] = STATE(3795), + [sym_relational_expression] = STATE(3795), + [sym_sizeof_expression] = STATE(3795), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3795), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3795), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3795), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3795), + [sym_math_expression] = STATE(3795), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3795), [sym_raw_string_literal] = ACTIONS(8265), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), [sym_true] = ACTIONS(8267), [sym_null] = ACTIONS(8267), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(8265), - [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_COLON_COLON] = ACTIONS(6312), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4083), [sym_false] = ACTIONS(8267), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(6314), [sym_nullptr] = ACTIONS(8267), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [3047] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3818), - [sym_logical_expression] = STATE(3818), - [sym_bitwise_expression] = STATE(3818), - [sym_cast_expression] = STATE(3818), - [sym_new_expression] = STATE(3818), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3818), - [sym_char_literal] = STATE(3818), - [sym_template_function] = STATE(3818), - [sym_conditional_expression] = STATE(3818), - [sym_equality_expression] = STATE(3818), - [sym_relational_expression] = STATE(3818), - [sym_delete_expression] = STATE(3818), - [sym_sizeof_expression] = STATE(3818), - [sym_parenthesized_expression] = STATE(3818), - [sym_lambda_expression] = STATE(3818), - [sym_concatenated_string] = STATE(3818), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3818), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3818), - [sym_math_expression] = STATE(3818), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), + [3041] = { + [sym_template_function] = STATE(3796), + [sym__expression] = STATE(3796), + [sym_logical_expression] = STATE(3796), + [sym_bitwise_expression] = STATE(3796), + [sym_cast_expression] = STATE(3796), + [sym_delete_expression] = STATE(3796), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3796), + [sym_lambda_expression] = STATE(3796), + [sym_char_literal] = STATE(3796), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3796), + [sym_equality_expression] = STATE(3796), + [sym_relational_expression] = STATE(3796), + [sym_sizeof_expression] = STATE(3796), + [sym_subscript_expression] = STATE(2029), [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3796), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3796), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3796), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3796), + [sym_math_expression] = STATE(3796), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3796), [sym_raw_string_literal] = ACTIONS(8269), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), [sym_true] = ACTIONS(8271), [sym_null] = ACTIONS(8271), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(8269), - [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_COLON_COLON] = ACTIONS(6312), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4083), [sym_false] = ACTIONS(8271), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(6314), [sym_nullptr] = ACTIONS(8271), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), - }, - [3048] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(952), - [sym_logical_expression] = STATE(952), - [sym_bitwise_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_new_expression] = STATE(952), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(952), - [sym_char_literal] = STATE(952), - [sym_template_function] = STATE(952), - [sym_conditional_expression] = STATE(952), - [sym_equality_expression] = STATE(952), - [sym_relational_expression] = STATE(952), - [sym_delete_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(952), - [sym_lambda_expression] = STATE(952), - [sym_concatenated_string] = STATE(952), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(952), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(952), - [sym_math_expression] = STATE(952), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1741), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [3049] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3819), - [sym_logical_expression] = STATE(3819), - [sym_bitwise_expression] = STATE(3819), - [sym_cast_expression] = STATE(3819), - [sym_new_expression] = STATE(3819), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3819), - [sym_char_literal] = STATE(3819), - [sym_template_function] = STATE(3819), - [sym_conditional_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_relational_expression] = STATE(3819), - [sym_delete_expression] = STATE(3819), - [sym_sizeof_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_lambda_expression] = STATE(3819), - [sym_concatenated_string] = STATE(3819), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3819), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3819), - [sym_math_expression] = STATE(3819), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [3042] = { + [sym_template_function] = STATE(3797), + [sym__expression] = STATE(3797), + [sym_logical_expression] = STATE(3797), + [sym_bitwise_expression] = STATE(3797), + [sym_cast_expression] = STATE(3797), + [sym_delete_expression] = STATE(3797), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(3797), + [sym_lambda_expression] = STATE(3797), + [sym_char_literal] = STATE(3797), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3797), + [sym_equality_expression] = STATE(3797), + [sym_relational_expression] = STATE(3797), + [sym_sizeof_expression] = STATE(3797), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3797), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(3797), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3797), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(3797), + [sym_math_expression] = STATE(3797), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(3797), [sym_raw_string_literal] = ACTIONS(8273), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), [sym_true] = ACTIONS(8275), [sym_null] = ACTIONS(8275), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(8273), - [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_COLON_COLON] = ACTIONS(1861), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(1863), [sym_false] = ACTIONS(8275), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(1865), [sym_nullptr] = ACTIONS(8275), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [3050] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3820), - [sym_logical_expression] = STATE(3820), - [sym_bitwise_expression] = STATE(3820), - [sym_cast_expression] = STATE(3820), - [sym_new_expression] = STATE(3820), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3820), - [sym_char_literal] = STATE(3820), - [sym_template_function] = STATE(3820), - [sym_conditional_expression] = STATE(3820), - [sym_equality_expression] = STATE(3820), - [sym_relational_expression] = STATE(3820), - [sym_delete_expression] = STATE(3820), - [sym_sizeof_expression] = STATE(3820), - [sym_parenthesized_expression] = STATE(3820), - [sym_lambda_expression] = STATE(3820), - [sym_concatenated_string] = STATE(3820), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3820), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3820), - [sym_math_expression] = STATE(3820), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), + [3043] = { + [sym_template_function] = STATE(3798), + [sym__expression] = STATE(3798), + [sym_logical_expression] = STATE(3798), + [sym_bitwise_expression] = STATE(3798), + [sym_cast_expression] = STATE(3798), + [sym_delete_expression] = STATE(3798), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(3798), + [sym_lambda_expression] = STATE(3798), + [sym_char_literal] = STATE(3798), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3798), + [sym_equality_expression] = STATE(3798), + [sym_relational_expression] = STATE(3798), + [sym_sizeof_expression] = STATE(3798), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3798), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(3798), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3798), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(3798), + [sym_math_expression] = STATE(3798), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(3798), [sym_raw_string_literal] = ACTIONS(8277), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), [sym_true] = ACTIONS(8279), [sym_null] = ACTIONS(8279), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(8277), - [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_COLON_COLON] = ACTIONS(6312), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4083), [sym_false] = ACTIONS(8279), - [anon_sym_AMP] = ACTIONS(6266), + [anon_sym_AMP] = ACTIONS(6314), [sym_nullptr] = ACTIONS(8279), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), - }, - [3051] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3821), - [sym_logical_expression] = STATE(3821), - [sym_bitwise_expression] = STATE(3821), - [sym_cast_expression] = STATE(3821), - [sym_new_expression] = STATE(3821), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3821), - [sym_char_literal] = STATE(3821), - [sym_template_function] = STATE(3821), - [sym_conditional_expression] = STATE(3821), - [sym_equality_expression] = STATE(3821), - [sym_relational_expression] = STATE(3821), - [sym_delete_expression] = STATE(3821), - [sym_sizeof_expression] = STATE(3821), - [sym_parenthesized_expression] = STATE(3821), - [sym_lambda_expression] = STATE(3821), - [sym_concatenated_string] = STATE(3821), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3821), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3821), - [sym_math_expression] = STATE(3821), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8281), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(8283), - [sym_null] = ACTIONS(8283), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8281), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(8283), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(8283), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), - }, - [3052] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3822), - [sym_logical_expression] = STATE(3822), - [sym_bitwise_expression] = STATE(3822), - [sym_cast_expression] = STATE(3822), - [sym_new_expression] = STATE(3822), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(3822), - [sym_char_literal] = STATE(3822), - [sym_template_function] = STATE(3822), - [sym_conditional_expression] = STATE(3822), - [sym_equality_expression] = STATE(3822), - [sym_relational_expression] = STATE(3822), - [sym_delete_expression] = STATE(3822), - [sym_sizeof_expression] = STATE(3822), - [sym_parenthesized_expression] = STATE(3822), - [sym_lambda_expression] = STATE(3822), - [sym_concatenated_string] = STATE(3822), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(3822), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(3822), - [sym_math_expression] = STATE(3822), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8285), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(8287), - [sym_null] = ACTIONS(8287), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8285), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(8287), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(8287), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - }, - [3053] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3823), - [sym_logical_expression] = STATE(3823), - [sym_bitwise_expression] = STATE(3823), - [sym_cast_expression] = STATE(3823), - [sym_new_expression] = STATE(3823), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(3823), - [sym_char_literal] = STATE(3823), - [sym_template_function] = STATE(3823), - [sym_conditional_expression] = STATE(3823), - [sym_equality_expression] = STATE(3823), - [sym_relational_expression] = STATE(3823), - [sym_delete_expression] = STATE(3823), - [sym_sizeof_expression] = STATE(3823), - [sym_parenthesized_expression] = STATE(3823), - [sym_lambda_expression] = STATE(3823), - [sym_concatenated_string] = STATE(3823), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(3823), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(3823), - [sym_math_expression] = STATE(3823), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8289), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(8291), - [sym_null] = ACTIONS(8291), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8289), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(8291), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(8291), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), - }, - [3054] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(3055), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(6346), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(6346), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6346), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(6350), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(6346), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [3055] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(8293), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [sym_identifier] = ACTIONS(1074), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_long] = ACTIONS(8293), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(8293), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_short] = ACTIONS(8293), - }, - [3056] = { - [sym_parameter_list] = STATE(3827), - [sym_abstract_array_declarator] = STATE(3828), - [sym_abstract_pointer_declarator] = STATE(3828), - [sym_abstract_reference_declarator] = STATE(3828), - [sym_abstract_function_declarator] = STATE(3828), - [sym__abstract_declarator] = STATE(3828), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym_COMMA] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(8295), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(8297), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_SEMI] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(8299), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_restrict] = ACTIONS(6210), - [anon_sym_LBRACE] = ACTIONS(6210), - }, - [3057] = { - [sym_virtual_specifier] = STATE(3057), - [aux_sym_function_declarator_repeat1] = STATE(3057), - [sym_trailing_return_type] = STATE(3057), - [sym_type_qualifier] = STATE(3057), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(8301), - [anon_sym_mutable] = ACTIONS(7266), - [anon_sym_COMMA] = ACTIONS(6220), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_const] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(7266), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7266), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_SEMI] = ACTIONS(6220), - [anon_sym_explicit] = ACTIONS(7266), - [anon_sym_DASH_GT] = ACTIONS(8304), - [anon_sym_EQ] = ACTIONS(6220), - [anon_sym_restrict] = ACTIONS(7266), - [anon_sym_LBRACE] = ACTIONS(6220), - }, - [3058] = { - [anon_sym_DASH] = ACTIONS(8307), - [sym_raw_string_literal] = ACTIONS(8309), - [sym_true] = ACTIONS(8307), - [anon_sym_mutable] = ACTIONS(8307), - [sym_null] = ACTIONS(8307), - [anon_sym_break] = ACTIONS(8307), - [anon_sym_BANG] = ACTIONS(8309), - [anon_sym_sizeof] = ACTIONS(8307), - [anon_sym_volatile] = ACTIONS(8307), - [anon_sym_PLUS] = ACTIONS(8307), - [anon_sym_typedef] = ACTIONS(8307), - [anon_sym_switch] = ACTIONS(8307), - [anon_sym_explicit] = ACTIONS(8307), - [sym_identifier] = ACTIONS(8307), - [anon_sym_delete] = ACTIONS(8307), - [anon_sym_continue] = ACTIONS(8307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8307), - [anon_sym__Atomic] = ACTIONS(8307), - [sym_number_literal] = ACTIONS(8309), - [anon_sym_extern] = ACTIONS(8307), - [anon_sym_enum] = ACTIONS(8307), - [anon_sym_constexpr] = ACTIONS(8307), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8309), - [anon_sym_namespace] = ACTIONS(8307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8307), - [anon_sym_SQUOTE] = ACTIONS(8309), - [anon_sym_LBRACE] = ACTIONS(8309), - [anon_sym_DASH_DASH] = ACTIONS(8309), - [anon_sym_LPAREN2] = ACTIONS(8309), - [anon_sym_struct] = ACTIONS(8307), - [sym_auto] = ACTIONS(8307), - [anon_sym_signed] = ACTIONS(8307), - [anon_sym_long] = ACTIONS(8307), - [anon_sym_COLON_COLON] = ACTIONS(8309), - [anon_sym_using] = ACTIONS(8307), - [sym_preproc_directive] = ACTIONS(8307), - [aux_sym_preproc_if_token1] = ACTIONS(8307), - [anon_sym_AMP] = ACTIONS(8307), - [anon_sym_static] = ACTIONS(8307), - [anon_sym_RBRACE] = ACTIONS(8309), - [anon_sym_STAR] = ACTIONS(8309), - [anon_sym_union] = ACTIONS(8307), - [anon_sym_typename] = ACTIONS(8307), - [anon_sym_short] = ACTIONS(8307), - [anon_sym_new] = ACTIONS(8307), - [anon_sym_goto] = ACTIONS(8307), - [sym_operator_name] = ACTIONS(8309), - [anon_sym_while] = ACTIONS(8307), - [anon_sym_try] = ACTIONS(8307), - [anon_sym_for] = ACTIONS(8307), - [aux_sym_preproc_include_token1] = ACTIONS(8307), - [anon_sym_register] = ACTIONS(8307), - [anon_sym_DQUOTE] = ACTIONS(8309), - [anon_sym_const] = ACTIONS(8307), - [anon_sym_LBRACK] = ACTIONS(8307), - [anon_sym_class] = ACTIONS(8307), - [anon_sym_if] = ACTIONS(8307), - [sym_primitive_type] = ACTIONS(8307), - [sym_false] = ACTIONS(8307), - [sym_nullptr] = ACTIONS(8307), - [anon_sym_do] = ACTIONS(8307), - [anon_sym_template] = ACTIONS(8307), - [anon_sym_return] = ACTIONS(8307), - [anon_sym_TILDE] = ACTIONS(8309), - [anon_sym_SEMI] = ACTIONS(8309), - [ts_builtin_sym_end] = ACTIONS(8309), - [aux_sym_preproc_def_token1] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_inline] = ACTIONS(8307), - [anon_sym_PLUS_PLUS] = ACTIONS(8309), - [anon_sym_restrict] = ACTIONS(8307), - }, - [3059] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(3060), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(6371), + [3044] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3045), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(6394), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(6371), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(6394), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6371), + [anon_sym_long] = ACTIONS(6394), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(6375), + [anon_sym_typename] = ACTIONS(6398), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(6371), - [anon_sym_enum] = ACTIONS(33), + [anon_sym_short] = ACTIONS(6394), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), - }, - [3060] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3829), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(8311), - [anon_sym_signed] = ACTIONS(8311), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_long] = ACTIONS(8311), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_short] = ACTIONS(8311), - [sym_identifier] = ACTIONS(1074), - [sym_primitive_type] = ACTIONS(627), + [sym_primitive_type] = ACTIONS(358), }, - [3061] = { - [sym_parameter_list] = STATE(1021), - [sym_abstract_array_declarator] = STATE(1022), - [sym_abstract_pointer_declarator] = STATE(1022), - [sym_abstract_reference_declarator] = STATE(1022), - [sym_abstract_function_declarator] = STATE(1022), - [sym__abstract_declarator] = STATE(1022), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - }, - [3062] = { - [sym_type_qualifier] = STATE(3062), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3062), - [anon_sym_LPAREN2] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(8313), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - }, - [3063] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(3062), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3062), - [anon_sym_LPAREN2] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(6377), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_DASH_GT] = ACTIONS(4095), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [3064] = { - [anon_sym_LPAREN2] = ACTIONS(8316), - [anon_sym_final] = ACTIONS(8316), - [sym_noexcept] = ACTIONS(8316), - [anon_sym_mutable] = ACTIONS(8316), - [anon_sym_COMMA] = ACTIONS(8316), - [anon_sym__Atomic] = ACTIONS(8316), - [anon_sym_const] = ACTIONS(8318), - [anon_sym_GT2] = ACTIONS(8316), - [anon_sym_LBRACK] = ACTIONS(8316), - [anon_sym_constexpr] = ACTIONS(8316), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8316), - [anon_sym_override] = ACTIONS(8316), - [anon_sym_SEMI] = ACTIONS(8316), - [anon_sym_COLON] = ACTIONS(8316), - [anon_sym_explicit] = ACTIONS(8316), - [anon_sym_RPAREN] = ACTIONS(8316), - [anon_sym_DASH_GT] = ACTIONS(8316), - [anon_sym_EQ] = ACTIONS(8316), - [anon_sym_restrict] = ACTIONS(8316), - [anon_sym_LBRACE] = ACTIONS(8316), + [3045] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3799), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(8281), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [sym_identifier] = ACTIONS(1066), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_long] = ACTIONS(8281), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(8281), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_short] = ACTIONS(8281), }, - [3065] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3065), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_unsigned] = ACTIONS(8320), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(8320), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(8320), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(8320), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), + [3046] = { + [sym_abstract_reference_declarator] = STATE(3803), + [sym_abstract_array_declarator] = STATE(3803), + [sym_abstract_pointer_declarator] = STATE(3803), + [sym_parameter_list] = STATE(3802), + [sym_abstract_function_declarator] = STATE(3803), + [sym__abstract_declarator] = STATE(3803), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym_COMMA] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(8283), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_SEMI] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_EQ] = ACTIONS(6085), + [anon_sym_restrict] = ACTIONS(6085), + [anon_sym_LBRACE] = ACTIONS(6085), }, - [3066] = { - [sym_parameter_list] = STATE(361), - [sym_abstract_array_declarator] = STATE(3830), - [sym_abstract_pointer_declarator] = STATE(3830), - [sym_abstract_reference_declarator] = STATE(3830), - [sym_abstract_function_declarator] = STATE(3830), - [sym__abstract_declarator] = STATE(3830), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6393), - [anon_sym_LBRACE] = ACTIONS(2830), + [3047] = { + [sym_virtual_specifier] = STATE(3047), + [aux_sym_function_declarator_repeat1] = STATE(3047), + [sym_type_qualifier] = STATE(3047), + [sym_trailing_return_type] = STATE(3047), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(8289), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym_const] = ACTIONS(7250), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(7247), [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_SEMI] = ACTIONS(6286), + [anon_sym_explicit] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(8292), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_restrict] = ACTIONS(7247), + [anon_sym_LBRACE] = ACTIONS(6286), }, - [3067] = { - [sym_abstract_array_declarator] = STATE(3832), - [sym_parameter_list] = STATE(361), - [sym_abstract_reference_declarator] = STATE(3832), - [sym_abstract_function_declarator] = STATE(3832), - [aux_sym_type_definition_repeat1] = STATE(3831), - [sym_abstract_pointer_declarator] = STATE(3832), - [sym_type_qualifier] = STATE(3831), - [sym__abstract_declarator] = STATE(3832), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(6389), - [anon_sym_volatile] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(6393), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(6391), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_constexpr] = ACTIONS(1062), + [3048] = { + [anon_sym_DASH] = ACTIONS(8295), + [sym_raw_string_literal] = ACTIONS(8297), + [sym_true] = ACTIONS(8295), + [anon_sym_mutable] = ACTIONS(8295), + [sym_null] = ACTIONS(8295), + [anon_sym_break] = ACTIONS(8295), + [anon_sym_BANG] = ACTIONS(8297), + [anon_sym_sizeof] = ACTIONS(8295), + [anon_sym_volatile] = ACTIONS(8295), + [anon_sym_PLUS] = ACTIONS(8295), + [anon_sym_typedef] = ACTIONS(8295), + [anon_sym_switch] = ACTIONS(8295), + [anon_sym_explicit] = ACTIONS(8295), + [sym_identifier] = ACTIONS(8295), + [anon_sym_delete] = ACTIONS(8295), + [anon_sym_continue] = ACTIONS(8295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8295), + [anon_sym__Atomic] = ACTIONS(8295), + [sym_number_literal] = ACTIONS(8297), + [anon_sym_extern] = ACTIONS(8295), + [anon_sym_enum] = ACTIONS(8295), + [anon_sym_constexpr] = ACTIONS(8295), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8297), + [anon_sym_namespace] = ACTIONS(8295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8295), + [anon_sym_SQUOTE] = ACTIONS(8297), + [anon_sym_LBRACE] = ACTIONS(8297), + [anon_sym_DASH_DASH] = ACTIONS(8297), + [anon_sym_LPAREN2] = ACTIONS(8297), + [anon_sym_struct] = ACTIONS(8295), + [sym_auto] = ACTIONS(8295), + [anon_sym_signed] = ACTIONS(8295), + [anon_sym_long] = ACTIONS(8295), + [anon_sym_COLON_COLON] = ACTIONS(8297), + [anon_sym_using] = ACTIONS(8295), + [sym_preproc_directive] = ACTIONS(8295), + [aux_sym_preproc_if_token1] = ACTIONS(8295), + [anon_sym_AMP] = ACTIONS(8295), + [anon_sym_static] = ACTIONS(8295), + [anon_sym_RBRACE] = ACTIONS(8297), + [anon_sym_STAR] = ACTIONS(8297), + [anon_sym_union] = ACTIONS(8295), + [anon_sym_typename] = ACTIONS(8295), + [anon_sym_short] = ACTIONS(8295), + [anon_sym_new] = ACTIONS(8295), + [anon_sym_goto] = ACTIONS(8295), + [sym_operator_name] = ACTIONS(8297), + [anon_sym_while] = ACTIONS(8295), + [anon_sym_try] = ACTIONS(8295), + [anon_sym_for] = ACTIONS(8295), + [aux_sym_preproc_include_token1] = ACTIONS(8295), + [anon_sym_register] = ACTIONS(8295), + [anon_sym_DQUOTE] = ACTIONS(8297), + [anon_sym_const] = ACTIONS(8295), + [anon_sym_LBRACK] = ACTIONS(8295), + [anon_sym_class] = ACTIONS(8295), + [anon_sym_if] = ACTIONS(8295), + [sym_primitive_type] = ACTIONS(8295), + [sym_false] = ACTIONS(8295), + [sym_nullptr] = ACTIONS(8295), + [anon_sym_do] = ACTIONS(8295), + [anon_sym_template] = ACTIONS(8295), + [anon_sym_return] = ACTIONS(8295), + [anon_sym_TILDE] = ACTIONS(8297), + [anon_sym_SEMI] = ACTIONS(8297), + [ts_builtin_sym_end] = ACTIONS(8297), + [aux_sym_preproc_def_token1] = ACTIONS(8295), + [anon_sym_AMP_AMP] = ACTIONS(8297), + [anon_sym_inline] = ACTIONS(8295), + [anon_sym_PLUS_PLUS] = ACTIONS(8297), + [anon_sym_restrict] = ACTIONS(8295), }, - [3068] = { - [sym_parameter_list] = STATE(1033), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(8186), + [3049] = { + [anon_sym_LPAREN2] = ACTIONS(8299), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(8299), + [anon_sym_RPAREN] = ACTIONS(8299), + [anon_sym_COMMA] = ACTIONS(8299), + [anon_sym_SEMI] = ACTIONS(8299), }, - [3069] = { - [sym_template_type] = STATE(754), + [3050] = { + [sym_template_function] = STATE(755), [sym__expression] = STATE(755), [sym_logical_expression] = STATE(755), [sym_bitwise_expression] = STATE(755), [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), + [sym_delete_expression] = STATE(755), [sym_field_expression] = STATE(755), [sym_compound_literal_expression] = STATE(755), - [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), - [sym_conditional_expression] = STATE(755), - [sym_equality_expression] = STATE(755), - [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), - [sym_sizeof_expression] = STATE(755), - [sym_parenthesized_expression] = STATE(755), [sym_lambda_expression] = STATE(755), - [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), + [sym_char_literal] = STATE(755), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), - [sym_assignment_expression] = STATE(755), - [sym_pointer_expression] = STATE(755), - [sym_shift_expression] = STATE(755), - [sym_math_expression] = STATE(755), - [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_RBRACK] = ACTIONS(8323), - }, - [3070] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8323), - }, - [3071] = { - [anon_sym_LPAREN2] = ACTIONS(8325), - [anon_sym_final] = ACTIONS(8325), - [sym_noexcept] = ACTIONS(8325), - [anon_sym_mutable] = ACTIONS(8325), - [anon_sym_COMMA] = ACTIONS(8325), - [anon_sym__Atomic] = ACTIONS(8325), - [anon_sym_const] = ACTIONS(8327), - [anon_sym_GT2] = ACTIONS(8325), - [anon_sym_LBRACK] = ACTIONS(8325), - [anon_sym_constexpr] = ACTIONS(8325), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8325), - [anon_sym_override] = ACTIONS(8325), - [anon_sym_SEMI] = ACTIONS(8325), - [anon_sym_COLON] = ACTIONS(8325), - [anon_sym_explicit] = ACTIONS(8325), - [anon_sym_RPAREN] = ACTIONS(8325), - [anon_sym_DASH_GT] = ACTIONS(8325), - [anon_sym_EQ] = ACTIONS(8325), - [anon_sym_restrict] = ACTIONS(8325), - [anon_sym_LBRACE] = ACTIONS(8325), - }, - [3072] = { - [anon_sym_DASH] = ACTIONS(8329), - [sym_raw_string_literal] = ACTIONS(8331), - [sym_true] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [sym_null] = ACTIONS(8329), - [anon_sym_break] = ACTIONS(8329), - [anon_sym_BANG] = ACTIONS(8331), - [anon_sym_sizeof] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_PLUS] = ACTIONS(8329), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_switch] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [sym_identifier] = ACTIONS(8329), - [anon_sym_delete] = ACTIONS(8329), - [anon_sym_continue] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [sym_number_literal] = ACTIONS(8331), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [anon_sym_namespace] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), - [anon_sym_SQUOTE] = ACTIONS(8331), - [anon_sym_LBRACE] = ACTIONS(8331), - [anon_sym_DASH_DASH] = ACTIONS(8331), - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_struct] = ACTIONS(8329), - [sym_auto] = ACTIONS(8329), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_using] = ACTIONS(8329), - [sym_preproc_directive] = ACTIONS(8329), - [aux_sym_preproc_if_token1] = ACTIONS(8329), - [anon_sym_AMP] = ACTIONS(8329), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_RBRACE] = ACTIONS(8331), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [anon_sym_new] = ACTIONS(8329), - [anon_sym_goto] = ACTIONS(8329), - [sym_operator_name] = ACTIONS(8331), - [anon_sym_while] = ACTIONS(8329), - [anon_sym_try] = ACTIONS(8329), - [anon_sym_for] = ACTIONS(8329), - [aux_sym_preproc_include_token1] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym_DQUOTE] = ACTIONS(8331), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_LBRACK] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_if] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [sym_false] = ACTIONS(8329), - [sym_nullptr] = ACTIONS(8329), - [anon_sym_do] = ACTIONS(8329), - [anon_sym_template] = ACTIONS(8329), - [anon_sym_return] = ACTIONS(8329), - [anon_sym_TILDE] = ACTIONS(8331), - [anon_sym_SEMI] = ACTIONS(8331), - [ts_builtin_sym_end] = ACTIONS(8331), - [aux_sym_preproc_def_token1] = ACTIONS(8329), - [anon_sym_AMP_AMP] = ACTIONS(8331), - [anon_sym_inline] = ACTIONS(8329), - [anon_sym_PLUS_PLUS] = ACTIONS(8331), - [anon_sym_restrict] = ACTIONS(8329), - }, - [3073] = { - [anon_sym_LPAREN2] = ACTIONS(8333), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(8333), - [anon_sym_RPAREN] = ACTIONS(8333), - [anon_sym_COMMA] = ACTIONS(8333), - [anon_sym_SEMI] = ACTIONS(8333), - }, - [3074] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(755), - [sym_logical_expression] = STATE(755), - [sym_bitwise_expression] = STATE(755), - [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), - [sym_field_expression] = STATE(755), - [sym_compound_literal_expression] = STATE(755), - [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), [sym_conditional_expression] = STATE(755), [sym_equality_expression] = STATE(755), [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), + [sym_template_type] = STATE(761), [sym_assignment_expression] = STATE(755), [sym_pointer_expression] = STATE(755), [sym_shift_expression] = STATE(755), [sym_math_expression] = STATE(755), [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_RBRACK] = ACTIONS(8335), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(8301), }, - [3075] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8335), + [3051] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8301), }, - [3076] = { + [3052] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8303), }, - [3077] = { - [sym_union_specifier] = STATE(3837), - [sym_macro_type_specifier] = STATE(3837), - [sym_class_specifier] = STATE(3837), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(3837), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(3836), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(3837), - [sym_enum_specifier] = STATE(3837), - [sym_dependent_type] = STATE(3837), - [sym_struct_specifier] = STATE(3837), - [sym_scoped_type_identifier] = STATE(87), - [sym_type_qualifier] = STATE(3836), + [3053] = { + [sym_union_specifier] = STATE(3807), + [sym_macro_type_specifier] = STATE(3807), + [sym_class_specifier] = STATE(3807), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(3807), + [aux_sym_type_definition_repeat1] = STATE(3806), + [sym__type_specifier] = STATE(3807), + [sym_struct_specifier] = STATE(3807), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(3807), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_type_qualifier] = STATE(3806), + [sym_dependent_type] = STATE(3807), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(8339), + [sym_auto] = ACTIONS(8305), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -127762,7 +127358,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(8339), + [sym_primitive_type] = ACTIONS(8305), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -127773,14 +127369,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [3078] = { - [sym_parenthesized_expression] = STATE(3838), + [3054] = { + [sym_parenthesized_expression] = STATE(3808), [anon_sym_LPAREN2] = ACTIONS(157), [sym_comment] = ACTIONS(3), }, - [3079] = { - [sym_template_argument_list] = STATE(1578), + [3055] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(3811), [anon_sym_LPAREN2] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), @@ -127789,7 +127385,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(171), [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(8307), [anon_sym_PERCENT_EQ] = ACTIONS(167), [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_EQ_EQ] = ACTIONS(165), @@ -127803,7 +127399,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(8341), + [anon_sym_COLON] = ACTIONS(8309), [anon_sym_explicit] = ACTIONS(169), [sym_identifier] = ACTIONS(169), [anon_sym_SLASH_EQ] = ACTIONS(167), @@ -127818,7 +127414,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(169), [anon_sym_const] = ACTIONS(169), [anon_sym_extern] = ACTIONS(169), - [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(187), [anon_sym_PIPE_PIPE] = ACTIONS(165), [anon_sym_LT_LT] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(163), @@ -127838,95 +127434,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [3080] = { + [3056] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8343), + [anon_sym_SEMI] = ACTIONS(8311), }, - [3081] = { - [sym_goto_statement] = STATE(3842), - [sym_preproc_function_def] = STATE(3842), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(3842), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(3842), + [3057] = { + [sym_goto_statement] = STATE(3814), + [sym_preproc_function_def] = STATE(3814), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(3814), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(3842), - [sym_return_statement] = STATE(3842), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3814), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(3814), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(3814), + [sym_namespace_definition] = STATE(3814), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(3842), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(3842), - [sym_break_statement] = STATE(3842), - [sym_preproc_include] = STATE(3842), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(3842), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(3842), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(3814), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(3814), + [sym_constructor_or_destructor_definition] = STATE(3814), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(3814), + [sym_preproc_include] = STATE(3814), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(3814), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(3814), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(3842), - [sym_template_instantiation] = STATE(3842), - [sym_constructor_or_destructor_definition] = STATE(3842), - [sym_expression_statement] = STATE(3842), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(3842), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(3842), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(3842), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(3842), - [aux_sym_translation_unit_repeat1] = STATE(3842), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(3842), - [sym_if_statement] = STATE(3842), - [sym_for_statement] = STATE(3842), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(3842), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(3842), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(3842), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(3842), - [sym_preproc_if] = STATE(3842), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(3814), + [sym_expression_statement] = STATE(3814), + [sym_do_statement] = STATE(3814), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(3814), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(3814), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(3814), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(3814), + [sym_for_statement] = STATE(3814), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(3814), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(3814), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(3814), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(3814), + [sym_preproc_if] = STATE(3814), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(3842), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(3842), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(3842), - [sym_while_statement] = STATE(3842), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(3814), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(3814), + [aux_sym_translation_unit_repeat1] = STATE(3814), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(3814), + [sym_while_statement] = STATE(3814), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -127968,7 +127564,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(8345), + [anon_sym_RBRACE] = ACTIONS(8313), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -128000,325 +127596,267 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3082] = { - [sym_destructor_name] = STATE(166), + [3058] = { + [sym_destructor_name] = STATE(167), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(3158), - [sym_operator_name] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_delete] = ACTIONS(310), + [sym_identifier] = ACTIONS(8315), + [sym_operator_name] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_delete] = ACTIONS(312), }, - [3083] = { - [sym_identifier] = ACTIONS(8347), + [3059] = { + [sym_identifier] = ACTIONS(8317), [sym_comment] = ACTIONS(3), }, - [3084] = { - [sym_parenthesized_expression] = STATE(3844), - [anon_sym_LPAREN2] = ACTIONS(372), + [3060] = { + [sym_parenthesized_expression] = STATE(3817), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [3085] = { - [sym_compound_statement] = STATE(3845), - [anon_sym_LBRACE] = ACTIONS(374), + [3061] = { + [sym_compound_statement] = STATE(3818), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [3086] = { - [anon_sym_LPAREN2] = ACTIONS(8349), + [3062] = { + [anon_sym_LPAREN2] = ACTIONS(8319), [sym_comment] = ACTIONS(3), }, - [3087] = { - [anon_sym_LPAREN2] = ACTIONS(8351), - [anon_sym_constexpr] = ACTIONS(8353), + [3063] = { + [anon_sym_LPAREN2] = ACTIONS(8321), + [anon_sym_constexpr] = ACTIONS(8323), [sym_comment] = ACTIONS(3), }, - [3088] = { - [sym_do_statement] = STATE(3849), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [3064] = { + [sym_do_statement] = STATE(3822), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(3849), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(3849), - [sym_if_statement] = STATE(3849), - [sym_switch_statement] = STATE(3849), - [sym_for_statement] = STATE(3849), - [sym_return_statement] = STATE(3849), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3822), + [sym_try_statement] = STATE(3822), + [sym_if_statement] = STATE(3822), + [sym_switch_statement] = STATE(3822), + [sym_for_statement] = STATE(3822), + [sym_return_statement] = STATE(3822), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(3849), - [sym_break_statement] = STATE(3849), - [sym_continue_statement] = STATE(3849), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3822), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3849), - [sym_labeled_statement] = STATE(3849), - [sym_expression_statement] = STATE(3849), - [sym_while_statement] = STATE(3849), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(3822), + [sym_for_range_loop] = STATE(3822), + [sym_compound_statement] = STATE(3822), + [sym_labeled_statement] = STATE(3822), + [sym_expression_statement] = STATE(3822), + [sym_while_statement] = STATE(3822), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3089] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3851), - [sym_logical_expression] = STATE(3851), - [sym_bitwise_expression] = STATE(3851), - [sym_cast_expression] = STATE(3851), - [sym_new_expression] = STATE(3851), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3851), - [sym_char_literal] = STATE(3851), - [sym_template_function] = STATE(3851), - [sym_conditional_expression] = STATE(3851), - [sym_equality_expression] = STATE(3851), - [sym_relational_expression] = STATE(3851), - [sym_delete_expression] = STATE(3851), - [sym_sizeof_expression] = STATE(3851), - [sym_parenthesized_expression] = STATE(3851), - [sym_initializer_list] = STATE(3852), - [sym_concatenated_string] = STATE(3851), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(3851), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3851), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3851), - [sym_math_expression] = STATE(3851), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8355), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(8357), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(8357), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8355), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(8357), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(8357), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(8359), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [3065] = { + [sym_template_function] = STATE(3824), + [sym__expression] = STATE(3824), + [sym_logical_expression] = STATE(3824), + [sym_bitwise_expression] = STATE(3824), + [sym_cast_expression] = STATE(3824), + [sym_delete_expression] = STATE(3824), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3824), + [sym_lambda_expression] = STATE(3824), + [sym_char_literal] = STATE(3824), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3824), + [sym_equality_expression] = STATE(3824), + [sym_relational_expression] = STATE(3824), + [sym_sizeof_expression] = STATE(3824), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(3825), + [sym_parenthesized_expression] = STATE(3824), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3824), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3824), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3824), + [sym_math_expression] = STATE(3824), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3824), + [sym_raw_string_literal] = ACTIONS(8325), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(8327), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(8327), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8325), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(8327), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(8327), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(8329), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [3090] = { - [anon_sym_DASH] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(514), - [anon_sym_else] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [anon_sym_mutable] = ACTIONS(512), - [sym_null] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_sizeof] = ACTIONS(512), - [anon_sym_volatile] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_typedef] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(512), - [anon_sym_explicit] = ACTIONS(512), - [sym_identifier] = ACTIONS(512), - [anon_sym_delete] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [anon_sym__Atomic] = ACTIONS(512), - [sym_number_literal] = ACTIONS(514), - [anon_sym_extern] = ACTIONS(512), - [anon_sym_enum] = ACTIONS(512), - [anon_sym_constexpr] = ACTIONS(512), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(514), - [anon_sym_case] = ACTIONS(512), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(514), - [anon_sym_DASH_DASH] = ACTIONS(514), - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(512), - [sym_auto] = ACTIONS(512), - [anon_sym_signed] = ACTIONS(512), - [anon_sym_long] = ACTIONS(512), - [anon_sym_COLON_COLON] = ACTIONS(514), - [anon_sym_default] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_static] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_union] = ACTIONS(512), - [anon_sym_typename] = ACTIONS(512), - [anon_sym_short] = ACTIONS(512), - [anon_sym_new] = ACTIONS(512), - [anon_sym_goto] = ACTIONS(512), - [anon_sym_while] = ACTIONS(512), - [anon_sym_try] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [anon_sym_register] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(514), - [anon_sym_const] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_class] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [sym_primitive_type] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_nullptr] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_inline] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(514), - [anon_sym_restrict] = ACTIONS(512), - }, - [3091] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(8361), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [3092] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8361), - }, - [3093] = { - [sym_reference_declarator] = STATE(3854), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(3854), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(3854), - [sym_destructor_name] = STATE(3854), - [sym__declarator] = STATE(3854), - [sym_init_declarator] = STATE(3855), - [sym_array_declarator] = STATE(3854), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(3854), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(8363), - [sym_comment] = ACTIONS(3), + [3066] = { + [anon_sym_DASH] = ACTIONS(516), + [sym_raw_string_literal] = ACTIONS(518), + [anon_sym_else] = ACTIONS(516), + [sym_true] = ACTIONS(516), + [anon_sym_mutable] = ACTIONS(516), + [sym_null] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_sizeof] = ACTIONS(516), + [anon_sym_volatile] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_typedef] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(516), + [anon_sym_explicit] = ACTIONS(516), + [sym_identifier] = ACTIONS(516), + [anon_sym_delete] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [anon_sym__Atomic] = ACTIONS(516), + [sym_number_literal] = ACTIONS(518), + [anon_sym_extern] = ACTIONS(516), + [anon_sym_enum] = ACTIONS(516), + [anon_sym_constexpr] = ACTIONS(516), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(518), + [anon_sym_case] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [anon_sym_LPAREN2] = ACTIONS(518), + [anon_sym_struct] = ACTIONS(516), + [sym_auto] = ACTIONS(516), + [anon_sym_signed] = ACTIONS(516), + [anon_sym_long] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(518), + [anon_sym_default] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(518), + [anon_sym_static] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_union] = ACTIONS(516), + [anon_sym_typename] = ACTIONS(516), + [anon_sym_short] = ACTIONS(516), + [anon_sym_new] = ACTIONS(516), + [anon_sym_goto] = ACTIONS(516), + [anon_sym_while] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [anon_sym_register] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_const] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_class] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [sym_primitive_type] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_nullptr] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_inline] = ACTIONS(516), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_restrict] = ACTIONS(516), }, - [3094] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(278), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(3856), - [sym_scoped_type_identifier] = STATE(87), + [3067] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_struct_specifier] = STATE(280), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(3826), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -128327,1644 +127865,1733 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, - [3095] = { - [sym_goto_statement] = STATE(3857), - [sym_logical_expression] = STATE(3091), - [sym_for_range_loop] = STATE(3857), - [sym_cast_expression] = STATE(3091), - [sym_declaration] = STATE(3857), + [3068] = { + [sym_goto_statement] = STATE(3827), + [sym_logical_expression] = STATE(3070), + [sym_try_statement] = STATE(3827), + [sym_cast_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_union_specifier] = STATE(278), - [sym_switch_statement] = STATE(3857), - [sym_return_statement] = STATE(3857), - [sym_template_function] = STATE(3091), - [sym_conditional_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3827), + [aux_sym_function_definition_repeat1] = STATE(3067), + [sym_type_qualifier] = STATE(285), + [aux_sym_case_statement_repeat1] = STATE(3827), + [sym_union_specifier] = STATE(280), + [sym_switch_statement] = STATE(3827), + [sym_return_statement] = STATE(3827), + [sym_conditional_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(73), - [sym_type_definition] = STATE(3857), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_break_statement] = STATE(3857), - [sym_assignment_expression] = STATE(3091), - [sym_shift_expression] = STATE(3091), - [sym_attribute] = STATE(3094), + [sym_scoped_namespace_identifier] = STATE(3069), + [sym_type_definition] = STATE(3827), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_break_statement] = STATE(3827), + [sym_assignment_expression] = STATE(3070), + [sym_for_range_loop] = STATE(3827), + [sym_shift_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_compound_statement] = STATE(3857), - [sym_expression_statement] = STATE(3857), - [sym_do_statement] = STATE(3857), - [sym_template_type] = STATE(722), - [sym__expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), - [sym_compound_literal_expression] = STATE(3091), - [sym_char_literal] = STATE(3091), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_if_statement] = STATE(3857), - [sym_for_statement] = STATE(3857), - [sym_comma_expression] = STATE(3092), - [sym_equality_expression] = STATE(3091), - [sym_try_statement] = STATE(3857), - [sym_sizeof_expression] = STATE(3091), - [sym__declaration_specifiers] = STATE(3093), - [sym_parenthesized_expression] = STATE(3091), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(3091), - [aux_sym_function_definition_repeat1] = STATE(3094), - [sym_macro_type_specifier] = STATE(278), - [sym_lambda_expression] = STATE(3091), - [sym_sized_type_specifier] = STATE(278), - [aux_sym_case_statement_repeat1] = STATE(3857), - [sym_continue_statement] = STATE(3857), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_compound_statement] = STATE(3827), + [sym_expression_statement] = STATE(3827), + [sym_do_statement] = STATE(3827), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_compound_literal_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_if_statement] = STATE(3827), + [sym_for_statement] = STATE(3827), + [sym_comma_expression] = STATE(3071), + [sym_equality_expression] = STATE(3070), + [sym_attribute] = STATE(3067), + [sym_sizeof_expression] = STATE(3070), + [sym__declaration_specifiers] = STATE(3072), + [sym_parenthesized_expression] = STATE(3070), + [sym_concatenated_string] = STATE(3070), + [sym_macro_type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [sym_template_type] = STATE(3073), + [sym_continue_statement] = STATE(3827), [sym_pointer_expression] = STATE(47), - [sym_math_expression] = STATE(3091), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(727), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_labeled_statement] = STATE(3857), - [sym_while_statement] = STATE(3857), + [sym_new_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), + [sym_enum_specifier] = STATE(280), + [sym_labeled_statement] = STATE(3827), + [sym_while_statement] = STATE(3827), [anon_sym_DASH] = ACTIONS(7), - [sym_raw_string_literal] = ACTIONS(6441), - [sym_true] = ACTIONS(6443), + [sym_raw_string_literal] = ACTIONS(6430), + [sym_true] = ACTIONS(6432), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(6443), - [anon_sym_break] = ACTIONS(6445), + [sym_null] = ACTIONS(6432), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(6447), - [anon_sym_switch] = ACTIONS(6449), + [anon_sym_typedef] = ACTIONS(6436), + [anon_sym_switch] = ACTIONS(6438), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(6451), + [sym_identifier] = ACTIONS(6440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_continue] = ACTIONS(6442), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_extern] = ACTIONS(63), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_case] = ACTIONS(8365), + [anon_sym_case] = ACTIONS(8331), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(111), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(6459), - [anon_sym_default] = ACTIONS(8365), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(6448), + [anon_sym_default] = ACTIONS(8331), [anon_sym_AMP] = ACTIONS(119), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(8367), + [anon_sym_RBRACE] = ACTIONS(8333), [anon_sym_STAR] = ACTIONS(119), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), - [anon_sym_short] = ACTIONS(460), + [anon_sym_typename] = ACTIONS(472), + [anon_sym_short] = ACTIONS(462), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), + [anon_sym_goto] = ACTIONS(6452), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(6471), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [anon_sym_if] = ACTIONS(6460), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3096] = { - [sym_do_statement] = STATE(3859), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [3069] = { + [anon_sym_COLON_COLON] = ACTIONS(8335), + [sym_comment] = ACTIONS(3), + }, + [3070] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(8337), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [3071] = { + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(8337), + }, + [3072] = { + [sym_template_function] = STATE(3830), + [sym_destructor_name] = STATE(3830), + [sym_pointer_declarator] = STATE(3830), + [sym_structured_binding_declarator] = STATE(3830), + [sym__declarator] = STATE(3830), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(3830), + [sym_array_declarator] = STATE(3830), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(3831), + [sym_function_declarator] = STATE(3830), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(8339), + [sym_comment] = ACTIONS(3), + }, + [3073] = { + [sym_initializer_list] = STATE(311), + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(8335), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [3074] = { + [sym_do_statement] = STATE(3833), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(3859), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(3859), - [sym_if_statement] = STATE(3859), - [sym_switch_statement] = STATE(3859), - [sym_for_statement] = STATE(3859), - [sym_return_statement] = STATE(3859), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3833), + [sym_try_statement] = STATE(3833), + [aux_sym_switch_body_repeat1] = STATE(3833), + [sym_if_statement] = STATE(3833), + [sym_switch_statement] = STATE(3833), + [sym_for_statement] = STATE(3833), + [sym_return_statement] = STATE(3833), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(3859), - [aux_sym_switch_body_repeat1] = STATE(3859), - [sym_case_statement] = STATE(3859), - [sym_break_statement] = STATE(3859), - [sym_continue_statement] = STATE(3859), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(3833), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3833), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3859), - [sym_labeled_statement] = STATE(3859), - [sym_expression_statement] = STATE(3859), - [sym_while_statement] = STATE(3859), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(3833), + [sym_for_range_loop] = STATE(3833), + [sym_compound_statement] = STATE(3833), + [sym_labeled_statement] = STATE(3833), + [sym_expression_statement] = STATE(3833), + [sym_while_statement] = STATE(3833), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(8369), + [anon_sym_RBRACE] = ACTIONS(8341), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3097] = { - [anon_sym_LPAREN2] = ACTIONS(2158), - [anon_sym_DASH] = ACTIONS(2156), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_true] = ACTIONS(2156), - [anon_sym_else] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_sizeof] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_switch] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_goto] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2158), - [sym_number_literal] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2156), - [sym_nullptr] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2158), + [3075] = { + [anon_sym_LPAREN2] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2158), + [sym_raw_string_literal] = ACTIONS(2160), + [sym_true] = ACTIONS(2158), + [anon_sym_else] = ACTIONS(2158), + [sym_null] = ACTIONS(2158), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2158), + [anon_sym_goto] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_delete] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2158), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2158), + [sym_nullptr] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_case] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), }, - [3098] = { - [anon_sym_LPAREN2] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2353), - [sym_raw_string_literal] = ACTIONS(2355), - [sym_true] = ACTIONS(2353), - [anon_sym_else] = ACTIONS(2353), - [sym_null] = ACTIONS(2353), - [anon_sym_COLON_COLON] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_sizeof] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_goto] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_delete] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2353), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2353), - [sym_nullptr] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_case] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), + [3076] = { + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2357), + [sym_true] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_switch] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2357), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_case] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), }, - [3099] = { - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3140), - [sym_raw_string_literal] = ACTIONS(3142), - [sym_true] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_switch] = ACTIONS(3140), - [sym_identifier] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3142), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), + [3077] = { + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3142), + [sym_raw_string_literal] = ACTIONS(3144), + [sym_true] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3142), + [sym_null] = ACTIONS(3142), + [anon_sym_COLON_COLON] = ACTIONS(3144), + [anon_sym_default] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_sizeof] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_switch] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_goto] = ACTIONS(3142), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_delete] = ACTIONS(3142), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_DQUOTE] = ACTIONS(3144), + [sym_number_literal] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3142), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3142), + [sym_nullptr] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_case] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3144), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), }, - [3100] = { - [anon_sym_LPAREN2] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3146), - [sym_raw_string_literal] = ACTIONS(3148), - [sym_true] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_sizeof] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3146), - [sym_identifier] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_goto] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3146), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3146), - [sym_nullptr] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_case] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), + [3078] = { + [anon_sym_LPAREN2] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3148), + [sym_raw_string_literal] = ACTIONS(3150), + [sym_true] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_sizeof] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_goto] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3150), + [sym_number_literal] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3148), + [sym_nullptr] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_SQUOTE] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), }, - [3101] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3861), - [sym_logical_expression] = STATE(3861), - [sym_bitwise_expression] = STATE(3861), - [sym_cast_expression] = STATE(3861), - [sym_new_expression] = STATE(3861), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3861), - [sym_char_literal] = STATE(3861), - [sym_template_function] = STATE(3861), - [sym_conditional_expression] = STATE(3861), - [sym_equality_expression] = STATE(3861), - [sym_relational_expression] = STATE(3861), - [sym_delete_expression] = STATE(3861), - [sym_sizeof_expression] = STATE(3861), - [sym_parenthesized_expression] = STATE(3861), - [sym_lambda_expression] = STATE(3861), - [sym_concatenated_string] = STATE(3861), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3861), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3861), - [sym_math_expression] = STATE(3861), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8371), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(8373), - [sym_null] = ACTIONS(8373), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8371), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(8373), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(8373), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(8375), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [3079] = { + [sym_template_function] = STATE(3835), + [sym__expression] = STATE(3835), + [sym_logical_expression] = STATE(3835), + [sym_bitwise_expression] = STATE(3835), + [sym_cast_expression] = STATE(3835), + [sym_delete_expression] = STATE(3835), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3835), + [sym_lambda_expression] = STATE(3835), + [sym_char_literal] = STATE(3835), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3835), + [sym_equality_expression] = STATE(3835), + [sym_relational_expression] = STATE(3835), + [sym_sizeof_expression] = STATE(3835), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3835), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(3835), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3835), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3835), + [sym_math_expression] = STATE(3835), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3835), + [sym_raw_string_literal] = ACTIONS(8343), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(8345), + [sym_null] = ACTIONS(8345), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8343), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(8345), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(8345), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(8347), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [3102] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(8377), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3080] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(8349), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3103] = { - [anon_sym_COLON] = ACTIONS(8379), + [3081] = { + [anon_sym_COLON] = ACTIONS(8351), [sym_comment] = ACTIONS(3), }, - [3104] = { - [sym_parameter_list] = STATE(3864), - [anon_sym_LPAREN2] = ACTIONS(587), + [3082] = { + [sym_parameter_list] = STATE(3838), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), }, - [3105] = { - [aux_sym_try_statement_repeat1] = STATE(3865), - [sym_catch_clause] = STATE(3865), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(8381), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [3083] = { + [sym_catch_clause] = STATE(3839), + [aux_sym_try_statement_repeat1] = STATE(3839), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [sym_true] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(8353), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), }, - [3106] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(8383), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3084] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(8355), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3107] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3867), - [sym_logical_expression] = STATE(3867), - [sym_bitwise_expression] = STATE(3867), - [sym_cast_expression] = STATE(3867), - [sym_new_expression] = STATE(3867), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(3867), - [sym_char_literal] = STATE(3867), - [sym_template_function] = STATE(3867), - [sym_conditional_expression] = STATE(3867), - [sym_equality_expression] = STATE(3867), - [sym_relational_expression] = STATE(3867), - [sym_delete_expression] = STATE(3867), - [sym_sizeof_expression] = STATE(3867), - [sym_parenthesized_expression] = STATE(3867), - [sym_lambda_expression] = STATE(3867), - [sym_concatenated_string] = STATE(3867), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(3867), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(3867), - [sym_math_expression] = STATE(3867), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8385), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(8387), - [sym_null] = ACTIONS(8387), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8385), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(8387), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(8387), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [3085] = { + [sym_template_function] = STATE(3841), + [sym__expression] = STATE(3841), + [sym_logical_expression] = STATE(3841), + [sym_bitwise_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_char_literal] = STATE(3841), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3841), + [sym_equality_expression] = STATE(3841), + [sym_relational_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(3841), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(3841), + [sym_math_expression] = STATE(3841), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(3841), + [sym_raw_string_literal] = ACTIONS(8357), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(8359), + [sym_null] = ACTIONS(8359), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8357), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(8359), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(8359), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [3108] = { - [sym_parenthesized_expression] = STATE(3868), - [anon_sym_LPAREN2] = ACTIONS(372), + [3086] = { + [sym_parenthesized_expression] = STATE(3842), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [3109] = { - [sym_goto_statement] = STATE(3869), - [sym_logical_expression] = STATE(3091), - [sym_for_range_loop] = STATE(3869), - [sym_cast_expression] = STATE(3091), - [sym_declaration] = STATE(3869), + [3087] = { + [sym_goto_statement] = STATE(3843), + [sym_logical_expression] = STATE(3070), + [sym_try_statement] = STATE(3843), + [sym_cast_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_union_specifier] = STATE(278), - [sym_switch_statement] = STATE(3869), - [sym_return_statement] = STATE(3869), - [sym_template_function] = STATE(3091), - [sym_conditional_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3843), + [aux_sym_function_definition_repeat1] = STATE(3067), + [sym_type_qualifier] = STATE(285), + [aux_sym_case_statement_repeat1] = STATE(3843), + [sym_union_specifier] = STATE(280), + [sym_switch_statement] = STATE(3843), + [sym_return_statement] = STATE(3843), + [sym_conditional_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(73), - [sym_type_definition] = STATE(3869), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_break_statement] = STATE(3869), - [sym_assignment_expression] = STATE(3091), - [sym_shift_expression] = STATE(3091), - [sym_attribute] = STATE(3094), + [sym_scoped_namespace_identifier] = STATE(3069), + [sym_type_definition] = STATE(3843), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_break_statement] = STATE(3843), + [sym_assignment_expression] = STATE(3070), + [sym_for_range_loop] = STATE(3843), + [sym_shift_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_compound_statement] = STATE(3869), - [sym_expression_statement] = STATE(3869), - [sym_do_statement] = STATE(3869), - [sym_template_type] = STATE(722), - [sym__expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), - [sym_compound_literal_expression] = STATE(3091), - [sym_char_literal] = STATE(3091), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_if_statement] = STATE(3869), - [sym_for_statement] = STATE(3869), - [sym_comma_expression] = STATE(3092), - [sym_equality_expression] = STATE(3091), - [sym_try_statement] = STATE(3869), - [sym_sizeof_expression] = STATE(3091), - [sym__declaration_specifiers] = STATE(3093), - [sym_parenthesized_expression] = STATE(3091), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(3091), - [aux_sym_function_definition_repeat1] = STATE(3094), - [sym_macro_type_specifier] = STATE(278), - [sym_lambda_expression] = STATE(3091), - [sym_sized_type_specifier] = STATE(278), - [aux_sym_case_statement_repeat1] = STATE(3869), - [sym_continue_statement] = STATE(3869), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_compound_statement] = STATE(3843), + [sym_expression_statement] = STATE(3843), + [sym_do_statement] = STATE(3843), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_compound_literal_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_if_statement] = STATE(3843), + [sym_for_statement] = STATE(3843), + [sym_comma_expression] = STATE(3071), + [sym_equality_expression] = STATE(3070), + [sym_attribute] = STATE(3067), + [sym_sizeof_expression] = STATE(3070), + [sym__declaration_specifiers] = STATE(3072), + [sym_parenthesized_expression] = STATE(3070), + [sym_concatenated_string] = STATE(3070), + [sym_macro_type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [sym_template_type] = STATE(3073), + [sym_continue_statement] = STATE(3843), [sym_pointer_expression] = STATE(47), - [sym_math_expression] = STATE(3091), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(727), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_labeled_statement] = STATE(3869), - [sym_while_statement] = STATE(3869), + [sym_new_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), + [sym_enum_specifier] = STATE(280), + [sym_labeled_statement] = STATE(3843), + [sym_while_statement] = STATE(3843), [anon_sym_DASH] = ACTIONS(7), - [sym_raw_string_literal] = ACTIONS(6441), - [sym_true] = ACTIONS(6443), + [sym_raw_string_literal] = ACTIONS(6430), + [sym_true] = ACTIONS(6432), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(6443), - [anon_sym_break] = ACTIONS(6445), + [sym_null] = ACTIONS(6432), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(6447), - [anon_sym_switch] = ACTIONS(6449), + [anon_sym_typedef] = ACTIONS(6436), + [anon_sym_switch] = ACTIONS(6438), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(6451), + [sym_identifier] = ACTIONS(6440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_continue] = ACTIONS(6442), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_extern] = ACTIONS(63), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_case] = ACTIONS(8365), + [anon_sym_case] = ACTIONS(8331), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(111), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(6459), - [anon_sym_default] = ACTIONS(8365), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(6448), + [anon_sym_default] = ACTIONS(8331), [anon_sym_AMP] = ACTIONS(119), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(8367), + [anon_sym_RBRACE] = ACTIONS(8333), [anon_sym_STAR] = ACTIONS(119), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), - [anon_sym_short] = ACTIONS(460), + [anon_sym_typename] = ACTIONS(472), + [anon_sym_short] = ACTIONS(462), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), + [anon_sym_goto] = ACTIONS(6452), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(6471), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [anon_sym_if] = ACTIONS(6460), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3110] = { - [anon_sym_LPAREN2] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3678), - [sym_raw_string_literal] = ACTIONS(3680), - [sym_true] = ACTIONS(3678), - [anon_sym_else] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [anon_sym_COLON_COLON] = ACTIONS(3680), - [anon_sym_default] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_sizeof] = ACTIONS(3678), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3678), - [sym_identifier] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_goto] = ACTIONS(3678), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3680), - [sym_number_literal] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3678), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3678), - [sym_nullptr] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_case] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3680), - }, - [3111] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [sym_raw_string_literal] = ACTIONS(2709), - [sym_true] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [sym_null] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym_catch] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2707), - [sym_nullptr] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - }, - [3112] = { - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_mutable] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_final] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_GT2] = ACTIONS(5018), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_static] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5018), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_override] = ACTIONS(5020), - [anon_sym_explicit] = ACTIONS(5020), - [sym_identifier] = ACTIONS(5020), - [sym_operator_name] = ACTIONS(5018), - [sym_noexcept] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_register] = ACTIONS(5020), - [anon_sym__Atomic] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_extern] = ACTIONS(5020), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5018), - [anon_sym_LT_LT] = ACTIONS(5018), - [anon_sym_constexpr] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5018), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_TILDE] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_inline] = ACTIONS(5020), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_restrict] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5020), - [anon_sym_DASH_GT] = ACTIONS(5018), - }, - [3113] = { - [sym_field_declaration_list] = STATE(3870), - [anon_sym_LBRACE] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - }, - [3114] = { - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_LBRACE] = ACTIONS(5144), - [anon_sym_mutable] = ACTIONS(5146), - [anon_sym_DASH_DASH] = ACTIONS(5144), - [anon_sym_final] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(5144), - [anon_sym_GT2] = ACTIONS(5144), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_static] = ACTIONS(5146), - [anon_sym_volatile] = ACTIONS(5146), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5146), - [anon_sym_STAR] = ACTIONS(5144), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_override] = ACTIONS(5146), - [anon_sym_explicit] = ACTIONS(5146), - [sym_identifier] = ACTIONS(5146), - [sym_operator_name] = ACTIONS(5144), - [sym_noexcept] = ACTIONS(5146), - [anon_sym_CARET] = ACTIONS(5144), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_register] = ACTIONS(5146), - [anon_sym__Atomic] = ACTIONS(5146), - [anon_sym_const] = ACTIONS(5146), - [anon_sym_extern] = ACTIONS(5146), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5144), - [anon_sym_LT_LT] = ACTIONS(5144), - [anon_sym_constexpr] = ACTIONS(5146), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_TILDE] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_inline] = ACTIONS(5146), - [anon_sym_EQ] = ACTIONS(5146), - [anon_sym_restrict] = ACTIONS(5146), - [anon_sym_GT_GT] = ACTIONS(5146), - [anon_sym_DASH_GT] = ACTIONS(5144), - }, - [3115] = { - [anon_sym_LPAREN2] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_mutable] = ACTIONS(5239), - [anon_sym_DASH_DASH] = ACTIONS(5237), - [anon_sym_final] = ACTIONS(5239), - [anon_sym_COLON_COLON] = ACTIONS(5237), - [anon_sym_GT2] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_AMP] = ACTIONS(5239), - [anon_sym_static] = ACTIONS(5239), - [anon_sym_volatile] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_GT_EQ] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_override] = ACTIONS(5239), - [anon_sym_explicit] = ACTIONS(5239), - [sym_identifier] = ACTIONS(5239), - [sym_operator_name] = ACTIONS(5237), - [sym_noexcept] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_register] = ACTIONS(5239), - [anon_sym__Atomic] = ACTIONS(5239), - [anon_sym_const] = ACTIONS(5239), - [anon_sym_extern] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5237), - [anon_sym_LT_LT] = ACTIONS(5237), - [anon_sym_constexpr] = ACTIONS(5239), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5237), - [anon_sym_QMARK] = ACTIONS(5237), - [anon_sym_TILDE] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_inline] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_restrict] = ACTIONS(5239), - [anon_sym_GT_GT] = ACTIONS(5239), - [anon_sym_DASH_GT] = ACTIONS(5237), - }, - [3116] = { - [sym_field_declaration_list] = STATE(3871), - [anon_sym_LBRACE] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), + [3088] = { + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3688), + [sym_raw_string_literal] = ACTIONS(3690), + [sym_true] = ACTIONS(3688), + [anon_sym_else] = ACTIONS(3688), + [sym_null] = ACTIONS(3688), + [anon_sym_COLON_COLON] = ACTIONS(3690), + [anon_sym_default] = ACTIONS(3688), + [anon_sym_break] = ACTIONS(3688), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_sizeof] = ACTIONS(3688), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3688), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_switch] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3688), + [anon_sym_new] = ACTIONS(3688), + [anon_sym_goto] = ACTIONS(3688), + [anon_sym_while] = ACTIONS(3688), + [anon_sym_continue] = ACTIONS(3688), + [anon_sym_for] = ACTIONS(3688), + [anon_sym_delete] = ACTIONS(3688), + [anon_sym_try] = ACTIONS(3688), + [anon_sym_DQUOTE] = ACTIONS(3690), + [sym_number_literal] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3688), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3688), + [sym_nullptr] = ACTIONS(3688), + [anon_sym_do] = ACTIONS(3688), + [anon_sym_case] = ACTIONS(3688), + [anon_sym_return] = ACTIONS(3688), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3690), }, - [3117] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_GT2] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), + [3089] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [sym_raw_string_literal] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_switch] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), + }, + [3090] = { + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5016), + [anon_sym_COLON_COLON] = ACTIONS(5014), + [anon_sym_GT2] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_static] = ACTIONS(5016), + [anon_sym_volatile] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_override] = ACTIONS(5016), + [anon_sym_explicit] = ACTIONS(5016), + [sym_identifier] = ACTIONS(5016), + [sym_operator_name] = ACTIONS(5014), + [sym_noexcept] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5016), + [anon_sym__Atomic] = ACTIONS(5016), + [anon_sym_const] = ACTIONS(5016), + [anon_sym_extern] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_TILDE] = ACTIONS(5014), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_AMP_AMP] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_restrict] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5014), + }, + [3091] = { + [sym_field_declaration_list] = STATE(3844), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2164), }, - [3118] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_GT2] = ACTIONS(3739), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(3739), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3739), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3741), + [3092] = { + [anon_sym_LPAREN2] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5090), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_final] = ACTIONS(5090), + [anon_sym_COLON_COLON] = ACTIONS(5088), + [anon_sym_GT2] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_static] = ACTIONS(5090), + [anon_sym_volatile] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_override] = ACTIONS(5090), + [anon_sym_explicit] = ACTIONS(5090), + [sym_identifier] = ACTIONS(5090), + [sym_operator_name] = ACTIONS(5088), + [sym_noexcept] = ACTIONS(5090), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_register] = ACTIONS(5090), + [anon_sym__Atomic] = ACTIONS(5090), + [anon_sym_const] = ACTIONS(5090), + [anon_sym_extern] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_TILDE] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_inline] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_restrict] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_DASH_GT] = ACTIONS(5088), }, - [3119] = { - [sym_argument_list] = STATE(1165), + [3093] = { + [anon_sym_LPAREN2] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5236), + [anon_sym_LBRACE] = ACTIONS(5236), + [anon_sym_mutable] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5236), + [anon_sym_final] = ACTIONS(5238), + [anon_sym_COLON_COLON] = ACTIONS(5236), + [anon_sym_GT2] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_static] = ACTIONS(5238), + [anon_sym_volatile] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5238), + [anon_sym_override] = ACTIONS(5238), + [anon_sym_explicit] = ACTIONS(5238), + [sym_identifier] = ACTIONS(5238), + [sym_operator_name] = ACTIONS(5236), + [sym_noexcept] = ACTIONS(5238), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_register] = ACTIONS(5238), + [anon_sym__Atomic] = ACTIONS(5238), + [anon_sym_const] = ACTIONS(5238), + [anon_sym_extern] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_constexpr] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_TILDE] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_BANG_EQ] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_inline] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_restrict] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_DASH_GT] = ACTIONS(5236), + }, + [3094] = { + [sym_field_declaration_list] = STATE(3845), + [anon_sym_LBRACE] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + }, + [3095] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2166), + }, + [3096] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_GT2] = ACTIONS(3850), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3852), + [anon_sym_STAR] = ACTIONS(3850), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3852), + }, + [3097] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4979), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(4983), + [anon_sym_LT_LT] = ACTIONS(4979), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_GT2] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_QMARK] = ACTIONS(4983), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4979), + [anon_sym_GT2] = ACTIONS(4979), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_QMARK] = ACTIONS(4979), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4979), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), [anon_sym_DASH_GT] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4977), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [3120] = { - [anon_sym_LPAREN2] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4985), - [anon_sym_GT2] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4985), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_GT_GT] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4985), + [3098] = { + [anon_sym_LPAREN2] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_GT2] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_QMARK] = ACTIONS(4981), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4981), }, - [3121] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(3872), - [sym_logical_expression] = STATE(3872), - [sym_bitwise_expression] = STATE(3872), - [sym_cast_expression] = STATE(3872), - [sym_new_expression] = STATE(3872), + [3099] = { + [sym_template_function] = STATE(3846), + [sym__expression] = STATE(3846), + [sym_logical_expression] = STATE(3846), + [sym_bitwise_expression] = STATE(3846), + [sym_cast_expression] = STATE(3846), + [sym_delete_expression] = STATE(3846), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(3872), - [sym_char_literal] = STATE(3872), - [sym_template_function] = STATE(3872), - [sym_conditional_expression] = STATE(3872), - [sym_equality_expression] = STATE(3872), - [sym_relational_expression] = STATE(3872), - [sym_delete_expression] = STATE(3872), - [sym_sizeof_expression] = STATE(3872), - [sym_parenthesized_expression] = STATE(3872), - [sym_lambda_expression] = STATE(3872), - [sym_concatenated_string] = STATE(3872), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(3846), + [sym_lambda_expression] = STATE(3846), + [sym_char_literal] = STATE(3846), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(3846), + [sym_equality_expression] = STATE(3846), + [sym_relational_expression] = STATE(3846), + [sym_sizeof_expression] = STATE(3846), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(3872), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(3846), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(3846), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(3846), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(3872), - [sym_math_expression] = STATE(3872), + [sym_shift_expression] = STATE(3846), + [sym_math_expression] = STATE(3846), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8389), - [anon_sym_DASH] = ACTIONS(706), - [sym_true] = ACTIONS(8391), - [anon_sym_DASH_DASH] = ACTIONS(740), - [sym_null] = ACTIONS(8391), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(8389), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8391), - [sym_nullptr] = ACTIONS(8391), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), + [sym_new_expression] = STATE(3846), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8361), + [anon_sym_DASH] = ACTIONS(710), + [sym_true] = ACTIONS(8363), + [anon_sym_DASH_DASH] = ACTIONS(744), + [sym_null] = ACTIONS(8363), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(8361), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8363), + [sym_nullptr] = ACTIONS(8363), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), }, - [3122] = { - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_STAR_EQ] = ACTIONS(2816), - [anon_sym_LT_LT_EQ] = ACTIONS(2816), - [anon_sym_PERCENT_EQ] = ACTIONS(2816), - [anon_sym_GT2] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_CARET_EQ] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_SLASH_EQ] = ACTIONS(2816), - [anon_sym_PLUS_EQ] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_PIPE_EQ] = ACTIONS(2816), - [anon_sym_GT_GT_EQ] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_DASH_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_AMP_EQ] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_DASH_GT] = ACTIONS(2816), - [anon_sym_EQ] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2816), + [3100] = { + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_STAR_EQ] = ACTIONS(2818), + [anon_sym_LT_LT_EQ] = ACTIONS(2818), + [anon_sym_PERCENT_EQ] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_CARET_EQ] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_SLASH_EQ] = ACTIONS(2818), + [anon_sym_PLUS_EQ] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_PIPE_EQ] = ACTIONS(2818), + [anon_sym_GT_GT_EQ] = ACTIONS(2820), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_DASH_EQ] = ACTIONS(2818), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_AMP_EQ] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_DASH_GT] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2818), }, - [3123] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3873), - [sym_logical_expression] = STATE(3873), - [sym_bitwise_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_new_expression] = STATE(3873), - [sym_field_expression] = STATE(3873), - [sym_compound_literal_expression] = STATE(3873), - [sym_char_literal] = STATE(3873), - [sym_template_function] = STATE(3873), - [sym_conditional_expression] = STATE(3873), - [sym_equality_expression] = STATE(3873), - [sym_relational_expression] = STATE(3873), - [sym_delete_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_parenthesized_expression] = STATE(3873), - [sym_initializer_list] = STATE(3874), - [sym_concatenated_string] = STATE(3873), - [sym_string_literal] = STATE(1106), - [sym_lambda_expression] = STATE(3873), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3873), - [sym_pointer_expression] = STATE(3873), - [sym_shift_expression] = STATE(3873), - [sym_math_expression] = STATE(3873), - [sym_call_expression] = STATE(3873), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(8393), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(8395), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [sym_null] = ACTIONS(8395), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(8393), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(8395), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(8395), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_LBRACE] = ACTIONS(4247), + [3101] = { + [sym_template_function] = STATE(3847), + [sym__expression] = STATE(3847), + [sym_logical_expression] = STATE(3847), + [sym_bitwise_expression] = STATE(3847), + [sym_cast_expression] = STATE(3847), + [sym_delete_expression] = STATE(3847), + [sym_field_expression] = STATE(3847), + [sym_compound_literal_expression] = STATE(3847), + [sym_lambda_expression] = STATE(3847), + [sym_char_literal] = STATE(3847), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3847), + [sym_equality_expression] = STATE(3847), + [sym_relational_expression] = STATE(3847), + [sym_sizeof_expression] = STATE(3847), + [sym_subscript_expression] = STATE(3847), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_initializer_list] = STATE(3848), + [sym_parenthesized_expression] = STATE(3847), + [sym_string_literal] = STATE(1102), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_concatenated_string] = STATE(3847), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3847), + [sym_pointer_expression] = STATE(3847), + [sym_shift_expression] = STATE(3847), + [sym_math_expression] = STATE(3847), + [sym_call_expression] = STATE(3847), + [sym_new_expression] = STATE(3847), + [sym_raw_string_literal] = ACTIONS(8365), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(8367), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_null] = ACTIONS(8367), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(8365), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(8367), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(8367), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4245), }, - [3124] = { - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_STAR_EQ] = ACTIONS(3184), - [anon_sym_LT_LT_EQ] = ACTIONS(3184), - [anon_sym_PERCENT_EQ] = ACTIONS(3184), - [anon_sym_GT2] = ACTIONS(3184), - [anon_sym_EQ_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_CARET_EQ] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_GT_EQ] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_SLASH_EQ] = ACTIONS(3184), - [anon_sym_PLUS_EQ] = ACTIONS(3184), - [anon_sym_CARET] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_PIPE_EQ] = ACTIONS(3184), - [anon_sym_GT_GT_EQ] = ACTIONS(3186), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PIPE_PIPE] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_LT_LT] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3184), - [anon_sym_DASH_EQ] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3184), - [anon_sym_AMP_EQ] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_DASH_GT] = ACTIONS(3184), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3184), + [3102] = { + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_LT_LT_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_GT2] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_CARET_EQ] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3188), + [anon_sym_GT] = ACTIONS(3188), + [anon_sym_PIPE_EQ] = ACTIONS(3186), + [anon_sym_GT_GT_EQ] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_AMP_EQ] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3186), }, - [3125] = { - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_STAR_EQ] = ACTIONS(1651), - [anon_sym_LT_LT_EQ] = ACTIONS(1651), - [anon_sym_PERCENT_EQ] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1651), - [anon_sym_EQ_EQ] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_CARET_EQ] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_SLASH_EQ] = ACTIONS(1651), - [anon_sym_PLUS_EQ] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_PIPE_EQ] = ACTIONS(1651), - [anon_sym_GT_GT_EQ] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_PIPE_PIPE] = ACTIONS(1651), - [anon_sym_DOT] = ACTIONS(1651), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_PERCENT] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_DASH_EQ] = ACTIONS(1651), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_AMP_EQ] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_DASH_GT] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(1651), + [3103] = { + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_STAR_EQ] = ACTIONS(1661), + [anon_sym_LT_LT_EQ] = ACTIONS(1661), + [anon_sym_PERCENT_EQ] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_CARET_EQ] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_SLASH_EQ] = ACTIONS(1661), + [anon_sym_PLUS_EQ] = ACTIONS(1661), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_PIPE_EQ] = ACTIONS(1661), + [anon_sym_GT_GT_EQ] = ACTIONS(2923), + [anon_sym_COMMA] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_DOT] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_DASH_EQ] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_AMP_EQ] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_DASH_GT] = ACTIONS(1661), + [anon_sym_EQ] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_GT_GT] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(1661), }, - [3126] = { - [sym_template_type] = STATE(239), + [3104] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(8397), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(8369), }, - [3127] = { - [sym_argument_list] = STATE(1165), + [3105] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_GT2] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(6695), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(6701), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(5296), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(6703), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_GT2] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(6684), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(6690), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(5295), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(6692), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(6707), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(6696), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3128] = { - [anon_sym_RPAREN] = ACTIONS(8399), + [3106] = { + [anon_sym_RPAREN] = ACTIONS(8371), [sym_comment] = ACTIONS(3), }, - [3129] = { - [sym_argument_list] = STATE(1165), + [3107] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_GT2] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(6695), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(6701), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(5300), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(6707), - [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), - }, - [3130] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(6618), [anon_sym_STAR_EQ] = ACTIONS(2162), [anon_sym_LT_LT_EQ] = ACTIONS(2162), [anon_sym_PERCENT_EQ] = ACTIONS(2162), [anon_sym_GT2] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(6684), + [anon_sym_LT] = ACTIONS(6686), [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), [anon_sym_SLASH_EQ] = ACTIONS(2162), [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(6690), + [anon_sym_GT] = ACTIONS(6686), [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2164), + [anon_sym_GT_GT_EQ] = ACTIONS(5299), [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(6692), + [anon_sym_DOT] = ACTIONS(2307), + [anon_sym_LT_LT] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_PERCENT] = ACTIONS(6620), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(2162), [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(6696), + [anon_sym_DASH_GT] = ACTIONS(2307), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3131] = { - [anon_sym_LPAREN2] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_LT_LT_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_GT2] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2164), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2162), + [3108] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_STAR_EQ] = ACTIONS(2164), + [anon_sym_LT_LT_EQ] = ACTIONS(2164), + [anon_sym_PERCENT_EQ] = ACTIONS(2164), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_CARET_EQ] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_SLASH_EQ] = ACTIONS(2164), + [anon_sym_PLUS_EQ] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_PIPE_EQ] = ACTIONS(2164), + [anon_sym_GT_GT_EQ] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_DASH_EQ] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), }, - [3132] = { - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_final] = ACTIONS(2202), - [anon_sym_STAR_EQ] = ACTIONS(2202), - [anon_sym_LT_LT_EQ] = ACTIONS(2202), - [anon_sym_PERCENT_EQ] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_CARET_EQ] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2204), - [anon_sym_SLASH_EQ] = ACTIONS(2202), - [anon_sym_PLUS_EQ] = ACTIONS(2202), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_PIPE_EQ] = ACTIONS(2202), - [anon_sym_GT_GT_EQ] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(2202), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2204), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2202), - [anon_sym_DASH_EQ] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_AMP_EQ] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_DASH_GT] = ACTIONS(2202), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2204), + [3109] = { + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_STAR_EQ] = ACTIONS(2164), + [anon_sym_LT_LT_EQ] = ACTIONS(2164), + [anon_sym_PERCENT_EQ] = ACTIONS(2164), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_CARET_EQ] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_SLASH_EQ] = ACTIONS(2164), + [anon_sym_PLUS_EQ] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_PIPE_EQ] = ACTIONS(2164), + [anon_sym_GT_GT_EQ] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_DASH_EQ] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_AMP_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), }, - [3133] = { - [sym_argument_list] = STATE(1165), - [aux_sym_template_argument_list_repeat1] = STATE(3878), + [3110] = { + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_final] = ACTIONS(2204), + [anon_sym_STAR_EQ] = ACTIONS(2204), + [anon_sym_LT_LT_EQ] = ACTIONS(2204), + [anon_sym_PERCENT_EQ] = ACTIONS(2204), + [anon_sym_GT2] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_CARET_EQ] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_SLASH_EQ] = ACTIONS(2204), + [anon_sym_PLUS_EQ] = ACTIONS(2204), + [anon_sym_CARET] = ACTIONS(2206), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_PIPE_EQ] = ACTIONS(2204), + [anon_sym_GT_GT_EQ] = ACTIONS(2206), + [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2204), + [anon_sym_DASH_EQ] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_AMP_EQ] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_DASH_GT] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_GT_GT] = ACTIONS(2206), + }, + [3111] = { + [aux_sym_template_argument_list_repeat1] = STATE(3852), + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), @@ -129978,7 +129605,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_GT2] = ACTIONS(8401), + [anon_sym_GT2] = ACTIONS(8373), [anon_sym_AMP] = ACTIONS(2321), [anon_sym_QMARK] = ACTIONS(2323), [sym_comment] = ACTIONS(3), @@ -129994,779 +129621,739 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [3134] = { - [aux_sym_template_argument_list_repeat1] = STATE(3880), + [3112] = { + [aux_sym_template_argument_list_repeat1] = STATE(3854), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(8403), + [anon_sym_GT2] = ACTIONS(8375), [sym_comment] = ACTIONS(3), }, - [3135] = { + [3113] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8405), + [anon_sym_RBRACE] = ACTIONS(8377), }, - [3136] = { - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2397), - [anon_sym_LT_LT_EQ] = ACTIONS(2397), - [anon_sym_PERCENT_EQ] = ACTIONS(2397), - [anon_sym_GT2] = ACTIONS(2397), - [anon_sym_EQ_EQ] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_CARET_EQ] = ACTIONS(2397), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_SLASH] = ACTIONS(2399), - [anon_sym_SLASH_EQ] = ACTIONS(2397), - [anon_sym_PLUS_EQ] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_PIPE_EQ] = ACTIONS(2397), - [anon_sym_GT_GT_EQ] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_PIPE_PIPE] = ACTIONS(2397), - [anon_sym_DOT] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2397), - [anon_sym_DASH_EQ] = ACTIONS(2397), - [anon_sym_LT_EQ] = ACTIONS(2397), - [anon_sym_BANG_EQ] = ACTIONS(2397), - [anon_sym_AMP_EQ] = ACTIONS(2397), - [anon_sym_AMP_AMP] = ACTIONS(2397), - [anon_sym_DASH_GT] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_GT_GT] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2397), + [3114] = { + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR_EQ] = ACTIONS(2399), + [anon_sym_LT_LT_EQ] = ACTIONS(2399), + [anon_sym_PERCENT_EQ] = ACTIONS(2399), + [anon_sym_GT2] = ACTIONS(2399), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_CARET_EQ] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_SLASH_EQ] = ACTIONS(2399), + [anon_sym_PLUS_EQ] = ACTIONS(2399), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_PIPE_EQ] = ACTIONS(2399), + [anon_sym_GT_GT_EQ] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_DOT] = ACTIONS(2399), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_PERCENT] = ACTIONS(2401), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2399), + [anon_sym_DASH_EQ] = ACTIONS(2399), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_AMP_EQ] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_DASH_GT] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2399), }, - [3137] = { - [sym_argument_list] = STATE(341), - [aux_sym_initializer_list_repeat1] = STATE(3883), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(8407), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(8405), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3115] = { + [aux_sym_initializer_list_repeat1] = STATE(3857), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(8379), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(8377), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3138] = { - [aux_sym_initializer_list_repeat1] = STATE(3883), + [3116] = { + [aux_sym_initializer_list_repeat1] = STATE(3857), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8407), - [anon_sym_RBRACE] = ACTIONS(8405), + [anon_sym_COMMA] = ACTIONS(8379), + [anon_sym_RBRACE] = ACTIONS(8377), }, - [3139] = { - [sym_template_argument_list] = STATE(3155), - [sym_virtual_specifier] = STATE(3884), - [sym_field_declaration_list] = STATE(3885), - [sym_base_class_clause] = STATE(3886), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1084), - [anon_sym_LT_LT_EQ] = ACTIONS(1084), - [anon_sym_PERCENT_EQ] = ACTIONS(1084), - [anon_sym_GT2] = ACTIONS(1084), - [anon_sym_COLON_COLON] = ACTIONS(6663), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(8409), - [anon_sym_CARET_EQ] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1086), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_SLASH] = ACTIONS(1086), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1084), - [anon_sym_PLUS_EQ] = ACTIONS(1084), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1084), - [anon_sym_GT_GT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_PERCENT] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_DASH_EQ] = ACTIONS(1084), - [anon_sym_LT_EQ] = ACTIONS(1084), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_AMP_EQ] = ACTIONS(1084), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_DASH_GT] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_GT_GT] = ACTIONS(1086), + [3117] = { + [sym_virtual_specifier] = STATE(3858), + [sym_template_argument_list] = STATE(3133), + [sym_field_declaration_list] = STATE(3859), + [sym_base_class_clause] = STATE(3860), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1088), + [anon_sym_LT_LT_EQ] = ACTIONS(1088), + [anon_sym_PERCENT_EQ] = ACTIONS(1088), + [anon_sym_GT2] = ACTIONS(1088), + [anon_sym_COLON_COLON] = ACTIONS(6652), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(8381), + [anon_sym_CARET_EQ] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1088), + [anon_sym_PLUS_EQ] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1088), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_PERCENT] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_DASH_EQ] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_AMP_EQ] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_DASH_GT] = ACTIONS(1088), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_GT_GT] = ACTIONS(1090), }, - [3140] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3888), - [sym_preproc_function_def] = STATE(3888), - [sym_alias_declaration] = STATE(3888), + [3118] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3862), + [sym_preproc_function_def] = STATE(3862), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3888), - [sym_preproc_if_in_field_declaration_list] = STATE(3888), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3888), - [sym_type_definition] = STATE(3888), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3888), - [sym__field_declaration_list_item] = STATE(3888), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3888), - [sym_inline_method_definition] = STATE(3888), - [sym_friend_declaration] = STATE(3888), - [sym_access_specifier] = STATE(3888), - [sym_using_declaration] = STATE(3888), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3888), - [sym_constructor_or_destructor_definition] = STATE(3888), - [sym_constructor_or_destructor_declaration] = STATE(3888), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3862), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3862), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3862), + [sym_preproc_if_in_field_declaration_list] = STATE(3862), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3862), + [sym_type_definition] = STATE(3862), + [sym_using_declaration] = STATE(3862), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3862), + [sym_inline_method_definition] = STATE(3862), + [sym_constructor_or_destructor_definition] = STATE(3862), + [sym_access_specifier] = STATE(3862), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3862), + [sym_alias_declaration] = STATE(3862), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3862), + [sym_constructor_or_destructor_declaration] = STATE(3862), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(8411), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(8383), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [3141] = { - [sym_field_declaration_list] = STATE(3889), - [sym_base_class_clause] = STATE(3890), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(6655), + [3119] = { + [sym_virtual_specifier] = STATE(3863), + [sym_template_argument_list] = STATE(3150), + [sym_field_declaration_list] = STATE(3864), + [sym_base_class_clause] = STATE(3865), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_GT2] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(8381), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1132), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_GT_GT] = ACTIONS(1132), }, - [3142] = { - [sym_virtual_specifier] = STATE(3891), - [sym_field_declaration_list] = STATE(3889), - [sym_base_class_clause] = STATE(3890), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_GT2] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(6674), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_GT_GT] = ACTIONS(1128), - }, - [3143] = { - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_GT2] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1128), - }, - [3144] = { - [sym_template_argument_list] = STATE(3166), - [sym_virtual_specifier] = STATE(3891), - [sym_field_declaration_list] = STATE(3889), - [sym_base_class_clause] = STATE(3890), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_GT2] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(8409), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_DASH_GT] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_GT_GT] = ACTIONS(1128), - }, - [3145] = { - [sym_field_declaration_list] = STATE(3889), - [anon_sym_LBRACE] = ACTIONS(6655), + [3120] = { + [sym_field_declaration_list] = STATE(3864), + [sym_base_class_clause] = STATE(3865), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3146] = { - [sym_template_argument_list] = STATE(3155), - [sym_virtual_specifier] = STATE(3892), - [sym_field_declaration_list] = STATE(3893), - [sym_base_class_clause] = STATE(3894), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_GT2] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(6663), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(8409), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1251), - [anon_sym_GT_GT_EQ] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_AMP_EQ] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_DASH_GT] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_GT_GT] = ACTIONS(1253), - }, - [3147] = { - [sym_field_declaration_list] = STATE(3895), - [sym_base_class_clause] = STATE(3896), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(6655), + [3121] = { + [sym_virtual_specifier] = STATE(3863), + [sym_field_declaration_list] = STATE(3864), + [sym_base_class_clause] = STATE(3865), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_GT2] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(6676), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1132), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_GT_GT] = ACTIONS(1132), }, - [3148] = { - [sym_virtual_specifier] = STATE(3897), - [sym_field_declaration_list] = STATE(3895), - [sym_base_class_clause] = STATE(3896), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_LT_LT_EQ] = ACTIONS(1255), - [anon_sym_PERCENT_EQ] = ACTIONS(1255), - [anon_sym_GT2] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(6674), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_CARET_EQ] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1255), - [anon_sym_GT_GT_EQ] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1257), + [3122] = { + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_GT2] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1132), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1132), }, - [3149] = { - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_LT_LT_EQ] = ACTIONS(1255), - [anon_sym_PERCENT_EQ] = ACTIONS(1255), - [anon_sym_GT2] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_CARET_EQ] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1255), - [anon_sym_GT_GT_EQ] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1257), + [3123] = { + [sym_field_declaration_list] = STATE(3864), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1257), }, - [3150] = { - [sym_template_argument_list] = STATE(3166), - [sym_virtual_specifier] = STATE(3897), - [sym_field_declaration_list] = STATE(3895), - [sym_base_class_clause] = STATE(3896), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_LT_LT_EQ] = ACTIONS(1255), - [anon_sym_PERCENT_EQ] = ACTIONS(1255), - [anon_sym_GT2] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(8409), - [anon_sym_CARET_EQ] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1255), - [anon_sym_GT_GT_EQ] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_PERCENT] = ACTIONS(1257), + [3124] = { + [sym_virtual_specifier] = STATE(3866), + [sym_template_argument_list] = STATE(3133), + [sym_field_declaration_list] = STATE(3867), + [sym_base_class_clause] = STATE(3868), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_GT2] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(6652), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(8381), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_AMP_EQ] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_DASH_GT] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_DASH_GT] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_GT_GT] = ACTIONS(1259), }, - [3151] = { - [sym_field_declaration_list] = STATE(3895), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), + [3125] = { + [sym_virtual_specifier] = STATE(3869), + [sym_template_argument_list] = STATE(3150), + [sym_field_declaration_list] = STATE(3870), + [sym_base_class_clause] = STATE(3871), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_GT2] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(8381), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_GT_GT] = ACTIONS(1263), }, - [3152] = { - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_STAR_EQ] = ACTIONS(1259), - [anon_sym_LT_LT_EQ] = ACTIONS(1259), - [anon_sym_PERCENT_EQ] = ACTIONS(1259), - [anon_sym_GT2] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_CARET_EQ] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_SLASH_EQ] = ACTIONS(1259), - [anon_sym_PLUS_EQ] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_PIPE_EQ] = ACTIONS(1259), - [anon_sym_GT_GT_EQ] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT_LT] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_PERCENT] = ACTIONS(1261), + [3126] = { + [sym_field_declaration_list] = STATE(3870), + [sym_base_class_clause] = STATE(3871), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_DASH_EQ] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_AMP_EQ] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_DASH_GT] = ACTIONS(1259), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_GT_GT] = ACTIONS(1261), }, - [3153] = { - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1135), - [anon_sym_final] = ACTIONS(1135), - [anon_sym_STAR_EQ] = ACTIONS(1135), - [anon_sym_LT_LT_EQ] = ACTIONS(1135), - [anon_sym_PERCENT_EQ] = ACTIONS(1135), - [anon_sym_GT2] = ACTIONS(1135), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_CARET_EQ] = ACTIONS(1135), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_GT_EQ] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_SLASH] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1137), - [anon_sym_SLASH_EQ] = ACTIONS(1135), - [anon_sym_PLUS_EQ] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1137), - [anon_sym_GT] = ACTIONS(1137), - [anon_sym_PIPE_EQ] = ACTIONS(1135), - [anon_sym_GT_GT_EQ] = ACTIONS(1137), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_PERCENT] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_DASH_EQ] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1135), - [anon_sym_BANG_EQ] = ACTIONS(1135), - [anon_sym_AMP_EQ] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_DASH_GT] = ACTIONS(1135), - [anon_sym_EQ] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1137), + [3127] = { + [sym_virtual_specifier] = STATE(3869), + [sym_field_declaration_list] = STATE(3870), + [sym_base_class_clause] = STATE(3871), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_GT2] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(6676), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_GT_GT] = ACTIONS(1263), }, - [3154] = { - [sym_identifier] = ACTIONS(8413), + [3128] = { + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_GT2] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1263), + }, + [3129] = { + [sym_field_declaration_list] = STATE(3870), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3155] = { - [anon_sym_LPAREN2] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(789), - [anon_sym_final] = ACTIONS(789), - [anon_sym_STAR_EQ] = ACTIONS(789), - [anon_sym_LT_LT_EQ] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_CARET_EQ] = ACTIONS(789), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_override] = ACTIONS(789), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_SLASH_EQ] = ACTIONS(789), - [anon_sym_PLUS_EQ] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_PIPE_EQ] = ACTIONS(789), - [anon_sym_GT_GT_EQ] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_DASH_EQ] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_AMP_EQ] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_DASH_GT] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(787), + [3130] = { + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_GT2] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_PERCENT] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_DASH_GT] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_GT_GT] = ACTIONS(1267), }, - [3156] = { - [sym_enumerator] = STATE(3901), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(8415), - [anon_sym_COMMA] = ACTIONS(8417), + [3131] = { + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_final] = ACTIONS(1141), + [anon_sym_STAR_EQ] = ACTIONS(1141), + [anon_sym_LT_LT_EQ] = ACTIONS(1141), + [anon_sym_PERCENT_EQ] = ACTIONS(1141), + [anon_sym_GT2] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_CARET_EQ] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_override] = ACTIONS(1141), + [anon_sym_COLON] = ACTIONS(1143), + [anon_sym_SLASH_EQ] = ACTIONS(1141), + [anon_sym_PLUS_EQ] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_PIPE_EQ] = ACTIONS(1141), + [anon_sym_GT_GT_EQ] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_PERCENT] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_DASH_EQ] = ACTIONS(1141), + [anon_sym_LT_EQ] = ACTIONS(1141), + [anon_sym_BANG_EQ] = ACTIONS(1141), + [anon_sym_AMP_EQ] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_DASH_GT] = ACTIONS(1141), + [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1143), + }, + [3132] = { + [sym_identifier] = ACTIONS(8385), [sym_comment] = ACTIONS(3), }, - [3157] = { - [sym_enumerator_list] = STATE(3902), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_STAR_EQ] = ACTIONS(872), - [anon_sym_LT_LT_EQ] = ACTIONS(872), - [anon_sym_PERCENT_EQ] = ACTIONS(872), - [anon_sym_GT2] = ACTIONS(872), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_CARET_EQ] = ACTIONS(872), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_SLASH_EQ] = ACTIONS(872), - [anon_sym_PLUS_EQ] = ACTIONS(872), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_PIPE_EQ] = ACTIONS(872), - [anon_sym_GT_GT_EQ] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_DOT] = ACTIONS(872), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PERCENT] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(872), - [anon_sym_DASH_EQ] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_AMP_EQ] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_GT_GT] = ACTIONS(874), + [3133] = { + [anon_sym_LPAREN2] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_final] = ACTIONS(797), + [anon_sym_STAR_EQ] = ACTIONS(797), + [anon_sym_LT_LT_EQ] = ACTIONS(797), + [anon_sym_PERCENT_EQ] = ACTIONS(797), + [anon_sym_GT2] = ACTIONS(797), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_CARET_EQ] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_override] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SLASH_EQ] = ACTIONS(797), + [anon_sym_PLUS_EQ] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_PIPE_EQ] = ACTIONS(797), + [anon_sym_GT_GT_EQ] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_LT_LT] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_PERCENT] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_DASH_EQ] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_AMP_EQ] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_DASH_GT] = ACTIONS(797), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(795), }, - [3158] = { + [3134] = { + [sym_enumerator] = STATE(3875), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(8387), + [anon_sym_COMMA] = ACTIONS(8389), + [sym_comment] = ACTIONS(3), + }, + [3135] = { + [sym_enumerator_list] = STATE(3876), [anon_sym_LPAREN2] = ACTIONS(876), [anon_sym_DASH] = ACTIONS(878), [anon_sym_DASH_DASH] = ACTIONS(876), @@ -130808,1336 +130395,1250 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(876), [anon_sym_GT_GT] = ACTIONS(878), }, - [3159] = { - [sym_template_argument_list] = STATE(3155), - [sym_virtual_specifier] = STATE(3903), - [sym_field_declaration_list] = STATE(3904), - [sym_base_class_clause] = STATE(3905), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_LT_LT_EQ] = ACTIONS(1472), - [anon_sym_PERCENT_EQ] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(6663), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(8409), - [anon_sym_CARET_EQ] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_SLASH] = ACTIONS(1474), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_PIPE_EQ] = ACTIONS(1472), - [anon_sym_GT_GT_EQ] = ACTIONS(1474), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_LT_LT] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_AMP_EQ] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_DASH_GT] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_GT_GT] = ACTIONS(1474), + [3136] = { + [anon_sym_LPAREN2] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_STAR_EQ] = ACTIONS(880), + [anon_sym_LT_LT_EQ] = ACTIONS(880), + [anon_sym_PERCENT_EQ] = ACTIONS(880), + [anon_sym_GT2] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_CARET_EQ] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_SLASH_EQ] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_PIPE_EQ] = ACTIONS(880), + [anon_sym_GT_GT_EQ] = ACTIONS(882), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_PERCENT] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(880), + [anon_sym_DASH_EQ] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_AMP_EQ] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_DASH_GT] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(882), }, - [3160] = { - [sym_field_declaration_list] = STATE(3906), - [sym_base_class_clause] = STATE(3907), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), + [3137] = { + [sym_virtual_specifier] = STATE(3877), + [sym_template_argument_list] = STATE(3133), + [sym_field_declaration_list] = STATE(3878), + [sym_base_class_clause] = STATE(3879), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_GT2] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(6652), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(8381), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_DASH_GT] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_GT_GT] = ACTIONS(1488), }, - [3161] = { - [sym_virtual_specifier] = STATE(3908), - [sym_field_declaration_list] = STATE(3906), - [sym_base_class_clause] = STATE(3907), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(6674), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_GT_GT] = ACTIONS(1478), + [3138] = { + [sym_virtual_specifier] = STATE(3880), + [sym_template_argument_list] = STATE(3150), + [sym_field_declaration_list] = STATE(3881), + [sym_base_class_clause] = STATE(3882), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(8381), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_GT_GT] = ACTIONS(1492), }, - [3162] = { - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1478), + [3139] = { + [sym_field_declaration_list] = STATE(3881), + [sym_base_class_clause] = STATE(3882), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(6644), + [sym_comment] = ACTIONS(3), }, - [3163] = { - [sym_template_argument_list] = STATE(3166), - [sym_virtual_specifier] = STATE(3908), - [sym_field_declaration_list] = STATE(3906), - [sym_base_class_clause] = STATE(3907), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(8409), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_DASH_GT] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(6655), - [anon_sym_GT_GT] = ACTIONS(1478), + [3140] = { + [sym_virtual_specifier] = STATE(3880), + [sym_field_declaration_list] = STATE(3881), + [sym_base_class_clause] = STATE(3882), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(6676), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(6644), + [anon_sym_GT_GT] = ACTIONS(1492), }, - [3164] = { - [sym_field_declaration_list] = STATE(3906), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), + [3141] = { + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_GT_GT] = ACTIONS(1492), }, - [3165] = { - [sym_identifier] = ACTIONS(8419), + [3142] = { + [sym_field_declaration_list] = STATE(3881), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3166] = { - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_final] = ACTIONS(2036), - [anon_sym_STAR_EQ] = ACTIONS(2036), - [anon_sym_LT_LT_EQ] = ACTIONS(2036), - [anon_sym_PERCENT_EQ] = ACTIONS(2036), - [anon_sym_GT2] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_CARET_EQ] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_override] = ACTIONS(2036), - [anon_sym_COLON] = ACTIONS(2038), - [anon_sym_SLASH_EQ] = ACTIONS(2036), - [anon_sym_PLUS_EQ] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2038), - [anon_sym_GT] = ACTIONS(2038), - [anon_sym_PIPE_EQ] = ACTIONS(2036), - [anon_sym_GT_GT_EQ] = ACTIONS(2038), - [anon_sym_COMMA] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_PERCENT] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2036), - [anon_sym_DASH_EQ] = ACTIONS(2036), - [anon_sym_LT_EQ] = ACTIONS(2036), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_AMP_EQ] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_DASH_GT] = ACTIONS(2036), - [anon_sym_EQ] = ACTIONS(2038), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2038), - }, - [3167] = { - [anon_sym_LPAREN2] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_STAR_EQ] = ACTIONS(2069), - [anon_sym_LT_LT_EQ] = ACTIONS(2069), - [anon_sym_PERCENT_EQ] = ACTIONS(2069), - [anon_sym_GT2] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_CARET_EQ] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_GT_EQ] = ACTIONS(2071), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_SLASH] = ACTIONS(2071), - [anon_sym_SLASH_EQ] = ACTIONS(2069), - [anon_sym_PLUS_EQ] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2071), - [anon_sym_GT] = ACTIONS(2071), - [anon_sym_PIPE_EQ] = ACTIONS(2069), - [anon_sym_GT_GT_EQ] = ACTIONS(2071), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_PERCENT] = ACTIONS(2071), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2069), - [anon_sym_DASH_EQ] = ACTIONS(2069), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_AMP_EQ] = ACTIONS(2069), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_DASH_GT] = ACTIONS(2069), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2071), + [3143] = { + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_LT_LT_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_CARET_EQ] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_GT_EQ] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_PIPE_EQ] = ACTIONS(1770), + [anon_sym_GT_GT_EQ] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_AMP_EQ] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_GT_GT] = ACTIONS(1772), }, - [3168] = { - [anon_sym_LPAREN2] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_STAR_EQ] = ACTIONS(2073), - [anon_sym_LT_LT_EQ] = ACTIONS(2073), - [anon_sym_PERCENT_EQ] = ACTIONS(2073), - [anon_sym_GT2] = ACTIONS(2073), - [anon_sym_EQ_EQ] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_CARET_EQ] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2075), - [anon_sym_GT_EQ] = ACTIONS(2075), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_SLASH] = ACTIONS(2075), - [anon_sym_SLASH_EQ] = ACTIONS(2073), - [anon_sym_PLUS_EQ] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2075), - [anon_sym_GT] = ACTIONS(2075), - [anon_sym_PIPE_EQ] = ACTIONS(2073), - [anon_sym_GT_GT_EQ] = ACTIONS(2075), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(2073), - [anon_sym_DOT] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_PERCENT] = ACTIONS(2075), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2073), - [anon_sym_DASH_EQ] = ACTIONS(2073), - [anon_sym_LT_EQ] = ACTIONS(2073), - [anon_sym_BANG_EQ] = ACTIONS(2073), - [anon_sym_AMP_EQ] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(2073), - [anon_sym_DASH_GT] = ACTIONS(2073), - [anon_sym_EQ] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_GT_GT] = ACTIONS(2075), + [3144] = { + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_STAR_EQ] = ACTIONS(1774), + [anon_sym_LT_LT_EQ] = ACTIONS(1774), + [anon_sym_PERCENT_EQ] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1774), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1774), + [anon_sym_PLUS_EQ] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_PIPE_EQ] = ACTIONS(1774), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_DASH_EQ] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_AMP_EQ] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1776), }, - [3169] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3169), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(8421), - [anon_sym_long] = ACTIONS(8421), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_GT2] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(8421), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(8421), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [3145] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3145), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(8391), + [anon_sym_long] = ACTIONS(8391), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_GT2] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(8391), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(8391), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), }, - [3170] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3910), - [sym_logical_expression] = STATE(3910), - [sym_bitwise_expression] = STATE(3910), - [sym_cast_expression] = STATE(3910), - [sym_new_expression] = STATE(3910), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3910), - [sym_char_literal] = STATE(3910), - [sym_template_function] = STATE(3910), - [sym_conditional_expression] = STATE(3910), - [sym_equality_expression] = STATE(3910), - [sym_relational_expression] = STATE(3910), - [sym_delete_expression] = STATE(3910), - [sym_sizeof_expression] = STATE(3910), - [sym_parenthesized_expression] = STATE(3910), - [sym_lambda_expression] = STATE(3910), - [sym_concatenated_string] = STATE(3910), - [sym_string_literal] = STATE(967), + [3146] = { + [sym_template_function] = STATE(3883), + [sym__expression] = STATE(3883), + [sym_logical_expression] = STATE(3883), + [sym_bitwise_expression] = STATE(3883), + [sym_cast_expression] = STATE(3883), + [sym_delete_expression] = STATE(3883), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3883), + [sym_lambda_expression] = STATE(3883), + [sym_char_literal] = STATE(3883), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3910), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3910), - [sym_math_expression] = STATE(3910), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3883), + [sym_equality_expression] = STATE(3883), + [sym_relational_expression] = STATE(3883), + [sym_sizeof_expression] = STATE(3883), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(8424), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(8426), - [sym_null] = ACTIONS(8426), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(8424), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(8426), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(8426), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(3883), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3883), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3883), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3883), + [sym_math_expression] = STATE(3883), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3883), + [sym_raw_string_literal] = ACTIONS(8394), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(8396), + [sym_null] = ACTIONS(8396), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(8394), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(8396), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(8396), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [3171] = { - [sym_argument_list] = STATE(3911), - [sym_initializer_list] = STATE(3911), + [3147] = { + [sym_argument_list] = STATE(3884), + [sym_initializer_list] = STATE(3884), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(4247), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_GT2] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(4245), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_GT2] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [3172] = { - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_GT2] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [3148] = { + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_GT2] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [3173] = { - [sym_initializer_list] = STATE(3911), - [sym_new_declarator] = STATE(3912), - [sym_argument_list] = STATE(3911), + [3149] = { + [sym_new_declarator] = STATE(3885), + [sym_argument_list] = STATE(3884), + [sym_initializer_list] = STATE(3884), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(4247), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_GT2] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(6685), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(4245), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_GT2] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(6669), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [3174] = { - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2689), - [anon_sym_LT_LT_EQ] = ACTIONS(2689), - [anon_sym_PERCENT_EQ] = ACTIONS(2689), - [anon_sym_GT2] = ACTIONS(2689), - [anon_sym_EQ_EQ] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2689), - [anon_sym_PLUS_EQ] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2689), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_PIPE_PIPE] = ACTIONS(2689), - [anon_sym_DOT] = ACTIONS(2689), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_PERCENT] = ACTIONS(2691), + [3150] = { + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_final] = ACTIONS(1683), + [anon_sym_STAR_EQ] = ACTIONS(1683), + [anon_sym_LT_LT_EQ] = ACTIONS(1683), + [anon_sym_PERCENT_EQ] = ACTIONS(1683), + [anon_sym_GT2] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_CARET_EQ] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_override] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_SLASH_EQ] = ACTIONS(1683), + [anon_sym_PLUS_EQ] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_PIPE_EQ] = ACTIONS(1683), + [anon_sym_GT_GT_EQ] = ACTIONS(1685), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1683), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_PERCENT] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1683), + [anon_sym_DASH_EQ] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_AMP_EQ] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_DASH_GT] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_GT_GT] = ACTIONS(1685), + }, + [3151] = { + [sym_identifier] = ACTIONS(8398), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2689), - [anon_sym_DASH_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2689), - [anon_sym_AMP_EQ] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_DASH_GT] = ACTIONS(2689), - [anon_sym_EQ] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2689), }, - [3175] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3913), - [sym_logical_expression] = STATE(3913), - [sym_bitwise_expression] = STATE(3913), - [sym_cast_expression] = STATE(3913), - [sym_new_expression] = STATE(3913), - [sym_field_expression] = STATE(3913), - [sym_compound_literal_expression] = STATE(3913), - [sym_char_literal] = STATE(3913), - [sym_template_function] = STATE(3913), - [sym_conditional_expression] = STATE(3913), - [sym_equality_expression] = STATE(3913), - [sym_relational_expression] = STATE(3913), - [sym_delete_expression] = STATE(3913), - [sym_sizeof_expression] = STATE(3913), - [sym_parenthesized_expression] = STATE(3913), - [sym_lambda_expression] = STATE(3913), - [sym_concatenated_string] = STATE(3913), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3913), - [sym_assignment_expression] = STATE(3913), - [sym_pointer_expression] = STATE(3913), - [sym_shift_expression] = STATE(3913), - [sym_math_expression] = STATE(3913), - [sym_call_expression] = STATE(3913), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8428), - [anon_sym_DASH] = ACTIONS(2212), - [sym_true] = ACTIONS(8430), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [sym_null] = ACTIONS(8430), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(8428), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8430), - [sym_nullptr] = ACTIONS(8430), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - }, - [3176] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_STAR_EQ] = ACTIONS(3739), - [anon_sym_LT_LT_EQ] = ACTIONS(3739), - [anon_sym_PERCENT_EQ] = ACTIONS(3739), - [anon_sym_GT2] = ACTIONS(3739), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3741), - [anon_sym_CARET_EQ] = ACTIONS(3739), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(3741), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_SLASH_EQ] = ACTIONS(3739), - [anon_sym_PLUS_EQ] = ACTIONS(3739), - [anon_sym_CARET] = ACTIONS(3741), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_PIPE_EQ] = ACTIONS(3739), - [anon_sym_GT_GT_EQ] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3741), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3741), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_DASH_EQ] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_EQ] = ACTIONS(3741), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_GT_GT] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), + [3152] = { + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_GT2] = ACTIONS(2691), + [anon_sym_EQ_EQ] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_CARET] = ACTIONS(2693), + [anon_sym_GT] = ACTIONS(2693), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2691), + [anon_sym_PIPE_PIPE] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(2691), + [anon_sym_LT_LT] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_PERCENT] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_LT_EQ] = ACTIONS(2691), + [anon_sym_BANG_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_DASH_GT] = ACTIONS(2691), + [anon_sym_EQ] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2691), }, - [3177] = { - [anon_sym_LPAREN2] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3739), - [anon_sym_LT_LT_EQ] = ACTIONS(3739), - [anon_sym_PERCENT_EQ] = ACTIONS(3739), - [anon_sym_GT2] = ACTIONS(3739), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3739), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(3741), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_SLASH_EQ] = ACTIONS(3739), - [anon_sym_PLUS_EQ] = ACTIONS(3739), - [anon_sym_CARET] = ACTIONS(3741), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_PIPE_EQ] = ACTIONS(3739), - [anon_sym_GT_GT_EQ] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3739), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3739), - [anon_sym_LT_LT] = ACTIONS(3741), - [anon_sym_LBRACK] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3741), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_DASH_EQ] = ACTIONS(3739), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_AMP_EQ] = ACTIONS(3739), - [anon_sym_AMP_AMP] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_EQ] = ACTIONS(3741), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_GT_GT] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3739), + [3153] = { + [sym_template_function] = STATE(3887), + [sym__expression] = STATE(3887), + [sym_logical_expression] = STATE(3887), + [sym_bitwise_expression] = STATE(3887), + [sym_cast_expression] = STATE(3887), + [sym_delete_expression] = STATE(3887), + [sym_field_expression] = STATE(3887), + [sym_compound_literal_expression] = STATE(3887), + [sym_lambda_expression] = STATE(3887), + [sym_char_literal] = STATE(3887), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3887), + [sym_equality_expression] = STATE(3887), + [sym_relational_expression] = STATE(3887), + [sym_sizeof_expression] = STATE(3887), + [sym_subscript_expression] = STATE(3887), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(3887), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(3887), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3887), + [sym_pointer_expression] = STATE(3887), + [sym_shift_expression] = STATE(3887), + [sym_math_expression] = STATE(3887), + [sym_call_expression] = STATE(3887), + [sym_new_expression] = STATE(3887), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8400), + [anon_sym_DASH] = ACTIONS(2214), + [sym_true] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_null] = ACTIONS(8402), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(8400), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8402), + [sym_nullptr] = ACTIONS(8402), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), }, - [3178] = { - [sym_argument_list] = STATE(1165), + [3154] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_GT2] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3757), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_GT2] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3903), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3179] = { - [sym_argument_list] = STATE(1165), + [3155] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_GT2] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(3761), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3761), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_GT2] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(3907), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3907), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3180] = { - [sym_argument_list] = STATE(1165), + [3156] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_GT2] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3765), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_GT2] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(3765), + [anon_sym_LT_LT] = ACTIONS(3911), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3181] = { - [sym_argument_list] = STATE(1165), + [3157] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_GT2] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(6695), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(6701), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_GT2] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(6684), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(6690), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(5309), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(6707), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(6696), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3182] = { - [sym_argument_list] = STATE(1165), + [3158] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_GT2] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(3792), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3792), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_GT2] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3938), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(3792), + [anon_sym_LT_LT] = ACTIONS(3938), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3183] = { - [sym_argument_list] = STATE(1165), + [3159] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_GT2] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3765), - [anon_sym_STAR] = ACTIONS(3765), - [anon_sym_SLASH] = ACTIONS(3765), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_GT2] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(3765), + [anon_sym_LT_LT] = ACTIONS(3911), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(3765), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), + [anon_sym_PERCENT] = ACTIONS(3911), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3184] = { - [sym_argument_list] = STATE(1165), + [3160] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_GT2] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3796), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_GT2] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3942), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3185] = { - [sym_argument_list] = STATE(1165), + [3161] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_GT2] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(6701), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3757), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_GT2] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(6690), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3903), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3186] = { - [sym_argument_list] = STATE(1165), + [3162] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_GT2] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3757), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_GT2] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3903), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3187] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(8432), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3163] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(8404), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3188] = { - [sym_argument_list] = STATE(1165), + [3164] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_GT2] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(6695), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(6701), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_GT2] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(6684), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(6690), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(5309), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), - }, - [3189] = { - [sym_string_literal] = STATE(3189), - [aux_sym_concatenated_string_repeat1] = STATE(3189), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_GT2] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3734), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(8434), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3190] = { - [sym_goto_statement] = STATE(3916), - [sym_preproc_function_def] = STATE(3916), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(3916), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(3916), + [3165] = { + [sym_goto_statement] = STATE(3890), + [sym_preproc_function_def] = STATE(3890), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(3890), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(3916), - [sym_return_statement] = STATE(3916), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3890), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(3890), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(3890), + [sym_namespace_definition] = STATE(3890), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(3916), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(3916), - [sym_break_statement] = STATE(3916), - [sym_preproc_include] = STATE(3916), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(3916), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(3916), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(3890), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(3890), + [sym_constructor_or_destructor_definition] = STATE(3890), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(3890), + [sym_preproc_include] = STATE(3890), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(3890), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(3890), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(3916), - [sym_template_instantiation] = STATE(3916), - [sym_constructor_or_destructor_definition] = STATE(3916), - [sym_expression_statement] = STATE(3916), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(3916), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(3916), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(3916), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(3916), - [aux_sym_translation_unit_repeat1] = STATE(3916), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(3916), - [sym_if_statement] = STATE(3916), - [sym_for_statement] = STATE(3916), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(3916), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(3916), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(3916), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(3916), - [sym_preproc_if] = STATE(3916), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(3890), + [sym_expression_statement] = STATE(3890), + [sym_do_statement] = STATE(3890), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(3890), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(3890), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(3890), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(3890), + [sym_for_statement] = STATE(3890), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(3890), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(3890), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(3890), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(3890), + [sym_preproc_if] = STATE(3890), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(3916), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(3916), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(3916), - [sym_while_statement] = STATE(3916), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(3890), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(3890), + [aux_sym_translation_unit_repeat1] = STATE(3890), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(3890), + [sym_while_statement] = STATE(3890), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -132179,7 +131680,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(8437), + [anon_sym_RBRACE] = ACTIONS(8406), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -132211,614 +131712,742 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3191] = { - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4123), - [anon_sym_STAR_EQ] = ACTIONS(4121), - [anon_sym_LT_LT_EQ] = ACTIONS(4121), - [anon_sym_PERCENT_EQ] = ACTIONS(4121), - [anon_sym_GT2] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4123), - [anon_sym_CARET_EQ] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4123), - [anon_sym_STAR] = ACTIONS(4123), - [anon_sym_SLASH] = ACTIONS(4123), - [anon_sym_SLASH_EQ] = ACTIONS(4121), - [anon_sym_PLUS_EQ] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4123), - [anon_sym_GT] = ACTIONS(4123), - [anon_sym_PIPE_EQ] = ACTIONS(4121), - [anon_sym_GT_GT_EQ] = ACTIONS(4123), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LT_LT] = ACTIONS(4123), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_PERCENT] = ACTIONS(4123), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_DASH_EQ] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_AMP_EQ] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(4123), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4123), - [anon_sym_DASH_DASH] = ACTIONS(4121), + [3166] = { + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_STAR_EQ] = ACTIONS(3844), + [anon_sym_LT_LT_EQ] = ACTIONS(3844), + [anon_sym_PERCENT_EQ] = ACTIONS(3844), + [anon_sym_GT2] = ACTIONS(3844), + [anon_sym_EQ_EQ] = ACTIONS(3844), + [anon_sym_PIPE] = ACTIONS(3846), + [anon_sym_LT] = ACTIONS(3846), + [anon_sym_CARET_EQ] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PLUS] = ACTIONS(3846), + [anon_sym_GT_EQ] = ACTIONS(3846), + [anon_sym_STAR] = ACTIONS(3846), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_SLASH_EQ] = ACTIONS(3844), + [anon_sym_PLUS_EQ] = ACTIONS(3844), + [anon_sym_CARET] = ACTIONS(3846), + [anon_sym_GT] = ACTIONS(3846), + [anon_sym_PIPE_EQ] = ACTIONS(3844), + [anon_sym_GT_GT_EQ] = ACTIONS(3846), + [anon_sym_COMMA] = ACTIONS(3844), + [anon_sym_PIPE_PIPE] = ACTIONS(3844), + [anon_sym_DOT] = ACTIONS(3844), + [anon_sym_LT_LT] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3844), + [anon_sym_PERCENT] = ACTIONS(3846), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3844), + [anon_sym_DASH_EQ] = ACTIONS(3844), + [anon_sym_LT_EQ] = ACTIONS(3844), + [anon_sym_BANG_EQ] = ACTIONS(3844), + [anon_sym_AMP_EQ] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_DASH_GT] = ACTIONS(3844), + [anon_sym_EQ] = ACTIONS(3846), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_GT_GT] = ACTIONS(3846), + [anon_sym_DASH_DASH] = ACTIONS(3844), }, - [3192] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(3119), - [sym_logical_expression] = STATE(3119), - [sym_bitwise_expression] = STATE(3119), - [sym_cast_expression] = STATE(3119), - [sym_new_expression] = STATE(3119), + [3167] = { + [sym_string_literal] = STATE(3167), + [aux_sym_concatenated_string_repeat1] = STATE(3167), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_GT2] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3888), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(8408), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), + }, + [3168] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_STAR_EQ] = ACTIONS(3850), + [anon_sym_LT_LT_EQ] = ACTIONS(3850), + [anon_sym_PERCENT_EQ] = ACTIONS(3850), + [anon_sym_GT2] = ACTIONS(3850), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3852), + [anon_sym_CARET_EQ] = ACTIONS(3850), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3852), + [anon_sym_STAR] = ACTIONS(3852), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_SLASH_EQ] = ACTIONS(3850), + [anon_sym_PLUS_EQ] = ACTIONS(3850), + [anon_sym_CARET] = ACTIONS(3852), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_PIPE_EQ] = ACTIONS(3850), + [anon_sym_GT_GT_EQ] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3852), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3852), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_DASH_EQ] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3852), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_GT_GT] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + }, + [3169] = { + [anon_sym_LPAREN2] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_STAR_EQ] = ACTIONS(3850), + [anon_sym_LT_LT_EQ] = ACTIONS(3850), + [anon_sym_PERCENT_EQ] = ACTIONS(3850), + [anon_sym_GT2] = ACTIONS(3850), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_CARET_EQ] = ACTIONS(3850), + [anon_sym_AMP] = ACTIONS(3852), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3852), + [anon_sym_STAR] = ACTIONS(3852), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_SLASH_EQ] = ACTIONS(3850), + [anon_sym_PLUS_EQ] = ACTIONS(3850), + [anon_sym_CARET] = ACTIONS(3852), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_PIPE_EQ] = ACTIONS(3850), + [anon_sym_GT_GT_EQ] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_LT_LT] = ACTIONS(3852), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3852), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_DASH_EQ] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_AMP_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3850), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3852), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_GT_GT] = ACTIONS(3852), + [anon_sym_DASH_DASH] = ACTIONS(3850), + }, + [3170] = { + [sym_template_function] = STATE(3097), + [sym__expression] = STATE(3097), + [sym_logical_expression] = STATE(3097), + [sym_bitwise_expression] = STATE(3097), + [sym_cast_expression] = STATE(3097), + [sym_delete_expression] = STATE(3097), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(3119), - [sym_char_literal] = STATE(3119), - [sym_template_function] = STATE(3119), - [sym_conditional_expression] = STATE(3119), - [sym_equality_expression] = STATE(3119), - [sym_relational_expression] = STATE(3119), - [sym_delete_expression] = STATE(3119), - [sym_sizeof_expression] = STATE(3119), - [sym_parenthesized_expression] = STATE(3119), - [sym_initializer_list] = STATE(3120), - [sym_concatenated_string] = STATE(3119), - [sym_string_literal] = STATE(424), - [sym_lambda_expression] = STATE(3119), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(3097), + [sym_lambda_expression] = STATE(3097), + [sym_char_literal] = STATE(3097), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(3097), + [sym_equality_expression] = STATE(3097), + [sym_relational_expression] = STATE(3097), + [sym_sizeof_expression] = STATE(3097), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(3119), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_initializer_list] = STATE(3098), + [sym_parenthesized_expression] = STATE(3097), + [sym_string_literal] = STATE(426), + [sym_lambda_capture_specifier] = STATE(425), + [sym_concatenated_string] = STATE(3097), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(3097), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(3119), - [sym_math_expression] = STATE(3119), + [sym_shift_expression] = STATE(3097), + [sym_math_expression] = STATE(3097), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [anon_sym_LPAREN2] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(706), - [sym_raw_string_literal] = ACTIONS(6607), - [sym_true] = ACTIONS(6609), - [anon_sym_LBRACE] = ACTIONS(2250), - [sym_null] = ACTIONS(6609), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_GT2] = ACTIONS(4127), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(8439), - [anon_sym_AMP] = ACTIONS(8441), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(4129), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_LT_LT] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_number_literal] = ACTIONS(6607), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6609), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(6609), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_new_expression] = STATE(3097), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(710), + [sym_raw_string_literal] = ACTIONS(6596), + [sym_true] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(2252), + [sym_null] = ACTIONS(6598), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_GT2] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(8411), + [anon_sym_AMP] = ACTIONS(8413), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_number_literal] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(6598), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [3193] = { - [anon_sym_LPAREN2] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_PLUS_PLUS] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [anon_sym_mutable] = ACTIONS(5329), - [anon_sym_DASH_DASH] = ACTIONS(5327), - [anon_sym_final] = ACTIONS(5329), - [anon_sym_COLON_COLON] = ACTIONS(5327), - [anon_sym_GT2] = ACTIONS(5327), - [anon_sym_EQ_EQ] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5329), - [anon_sym_static] = ACTIONS(5329), - [anon_sym_volatile] = ACTIONS(5329), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_GT_EQ] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_override] = ACTIONS(5329), - [anon_sym_explicit] = ACTIONS(5329), - [sym_identifier] = ACTIONS(5329), - [sym_operator_name] = ACTIONS(5327), - [sym_noexcept] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_register] = ACTIONS(5329), - [anon_sym__Atomic] = ACTIONS(5329), - [anon_sym_const] = ACTIONS(5329), - [anon_sym_extern] = ACTIONS(5329), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_PIPE_PIPE] = ACTIONS(5327), - [anon_sym_DOT] = ACTIONS(5327), - [anon_sym_LT_LT] = ACTIONS(5327), - [anon_sym_constexpr] = ACTIONS(5329), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5327), - [anon_sym_QMARK] = ACTIONS(5327), - [anon_sym_TILDE] = ACTIONS(5327), - [anon_sym_LT_EQ] = ACTIONS(5327), - [anon_sym_BANG_EQ] = ACTIONS(5327), - [anon_sym_AMP_AMP] = ACTIONS(5327), - [anon_sym_inline] = ACTIONS(5329), - [anon_sym_EQ] = ACTIONS(5329), - [anon_sym_restrict] = ACTIONS(5329), - [anon_sym_GT_GT] = ACTIONS(5329), - [anon_sym_DASH_GT] = ACTIONS(5327), + [3171] = { + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_PLUS_PLUS] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_DASH_DASH] = ACTIONS(5326), + [anon_sym_final] = ACTIONS(5328), + [anon_sym_COLON_COLON] = ACTIONS(5326), + [anon_sym_GT2] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5326), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_volatile] = ACTIONS(5328), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_GT_EQ] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5326), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_override] = ACTIONS(5328), + [anon_sym_explicit] = ACTIONS(5328), + [sym_identifier] = ACTIONS(5328), + [sym_operator_name] = ACTIONS(5326), + [sym_noexcept] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5326), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_register] = ACTIONS(5328), + [anon_sym__Atomic] = ACTIONS(5328), + [anon_sym_const] = ACTIONS(5328), + [anon_sym_extern] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5326), + [anon_sym_constexpr] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5326), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_TILDE] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5326), + [anon_sym_BANG_EQ] = ACTIONS(5326), + [anon_sym_AMP_AMP] = ACTIONS(5326), + [anon_sym_inline] = ACTIONS(5328), + [anon_sym_EQ] = ACTIONS(5328), + [anon_sym_restrict] = ACTIONS(5328), + [anon_sym_GT_GT] = ACTIONS(5328), + [anon_sym_DASH_GT] = ACTIONS(5326), }, - [3194] = { - [sym_field_declaration_list] = STATE(3917), - [anon_sym_LBRACE] = ACTIONS(2180), + [3172] = { + [sym_field_declaration_list] = STATE(3891), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [3195] = { - [anon_sym_LPAREN2] = ACTIONS(5331), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_PLUS_PLUS] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_mutable] = ACTIONS(5333), - [anon_sym_DASH_DASH] = ACTIONS(5331), - [anon_sym_final] = ACTIONS(5333), - [anon_sym_COLON_COLON] = ACTIONS(5331), - [anon_sym_GT2] = ACTIONS(5331), - [anon_sym_EQ_EQ] = ACTIONS(5331), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_AMP] = ACTIONS(5333), - [anon_sym_static] = ACTIONS(5333), - [anon_sym_volatile] = ACTIONS(5333), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_GT_EQ] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5331), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_override] = ACTIONS(5333), - [anon_sym_explicit] = ACTIONS(5333), - [sym_identifier] = ACTIONS(5333), - [sym_operator_name] = ACTIONS(5331), - [sym_noexcept] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5331), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_register] = ACTIONS(5333), - [anon_sym__Atomic] = ACTIONS(5333), - [anon_sym_const] = ACTIONS(5333), - [anon_sym_extern] = ACTIONS(5333), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_PIPE_PIPE] = ACTIONS(5331), - [anon_sym_DOT] = ACTIONS(5331), - [anon_sym_LT_LT] = ACTIONS(5331), - [anon_sym_constexpr] = ACTIONS(5333), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5331), - [anon_sym_QMARK] = ACTIONS(5331), - [anon_sym_TILDE] = ACTIONS(5331), - [anon_sym_LT_EQ] = ACTIONS(5331), - [anon_sym_BANG_EQ] = ACTIONS(5331), - [anon_sym_AMP_AMP] = ACTIONS(5331), - [anon_sym_inline] = ACTIONS(5333), - [anon_sym_EQ] = ACTIONS(5333), - [anon_sym_restrict] = ACTIONS(5333), - [anon_sym_GT_GT] = ACTIONS(5333), - [anon_sym_DASH_GT] = ACTIONS(5331), + [3173] = { + [anon_sym_LPAREN2] = ACTIONS(5330), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_PLUS_PLUS] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_DASH_DASH] = ACTIONS(5330), + [anon_sym_final] = ACTIONS(5332), + [anon_sym_COLON_COLON] = ACTIONS(5330), + [anon_sym_GT2] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5330), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_static] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_GT_EQ] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5330), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_override] = ACTIONS(5332), + [anon_sym_explicit] = ACTIONS(5332), + [sym_identifier] = ACTIONS(5332), + [sym_operator_name] = ACTIONS(5330), + [sym_noexcept] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_register] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_PIPE_PIPE] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5330), + [anon_sym_constexpr] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5330), + [anon_sym_QMARK] = ACTIONS(5330), + [anon_sym_TILDE] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5330), + [anon_sym_BANG_EQ] = ACTIONS(5330), + [anon_sym_AMP_AMP] = ACTIONS(5330), + [anon_sym_inline] = ACTIONS(5332), + [anon_sym_EQ] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_DASH_GT] = ACTIONS(5330), }, - [3196] = { - [sym_field_declaration_list] = STATE(3918), - [anon_sym_LBRACE] = ACTIONS(2180), + [3174] = { + [sym_field_declaration_list] = STATE(3892), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [3197] = { - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4386), - [anon_sym_mutable] = ACTIONS(4386), - [anon_sym_EQ] = ACTIONS(4386), - [anon_sym_final] = ACTIONS(4386), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_GT2] = ACTIONS(4384), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_PIPE] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4386), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_static] = ACTIONS(4386), - [anon_sym_volatile] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4386), - [anon_sym_override] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(4386), - [anon_sym_explicit] = ACTIONS(4386), - [sym_identifier] = ACTIONS(4386), - [sym_operator_name] = ACTIONS(4384), - [sym_noexcept] = ACTIONS(4386), - [anon_sym_CARET] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4384), - [anon_sym_PIPE_PIPE] = ACTIONS(4384), - [anon_sym__Atomic] = ACTIONS(4386), - [anon_sym_const] = ACTIONS(4386), - [anon_sym_LT_LT] = ACTIONS(4384), - [anon_sym_LBRACK] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_register] = ACTIONS(4386), - [anon_sym_constexpr] = ACTIONS(4386), - [sym_comment] = ACTIONS(3), - [anon_sym_extern] = ACTIONS(4386), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_TILDE] = ACTIONS(4384), - [anon_sym_LT_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_DASH_GT] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_restrict] = ACTIONS(4386), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_GT_GT] = ACTIONS(4386), + [3175] = { + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_DASH_DASH] = ACTIONS(4378), + [anon_sym_inline] = ACTIONS(4380), + [anon_sym_mutable] = ACTIONS(4380), + [anon_sym_EQ] = ACTIONS(4380), + [anon_sym_final] = ACTIONS(4380), + [anon_sym_COLON_COLON] = ACTIONS(4378), + [anon_sym_GT2] = ACTIONS(4378), + [anon_sym_EQ_EQ] = ACTIONS(4378), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_static] = ACTIONS(4380), + [anon_sym_volatile] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_GT_EQ] = ACTIONS(4380), + [anon_sym_STAR] = ACTIONS(4378), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_override] = ACTIONS(4380), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_explicit] = ACTIONS(4380), + [sym_identifier] = ACTIONS(4380), + [sym_operator_name] = ACTIONS(4378), + [sym_noexcept] = ACTIONS(4380), + [anon_sym_CARET] = ACTIONS(4378), + [anon_sym_GT] = ACTIONS(4380), + [anon_sym_COMMA] = ACTIONS(4378), + [anon_sym_PIPE_PIPE] = ACTIONS(4378), + [anon_sym__Atomic] = ACTIONS(4380), + [anon_sym_const] = ACTIONS(4380), + [anon_sym_LT_LT] = ACTIONS(4378), + [anon_sym_LBRACK] = ACTIONS(4378), + [anon_sym_PERCENT] = ACTIONS(4378), + [anon_sym_DOT] = ACTIONS(4378), + [anon_sym_register] = ACTIONS(4380), + [anon_sym_constexpr] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [anon_sym_extern] = ACTIONS(4380), + [anon_sym_QMARK] = ACTIONS(4378), + [anon_sym_TILDE] = ACTIONS(4378), + [anon_sym_LT_EQ] = ACTIONS(4378), + [anon_sym_BANG_EQ] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_DASH_GT] = ACTIONS(4378), + [anon_sym_PLUS_PLUS] = ACTIONS(4378), + [anon_sym_restrict] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4378), + [anon_sym_GT_GT] = ACTIONS(4380), }, - [3198] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [3176] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(8443), + [anon_sym_GT2] = ACTIONS(8415), [sym_comment] = ACTIONS(3), }, - [3199] = { - [anon_sym_LPAREN2] = ACTIONS(4402), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_mutable] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_GT2] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4402), - [anon_sym_PIPE] = ACTIONS(4404), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_static] = ACTIONS(4404), - [anon_sym_volatile] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_GT_EQ] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4402), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_COLON] = ACTIONS(4404), - [anon_sym_explicit] = ACTIONS(4404), - [sym_identifier] = ACTIONS(4404), - [sym_operator_name] = ACTIONS(4402), - [sym_noexcept] = ACTIONS(4404), - [anon_sym_CARET] = ACTIONS(4402), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym__Atomic] = ACTIONS(4404), - [anon_sym_const] = ACTIONS(4404), - [anon_sym_LT_LT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_PERCENT] = ACTIONS(4402), - [anon_sym_DOT] = ACTIONS(4402), - [anon_sym_register] = ACTIONS(4404), - [anon_sym_constexpr] = ACTIONS(4404), - [sym_comment] = ACTIONS(3), - [anon_sym_extern] = ACTIONS(4404), - [anon_sym_QMARK] = ACTIONS(4402), - [anon_sym_TILDE] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_restrict] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_GT_GT] = ACTIONS(4404), + [3177] = { + [anon_sym_LPAREN2] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4398), + [anon_sym_mutable] = ACTIONS(4398), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_final] = ACTIONS(4398), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_GT2] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_PIPE] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_static] = ACTIONS(4398), + [anon_sym_volatile] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_override] = ACTIONS(4398), + [anon_sym_COLON] = ACTIONS(4398), + [anon_sym_explicit] = ACTIONS(4398), + [sym_identifier] = ACTIONS(4398), + [sym_operator_name] = ACTIONS(4396), + [sym_noexcept] = ACTIONS(4398), + [anon_sym_CARET] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym__Atomic] = ACTIONS(4398), + [anon_sym_const] = ACTIONS(4398), + [anon_sym_LT_LT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_register] = ACTIONS(4398), + [anon_sym_constexpr] = ACTIONS(4398), + [sym_comment] = ACTIONS(3), + [anon_sym_extern] = ACTIONS(4398), + [anon_sym_QMARK] = ACTIONS(4396), + [anon_sym_TILDE] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_restrict] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_GT_GT] = ACTIONS(4398), }, - [3200] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [3178] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(8445), + [anon_sym_GT2] = ACTIONS(8417), [sym_comment] = ACTIONS(3), }, - [3201] = { - [anon_sym_LPAREN2] = ACTIONS(4431), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_GT2] = ACTIONS(4431), - [anon_sym_AMP] = ACTIONS(4433), - [anon_sym_QMARK] = ACTIONS(4431), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4431), + [3179] = { + [anon_sym_LPAREN2] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4429), + [anon_sym_GT] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_COMMA] = ACTIONS(4429), + [anon_sym_PIPE_PIPE] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_LT_LT] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4429), + [anon_sym_PIPE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4431), + [anon_sym_PERCENT] = ACTIONS(4429), + [anon_sym_GT2] = ACTIONS(4429), + [anon_sym_AMP] = ACTIONS(4431), + [anon_sym_QMARK] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4429), + [anon_sym_SLASH] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4429), + [anon_sym_BANG_EQ] = ACTIONS(4429), + [anon_sym_AMP_AMP] = ACTIONS(4429), + [anon_sym_DASH_GT] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4429), + [anon_sym_GT_GT] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4429), }, - [3202] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [3180] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(8447), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(8419), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [3203] = { - [aux_sym_initializer_list_repeat1] = STATE(2268), + [3181] = { + [aux_sym_initializer_list_repeat1] = STATE(2257), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8449), - [anon_sym_RBRACE] = ACTIONS(8447), + [anon_sym_COMMA] = ACTIONS(8421), + [anon_sym_RBRACE] = ACTIONS(8419), }, - [3204] = { - [anon_sym_LPAREN2] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3115), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PIPE_PIPE] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_EQ_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3115), - [anon_sym_GT2] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3115), + [3182] = { + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_CARET] = ACTIONS(3117), + [anon_sym_GT] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3117), + [anon_sym_LT_LT] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3117), + [anon_sym_GT2] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3117), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_GT_EQ] = ACTIONS(3119), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_SLASH] = ACTIONS(3119), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_DASH_GT] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_GT_GT] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3117), }, - [3205] = { - [aux_sym_argument_list_repeat1] = STATE(3924), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(8451), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3183] = { + [aux_sym_argument_list_repeat1] = STATE(3898), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(8423), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3206] = { - [aux_sym_argument_list_repeat1] = STATE(3924), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(8451), + [3184] = { + [aux_sym_argument_list_repeat1] = STATE(3898), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(8423), [sym_comment] = ACTIONS(3), }, - [3207] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8453), + [3185] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8425), }, - [3208] = { - [anon_sym_LPAREN2] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5349), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_PERCENT] = ACTIONS(5349), - [anon_sym_GT2] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_QMARK] = ACTIONS(5349), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5351), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), + [3186] = { + [anon_sym_LPAREN2] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_PERCENT] = ACTIONS(5348), + [anon_sym_GT2] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_QMARK] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5350), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), }, - [3209] = { - [sym_argument_list] = STATE(3926), - [sym_initializer_list] = STATE(3926), - [anon_sym_LPAREN2] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), - [anon_sym_GT2] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5351), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5349), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5349), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(5351), + [3187] = { + [sym_argument_list] = STATE(3900), + [sym_initializer_list] = STATE(3900), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), + [anon_sym_GT2] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5350), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_GT_GT] = ACTIONS(5350), }, - [3210] = { - [sym_argument_list] = STATE(1165), + [3188] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4527), [anon_sym_PIPE_PIPE] = ACTIONS(2305), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), @@ -132827,9 +132456,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(4529), + [anon_sym_GT2] = ACTIONS(4527), [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_QMARK] = ACTIONS(4527), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -132843,625 +132472,519 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [3211] = { - [anon_sym_LPAREN2] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_mutable] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4742), - [anon_sym_COLON_COLON] = ACTIONS(4740), - [anon_sym_GT2] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_AMP] = ACTIONS(4742), - [anon_sym_static] = ACTIONS(4742), - [anon_sym_volatile] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_STAR] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_override] = ACTIONS(4742), - [anon_sym_explicit] = ACTIONS(4742), - [sym_identifier] = ACTIONS(4742), - [sym_operator_name] = ACTIONS(4740), - [sym_noexcept] = ACTIONS(4742), - [anon_sym_CARET] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_register] = ACTIONS(4742), - [anon_sym__Atomic] = ACTIONS(4742), - [anon_sym_const] = ACTIONS(4742), - [anon_sym_extern] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_LT_LT] = ACTIONS(4740), - [anon_sym_constexpr] = ACTIONS(4742), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_QMARK] = ACTIONS(4740), - [anon_sym_TILDE] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_inline] = ACTIONS(4742), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_restrict] = ACTIONS(4742), - [anon_sym_GT_GT] = ACTIONS(4742), - [anon_sym_DASH_GT] = ACTIONS(4740), + [3189] = { + [anon_sym_LPAREN2] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_mutable] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4738), + [anon_sym_COLON_COLON] = ACTIONS(4736), + [anon_sym_GT2] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4738), + [anon_sym_static] = ACTIONS(4738), + [anon_sym_volatile] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4738), + [anon_sym_override] = ACTIONS(4738), + [anon_sym_explicit] = ACTIONS(4738), + [sym_identifier] = ACTIONS(4738), + [sym_operator_name] = ACTIONS(4736), + [sym_noexcept] = ACTIONS(4738), + [anon_sym_CARET] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_register] = ACTIONS(4738), + [anon_sym__Atomic] = ACTIONS(4738), + [anon_sym_const] = ACTIONS(4738), + [anon_sym_extern] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_constexpr] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_QMARK] = ACTIONS(4736), + [anon_sym_TILDE] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4738), + [anon_sym_EQ] = ACTIONS(4738), + [anon_sym_restrict] = ACTIONS(4738), + [anon_sym_GT_GT] = ACTIONS(4738), + [anon_sym_DASH_GT] = ACTIONS(4736), }, - [3212] = { - [sym_enumerator] = STATE(2379), + [3190] = { + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(8455), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(8427), }, - [3213] = { - [aux_sym_enumerator_list_repeat1] = STATE(2381), + [3191] = { + [aux_sym_enumerator_list_repeat1] = STATE(2366), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8457), - [anon_sym_RBRACE] = ACTIONS(8455), - }, - [3214] = { - [anon_sym_LPAREN2] = ACTIONS(5604), - [anon_sym_DASH] = ACTIONS(5606), - [anon_sym_PLUS_PLUS] = ACTIONS(5604), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_mutable] = ACTIONS(5606), - [anon_sym_DASH_DASH] = ACTIONS(5604), - [anon_sym_final] = ACTIONS(5606), - [anon_sym_COLON_COLON] = ACTIONS(5604), - [anon_sym_GT2] = ACTIONS(5604), - [anon_sym_EQ_EQ] = ACTIONS(5604), - [anon_sym_PIPE] = ACTIONS(5606), - [anon_sym_LT] = ACTIONS(5606), - [anon_sym_AMP] = ACTIONS(5606), - [anon_sym_static] = ACTIONS(5606), - [anon_sym_volatile] = ACTIONS(5606), - [anon_sym_PLUS] = ACTIONS(5606), - [anon_sym_GT_EQ] = ACTIONS(5606), - [anon_sym_STAR] = ACTIONS(5604), - [anon_sym_SLASH] = ACTIONS(5606), - [anon_sym_override] = ACTIONS(5606), - [anon_sym_explicit] = ACTIONS(5606), - [sym_identifier] = ACTIONS(5606), - [sym_operator_name] = ACTIONS(5604), - [sym_noexcept] = ACTIONS(5606), - [anon_sym_CARET] = ACTIONS(5604), - [anon_sym_GT] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(5604), - [anon_sym_register] = ACTIONS(5606), - [anon_sym__Atomic] = ACTIONS(5606), - [anon_sym_const] = ACTIONS(5606), - [anon_sym_extern] = ACTIONS(5606), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_PIPE_PIPE] = ACTIONS(5604), - [anon_sym_DOT] = ACTIONS(5604), - [anon_sym_LT_LT] = ACTIONS(5604), - [anon_sym_constexpr] = ACTIONS(5606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5604), - [anon_sym_QMARK] = ACTIONS(5604), - [anon_sym_TILDE] = ACTIONS(5604), - [anon_sym_LT_EQ] = ACTIONS(5604), - [anon_sym_BANG_EQ] = ACTIONS(5604), - [anon_sym_AMP_AMP] = ACTIONS(5604), - [anon_sym_inline] = ACTIONS(5606), - [anon_sym_EQ] = ACTIONS(5606), - [anon_sym_restrict] = ACTIONS(5606), - [anon_sym_GT_GT] = ACTIONS(5606), - [anon_sym_DASH_GT] = ACTIONS(5604), + [anon_sym_COMMA] = ACTIONS(8429), + [anon_sym_RBRACE] = ACTIONS(8427), }, - [3215] = { - [sym_field_declaration_list] = STATE(3929), - [anon_sym_LBRACE] = ACTIONS(2180), + [3192] = { + [anon_sym_LPAREN2] = ACTIONS(5610), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_PLUS_PLUS] = ACTIONS(5610), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_mutable] = ACTIONS(5612), + [anon_sym_DASH_DASH] = ACTIONS(5610), + [anon_sym_final] = ACTIONS(5612), + [anon_sym_COLON_COLON] = ACTIONS(5610), + [anon_sym_GT2] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5610), + [anon_sym_PIPE] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5612), + [anon_sym_AMP] = ACTIONS(5612), + [anon_sym_static] = ACTIONS(5612), + [anon_sym_volatile] = ACTIONS(5612), + [anon_sym_PLUS] = ACTIONS(5612), + [anon_sym_GT_EQ] = ACTIONS(5612), + [anon_sym_STAR] = ACTIONS(5610), + [anon_sym_SLASH] = ACTIONS(5612), + [anon_sym_override] = ACTIONS(5612), + [anon_sym_explicit] = ACTIONS(5612), + [sym_identifier] = ACTIONS(5612), + [sym_operator_name] = ACTIONS(5610), + [sym_noexcept] = ACTIONS(5612), + [anon_sym_CARET] = ACTIONS(5610), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_COMMA] = ACTIONS(5610), + [anon_sym_register] = ACTIONS(5612), + [anon_sym__Atomic] = ACTIONS(5612), + [anon_sym_const] = ACTIONS(5612), + [anon_sym_extern] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(5610), + [anon_sym_PIPE_PIPE] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5610), + [anon_sym_constexpr] = ACTIONS(5612), [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5610), + [anon_sym_QMARK] = ACTIONS(5610), + [anon_sym_TILDE] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5610), + [anon_sym_BANG_EQ] = ACTIONS(5610), + [anon_sym_AMP_AMP] = ACTIONS(5610), + [anon_sym_inline] = ACTIONS(5612), + [anon_sym_EQ] = ACTIONS(5612), + [anon_sym_restrict] = ACTIONS(5612), + [anon_sym_GT_GT] = ACTIONS(5612), + [anon_sym_DASH_GT] = ACTIONS(5610), }, - [3216] = { - [anon_sym_LPAREN2] = ACTIONS(5608), - [anon_sym_DASH] = ACTIONS(5610), - [anon_sym_PLUS_PLUS] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(5608), - [anon_sym_mutable] = ACTIONS(5610), - [anon_sym_DASH_DASH] = ACTIONS(5608), - [anon_sym_final] = ACTIONS(5610), - [anon_sym_COLON_COLON] = ACTIONS(5608), - [anon_sym_GT2] = ACTIONS(5608), - [anon_sym_EQ_EQ] = ACTIONS(5608), - [anon_sym_PIPE] = ACTIONS(5610), - [anon_sym_LT] = ACTIONS(5610), - [anon_sym_AMP] = ACTIONS(5610), - [anon_sym_static] = ACTIONS(5610), - [anon_sym_volatile] = ACTIONS(5610), - [anon_sym_PLUS] = ACTIONS(5610), - [anon_sym_GT_EQ] = ACTIONS(5610), - [anon_sym_STAR] = ACTIONS(5608), - [anon_sym_SLASH] = ACTIONS(5610), - [anon_sym_override] = ACTIONS(5610), - [anon_sym_explicit] = ACTIONS(5610), - [sym_identifier] = ACTIONS(5610), - [sym_operator_name] = ACTIONS(5608), - [sym_noexcept] = ACTIONS(5610), - [anon_sym_CARET] = ACTIONS(5608), - [anon_sym_GT] = ACTIONS(5610), - [anon_sym_COMMA] = ACTIONS(5608), - [anon_sym_register] = ACTIONS(5610), - [anon_sym__Atomic] = ACTIONS(5610), - [anon_sym_const] = ACTIONS(5610), - [anon_sym_extern] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5608), - [anon_sym_PIPE_PIPE] = ACTIONS(5608), - [anon_sym_DOT] = ACTIONS(5608), - [anon_sym_LT_LT] = ACTIONS(5608), - [anon_sym_constexpr] = ACTIONS(5610), + [3193] = { + [sym_field_declaration_list] = STATE(3903), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(5608), - [anon_sym_QMARK] = ACTIONS(5608), - [anon_sym_TILDE] = ACTIONS(5608), - [anon_sym_LT_EQ] = ACTIONS(5608), - [anon_sym_BANG_EQ] = ACTIONS(5608), - [anon_sym_AMP_AMP] = ACTIONS(5608), - [anon_sym_inline] = ACTIONS(5610), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_restrict] = ACTIONS(5610), - [anon_sym_GT_GT] = ACTIONS(5610), - [anon_sym_DASH_GT] = ACTIONS(5608), }, - [3217] = { - [sym_field_declaration_list] = STATE(3930), - [anon_sym_LBRACE] = ACTIONS(2180), + [3194] = { + [anon_sym_LPAREN2] = ACTIONS(5614), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_PLUS_PLUS] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_mutable] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5614), + [anon_sym_final] = ACTIONS(5616), + [anon_sym_COLON_COLON] = ACTIONS(5614), + [anon_sym_GT2] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5614), + [anon_sym_PIPE] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5616), + [anon_sym_static] = ACTIONS(5616), + [anon_sym_volatile] = ACTIONS(5616), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5614), + [anon_sym_SLASH] = ACTIONS(5616), + [anon_sym_override] = ACTIONS(5616), + [anon_sym_explicit] = ACTIONS(5616), + [sym_identifier] = ACTIONS(5616), + [sym_operator_name] = ACTIONS(5614), + [sym_noexcept] = ACTIONS(5616), + [anon_sym_CARET] = ACTIONS(5614), + [anon_sym_GT] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5614), + [anon_sym_register] = ACTIONS(5616), + [anon_sym__Atomic] = ACTIONS(5616), + [anon_sym_const] = ACTIONS(5616), + [anon_sym_extern] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5614), + [anon_sym_PIPE_PIPE] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_constexpr] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(5614), + [anon_sym_QMARK] = ACTIONS(5614), + [anon_sym_TILDE] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_BANG_EQ] = ACTIONS(5614), + [anon_sym_AMP_AMP] = ACTIONS(5614), + [anon_sym_inline] = ACTIONS(5616), + [anon_sym_EQ] = ACTIONS(5616), + [anon_sym_restrict] = ACTIONS(5616), + [anon_sym_GT_GT] = ACTIONS(5616), + [anon_sym_DASH_GT] = ACTIONS(5614), + }, + [3195] = { + [sym_field_declaration_list] = STATE(3904), + [anon_sym_LBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(3), }, - [3218] = { - [anon_sym_LPAREN2] = ACTIONS(5339), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR_EQ] = ACTIONS(5339), - [anon_sym_LT_LT_EQ] = ACTIONS(5339), - [anon_sym_PERCENT_EQ] = ACTIONS(5339), - [anon_sym_GT2] = ACTIONS(5339), - [anon_sym_EQ_EQ] = ACTIONS(5339), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_CARET_EQ] = ACTIONS(5339), - [anon_sym_AMP] = ACTIONS(5341), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_GT_EQ] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_SLASH_EQ] = ACTIONS(5339), - [anon_sym_PLUS_EQ] = ACTIONS(5339), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_PIPE_EQ] = ACTIONS(5339), - [anon_sym_GT_GT_EQ] = ACTIONS(5341), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_PIPE_PIPE] = ACTIONS(5339), - [anon_sym_DOT] = ACTIONS(5339), - [anon_sym_LT_LT] = ACTIONS(5341), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_PERCENT] = ACTIONS(5341), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5339), - [anon_sym_DASH_EQ] = ACTIONS(5339), - [anon_sym_LT_EQ] = ACTIONS(5339), - [anon_sym_BANG_EQ] = ACTIONS(5339), - [anon_sym_AMP_EQ] = ACTIONS(5339), - [anon_sym_AMP_AMP] = ACTIONS(5339), - [anon_sym_DASH_GT] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5341), - [anon_sym_PLUS_PLUS] = ACTIONS(5339), - [anon_sym_GT_GT] = ACTIONS(5341), - [anon_sym_DASH_DASH] = ACTIONS(5339), + [3196] = { + [anon_sym_LPAREN2] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_STAR_EQ] = ACTIONS(5338), + [anon_sym_LT_LT_EQ] = ACTIONS(5338), + [anon_sym_PERCENT_EQ] = ACTIONS(5338), + [anon_sym_GT2] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5338), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_CARET_EQ] = ACTIONS(5338), + [anon_sym_AMP] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_GT_EQ] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_SLASH_EQ] = ACTIONS(5338), + [anon_sym_PLUS_EQ] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_PIPE_EQ] = ACTIONS(5338), + [anon_sym_GT_GT_EQ] = ACTIONS(5340), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_PIPE_PIPE] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_PERCENT] = ACTIONS(5340), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5338), + [anon_sym_DASH_EQ] = ACTIONS(5338), + [anon_sym_LT_EQ] = ACTIONS(5338), + [anon_sym_BANG_EQ] = ACTIONS(5338), + [anon_sym_AMP_EQ] = ACTIONS(5338), + [anon_sym_AMP_AMP] = ACTIONS(5338), + [anon_sym_DASH_GT] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5340), + [anon_sym_PLUS_PLUS] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5340), + [anon_sym_DASH_DASH] = ACTIONS(5338), }, - [3219] = { - [aux_sym_argument_list_repeat1] = STATE(2595), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(8459), + [3197] = { + [aux_sym_argument_list_repeat1] = STATE(2580), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(8431), [sym_comment] = ACTIONS(3), }, - [3220] = { - [anon_sym_LPAREN2] = ACTIONS(5947), - [anon_sym_DASH] = ACTIONS(5949), - [anon_sym_STAR_EQ] = ACTIONS(5947), - [anon_sym_LT_LT_EQ] = ACTIONS(5947), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(5947), - [anon_sym_GT2] = ACTIONS(5947), - [anon_sym_EQ_EQ] = ACTIONS(5947), - [anon_sym_PIPE] = ACTIONS(5949), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_CARET_EQ] = ACTIONS(5947), - [anon_sym_AMP] = ACTIONS(5949), - [anon_sym_PLUS] = ACTIONS(5949), - [anon_sym_GT_EQ] = ACTIONS(5949), - [anon_sym_STAR] = ACTIONS(5949), - [anon_sym_SLASH] = ACTIONS(5949), - [anon_sym_SLASH_EQ] = ACTIONS(5947), - [anon_sym_PLUS_EQ] = ACTIONS(5947), - [anon_sym_CARET] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_PIPE_EQ] = ACTIONS(5947), - [anon_sym_GT_GT_EQ] = ACTIONS(5949), - [anon_sym_COMMA] = ACTIONS(5947), - [anon_sym_PIPE_PIPE] = ACTIONS(5947), - [anon_sym_DOT] = ACTIONS(5947), - [anon_sym_LT_LT] = ACTIONS(5949), - [anon_sym_LBRACK] = ACTIONS(5947), - [anon_sym_PERCENT] = ACTIONS(5949), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5947), - [anon_sym_DASH_EQ] = ACTIONS(5947), - [anon_sym_LT_EQ] = ACTIONS(5947), - [anon_sym_BANG_EQ] = ACTIONS(5947), - [anon_sym_AMP_EQ] = ACTIONS(5947), - [anon_sym_AMP_AMP] = ACTIONS(5947), - [anon_sym_DASH_GT] = ACTIONS(5947), - [anon_sym_EQ] = ACTIONS(5949), - [anon_sym_PLUS_PLUS] = ACTIONS(5947), - [anon_sym_GT_GT] = ACTIONS(5949), - [anon_sym_DASH_DASH] = ACTIONS(5947), + [3198] = { + [anon_sym_LPAREN2] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6145), + [anon_sym_STAR_EQ] = ACTIONS(6143), + [anon_sym_LT_LT_EQ] = ACTIONS(6143), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_PERCENT_EQ] = ACTIONS(6143), + [anon_sym_GT2] = ACTIONS(6143), + [anon_sym_EQ_EQ] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6145), + [anon_sym_LT] = ACTIONS(6145), + [anon_sym_CARET_EQ] = ACTIONS(6143), + [anon_sym_AMP] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6145), + [anon_sym_STAR] = ACTIONS(6145), + [anon_sym_SLASH] = ACTIONS(6145), + [anon_sym_SLASH_EQ] = ACTIONS(6143), + [anon_sym_PLUS_EQ] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6145), + [anon_sym_GT] = ACTIONS(6145), + [anon_sym_PIPE_EQ] = ACTIONS(6143), + [anon_sym_GT_GT_EQ] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6143), + [anon_sym_PIPE_PIPE] = ACTIONS(6143), + [anon_sym_DOT] = ACTIONS(6143), + [anon_sym_LT_LT] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6143), + [anon_sym_PERCENT] = ACTIONS(6145), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6143), + [anon_sym_DASH_EQ] = ACTIONS(6143), + [anon_sym_LT_EQ] = ACTIONS(6143), + [anon_sym_BANG_EQ] = ACTIONS(6143), + [anon_sym_AMP_EQ] = ACTIONS(6143), + [anon_sym_AMP_AMP] = ACTIONS(6143), + [anon_sym_DASH_GT] = ACTIONS(6143), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_PLUS_PLUS] = ACTIONS(6143), + [anon_sym_GT_GT] = ACTIONS(6145), + [anon_sym_DASH_DASH] = ACTIONS(6143), }, - [3221] = { - [anon_sym_LPAREN2] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5953), - [anon_sym_STAR_EQ] = ACTIONS(5951), - [anon_sym_LT_LT_EQ] = ACTIONS(5951), - [anon_sym_PERCENT_EQ] = ACTIONS(5951), - [anon_sym_GT2] = ACTIONS(5951), - [anon_sym_EQ_EQ] = ACTIONS(5951), - [anon_sym_PIPE] = ACTIONS(5953), - [anon_sym_LT] = ACTIONS(5953), - [anon_sym_CARET_EQ] = ACTIONS(5951), - [anon_sym_AMP] = ACTIONS(5953), - [anon_sym_PLUS] = ACTIONS(5953), - [anon_sym_GT_EQ] = ACTIONS(5953), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_SLASH_EQ] = ACTIONS(5951), - [anon_sym_PLUS_EQ] = ACTIONS(5951), - [anon_sym_CARET] = ACTIONS(5953), - [anon_sym_GT] = ACTIONS(5953), - [anon_sym_PIPE_EQ] = ACTIONS(5951), - [anon_sym_GT_GT_EQ] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(5951), - [anon_sym_PIPE_PIPE] = ACTIONS(5951), - [anon_sym_DOT] = ACTIONS(5951), - [anon_sym_LT_LT] = ACTIONS(5953), - [anon_sym_LBRACK] = ACTIONS(5951), - [anon_sym_PERCENT] = ACTIONS(5953), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5951), - [anon_sym_DASH_EQ] = ACTIONS(5951), - [anon_sym_LT_EQ] = ACTIONS(5951), - [anon_sym_BANG_EQ] = ACTIONS(5951), - [anon_sym_AMP_EQ] = ACTIONS(5951), - [anon_sym_AMP_AMP] = ACTIONS(5951), - [anon_sym_DASH_GT] = ACTIONS(5951), - [anon_sym_EQ] = ACTIONS(5953), - [anon_sym_PLUS_PLUS] = ACTIONS(5951), - [anon_sym_GT_GT] = ACTIONS(5953), - [anon_sym_DASH_DASH] = ACTIONS(5951), + [3199] = { + [anon_sym_LPAREN2] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6149), + [anon_sym_STAR_EQ] = ACTIONS(6147), + [anon_sym_LT_LT_EQ] = ACTIONS(6147), + [anon_sym_PERCENT_EQ] = ACTIONS(6147), + [anon_sym_GT2] = ACTIONS(6147), + [anon_sym_EQ_EQ] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6149), + [anon_sym_LT] = ACTIONS(6149), + [anon_sym_CARET_EQ] = ACTIONS(6147), + [anon_sym_AMP] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6149), + [anon_sym_GT_EQ] = ACTIONS(6149), + [anon_sym_STAR] = ACTIONS(6149), + [anon_sym_SLASH] = ACTIONS(6149), + [anon_sym_SLASH_EQ] = ACTIONS(6147), + [anon_sym_PLUS_EQ] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6149), + [anon_sym_GT] = ACTIONS(6149), + [anon_sym_PIPE_EQ] = ACTIONS(6147), + [anon_sym_GT_GT_EQ] = ACTIONS(6149), + [anon_sym_COMMA] = ACTIONS(6147), + [anon_sym_PIPE_PIPE] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(6147), + [anon_sym_LT_LT] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6147), + [anon_sym_PERCENT] = ACTIONS(6149), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6147), + [anon_sym_DASH_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_BANG_EQ] = ACTIONS(6147), + [anon_sym_AMP_EQ] = ACTIONS(6147), + [anon_sym_AMP_AMP] = ACTIONS(6147), + [anon_sym_DASH_GT] = ACTIONS(6147), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_PLUS_PLUS] = ACTIONS(6147), + [anon_sym_GT_GT] = ACTIONS(6149), + [anon_sym_DASH_DASH] = ACTIONS(6147), }, - [3222] = { - [anon_sym_LPAREN2] = ACTIONS(6009), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR_EQ] = ACTIONS(6009), - [anon_sym_LT_LT_EQ] = ACTIONS(6009), - [anon_sym_PERCENT_EQ] = ACTIONS(6009), - [anon_sym_GT2] = ACTIONS(6009), - [anon_sym_EQ_EQ] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6011), - [anon_sym_CARET_EQ] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_GT_EQ] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_SLASH_EQ] = ACTIONS(6009), - [anon_sym_PLUS_EQ] = ACTIONS(6009), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_GT] = ACTIONS(6011), - [anon_sym_PIPE_EQ] = ACTIONS(6009), - [anon_sym_GT_GT_EQ] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6009), - [anon_sym_PIPE_PIPE] = ACTIONS(6009), - [anon_sym_DOT] = ACTIONS(6009), - [anon_sym_LT_LT] = ACTIONS(6011), - [anon_sym_LBRACK] = ACTIONS(6009), - [anon_sym_PERCENT] = ACTIONS(6011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6009), - [anon_sym_DASH_EQ] = ACTIONS(6009), - [anon_sym_LT_EQ] = ACTIONS(6009), - [anon_sym_BANG_EQ] = ACTIONS(6009), - [anon_sym_AMP_EQ] = ACTIONS(6009), - [anon_sym_AMP_AMP] = ACTIONS(6009), - [anon_sym_DASH_GT] = ACTIONS(6009), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_PLUS_PLUS] = ACTIONS(6009), - [anon_sym_GT_GT] = ACTIONS(6011), - [anon_sym_DASH_DASH] = ACTIONS(6009), + [3200] = { + [anon_sym_LPAREN2] = ACTIONS(6153), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR_EQ] = ACTIONS(6153), + [anon_sym_LT_LT_EQ] = ACTIONS(6153), + [anon_sym_PERCENT_EQ] = ACTIONS(6153), + [anon_sym_GT2] = ACTIONS(6153), + [anon_sym_EQ_EQ] = ACTIONS(6153), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_CARET_EQ] = ACTIONS(6153), + [anon_sym_AMP] = ACTIONS(6155), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_GT_EQ] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_SLASH_EQ] = ACTIONS(6153), + [anon_sym_PLUS_EQ] = ACTIONS(6153), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_PIPE_EQ] = ACTIONS(6153), + [anon_sym_GT_GT_EQ] = ACTIONS(6155), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(6153), + [anon_sym_LT_LT] = ACTIONS(6155), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_PERCENT] = ACTIONS(6155), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DASH_EQ] = ACTIONS(6153), + [anon_sym_LT_EQ] = ACTIONS(6153), + [anon_sym_BANG_EQ] = ACTIONS(6153), + [anon_sym_AMP_EQ] = ACTIONS(6153), + [anon_sym_AMP_AMP] = ACTIONS(6153), + [anon_sym_DASH_GT] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6155), + [anon_sym_PLUS_PLUS] = ACTIONS(6153), + [anon_sym_GT_GT] = ACTIONS(6155), + [anon_sym_DASH_DASH] = ACTIONS(6153), }, - [3223] = { - [sym_template_type] = STATE(1079), - [sym__expression] = STATE(3932), - [sym_logical_expression] = STATE(3932), - [sym_bitwise_expression] = STATE(3932), - [sym_cast_expression] = STATE(3932), - [sym_new_expression] = STATE(3932), + [3201] = { + [sym_template_function] = STATE(3906), + [sym__expression] = STATE(3906), + [sym_logical_expression] = STATE(3906), + [sym_bitwise_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_delete_expression] = STATE(3906), [sym_field_expression] = STATE(421), - [sym_compound_literal_expression] = STATE(3932), - [sym_char_literal] = STATE(3932), - [sym_template_function] = STATE(3932), - [sym_conditional_expression] = STATE(3932), - [sym_equality_expression] = STATE(3932), - [sym_relational_expression] = STATE(3932), - [sym_delete_expression] = STATE(3932), - [sym_sizeof_expression] = STATE(3932), - [sym_parenthesized_expression] = STATE(3932), - [sym_lambda_expression] = STATE(3932), - [sym_concatenated_string] = STATE(3932), - [sym_string_literal] = STATE(424), - [sym_scoped_identifier] = STATE(425), - [sym_scoped_type_identifier] = STATE(1081), + [sym_compound_literal_expression] = STATE(3906), + [sym_lambda_expression] = STATE(3906), + [sym_char_literal] = STATE(3906), + [sym_scoped_identifier] = STATE(423), + [sym_scoped_type_identifier] = STATE(1076), + [sym_conditional_expression] = STATE(3906), + [sym_equality_expression] = STATE(3906), + [sym_relational_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), [sym_subscript_expression] = STATE(421), - [sym_assignment_expression] = STATE(3932), + [sym_scoped_namespace_identifier] = STATE(1077), + [sym_parenthesized_expression] = STATE(3906), + [sym_lambda_capture_specifier] = STATE(425), + [sym_string_literal] = STATE(426), + [sym_concatenated_string] = STATE(3906), + [sym_template_type] = STATE(1078), + [sym_assignment_expression] = STATE(3906), [sym_pointer_expression] = STATE(421), - [sym_shift_expression] = STATE(3932), - [sym_math_expression] = STATE(3932), + [sym_shift_expression] = STATE(3906), + [sym_math_expression] = STATE(3906), [sym_call_expression] = STATE(421), - [sym_lambda_capture_specifier] = STATE(427), - [sym_scoped_namespace_identifier] = STATE(1082), - [sym_raw_string_literal] = ACTIONS(8461), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_LPAREN2] = ACTIONS(708), - [sym_true] = ACTIONS(8463), - [sym_null] = ACTIONS(8463), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_number_literal] = ACTIONS(8461), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(716), - [sym_false] = ACTIONS(8463), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(8463), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_delete] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(740), - }, - [3224] = { - [sym_parameter_list] = STATE(2218), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(7275), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - }, - [3225] = { - [sym_union_specifier] = STATE(1117), - [sym_macro_type_specifier] = STATE(1117), - [sym_class_specifier] = STATE(1117), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1117), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1117), - [aux_sym_sized_type_specifier_repeat1] = STATE(3226), - [sym_struct_specifier] = STATE(1117), - [sym_enum_specifier] = STATE(1117), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(1117), - [anon_sym_unsigned] = ACTIONS(6819), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(2246), - [anon_sym_signed] = ACTIONS(6819), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(6819), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(6823), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(6819), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(2246), - }, - [3226] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3933), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(8465), - [anon_sym_signed] = ACTIONS(8465), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_long] = ACTIONS(8465), - [anon_sym_GT2] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_short] = ACTIONS(8465), - [sym_identifier] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2349), - }, - [3227] = { - [sym_parameter_list] = STATE(1174), - [sym_abstract_array_declarator] = STATE(3934), - [sym_abstract_pointer_declarator] = STATE(3934), - [sym_abstract_reference_declarator] = STATE(3934), - [sym_abstract_function_declarator] = STATE(3934), - [sym__abstract_declarator] = STATE(3934), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_COMMA] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_GT2] = ACTIONS(6210), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [sym_comment] = ACTIONS(3), - }, - [3228] = { - [sym_type_qualifier] = STATE(3228), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3228), - [anon_sym_LPAREN2] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(8467), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_GT2] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), + [sym_new_expression] = STATE(3906), + [sym_raw_string_literal] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(712), + [sym_true] = ACTIONS(8435), + [sym_null] = ACTIONS(8435), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_number_literal] = ACTIONS(8433), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(720), + [sym_false] = ACTIONS(8435), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_sizeof] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(744), }, - [3229] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(3228), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3228), - [anon_sym_LPAREN2] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(6825), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(6395), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4410), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [3230] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_PERCENT] = ACTIONS(964), - [anon_sym_GT2] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_QMARK] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_GT_EQ] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_DASH_GT] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), + [3202] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_GT2] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_QMARK] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_DASH_GT] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), }, - [3231] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [3203] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -133503,7 +133026,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(8470), + [anon_sym_RBRACE] = ACTIONS(8437), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -133535,1482 +133058,1588 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3232] = { - [sym_parameter_list] = STATE(2218), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(7282), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(7282), + [3204] = { + [sym_parameter_list] = STATE(2207), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(7256), [sym_comment] = ACTIONS(3), }, - [3233] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3205] = { + [sym_union_specifier] = STATE(1113), + [sym_macro_type_specifier] = STATE(1113), + [sym_class_specifier] = STATE(1113), + [aux_sym_sized_type_specifier_repeat1] = STATE(3206), + [sym_sized_type_specifier] = STATE(1113), + [sym__type_specifier] = STATE(1113), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(1113), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1113), + [sym_struct_specifier] = STATE(1113), + [anon_sym_unsigned] = ACTIONS(6810), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(6810), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(6810), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(6814), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(6810), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(2248), }, - [3234] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3936), - [sym_logical_expression] = STATE(3936), - [sym_bitwise_expression] = STATE(3936), - [sym_cast_expression] = STATE(3936), - [sym_new_expression] = STATE(3936), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(3936), - [sym_char_literal] = STATE(3936), - [sym_template_function] = STATE(3936), - [sym_conditional_expression] = STATE(3936), - [sym_equality_expression] = STATE(3936), - [sym_relational_expression] = STATE(3936), - [sym_delete_expression] = STATE(3936), - [sym_sizeof_expression] = STATE(3936), - [sym_parenthesized_expression] = STATE(3936), - [sym_lambda_expression] = STATE(3936), - [sym_concatenated_string] = STATE(3936), - [sym_string_literal] = STATE(450), + [3206] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3908), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(8439), + [anon_sym_signed] = ACTIONS(8439), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_long] = ACTIONS(8439), + [anon_sym_GT2] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_short] = ACTIONS(8439), + [sym_identifier] = ACTIONS(2343), + [sym_primitive_type] = ACTIONS(2341), + }, + [3207] = { + [sym_abstract_reference_declarator] = STATE(3909), + [sym_abstract_array_declarator] = STATE(3909), + [sym_abstract_pointer_declarator] = STATE(3909), + [sym_parameter_list] = STATE(1174), + [sym_abstract_function_declarator] = STATE(3909), + [sym__abstract_declarator] = STATE(3909), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_COMMA] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_GT2] = ACTIONS(6085), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), + }, + [3208] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3208), + [sym_type_qualifier] = STATE(3208), + [anon_sym_LPAREN2] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(8441), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_GT2] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + }, + [3209] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3208), + [sym_type_qualifier] = STATE(3208), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(6816), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_GT2] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4409), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [3210] = { + [sym_parameter_list] = STATE(2207), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(7263), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(7263), + [sym_comment] = ACTIONS(3), + }, + [3211] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [3212] = { + [sym_template_function] = STATE(3910), + [sym__expression] = STATE(3910), + [sym_logical_expression] = STATE(3910), + [sym_bitwise_expression] = STATE(3910), + [sym_cast_expression] = STATE(3910), + [sym_delete_expression] = STATE(3910), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(3910), + [sym_lambda_expression] = STATE(3910), + [sym_char_literal] = STATE(3910), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(3936), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(3936), - [sym_math_expression] = STATE(3936), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8472), - [anon_sym_DASH] = ACTIONS(748), - [sym_true] = ACTIONS(8474), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(8474), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8472), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8474), - [sym_nullptr] = ACTIONS(8474), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_conditional_expression] = STATE(3910), + [sym_equality_expression] = STATE(3910), + [sym_relational_expression] = STATE(3910), + [sym_sizeof_expression] = STATE(3910), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3910), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(450), + [sym_concatenated_string] = STATE(3910), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3910), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(3910), + [sym_math_expression] = STATE(3910), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(3910), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8444), + [anon_sym_DASH] = ACTIONS(752), + [sym_true] = ACTIONS(8446), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(8446), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8444), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8446), + [sym_nullptr] = ACTIONS(8446), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), }, - [3235] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(1197), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [3213] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(5269), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [sym_null] = ACTIONS(5269), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5267), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(5269), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1234), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(1193), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [sym_raw_string_literal] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(5268), + [anon_sym_DASH_DASH] = ACTIONS(2389), + [sym_null] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5266), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(1240), }, - [3236] = { - [sym_template_type] = STATE(239), + [3214] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(8476), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(8448), }, - [3237] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(6863), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(6871), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(6873), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(6875), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3215] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(6862), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(6864), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3238] = { - [anon_sym_RPAREN] = ACTIONS(8478), + [3216] = { + [anon_sym_RPAREN] = ACTIONS(8450), [sym_comment] = ACTIONS(3), }, - [3239] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(6863), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(6871), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(6873), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(6875), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3217] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(6862), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(6864), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3240] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3240), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(8480), - [anon_sym_long] = ACTIONS(8480), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(8480), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(8480), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [3218] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3218), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(8452), + [anon_sym_long] = ACTIONS(8452), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(8452), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(8452), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), }, - [3241] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(3939), - [sym_logical_expression] = STATE(3939), - [sym_bitwise_expression] = STATE(3939), - [sym_cast_expression] = STATE(3939), - [sym_new_expression] = STATE(3939), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(3939), - [sym_char_literal] = STATE(3939), - [sym_template_function] = STATE(3939), - [sym_conditional_expression] = STATE(3939), - [sym_equality_expression] = STATE(3939), - [sym_relational_expression] = STATE(3939), - [sym_delete_expression] = STATE(3939), - [sym_sizeof_expression] = STATE(3939), - [sym_parenthesized_expression] = STATE(3939), - [sym_lambda_expression] = STATE(3939), - [sym_concatenated_string] = STATE(3939), - [sym_string_literal] = STATE(967), + [3219] = { + [sym_template_function] = STATE(3913), + [sym__expression] = STATE(3913), + [sym_logical_expression] = STATE(3913), + [sym_bitwise_expression] = STATE(3913), + [sym_cast_expression] = STATE(3913), + [sym_delete_expression] = STATE(3913), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(3913), + [sym_lambda_expression] = STATE(3913), + [sym_char_literal] = STATE(3913), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(3939), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(3939), - [sym_math_expression] = STATE(3939), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(3913), + [sym_equality_expression] = STATE(3913), + [sym_relational_expression] = STATE(3913), + [sym_sizeof_expression] = STATE(3913), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(8483), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(8485), - [sym_null] = ACTIONS(8485), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(8483), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(8485), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(8485), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(3913), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(3913), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(3913), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(3913), + [sym_math_expression] = STATE(3913), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(3913), + [sym_raw_string_literal] = ACTIONS(8455), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(8457), + [sym_null] = ACTIONS(8457), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(8455), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(8457), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(8457), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [3242] = { - [sym_initializer_list] = STATE(2571), - [sym_new_declarator] = STATE(2572), - [sym_argument_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(6855), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [3220] = { + [sym_new_declarator] = STATE(2556), + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [3243] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(3940), - [sym_logical_expression] = STATE(3940), - [sym_bitwise_expression] = STATE(3940), - [sym_cast_expression] = STATE(3940), - [sym_new_expression] = STATE(3940), - [sym_field_expression] = STATE(3940), - [sym_compound_literal_expression] = STATE(3940), - [sym_char_literal] = STATE(3940), - [sym_template_function] = STATE(3940), - [sym_conditional_expression] = STATE(3940), - [sym_equality_expression] = STATE(3940), - [sym_relational_expression] = STATE(3940), - [sym_delete_expression] = STATE(3940), - [sym_sizeof_expression] = STATE(3940), - [sym_parenthesized_expression] = STATE(3940), - [sym_lambda_expression] = STATE(3940), - [sym_concatenated_string] = STATE(3940), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(3940), - [sym_assignment_expression] = STATE(3940), - [sym_pointer_expression] = STATE(3940), - [sym_shift_expression] = STATE(3940), - [sym_math_expression] = STATE(3940), - [sym_call_expression] = STATE(3940), - [sym_lambda_capture_specifier] = STATE(196), + [3221] = { + [sym_template_function] = STATE(3914), + [sym__expression] = STATE(3914), + [sym_logical_expression] = STATE(3914), + [sym_bitwise_expression] = STATE(3914), + [sym_cast_expression] = STATE(3914), + [sym_delete_expression] = STATE(3914), + [sym_field_expression] = STATE(3914), + [sym_compound_literal_expression] = STATE(3914), + [sym_lambda_expression] = STATE(3914), + [sym_char_literal] = STATE(3914), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3914), + [sym_equality_expression] = STATE(3914), + [sym_relational_expression] = STATE(3914), + [sym_sizeof_expression] = STATE(3914), + [sym_subscript_expression] = STATE(3914), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8487), - [anon_sym_DASH] = ACTIONS(2373), - [sym_true] = ACTIONS(8489), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [sym_null] = ACTIONS(8489), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8487), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8489), - [sym_nullptr] = ACTIONS(8489), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), + [sym_parenthesized_expression] = STATE(3914), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(3914), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3914), + [sym_pointer_expression] = STATE(3914), + [sym_shift_expression] = STATE(3914), + [sym_math_expression] = STATE(3914), + [sym_call_expression] = STATE(3914), + [sym_new_expression] = STATE(3914), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8459), + [anon_sym_DASH] = ACTIONS(2375), + [sym_true] = ACTIONS(8461), + [anon_sym_DASH_DASH] = ACTIONS(2389), + [sym_null] = ACTIONS(8461), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8459), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8461), + [sym_nullptr] = ACTIONS(8461), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), }, - [3244] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3222] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3245] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_RBRACE] = ACTIONS(3759), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3223] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_RBRACE] = ACTIONS(3905), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3246] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_RBRACE] = ACTIONS(3763), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3224] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3247] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(6863), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(6871), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(6875), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3225] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(6864), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3248] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_RBRACE] = ACTIONS(3790), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3226] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_RBRACE] = ACTIONS(3936), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3249] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_RBRACE] = ACTIONS(3794), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3227] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_RBRACE] = ACTIONS(3940), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3250] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(6871), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3228] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3251] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3229] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3252] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(8491), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3230] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(8463), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3253] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(6863), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(6871), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3231] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3254] = { - [sym_string_literal] = STATE(3254), - [aux_sym_concatenated_string_repeat1] = STATE(3254), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_RBRACE] = ACTIONS(3732), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [3232] = { + [sym_string_literal] = STATE(3232), + [aux_sym_concatenated_string_repeat1] = STATE(3232), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5323), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [3255] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(1405), + [3233] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(449), [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(2826), - [sym_true] = ACTIONS(2828), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(450), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(1400), + [anon_sym_LPAREN2] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(8493), - [anon_sym_AMP] = ACTIONS(8495), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(4127), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_number_literal] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_GT_GT] = ACTIONS(4127), - [anon_sym_DASH_DASH] = ACTIONS(754), + [sym_null] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(8465), + [anon_sym_AMP] = ACTIONS(8467), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_number_literal] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [3256] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8497), + [3234] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8469), }, - [3257] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3943), - [sym_logical_expression] = STATE(3943), - [sym_bitwise_expression] = STATE(3943), - [sym_cast_expression] = STATE(3943), - [sym_new_expression] = STATE(3943), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(3943), - [sym_char_literal] = STATE(3943), - [sym_template_function] = STATE(3943), - [sym_conditional_expression] = STATE(3943), - [sym_equality_expression] = STATE(3943), - [sym_relational_expression] = STATE(3943), - [sym_delete_expression] = STATE(3943), - [sym_sizeof_expression] = STATE(3943), - [sym_parenthesized_expression] = STATE(3943), - [sym_lambda_expression] = STATE(3943), - [sym_concatenated_string] = STATE(3943), + [3235] = { + [sym_template_function] = STATE(3917), + [sym__expression] = STATE(3917), + [sym_logical_expression] = STATE(3917), + [sym_bitwise_expression] = STATE(3917), + [sym_cast_expression] = STATE(3917), + [sym_delete_expression] = STATE(3917), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(3917), + [sym_lambda_expression] = STATE(3917), + [sym_char_literal] = STATE(3917), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3917), + [sym_equality_expression] = STATE(3917), + [sym_relational_expression] = STATE(3917), + [sym_sizeof_expression] = STATE(3917), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3917), + [sym_lambda_capture_specifier] = STATE(50), [sym_string_literal] = STATE(450), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(3943), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(3943), - [sym_math_expression] = STATE(3943), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8499), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(8501), - [sym_null] = ACTIONS(8501), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8499), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(8501), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(8501), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_DASH_DASH] = ACTIONS(754), + [sym_concatenated_string] = STATE(3917), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3917), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(3917), + [sym_math_expression] = STATE(3917), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(3917), + [sym_raw_string_literal] = ACTIONS(8471), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(8473), + [sym_null] = ACTIONS(8473), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8471), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(8473), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(8473), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(758), }, - [3258] = { - [anon_sym_LPAREN2] = ACTIONS(8503), - [anon_sym_DASH] = ACTIONS(8505), - [anon_sym_EQ] = ACTIONS(8505), - [anon_sym_LBRACE] = ACTIONS(8503), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8503), - [anon_sym_EQ_EQ] = ACTIONS(8503), - [anon_sym_PIPE] = ACTIONS(8505), - [anon_sym_LT] = ACTIONS(8505), - [anon_sym_AMP] = ACTIONS(8505), - [anon_sym_PLUS] = ACTIONS(8505), - [anon_sym_GT_EQ] = ACTIONS(8503), - [anon_sym_STAR] = ACTIONS(8503), - [anon_sym_SLASH] = ACTIONS(8505), - [anon_sym_RBRACE] = ACTIONS(8503), - [anon_sym_COLON] = ACTIONS(8503), - [anon_sym_CARET] = ACTIONS(8503), - [anon_sym_GT] = ACTIONS(8505), - [anon_sym_COMMA] = ACTIONS(8503), - [anon_sym_PIPE_PIPE] = ACTIONS(8503), - [anon_sym_DOT] = ACTIONS(8503), - [anon_sym_LT_LT] = ACTIONS(8503), - [anon_sym_LBRACK] = ACTIONS(8503), - [anon_sym_PERCENT] = ACTIONS(8503), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8503), - [anon_sym_SEMI] = ACTIONS(8503), - [anon_sym_BANG_EQ] = ACTIONS(8503), - [anon_sym_LT_EQ] = ACTIONS(8503), - [anon_sym_AMP_AMP] = ACTIONS(8503), - [anon_sym_DASH_GT] = ACTIONS(8503), - [anon_sym_PLUS_PLUS] = ACTIONS(8503), - [anon_sym_RPAREN] = ACTIONS(8503), - [anon_sym_GT_GT] = ACTIONS(8503), - [anon_sym_DASH_DASH] = ACTIONS(8503), + [3236] = { + [anon_sym_LPAREN2] = ACTIONS(8475), + [anon_sym_DASH] = ACTIONS(8477), + [anon_sym_EQ] = ACTIONS(8477), + [anon_sym_LBRACE] = ACTIONS(8475), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8475), + [anon_sym_EQ_EQ] = ACTIONS(8475), + [anon_sym_PIPE] = ACTIONS(8477), + [anon_sym_LT] = ACTIONS(8477), + [anon_sym_AMP] = ACTIONS(8477), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_GT_EQ] = ACTIONS(8475), + [anon_sym_STAR] = ACTIONS(8475), + [anon_sym_SLASH] = ACTIONS(8477), + [anon_sym_RBRACE] = ACTIONS(8475), + [anon_sym_COLON] = ACTIONS(8475), + [anon_sym_CARET] = ACTIONS(8475), + [anon_sym_GT] = ACTIONS(8477), + [anon_sym_COMMA] = ACTIONS(8475), + [anon_sym_PIPE_PIPE] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_LT_LT] = ACTIONS(8475), + [anon_sym_LBRACK] = ACTIONS(8475), + [anon_sym_PERCENT] = ACTIONS(8475), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8475), + [anon_sym_SEMI] = ACTIONS(8475), + [anon_sym_BANG_EQ] = ACTIONS(8475), + [anon_sym_LT_EQ] = ACTIONS(8475), + [anon_sym_AMP_AMP] = ACTIONS(8475), + [anon_sym_DASH_GT] = ACTIONS(8475), + [anon_sym_PLUS_PLUS] = ACTIONS(8475), + [anon_sym_RPAREN] = ACTIONS(8475), + [anon_sym_GT_GT] = ACTIONS(8475), + [anon_sym_DASH_DASH] = ACTIONS(8475), }, - [3259] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [3237] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [3260] = { - [anon_sym_LBRACK] = ACTIONS(6837), - [anon_sym_EQ] = ACTIONS(6837), - [anon_sym_DOT] = ACTIONS(6837), + [3238] = { + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_DOT] = ACTIONS(6826), [sym_comment] = ACTIONS(3), }, - [3261] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(3945), - [anon_sym_LPAREN2] = ACTIONS(587), + [3239] = { + [aux_sym_type_definition_repeat2] = STATE(3919), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(8507), + [anon_sym_SEMI] = ACTIONS(8479), }, - [3262] = { - [anon_sym_DASH] = ACTIONS(4149), - [sym_raw_string_literal] = ACTIONS(4151), - [sym_true] = ACTIONS(4149), - [anon_sym_mutable] = ACTIONS(4149), - [sym_null] = ACTIONS(4149), - [anon_sym_break] = ACTIONS(4149), - [aux_sym_preproc_if_token2] = ACTIONS(4149), - [anon_sym_BANG] = ACTIONS(4151), - [anon_sym_sizeof] = ACTIONS(4149), - [anon_sym_volatile] = ACTIONS(4149), - [anon_sym_PLUS] = ACTIONS(4149), - [anon_sym_typedef] = ACTIONS(4149), - [anon_sym_switch] = ACTIONS(4149), - [anon_sym_explicit] = ACTIONS(4149), - [sym_identifier] = ACTIONS(4149), - [anon_sym_delete] = ACTIONS(4149), - [anon_sym_continue] = ACTIONS(4149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4149), - [anon_sym__Atomic] = ACTIONS(4149), - [sym_number_literal] = ACTIONS(4151), - [anon_sym_extern] = ACTIONS(4149), - [anon_sym_enum] = ACTIONS(4149), - [anon_sym_constexpr] = ACTIONS(4149), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4151), - [anon_sym_namespace] = ACTIONS(4149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4149), - [aux_sym_preproc_elif_token1] = ACTIONS(4149), - [anon_sym_SQUOTE] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4151), - [anon_sym_DASH_DASH] = ACTIONS(4151), - [anon_sym_LPAREN2] = ACTIONS(4151), - [anon_sym_struct] = ACTIONS(4149), - [sym_auto] = ACTIONS(4149), - [anon_sym_signed] = ACTIONS(4149), - [anon_sym_long] = ACTIONS(4149), - [anon_sym_COLON_COLON] = ACTIONS(4151), - [anon_sym_using] = ACTIONS(4149), - [aux_sym_preproc_else_token1] = ACTIONS(4149), - [sym_preproc_directive] = ACTIONS(4149), - [aux_sym_preproc_if_token1] = ACTIONS(4149), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_union] = ACTIONS(4149), - [anon_sym_typename] = ACTIONS(4149), - [anon_sym_short] = ACTIONS(4149), - [anon_sym_new] = ACTIONS(4149), - [anon_sym_goto] = ACTIONS(4149), - [sym_operator_name] = ACTIONS(4151), - [anon_sym_while] = ACTIONS(4149), - [anon_sym_try] = ACTIONS(4149), - [anon_sym_for] = ACTIONS(4149), - [aux_sym_preproc_include_token1] = ACTIONS(4149), - [anon_sym_register] = ACTIONS(4149), - [anon_sym_DQUOTE] = ACTIONS(4151), - [anon_sym_const] = ACTIONS(4149), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_if] = ACTIONS(4149), - [sym_primitive_type] = ACTIONS(4149), - [sym_false] = ACTIONS(4149), - [sym_nullptr] = ACTIONS(4149), - [anon_sym_do] = ACTIONS(4149), - [anon_sym_template] = ACTIONS(4149), - [anon_sym_return] = ACTIONS(4149), - [anon_sym_TILDE] = ACTIONS(4151), - [anon_sym_SEMI] = ACTIONS(4151), - [aux_sym_preproc_def_token1] = ACTIONS(4149), - [anon_sym_AMP_AMP] = ACTIONS(4151), - [anon_sym_inline] = ACTIONS(4149), - [anon_sym_PLUS_PLUS] = ACTIONS(4151), - [anon_sym_restrict] = ACTIONS(4149), + [3240] = { + [anon_sym_DASH] = ACTIONS(4147), + [sym_raw_string_literal] = ACTIONS(4149), + [sym_true] = ACTIONS(4147), + [anon_sym_mutable] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [aux_sym_preproc_if_token2] = ACTIONS(4147), + [anon_sym_BANG] = ACTIONS(4149), + [anon_sym_sizeof] = ACTIONS(4147), + [anon_sym_volatile] = ACTIONS(4147), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_typedef] = ACTIONS(4147), + [anon_sym_switch] = ACTIONS(4147), + [anon_sym_explicit] = ACTIONS(4147), + [sym_identifier] = ACTIONS(4147), + [anon_sym_delete] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4147), + [anon_sym__Atomic] = ACTIONS(4147), + [sym_number_literal] = ACTIONS(4149), + [anon_sym_extern] = ACTIONS(4147), + [anon_sym_enum] = ACTIONS(4147), + [anon_sym_constexpr] = ACTIONS(4147), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4149), + [anon_sym_namespace] = ACTIONS(4147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4147), + [aux_sym_preproc_elif_token1] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_struct] = ACTIONS(4147), + [sym_auto] = ACTIONS(4147), + [anon_sym_signed] = ACTIONS(4147), + [anon_sym_long] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_using] = ACTIONS(4147), + [aux_sym_preproc_else_token1] = ACTIONS(4147), + [sym_preproc_directive] = ACTIONS(4147), + [aux_sym_preproc_if_token1] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_static] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_union] = ACTIONS(4147), + [anon_sym_typename] = ACTIONS(4147), + [anon_sym_short] = ACTIONS(4147), + [anon_sym_new] = ACTIONS(4147), + [anon_sym_goto] = ACTIONS(4147), + [sym_operator_name] = ACTIONS(4149), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_for] = ACTIONS(4147), + [aux_sym_preproc_include_token1] = ACTIONS(4147), + [anon_sym_register] = ACTIONS(4147), + [anon_sym_DQUOTE] = ACTIONS(4149), + [anon_sym_const] = ACTIONS(4147), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [sym_primitive_type] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_nullptr] = ACTIONS(4147), + [anon_sym_do] = ACTIONS(4147), + [anon_sym_template] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_TILDE] = ACTIONS(4149), + [anon_sym_SEMI] = ACTIONS(4149), + [aux_sym_preproc_def_token1] = ACTIONS(4147), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_restrict] = ACTIONS(4147), }, - [3263] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [3241] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(8507), + [anon_sym_SEMI] = ACTIONS(8479), }, - [3264] = { - [anon_sym_DASH] = ACTIONS(4159), - [sym_raw_string_literal] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [sym_true] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [sym_null] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [aux_sym_preproc_if_token2] = ACTIONS(4159), - [anon_sym_BANG] = ACTIONS(4161), - [anon_sym_sizeof] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_typedef] = ACTIONS(4159), - [anon_sym_switch] = ACTIONS(4159), - [anon_sym_explicit] = ACTIONS(4159), - [sym_identifier] = ACTIONS(4159), - [anon_sym_delete] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [sym_number_literal] = ACTIONS(4161), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym_enum] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4161), - [anon_sym_namespace] = ACTIONS(4159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4159), - [aux_sym_preproc_elif_token1] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [anon_sym_LBRACE] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_struct] = ACTIONS(4159), - [sym_auto] = ACTIONS(4159), - [anon_sym_signed] = ACTIONS(4159), - [anon_sym_long] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_using] = ACTIONS(4159), - [aux_sym_preproc_else_token1] = ACTIONS(4159), - [sym_preproc_directive] = ACTIONS(4159), - [aux_sym_preproc_if_token1] = ACTIONS(4159), - [anon_sym_AMP] = ACTIONS(4159), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [anon_sym_union] = ACTIONS(4159), - [anon_sym_typename] = ACTIONS(4159), - [anon_sym_short] = ACTIONS(4159), - [anon_sym_new] = ACTIONS(4159), - [anon_sym_goto] = ACTIONS(4159), - [sym_operator_name] = ACTIONS(4161), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_for] = ACTIONS(4159), - [aux_sym_preproc_include_token1] = ACTIONS(4159), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_DQUOTE] = ACTIONS(4161), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_LBRACK] = ACTIONS(4159), - [anon_sym_class] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [sym_primitive_type] = ACTIONS(4159), - [sym_false] = ACTIONS(4159), - [sym_nullptr] = ACTIONS(4159), - [anon_sym_do] = ACTIONS(4159), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4161), - [anon_sym_SEMI] = ACTIONS(4161), - [aux_sym_preproc_def_token1] = ACTIONS(4159), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_restrict] = ACTIONS(4159), + [3242] = { + [anon_sym_DASH] = ACTIONS(4157), + [sym_raw_string_literal] = ACTIONS(4159), + [anon_sym_else] = ACTIONS(4157), + [sym_true] = ACTIONS(4157), + [anon_sym_mutable] = ACTIONS(4157), + [sym_null] = ACTIONS(4157), + [anon_sym_break] = ACTIONS(4157), + [aux_sym_preproc_if_token2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(4159), + [anon_sym_sizeof] = ACTIONS(4157), + [anon_sym_volatile] = ACTIONS(4157), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_typedef] = ACTIONS(4157), + [anon_sym_switch] = ACTIONS(4157), + [anon_sym_explicit] = ACTIONS(4157), + [sym_identifier] = ACTIONS(4157), + [anon_sym_delete] = ACTIONS(4157), + [anon_sym_continue] = ACTIONS(4157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4157), + [anon_sym__Atomic] = ACTIONS(4157), + [sym_number_literal] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4157), + [anon_sym_enum] = ACTIONS(4157), + [anon_sym_constexpr] = ACTIONS(4157), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4159), + [anon_sym_namespace] = ACTIONS(4157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4157), + [aux_sym_preproc_elif_token1] = ACTIONS(4157), + [anon_sym_SQUOTE] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4159), + [anon_sym_DASH_DASH] = ACTIONS(4159), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_struct] = ACTIONS(4157), + [sym_auto] = ACTIONS(4157), + [anon_sym_signed] = ACTIONS(4157), + [anon_sym_long] = ACTIONS(4157), + [anon_sym_COLON_COLON] = ACTIONS(4159), + [anon_sym_using] = ACTIONS(4157), + [aux_sym_preproc_else_token1] = ACTIONS(4157), + [sym_preproc_directive] = ACTIONS(4157), + [aux_sym_preproc_if_token1] = ACTIONS(4157), + [anon_sym_AMP] = ACTIONS(4157), + [anon_sym_static] = ACTIONS(4157), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_union] = ACTIONS(4157), + [anon_sym_typename] = ACTIONS(4157), + [anon_sym_short] = ACTIONS(4157), + [anon_sym_new] = ACTIONS(4157), + [anon_sym_goto] = ACTIONS(4157), + [sym_operator_name] = ACTIONS(4159), + [anon_sym_while] = ACTIONS(4157), + [anon_sym_try] = ACTIONS(4157), + [anon_sym_for] = ACTIONS(4157), + [aux_sym_preproc_include_token1] = ACTIONS(4157), + [anon_sym_register] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4157), + [anon_sym_LBRACK] = ACTIONS(4157), + [anon_sym_class] = ACTIONS(4157), + [anon_sym_if] = ACTIONS(4157), + [sym_primitive_type] = ACTIONS(4157), + [sym_false] = ACTIONS(4157), + [sym_nullptr] = ACTIONS(4157), + [anon_sym_do] = ACTIONS(4157), + [anon_sym_template] = ACTIONS(4157), + [anon_sym_return] = ACTIONS(4157), + [anon_sym_TILDE] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4159), + [aux_sym_preproc_def_token1] = ACTIONS(4157), + [anon_sym_AMP_AMP] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4157), + [anon_sym_PLUS_PLUS] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4157), }, - [3265] = { - [sym_do_statement] = STATE(2078), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [3243] = { + [sym_do_statement] = STATE(2067), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(2078), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(2078), - [sym_if_statement] = STATE(2078), - [sym_switch_statement] = STATE(2078), - [sym_for_statement] = STATE(2078), - [sym_return_statement] = STATE(2078), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2067), + [sym_try_statement] = STATE(2067), + [aux_sym_switch_body_repeat1] = STATE(2067), + [sym_if_statement] = STATE(2067), + [sym_switch_statement] = STATE(2067), + [sym_for_statement] = STATE(2067), + [sym_return_statement] = STATE(2067), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(2078), - [aux_sym_switch_body_repeat1] = STATE(2078), - [sym_case_statement] = STATE(2078), - [sym_break_statement] = STATE(2078), - [sym_continue_statement] = STATE(2078), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(2067), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2067), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2078), - [sym_labeled_statement] = STATE(2078), - [sym_expression_statement] = STATE(2078), - [sym_while_statement] = STATE(2078), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(2067), + [sym_for_range_loop] = STATE(2067), + [sym_compound_statement] = STATE(2067), + [sym_labeled_statement] = STATE(2067), + [sym_expression_statement] = STATE(2067), + [sym_while_statement] = STATE(2067), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(8509), + [anon_sym_RBRACE] = ACTIONS(8481), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3266] = { + [3244] = { [anon_sym_DASH] = ACTIONS(4645), [sym_raw_string_literal] = ACTIONS(4647), [sym_true] = ACTIONS(4645), @@ -135086,354 +134715,354 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(4647), [anon_sym_restrict] = ACTIONS(4645), }, - [3267] = { - [aux_sym_preproc_if_token2] = ACTIONS(8511), + [3245] = { + [aux_sym_preproc_if_token2] = ACTIONS(8483), [sym_comment] = ACTIONS(3), }, - [3268] = { - [anon_sym_DASH] = ACTIONS(4856), - [sym_raw_string_literal] = ACTIONS(4858), - [sym_true] = ACTIONS(4856), - [anon_sym_mutable] = ACTIONS(4856), - [sym_null] = ACTIONS(4856), - [anon_sym_break] = ACTIONS(4856), - [aux_sym_preproc_if_token2] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(4858), - [anon_sym_sizeof] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_typedef] = ACTIONS(4856), - [anon_sym_switch] = ACTIONS(4856), - [anon_sym_explicit] = ACTIONS(4856), - [sym_identifier] = ACTIONS(4856), - [anon_sym_delete] = ACTIONS(4856), - [anon_sym_continue] = ACTIONS(4856), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4856), - [anon_sym__Atomic] = ACTIONS(4856), - [sym_number_literal] = ACTIONS(4858), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym_enum] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4856), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4856), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4858), - [anon_sym_namespace] = ACTIONS(4856), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4856), - [aux_sym_preproc_elif_token1] = ACTIONS(4856), - [anon_sym_SQUOTE] = ACTIONS(4858), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_struct] = ACTIONS(4856), - [sym_auto] = ACTIONS(4856), - [anon_sym_signed] = ACTIONS(4856), - [anon_sym_long] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_using] = ACTIONS(4856), - [aux_sym_preproc_else_token1] = ACTIONS(4856), - [sym_preproc_directive] = ACTIONS(4856), - [aux_sym_preproc_if_token1] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4858), - [anon_sym_union] = ACTIONS(4856), - [anon_sym_typename] = ACTIONS(4856), - [anon_sym_short] = ACTIONS(4856), - [anon_sym_new] = ACTIONS(4856), - [anon_sym_goto] = ACTIONS(4856), - [sym_operator_name] = ACTIONS(4858), - [anon_sym_while] = ACTIONS(4856), - [anon_sym_try] = ACTIONS(4856), - [anon_sym_for] = ACTIONS(4856), - [aux_sym_preproc_include_token1] = ACTIONS(4856), - [anon_sym_register] = ACTIONS(4856), - [anon_sym_DQUOTE] = ACTIONS(4858), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_LBRACK] = ACTIONS(4856), - [anon_sym_class] = ACTIONS(4856), - [anon_sym_if] = ACTIONS(4856), - [sym_primitive_type] = ACTIONS(4856), - [sym_false] = ACTIONS(4856), - [sym_nullptr] = ACTIONS(4856), - [anon_sym_do] = ACTIONS(4856), - [anon_sym_template] = ACTIONS(4856), - [anon_sym_return] = ACTIONS(4856), - [anon_sym_TILDE] = ACTIONS(4858), - [anon_sym_SEMI] = ACTIONS(4858), - [aux_sym_preproc_def_token1] = ACTIONS(4856), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_restrict] = ACTIONS(4856), + [3246] = { + [anon_sym_DASH] = ACTIONS(4852), + [sym_raw_string_literal] = ACTIONS(4854), + [sym_true] = ACTIONS(4852), + [anon_sym_mutable] = ACTIONS(4852), + [sym_null] = ACTIONS(4852), + [anon_sym_break] = ACTIONS(4852), + [aux_sym_preproc_if_token2] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_sizeof] = ACTIONS(4852), + [anon_sym_volatile] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_typedef] = ACTIONS(4852), + [anon_sym_switch] = ACTIONS(4852), + [anon_sym_explicit] = ACTIONS(4852), + [sym_identifier] = ACTIONS(4852), + [anon_sym_delete] = ACTIONS(4852), + [anon_sym_continue] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4852), + [anon_sym__Atomic] = ACTIONS(4852), + [sym_number_literal] = ACTIONS(4854), + [anon_sym_extern] = ACTIONS(4852), + [anon_sym_enum] = ACTIONS(4852), + [anon_sym_constexpr] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4852), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4854), + [anon_sym_namespace] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4852), + [aux_sym_preproc_elif_token1] = ACTIONS(4852), + [anon_sym_SQUOTE] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4854), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_LPAREN2] = ACTIONS(4854), + [anon_sym_struct] = ACTIONS(4852), + [sym_auto] = ACTIONS(4852), + [anon_sym_signed] = ACTIONS(4852), + [anon_sym_long] = ACTIONS(4852), + [anon_sym_COLON_COLON] = ACTIONS(4854), + [anon_sym_using] = ACTIONS(4852), + [aux_sym_preproc_else_token1] = ACTIONS(4852), + [sym_preproc_directive] = ACTIONS(4852), + [aux_sym_preproc_if_token1] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4852), + [anon_sym_static] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_union] = ACTIONS(4852), + [anon_sym_typename] = ACTIONS(4852), + [anon_sym_short] = ACTIONS(4852), + [anon_sym_new] = ACTIONS(4852), + [anon_sym_goto] = ACTIONS(4852), + [sym_operator_name] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4852), + [anon_sym_for] = ACTIONS(4852), + [aux_sym_preproc_include_token1] = ACTIONS(4852), + [anon_sym_register] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4854), + [anon_sym_const] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_class] = ACTIONS(4852), + [anon_sym_if] = ACTIONS(4852), + [sym_primitive_type] = ACTIONS(4852), + [sym_false] = ACTIONS(4852), + [sym_nullptr] = ACTIONS(4852), + [anon_sym_do] = ACTIONS(4852), + [anon_sym_template] = ACTIONS(4852), + [anon_sym_return] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4854), + [aux_sym_preproc_def_token1] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4854), + [anon_sym_restrict] = ACTIONS(4852), }, - [3269] = { - [aux_sym_preproc_if_token2] = ACTIONS(8513), + [3247] = { + [aux_sym_preproc_if_token2] = ACTIONS(8485), [sym_comment] = ACTIONS(3), }, - [3270] = { - [anon_sym_DASH] = ACTIONS(5245), - [sym_raw_string_literal] = ACTIONS(5247), - [sym_true] = ACTIONS(5245), - [anon_sym_mutable] = ACTIONS(5245), - [sym_null] = ACTIONS(5245), - [anon_sym_break] = ACTIONS(5245), - [aux_sym_preproc_if_token2] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_sizeof] = ACTIONS(5245), - [anon_sym_volatile] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_typedef] = ACTIONS(5245), - [anon_sym_switch] = ACTIONS(5245), - [anon_sym_explicit] = ACTIONS(5245), - [sym_identifier] = ACTIONS(5245), - [anon_sym_delete] = ACTIONS(5245), - [anon_sym_continue] = ACTIONS(5245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5245), - [anon_sym__Atomic] = ACTIONS(5245), - [sym_number_literal] = ACTIONS(5247), - [anon_sym_extern] = ACTIONS(5245), - [anon_sym_enum] = ACTIONS(5245), - [anon_sym_constexpr] = ACTIONS(5245), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5247), - [anon_sym_namespace] = ACTIONS(5245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5245), - [aux_sym_preproc_elif_token1] = ACTIONS(5245), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5247), - [anon_sym_DASH_DASH] = ACTIONS(5247), - [anon_sym_LPAREN2] = ACTIONS(5247), - [anon_sym_struct] = ACTIONS(5245), - [sym_auto] = ACTIONS(5245), - [anon_sym_signed] = ACTIONS(5245), - [anon_sym_long] = ACTIONS(5245), - [anon_sym_COLON_COLON] = ACTIONS(5247), - [anon_sym_using] = ACTIONS(5245), - [aux_sym_preproc_else_token1] = ACTIONS(5245), - [sym_preproc_directive] = ACTIONS(5245), - [aux_sym_preproc_if_token1] = ACTIONS(5245), - [anon_sym_AMP] = ACTIONS(5245), - [anon_sym_static] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_union] = ACTIONS(5245), - [anon_sym_typename] = ACTIONS(5245), - [anon_sym_short] = ACTIONS(5245), - [anon_sym_new] = ACTIONS(5245), - [anon_sym_goto] = ACTIONS(5245), - [sym_operator_name] = ACTIONS(5247), - [anon_sym_while] = ACTIONS(5245), - [anon_sym_try] = ACTIONS(5245), - [anon_sym_for] = ACTIONS(5245), - [aux_sym_preproc_include_token1] = ACTIONS(5245), - [anon_sym_register] = ACTIONS(5245), - [anon_sym_DQUOTE] = ACTIONS(5247), - [anon_sym_const] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_class] = ACTIONS(5245), - [anon_sym_if] = ACTIONS(5245), - [sym_primitive_type] = ACTIONS(5245), - [sym_false] = ACTIONS(5245), - [sym_nullptr] = ACTIONS(5245), - [anon_sym_do] = ACTIONS(5245), - [anon_sym_template] = ACTIONS(5245), - [anon_sym_return] = ACTIONS(5245), - [anon_sym_TILDE] = ACTIONS(5247), - [anon_sym_SEMI] = ACTIONS(5247), - [aux_sym_preproc_def_token1] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5247), - [anon_sym_inline] = ACTIONS(5245), - [anon_sym_PLUS_PLUS] = ACTIONS(5247), - [anon_sym_restrict] = ACTIONS(5245), + [3248] = { + [anon_sym_DASH] = ACTIONS(5244), + [sym_raw_string_literal] = ACTIONS(5246), + [sym_true] = ACTIONS(5244), + [anon_sym_mutable] = ACTIONS(5244), + [sym_null] = ACTIONS(5244), + [anon_sym_break] = ACTIONS(5244), + [aux_sym_preproc_if_token2] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5246), + [anon_sym_sizeof] = ACTIONS(5244), + [anon_sym_volatile] = ACTIONS(5244), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_typedef] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5244), + [anon_sym_explicit] = ACTIONS(5244), + [sym_identifier] = ACTIONS(5244), + [anon_sym_delete] = ACTIONS(5244), + [anon_sym_continue] = ACTIONS(5244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5244), + [anon_sym__Atomic] = ACTIONS(5244), + [sym_number_literal] = ACTIONS(5246), + [anon_sym_extern] = ACTIONS(5244), + [anon_sym_enum] = ACTIONS(5244), + [anon_sym_constexpr] = ACTIONS(5244), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5246), + [anon_sym_namespace] = ACTIONS(5244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5244), + [aux_sym_preproc_elif_token1] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5246), + [anon_sym_LPAREN2] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(5244), + [sym_auto] = ACTIONS(5244), + [anon_sym_signed] = ACTIONS(5244), + [anon_sym_long] = ACTIONS(5244), + [anon_sym_COLON_COLON] = ACTIONS(5246), + [anon_sym_using] = ACTIONS(5244), + [aux_sym_preproc_else_token1] = ACTIONS(5244), + [sym_preproc_directive] = ACTIONS(5244), + [aux_sym_preproc_if_token1] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_static] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_union] = ACTIONS(5244), + [anon_sym_typename] = ACTIONS(5244), + [anon_sym_short] = ACTIONS(5244), + [anon_sym_new] = ACTIONS(5244), + [anon_sym_goto] = ACTIONS(5244), + [sym_operator_name] = ACTIONS(5246), + [anon_sym_while] = ACTIONS(5244), + [anon_sym_try] = ACTIONS(5244), + [anon_sym_for] = ACTIONS(5244), + [aux_sym_preproc_include_token1] = ACTIONS(5244), + [anon_sym_register] = ACTIONS(5244), + [anon_sym_DQUOTE] = ACTIONS(5246), + [anon_sym_const] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5244), + [anon_sym_class] = ACTIONS(5244), + [anon_sym_if] = ACTIONS(5244), + [sym_primitive_type] = ACTIONS(5244), + [sym_false] = ACTIONS(5244), + [sym_nullptr] = ACTIONS(5244), + [anon_sym_do] = ACTIONS(5244), + [anon_sym_template] = ACTIONS(5244), + [anon_sym_return] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(5246), + [aux_sym_preproc_def_token1] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_inline] = ACTIONS(5244), + [anon_sym_PLUS_PLUS] = ACTIONS(5246), + [anon_sym_restrict] = ACTIONS(5244), }, - [3271] = { + [3249] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8515), + [anon_sym_SEMI] = ACTIONS(8487), }, - [3272] = { - [sym_pointer_type_declarator] = STATE(3949), - [sym_array_type_declarator] = STATE(3949), - [sym_function_type_declarator] = STATE(3949), - [sym__type_declarator] = STATE(3949), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [3250] = { + [sym_pointer_type_declarator] = STATE(3923), + [sym_array_type_declarator] = STATE(3923), + [sym_function_type_declarator] = STATE(3923), + [sym__type_declarator] = STATE(3923), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [3273] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(3951), - [anon_sym_LPAREN2] = ACTIONS(587), + [3251] = { + [aux_sym_type_definition_repeat2] = STATE(3925), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(8517), + [anon_sym_SEMI] = ACTIONS(8489), }, - [3274] = { - [sym_do_statement] = STATE(3953), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [3252] = { + [sym_do_statement] = STATE(3927), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(3953), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(3953), - [sym_if_statement] = STATE(3953), - [sym_switch_statement] = STATE(3953), - [sym_for_statement] = STATE(3953), - [sym_return_statement] = STATE(3953), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3927), + [sym_try_statement] = STATE(3927), + [aux_sym_switch_body_repeat1] = STATE(3927), + [sym_if_statement] = STATE(3927), + [sym_switch_statement] = STATE(3927), + [sym_for_statement] = STATE(3927), + [sym_return_statement] = STATE(3927), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(3953), - [aux_sym_switch_body_repeat1] = STATE(3953), - [sym_case_statement] = STATE(3953), - [sym_break_statement] = STATE(3953), - [sym_continue_statement] = STATE(3953), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(3927), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3927), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3953), - [sym_labeled_statement] = STATE(3953), - [sym_expression_statement] = STATE(3953), - [sym_while_statement] = STATE(3953), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(3927), + [sym_for_range_loop] = STATE(3927), + [sym_compound_statement] = STATE(3927), + [sym_labeled_statement] = STATE(3927), + [sym_expression_statement] = STATE(3927), + [sym_while_statement] = STATE(3927), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(8519), + [anon_sym_RBRACE] = ACTIONS(8491), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3275] = { - [anon_sym_DASH] = ACTIONS(2156), - [sym_raw_string_literal] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [anon_sym_mutable] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [aux_sym_preproc_if_token2] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_sizeof] = ACTIONS(2156), - [anon_sym_volatile] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_typedef] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_explicit] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), - [anon_sym__Atomic] = ACTIONS(2156), - [sym_number_literal] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_constexpr] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2158), - [anon_sym_struct] = ACTIONS(2156), - [sym_auto] = ACTIONS(2156), - [anon_sym_signed] = ACTIONS(2156), - [anon_sym_long] = ACTIONS(2156), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_using] = ACTIONS(2156), - [sym_preproc_directive] = ACTIONS(2156), - [aux_sym_preproc_if_token1] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_typename] = ACTIONS(2156), - [anon_sym_short] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_goto] = ACTIONS(2156), - [sym_operator_name] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [aux_sym_preproc_include_token1] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [sym_primitive_type] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_nullptr] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_template] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [aux_sym_preproc_def_token1] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_restrict] = ACTIONS(2156), + [3253] = { + [anon_sym_DASH] = ACTIONS(2158), + [sym_raw_string_literal] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2158), + [sym_true] = ACTIONS(2158), + [anon_sym_mutable] = ACTIONS(2158), + [sym_null] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [aux_sym_preproc_if_token2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym_volatile] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2158), + [anon_sym_typedef] = ACTIONS(2158), + [anon_sym_switch] = ACTIONS(2158), + [anon_sym_explicit] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2158), + [anon_sym_delete] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2158), + [anon_sym__Atomic] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_constexpr] = ACTIONS(2158), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2158), + [sym_auto] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2158), + [anon_sym_long] = ACTIONS(2158), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2158), + [sym_preproc_directive] = ACTIONS(2158), + [aux_sym_preproc_if_token1] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_typename] = ACTIONS(2158), + [anon_sym_short] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2158), + [anon_sym_goto] = ACTIONS(2158), + [sym_operator_name] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [aux_sym_preproc_include_token1] = ACTIONS(2158), + [anon_sym_register] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_LBRACK] = ACTIONS(2158), + [anon_sym_class] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [sym_primitive_type] = ACTIONS(2158), + [sym_false] = ACTIONS(2158), + [sym_nullptr] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_template] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2158), }, - [3276] = { - [sym_template_argument_list] = STATE(377), + [3254] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -135441,7 +135070,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -135451,7 +135080,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4553), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -135477,277 +135106,277 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [3277] = { - [anon_sym_DASH] = ACTIONS(2353), - [sym_raw_string_literal] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [anon_sym_mutable] = ACTIONS(2353), - [sym_null] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [aux_sym_preproc_if_token2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_sizeof] = ACTIONS(2353), - [anon_sym_volatile] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_explicit] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2353), - [anon_sym_delete] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), - [anon_sym__Atomic] = ACTIONS(2353), - [sym_number_literal] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_constexpr] = ACTIONS(2353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2353), - [sym_auto] = ACTIONS(2353), - [anon_sym_signed] = ACTIONS(2353), - [anon_sym_long] = ACTIONS(2353), - [anon_sym_COLON_COLON] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2353), - [sym_preproc_directive] = ACTIONS(2353), - [aux_sym_preproc_if_token1] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_typename] = ACTIONS(2353), - [anon_sym_short] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_goto] = ACTIONS(2353), - [sym_operator_name] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [aux_sym_preproc_include_token1] = ACTIONS(2353), - [anon_sym_register] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [sym_primitive_type] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_nullptr] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_template] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2353), + [3255] = { + [anon_sym_DASH] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2355), + [sym_true] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [aux_sym_preproc_if_token2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2355), + [sym_auto] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [aux_sym_preproc_if_token1] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [sym_operator_name] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [sym_primitive_type] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2355), }, - [3278] = { - [anon_sym_DASH] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2453), - [sym_true] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [sym_null] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [aux_sym_preproc_if_token2] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_sizeof] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_typedef] = ACTIONS(2451), - [anon_sym_switch] = ACTIONS(2451), - [anon_sym_explicit] = ACTIONS(2451), - [sym_identifier] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [sym_number_literal] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(2451), - [sym_auto] = ACTIONS(2451), - [anon_sym_signed] = ACTIONS(2451), - [anon_sym_long] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2451), - [sym_preproc_directive] = ACTIONS(2451), - [aux_sym_preproc_if_token1] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_typename] = ACTIONS(2451), - [anon_sym_short] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [sym_operator_name] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [aux_sym_preproc_include_token1] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [sym_primitive_type] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nullptr] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_SEMI] = ACTIONS(2453), - [aux_sym_preproc_def_token1] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_restrict] = ACTIONS(2451), + [3256] = { + [anon_sym_DASH] = ACTIONS(2453), + [sym_raw_string_literal] = ACTIONS(2455), + [sym_true] = ACTIONS(2453), + [anon_sym_mutable] = ACTIONS(2453), + [sym_null] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [aux_sym_preproc_if_token2] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_sizeof] = ACTIONS(2453), + [anon_sym_volatile] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_typedef] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_explicit] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2453), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2453), + [anon_sym__Atomic] = ACTIONS(2453), + [sym_number_literal] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_constexpr] = ACTIONS(2453), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2455), + [anon_sym_namespace] = ACTIONS(2453), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2453), + [sym_auto] = ACTIONS(2453), + [anon_sym_signed] = ACTIONS(2453), + [anon_sym_long] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2455), + [anon_sym_using] = ACTIONS(2453), + [sym_preproc_directive] = ACTIONS(2453), + [aux_sym_preproc_if_token1] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_typename] = ACTIONS(2453), + [anon_sym_short] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [sym_operator_name] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [aux_sym_preproc_include_token1] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [sym_primitive_type] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nullptr] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_template] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [aux_sym_preproc_def_token1] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2453), }, - [3279] = { - [aux_sym_preproc_if_token2] = ACTIONS(8521), + [3257] = { + [aux_sym_preproc_if_token2] = ACTIONS(8493), [sym_comment] = ACTIONS(3), }, - [3280] = { + [3258] = { [sym_goto_statement] = STATE(1296), [sym_preproc_function_def] = STATE(1296), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(1296), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(1296), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(1296), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(3955), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1296), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(3929), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), [sym_switch_statement] = STATE(1296), + [sym_structured_binding_declarator] = STATE(60), [sym_return_statement] = STATE(1296), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_namespace_definition] = STATE(1296), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(51), [sym_type_definition] = STATE(1296), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1296), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1296), + [sym_constructor_or_destructor_definition] = STATE(1296), + [sym_reference_declarator] = STATE(60), [sym_break_statement] = STATE(1296), [sym_preproc_include] = STATE(1296), - [sym_assignment_expression] = STATE(482), + [sym_assignment_expression] = STATE(484), [sym_preproc_ifdef] = STATE(1296), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(1296), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(1296), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), [sym_compound_statement] = STATE(1296), - [sym_template_instantiation] = STATE(1296), - [sym_constructor_or_destructor_definition] = STATE(1296), [sym_expression_statement] = STATE(1296), - [sym_reference_declarator] = STATE(56), [sym_do_statement] = STATE(1296), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), [sym_preproc_def] = STATE(1296), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_function_definition] = STATE(1296), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), [sym__empty_declaration] = STATE(1296), - [aux_sym_translation_unit_repeat1] = STATE(1296), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(1296), - [sym_preproc_else] = STATE(3955), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(3929), [sym_if_statement] = STATE(1296), [sym_for_statement] = STATE(1296), - [sym_comma_expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_preproc_call] = STATE(1296), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(1296), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(1296), - [sym_sized_type_specifier] = STATE(53), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(1296), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1296), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), [sym_continue_statement] = STATE(1296), [sym_preproc_if] = STATE(1296), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1296), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), [sym_linkage_specification] = STATE(1296), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1296), + [aux_sym_translation_unit_repeat1] = STATE(1296), + [sym_enum_specifier] = STATE(55), [sym_labeled_statement] = STATE(1296), [sym_while_statement] = STATE(1296), - [sym_raw_string_literal] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(8523), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(8495), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -135755,10 +135384,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -135766,288 +135395,290 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3281] = { - [anon_sym_DASH] = ACTIONS(2569), - [sym_raw_string_literal] = ACTIONS(2571), - [sym_true] = ACTIONS(2569), - [anon_sym_mutable] = ACTIONS(2569), - [sym_null] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [aux_sym_preproc_if_token2] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_sizeof] = ACTIONS(2569), - [anon_sym_volatile] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_typedef] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_explicit] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2569), - [anon_sym_delete] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2569), - [anon_sym__Atomic] = ACTIONS(2569), - [sym_number_literal] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_constexpr] = ACTIONS(2569), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2571), - [anon_sym_namespace] = ACTIONS(2569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2569), - [sym_auto] = ACTIONS(2569), - [anon_sym_signed] = ACTIONS(2569), - [anon_sym_long] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2571), - [anon_sym_using] = ACTIONS(2569), - [sym_preproc_directive] = ACTIONS(2569), - [aux_sym_preproc_if_token1] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2569), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_short] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_goto] = ACTIONS(2569), - [sym_operator_name] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [aux_sym_preproc_include_token1] = ACTIONS(2569), - [anon_sym_register] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [sym_primitive_type] = ACTIONS(2569), - [sym_false] = ACTIONS(2569), - [sym_nullptr] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [aux_sym_preproc_def_token1] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2569), + [3259] = { + [anon_sym_DASH] = ACTIONS(2571), + [sym_raw_string_literal] = ACTIONS(2573), + [sym_true] = ACTIONS(2571), + [anon_sym_mutable] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [aux_sym_preproc_if_token2] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_explicit] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_constexpr] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2571), + [sym_auto] = ACTIONS(2571), + [anon_sym_signed] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [aux_sym_preproc_if_token1] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_typename] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [sym_operator_name] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [aux_sym_preproc_include_token1] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_nullptr] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_template] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2573), + [aux_sym_preproc_def_token1] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_restrict] = ACTIONS(2571), }, - [3282] = { - [sym_reference_declarator] = STATE(2337), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2337), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(2337), - [sym_destructor_name] = STATE(2337), - [sym__declarator] = STATE(2337), - [sym_init_declarator] = STATE(2338), - [sym_array_declarator] = STATE(2337), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2337), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(4607), + [3260] = { + [sym_template_function] = STATE(2325), + [sym_destructor_name] = STATE(2325), + [sym_pointer_declarator] = STATE(2325), + [sym_structured_binding_declarator] = STATE(2325), + [sym__declarator] = STATE(2325), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(2325), + [sym_array_declarator] = STATE(2325), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(2326), + [sym_function_declarator] = STATE(2325), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(4603), [sym_comment] = ACTIONS(3), }, - [3283] = { - [anon_sym_DASH] = ACTIONS(2679), - [sym_raw_string_literal] = ACTIONS(2681), - [sym_true] = ACTIONS(2679), - [anon_sym_mutable] = ACTIONS(2679), - [sym_null] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [aux_sym_preproc_if_token2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_sizeof] = ACTIONS(2679), - [anon_sym_volatile] = ACTIONS(2679), - [anon_sym_PLUS] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2679), - [anon_sym_switch] = ACTIONS(2679), - [anon_sym_explicit] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2679), - [anon_sym_delete] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), - [anon_sym__Atomic] = ACTIONS(2679), - [sym_number_literal] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_constexpr] = ACTIONS(2679), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2679), - [sym_auto] = ACTIONS(2679), - [anon_sym_signed] = ACTIONS(2679), - [anon_sym_long] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2679), - [sym_preproc_directive] = ACTIONS(2679), - [aux_sym_preproc_if_token1] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_typename] = ACTIONS(2679), - [anon_sym_short] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2679), - [anon_sym_goto] = ACTIONS(2679), - [sym_operator_name] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [aux_sym_preproc_include_token1] = ACTIONS(2679), - [anon_sym_register] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [sym_primitive_type] = ACTIONS(2679), - [sym_false] = ACTIONS(2679), - [sym_nullptr] = ACTIONS(2679), - [anon_sym_do] = ACTIONS(2679), - [anon_sym_template] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2679), + [3261] = { + [anon_sym_DASH] = ACTIONS(2681), + [sym_raw_string_literal] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [aux_sym_preproc_if_token2] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2681), + [sym_auto] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_using] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [sym_operator_name] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2683), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_restrict] = ACTIONS(2681), }, - [3284] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [3262] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -136089,7 +135720,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(8525), + [anon_sym_RBRACE] = ACTIONS(8497), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -136121,549 +135752,549 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3285] = { - [anon_sym_DASH] = ACTIONS(2685), - [sym_raw_string_literal] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2685), - [sym_auto] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [sym_operator_name] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2685), + [3263] = { + [anon_sym_DASH] = ACTIONS(2687), + [sym_raw_string_literal] = ACTIONS(2689), + [sym_true] = ACTIONS(2687), + [anon_sym_mutable] = ACTIONS(2687), + [sym_null] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [aux_sym_preproc_if_token2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_sizeof] = ACTIONS(2687), + [anon_sym_volatile] = ACTIONS(2687), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2687), + [anon_sym_switch] = ACTIONS(2687), + [anon_sym_explicit] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2687), + [anon_sym_delete] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), + [anon_sym__Atomic] = ACTIONS(2687), + [sym_number_literal] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_constexpr] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2687), + [sym_auto] = ACTIONS(2687), + [anon_sym_signed] = ACTIONS(2687), + [anon_sym_long] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(2687), + [aux_sym_preproc_if_token1] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_typename] = ACTIONS(2687), + [anon_sym_short] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_goto] = ACTIONS(2687), + [sym_operator_name] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [aux_sym_preproc_include_token1] = ACTIONS(2687), + [anon_sym_register] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [sym_primitive_type] = ACTIONS(2687), + [sym_false] = ACTIONS(2687), + [sym_nullptr] = ACTIONS(2687), + [anon_sym_do] = ACTIONS(2687), + [anon_sym_template] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2687), }, - [3286] = { - [anon_sym_DASH] = ACTIONS(2707), - [sym_raw_string_literal] = ACTIONS(2709), - [anon_sym_else] = ACTIONS(2707), - [sym_true] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [sym_null] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [aux_sym_preproc_if_token2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2707), - [anon_sym_catch] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2707), - [sym_auto] = ACTIONS(2707), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [sym_operator_name] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [aux_sym_preproc_include_token1] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [sym_nullptr] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2707), + [3264] = { + [anon_sym_DASH] = ACTIONS(2709), + [sym_raw_string_literal] = ACTIONS(2711), + [anon_sym_else] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym_namespace] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2709), + [sym_auto] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_using] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [sym_operator_name] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2711), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_restrict] = ACTIONS(2709), }, - [3287] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [3265] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(8527), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(8499), }, - [3288] = { + [3266] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8527), + [anon_sym_SEMI] = ACTIONS(8499), }, - [3289] = { - [sym_macro_type_specifier] = STATE(1480), - [sym_class_specifier] = STATE(1480), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1480), - [sym__type_specifier] = STATE(1480), - [sym_type_descriptor] = STATE(3958), - [sym_type_qualifier] = STATE(1482), - [sym_struct_specifier] = STATE(1480), - [sym_union_specifier] = STATE(1480), - [sym_dependent_type] = STATE(1480), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(1482), - [aux_sym_sized_type_specifier_repeat1] = STATE(1483), - [sym_enum_specifier] = STATE(1480), - [sym_scoped_type_identifier] = STATE(87), + [3267] = { + [aux_sym_type_definition_repeat1] = STATE(1475), + [sym_macro_type_specifier] = STATE(1477), + [sym_class_specifier] = STATE(1477), + [aux_sym_sized_type_specifier_repeat1] = STATE(1476), + [sym_sized_type_specifier] = STATE(1477), + [sym__type_specifier] = STATE(1477), + [sym_type_descriptor] = STATE(3932), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_type_qualifier] = STATE(1475), + [sym_struct_specifier] = STATE(1477), + [sym_union_specifier] = STATE(1477), + [sym_dependent_type] = STATE(1477), + [sym_enum_specifier] = STATE(1477), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2933), + [sym_auto] = ACTIONS(2933), + [anon_sym_signed] = ACTIONS(2935), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2935), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(147), [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2935), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2937), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2935), [anon_sym_restrict] = ACTIONS(11), }, - [3290] = { - [anon_sym_DASH] = ACTIONS(2937), - [sym_raw_string_literal] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [sym_null] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym_namespace] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2937), - [sym_auto] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [sym_operator_name] = ACTIONS(2939), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [sym_nullptr] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2939), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_restrict] = ACTIONS(2937), + [3268] = { + [anon_sym_DASH] = ACTIONS(2939), + [sym_raw_string_literal] = ACTIONS(2941), + [sym_true] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [sym_null] = ACTIONS(2939), + [anon_sym_break] = ACTIONS(2939), + [aux_sym_preproc_if_token2] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_switch] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2939), + [anon_sym_delete] = ACTIONS(2939), + [anon_sym_continue] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [sym_number_literal] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [anon_sym_namespace] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2939), + [sym_auto] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [anon_sym_new] = ACTIONS(2939), + [anon_sym_goto] = ACTIONS(2939), + [sym_operator_name] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2939), + [aux_sym_preproc_include_token1] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [sym_false] = ACTIONS(2939), + [sym_nullptr] = ACTIONS(2939), + [anon_sym_do] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_return] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2941), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2941), + [anon_sym_restrict] = ACTIONS(2939), }, - [3291] = { - [anon_sym_DASH] = ACTIONS(2943), - [sym_raw_string_literal] = ACTIONS(2945), - [sym_true] = ACTIONS(2943), - [anon_sym_mutable] = ACTIONS(2943), - [sym_null] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [aux_sym_preproc_if_token2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_volatile] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_typedef] = ACTIONS(2943), - [anon_sym_switch] = ACTIONS(2943), - [anon_sym_explicit] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2943), - [anon_sym_delete] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), - [anon_sym__Atomic] = ACTIONS(2943), - [sym_number_literal] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_constexpr] = ACTIONS(2943), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2943), - [sym_auto] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2943), - [anon_sym_long] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2943), - [sym_preproc_directive] = ACTIONS(2943), - [aux_sym_preproc_if_token1] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_typename] = ACTIONS(2943), - [anon_sym_short] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [sym_operator_name] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [aux_sym_preproc_include_token1] = ACTIONS(2943), - [anon_sym_register] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nullptr] = ACTIONS(2943), - [anon_sym_do] = ACTIONS(2943), - [anon_sym_template] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2943), + [3269] = { + [anon_sym_DASH] = ACTIONS(2945), + [sym_raw_string_literal] = ACTIONS(2947), + [sym_true] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [sym_null] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [aux_sym_preproc_if_token2] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_sizeof] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_explicit] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2945), + [anon_sym_delete] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [sym_number_literal] = ACTIONS(2947), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [anon_sym_namespace] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2945), + [sym_auto] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2945), + [sym_preproc_directive] = ACTIONS(2945), + [aux_sym_preproc_if_token1] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_goto] = ACTIONS(2945), + [sym_operator_name] = ACTIONS(2947), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [aux_sym_preproc_include_token1] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_nullptr] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2947), + [aux_sym_preproc_def_token1] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_restrict] = ACTIONS(2945), }, - [3292] = { - [anon_sym_DASH] = ACTIONS(2947), - [sym_raw_string_literal] = ACTIONS(2949), - [sym_true] = ACTIONS(2947), - [anon_sym_mutable] = ACTIONS(2947), - [sym_null] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [aux_sym_preproc_if_token2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_sizeof] = ACTIONS(2947), - [anon_sym_volatile] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_typedef] = ACTIONS(2947), - [anon_sym_switch] = ACTIONS(2947), - [anon_sym_explicit] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2947), - [anon_sym_delete] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), - [anon_sym__Atomic] = ACTIONS(2947), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_constexpr] = ACTIONS(2947), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2947), - [sym_auto] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2947), - [anon_sym_long] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2947), - [sym_preproc_directive] = ACTIONS(2947), - [aux_sym_preproc_if_token1] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_typename] = ACTIONS(2947), - [anon_sym_short] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [sym_operator_name] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [aux_sym_preproc_include_token1] = ACTIONS(2947), - [anon_sym_register] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [sym_primitive_type] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nullptr] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_template] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2947), + [3270] = { + [anon_sym_DASH] = ACTIONS(2949), + [sym_raw_string_literal] = ACTIONS(2951), + [sym_true] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [sym_null] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [aux_sym_preproc_if_token2] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_explicit] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2949), + [anon_sym_delete] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), + [anon_sym__Atomic] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2951), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_constexpr] = ACTIONS(2949), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), + [anon_sym_namespace] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_LPAREN2] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2949), + [sym_auto] = ACTIONS(2949), + [anon_sym_signed] = ACTIONS(2949), + [anon_sym_long] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2949), + [sym_preproc_directive] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_typename] = ACTIONS(2949), + [anon_sym_short] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [sym_operator_name] = ACTIONS(2951), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [aux_sym_preproc_include_token1] = ACTIONS(2949), + [anon_sym_register] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_nullptr] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_template] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2951), + [aux_sym_preproc_def_token1] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_restrict] = ACTIONS(2949), }, - [3293] = { - [aux_sym_preproc_if_token2] = ACTIONS(8529), + [3271] = { + [aux_sym_preproc_if_token2] = ACTIONS(8501), [sym_comment] = ACTIONS(3), }, - [3294] = { + [3272] = { [sym_goto_statement] = STATE(1296), [sym_preproc_function_def] = STATE(1296), - [sym_logical_expression] = STATE(482), - [sym_for_range_loop] = STATE(1296), - [sym_cast_expression] = STATE(482), - [sym_declaration] = STATE(1296), + [sym_logical_expression] = STATE(484), + [sym_try_statement] = STATE(1296), + [sym_cast_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_preproc_elif] = STATE(3960), - [aux_sym__declaration_specifiers_repeat1] = STATE(480), - [sym_type_qualifier] = STATE(480), - [sym_union_specifier] = STATE(53), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(1296), + [aux_sym_function_definition_repeat1] = STATE(480), + [sym_preproc_elif] = STATE(3934), + [sym_type_qualifier] = STATE(483), + [sym_union_specifier] = STATE(55), [sym_switch_statement] = STATE(1296), + [sym_structured_binding_declarator] = STATE(60), [sym_return_statement] = STATE(1296), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_namespace_definition] = STATE(1296), + [sym_conditional_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), + [sym_scoped_namespace_identifier] = STATE(51), [sym_type_definition] = STATE(1296), - [sym_function_declarator] = STATE(481), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(1296), + [sym_function_declarator] = STATE(482), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(1296), + [sym_constructor_or_destructor_definition] = STATE(1296), + [sym_reference_declarator] = STATE(60), [sym_break_statement] = STATE(1296), [sym_preproc_include] = STATE(1296), - [sym_assignment_expression] = STATE(482), + [sym_assignment_expression] = STATE(484), [sym_preproc_ifdef] = STATE(1296), - [sym_shift_expression] = STATE(482), - [sym_using_declaration] = STATE(1296), + [sym_shift_expression] = STATE(484), + [sym_for_range_loop] = STATE(1296), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(486), + [aux_sym__declaration_specifiers_repeat1] = STATE(483), [sym_compound_statement] = STATE(1296), - [sym_template_instantiation] = STATE(1296), - [sym_constructor_or_destructor_definition] = STATE(1296), [sym_expression_statement] = STATE(1296), - [sym_reference_declarator] = STATE(56), [sym_do_statement] = STATE(1296), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(482), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(484), [sym_preproc_def] = STATE(1296), - [sym_bitwise_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [sym_bitwise_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_function_definition] = STATE(1296), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(482), - [sym_char_literal] = STATE(482), - [sym_array_declarator] = STATE(56), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_array_declarator] = STATE(60), [sym__empty_declaration] = STATE(1296), - [aux_sym_translation_unit_repeat1] = STATE(1296), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(480), - [sym_alias_declaration] = STATE(1296), - [sym_preproc_else] = STATE(3960), + [sym_storage_class_specifier] = STATE(483), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_preproc_else] = STATE(3934), [sym_if_statement] = STATE(1296), [sym_for_statement] = STATE(1296), - [sym_comma_expression] = STATE(484), + [sym_comma_expression] = STATE(485), [sym_preproc_call] = STATE(1296), - [sym_equality_expression] = STATE(482), - [sym_try_statement] = STATE(1296), - [sym_sizeof_expression] = STATE(482), - [sym__declaration_specifiers] = STATE(485), - [sym_parenthesized_expression] = STATE(482), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(482), - [aux_sym_function_definition_repeat1] = STATE(486), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(482), - [sym_structured_binding_declaration] = STATE(1296), - [sym_sized_type_specifier] = STATE(53), + [sym_equality_expression] = STATE(484), + [sym_using_declaration] = STATE(1296), + [sym_sizeof_expression] = STATE(484), + [sym__declaration_specifiers] = STATE(486), + [sym_parenthesized_expression] = STATE(484), + [sym_attribute] = STATE(480), + [sym_concatenated_string] = STATE(484), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(1296), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), [sym_continue_statement] = STATE(1296), [sym_preproc_if] = STATE(1296), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(1296), - [sym_math_expression] = STATE(482), - [sym_lambda_capture_specifier] = STATE(63), + [sym_new_expression] = STATE(484), + [sym_math_expression] = STATE(484), + [sym_destructor_name] = STATE(60), [sym_linkage_specification] = STATE(1296), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(1296), + [aux_sym_translation_unit_repeat1] = STATE(1296), + [sym_enum_specifier] = STATE(55), [sym_labeled_statement] = STATE(1296), [sym_while_statement] = STATE(1296), - [sym_raw_string_literal] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), - [sym_true] = ACTIONS(808), + [sym_true] = ACTIONS(812), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(8531), + [sym_null] = ACTIONS(812), + [anon_sym_break] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(8503), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(820), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(818), + [sym_identifier] = ACTIONS(822), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(824), + [sym_number_literal] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(828), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), [anon_sym_unsigned] = ACTIONS(35), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_namespace] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(47), [anon_sym_struct] = ACTIONS(49), @@ -136671,10 +136302,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), [anon_sym_COLON_COLON] = ACTIONS(53), - [anon_sym_using] = ACTIONS(832), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [sym_preproc_directive] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [aux_sym_preproc_else_token1] = ACTIONS(838), + [sym_preproc_directive] = ACTIONS(840), + [aux_sym_preproc_if_token1] = ACTIONS(842), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_STAR] = ACTIONS(65), @@ -136682,786 +136313,684 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [sym_operator_name] = ACTIONS(75), - [anon_sym_while] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [aux_sym_preproc_include_token1] = ACTIONS(848), + [anon_sym_while] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(852), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_template] = ACTIONS(854), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_template] = ACTIONS(858), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(858), - [aux_sym_preproc_def_token1] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(864), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3295] = { - [anon_sym_DASH] = ACTIONS(3140), - [sym_raw_string_literal] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [aux_sym_preproc_if_token2] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [sym_identifier] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym_namespace] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_struct] = ACTIONS(3140), - [sym_auto] = ACTIONS(3140), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_using] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [sym_operator_name] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [aux_sym_preproc_include_token1] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_restrict] = ACTIONS(3140), + [3273] = { + [anon_sym_DASH] = ACTIONS(3142), + [sym_raw_string_literal] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [anon_sym_mutable] = ACTIONS(3142), + [sym_null] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [aux_sym_preproc_if_token2] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_sizeof] = ACTIONS(3142), + [anon_sym_volatile] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_typedef] = ACTIONS(3142), + [anon_sym_switch] = ACTIONS(3142), + [anon_sym_explicit] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3142), + [anon_sym_delete] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3142), + [anon_sym__Atomic] = ACTIONS(3142), + [sym_number_literal] = ACTIONS(3144), + [anon_sym_extern] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), + [anon_sym_constexpr] = ACTIONS(3142), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3144), + [anon_sym_namespace] = ACTIONS(3142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3142), + [anon_sym_SQUOTE] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_struct] = ACTIONS(3142), + [sym_auto] = ACTIONS(3142), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_COLON_COLON] = ACTIONS(3144), + [anon_sym_using] = ACTIONS(3142), + [sym_preproc_directive] = ACTIONS(3142), + [aux_sym_preproc_if_token1] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_union] = ACTIONS(3142), + [anon_sym_typename] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_goto] = ACTIONS(3142), + [sym_operator_name] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [aux_sym_preproc_include_token1] = ACTIONS(3142), + [anon_sym_register] = ACTIONS(3142), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_class] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [sym_primitive_type] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_nullptr] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3144), + [aux_sym_preproc_def_token1] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_restrict] = ACTIONS(3142), }, - [3296] = { - [anon_sym_DASH] = ACTIONS(3146), - [sym_raw_string_literal] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [anon_sym_mutable] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [aux_sym_preproc_if_token2] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_sizeof] = ACTIONS(3146), - [anon_sym_volatile] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_typedef] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_explicit] = ACTIONS(3146), - [sym_identifier] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3146), - [anon_sym__Atomic] = ACTIONS(3146), - [sym_number_literal] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [anon_sym_constexpr] = ACTIONS(3146), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3146), - [sym_auto] = ACTIONS(3146), - [anon_sym_signed] = ACTIONS(3146), - [anon_sym_long] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3146), - [sym_preproc_directive] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3146), - [anon_sym_typename] = ACTIONS(3146), - [anon_sym_short] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_goto] = ACTIONS(3146), - [sym_operator_name] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [aux_sym_preproc_include_token1] = ACTIONS(3146), - [anon_sym_register] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [sym_primitive_type] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_nullptr] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_template] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3146), + [3274] = { + [anon_sym_DASH] = ACTIONS(3148), + [sym_raw_string_literal] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [aux_sym_preproc_if_token2] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_sizeof] = ACTIONS(3148), + [anon_sym_volatile] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_explicit] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), + [anon_sym__Atomic] = ACTIONS(3148), + [sym_number_literal] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [anon_sym_constexpr] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), + [anon_sym_LPAREN2] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3148), + [sym_auto] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3148), + [anon_sym_long] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3148), + [sym_preproc_directive] = ACTIONS(3148), + [aux_sym_preproc_if_token1] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3148), + [anon_sym_typename] = ACTIONS(3148), + [anon_sym_short] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_goto] = ACTIONS(3148), + [sym_operator_name] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [aux_sym_preproc_include_token1] = ACTIONS(3148), + [anon_sym_register] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [sym_primitive_type] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_nullptr] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_template] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3150), + [aux_sym_preproc_def_token1] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_restrict] = ACTIONS(3148), }, - [3297] = { - [sym_parameter_list] = STATE(3961), - [anon_sym_LPAREN2] = ACTIONS(587), + [3275] = { + [sym_parameter_list] = STATE(3935), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), }, - [3298] = { - [aux_sym_try_statement_repeat1] = STATE(3962), - [sym_catch_clause] = STATE(3962), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [aux_sym_preproc_if_token2] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(8533), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [sym_operator_name] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [3276] = { + [sym_catch_clause] = STATE(3936), + [aux_sym_try_statement_repeat1] = STATE(3936), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [aux_sym_preproc_if_token2] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(8505), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [sym_preproc_directive] = ACTIONS(3154), + [aux_sym_preproc_if_token1] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [sym_operator_name] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [aux_sym_preproc_include_token1] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_template] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, - [3299] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3964), - [sym_logical_expression] = STATE(3964), - [sym_bitwise_expression] = STATE(3964), - [sym_cast_expression] = STATE(3964), - [sym_new_expression] = STATE(3964), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3964), - [sym_char_literal] = STATE(3964), - [sym_template_function] = STATE(3964), - [sym_conditional_expression] = STATE(3964), - [sym_equality_expression] = STATE(3964), - [sym_relational_expression] = STATE(3964), - [sym_delete_expression] = STATE(3964), - [sym_sizeof_expression] = STATE(3964), - [sym_parenthesized_expression] = STATE(3964), - [sym_lambda_expression] = STATE(3964), - [sym_concatenated_string] = STATE(3964), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3964), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3964), - [sym_math_expression] = STATE(3964), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8535), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(8537), - [sym_null] = ACTIONS(8537), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8535), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(8537), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(8537), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(8539), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [3277] = { + [sym_template_function] = STATE(3938), + [sym__expression] = STATE(3938), + [sym_logical_expression] = STATE(3938), + [sym_bitwise_expression] = STATE(3938), + [sym_cast_expression] = STATE(3938), + [sym_delete_expression] = STATE(3938), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3938), + [sym_lambda_expression] = STATE(3938), + [sym_char_literal] = STATE(3938), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3938), + [sym_equality_expression] = STATE(3938), + [sym_relational_expression] = STATE(3938), + [sym_sizeof_expression] = STATE(3938), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3938), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(3938), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3938), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3938), + [sym_math_expression] = STATE(3938), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3938), + [sym_raw_string_literal] = ACTIONS(8507), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(8509), + [sym_null] = ACTIONS(8509), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8507), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(8509), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(8511), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [3300] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(8541), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3278] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(8513), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3301] = { - [anon_sym_COLON] = ACTIONS(8543), + [3279] = { + [anon_sym_COLON] = ACTIONS(8515), [sym_comment] = ACTIONS(3), }, - [3302] = { - [anon_sym_DASH] = ACTIONS(1319), - [sym_raw_string_literal] = ACTIONS(1317), - [sym_true] = ACTIONS(1319), - [anon_sym_mutable] = ACTIONS(1319), - [sym_null] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [aux_sym_preproc_if_token2] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_explicit] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1319), - [anon_sym_delete] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym_namespace] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1319), - [sym_auto] = ACTIONS(1319), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_COLON_COLON] = ACTIONS(1317), - [anon_sym_using] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_typename] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [sym_operator_name] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_try] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_class] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [sym_nullptr] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_template] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1319), + [3280] = { + [anon_sym_DASH] = ACTIONS(1327), + [sym_raw_string_literal] = ACTIONS(1325), + [sym_true] = ACTIONS(1327), + [anon_sym_mutable] = ACTIONS(1327), + [sym_null] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_explicit] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1327), + [anon_sym_delete] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_namespace] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1327), + [sym_auto] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_using] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_typename] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [sym_operator_name] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [sym_nullptr] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_template] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1327), }, - [3303] = { - [aux_sym_string_literal_repeat1] = STATE(731), + [3281] = { + [aux_sym_string_literal_repeat1] = STATE(732), [sym_comment] = ACTIONS(244), - [sym_escape_sequence] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(8545), + [sym_escape_sequence] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(8517), }, - [3304] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(8547), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3282] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(8519), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3305] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3969), - [sym_logical_expression] = STATE(3969), - [sym_bitwise_expression] = STATE(3969), - [sym_cast_expression] = STATE(3969), - [sym_new_expression] = STATE(3969), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(3969), - [sym_char_literal] = STATE(3969), - [sym_template_function] = STATE(3969), - [sym_conditional_expression] = STATE(3969), - [sym_equality_expression] = STATE(3969), - [sym_relational_expression] = STATE(3969), - [sym_delete_expression] = STATE(3969), - [sym_sizeof_expression] = STATE(3969), - [sym_parenthesized_expression] = STATE(3969), - [sym_lambda_expression] = STATE(3969), - [sym_concatenated_string] = STATE(3969), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(3969), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(3969), - [sym_math_expression] = STATE(3969), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8549), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(8551), - [sym_null] = ACTIONS(8551), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8549), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(8551), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(8551), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [3283] = { + [sym_template_function] = STATE(3943), + [sym__expression] = STATE(3943), + [sym_logical_expression] = STATE(3943), + [sym_bitwise_expression] = STATE(3943), + [sym_cast_expression] = STATE(3943), + [sym_delete_expression] = STATE(3943), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(3943), + [sym_lambda_expression] = STATE(3943), + [sym_char_literal] = STATE(3943), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3943), + [sym_equality_expression] = STATE(3943), + [sym_relational_expression] = STATE(3943), + [sym_sizeof_expression] = STATE(3943), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3943), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(3943), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3943), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(3943), + [sym_math_expression] = STATE(3943), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(3943), + [sym_raw_string_literal] = ACTIONS(8521), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(8523), + [sym_null] = ACTIONS(8523), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8521), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(8523), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(8523), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [3306] = { - [sym_parenthesized_expression] = STATE(3971), - [anon_sym_LPAREN2] = ACTIONS(8553), + [3284] = { + [sym_parenthesized_expression] = STATE(3945), + [anon_sym_LPAREN2] = ACTIONS(8525), [sym_comment] = ACTIONS(3), }, - [3307] = { - [anon_sym_DASH] = ACTIONS(3581), - [sym_raw_string_literal] = ACTIONS(3583), - [sym_true] = ACTIONS(3581), - [anon_sym_mutable] = ACTIONS(3581), - [sym_null] = ACTIONS(3581), - [anon_sym_break] = ACTIONS(3581), - [aux_sym_preproc_if_token2] = ACTIONS(3581), - [anon_sym_BANG] = ACTIONS(3583), - [anon_sym_sizeof] = ACTIONS(3581), - [anon_sym_volatile] = ACTIONS(3581), - [anon_sym_PLUS] = ACTIONS(3581), - [anon_sym_typedef] = ACTIONS(3581), - [anon_sym_switch] = ACTIONS(3581), - [anon_sym_explicit] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3581), - [anon_sym_delete] = ACTIONS(3581), - [anon_sym_continue] = ACTIONS(3581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), - [anon_sym__Atomic] = ACTIONS(3581), - [sym_number_literal] = ACTIONS(3583), - [anon_sym_extern] = ACTIONS(3581), - [anon_sym_enum] = ACTIONS(3581), - [anon_sym_constexpr] = ACTIONS(3581), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), - [anon_sym_namespace] = ACTIONS(3581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), - [anon_sym_SQUOTE] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_DASH_DASH] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_struct] = ACTIONS(3581), - [sym_auto] = ACTIONS(3581), - [anon_sym_signed] = ACTIONS(3581), - [anon_sym_long] = ACTIONS(3581), - [anon_sym_COLON_COLON] = ACTIONS(3583), - [anon_sym_using] = ACTIONS(3581), - [sym_preproc_directive] = ACTIONS(3581), - [aux_sym_preproc_if_token1] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3581), - [anon_sym_static] = ACTIONS(3581), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_union] = ACTIONS(3581), - [anon_sym_typename] = ACTIONS(3581), - [anon_sym_short] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3581), - [anon_sym_goto] = ACTIONS(3581), - [sym_operator_name] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3581), - [anon_sym_try] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3581), - [aux_sym_preproc_include_token1] = ACTIONS(3581), - [anon_sym_register] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_const] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_class] = ACTIONS(3581), - [anon_sym_if] = ACTIONS(3581), - [sym_primitive_type] = ACTIONS(3581), - [sym_false] = ACTIONS(3581), - [sym_nullptr] = ACTIONS(3581), - [anon_sym_do] = ACTIONS(3581), - [anon_sym_template] = ACTIONS(3581), - [anon_sym_return] = ACTIONS(3581), - [anon_sym_TILDE] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3581), - [anon_sym_AMP_AMP] = ACTIONS(3583), - [anon_sym_inline] = ACTIONS(3581), - [anon_sym_PLUS_PLUS] = ACTIONS(3583), - [anon_sym_restrict] = ACTIONS(3581), - }, - [3308] = { - [anon_sym_DASH] = ACTIONS(3592), - [sym_raw_string_literal] = ACTIONS(3594), - [sym_true] = ACTIONS(3592), - [anon_sym_mutable] = ACTIONS(3592), - [sym_null] = ACTIONS(3592), - [anon_sym_break] = ACTIONS(3592), - [aux_sym_preproc_if_token2] = ACTIONS(3592), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_sizeof] = ACTIONS(3592), - [anon_sym_volatile] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_typedef] = ACTIONS(3592), - [anon_sym_switch] = ACTIONS(3592), - [anon_sym_explicit] = ACTIONS(3592), - [sym_identifier] = ACTIONS(3592), - [anon_sym_delete] = ACTIONS(3592), - [anon_sym_continue] = ACTIONS(3592), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), - [anon_sym__Atomic] = ACTIONS(3592), - [sym_number_literal] = ACTIONS(3594), - [anon_sym_extern] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_constexpr] = ACTIONS(3592), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), - [anon_sym_namespace] = ACTIONS(3592), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), - [anon_sym_SQUOTE] = ACTIONS(3594), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_DASH_DASH] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3594), - [anon_sym_struct] = ACTIONS(3592), - [sym_auto] = ACTIONS(3592), - [anon_sym_signed] = ACTIONS(3592), - [anon_sym_long] = ACTIONS(3592), - [anon_sym_COLON_COLON] = ACTIONS(3594), - [anon_sym_using] = ACTIONS(3592), - [sym_preproc_directive] = ACTIONS(3592), - [aux_sym_preproc_if_token1] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_union] = ACTIONS(3592), - [anon_sym_typename] = ACTIONS(3592), - [anon_sym_short] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3592), - [anon_sym_goto] = ACTIONS(3592), - [sym_operator_name] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3592), - [anon_sym_try] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3592), - [aux_sym_preproc_include_token1] = ACTIONS(3592), - [anon_sym_register] = ACTIONS(3592), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_if] = ACTIONS(3592), - [sym_primitive_type] = ACTIONS(3592), - [sym_false] = ACTIONS(3592), - [sym_nullptr] = ACTIONS(3592), - [anon_sym_do] = ACTIONS(3592), - [anon_sym_template] = ACTIONS(3592), - [anon_sym_return] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_SEMI] = ACTIONS(3594), - [aux_sym_preproc_def_token1] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_inline] = ACTIONS(3592), - [anon_sym_PLUS_PLUS] = ACTIONS(3594), - [anon_sym_restrict] = ACTIONS(3592), + [3285] = { + [anon_sym_DASH] = ACTIONS(3596), + [sym_raw_string_literal] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [aux_sym_preproc_if_token2] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym_namespace] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_struct] = ACTIONS(3596), + [sym_auto] = ACTIONS(3596), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_using] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [sym_operator_name] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [aux_sym_preproc_include_token1] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_nullptr] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(3598), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_restrict] = ACTIONS(3596), }, - [3309] = { - [sym_reference_declarator] = STATE(2337), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(2337), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(2337), - [sym_destructor_name] = STATE(2337), - [sym__declarator] = STATE(2337), - [sym_init_declarator] = STATE(2338), - [sym_array_declarator] = STATE(2337), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(2337), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(4607), - [sym_comment] = ACTIONS(3), + [3286] = { + [anon_sym_DASH] = ACTIONS(3606), + [sym_raw_string_literal] = ACTIONS(3608), + [sym_true] = ACTIONS(3606), + [anon_sym_mutable] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [aux_sym_preproc_if_token2] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_sizeof] = ACTIONS(3606), + [anon_sym_volatile] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_typedef] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_explicit] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3606), + [anon_sym__Atomic] = ACTIONS(3606), + [sym_number_literal] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [anon_sym_constexpr] = ACTIONS(3606), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3606), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3606), + [sym_auto] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3606), + [anon_sym_long] = ACTIONS(3606), + [anon_sym_COLON_COLON] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3606), + [sym_preproc_directive] = ACTIONS(3606), + [aux_sym_preproc_if_token1] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3606), + [anon_sym_typename] = ACTIONS(3606), + [anon_sym_short] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_goto] = ACTIONS(3606), + [sym_operator_name] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [aux_sym_preproc_include_token1] = ACTIONS(3606), + [anon_sym_register] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [sym_primitive_type] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_nullptr] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_template] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3606), }, - [3310] = { - [sym_parameter_list] = STATE(871), - [anon_sym_LPAREN2] = ACTIONS(587), + [3287] = { + [sym_parameter_list] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(8555), - }, - [3311] = { - [anon_sym_DASH] = ACTIONS(3678), - [sym_raw_string_literal] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3678), - [sym_true] = ACTIONS(3678), - [anon_sym_mutable] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [aux_sym_preproc_if_token2] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_sizeof] = ACTIONS(3678), - [anon_sym_volatile] = ACTIONS(3678), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_typedef] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3678), - [anon_sym_explicit] = ACTIONS(3678), - [sym_identifier] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), - [anon_sym__Atomic] = ACTIONS(3678), - [sym_number_literal] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), - [anon_sym_constexpr] = ACTIONS(3678), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3678), - [sym_auto] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3678), - [anon_sym_long] = ACTIONS(3678), - [anon_sym_COLON_COLON] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3678), - [sym_preproc_directive] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3678), - [anon_sym_typename] = ACTIONS(3678), - [anon_sym_short] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_goto] = ACTIONS(3678), - [sym_operator_name] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [aux_sym_preproc_include_token1] = ACTIONS(3678), - [anon_sym_register] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_if] = ACTIONS(3678), - [sym_primitive_type] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_nullptr] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_template] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3678), - }, - [3312] = { - [anon_sym_LF] = ACTIONS(8557), - [sym_comment] = ACTIONS(244), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(8527), }, - [3313] = { + [3288] = { [anon_sym_DASH] = ACTIONS(3688), [sym_raw_string_literal] = ACTIONS(3690), + [anon_sym_else] = ACTIONS(3688), [sym_true] = ACTIONS(3688), [anon_sym_mutable] = ACTIONS(3688), [sym_null] = ACTIONS(3688), @@ -137533,273 +137062,310 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3690), [anon_sym_restrict] = ACTIONS(3688), }, - [3314] = { + [3289] = { + [anon_sym_LF] = ACTIONS(8529), [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(8559), - [sym_preproc_arg] = ACTIONS(8561), }, - [3315] = { - [anon_sym_DASH] = ACTIONS(3712), - [sym_raw_string_literal] = ACTIONS(3714), - [sym_true] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [sym_null] = ACTIONS(3712), - [anon_sym_break] = ACTIONS(3712), - [aux_sym_preproc_if_token2] = ACTIONS(3712), - [anon_sym_BANG] = ACTIONS(3714), - [anon_sym_sizeof] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [sym_identifier] = ACTIONS(3712), - [anon_sym_delete] = ACTIONS(3712), - [anon_sym_continue] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [sym_number_literal] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [anon_sym_namespace] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_struct] = ACTIONS(3712), - [sym_auto] = ACTIONS(3712), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_using] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_goto] = ACTIONS(3712), - [sym_operator_name] = ACTIONS(3714), - [anon_sym_while] = ACTIONS(3712), - [anon_sym_try] = ACTIONS(3712), - [anon_sym_for] = ACTIONS(3712), - [aux_sym_preproc_include_token1] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym_DQUOTE] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [sym_false] = ACTIONS(3712), - [sym_nullptr] = ACTIONS(3712), - [anon_sym_do] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_return] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3714), - [anon_sym_SEMI] = ACTIONS(3714), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3712), + [3290] = { + [anon_sym_DASH] = ACTIONS(3698), + [sym_raw_string_literal] = ACTIONS(3700), + [sym_true] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [aux_sym_preproc_if_token2] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_sizeof] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [sym_number_literal] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3698), + [sym_auto] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_goto] = ACTIONS(3698), + [sym_operator_name] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [aux_sym_preproc_include_token1] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_nullptr] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3700), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3698), }, - [3316] = { - [sym_compound_statement] = STATE(3976), - [sym_delete_method_clause] = STATE(3976), - [sym_default_method_clause] = STATE(3976), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(2497), + [3291] = { + [sym_comment] = ACTIONS(244), + [anon_sym_LF] = ACTIONS(8531), + [sym_preproc_arg] = ACTIONS(8533), + }, + [3292] = { + [sym_compound_statement] = STATE(3951), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(3952), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(7008), + [anon_sym_SEMI] = ACTIONS(8535), + }, + [3293] = { + [aux_sym_declaration_repeat1] = STATE(3952), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(8535), }, - [3317] = { + [3294] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8563), + [anon_sym_SEMI] = ACTIONS(8537), }, - [3318] = { + [3295] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8565), + [anon_sym_SEMI] = ACTIONS(8539), }, - [3319] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3979), - [sym_logical_expression] = STATE(3979), - [sym_bitwise_expression] = STATE(3979), - [sym_cast_expression] = STATE(3979), - [sym_new_expression] = STATE(3979), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3979), - [sym_char_literal] = STATE(3979), - [sym_template_function] = STATE(3979), - [sym_conditional_expression] = STATE(3979), - [sym_equality_expression] = STATE(3979), - [sym_relational_expression] = STATE(3979), - [sym_delete_expression] = STATE(3979), - [sym_sizeof_expression] = STATE(3979), - [sym_parenthesized_expression] = STATE(3979), - [sym_initializer_list] = STATE(3980), - [sym_concatenated_string] = STATE(3979), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(3979), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3979), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3979), - [sym_math_expression] = STATE(3979), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8567), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(8569), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(8569), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8567), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(8569), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(8569), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), + [3296] = { + [anon_sym_DASH] = ACTIONS(3882), + [sym_raw_string_literal] = ACTIONS(3884), + [sym_true] = ACTIONS(3882), + [anon_sym_mutable] = ACTIONS(3882), + [sym_null] = ACTIONS(3882), + [anon_sym_break] = ACTIONS(3882), + [aux_sym_preproc_if_token2] = ACTIONS(3882), + [anon_sym_BANG] = ACTIONS(3884), + [anon_sym_sizeof] = ACTIONS(3882), + [anon_sym_volatile] = ACTIONS(3882), + [anon_sym_PLUS] = ACTIONS(3882), + [anon_sym_typedef] = ACTIONS(3882), + [anon_sym_switch] = ACTIONS(3882), + [anon_sym_explicit] = ACTIONS(3882), + [sym_identifier] = ACTIONS(3882), + [anon_sym_delete] = ACTIONS(3882), + [anon_sym_continue] = ACTIONS(3882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3882), + [anon_sym__Atomic] = ACTIONS(3882), + [sym_number_literal] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3882), + [anon_sym_enum] = ACTIONS(3882), + [anon_sym_constexpr] = ACTIONS(3882), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3884), + [anon_sym_namespace] = ACTIONS(3882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3882), + [anon_sym_SQUOTE] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_DASH_DASH] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3882), + [sym_auto] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3882), + [anon_sym_long] = ACTIONS(3882), + [anon_sym_COLON_COLON] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3882), + [sym_preproc_directive] = ACTIONS(3882), + [aux_sym_preproc_if_token1] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3882), + [anon_sym_static] = ACTIONS(3882), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3882), + [anon_sym_typename] = ACTIONS(3882), + [anon_sym_short] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(3882), + [anon_sym_goto] = ACTIONS(3882), + [sym_operator_name] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3882), + [anon_sym_try] = ACTIONS(3882), + [anon_sym_for] = ACTIONS(3882), + [aux_sym_preproc_include_token1] = ACTIONS(3882), + [anon_sym_register] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3882), + [anon_sym_LBRACK] = ACTIONS(3882), + [anon_sym_class] = ACTIONS(3882), + [anon_sym_if] = ACTIONS(3882), + [sym_primitive_type] = ACTIONS(3882), + [sym_false] = ACTIONS(3882), + [sym_nullptr] = ACTIONS(3882), + [anon_sym_do] = ACTIONS(3882), + [anon_sym_template] = ACTIONS(3882), + [anon_sym_return] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3882), + [anon_sym_PLUS_PLUS] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3882), }, - [3320] = { + [3297] = { + [sym_compound_statement] = STATE(3955), + [sym_default_method_clause] = STATE(3955), + [sym_delete_method_clause] = STATE(3955), + [anon_sym_EQ] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(2499), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8571), }, - [3321] = { - [sym_goto_statement] = STATE(2306), - [sym_preproc_function_def] = STATE(2306), - [sym_logical_expression] = STATE(2024), - [sym_for_range_loop] = STATE(2306), - [sym_cast_expression] = STATE(2024), - [sym_declaration] = STATE(2306), - [sym_field_expression] = STATE(2022), - [sym_field_designator] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_switch_statement] = STATE(2306), - [sym_return_statement] = STATE(2306), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(2024), - [sym_relational_expression] = STATE(2024), - [sym_delete_expression] = STATE(2024), - [sym_subscript_expression] = STATE(2022), - [sym_scoped_identifier] = STATE(50), + [3298] = { + [sym_goto_statement] = STATE(2295), + [sym_preproc_function_def] = STATE(2295), + [sym_logical_expression] = STATE(2031), + [sym_try_statement] = STATE(2295), + [sym_cast_expression] = STATE(2031), + [sym_lambda_expression] = STATE(2031), + [sym_field_expression] = STATE(2029), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(2295), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_field_designator] = STATE(452), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(2295), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(2295), + [sym_namespace_definition] = STATE(2295), + [sym_conditional_expression] = STATE(2031), + [sym_relational_expression] = STATE(2031), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(2295), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(2030), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(2295), [sym_initializer_list] = STATE(451), - [sym_type_definition] = STATE(2306), - [sym_string_literal] = STATE(2023), - [sym_function_declarator] = STATE(51), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(2306), - [sym_break_statement] = STATE(2306), - [sym_preproc_include] = STATE(2306), - [sym_assignment_expression] = STATE(2024), - [sym_preproc_ifdef] = STATE(2306), - [sym_shift_expression] = STATE(2024), - [sym_using_declaration] = STATE(2306), - [sym_call_expression] = STATE(2022), - [sym_attribute] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(2295), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(2295), + [sym_preproc_include] = STATE(2295), + [sym_assignment_expression] = STATE(2031), + [sym_preproc_ifdef] = STATE(2295), + [sym_shift_expression] = STATE(2031), + [sym_for_range_loop] = STATE(2295), + [sym_call_expression] = STATE(2029), [sym_initializer_pair] = STATE(451), - [sym_compound_statement] = STATE(2306), - [sym_template_instantiation] = STATE(2306), - [sym_constructor_or_destructor_definition] = STATE(2306), - [sym_expression_statement] = STATE(2306), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(2306), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(2024), - [sym_preproc_def] = STATE(2306), - [sym_bitwise_expression] = STATE(2024), - [sym_new_expression] = STATE(2024), - [sym_function_definition] = STATE(2306), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(2024), - [sym_char_literal] = STATE(2024), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(2306), - [sym_alias_declaration] = STATE(2306), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [aux_sym_translation_unit_repeat1] = STATE(2306), - [sym_storage_class_specifier] = STATE(48), - [sym_if_statement] = STATE(2306), - [sym_for_statement] = STATE(2306), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(2306), - [sym_equality_expression] = STATE(2024), - [sym_try_statement] = STATE(2306), - [sym_sizeof_expression] = STATE(2024), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(2024), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(2024), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(2024), - [sym_structured_binding_declaration] = STATE(2306), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(2306), - [sym_preproc_if] = STATE(2306), - [sym_pointer_expression] = STATE(2022), - [sym_namespace_definition] = STATE(2306), - [sym_math_expression] = STATE(2024), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(2306), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [sym_subscript_designator] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(2306), - [sym_while_statement] = STATE(2306), - [sym_raw_string_literal] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4043), - [sym_true] = ACTIONS(4045), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(2295), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_expression_statement] = STATE(2295), + [sym_do_statement] = STATE(2295), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(2031), + [sym_preproc_def] = STATE(2295), + [sym_bitwise_expression] = STATE(2031), + [sym_delete_expression] = STATE(2031), + [sym_function_definition] = STATE(2295), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(2031), + [sym_char_literal] = STATE(2031), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(2295), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(2295), + [sym_for_statement] = STATE(2295), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(2295), + [sym_equality_expression] = STATE(2031), + [sym_using_declaration] = STATE(2295), + [sym_sizeof_expression] = STATE(2031), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(2031), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(2031), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(2295), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(2295), + [sym_preproc_if] = STATE(2295), + [sym_pointer_expression] = STATE(2029), + [sym_new_expression] = STATE(2031), + [sym_math_expression] = STATE(2031), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(2295), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(2295), + [aux_sym_translation_unit_repeat1] = STATE(2295), + [sym_subscript_designator] = STATE(452), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(2295), + [sym_while_statement] = STATE(2295), + [sym_raw_string_literal] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4079), + [sym_true] = ACTIONS(4081), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4045), + [sym_null] = ACTIONS(4081), [anon_sym_break] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_sizeof] = ACTIONS(4049), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_sizeof] = ACTIONS(4085), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4079), [anon_sym_typedef] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(4051), - [anon_sym_delete] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4087), + [anon_sym_delete] = ACTIONS(4089), [anon_sym_continue] = ACTIONS(27), [aux_sym_preproc_ifdef_token1] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(760), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4041), + [sym_number_literal] = ACTIONS(4077), [anon_sym_extern] = ACTIONS(31), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), @@ -137809,25 +137375,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(39), [aux_sym_preproc_ifdef_token2] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [anon_sym_LPAREN2] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [anon_sym_LPAREN2] = ACTIONS(4095), [anon_sym_struct] = ACTIONS(49), [sym_auto] = ACTIONS(51), [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4097), [anon_sym_using] = ACTIONS(55), [sym_preproc_directive] = ACTIONS(57), [aux_sym_preproc_if_token1] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4099), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(8573), - [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_RBRACE] = ACTIONS(8541), + [anon_sym_STAR] = ACTIONS(4103), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), - [anon_sym_new] = ACTIONS(4069), + [anon_sym_new] = ACTIONS(4105), [anon_sym_goto] = ACTIONS(73), [sym_operator_name] = ACTIONS(75), [anon_sym_while] = ACTIONS(250), @@ -137837,2153 +137403,2023 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_LBRACK] = ACTIONS(4107), [anon_sym_class] = ACTIONS(89), [anon_sym_if] = ACTIONS(256), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(4045), - [sym_nullptr] = ACTIONS(4045), + [sym_false] = ACTIONS(4081), + [sym_nullptr] = ACTIONS(4081), [anon_sym_do] = ACTIONS(95), [anon_sym_template] = ACTIONS(97), [anon_sym_return] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4109), [anon_sym_SEMI] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_restrict] = ACTIONS(11), }, - [3322] = { - [anon_sym_DASH] = ACTIONS(4075), - [sym_raw_string_literal] = ACTIONS(4077), - [sym_true] = ACTIONS(4075), - [anon_sym_mutable] = ACTIONS(4075), - [sym_null] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [aux_sym_preproc_if_token2] = ACTIONS(4075), - [anon_sym_BANG] = ACTIONS(4077), - [anon_sym_sizeof] = ACTIONS(4075), - [anon_sym_volatile] = ACTIONS(4075), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_typedef] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(4075), - [anon_sym_explicit] = ACTIONS(4075), - [sym_identifier] = ACTIONS(4075), - [anon_sym_delete] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4075), - [anon_sym__Atomic] = ACTIONS(4075), - [sym_number_literal] = ACTIONS(4077), - [anon_sym_extern] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_constexpr] = ACTIONS(4075), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4077), - [anon_sym_namespace] = ACTIONS(4075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4075), - [anon_sym_SQUOTE] = ACTIONS(4077), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_LPAREN2] = ACTIONS(4077), - [anon_sym_struct] = ACTIONS(4075), - [sym_auto] = ACTIONS(4075), - [anon_sym_signed] = ACTIONS(4075), - [anon_sym_long] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_using] = ACTIONS(4075), - [sym_preproc_directive] = ACTIONS(4075), - [aux_sym_preproc_if_token1] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4077), - [anon_sym_union] = ACTIONS(4075), - [anon_sym_typename] = ACTIONS(4075), - [anon_sym_short] = ACTIONS(4075), - [anon_sym_new] = ACTIONS(4075), - [anon_sym_goto] = ACTIONS(4075), - [sym_operator_name] = ACTIONS(4077), - [anon_sym_while] = ACTIONS(4075), - [anon_sym_try] = ACTIONS(4075), - [anon_sym_for] = ACTIONS(4075), - [aux_sym_preproc_include_token1] = ACTIONS(4075), - [anon_sym_register] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(4077), - [anon_sym_const] = ACTIONS(4075), - [anon_sym_LBRACK] = ACTIONS(4075), - [anon_sym_class] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [sym_primitive_type] = ACTIONS(4075), - [sym_false] = ACTIONS(4075), - [sym_nullptr] = ACTIONS(4075), - [anon_sym_do] = ACTIONS(4075), - [anon_sym_template] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_TILDE] = ACTIONS(4077), - [anon_sym_SEMI] = ACTIONS(4077), - [aux_sym_preproc_def_token1] = ACTIONS(4075), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_restrict] = ACTIONS(4075), - }, - [3323] = { - [anon_sym_DASH] = ACTIONS(4079), - [sym_raw_string_literal] = ACTIONS(4081), - [sym_true] = ACTIONS(4079), - [anon_sym_mutable] = ACTIONS(4079), - [sym_null] = ACTIONS(4079), - [anon_sym_break] = ACTIONS(4079), - [aux_sym_preproc_if_token2] = ACTIONS(4079), - [anon_sym_BANG] = ACTIONS(4081), - [anon_sym_sizeof] = ACTIONS(4079), - [anon_sym_volatile] = ACTIONS(4079), - [anon_sym_PLUS] = ACTIONS(4079), - [anon_sym_typedef] = ACTIONS(4079), - [anon_sym_switch] = ACTIONS(4079), - [anon_sym_explicit] = ACTIONS(4079), - [sym_identifier] = ACTIONS(4079), - [anon_sym_delete] = ACTIONS(4079), - [anon_sym_continue] = ACTIONS(4079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4079), - [anon_sym__Atomic] = ACTIONS(4079), - [sym_number_literal] = ACTIONS(4081), - [anon_sym_extern] = ACTIONS(4079), - [anon_sym_enum] = ACTIONS(4079), - [anon_sym_constexpr] = ACTIONS(4079), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4081), - [anon_sym_namespace] = ACTIONS(4079), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4079), - [anon_sym_SQUOTE] = ACTIONS(4081), - [anon_sym_LBRACE] = ACTIONS(4081), - [anon_sym_DASH_DASH] = ACTIONS(4081), - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_struct] = ACTIONS(4079), - [sym_auto] = ACTIONS(4079), - [anon_sym_signed] = ACTIONS(4079), - [anon_sym_long] = ACTIONS(4079), - [anon_sym_COLON_COLON] = ACTIONS(4081), - [anon_sym_using] = ACTIONS(4079), - [sym_preproc_directive] = ACTIONS(4079), - [aux_sym_preproc_if_token1] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(4079), - [anon_sym_static] = ACTIONS(4079), - [anon_sym_STAR] = ACTIONS(4081), - [anon_sym_union] = ACTIONS(4079), - [anon_sym_typename] = ACTIONS(4079), - [anon_sym_short] = ACTIONS(4079), - [anon_sym_new] = ACTIONS(4079), - [anon_sym_goto] = ACTIONS(4079), - [sym_operator_name] = ACTIONS(4081), - [anon_sym_while] = ACTIONS(4079), - [anon_sym_try] = ACTIONS(4079), - [anon_sym_for] = ACTIONS(4079), - [aux_sym_preproc_include_token1] = ACTIONS(4079), - [anon_sym_register] = ACTIONS(4079), - [anon_sym_DQUOTE] = ACTIONS(4081), - [anon_sym_const] = ACTIONS(4079), - [anon_sym_LBRACK] = ACTIONS(4079), - [anon_sym_class] = ACTIONS(4079), - [anon_sym_if] = ACTIONS(4079), - [sym_primitive_type] = ACTIONS(4079), - [sym_false] = ACTIONS(4079), - [sym_nullptr] = ACTIONS(4079), - [anon_sym_do] = ACTIONS(4079), - [anon_sym_template] = ACTIONS(4079), - [anon_sym_return] = ACTIONS(4079), - [anon_sym_TILDE] = ACTIONS(4081), - [anon_sym_SEMI] = ACTIONS(4081), - [aux_sym_preproc_def_token1] = ACTIONS(4079), - [anon_sym_AMP_AMP] = ACTIONS(4081), - [anon_sym_inline] = ACTIONS(4079), - [anon_sym_PLUS_PLUS] = ACTIONS(4081), - [anon_sym_restrict] = ACTIONS(4079), + [3299] = { + [anon_sym_DASH] = ACTIONS(4111), + [sym_raw_string_literal] = ACTIONS(4113), + [sym_true] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [sym_null] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [aux_sym_preproc_if_token2] = ACTIONS(4111), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_switch] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [sym_identifier] = ACTIONS(4111), + [anon_sym_delete] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [sym_number_literal] = ACTIONS(4113), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym_namespace] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_DASH_DASH] = ACTIONS(4113), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_struct] = ACTIONS(4111), + [sym_auto] = ACTIONS(4111), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_using] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_goto] = ACTIONS(4111), + [sym_operator_name] = ACTIONS(4113), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [aux_sym_preproc_include_token1] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_DQUOTE] = ACTIONS(4113), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [sym_nullptr] = ACTIONS(4111), + [anon_sym_do] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4113), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym_PLUS_PLUS] = ACTIONS(4113), + [anon_sym_restrict] = ACTIONS(4111), }, - [3324] = { - [aux_sym_declaration_repeat1] = STATE(2028), + [3300] = { + [anon_sym_DASH] = ACTIONS(4115), + [sym_raw_string_literal] = ACTIONS(4117), + [sym_true] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [sym_null] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [aux_sym_preproc_if_token2] = ACTIONS(4115), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_sizeof] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [sym_identifier] = ACTIONS(4115), + [anon_sym_delete] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [sym_number_literal] = ACTIONS(4117), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(8575), - }, - [3325] = { - [sym_compound_statement] = STATE(3984), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(3985), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(7094), - [anon_sym_SEMI] = ACTIONS(8575), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym_namespace] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_struct] = ACTIONS(4115), + [sym_auto] = ACTIONS(4115), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_using] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_new] = ACTIONS(4115), + [anon_sym_goto] = ACTIONS(4115), + [sym_operator_name] = ACTIONS(4117), + [anon_sym_while] = ACTIONS(4115), + [anon_sym_try] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [aux_sym_preproc_include_token1] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [sym_nullptr] = ACTIONS(4115), + [anon_sym_do] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4117), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_restrict] = ACTIONS(4115), }, - [3326] = { - [aux_sym_declaration_repeat1] = STATE(3985), + [3301] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(8575), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(8535), }, - [3327] = { - [anon_sym_DASH] = ACTIONS(5261), - [sym_raw_string_literal] = ACTIONS(5263), - [sym_true] = ACTIONS(5261), - [anon_sym_mutable] = ACTIONS(5261), - [sym_null] = ACTIONS(5261), - [anon_sym_break] = ACTIONS(5261), - [aux_sym_preproc_if_token2] = ACTIONS(5261), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_sizeof] = ACTIONS(5261), - [anon_sym_volatile] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_typedef] = ACTIONS(5261), - [anon_sym_switch] = ACTIONS(5261), - [anon_sym_explicit] = ACTIONS(5261), - [sym_identifier] = ACTIONS(5261), - [anon_sym_delete] = ACTIONS(5261), - [anon_sym_continue] = ACTIONS(5261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5261), - [anon_sym__Atomic] = ACTIONS(5261), - [sym_number_literal] = ACTIONS(5263), - [anon_sym_extern] = ACTIONS(5261), - [anon_sym_enum] = ACTIONS(5261), - [anon_sym_constexpr] = ACTIONS(5261), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5263), - [anon_sym_namespace] = ACTIONS(5261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5261), - [aux_sym_preproc_elif_token1] = ACTIONS(5261), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_LBRACE] = ACTIONS(5263), - [anon_sym_DASH_DASH] = ACTIONS(5263), - [anon_sym_LPAREN2] = ACTIONS(5263), - [anon_sym_struct] = ACTIONS(5261), - [sym_auto] = ACTIONS(5261), - [anon_sym_signed] = ACTIONS(5261), - [anon_sym_long] = ACTIONS(5261), - [anon_sym_COLON_COLON] = ACTIONS(5263), - [anon_sym_using] = ACTIONS(5261), - [aux_sym_preproc_else_token1] = ACTIONS(5261), - [sym_preproc_directive] = ACTIONS(5261), - [aux_sym_preproc_if_token1] = ACTIONS(5261), - [anon_sym_AMP] = ACTIONS(5261), - [anon_sym_static] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_union] = ACTIONS(5261), - [anon_sym_typename] = ACTIONS(5261), - [anon_sym_short] = ACTIONS(5261), - [anon_sym_new] = ACTIONS(5261), - [anon_sym_goto] = ACTIONS(5261), - [sym_operator_name] = ACTIONS(5263), - [anon_sym_while] = ACTIONS(5261), - [anon_sym_try] = ACTIONS(5261), - [anon_sym_for] = ACTIONS(5261), - [aux_sym_preproc_include_token1] = ACTIONS(5261), - [anon_sym_register] = ACTIONS(5261), - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_const] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_class] = ACTIONS(5261), - [anon_sym_if] = ACTIONS(5261), - [sym_primitive_type] = ACTIONS(5261), - [sym_false] = ACTIONS(5261), - [sym_nullptr] = ACTIONS(5261), - [anon_sym_do] = ACTIONS(5261), - [anon_sym_template] = ACTIONS(5261), - [anon_sym_return] = ACTIONS(5261), - [anon_sym_TILDE] = ACTIONS(5263), - [anon_sym_SEMI] = ACTIONS(5263), - [aux_sym_preproc_def_token1] = ACTIONS(5261), - [anon_sym_AMP_AMP] = ACTIONS(5263), - [anon_sym_inline] = ACTIONS(5261), - [anon_sym_PLUS_PLUS] = ACTIONS(5263), - [anon_sym_restrict] = ACTIONS(5261), + [3302] = { + [anon_sym_DASH] = ACTIONS(5260), + [sym_raw_string_literal] = ACTIONS(5262), + [sym_true] = ACTIONS(5260), + [anon_sym_mutable] = ACTIONS(5260), + [sym_null] = ACTIONS(5260), + [anon_sym_break] = ACTIONS(5260), + [aux_sym_preproc_if_token2] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5262), + [anon_sym_sizeof] = ACTIONS(5260), + [anon_sym_volatile] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_typedef] = ACTIONS(5260), + [anon_sym_switch] = ACTIONS(5260), + [anon_sym_explicit] = ACTIONS(5260), + [sym_identifier] = ACTIONS(5260), + [anon_sym_delete] = ACTIONS(5260), + [anon_sym_continue] = ACTIONS(5260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5260), + [anon_sym__Atomic] = ACTIONS(5260), + [sym_number_literal] = ACTIONS(5262), + [anon_sym_extern] = ACTIONS(5260), + [anon_sym_enum] = ACTIONS(5260), + [anon_sym_constexpr] = ACTIONS(5260), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5262), + [anon_sym_namespace] = ACTIONS(5260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5260), + [aux_sym_preproc_elif_token1] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_DASH_DASH] = ACTIONS(5262), + [anon_sym_LPAREN2] = ACTIONS(5262), + [anon_sym_struct] = ACTIONS(5260), + [sym_auto] = ACTIONS(5260), + [anon_sym_signed] = ACTIONS(5260), + [anon_sym_long] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5262), + [anon_sym_using] = ACTIONS(5260), + [aux_sym_preproc_else_token1] = ACTIONS(5260), + [sym_preproc_directive] = ACTIONS(5260), + [aux_sym_preproc_if_token1] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_static] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_union] = ACTIONS(5260), + [anon_sym_typename] = ACTIONS(5260), + [anon_sym_short] = ACTIONS(5260), + [anon_sym_new] = ACTIONS(5260), + [anon_sym_goto] = ACTIONS(5260), + [sym_operator_name] = ACTIONS(5262), + [anon_sym_while] = ACTIONS(5260), + [anon_sym_try] = ACTIONS(5260), + [anon_sym_for] = ACTIONS(5260), + [aux_sym_preproc_include_token1] = ACTIONS(5260), + [anon_sym_register] = ACTIONS(5260), + [anon_sym_DQUOTE] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5260), + [anon_sym_class] = ACTIONS(5260), + [anon_sym_if] = ACTIONS(5260), + [sym_primitive_type] = ACTIONS(5260), + [sym_false] = ACTIONS(5260), + [sym_nullptr] = ACTIONS(5260), + [anon_sym_do] = ACTIONS(5260), + [anon_sym_template] = ACTIONS(5260), + [anon_sym_return] = ACTIONS(5260), + [anon_sym_TILDE] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5262), + [aux_sym_preproc_def_token1] = ACTIONS(5260), + [anon_sym_AMP_AMP] = ACTIONS(5262), + [anon_sym_inline] = ACTIONS(5260), + [anon_sym_PLUS_PLUS] = ACTIONS(5262), + [anon_sym_restrict] = ACTIONS(5260), }, - [3328] = { - [aux_sym_preproc_if_token2] = ACTIONS(8577), + [3303] = { + [aux_sym_preproc_if_token2] = ACTIONS(8543), [sym_comment] = ACTIONS(3), }, - [3329] = { - [sym_compound_statement] = STATE(3987), - [anon_sym_LBRACE] = ACTIONS(830), + [3304] = { + [sym_compound_statement] = STATE(3958), + [anon_sym_LBRACE] = ACTIONS(834), [sym_comment] = ACTIONS(3), }, - [3330] = { - [aux_sym_try_statement_repeat1] = STATE(3330), - [sym_catch_clause] = STATE(3330), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [aux_sym_preproc_if_token2] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(8579), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_namespace] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), - [aux_sym_preproc_elif_token1] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_using] = ACTIONS(5353), - [aux_sym_preproc_else_token1] = ACTIONS(5353), - [sym_preproc_directive] = ACTIONS(5353), - [aux_sym_preproc_if_token1] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [sym_operator_name] = ACTIONS(5355), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [aux_sym_preproc_include_token1] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_template] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [aux_sym_preproc_def_token1] = ACTIONS(5353), - [anon_sym_AMP_AMP] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [3305] = { + [sym_catch_clause] = STATE(3305), + [aux_sym_try_statement_repeat1] = STATE(3305), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [aux_sym_preproc_if_token2] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(8545), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_namespace] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5352), + [aux_sym_preproc_elif_token1] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_using] = ACTIONS(5352), + [aux_sym_preproc_else_token1] = ACTIONS(5352), + [sym_preproc_directive] = ACTIONS(5352), + [aux_sym_preproc_if_token1] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [sym_operator_name] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [aux_sym_preproc_include_token1] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_template] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [aux_sym_preproc_def_token1] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [3331] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3989), - [sym_logical_expression] = STATE(3989), - [sym_bitwise_expression] = STATE(3989), - [sym_cast_expression] = STATE(3989), - [sym_new_expression] = STATE(3989), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(3989), - [sym_char_literal] = STATE(3989), - [sym_template_function] = STATE(3989), - [sym_conditional_expression] = STATE(3989), - [sym_equality_expression] = STATE(3989), - [sym_relational_expression] = STATE(3989), - [sym_delete_expression] = STATE(3989), - [sym_sizeof_expression] = STATE(3989), - [sym_parenthesized_expression] = STATE(3989), - [sym_lambda_expression] = STATE(3989), - [sym_concatenated_string] = STATE(3989), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(3989), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(3989), - [sym_math_expression] = STATE(3989), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8582), + [3306] = { + [sym_template_function] = STATE(3960), + [sym__expression] = STATE(3960), + [sym_logical_expression] = STATE(3960), + [sym_bitwise_expression] = STATE(3960), + [sym_cast_expression] = STATE(3960), + [sym_delete_expression] = STATE(3960), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3960), + [sym_lambda_expression] = STATE(3960), + [sym_char_literal] = STATE(3960), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3960), + [sym_equality_expression] = STATE(3960), + [sym_relational_expression] = STATE(3960), + [sym_sizeof_expression] = STATE(3960), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3960), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(3960), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3960), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3960), + [sym_math_expression] = STATE(3960), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3960), + [sym_raw_string_literal] = ACTIONS(8548), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(8584), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(8584), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(8550), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(8550), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8582), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(8548), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(8584), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(8584), + [sym_false] = ACTIONS(8550), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(8550), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(8586), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(8552), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [3332] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(8588), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3307] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(8554), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3333] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3991), - [sym_logical_expression] = STATE(3991), - [sym_bitwise_expression] = STATE(3991), - [sym_cast_expression] = STATE(3991), - [sym_new_expression] = STATE(3991), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(3991), - [sym_char_literal] = STATE(3991), - [sym_template_function] = STATE(3991), - [sym_conditional_expression] = STATE(3991), - [sym_equality_expression] = STATE(3991), - [sym_relational_expression] = STATE(3991), - [sym_delete_expression] = STATE(3991), - [sym_sizeof_expression] = STATE(3991), - [sym_parenthesized_expression] = STATE(3991), - [sym_lambda_expression] = STATE(3991), - [sym_concatenated_string] = STATE(3991), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(3991), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(3991), - [sym_math_expression] = STATE(3991), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8590), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(8592), - [sym_null] = ACTIONS(8592), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8590), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(8592), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(8592), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(8588), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [3308] = { + [sym_template_function] = STATE(3962), + [sym__expression] = STATE(3962), + [sym_logical_expression] = STATE(3962), + [sym_bitwise_expression] = STATE(3962), + [sym_cast_expression] = STATE(3962), + [sym_delete_expression] = STATE(3962), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(3962), + [sym_lambda_expression] = STATE(3962), + [sym_char_literal] = STATE(3962), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3962), + [sym_equality_expression] = STATE(3962), + [sym_relational_expression] = STATE(3962), + [sym_sizeof_expression] = STATE(3962), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3962), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(3962), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3962), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(3962), + [sym_math_expression] = STATE(3962), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(3962), + [sym_raw_string_literal] = ACTIONS(8556), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(8558), + [sym_null] = ACTIONS(8558), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8556), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(8558), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(8558), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(8554), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [3334] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3992), - [sym_logical_expression] = STATE(3992), - [sym_bitwise_expression] = STATE(3992), - [sym_cast_expression] = STATE(3992), - [sym_new_expression] = STATE(3992), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(3992), - [sym_char_literal] = STATE(3992), - [sym_template_function] = STATE(3992), - [sym_conditional_expression] = STATE(3992), - [sym_equality_expression] = STATE(3992), - [sym_relational_expression] = STATE(3992), - [sym_delete_expression] = STATE(3992), - [sym_sizeof_expression] = STATE(3992), - [sym_parenthesized_expression] = STATE(3992), - [sym_lambda_expression] = STATE(3992), - [sym_concatenated_string] = STATE(3992), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(3992), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(3992), - [sym_math_expression] = STATE(3992), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8594), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(8596), - [sym_null] = ACTIONS(8596), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8594), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(8596), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(8596), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [3309] = { + [sym_template_function] = STATE(3963), + [sym__expression] = STATE(3963), + [sym_logical_expression] = STATE(3963), + [sym_bitwise_expression] = STATE(3963), + [sym_cast_expression] = STATE(3963), + [sym_delete_expression] = STATE(3963), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(3963), + [sym_lambda_expression] = STATE(3963), + [sym_char_literal] = STATE(3963), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3963), + [sym_equality_expression] = STATE(3963), + [sym_relational_expression] = STATE(3963), + [sym_sizeof_expression] = STATE(3963), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3963), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(3963), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3963), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(3963), + [sym_math_expression] = STATE(3963), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(3963), + [sym_raw_string_literal] = ACTIONS(8560), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(8562), + [sym_null] = ACTIONS(8562), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8560), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(8562), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(8562), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [3335] = { - [anon_sym_DASH] = ACTIONS(3186), - [sym_raw_string_literal] = ACTIONS(3184), - [sym_true] = ACTIONS(3186), - [anon_sym_mutable] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [aux_sym_preproc_if_token2] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_explicit] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_constexpr] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3186), - [aux_sym_preproc_elif_token1] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_struct] = ACTIONS(3186), - [sym_auto] = ACTIONS(3186), - [anon_sym_signed] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3186), - [aux_sym_preproc_else_token1] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [aux_sym_preproc_if_token1] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_typename] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [sym_operator_name] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [aux_sym_preproc_include_token1] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_nullptr] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_template] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [aux_sym_preproc_def_token1] = ACTIONS(3186), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_restrict] = ACTIONS(3186), + [3310] = { + [anon_sym_DASH] = ACTIONS(3188), + [sym_raw_string_literal] = ACTIONS(3186), + [sym_true] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [aux_sym_preproc_if_token2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [aux_sym_preproc_elif_token1] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_struct] = ACTIONS(3188), + [sym_auto] = ACTIONS(3188), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3188), + [aux_sym_preproc_else_token1] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_goto] = ACTIONS(3188), + [sym_operator_name] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [aux_sym_preproc_include_token1] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_nullptr] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_restrict] = ACTIONS(3188), }, - [3336] = { - [sym_do_statement] = STATE(3998), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [3311] = { + [sym_do_statement] = STATE(3969), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(3998), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(3998), - [sym_if_statement] = STATE(3998), - [sym_switch_statement] = STATE(3998), - [sym_for_statement] = STATE(3998), - [sym_return_statement] = STATE(3998), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3969), + [sym_try_statement] = STATE(3969), + [sym_if_statement] = STATE(3969), + [sym_switch_statement] = STATE(3969), + [sym_for_statement] = STATE(3969), + [sym_return_statement] = STATE(3969), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(3998), - [sym_break_statement] = STATE(3998), - [sym_continue_statement] = STATE(3998), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3969), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3998), - [sym_labeled_statement] = STATE(3998), - [sym_expression_statement] = STATE(3998), - [sym_while_statement] = STATE(3998), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(3969), + [sym_for_range_loop] = STATE(3969), + [sym_compound_statement] = STATE(3969), + [sym_labeled_statement] = STATE(3969), + [sym_expression_statement] = STATE(3969), + [sym_while_statement] = STATE(3969), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3337] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(8608), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3312] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(8574), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3338] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4000), - [sym_logical_expression] = STATE(4000), - [sym_bitwise_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4000), - [sym_char_literal] = STATE(4000), - [sym_comma_expression] = STATE(4001), - [sym_template_function] = STATE(4000), - [sym_conditional_expression] = STATE(4000), - [sym_equality_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_relational_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_concatenated_string] = STATE(4000), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(4000), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4000), - [sym_math_expression] = STATE(4000), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8610), + [3313] = { + [sym_template_function] = STATE(3971), + [sym__expression] = STATE(3971), + [sym_logical_expression] = STATE(3971), + [sym_bitwise_expression] = STATE(3971), + [sym_cast_expression] = STATE(3971), + [sym_delete_expression] = STATE(3971), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3971), + [sym_lambda_expression] = STATE(3971), + [sym_char_literal] = STATE(3971), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_comma_expression] = STATE(3972), + [sym_conditional_expression] = STATE(3971), + [sym_equality_expression] = STATE(3971), + [sym_relational_expression] = STATE(3971), + [sym_sizeof_expression] = STATE(3971), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3971), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(3971), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3971), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3971), + [sym_math_expression] = STATE(3971), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3971), + [sym_raw_string_literal] = ACTIONS(8576), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(8612), - [sym_null] = ACTIONS(8612), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(8578), + [sym_null] = ACTIONS(8578), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8610), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(8576), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(8612), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(8612), + [sym_false] = ACTIONS(8578), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(8578), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [3339] = { - [anon_sym_DASH] = ACTIONS(5726), - [sym_raw_string_literal] = ACTIONS(5728), - [anon_sym_else] = ACTIONS(5726), - [sym_true] = ACTIONS(5726), - [anon_sym_mutable] = ACTIONS(5726), - [sym_null] = ACTIONS(5726), - [anon_sym_break] = ACTIONS(5726), - [aux_sym_preproc_if_token2] = ACTIONS(5726), - [anon_sym_BANG] = ACTIONS(5728), - [anon_sym_sizeof] = ACTIONS(5726), - [anon_sym_volatile] = ACTIONS(5726), - [anon_sym_PLUS] = ACTIONS(5726), - [anon_sym_typedef] = ACTIONS(5726), - [anon_sym_switch] = ACTIONS(5726), - [anon_sym_explicit] = ACTIONS(5726), - [sym_identifier] = ACTIONS(5726), - [anon_sym_delete] = ACTIONS(5726), - [anon_sym_continue] = ACTIONS(5726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5726), - [anon_sym__Atomic] = ACTIONS(5726), - [sym_number_literal] = ACTIONS(5728), - [anon_sym_extern] = ACTIONS(5726), - [anon_sym_enum] = ACTIONS(5726), - [anon_sym_constexpr] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5728), - [anon_sym_namespace] = ACTIONS(5726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5726), - [aux_sym_preproc_elif_token1] = ACTIONS(5726), - [anon_sym_SQUOTE] = ACTIONS(5728), - [anon_sym_LBRACE] = ACTIONS(5728), - [anon_sym_DASH_DASH] = ACTIONS(5728), - [anon_sym_LPAREN2] = ACTIONS(5728), - [anon_sym_struct] = ACTIONS(5726), - [sym_auto] = ACTIONS(5726), - [anon_sym_signed] = ACTIONS(5726), - [anon_sym_long] = ACTIONS(5726), - [anon_sym_COLON_COLON] = ACTIONS(5728), - [anon_sym_using] = ACTIONS(5726), - [aux_sym_preproc_else_token1] = ACTIONS(5726), - [sym_preproc_directive] = ACTIONS(5726), - [aux_sym_preproc_if_token1] = ACTIONS(5726), - [anon_sym_AMP] = ACTIONS(5726), - [anon_sym_static] = ACTIONS(5726), - [anon_sym_STAR] = ACTIONS(5728), - [anon_sym_union] = ACTIONS(5726), - [anon_sym_typename] = ACTIONS(5726), - [anon_sym_short] = ACTIONS(5726), - [anon_sym_new] = ACTIONS(5726), - [anon_sym_goto] = ACTIONS(5726), - [sym_operator_name] = ACTIONS(5728), - [anon_sym_while] = ACTIONS(5726), - [anon_sym_try] = ACTIONS(5726), - [anon_sym_for] = ACTIONS(5726), - [aux_sym_preproc_include_token1] = ACTIONS(5726), - [anon_sym_register] = ACTIONS(5726), - [anon_sym_DQUOTE] = ACTIONS(5728), - [anon_sym_const] = ACTIONS(5726), - [anon_sym_LBRACK] = ACTIONS(5726), - [anon_sym_class] = ACTIONS(5726), - [anon_sym_if] = ACTIONS(5726), - [sym_primitive_type] = ACTIONS(5726), - [sym_false] = ACTIONS(5726), - [sym_nullptr] = ACTIONS(5726), - [anon_sym_do] = ACTIONS(5726), - [anon_sym_template] = ACTIONS(5726), - [anon_sym_return] = ACTIONS(5726), - [anon_sym_TILDE] = ACTIONS(5728), - [anon_sym_SEMI] = ACTIONS(5728), - [aux_sym_preproc_def_token1] = ACTIONS(5726), - [anon_sym_AMP_AMP] = ACTIONS(5728), - [anon_sym_inline] = ACTIONS(5726), - [anon_sym_PLUS_PLUS] = ACTIONS(5728), - [anon_sym_restrict] = ACTIONS(5726), + [3314] = { + [anon_sym_DASH] = ACTIONS(5732), + [sym_raw_string_literal] = ACTIONS(5734), + [anon_sym_else] = ACTIONS(5732), + [sym_true] = ACTIONS(5732), + [anon_sym_mutable] = ACTIONS(5732), + [sym_null] = ACTIONS(5732), + [anon_sym_break] = ACTIONS(5732), + [aux_sym_preproc_if_token2] = ACTIONS(5732), + [anon_sym_BANG] = ACTIONS(5734), + [anon_sym_sizeof] = ACTIONS(5732), + [anon_sym_volatile] = ACTIONS(5732), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_typedef] = ACTIONS(5732), + [anon_sym_switch] = ACTIONS(5732), + [anon_sym_explicit] = ACTIONS(5732), + [sym_identifier] = ACTIONS(5732), + [anon_sym_delete] = ACTIONS(5732), + [anon_sym_continue] = ACTIONS(5732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5732), + [anon_sym__Atomic] = ACTIONS(5732), + [sym_number_literal] = ACTIONS(5734), + [anon_sym_extern] = ACTIONS(5732), + [anon_sym_enum] = ACTIONS(5732), + [anon_sym_constexpr] = ACTIONS(5732), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5734), + [anon_sym_namespace] = ACTIONS(5732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5732), + [aux_sym_preproc_elif_token1] = ACTIONS(5732), + [anon_sym_SQUOTE] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5734), + [anon_sym_DASH_DASH] = ACTIONS(5734), + [anon_sym_LPAREN2] = ACTIONS(5734), + [anon_sym_struct] = ACTIONS(5732), + [sym_auto] = ACTIONS(5732), + [anon_sym_signed] = ACTIONS(5732), + [anon_sym_long] = ACTIONS(5732), + [anon_sym_COLON_COLON] = ACTIONS(5734), + [anon_sym_using] = ACTIONS(5732), + [aux_sym_preproc_else_token1] = ACTIONS(5732), + [sym_preproc_directive] = ACTIONS(5732), + [aux_sym_preproc_if_token1] = ACTIONS(5732), + [anon_sym_AMP] = ACTIONS(5732), + [anon_sym_static] = ACTIONS(5732), + [anon_sym_STAR] = ACTIONS(5734), + [anon_sym_union] = ACTIONS(5732), + [anon_sym_typename] = ACTIONS(5732), + [anon_sym_short] = ACTIONS(5732), + [anon_sym_new] = ACTIONS(5732), + [anon_sym_goto] = ACTIONS(5732), + [sym_operator_name] = ACTIONS(5734), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [aux_sym_preproc_include_token1] = ACTIONS(5732), + [anon_sym_register] = ACTIONS(5732), + [anon_sym_DQUOTE] = ACTIONS(5734), + [anon_sym_const] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5732), + [anon_sym_class] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [sym_primitive_type] = ACTIONS(5732), + [sym_false] = ACTIONS(5732), + [sym_nullptr] = ACTIONS(5732), + [anon_sym_do] = ACTIONS(5732), + [anon_sym_template] = ACTIONS(5732), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_TILDE] = ACTIONS(5734), + [anon_sym_SEMI] = ACTIONS(5734), + [aux_sym_preproc_def_token1] = ACTIONS(5732), + [anon_sym_AMP_AMP] = ACTIONS(5734), + [anon_sym_inline] = ACTIONS(5732), + [anon_sym_PLUS_PLUS] = ACTIONS(5734), + [anon_sym_restrict] = ACTIONS(5732), }, - [3340] = { - [anon_sym_DASH] = ACTIONS(5795), - [sym_raw_string_literal] = ACTIONS(5797), - [sym_true] = ACTIONS(5795), - [anon_sym_mutable] = ACTIONS(5795), - [sym_null] = ACTIONS(5795), - [anon_sym_break] = ACTIONS(5795), - [aux_sym_preproc_if_token2] = ACTIONS(5795), - [anon_sym_BANG] = ACTIONS(5797), - [anon_sym_sizeof] = ACTIONS(5795), - [anon_sym_volatile] = ACTIONS(5795), - [anon_sym_PLUS] = ACTIONS(5795), - [anon_sym_typedef] = ACTIONS(5795), - [anon_sym_switch] = ACTIONS(5795), - [anon_sym_explicit] = ACTIONS(5795), - [sym_identifier] = ACTIONS(5795), - [anon_sym_delete] = ACTIONS(5795), - [anon_sym_continue] = ACTIONS(5795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5795), - [anon_sym__Atomic] = ACTIONS(5795), - [sym_number_literal] = ACTIONS(5797), - [anon_sym_extern] = ACTIONS(5795), - [anon_sym_enum] = ACTIONS(5795), - [anon_sym_constexpr] = ACTIONS(5795), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5797), - [anon_sym_namespace] = ACTIONS(5795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5795), - [aux_sym_preproc_elif_token1] = ACTIONS(5795), - [anon_sym_SQUOTE] = ACTIONS(5797), - [anon_sym_LBRACE] = ACTIONS(5797), - [anon_sym_DASH_DASH] = ACTIONS(5797), - [anon_sym_LPAREN2] = ACTIONS(5797), - [anon_sym_struct] = ACTIONS(5795), - [sym_auto] = ACTIONS(5795), - [anon_sym_signed] = ACTIONS(5795), - [anon_sym_long] = ACTIONS(5795), - [anon_sym_COLON_COLON] = ACTIONS(5797), - [anon_sym_using] = ACTIONS(5795), - [aux_sym_preproc_else_token1] = ACTIONS(5795), - [sym_preproc_directive] = ACTIONS(5795), - [aux_sym_preproc_if_token1] = ACTIONS(5795), - [anon_sym_AMP] = ACTIONS(5795), - [anon_sym_static] = ACTIONS(5795), - [anon_sym_STAR] = ACTIONS(5797), - [anon_sym_union] = ACTIONS(5795), - [anon_sym_typename] = ACTIONS(5795), - [anon_sym_short] = ACTIONS(5795), - [anon_sym_new] = ACTIONS(5795), - [anon_sym_goto] = ACTIONS(5795), - [sym_operator_name] = ACTIONS(5797), - [anon_sym_while] = ACTIONS(5795), - [anon_sym_try] = ACTIONS(5795), - [anon_sym_for] = ACTIONS(5795), - [aux_sym_preproc_include_token1] = ACTIONS(5795), - [anon_sym_register] = ACTIONS(5795), - [anon_sym_DQUOTE] = ACTIONS(5797), - [anon_sym_const] = ACTIONS(5795), - [anon_sym_LBRACK] = ACTIONS(5795), - [anon_sym_class] = ACTIONS(5795), - [anon_sym_if] = ACTIONS(5795), - [sym_primitive_type] = ACTIONS(5795), - [sym_false] = ACTIONS(5795), - [sym_nullptr] = ACTIONS(5795), - [anon_sym_do] = ACTIONS(5795), - [anon_sym_template] = ACTIONS(5795), - [anon_sym_return] = ACTIONS(5795), - [anon_sym_TILDE] = ACTIONS(5797), - [anon_sym_SEMI] = ACTIONS(5797), - [aux_sym_preproc_def_token1] = ACTIONS(5795), - [anon_sym_AMP_AMP] = ACTIONS(5797), - [anon_sym_inline] = ACTIONS(5795), - [anon_sym_PLUS_PLUS] = ACTIONS(5797), - [anon_sym_restrict] = ACTIONS(5795), + [3315] = { + [anon_sym_DASH] = ACTIONS(5802), + [sym_raw_string_literal] = ACTIONS(5804), + [sym_true] = ACTIONS(5802), + [anon_sym_mutable] = ACTIONS(5802), + [sym_null] = ACTIONS(5802), + [anon_sym_break] = ACTIONS(5802), + [aux_sym_preproc_if_token2] = ACTIONS(5802), + [anon_sym_BANG] = ACTIONS(5804), + [anon_sym_sizeof] = ACTIONS(5802), + [anon_sym_volatile] = ACTIONS(5802), + [anon_sym_PLUS] = ACTIONS(5802), + [anon_sym_typedef] = ACTIONS(5802), + [anon_sym_switch] = ACTIONS(5802), + [anon_sym_explicit] = ACTIONS(5802), + [sym_identifier] = ACTIONS(5802), + [anon_sym_delete] = ACTIONS(5802), + [anon_sym_continue] = ACTIONS(5802), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5802), + [anon_sym__Atomic] = ACTIONS(5802), + [sym_number_literal] = ACTIONS(5804), + [anon_sym_extern] = ACTIONS(5802), + [anon_sym_enum] = ACTIONS(5802), + [anon_sym_constexpr] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5804), + [anon_sym_namespace] = ACTIONS(5802), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5802), + [aux_sym_preproc_elif_token1] = ACTIONS(5802), + [anon_sym_SQUOTE] = ACTIONS(5804), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_DASH_DASH] = ACTIONS(5804), + [anon_sym_LPAREN2] = ACTIONS(5804), + [anon_sym_struct] = ACTIONS(5802), + [sym_auto] = ACTIONS(5802), + [anon_sym_signed] = ACTIONS(5802), + [anon_sym_long] = ACTIONS(5802), + [anon_sym_COLON_COLON] = ACTIONS(5804), + [anon_sym_using] = ACTIONS(5802), + [aux_sym_preproc_else_token1] = ACTIONS(5802), + [sym_preproc_directive] = ACTIONS(5802), + [aux_sym_preproc_if_token1] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5802), + [anon_sym_static] = ACTIONS(5802), + [anon_sym_STAR] = ACTIONS(5804), + [anon_sym_union] = ACTIONS(5802), + [anon_sym_typename] = ACTIONS(5802), + [anon_sym_short] = ACTIONS(5802), + [anon_sym_new] = ACTIONS(5802), + [anon_sym_goto] = ACTIONS(5802), + [sym_operator_name] = ACTIONS(5804), + [anon_sym_while] = ACTIONS(5802), + [anon_sym_try] = ACTIONS(5802), + [anon_sym_for] = ACTIONS(5802), + [aux_sym_preproc_include_token1] = ACTIONS(5802), + [anon_sym_register] = ACTIONS(5802), + [anon_sym_DQUOTE] = ACTIONS(5804), + [anon_sym_const] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_class] = ACTIONS(5802), + [anon_sym_if] = ACTIONS(5802), + [sym_primitive_type] = ACTIONS(5802), + [sym_false] = ACTIONS(5802), + [sym_nullptr] = ACTIONS(5802), + [anon_sym_do] = ACTIONS(5802), + [anon_sym_template] = ACTIONS(5802), + [anon_sym_return] = ACTIONS(5802), + [anon_sym_TILDE] = ACTIONS(5804), + [anon_sym_SEMI] = ACTIONS(5804), + [aux_sym_preproc_def_token1] = ACTIONS(5802), + [anon_sym_AMP_AMP] = ACTIONS(5804), + [anon_sym_inline] = ACTIONS(5802), + [anon_sym_PLUS_PLUS] = ACTIONS(5804), + [anon_sym_restrict] = ACTIONS(5802), }, - [3341] = { - [anon_sym_DASH] = ACTIONS(5894), - [sym_raw_string_literal] = ACTIONS(5896), - [sym_true] = ACTIONS(5894), - [anon_sym_mutable] = ACTIONS(5894), - [sym_null] = ACTIONS(5894), - [anon_sym_break] = ACTIONS(5894), - [aux_sym_preproc_if_token2] = ACTIONS(5894), - [anon_sym_BANG] = ACTIONS(5896), - [anon_sym_sizeof] = ACTIONS(5894), - [anon_sym_volatile] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5894), - [anon_sym_typedef] = ACTIONS(5894), - [anon_sym_switch] = ACTIONS(5894), - [anon_sym_explicit] = ACTIONS(5894), - [sym_identifier] = ACTIONS(5894), - [anon_sym_delete] = ACTIONS(5894), - [anon_sym_continue] = ACTIONS(5894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5894), - [anon_sym__Atomic] = ACTIONS(5894), - [sym_number_literal] = ACTIONS(5896), - [anon_sym_extern] = ACTIONS(5894), - [anon_sym_enum] = ACTIONS(5894), - [anon_sym_constexpr] = ACTIONS(5894), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5896), - [anon_sym_namespace] = ACTIONS(5894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5894), - [aux_sym_preproc_elif_token1] = ACTIONS(5894), - [anon_sym_SQUOTE] = ACTIONS(5896), - [anon_sym_LBRACE] = ACTIONS(5896), - [anon_sym_DASH_DASH] = ACTIONS(5896), - [anon_sym_LPAREN2] = ACTIONS(5896), - [anon_sym_struct] = ACTIONS(5894), - [sym_auto] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(5894), - [anon_sym_long] = ACTIONS(5894), - [anon_sym_COLON_COLON] = ACTIONS(5896), - [anon_sym_using] = ACTIONS(5894), - [aux_sym_preproc_else_token1] = ACTIONS(5894), - [sym_preproc_directive] = ACTIONS(5894), - [aux_sym_preproc_if_token1] = ACTIONS(5894), - [anon_sym_AMP] = ACTIONS(5894), - [anon_sym_static] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5896), - [anon_sym_union] = ACTIONS(5894), - [anon_sym_typename] = ACTIONS(5894), - [anon_sym_short] = ACTIONS(5894), - [anon_sym_new] = ACTIONS(5894), - [anon_sym_goto] = ACTIONS(5894), - [sym_operator_name] = ACTIONS(5896), - [anon_sym_while] = ACTIONS(5894), - [anon_sym_try] = ACTIONS(5894), - [anon_sym_for] = ACTIONS(5894), - [aux_sym_preproc_include_token1] = ACTIONS(5894), - [anon_sym_register] = ACTIONS(5894), - [anon_sym_DQUOTE] = ACTIONS(5896), - [anon_sym_const] = ACTIONS(5894), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_class] = ACTIONS(5894), - [anon_sym_if] = ACTIONS(5894), - [sym_primitive_type] = ACTIONS(5894), - [sym_false] = ACTIONS(5894), - [sym_nullptr] = ACTIONS(5894), - [anon_sym_do] = ACTIONS(5894), - [anon_sym_template] = ACTIONS(5894), - [anon_sym_return] = ACTIONS(5894), - [anon_sym_TILDE] = ACTIONS(5896), - [anon_sym_SEMI] = ACTIONS(5896), - [aux_sym_preproc_def_token1] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5896), - [anon_sym_inline] = ACTIONS(5894), - [anon_sym_PLUS_PLUS] = ACTIONS(5896), - [anon_sym_restrict] = ACTIONS(5894), + [3316] = { + [anon_sym_DASH] = ACTIONS(5901), + [sym_raw_string_literal] = ACTIONS(5903), + [sym_true] = ACTIONS(5901), + [anon_sym_mutable] = ACTIONS(5901), + [sym_null] = ACTIONS(5901), + [anon_sym_break] = ACTIONS(5901), + [aux_sym_preproc_if_token2] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5903), + [anon_sym_sizeof] = ACTIONS(5901), + [anon_sym_volatile] = ACTIONS(5901), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_typedef] = ACTIONS(5901), + [anon_sym_switch] = ACTIONS(5901), + [anon_sym_explicit] = ACTIONS(5901), + [sym_identifier] = ACTIONS(5901), + [anon_sym_delete] = ACTIONS(5901), + [anon_sym_continue] = ACTIONS(5901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5901), + [anon_sym__Atomic] = ACTIONS(5901), + [sym_number_literal] = ACTIONS(5903), + [anon_sym_extern] = ACTIONS(5901), + [anon_sym_enum] = ACTIONS(5901), + [anon_sym_constexpr] = ACTIONS(5901), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5903), + [anon_sym_namespace] = ACTIONS(5901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5901), + [aux_sym_preproc_elif_token1] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5903), + [anon_sym_LBRACE] = ACTIONS(5903), + [anon_sym_DASH_DASH] = ACTIONS(5903), + [anon_sym_LPAREN2] = ACTIONS(5903), + [anon_sym_struct] = ACTIONS(5901), + [sym_auto] = ACTIONS(5901), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_COLON_COLON] = ACTIONS(5903), + [anon_sym_using] = ACTIONS(5901), + [aux_sym_preproc_else_token1] = ACTIONS(5901), + [sym_preproc_directive] = ACTIONS(5901), + [aux_sym_preproc_if_token1] = ACTIONS(5901), + [anon_sym_AMP] = ACTIONS(5901), + [anon_sym_static] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_union] = ACTIONS(5901), + [anon_sym_typename] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_new] = ACTIONS(5901), + [anon_sym_goto] = ACTIONS(5901), + [sym_operator_name] = ACTIONS(5903), + [anon_sym_while] = ACTIONS(5901), + [anon_sym_try] = ACTIONS(5901), + [anon_sym_for] = ACTIONS(5901), + [aux_sym_preproc_include_token1] = ACTIONS(5901), + [anon_sym_register] = ACTIONS(5901), + [anon_sym_DQUOTE] = ACTIONS(5903), + [anon_sym_const] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5901), + [anon_sym_class] = ACTIONS(5901), + [anon_sym_if] = ACTIONS(5901), + [sym_primitive_type] = ACTIONS(5901), + [sym_false] = ACTIONS(5901), + [sym_nullptr] = ACTIONS(5901), + [anon_sym_do] = ACTIONS(5901), + [anon_sym_template] = ACTIONS(5901), + [anon_sym_return] = ACTIONS(5901), + [anon_sym_TILDE] = ACTIONS(5903), + [anon_sym_SEMI] = ACTIONS(5903), + [aux_sym_preproc_def_token1] = ACTIONS(5901), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_inline] = ACTIONS(5901), + [anon_sym_PLUS_PLUS] = ACTIONS(5903), + [anon_sym_restrict] = ACTIONS(5901), }, - [3342] = { - [anon_sym_DASH] = ACTIONS(5906), - [sym_raw_string_literal] = ACTIONS(5908), - [sym_true] = ACTIONS(5906), - [anon_sym_mutable] = ACTIONS(5906), - [sym_null] = ACTIONS(5906), - [anon_sym_break] = ACTIONS(5906), - [aux_sym_preproc_if_token2] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5908), - [anon_sym_sizeof] = ACTIONS(5906), - [anon_sym_volatile] = ACTIONS(5906), - [anon_sym_PLUS] = ACTIONS(5906), - [anon_sym_typedef] = ACTIONS(5906), - [anon_sym_switch] = ACTIONS(5906), - [anon_sym_explicit] = ACTIONS(5906), - [sym_identifier] = ACTIONS(5906), - [anon_sym_delete] = ACTIONS(5906), - [anon_sym_continue] = ACTIONS(5906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), - [anon_sym__Atomic] = ACTIONS(5906), - [sym_number_literal] = ACTIONS(5908), - [anon_sym_extern] = ACTIONS(5906), - [anon_sym_enum] = ACTIONS(5906), - [anon_sym_constexpr] = ACTIONS(5906), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5908), - [anon_sym_namespace] = ACTIONS(5906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), - [aux_sym_preproc_elif_token1] = ACTIONS(5906), - [anon_sym_SQUOTE] = ACTIONS(5908), - [anon_sym_LBRACE] = ACTIONS(5908), - [anon_sym_DASH_DASH] = ACTIONS(5908), - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_struct] = ACTIONS(5906), - [sym_auto] = ACTIONS(5906), - [anon_sym_signed] = ACTIONS(5906), - [anon_sym_long] = ACTIONS(5906), - [anon_sym_COLON_COLON] = ACTIONS(5908), - [anon_sym_using] = ACTIONS(5906), - [aux_sym_preproc_else_token1] = ACTIONS(5906), - [sym_preproc_directive] = ACTIONS(5906), - [aux_sym_preproc_if_token1] = ACTIONS(5906), - [anon_sym_AMP] = ACTIONS(5906), - [anon_sym_static] = ACTIONS(5906), - [anon_sym_STAR] = ACTIONS(5908), - [anon_sym_union] = ACTIONS(5906), - [anon_sym_typename] = ACTIONS(5906), - [anon_sym_short] = ACTIONS(5906), - [anon_sym_new] = ACTIONS(5906), - [anon_sym_goto] = ACTIONS(5906), - [sym_operator_name] = ACTIONS(5908), - [anon_sym_while] = ACTIONS(5906), - [anon_sym_try] = ACTIONS(5906), - [anon_sym_for] = ACTIONS(5906), - [aux_sym_preproc_include_token1] = ACTIONS(5906), - [anon_sym_register] = ACTIONS(5906), - [anon_sym_DQUOTE] = ACTIONS(5908), - [anon_sym_const] = ACTIONS(5906), - [anon_sym_LBRACK] = ACTIONS(5906), - [anon_sym_class] = ACTIONS(5906), - [anon_sym_if] = ACTIONS(5906), - [sym_primitive_type] = ACTIONS(5906), - [sym_false] = ACTIONS(5906), - [sym_nullptr] = ACTIONS(5906), - [anon_sym_do] = ACTIONS(5906), - [anon_sym_template] = ACTIONS(5906), - [anon_sym_return] = ACTIONS(5906), - [anon_sym_TILDE] = ACTIONS(5908), - [anon_sym_SEMI] = ACTIONS(5908), - [aux_sym_preproc_def_token1] = ACTIONS(5906), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_inline] = ACTIONS(5906), - [anon_sym_PLUS_PLUS] = ACTIONS(5908), - [anon_sym_restrict] = ACTIONS(5906), + [3317] = { + [anon_sym_DASH] = ACTIONS(5913), + [sym_raw_string_literal] = ACTIONS(5915), + [sym_true] = ACTIONS(5913), + [anon_sym_mutable] = ACTIONS(5913), + [sym_null] = ACTIONS(5913), + [anon_sym_break] = ACTIONS(5913), + [aux_sym_preproc_if_token2] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_sizeof] = ACTIONS(5913), + [anon_sym_volatile] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_typedef] = ACTIONS(5913), + [anon_sym_switch] = ACTIONS(5913), + [anon_sym_explicit] = ACTIONS(5913), + [sym_identifier] = ACTIONS(5913), + [anon_sym_delete] = ACTIONS(5913), + [anon_sym_continue] = ACTIONS(5913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5913), + [anon_sym__Atomic] = ACTIONS(5913), + [sym_number_literal] = ACTIONS(5915), + [anon_sym_extern] = ACTIONS(5913), + [anon_sym_enum] = ACTIONS(5913), + [anon_sym_constexpr] = ACTIONS(5913), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5915), + [anon_sym_namespace] = ACTIONS(5913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5913), + [aux_sym_preproc_elif_token1] = ACTIONS(5913), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_LBRACE] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5915), + [anon_sym_LPAREN2] = ACTIONS(5915), + [anon_sym_struct] = ACTIONS(5913), + [sym_auto] = ACTIONS(5913), + [anon_sym_signed] = ACTIONS(5913), + [anon_sym_long] = ACTIONS(5913), + [anon_sym_COLON_COLON] = ACTIONS(5915), + [anon_sym_using] = ACTIONS(5913), + [aux_sym_preproc_else_token1] = ACTIONS(5913), + [sym_preproc_directive] = ACTIONS(5913), + [aux_sym_preproc_if_token1] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_static] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_union] = ACTIONS(5913), + [anon_sym_typename] = ACTIONS(5913), + [anon_sym_short] = ACTIONS(5913), + [anon_sym_new] = ACTIONS(5913), + [anon_sym_goto] = ACTIONS(5913), + [sym_operator_name] = ACTIONS(5915), + [anon_sym_while] = ACTIONS(5913), + [anon_sym_try] = ACTIONS(5913), + [anon_sym_for] = ACTIONS(5913), + [aux_sym_preproc_include_token1] = ACTIONS(5913), + [anon_sym_register] = ACTIONS(5913), + [anon_sym_DQUOTE] = ACTIONS(5915), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_class] = ACTIONS(5913), + [anon_sym_if] = ACTIONS(5913), + [sym_primitive_type] = ACTIONS(5913), + [sym_false] = ACTIONS(5913), + [sym_nullptr] = ACTIONS(5913), + [anon_sym_do] = ACTIONS(5913), + [anon_sym_template] = ACTIONS(5913), + [anon_sym_return] = ACTIONS(5913), + [anon_sym_TILDE] = ACTIONS(5915), + [anon_sym_SEMI] = ACTIONS(5915), + [aux_sym_preproc_def_token1] = ACTIONS(5913), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_inline] = ACTIONS(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5915), + [anon_sym_restrict] = ACTIONS(5913), }, - [3343] = { - [anon_sym_LF] = ACTIONS(8614), + [3318] = { + [anon_sym_LF] = ACTIONS(8580), [sym_comment] = ACTIONS(244), }, - [3344] = { - [anon_sym_DASH] = ACTIONS(5912), - [sym_raw_string_literal] = ACTIONS(5914), - [sym_true] = ACTIONS(5912), - [anon_sym_mutable] = ACTIONS(5912), - [sym_null] = ACTIONS(5912), - [anon_sym_break] = ACTIONS(5912), - [aux_sym_preproc_if_token2] = ACTIONS(5912), - [anon_sym_BANG] = ACTIONS(5914), - [anon_sym_sizeof] = ACTIONS(5912), - [anon_sym_volatile] = ACTIONS(5912), - [anon_sym_PLUS] = ACTIONS(5912), - [anon_sym_typedef] = ACTIONS(5912), - [anon_sym_switch] = ACTIONS(5912), - [anon_sym_explicit] = ACTIONS(5912), - [sym_identifier] = ACTIONS(5912), - [anon_sym_delete] = ACTIONS(5912), - [anon_sym_continue] = ACTIONS(5912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5912), - [anon_sym__Atomic] = ACTIONS(5912), - [sym_number_literal] = ACTIONS(5914), - [anon_sym_extern] = ACTIONS(5912), - [anon_sym_enum] = ACTIONS(5912), - [anon_sym_constexpr] = ACTIONS(5912), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5914), - [anon_sym_namespace] = ACTIONS(5912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5912), - [aux_sym_preproc_elif_token1] = ACTIONS(5912), - [anon_sym_SQUOTE] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(5914), - [anon_sym_DASH_DASH] = ACTIONS(5914), - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_struct] = ACTIONS(5912), - [sym_auto] = ACTIONS(5912), - [anon_sym_signed] = ACTIONS(5912), - [anon_sym_long] = ACTIONS(5912), - [anon_sym_COLON_COLON] = ACTIONS(5914), - [anon_sym_using] = ACTIONS(5912), - [aux_sym_preproc_else_token1] = ACTIONS(5912), - [sym_preproc_directive] = ACTIONS(5912), - [aux_sym_preproc_if_token1] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_static] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_union] = ACTIONS(5912), - [anon_sym_typename] = ACTIONS(5912), - [anon_sym_short] = ACTIONS(5912), - [anon_sym_new] = ACTIONS(5912), - [anon_sym_goto] = ACTIONS(5912), - [sym_operator_name] = ACTIONS(5914), - [anon_sym_while] = ACTIONS(5912), - [anon_sym_try] = ACTIONS(5912), - [anon_sym_for] = ACTIONS(5912), - [aux_sym_preproc_include_token1] = ACTIONS(5912), - [anon_sym_register] = ACTIONS(5912), - [anon_sym_DQUOTE] = ACTIONS(5914), - [anon_sym_const] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5912), - [anon_sym_class] = ACTIONS(5912), - [anon_sym_if] = ACTIONS(5912), - [sym_primitive_type] = ACTIONS(5912), - [sym_false] = ACTIONS(5912), - [sym_nullptr] = ACTIONS(5912), - [anon_sym_do] = ACTIONS(5912), - [anon_sym_template] = ACTIONS(5912), - [anon_sym_return] = ACTIONS(5912), - [anon_sym_TILDE] = ACTIONS(5914), - [anon_sym_SEMI] = ACTIONS(5914), - [aux_sym_preproc_def_token1] = ACTIONS(5912), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_inline] = ACTIONS(5912), - [anon_sym_PLUS_PLUS] = ACTIONS(5914), - [anon_sym_restrict] = ACTIONS(5912), - }, - [3345] = { - [anon_sym_DASH] = ACTIONS(5934), - [sym_raw_string_literal] = ACTIONS(5936), - [sym_true] = ACTIONS(5934), - [anon_sym_mutable] = ACTIONS(5934), - [sym_null] = ACTIONS(5934), - [anon_sym_break] = ACTIONS(5934), - [aux_sym_preproc_if_token2] = ACTIONS(5934), - [anon_sym_BANG] = ACTIONS(5936), - [anon_sym_sizeof] = ACTIONS(5934), - [anon_sym_volatile] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_typedef] = ACTIONS(5934), - [anon_sym_switch] = ACTIONS(5934), - [anon_sym_explicit] = ACTIONS(5934), - [sym_identifier] = ACTIONS(5934), - [anon_sym_delete] = ACTIONS(5934), - [anon_sym_continue] = ACTIONS(5934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5934), - [anon_sym__Atomic] = ACTIONS(5934), - [sym_number_literal] = ACTIONS(5936), - [anon_sym_extern] = ACTIONS(5934), - [anon_sym_enum] = ACTIONS(5934), - [anon_sym_constexpr] = ACTIONS(5934), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5936), - [anon_sym_namespace] = ACTIONS(5934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5934), - [aux_sym_preproc_elif_token1] = ACTIONS(5934), - [anon_sym_SQUOTE] = ACTIONS(5936), - [anon_sym_LBRACE] = ACTIONS(5936), - [anon_sym_DASH_DASH] = ACTIONS(5936), - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_struct] = ACTIONS(5934), - [sym_auto] = ACTIONS(5934), - [anon_sym_signed] = ACTIONS(5934), - [anon_sym_long] = ACTIONS(5934), - [anon_sym_COLON_COLON] = ACTIONS(5936), - [anon_sym_using] = ACTIONS(5934), - [aux_sym_preproc_else_token1] = ACTIONS(5934), - [sym_preproc_directive] = ACTIONS(5934), - [aux_sym_preproc_if_token1] = ACTIONS(5934), - [anon_sym_AMP] = ACTIONS(5934), - [anon_sym_static] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_union] = ACTIONS(5934), - [anon_sym_typename] = ACTIONS(5934), - [anon_sym_short] = ACTIONS(5934), - [anon_sym_new] = ACTIONS(5934), - [anon_sym_goto] = ACTIONS(5934), - [sym_operator_name] = ACTIONS(5936), - [anon_sym_while] = ACTIONS(5934), - [anon_sym_try] = ACTIONS(5934), - [anon_sym_for] = ACTIONS(5934), - [aux_sym_preproc_include_token1] = ACTIONS(5934), - [anon_sym_register] = ACTIONS(5934), - [anon_sym_DQUOTE] = ACTIONS(5936), - [anon_sym_const] = ACTIONS(5934), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_class] = ACTIONS(5934), - [anon_sym_if] = ACTIONS(5934), - [sym_primitive_type] = ACTIONS(5934), - [sym_false] = ACTIONS(5934), - [sym_nullptr] = ACTIONS(5934), - [anon_sym_do] = ACTIONS(5934), - [anon_sym_template] = ACTIONS(5934), - [anon_sym_return] = ACTIONS(5934), - [anon_sym_TILDE] = ACTIONS(5936), - [anon_sym_SEMI] = ACTIONS(5936), - [aux_sym_preproc_def_token1] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_inline] = ACTIONS(5934), - [anon_sym_PLUS_PLUS] = ACTIONS(5936), - [anon_sym_restrict] = ACTIONS(5934), - }, - [3346] = { - [anon_sym_DASH] = ACTIONS(5938), - [sym_raw_string_literal] = ACTIONS(5940), - [sym_true] = ACTIONS(5938), - [anon_sym_mutable] = ACTIONS(5938), - [sym_null] = ACTIONS(5938), - [anon_sym_break] = ACTIONS(5938), - [aux_sym_preproc_if_token2] = ACTIONS(5938), - [anon_sym_BANG] = ACTIONS(5940), - [anon_sym_sizeof] = ACTIONS(5938), - [anon_sym_volatile] = ACTIONS(5938), - [anon_sym_PLUS] = ACTIONS(5938), - [anon_sym_typedef] = ACTIONS(5938), - [anon_sym_switch] = ACTIONS(5938), - [anon_sym_explicit] = ACTIONS(5938), - [sym_identifier] = ACTIONS(5938), - [anon_sym_delete] = ACTIONS(5938), - [anon_sym_continue] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), - [anon_sym__Atomic] = ACTIONS(5938), - [sym_number_literal] = ACTIONS(5940), - [anon_sym_extern] = ACTIONS(5938), - [anon_sym_enum] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5938), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5940), - [anon_sym_namespace] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), - [aux_sym_preproc_elif_token1] = ACTIONS(5938), - [anon_sym_SQUOTE] = ACTIONS(5940), - [anon_sym_LBRACE] = ACTIONS(5940), - [anon_sym_DASH_DASH] = ACTIONS(5940), - [anon_sym_LPAREN2] = ACTIONS(5940), - [anon_sym_struct] = ACTIONS(5938), - [sym_auto] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(5938), - [anon_sym_long] = ACTIONS(5938), - [anon_sym_COLON_COLON] = ACTIONS(5940), - [anon_sym_using] = ACTIONS(5938), - [aux_sym_preproc_else_token1] = ACTIONS(5938), - [sym_preproc_directive] = ACTIONS(5938), - [aux_sym_preproc_if_token1] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_static] = ACTIONS(5938), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_union] = ACTIONS(5938), - [anon_sym_typename] = ACTIONS(5938), - [anon_sym_short] = ACTIONS(5938), - [anon_sym_new] = ACTIONS(5938), - [anon_sym_goto] = ACTIONS(5938), - [sym_operator_name] = ACTIONS(5940), - [anon_sym_while] = ACTIONS(5938), - [anon_sym_try] = ACTIONS(5938), - [anon_sym_for] = ACTIONS(5938), - [aux_sym_preproc_include_token1] = ACTIONS(5938), - [anon_sym_register] = ACTIONS(5938), - [anon_sym_DQUOTE] = ACTIONS(5940), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_LBRACK] = ACTIONS(5938), - [anon_sym_class] = ACTIONS(5938), - [anon_sym_if] = ACTIONS(5938), - [sym_primitive_type] = ACTIONS(5938), - [sym_false] = ACTIONS(5938), - [sym_nullptr] = ACTIONS(5938), - [anon_sym_do] = ACTIONS(5938), - [anon_sym_template] = ACTIONS(5938), - [anon_sym_return] = ACTIONS(5938), - [anon_sym_TILDE] = ACTIONS(5940), - [anon_sym_SEMI] = ACTIONS(5940), - [aux_sym_preproc_def_token1] = ACTIONS(5938), - [anon_sym_AMP_AMP] = ACTIONS(5940), - [anon_sym_inline] = ACTIONS(5938), - [anon_sym_PLUS_PLUS] = ACTIONS(5940), - [anon_sym_restrict] = ACTIONS(5938), + [3319] = { + [anon_sym_DASH] = ACTIONS(5919), + [sym_raw_string_literal] = ACTIONS(5921), + [sym_true] = ACTIONS(5919), + [anon_sym_mutable] = ACTIONS(5919), + [sym_null] = ACTIONS(5919), + [anon_sym_break] = ACTIONS(5919), + [aux_sym_preproc_if_token2] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_sizeof] = ACTIONS(5919), + [anon_sym_volatile] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_typedef] = ACTIONS(5919), + [anon_sym_switch] = ACTIONS(5919), + [anon_sym_explicit] = ACTIONS(5919), + [sym_identifier] = ACTIONS(5919), + [anon_sym_delete] = ACTIONS(5919), + [anon_sym_continue] = ACTIONS(5919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5919), + [anon_sym__Atomic] = ACTIONS(5919), + [sym_number_literal] = ACTIONS(5921), + [anon_sym_extern] = ACTIONS(5919), + [anon_sym_enum] = ACTIONS(5919), + [anon_sym_constexpr] = ACTIONS(5919), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5921), + [anon_sym_namespace] = ACTIONS(5919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5919), + [aux_sym_preproc_elif_token1] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [anon_sym_DASH_DASH] = ACTIONS(5921), + [anon_sym_LPAREN2] = ACTIONS(5921), + [anon_sym_struct] = ACTIONS(5919), + [sym_auto] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(5919), + [anon_sym_long] = ACTIONS(5919), + [anon_sym_COLON_COLON] = ACTIONS(5921), + [anon_sym_using] = ACTIONS(5919), + [aux_sym_preproc_else_token1] = ACTIONS(5919), + [sym_preproc_directive] = ACTIONS(5919), + [aux_sym_preproc_if_token1] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_static] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_union] = ACTIONS(5919), + [anon_sym_typename] = ACTIONS(5919), + [anon_sym_short] = ACTIONS(5919), + [anon_sym_new] = ACTIONS(5919), + [anon_sym_goto] = ACTIONS(5919), + [sym_operator_name] = ACTIONS(5921), + [anon_sym_while] = ACTIONS(5919), + [anon_sym_try] = ACTIONS(5919), + [anon_sym_for] = ACTIONS(5919), + [aux_sym_preproc_include_token1] = ACTIONS(5919), + [anon_sym_register] = ACTIONS(5919), + [anon_sym_DQUOTE] = ACTIONS(5921), + [anon_sym_const] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_class] = ACTIONS(5919), + [anon_sym_if] = ACTIONS(5919), + [sym_primitive_type] = ACTIONS(5919), + [sym_false] = ACTIONS(5919), + [sym_nullptr] = ACTIONS(5919), + [anon_sym_do] = ACTIONS(5919), + [anon_sym_template] = ACTIONS(5919), + [anon_sym_return] = ACTIONS(5919), + [anon_sym_TILDE] = ACTIONS(5921), + [anon_sym_SEMI] = ACTIONS(5921), + [aux_sym_preproc_def_token1] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5921), + [anon_sym_inline] = ACTIONS(5919), + [anon_sym_PLUS_PLUS] = ACTIONS(5921), + [anon_sym_restrict] = ACTIONS(5919), }, - [3347] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(8616), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3320] = { + [anon_sym_DASH] = ACTIONS(5923), + [sym_raw_string_literal] = ACTIONS(5925), + [sym_true] = ACTIONS(5923), + [anon_sym_mutable] = ACTIONS(5923), + [sym_null] = ACTIONS(5923), + [anon_sym_break] = ACTIONS(5923), + [aux_sym_preproc_if_token2] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5925), + [anon_sym_sizeof] = ACTIONS(5923), + [anon_sym_volatile] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_typedef] = ACTIONS(5923), + [anon_sym_switch] = ACTIONS(5923), + [anon_sym_explicit] = ACTIONS(5923), + [sym_identifier] = ACTIONS(5923), + [anon_sym_delete] = ACTIONS(5923), + [anon_sym_continue] = ACTIONS(5923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5923), + [anon_sym__Atomic] = ACTIONS(5923), + [sym_number_literal] = ACTIONS(5925), + [anon_sym_extern] = ACTIONS(5923), + [anon_sym_enum] = ACTIONS(5923), + [anon_sym_constexpr] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5925), + [anon_sym_namespace] = ACTIONS(5923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5923), + [aux_sym_preproc_elif_token1] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5925), + [anon_sym_DASH_DASH] = ACTIONS(5925), + [anon_sym_LPAREN2] = ACTIONS(5925), + [anon_sym_struct] = ACTIONS(5923), + [sym_auto] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(5923), + [anon_sym_long] = ACTIONS(5923), + [anon_sym_COLON_COLON] = ACTIONS(5925), + [anon_sym_using] = ACTIONS(5923), + [aux_sym_preproc_else_token1] = ACTIONS(5923), + [sym_preproc_directive] = ACTIONS(5923), + [aux_sym_preproc_if_token1] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5923), + [anon_sym_static] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5925), + [anon_sym_union] = ACTIONS(5923), + [anon_sym_typename] = ACTIONS(5923), + [anon_sym_short] = ACTIONS(5923), + [anon_sym_new] = ACTIONS(5923), + [anon_sym_goto] = ACTIONS(5923), + [sym_operator_name] = ACTIONS(5925), + [anon_sym_while] = ACTIONS(5923), + [anon_sym_try] = ACTIONS(5923), + [anon_sym_for] = ACTIONS(5923), + [aux_sym_preproc_include_token1] = ACTIONS(5923), + [anon_sym_register] = ACTIONS(5923), + [anon_sym_DQUOTE] = ACTIONS(5925), + [anon_sym_const] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_class] = ACTIONS(5923), + [anon_sym_if] = ACTIONS(5923), + [sym_primitive_type] = ACTIONS(5923), + [sym_false] = ACTIONS(5923), + [sym_nullptr] = ACTIONS(5923), + [anon_sym_do] = ACTIONS(5923), + [anon_sym_template] = ACTIONS(5923), + [anon_sym_return] = ACTIONS(5923), + [anon_sym_TILDE] = ACTIONS(5925), + [anon_sym_SEMI] = ACTIONS(5925), + [aux_sym_preproc_def_token1] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_inline] = ACTIONS(5923), + [anon_sym_PLUS_PLUS] = ACTIONS(5925), + [anon_sym_restrict] = ACTIONS(5923), }, - [3348] = { + [3321] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8616), - }, - [3349] = { - [anon_sym_DASH] = ACTIONS(6245), - [sym_raw_string_literal] = ACTIONS(6247), - [sym_true] = ACTIONS(6245), - [anon_sym_mutable] = ACTIONS(6245), - [sym_null] = ACTIONS(6245), - [anon_sym_break] = ACTIONS(6245), - [aux_sym_preproc_if_token2] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6247), - [anon_sym_sizeof] = ACTIONS(6245), - [anon_sym_volatile] = ACTIONS(6245), - [anon_sym_PLUS] = ACTIONS(6245), - [anon_sym_typedef] = ACTIONS(6245), - [anon_sym_switch] = ACTIONS(6245), - [anon_sym_explicit] = ACTIONS(6245), - [sym_identifier] = ACTIONS(6245), - [anon_sym_delete] = ACTIONS(6245), - [anon_sym_continue] = ACTIONS(6245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6245), - [anon_sym__Atomic] = ACTIONS(6245), - [sym_number_literal] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6245), - [anon_sym_enum] = ACTIONS(6245), - [anon_sym_constexpr] = ACTIONS(6245), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6247), - [anon_sym_namespace] = ACTIONS(6245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6245), - [aux_sym_preproc_elif_token1] = ACTIONS(6245), - [anon_sym_SQUOTE] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6247), - [anon_sym_DASH_DASH] = ACTIONS(6247), - [anon_sym_LPAREN2] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6245), - [sym_auto] = ACTIONS(6245), - [anon_sym_signed] = ACTIONS(6245), - [anon_sym_long] = ACTIONS(6245), - [anon_sym_COLON_COLON] = ACTIONS(6247), - [anon_sym_using] = ACTIONS(6245), - [aux_sym_preproc_else_token1] = ACTIONS(6245), - [sym_preproc_directive] = ACTIONS(6245), - [aux_sym_preproc_if_token1] = ACTIONS(6245), - [anon_sym_AMP] = ACTIONS(6245), - [anon_sym_static] = ACTIONS(6245), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6245), - [anon_sym_typename] = ACTIONS(6245), - [anon_sym_short] = ACTIONS(6245), - [anon_sym_new] = ACTIONS(6245), - [anon_sym_goto] = ACTIONS(6245), - [sym_operator_name] = ACTIONS(6247), - [anon_sym_while] = ACTIONS(6245), - [anon_sym_try] = ACTIONS(6245), - [anon_sym_for] = ACTIONS(6245), - [aux_sym_preproc_include_token1] = ACTIONS(6245), - [anon_sym_register] = ACTIONS(6245), - [anon_sym_DQUOTE] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_class] = ACTIONS(6245), - [anon_sym_if] = ACTIONS(6245), - [sym_primitive_type] = ACTIONS(6245), - [sym_false] = ACTIONS(6245), - [sym_nullptr] = ACTIONS(6245), - [anon_sym_do] = ACTIONS(6245), - [anon_sym_template] = ACTIONS(6245), - [anon_sym_return] = ACTIONS(6245), - [anon_sym_TILDE] = ACTIONS(6247), - [anon_sym_SEMI] = ACTIONS(6247), - [aux_sym_preproc_def_token1] = ACTIONS(6245), - [anon_sym_AMP_AMP] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6245), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(8582), }, - [3350] = { - [anon_sym_DASH] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [anon_sym_delete] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym_namespace] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [aux_sym_preproc_elif_token1] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [aux_sym_preproc_else_token1] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [anon_sym_while] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [anon_sym_const] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_nullptr] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(2397), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(962), + [3322] = { + [anon_sym_DASH] = ACTIONS(6126), + [sym_raw_string_literal] = ACTIONS(6128), + [sym_true] = ACTIONS(6126), + [anon_sym_mutable] = ACTIONS(6126), + [sym_null] = ACTIONS(6126), + [anon_sym_break] = ACTIONS(6126), + [aux_sym_preproc_if_token2] = ACTIONS(6126), + [anon_sym_BANG] = ACTIONS(6128), + [anon_sym_sizeof] = ACTIONS(6126), + [anon_sym_volatile] = ACTIONS(6126), + [anon_sym_PLUS] = ACTIONS(6126), + [anon_sym_typedef] = ACTIONS(6126), + [anon_sym_switch] = ACTIONS(6126), + [anon_sym_explicit] = ACTIONS(6126), + [sym_identifier] = ACTIONS(6126), + [anon_sym_delete] = ACTIONS(6126), + [anon_sym_continue] = ACTIONS(6126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6126), + [anon_sym__Atomic] = ACTIONS(6126), + [sym_number_literal] = ACTIONS(6128), + [anon_sym_extern] = ACTIONS(6126), + [anon_sym_enum] = ACTIONS(6126), + [anon_sym_constexpr] = ACTIONS(6126), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6128), + [anon_sym_namespace] = ACTIONS(6126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6126), + [aux_sym_preproc_elif_token1] = ACTIONS(6126), + [anon_sym_SQUOTE] = ACTIONS(6128), + [anon_sym_LBRACE] = ACTIONS(6128), + [anon_sym_DASH_DASH] = ACTIONS(6128), + [anon_sym_LPAREN2] = ACTIONS(6128), + [anon_sym_struct] = ACTIONS(6126), + [sym_auto] = ACTIONS(6126), + [anon_sym_signed] = ACTIONS(6126), + [anon_sym_long] = ACTIONS(6126), + [anon_sym_COLON_COLON] = ACTIONS(6128), + [anon_sym_using] = ACTIONS(6126), + [aux_sym_preproc_else_token1] = ACTIONS(6126), + [sym_preproc_directive] = ACTIONS(6126), + [aux_sym_preproc_if_token1] = ACTIONS(6126), + [anon_sym_AMP] = ACTIONS(6126), + [anon_sym_static] = ACTIONS(6126), + [anon_sym_STAR] = ACTIONS(6128), + [anon_sym_union] = ACTIONS(6126), + [anon_sym_typename] = ACTIONS(6126), + [anon_sym_short] = ACTIONS(6126), + [anon_sym_new] = ACTIONS(6126), + [anon_sym_goto] = ACTIONS(6126), + [sym_operator_name] = ACTIONS(6128), + [anon_sym_while] = ACTIONS(6126), + [anon_sym_try] = ACTIONS(6126), + [anon_sym_for] = ACTIONS(6126), + [aux_sym_preproc_include_token1] = ACTIONS(6126), + [anon_sym_register] = ACTIONS(6126), + [anon_sym_DQUOTE] = ACTIONS(6128), + [anon_sym_const] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(6126), + [anon_sym_class] = ACTIONS(6126), + [anon_sym_if] = ACTIONS(6126), + [sym_primitive_type] = ACTIONS(6126), + [sym_false] = ACTIONS(6126), + [sym_nullptr] = ACTIONS(6126), + [anon_sym_do] = ACTIONS(6126), + [anon_sym_template] = ACTIONS(6126), + [anon_sym_return] = ACTIONS(6126), + [anon_sym_TILDE] = ACTIONS(6128), + [anon_sym_SEMI] = ACTIONS(6128), + [aux_sym_preproc_def_token1] = ACTIONS(6126), + [anon_sym_AMP_AMP] = ACTIONS(6128), + [anon_sym_inline] = ACTIONS(6126), + [anon_sym_PLUS_PLUS] = ACTIONS(6128), + [anon_sym_restrict] = ACTIONS(6126), }, - [3351] = { - [anon_sym_DASH] = ACTIONS(6354), - [sym_raw_string_literal] = ACTIONS(6356), - [sym_true] = ACTIONS(6354), - [anon_sym_mutable] = ACTIONS(6354), - [sym_null] = ACTIONS(6354), - [anon_sym_break] = ACTIONS(6354), - [aux_sym_preproc_if_token2] = ACTIONS(6354), - [anon_sym_BANG] = ACTIONS(6356), - [anon_sym_sizeof] = ACTIONS(6354), - [anon_sym_volatile] = ACTIONS(6354), - [anon_sym_PLUS] = ACTIONS(6354), - [anon_sym_typedef] = ACTIONS(6354), - [anon_sym_switch] = ACTIONS(6354), - [anon_sym_explicit] = ACTIONS(6354), - [sym_identifier] = ACTIONS(6354), - [anon_sym_delete] = ACTIONS(6354), - [anon_sym_continue] = ACTIONS(6354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6354), - [anon_sym__Atomic] = ACTIONS(6354), - [sym_number_literal] = ACTIONS(6356), - [anon_sym_extern] = ACTIONS(6354), - [anon_sym_enum] = ACTIONS(6354), - [anon_sym_constexpr] = ACTIONS(6354), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6356), - [anon_sym_namespace] = ACTIONS(6354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6354), - [aux_sym_preproc_elif_token1] = ACTIONS(6354), - [anon_sym_SQUOTE] = ACTIONS(6356), - [anon_sym_LBRACE] = ACTIONS(6356), - [anon_sym_DASH_DASH] = ACTIONS(6356), - [anon_sym_LPAREN2] = ACTIONS(6356), - [anon_sym_struct] = ACTIONS(6354), - [sym_auto] = ACTIONS(6354), - [anon_sym_signed] = ACTIONS(6354), - [anon_sym_long] = ACTIONS(6354), - [anon_sym_COLON_COLON] = ACTIONS(6356), - [anon_sym_using] = ACTIONS(6354), - [aux_sym_preproc_else_token1] = ACTIONS(6354), - [sym_preproc_directive] = ACTIONS(6354), - [aux_sym_preproc_if_token1] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(6354), - [anon_sym_static] = ACTIONS(6354), - [anon_sym_STAR] = ACTIONS(6356), - [anon_sym_union] = ACTIONS(6354), - [anon_sym_typename] = ACTIONS(6354), - [anon_sym_short] = ACTIONS(6354), - [anon_sym_new] = ACTIONS(6354), - [anon_sym_goto] = ACTIONS(6354), - [sym_operator_name] = ACTIONS(6356), - [anon_sym_while] = ACTIONS(6354), - [anon_sym_try] = ACTIONS(6354), - [anon_sym_for] = ACTIONS(6354), - [aux_sym_preproc_include_token1] = ACTIONS(6354), - [anon_sym_register] = ACTIONS(6354), - [anon_sym_DQUOTE] = ACTIONS(6356), - [anon_sym_const] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(6354), - [anon_sym_class] = ACTIONS(6354), - [anon_sym_if] = ACTIONS(6354), - [sym_primitive_type] = ACTIONS(6354), - [sym_false] = ACTIONS(6354), - [sym_nullptr] = ACTIONS(6354), - [anon_sym_do] = ACTIONS(6354), - [anon_sym_template] = ACTIONS(6354), - [anon_sym_return] = ACTIONS(6354), - [anon_sym_TILDE] = ACTIONS(6356), - [anon_sym_SEMI] = ACTIONS(6356), - [aux_sym_preproc_def_token1] = ACTIONS(6354), - [anon_sym_AMP_AMP] = ACTIONS(6356), - [anon_sym_inline] = ACTIONS(6354), - [anon_sym_PLUS_PLUS] = ACTIONS(6356), - [anon_sym_restrict] = ACTIONS(6354), + [3323] = { + [anon_sym_DASH] = ACTIONS(6130), + [sym_raw_string_literal] = ACTIONS(6132), + [sym_true] = ACTIONS(6130), + [anon_sym_mutable] = ACTIONS(6130), + [sym_null] = ACTIONS(6130), + [anon_sym_break] = ACTIONS(6130), + [aux_sym_preproc_if_token2] = ACTIONS(6130), + [anon_sym_BANG] = ACTIONS(6132), + [anon_sym_sizeof] = ACTIONS(6130), + [anon_sym_volatile] = ACTIONS(6130), + [anon_sym_PLUS] = ACTIONS(6130), + [anon_sym_typedef] = ACTIONS(6130), + [anon_sym_switch] = ACTIONS(6130), + [anon_sym_explicit] = ACTIONS(6130), + [sym_identifier] = ACTIONS(6130), + [anon_sym_delete] = ACTIONS(6130), + [anon_sym_continue] = ACTIONS(6130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6130), + [anon_sym__Atomic] = ACTIONS(6130), + [sym_number_literal] = ACTIONS(6132), + [anon_sym_extern] = ACTIONS(6130), + [anon_sym_enum] = ACTIONS(6130), + [anon_sym_constexpr] = ACTIONS(6130), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6132), + [anon_sym_namespace] = ACTIONS(6130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6130), + [aux_sym_preproc_elif_token1] = ACTIONS(6130), + [anon_sym_SQUOTE] = ACTIONS(6132), + [anon_sym_LBRACE] = ACTIONS(6132), + [anon_sym_DASH_DASH] = ACTIONS(6132), + [anon_sym_LPAREN2] = ACTIONS(6132), + [anon_sym_struct] = ACTIONS(6130), + [sym_auto] = ACTIONS(6130), + [anon_sym_signed] = ACTIONS(6130), + [anon_sym_long] = ACTIONS(6130), + [anon_sym_COLON_COLON] = ACTIONS(6132), + [anon_sym_using] = ACTIONS(6130), + [aux_sym_preproc_else_token1] = ACTIONS(6130), + [sym_preproc_directive] = ACTIONS(6130), + [aux_sym_preproc_if_token1] = ACTIONS(6130), + [anon_sym_AMP] = ACTIONS(6130), + [anon_sym_static] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(6132), + [anon_sym_union] = ACTIONS(6130), + [anon_sym_typename] = ACTIONS(6130), + [anon_sym_short] = ACTIONS(6130), + [anon_sym_new] = ACTIONS(6130), + [anon_sym_goto] = ACTIONS(6130), + [sym_operator_name] = ACTIONS(6132), + [anon_sym_while] = ACTIONS(6130), + [anon_sym_try] = ACTIONS(6130), + [anon_sym_for] = ACTIONS(6130), + [aux_sym_preproc_include_token1] = ACTIONS(6130), + [anon_sym_register] = ACTIONS(6130), + [anon_sym_DQUOTE] = ACTIONS(6132), + [anon_sym_const] = ACTIONS(6130), + [anon_sym_LBRACK] = ACTIONS(6130), + [anon_sym_class] = ACTIONS(6130), + [anon_sym_if] = ACTIONS(6130), + [sym_primitive_type] = ACTIONS(6130), + [sym_false] = ACTIONS(6130), + [sym_nullptr] = ACTIONS(6130), + [anon_sym_do] = ACTIONS(6130), + [anon_sym_template] = ACTIONS(6130), + [anon_sym_return] = ACTIONS(6130), + [anon_sym_TILDE] = ACTIONS(6132), + [anon_sym_SEMI] = ACTIONS(6132), + [aux_sym_preproc_def_token1] = ACTIONS(6130), + [anon_sym_AMP_AMP] = ACTIONS(6132), + [anon_sym_inline] = ACTIONS(6130), + [anon_sym_PLUS_PLUS] = ACTIONS(6132), + [anon_sym_restrict] = ACTIONS(6130), }, - [3352] = { - [anon_sym_DASH] = ACTIONS(6361), - [sym_raw_string_literal] = ACTIONS(6363), - [sym_true] = ACTIONS(6361), - [anon_sym_mutable] = ACTIONS(6361), - [sym_null] = ACTIONS(6361), - [anon_sym_break] = ACTIONS(6361), - [aux_sym_preproc_if_token2] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6363), - [anon_sym_sizeof] = ACTIONS(6361), - [anon_sym_volatile] = ACTIONS(6361), - [anon_sym_PLUS] = ACTIONS(6361), - [anon_sym_typedef] = ACTIONS(6361), - [anon_sym_switch] = ACTIONS(6361), - [anon_sym_explicit] = ACTIONS(6361), - [sym_identifier] = ACTIONS(6361), - [anon_sym_delete] = ACTIONS(6361), - [anon_sym_continue] = ACTIONS(6361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6361), - [anon_sym__Atomic] = ACTIONS(6361), - [sym_number_literal] = ACTIONS(6363), - [anon_sym_extern] = ACTIONS(6361), - [anon_sym_enum] = ACTIONS(6361), - [anon_sym_constexpr] = ACTIONS(6361), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6363), - [anon_sym_namespace] = ACTIONS(6361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6361), - [aux_sym_preproc_elif_token1] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [anon_sym_DASH_DASH] = ACTIONS(6363), - [anon_sym_LPAREN2] = ACTIONS(6363), - [anon_sym_struct] = ACTIONS(6361), - [sym_auto] = ACTIONS(6361), - [anon_sym_signed] = ACTIONS(6361), - [anon_sym_long] = ACTIONS(6361), - [anon_sym_COLON_COLON] = ACTIONS(6363), - [anon_sym_using] = ACTIONS(6361), - [aux_sym_preproc_else_token1] = ACTIONS(6361), - [sym_preproc_directive] = ACTIONS(6361), - [aux_sym_preproc_if_token1] = ACTIONS(6361), - [anon_sym_AMP] = ACTIONS(6361), - [anon_sym_static] = ACTIONS(6361), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_union] = ACTIONS(6361), - [anon_sym_typename] = ACTIONS(6361), - [anon_sym_short] = ACTIONS(6361), - [anon_sym_new] = ACTIONS(6361), - [anon_sym_goto] = ACTIONS(6361), - [sym_operator_name] = ACTIONS(6363), - [anon_sym_while] = ACTIONS(6361), - [anon_sym_try] = ACTIONS(6361), - [anon_sym_for] = ACTIONS(6361), - [aux_sym_preproc_include_token1] = ACTIONS(6361), - [anon_sym_register] = ACTIONS(6361), - [anon_sym_DQUOTE] = ACTIONS(6363), - [anon_sym_const] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6361), - [anon_sym_class] = ACTIONS(6361), - [anon_sym_if] = ACTIONS(6361), - [sym_primitive_type] = ACTIONS(6361), - [sym_false] = ACTIONS(6361), - [sym_nullptr] = ACTIONS(6361), - [anon_sym_do] = ACTIONS(6361), - [anon_sym_template] = ACTIONS(6361), - [anon_sym_return] = ACTIONS(6361), - [anon_sym_TILDE] = ACTIONS(6363), - [anon_sym_SEMI] = ACTIONS(6363), - [aux_sym_preproc_def_token1] = ACTIONS(6361), - [anon_sym_AMP_AMP] = ACTIONS(6363), - [anon_sym_inline] = ACTIONS(6361), - [anon_sym_PLUS_PLUS] = ACTIONS(6363), - [anon_sym_restrict] = ACTIONS(6361), + [3324] = { + [anon_sym_DASH] = ACTIONS(6134), + [sym_raw_string_literal] = ACTIONS(6136), + [sym_true] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [sym_null] = ACTIONS(6134), + [anon_sym_break] = ACTIONS(6134), + [aux_sym_preproc_if_token2] = ACTIONS(6134), + [anon_sym_BANG] = ACTIONS(6136), + [anon_sym_sizeof] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_PLUS] = ACTIONS(6134), + [anon_sym_typedef] = ACTIONS(6134), + [anon_sym_switch] = ACTIONS(6134), + [anon_sym_explicit] = ACTIONS(6134), + [sym_identifier] = ACTIONS(6134), + [anon_sym_delete] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [sym_number_literal] = ACTIONS(6136), + [anon_sym_extern] = ACTIONS(6134), + [anon_sym_enum] = ACTIONS(6134), + [anon_sym_constexpr] = ACTIONS(6134), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6136), + [anon_sym_namespace] = ACTIONS(6134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6134), + [aux_sym_preproc_elif_token1] = ACTIONS(6134), + [anon_sym_SQUOTE] = ACTIONS(6136), + [anon_sym_LBRACE] = ACTIONS(6136), + [anon_sym_DASH_DASH] = ACTIONS(6136), + [anon_sym_LPAREN2] = ACTIONS(6136), + [anon_sym_struct] = ACTIONS(6134), + [sym_auto] = ACTIONS(6134), + [anon_sym_signed] = ACTIONS(6134), + [anon_sym_long] = ACTIONS(6134), + [anon_sym_COLON_COLON] = ACTIONS(6136), + [anon_sym_using] = ACTIONS(6134), + [aux_sym_preproc_else_token1] = ACTIONS(6134), + [sym_preproc_directive] = ACTIONS(6134), + [aux_sym_preproc_if_token1] = ACTIONS(6134), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_static] = ACTIONS(6134), + [anon_sym_STAR] = ACTIONS(6136), + [anon_sym_union] = ACTIONS(6134), + [anon_sym_typename] = ACTIONS(6134), + [anon_sym_short] = ACTIONS(6134), + [anon_sym_new] = ACTIONS(6134), + [anon_sym_goto] = ACTIONS(6134), + [sym_operator_name] = ACTIONS(6136), + [anon_sym_while] = ACTIONS(6134), + [anon_sym_try] = ACTIONS(6134), + [anon_sym_for] = ACTIONS(6134), + [aux_sym_preproc_include_token1] = ACTIONS(6134), + [anon_sym_register] = ACTIONS(6134), + [anon_sym_DQUOTE] = ACTIONS(6136), + [anon_sym_const] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_class] = ACTIONS(6134), + [anon_sym_if] = ACTIONS(6134), + [sym_primitive_type] = ACTIONS(6134), + [sym_false] = ACTIONS(6134), + [sym_nullptr] = ACTIONS(6134), + [anon_sym_do] = ACTIONS(6134), + [anon_sym_template] = ACTIONS(6134), + [anon_sym_return] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6136), + [anon_sym_SEMI] = ACTIONS(6136), + [aux_sym_preproc_def_token1] = ACTIONS(6134), + [anon_sym_AMP_AMP] = ACTIONS(6136), + [anon_sym_inline] = ACTIONS(6134), + [anon_sym_PLUS_PLUS] = ACTIONS(6136), + [anon_sym_restrict] = ACTIONS(6134), }, - [3353] = { - [aux_sym_declaration_repeat1] = STATE(2028), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(8618), + [3325] = { + [anon_sym_DASH] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(968), + [sym_true] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [sym_null] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [aux_sym_preproc_if_token2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(966), + [sym_number_literal] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_namespace] = ACTIONS(966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [aux_sym_preproc_elif_token1] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [aux_sym_preproc_else_token1] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [anon_sym_while] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [aux_sym_preproc_include_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_const] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_nullptr] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(2399), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(966), }, - [3354] = { - [anon_sym_LPAREN2] = ACTIONS(8620), - [anon_sym_DASH] = ACTIONS(8622), - [anon_sym_PLUS_PLUS] = ACTIONS(8620), - [anon_sym_LBRACE] = ACTIONS(8620), - [anon_sym_mutable] = ACTIONS(8622), - [anon_sym_DASH_DASH] = ACTIONS(8620), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8620), - [anon_sym_EQ] = ACTIONS(8622), - [anon_sym_COLON_COLON] = ACTIONS(8620), - [anon_sym_final] = ACTIONS(8622), - [anon_sym_EQ_EQ] = ACTIONS(8620), - [anon_sym_PIPE] = ACTIONS(8622), - [anon_sym_LT] = ACTIONS(8622), - [anon_sym_AMP] = ACTIONS(8622), - [anon_sym_static] = ACTIONS(8622), - [anon_sym_volatile] = ACTIONS(8622), - [anon_sym_PLUS] = ACTIONS(8622), - [anon_sym_GT_EQ] = ACTIONS(8620), - [anon_sym_STAR] = ACTIONS(8620), - [anon_sym_SLASH] = ACTIONS(8622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8620), - [anon_sym_COLON] = ACTIONS(8622), - [anon_sym_explicit] = ACTIONS(8622), - [sym_identifier] = ACTIONS(8622), - [anon_sym_RBRACE] = ACTIONS(8620), - [anon_sym_override] = ACTIONS(8622), - [sym_operator_name] = ACTIONS(8620), - [sym_noexcept] = ACTIONS(8622), - [anon_sym_CARET] = ACTIONS(8620), - [anon_sym_GT] = ACTIONS(8622), - [anon_sym_COMMA] = ACTIONS(8620), - [anon_sym_register] = ACTIONS(8622), - [anon_sym__Atomic] = ACTIONS(8622), - [anon_sym_const] = ACTIONS(8622), - [anon_sym_extern] = ACTIONS(8622), - [anon_sym_LBRACK] = ACTIONS(8620), - [anon_sym_PIPE_PIPE] = ACTIONS(8620), - [anon_sym_DOT] = ACTIONS(8622), - [anon_sym_LT_LT] = ACTIONS(8620), - [anon_sym_constexpr] = ACTIONS(8622), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(8620), - [anon_sym_TILDE] = ACTIONS(8620), - [anon_sym_SEMI] = ACTIONS(8620), - [anon_sym_BANG_EQ] = ACTIONS(8620), - [anon_sym_LT_EQ] = ACTIONS(8620), - [anon_sym_AMP_AMP] = ACTIONS(8620), - [anon_sym_inline] = ACTIONS(8622), - [anon_sym_RPAREN] = ACTIONS(8620), - [anon_sym_restrict] = ACTIONS(8622), - [anon_sym_GT_GT] = ACTIONS(8620), - [anon_sym_DASH_GT] = ACTIONS(8620), + [3326] = { + [anon_sym_LPAREN2] = ACTIONS(8584), + [anon_sym_DASH] = ACTIONS(8586), + [anon_sym_PLUS_PLUS] = ACTIONS(8584), + [anon_sym_LBRACE] = ACTIONS(8584), + [anon_sym_mutable] = ACTIONS(8586), + [anon_sym_DASH_DASH] = ACTIONS(8584), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8584), + [anon_sym_EQ] = ACTIONS(8586), + [anon_sym_COLON_COLON] = ACTIONS(8584), + [anon_sym_final] = ACTIONS(8586), + [anon_sym_EQ_EQ] = ACTIONS(8584), + [anon_sym_PIPE] = ACTIONS(8586), + [anon_sym_LT] = ACTIONS(8586), + [anon_sym_AMP] = ACTIONS(8586), + [anon_sym_static] = ACTIONS(8586), + [anon_sym_volatile] = ACTIONS(8586), + [anon_sym_PLUS] = ACTIONS(8586), + [anon_sym_GT_EQ] = ACTIONS(8584), + [anon_sym_STAR] = ACTIONS(8584), + [anon_sym_SLASH] = ACTIONS(8586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8584), + [anon_sym_COLON] = ACTIONS(8586), + [anon_sym_explicit] = ACTIONS(8586), + [sym_identifier] = ACTIONS(8586), + [anon_sym_RBRACE] = ACTIONS(8584), + [anon_sym_override] = ACTIONS(8586), + [sym_operator_name] = ACTIONS(8584), + [sym_noexcept] = ACTIONS(8586), + [anon_sym_CARET] = ACTIONS(8584), + [anon_sym_GT] = ACTIONS(8586), + [anon_sym_COMMA] = ACTIONS(8584), + [anon_sym_register] = ACTIONS(8586), + [anon_sym__Atomic] = ACTIONS(8586), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_extern] = ACTIONS(8586), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_PIPE_PIPE] = ACTIONS(8584), + [anon_sym_DOT] = ACTIONS(8586), + [anon_sym_LT_LT] = ACTIONS(8584), + [anon_sym_constexpr] = ACTIONS(8586), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(8584), + [anon_sym_QMARK] = ACTIONS(8584), + [anon_sym_TILDE] = ACTIONS(8584), + [anon_sym_SEMI] = ACTIONS(8584), + [anon_sym_BANG_EQ] = ACTIONS(8584), + [anon_sym_LT_EQ] = ACTIONS(8584), + [anon_sym_AMP_AMP] = ACTIONS(8584), + [anon_sym_inline] = ACTIONS(8586), + [anon_sym_RPAREN] = ACTIONS(8584), + [anon_sym_restrict] = ACTIONS(8586), + [anon_sym_GT_GT] = ACTIONS(8584), + [anon_sym_DASH_GT] = ACTIONS(8584), }, - [3355] = { - [sym_enumerator] = STATE(2379), - [sym_identifier] = ACTIONS(866), + [3327] = { + [sym_enumerator] = STATE(2364), + [sym_identifier] = ACTIONS(870), [sym_comment] = ACTIONS(3), }, - [3356] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7469), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3328] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7450), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3357] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4005), - [sym_logical_expression] = STATE(4005), - [sym_bitwise_expression] = STATE(4005), - [sym_cast_expression] = STATE(4005), - [sym_new_expression] = STATE(4005), - [sym_field_expression] = STATE(4005), - [sym_compound_literal_expression] = STATE(4005), - [sym_char_literal] = STATE(4005), - [sym_template_function] = STATE(4005), - [sym_conditional_expression] = STATE(4005), - [sym_equality_expression] = STATE(4005), - [sym_relational_expression] = STATE(4005), - [sym_delete_expression] = STATE(4005), - [sym_sizeof_expression] = STATE(4005), - [sym_parenthesized_expression] = STATE(4005), - [sym_lambda_expression] = STATE(4005), - [sym_concatenated_string] = STATE(4005), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4005), - [sym_assignment_expression] = STATE(4005), - [sym_pointer_expression] = STATE(4005), - [sym_shift_expression] = STATE(4005), - [sym_math_expression] = STATE(4005), - [sym_call_expression] = STATE(4005), - [sym_lambda_capture_specifier] = STATE(196), + [3329] = { + [sym_template_function] = STATE(3975), + [sym__expression] = STATE(3975), + [sym_logical_expression] = STATE(3975), + [sym_bitwise_expression] = STATE(3975), + [sym_cast_expression] = STATE(3975), + [sym_delete_expression] = STATE(3975), + [sym_field_expression] = STATE(3975), + [sym_compound_literal_expression] = STATE(3975), + [sym_lambda_expression] = STATE(3975), + [sym_char_literal] = STATE(3975), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3975), + [sym_equality_expression] = STATE(3975), + [sym_relational_expression] = STATE(3975), + [sym_sizeof_expression] = STATE(3975), + [sym_subscript_expression] = STATE(3975), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8624), - [anon_sym_DASH] = ACTIONS(882), - [sym_true] = ACTIONS(8626), - [anon_sym_DASH_DASH] = ACTIONS(896), - [sym_null] = ACTIONS(8626), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8624), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8626), - [sym_nullptr] = ACTIONS(8626), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(892), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), + [sym_parenthesized_expression] = STATE(3975), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(3975), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3975), + [sym_pointer_expression] = STATE(3975), + [sym_shift_expression] = STATE(3975), + [sym_math_expression] = STATE(3975), + [sym_call_expression] = STATE(3975), + [sym_new_expression] = STATE(3975), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8588), + [anon_sym_DASH] = ACTIONS(886), + [sym_true] = ACTIONS(8590), + [anon_sym_DASH_DASH] = ACTIONS(900), + [sym_null] = ACTIONS(8590), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8588), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8590), + [sym_nullptr] = ACTIONS(8590), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(896), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), }, - [3358] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(506), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [3330] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(882), - [sym_raw_string_literal] = ACTIONS(5267), - [sym_true] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(332), - [sym_null] = ACTIONS(5269), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(8628), - [anon_sym_AMP] = ACTIONS(7188), - [anon_sym_sizeof] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(7188), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_number_literal] = ACTIONS(5267), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5269), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(507), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [anon_sym_LPAREN2] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(886), + [sym_raw_string_literal] = ACTIONS(5266), + [sym_true] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(334), + [sym_null] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(8592), + [anon_sym_AMP] = ACTIONS(7169), + [anon_sym_sizeof] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_number_literal] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [3359] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8630), + [3331] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8594), }, - [3360] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3332] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3361] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4007), - [sym_logical_expression] = STATE(4007), - [sym_bitwise_expression] = STATE(4007), - [sym_cast_expression] = STATE(4007), - [sym_new_expression] = STATE(4007), - [sym_field_expression] = STATE(4007), - [sym_compound_literal_expression] = STATE(4007), - [sym_char_literal] = STATE(4007), - [sym_template_function] = STATE(4007), - [sym_conditional_expression] = STATE(4007), - [sym_equality_expression] = STATE(4007), - [sym_relational_expression] = STATE(4007), - [sym_delete_expression] = STATE(4007), - [sym_sizeof_expression] = STATE(4007), - [sym_parenthesized_expression] = STATE(4007), - [sym_lambda_expression] = STATE(4007), - [sym_concatenated_string] = STATE(4007), - [sym_string_literal] = STATE(506), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4007), - [sym_assignment_expression] = STATE(4007), - [sym_pointer_expression] = STATE(4007), - [sym_shift_expression] = STATE(4007), - [sym_math_expression] = STATE(4007), - [sym_call_expression] = STATE(4007), - [sym_lambda_capture_specifier] = STATE(196), + [3333] = { + [sym_template_function] = STATE(3977), + [sym__expression] = STATE(3977), + [sym_logical_expression] = STATE(3977), + [sym_bitwise_expression] = STATE(3977), + [sym_cast_expression] = STATE(3977), + [sym_delete_expression] = STATE(3977), + [sym_field_expression] = STATE(3977), + [sym_compound_literal_expression] = STATE(3977), + [sym_lambda_expression] = STATE(3977), + [sym_char_literal] = STATE(3977), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3977), + [sym_equality_expression] = STATE(3977), + [sym_relational_expression] = STATE(3977), + [sym_sizeof_expression] = STATE(3977), + [sym_subscript_expression] = STATE(3977), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8632), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(884), - [sym_true] = ACTIONS(8634), - [sym_null] = ACTIONS(8634), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8632), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(888), - [sym_false] = ACTIONS(8634), + [sym_parenthesized_expression] = STATE(3977), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(507), + [sym_concatenated_string] = STATE(3977), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3977), + [sym_pointer_expression] = STATE(3977), + [sym_shift_expression] = STATE(3977), + [sym_math_expression] = STATE(3977), + [sym_call_expression] = STATE(3977), + [sym_new_expression] = STATE(3977), + [sym_raw_string_literal] = ACTIONS(8596), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(888), + [sym_true] = ACTIONS(8598), + [sym_null] = ACTIONS(8598), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8596), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(892), + [sym_false] = ACTIONS(8598), [anon_sym_AMP] = ACTIONS(222), - [sym_nullptr] = ACTIONS(8634), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_sizeof] = ACTIONS(890), + [sym_nullptr] = ACTIONS(8598), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(896), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(900), }, - [3362] = { - [sym_new_declarator] = STATE(3532), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7549), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), + [3334] = { + [sym_new_declarator] = STATE(3504), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_GT_GT] = ACTIONS(7530), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_PERCENT] = ACTIONS(7530), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_DASH_DASH] = ACTIONS(7530), }, - [3363] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8131), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3335] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8176), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3364] = { - [sym_do_statement] = STATE(3533), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3336] = { + [sym_do_statement] = STATE(3505), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(3533), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(3533), - [sym_if_statement] = STATE(3533), - [sym_switch_statement] = STATE(3533), - [sym_for_statement] = STATE(3533), - [sym_return_statement] = STATE(3533), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3505), + [sym_try_statement] = STATE(3505), + [sym_if_statement] = STATE(3505), + [sym_switch_statement] = STATE(3505), + [sym_for_statement] = STATE(3505), + [sym_return_statement] = STATE(3505), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(3533), - [sym_break_statement] = STATE(3533), - [sym_continue_statement] = STATE(3533), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3505), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3533), - [sym_labeled_statement] = STATE(3533), - [sym_expression_statement] = STATE(3533), - [sym_while_statement] = STATE(3533), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(3505), + [sym_for_range_loop] = STATE(3505), + [sym_compound_statement] = STATE(3505), + [sym_labeled_statement] = STATE(3505), + [sym_expression_statement] = STATE(3505), + [sym_while_statement] = STATE(3505), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -139997,7 +139433,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -140021,157 +139457,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3365] = { - [aux_sym_for_statement_repeat1] = STATE(4009), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(8636), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3337] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(3979), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(8600), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3366] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4010), - [sym_logical_expression] = STATE(4010), - [sym_bitwise_expression] = STATE(4010), - [sym_cast_expression] = STATE(4010), - [sym_new_expression] = STATE(4010), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4010), - [sym_char_literal] = STATE(4010), - [sym_template_function] = STATE(4010), - [sym_conditional_expression] = STATE(4010), - [sym_equality_expression] = STATE(4010), - [sym_relational_expression] = STATE(4010), - [sym_delete_expression] = STATE(4010), - [sym_sizeof_expression] = STATE(4010), - [sym_parenthesized_expression] = STATE(4010), - [sym_lambda_expression] = STATE(4010), - [sym_concatenated_string] = STATE(4010), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4010), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4010), - [sym_math_expression] = STATE(4010), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8638), + [3338] = { + [sym_template_function] = STATE(3980), + [sym__expression] = STATE(3980), + [sym_logical_expression] = STATE(3980), + [sym_bitwise_expression] = STATE(3980), + [sym_cast_expression] = STATE(3980), + [sym_delete_expression] = STATE(3980), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(3980), + [sym_lambda_expression] = STATE(3980), + [sym_char_literal] = STATE(3980), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3980), + [sym_equality_expression] = STATE(3980), + [sym_relational_expression] = STATE(3980), + [sym_sizeof_expression] = STATE(3980), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(3980), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(3980), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3980), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(3980), + [sym_math_expression] = STATE(3980), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(3980), + [sym_raw_string_literal] = ACTIONS(8602), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(8640), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(8640), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(8604), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(8604), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8638), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(8602), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(8640), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(8640), + [sym_false] = ACTIONS(8604), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(8604), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(8636), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(8600), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [3367] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(8642), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3339] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(8606), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3368] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(8644), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3340] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(8608), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3369] = { - [sym_template_argument_list] = STATE(377), + [3341] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -140179,7 +139615,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -140189,7 +139625,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(8646), + [anon_sym_COLON] = ACTIONS(8610), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -140215,145 +139651,145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [3370] = { - [sym_parenthesized_expression] = STATE(4014), - [anon_sym_LPAREN2] = ACTIONS(372), + [3342] = { + [sym_parenthesized_expression] = STATE(3984), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [3371] = { - [anon_sym_LPAREN2] = ACTIONS(8648), + [3343] = { + [anon_sym_LPAREN2] = ACTIONS(8612), [sym_comment] = ACTIONS(3), }, - [3372] = { - [sym_compound_statement] = STATE(4016), - [anon_sym_LBRACE] = ACTIONS(374), + [3344] = { + [sym_compound_statement] = STATE(3986), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [3373] = { - [anon_sym_LPAREN2] = ACTIONS(8650), - [anon_sym_constexpr] = ACTIONS(8652), + [3345] = { + [anon_sym_LPAREN2] = ACTIONS(8614), + [anon_sym_constexpr] = ACTIONS(8616), [sym_comment] = ACTIONS(3), }, - [3374] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(8654), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_namespace] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_using] = ACTIONS(7770), - [sym_preproc_directive] = ACTIONS(7770), - [aux_sym_preproc_if_token1] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7770), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_RBRACE] = ACTIONS(7772), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [sym_operator_name] = ACTIONS(7772), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [aux_sym_preproc_include_token1] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_template] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7770), - [anon_sym_AMP_AMP] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [3346] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(8618), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_namespace] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_using] = ACTIONS(7751), + [sym_preproc_directive] = ACTIONS(7751), + [aux_sym_preproc_if_token1] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [sym_operator_name] = ACTIONS(7753), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [aux_sym_preproc_include_token1] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [aux_sym_preproc_def_token1] = ACTIONS(7751), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [3375] = { - [sym_do_statement] = STATE(4020), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3347] = { + [sym_do_statement] = STATE(3990), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4020), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4020), - [sym_if_statement] = STATE(4020), - [sym_switch_statement] = STATE(4020), - [sym_for_statement] = STATE(4020), - [sym_return_statement] = STATE(4020), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3990), + [sym_try_statement] = STATE(3990), + [sym_if_statement] = STATE(3990), + [sym_switch_statement] = STATE(3990), + [sym_for_statement] = STATE(3990), + [sym_return_statement] = STATE(3990), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4020), - [sym_break_statement] = STATE(4020), - [sym_continue_statement] = STATE(4020), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3990), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4020), - [sym_labeled_statement] = STATE(4020), - [sym_expression_statement] = STATE(4020), - [sym_while_statement] = STATE(4020), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(3990), + [sym_for_range_loop] = STATE(3990), + [sym_compound_statement] = STATE(3990), + [sym_labeled_statement] = STATE(3990), + [sym_expression_statement] = STATE(3990), + [sym_while_statement] = STATE(3990), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -140367,18 +139803,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -140391,642 +139827,643 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3376] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3348] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3377] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8656), + [3349] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8620), }, - [3378] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_RPAREN] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3350] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3379] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4022), - [sym_logical_expression] = STATE(4022), - [sym_bitwise_expression] = STATE(4022), - [sym_cast_expression] = STATE(4022), - [sym_new_expression] = STATE(4022), - [sym_field_expression] = STATE(4022), - [sym_compound_literal_expression] = STATE(4022), - [sym_char_literal] = STATE(4022), - [sym_template_function] = STATE(4022), - [sym_conditional_expression] = STATE(4022), - [sym_equality_expression] = STATE(4022), - [sym_relational_expression] = STATE(4022), - [sym_delete_expression] = STATE(4022), - [sym_sizeof_expression] = STATE(4022), - [sym_parenthesized_expression] = STATE(4022), - [sym_lambda_expression] = STATE(4022), - [sym_concatenated_string] = STATE(4022), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4022), - [sym_assignment_expression] = STATE(4022), - [sym_pointer_expression] = STATE(4022), - [sym_shift_expression] = STATE(4022), - [sym_math_expression] = STATE(4022), - [sym_call_expression] = STATE(4022), - [sym_lambda_capture_specifier] = STATE(196), + [3351] = { + [sym_template_function] = STATE(3992), + [sym__expression] = STATE(3992), + [sym_logical_expression] = STATE(3992), + [sym_bitwise_expression] = STATE(3992), + [sym_cast_expression] = STATE(3992), + [sym_delete_expression] = STATE(3992), + [sym_field_expression] = STATE(3992), + [sym_compound_literal_expression] = STATE(3992), + [sym_lambda_expression] = STATE(3992), + [sym_char_literal] = STATE(3992), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3992), + [sym_equality_expression] = STATE(3992), + [sym_relational_expression] = STATE(3992), + [sym_sizeof_expression] = STATE(3992), + [sym_subscript_expression] = STATE(3992), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8658), - [anon_sym_DASH] = ACTIONS(978), - [sym_true] = ACTIONS(8660), - [anon_sym_DASH_DASH] = ACTIONS(980), - [sym_null] = ACTIONS(8660), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8658), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8660), - [sym_nullptr] = ACTIONS(8660), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), + [sym_parenthesized_expression] = STATE(3992), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(3992), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3992), + [sym_pointer_expression] = STATE(3992), + [sym_shift_expression] = STATE(3992), + [sym_math_expression] = STATE(3992), + [sym_call_expression] = STATE(3992), + [sym_new_expression] = STATE(3992), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(982), + [sym_true] = ACTIONS(8624), + [anon_sym_DASH_DASH] = ACTIONS(984), + [sym_null] = ACTIONS(8624), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8622), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8624), + [sym_nullptr] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), }, - [3380] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(554), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [3352] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_GT] = ACTIONS(4127), - [sym_raw_string_literal] = ACTIONS(5267), - [sym_true] = ACTIONS(5269), - [sym_null] = ACTIONS(5269), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(8662), - [anon_sym_AMP] = ACTIONS(7247), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(7247), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_number_literal] = ACTIONS(5267), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5269), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_RPAREN] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(980), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(555), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_DASH_GT] = ACTIONS(4125), + [sym_raw_string_literal] = ACTIONS(5266), + [sym_true] = ACTIONS(5268), + [sym_null] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(8626), + [anon_sym_AMP] = ACTIONS(7228), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(7228), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_number_literal] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(2088), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [3381] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4023), - [sym_logical_expression] = STATE(4023), - [sym_bitwise_expression] = STATE(4023), - [sym_cast_expression] = STATE(4023), - [sym_new_expression] = STATE(4023), - [sym_field_expression] = STATE(4023), - [sym_compound_literal_expression] = STATE(4023), - [sym_char_literal] = STATE(4023), - [sym_template_function] = STATE(4023), - [sym_conditional_expression] = STATE(4023), - [sym_equality_expression] = STATE(4023), - [sym_relational_expression] = STATE(4023), - [sym_delete_expression] = STATE(4023), - [sym_sizeof_expression] = STATE(4023), - [sym_parenthesized_expression] = STATE(4023), - [sym_lambda_expression] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(554), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4023), - [sym_assignment_expression] = STATE(4023), - [sym_pointer_expression] = STATE(4023), - [sym_shift_expression] = STATE(4023), - [sym_math_expression] = STATE(4023), - [sym_call_expression] = STATE(4023), - [sym_lambda_capture_specifier] = STATE(196), + [3353] = { + [sym_template_function] = STATE(3993), + [sym__expression] = STATE(3993), + [sym_logical_expression] = STATE(3993), + [sym_bitwise_expression] = STATE(3993), + [sym_cast_expression] = STATE(3993), + [sym_delete_expression] = STATE(3993), + [sym_field_expression] = STATE(3993), + [sym_compound_literal_expression] = STATE(3993), + [sym_lambda_expression] = STATE(3993), + [sym_char_literal] = STATE(3993), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(3993), + [sym_equality_expression] = STATE(3993), + [sym_relational_expression] = STATE(3993), + [sym_sizeof_expression] = STATE(3993), + [sym_subscript_expression] = STATE(3993), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(8664), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(2084), - [sym_true] = ACTIONS(8666), - [sym_null] = ACTIONS(8666), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8664), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(984), - [sym_false] = ACTIONS(8666), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(8666), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(980), + [sym_parenthesized_expression] = STATE(3993), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(555), + [sym_concatenated_string] = STATE(3993), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(3993), + [sym_pointer_expression] = STATE(3993), + [sym_shift_expression] = STATE(3993), + [sym_math_expression] = STATE(3993), + [sym_call_expression] = STATE(3993), + [sym_new_expression] = STATE(3993), + [sym_raw_string_literal] = ACTIONS(8628), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(2086), + [sym_true] = ACTIONS(8630), + [sym_null] = ACTIONS(8630), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8628), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(988), + [sym_false] = ACTIONS(8630), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(8630), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(984), }, - [3382] = { - [sym_new_declarator] = STATE(3532), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_RPAREN] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), + [3354] = { + [sym_new_declarator] = STATE(3504), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_GT_GT] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(7530), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_RPAREN] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_DASH_DASH] = ACTIONS(7530), }, - [3383] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3355] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3384] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3384), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_final] = ACTIONS(2082), - [sym_noexcept] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(8668), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(8668), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(8668), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(8668), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_DASH_GT] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), + [3356] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3356), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_final] = ACTIONS(1783), + [sym_noexcept] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(8632), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(8632), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(8632), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(8632), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_DASH_GT] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), }, - [3385] = { - [sym_parameter_list] = STATE(3387), - [sym_abstract_array_declarator] = STATE(4024), - [sym_abstract_pointer_declarator] = STATE(4024), - [sym_abstract_reference_declarator] = STATE(4024), - [sym_abstract_function_declarator] = STATE(4024), - [sym__abstract_declarator] = STATE(4024), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7257), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(7259), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_restrict] = ACTIONS(2830), + [3357] = { + [sym_abstract_reference_declarator] = STATE(3994), + [sym_abstract_array_declarator] = STATE(3994), + [sym_abstract_pointer_declarator] = STATE(3994), + [sym_parameter_list] = STATE(3359), + [sym_abstract_function_declarator] = STATE(3994), + [sym__abstract_declarator] = STATE(3994), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7238), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(7240), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(7242), + [anon_sym_restrict] = ACTIONS(2835), }, - [3386] = { - [sym_abstract_array_declarator] = STATE(4026), - [sym_parameter_list] = STATE(3387), - [sym_abstract_reference_declarator] = STATE(4026), - [sym_abstract_function_declarator] = STATE(4026), - [aux_sym_type_definition_repeat1] = STATE(4025), - [sym_abstract_pointer_declarator] = STATE(4026), - [sym_type_qualifier] = STATE(4025), - [sym__abstract_declarator] = STATE(4026), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [3358] = { + [sym_abstract_reference_declarator] = STATE(3996), + [aux_sym_type_definition_repeat1] = STATE(3995), + [sym_abstract_array_declarator] = STATE(3996), + [sym_parameter_list] = STATE(3359), + [sym_abstract_function_declarator] = STATE(3996), + [sym_abstract_pointer_declarator] = STATE(3996), + [sym_type_qualifier] = STATE(3995), + [sym__abstract_declarator] = STATE(3996), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7257), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(7259), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7238), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(7240), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(7242), + [anon_sym_restrict] = ACTIONS(1070), }, - [3387] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4027), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4027), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(8671), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [3359] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3997), + [sym_type_qualifier] = STATE(3997), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(8635), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_DASH_GT] = ACTIONS(2824), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(2826), + [anon_sym_restrict] = ACTIONS(1070), }, - [3388] = { - [sym_parameter_list] = STATE(4028), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_RPAREN] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), + [3360] = { + [sym_parameter_list] = STATE(3998), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_RPAREN] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), }, - [3389] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3389), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_unsigned] = ACTIONS(8673), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(8673), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(8673), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(8673), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), + [3361] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3361), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_unsigned] = ACTIONS(8637), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(8637), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(8637), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(8637), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), }, - [3390] = { - [sym_parameter_list] = STATE(1415), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(8186), - [anon_sym_LBRACK] = ACTIONS(2067), + [3362] = { + [sym_parameter_list] = STATE(1410), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(8038), + [anon_sym_LBRACK] = ACTIONS(1748), [sym_comment] = ACTIONS(3), }, - [3391] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(670), + [3363] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(674), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8676), - [anon_sym_LBRACE] = ACTIONS(8676), - [anon_sym_LT] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(8640), + [anon_sym_LBRACE] = ACTIONS(8640), + [anon_sym_LT] = ACTIONS(534), }, - [3392] = { - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(8678), - [anon_sym_LBRACE] = ACTIONS(8678), + [3364] = { + [sym_template_argument_list] = STATE(312), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(8642), + [anon_sym_LBRACE] = ACTIONS(8642), + [anon_sym_LT] = ACTIONS(534), }, - [3393] = { - [sym_template_argument_list] = STATE(354), + [3365] = { + [anon_sym_COLON_COLON] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(8642), + [anon_sym_LBRACE] = ACTIONS(8642), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8678), - [anon_sym_LBRACE] = ACTIONS(8678), - [anon_sym_LT] = ACTIONS(609), }, - [3394] = { - [anon_sym_LPAREN2] = ACTIONS(5247), - [anon_sym_struct] = ACTIONS(5245), - [sym_auto] = ACTIONS(5245), - [anon_sym_signed] = ACTIONS(5245), - [anon_sym_mutable] = ACTIONS(5245), - [anon_sym_long] = ACTIONS(5245), - [anon_sym_COLON_COLON] = ACTIONS(5247), - [anon_sym_using] = ACTIONS(5245), - [sym_preproc_directive] = ACTIONS(5245), - [aux_sym_preproc_if_token1] = ACTIONS(5245), - [anon_sym_AMP] = ACTIONS(5245), - [anon_sym_static] = ACTIONS(5245), - [anon_sym_volatile] = ACTIONS(5245), - [anon_sym_RBRACE] = ACTIONS(5247), - [anon_sym_typedef] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_union] = ACTIONS(5245), - [anon_sym_typename] = ACTIONS(5245), - [anon_sym_private] = ACTIONS(5245), - [anon_sym_explicit] = ACTIONS(5245), - [anon_sym_short] = ACTIONS(5245), - [sym_identifier] = ACTIONS(5245), - [sym_operator_name] = ACTIONS(5247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5245), - [anon_sym_register] = ACTIONS(5245), - [anon_sym__Atomic] = ACTIONS(5245), - [anon_sym_const] = ACTIONS(5245), - [anon_sym_extern] = ACTIONS(5245), - [anon_sym_virtual] = ACTIONS(5245), - [anon_sym_enum] = ACTIONS(5245), - [anon_sym_class] = ACTIONS(5245), - [anon_sym_constexpr] = ACTIONS(5245), - [sym_primitive_type] = ACTIONS(5245), - [anon_sym_unsigned] = ACTIONS(5245), - [anon_sym_public] = ACTIONS(5245), - [anon_sym_protected] = ACTIONS(5245), - [anon_sym_friend] = ACTIONS(5245), - [anon_sym_template] = ACTIONS(5245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5245), - [anon_sym_TILDE] = ACTIONS(5247), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5247), - [anon_sym_inline] = ACTIONS(5245), - [anon_sym_restrict] = ACTIONS(5245), + [3366] = { + [anon_sym_LPAREN2] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(5244), + [sym_auto] = ACTIONS(5244), + [anon_sym_signed] = ACTIONS(5244), + [anon_sym_mutable] = ACTIONS(5244), + [anon_sym_long] = ACTIONS(5244), + [anon_sym_COLON_COLON] = ACTIONS(5246), + [anon_sym_using] = ACTIONS(5244), + [sym_preproc_directive] = ACTIONS(5244), + [aux_sym_preproc_if_token1] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_static] = ACTIONS(5244), + [anon_sym_volatile] = ACTIONS(5244), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_typedef] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_union] = ACTIONS(5244), + [anon_sym_typename] = ACTIONS(5244), + [anon_sym_private] = ACTIONS(5244), + [anon_sym_explicit] = ACTIONS(5244), + [anon_sym_short] = ACTIONS(5244), + [sym_identifier] = ACTIONS(5244), + [sym_operator_name] = ACTIONS(5246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5244), + [anon_sym_register] = ACTIONS(5244), + [anon_sym__Atomic] = ACTIONS(5244), + [anon_sym_const] = ACTIONS(5244), + [anon_sym_extern] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5244), + [anon_sym_virtual] = ACTIONS(5244), + [anon_sym_enum] = ACTIONS(5244), + [anon_sym_class] = ACTIONS(5244), + [anon_sym_constexpr] = ACTIONS(5244), + [sym_primitive_type] = ACTIONS(5244), + [anon_sym_unsigned] = ACTIONS(5244), + [anon_sym_public] = ACTIONS(5244), + [anon_sym_protected] = ACTIONS(5244), + [anon_sym_friend] = ACTIONS(5244), + [anon_sym_template] = ACTIONS(5244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_inline] = ACTIONS(5244), + [anon_sym_restrict] = ACTIONS(5244), }, - [3395] = { + [3367] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8680), + [anon_sym_SEMI] = ACTIONS(8644), }, - [3396] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(4031), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(8682), + [3368] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(4001), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(8646), [sym_comment] = ACTIONS(3), }, - [3397] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [3369] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(8684), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(8686), + [anon_sym_EQ] = ACTIONS(8648), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(8650), }, - [3398] = { + [3370] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8686), + [anon_sym_SEMI] = ACTIONS(8650), }, - [3399] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(4036), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(8688), - [anon_sym_namespace] = ACTIONS(8690), + [3371] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(4006), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(8652), + [anon_sym_namespace] = ACTIONS(8654), [sym_comment] = ACTIONS(3), }, - [3400] = { + [3372] = { [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(8692), - [sym_preproc_arg] = ACTIONS(8694), + [anon_sym_LF] = ACTIONS(8656), + [sym_preproc_arg] = ACTIONS(8658), }, - [3401] = { - [sym_preproc_arg] = ACTIONS(8696), + [3373] = { + [sym_preproc_arg] = ACTIONS(8660), [sym_comment] = ACTIONS(3), }, - [3402] = { - [sym_union_specifier] = STATE(4041), - [sym_macro_type_specifier] = STATE(4041), - [sym_class_specifier] = STATE(4041), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(4041), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(4040), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(4041), - [sym_enum_specifier] = STATE(4041), - [sym_dependent_type] = STATE(4041), - [sym_struct_specifier] = STATE(4041), - [sym_scoped_type_identifier] = STATE(87), - [sym_type_qualifier] = STATE(4040), + [3374] = { + [sym_union_specifier] = STATE(4011), + [sym_macro_type_specifier] = STATE(4011), + [sym_class_specifier] = STATE(4011), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(4011), + [aux_sym_type_definition_repeat1] = STATE(4010), + [sym__type_specifier] = STATE(4011), + [sym_struct_specifier] = STATE(4011), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(4011), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_type_qualifier] = STATE(4010), + [sym_dependent_type] = STATE(4011), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(8698), + [sym_auto] = ACTIONS(8662), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -141036,7 +140473,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(8698), + [sym_primitive_type] = ACTIONS(8662), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -141047,97 +140484,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [3403] = { - [anon_sym_COLON] = ACTIONS(8700), + [3375] = { + [anon_sym_COLON] = ACTIONS(8664), [sym_comment] = ACTIONS(3), }, - [3404] = { - [sym_identifier] = ACTIONS(8702), + [3376] = { + [sym_identifier] = ACTIONS(8666), [sym_comment] = ACTIONS(3), }, - [3405] = { - [sym_function_declarator] = STATE(4045), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_type] = STATE(613), - [sym_destructor_name] = STATE(1438), - [sym__declarator] = STATE(1438), - [sym_array_declarator] = STATE(1438), - [aux_sym__declaration_specifiers_repeat1] = STATE(1439), - [sym_storage_class_specifier] = STATE(1439), - [sym_dependent_type] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_type_qualifier] = STATE(1439), - [sym_pointer_declarator] = STATE(1438), - [sym_scoped_namespace_identifier] = STATE(621), - [sym_template_function] = STATE(1438), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym__declaration_specifiers] = STATE(4044), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(1438), - [anon_sym_LPAREN2] = ACTIONS(456), + [3377] = { + [sym_template_function] = STATE(1433), + [sym_macro_type_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(1433), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(1433), + [sym_array_declarator] = STATE(1433), + [sym_template_type] = STATE(622), + [sym_storage_class_specifier] = STATE(1434), + [sym_dependent_type] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_destructor_name] = STATE(1433), + [sym_type_qualifier] = STATE(1434), + [sym_pointer_declarator] = STATE(1433), + [sym_structured_binding_declarator] = STATE(1433), + [aux_sym__declaration_specifiers_repeat1] = STATE(1434), + [sym_enum_specifier] = STATE(620), + [sym__declaration_specifiers] = STATE(4014), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(4015), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(2879), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(2881), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1096), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [3406] = { - [aux_sym_function_definition_repeat1] = STATE(4046), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(4047), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(4048), - [sym_declaration] = STATE(4048), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(4046), - [sym_type_qualifier] = STATE(281), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(4049), - [sym_scoped_type_identifier] = STATE(87), + [3378] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(4016), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_function_definition] = STATE(4017), + [sym_declaration] = STATE(4017), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(4018), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_type_qualifier] = STATE(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(4018), + [sym__declaration_specifiers] = STATE(4019), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -141146,428 +140585,435 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, - [3407] = { - [sym_template_parameter_list] = STATE(4050), - [anon_sym_LT] = ACTIONS(464), + [3379] = { + [sym_template_parameter_list] = STATE(4020), + [anon_sym_LT] = ACTIONS(466), [sym_comment] = ACTIONS(3), }, - [3408] = { - [sym_identifier] = ACTIONS(8704), + [3380] = { + [sym_identifier] = ACTIONS(8668), [sym_comment] = ACTIONS(3), }, - [3409] = { - [sym_function_declarator] = STATE(4052), - [sym_macro_type_specifier] = STATE(1450), - [sym_class_specifier] = STATE(1450), - [sym_template_type] = STATE(613), - [sym_sized_type_specifier] = STATE(1450), - [sym__type_specifier] = STATE(1450), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_array_declarator] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(313), - [sym_storage_class_specifier] = STATE(313), - [sym_dependent_type] = STATE(1450), - [sym_struct_specifier] = STATE(1450), - [sym_union_specifier] = STATE(1450), - [sym_type_qualifier] = STATE(313), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(621), - [sym_template_function] = STATE(56), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(1450), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_reference_declarator] = STATE(56), - [anon_sym_LPAREN2] = ACTIONS(456), + [3381] = { + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(1445), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(1434), + [sym_type_qualifier] = STATE(1434), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [aux_sym__declaration_specifiers_repeat1] = STATE(1434), + [sym_enum_specifier] = STATE(620), + [sym_attribute] = STATE(1445), + [sym__declaration_specifiers] = STATE(4023), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(2885), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(75), + [anon_sym_long] = ACTIONS(1096), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_virtual] = ACTIONS(8670), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(107), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(1096), [anon_sym_restrict] = ACTIONS(11), }, - [3410] = { - [sym_function_field_declarator] = STATE(4055), - [sym_reference_field_declarator] = STATE(4055), - [sym_template_method] = STATE(4055), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(4055), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(4055), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(4055), - [sym_bitfield_clause] = STATE(4056), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(4056), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(8706), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(8708), - [sym_operator_name] = ACTIONS(8710), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - }, - [3411] = { - [sym_compound_statement] = STATE(4060), - [sym_field_initializer_list] = STATE(4061), - [sym_default_method_clause] = STATE(4060), - [sym_delete_method_clause] = STATE(4060), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(8712), - [anon_sym_LBRACE] = ACTIONS(8714), - [anon_sym_SEMI] = ACTIONS(8716), - }, - [3412] = { - [aux_sym_function_definition_repeat1] = STATE(1468), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(1439), - [sym_storage_class_specifier] = STATE(1439), - [sym_type_qualifier] = STATE(1439), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_attribute] = STATE(1468), - [sym_struct_specifier] = STATE(619), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym__declaration_specifiers] = STATE(4063), - [sym_scoped_type_identifier] = STATE(87), + [3382] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(4024), + [sym_preproc_function_def] = STATE(4024), + [sym__declarator] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(3381), + [sym_array_declarator] = STATE(614), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4024), + [sym_storage_class_specifier] = STATE(3385), + [sym_type_qualifier] = STATE(3385), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(4024), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(4024), + [sym_preproc_if_in_field_declaration_list] = STATE(4024), + [sym_attribute] = STATE(3381), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(4024), + [sym_type_definition] = STATE(4024), + [sym_using_declaration] = STATE(4024), + [sym__declaration_specifiers] = STATE(3383), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(3384), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(4024), + [sym_inline_method_definition] = STATE(4024), + [sym_constructor_or_destructor_definition] = STATE(4024), + [sym_access_specifier] = STATE(4024), + [sym_reference_declarator] = STATE(614), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(4024), + [sym_alias_declaration] = STATE(4024), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(3385), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(4024), + [sym_constructor_or_destructor_declaration] = STATE(4024), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(7288), + [aux_sym_preproc_if_token2] = ACTIONS(8672), + [sym_preproc_directive] = ACTIONS(7292), + [aux_sym_preproc_if_token1] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_typedef] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(7298), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7300), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_virtual] = ACTIONS(8718), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(7302), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(7298), + [anon_sym_protected] = ACTIONS(7298), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), + [anon_sym_friend] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7306), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7300), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(7308), + [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1092), [anon_sym_restrict] = ACTIONS(11), }, - [3413] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(4064), - [sym_preproc_function_def] = STATE(4064), - [sym_alias_declaration] = STATE(4064), - [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), - [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(3409), - [sym_storage_class_specifier] = STATE(3409), - [sym_type_qualifier] = STATE(3409), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(4064), - [sym_preproc_if_in_field_declaration_list] = STATE(4064), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(4064), - [sym_type_definition] = STATE(4064), - [sym__declaration_specifiers] = STATE(3410), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(3411), - [aux_sym_function_definition_repeat1] = STATE(3412), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(4064), - [sym__field_declaration_list_item] = STATE(4064), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4064), - [sym_inline_method_definition] = STATE(4064), - [sym_friend_declaration] = STATE(4064), - [sym_access_specifier] = STATE(4064), - [sym_using_declaration] = STATE(4064), - [sym_attribute] = STATE(3412), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(4064), - [sym_constructor_or_destructor_definition] = STATE(4064), - [sym_constructor_or_destructor_declaration] = STATE(4064), - [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [3383] = { + [sym_function_field_declarator] = STATE(4028), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(4028), + [sym_pointer_field_declarator] = STATE(4028), + [sym__field_declarator] = STATE(4028), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(4027), + [sym_array_field_declarator] = STATE(4028), + [sym_initializer_list] = STATE(4027), + [sym_template_method] = STATE(4028), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(8676), + [sym_operator_name] = ACTIONS(8678), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + }, + [3384] = { + [sym_compound_statement] = STATE(4032), + [sym_field_initializer_list] = STATE(4033), + [sym_delete_method_clause] = STATE(4032), + [sym_default_method_clause] = STATE(4032), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(8680), + [anon_sym_LBRACE] = ACTIONS(8682), + [anon_sym_SEMI] = ACTIONS(8684), + }, + [3385] = { + [sym_template_function] = STATE(60), + [sym_macro_type_specifier] = STATE(1467), + [sym_class_specifier] = STATE(1467), + [sym_sized_type_specifier] = STATE(1467), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym__type_specifier] = STATE(1467), + [sym_scoped_identifier] = STATE(282), + [sym__declarator] = STATE(60), + [sym_scoped_type_identifier] = STATE(90), + [sym_reference_declarator] = STATE(60), + [sym_array_declarator] = STATE(60), + [sym_template_type] = STATE(622), + [sym_storage_class_specifier] = STATE(336), + [sym_dependent_type] = STATE(1467), + [sym_struct_specifier] = STATE(1467), + [sym_union_specifier] = STATE(1467), + [sym_destructor_name] = STATE(60), + [sym_type_qualifier] = STATE(336), + [sym_pointer_declarator] = STATE(60), + [sym_structured_binding_declarator] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(336), + [sym_enum_specifier] = STATE(1467), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(4034), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(2917), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(7307), - [aux_sym_preproc_if_token2] = ACTIONS(8720), - [sym_preproc_directive] = ACTIONS(7311), - [aux_sym_preproc_if_token1] = ACTIONS(7313), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(7315), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(7317), + [anon_sym_typename] = ACTIONS(1110), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7319), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(75), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(7321), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(7317), - [anon_sym_protected] = ACTIONS(7317), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(7323), - [anon_sym_template] = ACTIONS(7325), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7319), - [anon_sym_TILDE] = ACTIONS(308), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(1096), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7327), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [3414] = { - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1166), - [sym_auto] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_mutable] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1168), - [anon_sym_using] = ACTIONS(1166), - [aux_sym_preproc_else_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_typename] = ACTIONS(1166), - [anon_sym_private] = ACTIONS(1166), - [anon_sym_explicit] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1166), - [sym_operator_name] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym_virtual] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_class] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_public] = ACTIONS(1166), - [anon_sym_protected] = ACTIONS(1166), - [anon_sym_friend] = ACTIONS(1166), - [anon_sym_template] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1168), - [aux_sym_preproc_elif_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(1166), + [3386] = { + [anon_sym_LPAREN2] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1172), + [sym_auto] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1172), + [anon_sym_mutable] = ACTIONS(1172), + [anon_sym_long] = ACTIONS(1172), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1172), + [aux_sym_preproc_else_token1] = ACTIONS(1172), + [aux_sym_preproc_if_token2] = ACTIONS(1172), + [sym_preproc_directive] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_volatile] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_typename] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_explicit] = ACTIONS(1172), + [anon_sym_short] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1172), + [sym_operator_name] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), + [anon_sym_register] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_virtual] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1172), + [anon_sym_constexpr] = ACTIONS(1172), + [sym_primitive_type] = ACTIONS(1172), + [anon_sym_unsigned] = ACTIONS(1172), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_protected] = ACTIONS(1172), + [anon_sym_friend] = ACTIONS(1172), + [anon_sym_template] = ACTIONS(1172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1174), + [aux_sym_preproc_elif_token1] = ACTIONS(1172), + [aux_sym_preproc_def_token1] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(1172), }, - [3415] = { - [anon_sym_LF] = ACTIONS(8722), + [3387] = { + [anon_sym_LF] = ACTIONS(8686), [sym_comment] = ACTIONS(244), }, - [3416] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(4067), - [sym_preproc_function_def] = STATE(4067), - [sym_alias_declaration] = STATE(4067), + [3388] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(4037), + [sym_preproc_function_def] = STATE(4037), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(4067), - [sym_preproc_if_in_field_declaration_list] = STATE(4067), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(4067), - [sym_type_definition] = STATE(4067), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(4067), - [sym__field_declaration_list_item] = STATE(4067), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4067), - [sym_inline_method_definition] = STATE(4067), - [sym_friend_declaration] = STATE(4067), - [sym_access_specifier] = STATE(4067), - [sym_using_declaration] = STATE(4067), - [sym_preproc_else_in_field_declaration_list] = STATE(4068), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4068), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(4067), - [sym_constructor_or_destructor_definition] = STATE(4067), - [sym_constructor_or_destructor_declaration] = STATE(4067), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4037), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(4037), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(4037), + [sym_preproc_if_in_field_declaration_list] = STATE(4037), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(4037), + [sym_type_definition] = STATE(4037), + [sym_using_declaration] = STATE(4037), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(4037), + [sym_inline_method_definition] = STATE(4037), + [sym_constructor_or_destructor_definition] = STATE(4037), + [sym_access_specifier] = STATE(4037), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(4037), + [sym_alias_declaration] = STATE(4037), + [sym_preproc_else_in_field_declaration_list] = STATE(4038), + [sym_preproc_elif_in_field_declaration_list] = STATE(4038), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(4037), + [sym_constructor_or_destructor_declaration] = STATE(4037), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(8724), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(8688), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [3417] = { - [sym_union_specifier] = STATE(4069), - [sym_macro_type_specifier] = STATE(4069), - [sym_class_specifier] = STATE(4069), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(4069), - [sym_scoped_namespace_identifier] = STATE(88), + [3389] = { + [sym_union_specifier] = STATE(4039), + [sym_macro_type_specifier] = STATE(4039), + [sym_class_specifier] = STATE(4039), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(4039), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(4069), - [sym_enum_specifier] = STATE(4069), - [sym_dependent_type] = STATE(4069), - [sym_struct_specifier] = STATE(4069), - [sym_scoped_type_identifier] = STATE(87), + [sym__type_specifier] = STATE(4039), + [sym_struct_specifier] = STATE(4039), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(4039), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_type_qualifier] = STATE(388), + [sym_dependent_type] = STATE(4039), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(8726), + [sym_auto] = ACTIONS(8690), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -141577,7 +141023,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(8726), + [sym_primitive_type] = ACTIONS(8690), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -141588,217 +141034,295 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [3418] = { - [sym_pointer_type_declarator] = STATE(4070), - [sym_array_type_declarator] = STATE(4070), - [sym_function_type_declarator] = STATE(4070), - [sym__type_declarator] = STATE(4070), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [3390] = { + [sym_pointer_type_declarator] = STATE(4040), + [sym_array_type_declarator] = STATE(4040), + [sym_function_type_declarator] = STATE(4040), + [sym__type_declarator] = STATE(4040), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [3419] = { - [anon_sym_LPAREN2] = ACTIONS(5058), - [anon_sym_struct] = ACTIONS(5060), - [sym_auto] = ACTIONS(5060), - [anon_sym_signed] = ACTIONS(5060), - [anon_sym_mutable] = ACTIONS(5060), - [anon_sym_long] = ACTIONS(5060), - [anon_sym_COLON_COLON] = ACTIONS(5058), - [anon_sym_using] = ACTIONS(5060), - [aux_sym_preproc_else_token1] = ACTIONS(5060), - [aux_sym_preproc_if_token2] = ACTIONS(5060), - [sym_preproc_directive] = ACTIONS(5060), - [aux_sym_preproc_if_token1] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5060), - [anon_sym_static] = ACTIONS(5060), - [anon_sym_volatile] = ACTIONS(5060), - [anon_sym_typedef] = ACTIONS(5060), - [anon_sym_STAR] = ACTIONS(5058), - [anon_sym_union] = ACTIONS(5060), - [anon_sym_typename] = ACTIONS(5060), - [anon_sym_private] = ACTIONS(5060), - [anon_sym_explicit] = ACTIONS(5060), - [anon_sym_short] = ACTIONS(5060), - [sym_identifier] = ACTIONS(5060), - [sym_operator_name] = ACTIONS(5058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5060), - [anon_sym_register] = ACTIONS(5060), - [anon_sym__Atomic] = ACTIONS(5060), - [anon_sym_const] = ACTIONS(5060), - [anon_sym_extern] = ACTIONS(5060), - [anon_sym_virtual] = ACTIONS(5060), - [anon_sym_enum] = ACTIONS(5060), - [anon_sym_class] = ACTIONS(5060), - [anon_sym_constexpr] = ACTIONS(5060), - [sym_primitive_type] = ACTIONS(5060), - [anon_sym_unsigned] = ACTIONS(5060), - [anon_sym_public] = ACTIONS(5060), - [anon_sym_protected] = ACTIONS(5060), - [anon_sym_friend] = ACTIONS(5060), - [anon_sym_template] = ACTIONS(5060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5060), - [anon_sym_TILDE] = ACTIONS(5058), - [aux_sym_preproc_elif_token1] = ACTIONS(5060), - [aux_sym_preproc_def_token1] = ACTIONS(5060), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_inline] = ACTIONS(5060), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5060), + [3391] = { + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_struct] = ACTIONS(5056), + [sym_auto] = ACTIONS(5056), + [anon_sym_signed] = ACTIONS(5056), + [anon_sym_mutable] = ACTIONS(5056), + [anon_sym_long] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(5054), + [anon_sym_using] = ACTIONS(5056), + [aux_sym_preproc_else_token1] = ACTIONS(5056), + [aux_sym_preproc_if_token2] = ACTIONS(5056), + [sym_preproc_directive] = ACTIONS(5056), + [aux_sym_preproc_if_token1] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_static] = ACTIONS(5056), + [anon_sym_volatile] = ACTIONS(5056), + [anon_sym_typedef] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5054), + [anon_sym_union] = ACTIONS(5056), + [anon_sym_typename] = ACTIONS(5056), + [anon_sym_private] = ACTIONS(5056), + [anon_sym_explicit] = ACTIONS(5056), + [anon_sym_short] = ACTIONS(5056), + [sym_identifier] = ACTIONS(5056), + [sym_operator_name] = ACTIONS(5054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5056), + [anon_sym_register] = ACTIONS(5056), + [anon_sym__Atomic] = ACTIONS(5056), + [anon_sym_const] = ACTIONS(5056), + [anon_sym_extern] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_virtual] = ACTIONS(5056), + [anon_sym_enum] = ACTIONS(5056), + [anon_sym_class] = ACTIONS(5056), + [anon_sym_constexpr] = ACTIONS(5056), + [sym_primitive_type] = ACTIONS(5056), + [anon_sym_unsigned] = ACTIONS(5056), + [anon_sym_public] = ACTIONS(5056), + [anon_sym_protected] = ACTIONS(5056), + [anon_sym_friend] = ACTIONS(5056), + [anon_sym_template] = ACTIONS(5056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5054), + [aux_sym_preproc_elif_token1] = ACTIONS(5056), + [aux_sym_preproc_def_token1] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5054), + [anon_sym_inline] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5056), }, - [3420] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(4072), - [sym_preproc_function_def] = STATE(4072), - [sym_alias_declaration] = STATE(4072), + [3392] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(4042), + [sym_preproc_function_def] = STATE(4042), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(4072), - [sym_preproc_if_in_field_declaration_list] = STATE(4072), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(4072), - [sym_type_definition] = STATE(4072), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(4072), - [sym__field_declaration_list_item] = STATE(4072), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4072), - [sym_inline_method_definition] = STATE(4072), - [sym_friend_declaration] = STATE(4072), - [sym_access_specifier] = STATE(4072), - [sym_using_declaration] = STATE(4072), - [sym_preproc_else_in_field_declaration_list] = STATE(4073), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4073), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(4072), - [sym_constructor_or_destructor_definition] = STATE(4072), - [sym_constructor_or_destructor_declaration] = STATE(4072), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4042), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(4042), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(4042), + [sym_preproc_if_in_field_declaration_list] = STATE(4042), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(4042), + [sym_type_definition] = STATE(4042), + [sym_using_declaration] = STATE(4042), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(4042), + [sym_inline_method_definition] = STATE(4042), + [sym_constructor_or_destructor_definition] = STATE(4042), + [sym_access_specifier] = STATE(4042), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(4042), + [sym_alias_declaration] = STATE(4042), + [sym_preproc_else_in_field_declaration_list] = STATE(4043), + [sym_preproc_elif_in_field_declaration_list] = STATE(4043), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(4042), + [sym_constructor_or_destructor_declaration] = STATE(4042), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(8728), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(8692), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [3421] = { - [sym_function_field_declarator] = STATE(4076), - [sym_reference_field_declarator] = STATE(4076), - [sym_template_method] = STATE(4076), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(4076), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(4076), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(4076), - [sym_bitfield_clause] = STATE(4077), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(4077), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(8730), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(8732), - [sym_operator_name] = ACTIONS(8734), + [3393] = { + [sym_function_field_declarator] = STATE(4047), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(4047), + [sym_pointer_field_declarator] = STATE(4047), + [sym__field_declarator] = STATE(4047), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(4046), + [sym_array_field_declarator] = STATE(4047), + [sym_initializer_list] = STATE(4046), + [sym_template_method] = STATE(4047), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(8696), + [sym_operator_name] = ACTIONS(8698), [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), }, - [3422] = { - [anon_sym_LPAREN2] = ACTIONS(535), + [3394] = { + [anon_sym_LPAREN2] = ACTIONS(548), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(8736), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(8700), }, - [3423] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(278), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(4079), - [sym_scoped_type_identifier] = STATE(87), + [3395] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(8702), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + }, + [3396] = { + [anon_sym_LPAREN2] = ACTIONS(5072), + [anon_sym_struct] = ACTIONS(5074), + [sym_auto] = ACTIONS(5074), + [anon_sym_signed] = ACTIONS(5074), + [anon_sym_mutable] = ACTIONS(5074), + [anon_sym_long] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(5072), + [anon_sym_using] = ACTIONS(5074), + [aux_sym_preproc_else_token1] = ACTIONS(5074), + [aux_sym_preproc_if_token2] = ACTIONS(5074), + [sym_preproc_directive] = ACTIONS(5074), + [aux_sym_preproc_if_token1] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_static] = ACTIONS(5074), + [anon_sym_volatile] = ACTIONS(5074), + [anon_sym_typedef] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_union] = ACTIONS(5074), + [anon_sym_typename] = ACTIONS(5074), + [anon_sym_private] = ACTIONS(5074), + [anon_sym_explicit] = ACTIONS(5074), + [anon_sym_short] = ACTIONS(5074), + [sym_identifier] = ACTIONS(5074), + [sym_operator_name] = ACTIONS(5072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5074), + [anon_sym_register] = ACTIONS(5074), + [anon_sym__Atomic] = ACTIONS(5074), + [anon_sym_const] = ACTIONS(5074), + [anon_sym_extern] = ACTIONS(5074), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_virtual] = ACTIONS(5074), + [anon_sym_enum] = ACTIONS(5074), + [anon_sym_class] = ACTIONS(5074), + [anon_sym_constexpr] = ACTIONS(5074), + [sym_primitive_type] = ACTIONS(5074), + [anon_sym_unsigned] = ACTIONS(5074), + [anon_sym_public] = ACTIONS(5074), + [anon_sym_protected] = ACTIONS(5074), + [anon_sym_friend] = ACTIONS(5074), + [anon_sym_template] = ACTIONS(5074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5074), + [anon_sym_TILDE] = ACTIONS(5072), + [aux_sym_preproc_elif_token1] = ACTIONS(5074), + [aux_sym_preproc_def_token1] = ACTIONS(5074), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_inline] = ACTIONS(5074), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5074), + }, + [3397] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_struct_specifier] = STATE(280), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(4050), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -141807,143 +141331,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, - [3424] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(545), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(8738), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - }, - [3425] = { - [anon_sym_LPAREN2] = ACTIONS(5076), - [anon_sym_struct] = ACTIONS(5078), - [sym_auto] = ACTIONS(5078), - [anon_sym_signed] = ACTIONS(5078), - [anon_sym_mutable] = ACTIONS(5078), - [anon_sym_long] = ACTIONS(5078), - [anon_sym_COLON_COLON] = ACTIONS(5076), - [anon_sym_using] = ACTIONS(5078), - [aux_sym_preproc_else_token1] = ACTIONS(5078), - [aux_sym_preproc_if_token2] = ACTIONS(5078), - [sym_preproc_directive] = ACTIONS(5078), - [aux_sym_preproc_if_token1] = ACTIONS(5078), - [anon_sym_AMP] = ACTIONS(5078), - [anon_sym_static] = ACTIONS(5078), - [anon_sym_volatile] = ACTIONS(5078), - [anon_sym_typedef] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5076), - [anon_sym_union] = ACTIONS(5078), - [anon_sym_typename] = ACTIONS(5078), - [anon_sym_private] = ACTIONS(5078), - [anon_sym_explicit] = ACTIONS(5078), - [anon_sym_short] = ACTIONS(5078), - [sym_identifier] = ACTIONS(5078), - [sym_operator_name] = ACTIONS(5076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5078), - [anon_sym_register] = ACTIONS(5078), - [anon_sym__Atomic] = ACTIONS(5078), - [anon_sym_const] = ACTIONS(5078), - [anon_sym_extern] = ACTIONS(5078), - [anon_sym_virtual] = ACTIONS(5078), - [anon_sym_enum] = ACTIONS(5078), - [anon_sym_class] = ACTIONS(5078), - [anon_sym_constexpr] = ACTIONS(5078), - [sym_primitive_type] = ACTIONS(5078), - [anon_sym_unsigned] = ACTIONS(5078), - [anon_sym_public] = ACTIONS(5078), - [anon_sym_protected] = ACTIONS(5078), - [anon_sym_friend] = ACTIONS(5078), - [anon_sym_template] = ACTIONS(5078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5078), - [anon_sym_TILDE] = ACTIONS(5076), - [aux_sym_preproc_elif_token1] = ACTIONS(5078), - [aux_sym_preproc_def_token1] = ACTIONS(5078), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_inline] = ACTIONS(5078), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5078), - }, - [3426] = { - [sym_reference_declarator] = STATE(4081), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(4081), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(4081), - [sym_destructor_name] = STATE(4081), - [sym__declarator] = STATE(4081), - [sym_init_declarator] = STATE(4082), - [sym_array_declarator] = STATE(4081), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(4081), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(8740), + [3398] = { + [sym_template_function] = STATE(4051), + [sym_destructor_name] = STATE(4051), + [sym_pointer_declarator] = STATE(4051), + [sym_structured_binding_declarator] = STATE(4051), + [sym__declarator] = STATE(4051), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(4051), + [sym_array_declarator] = STATE(4051), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(4052), + [sym_function_declarator] = STATE(4051), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(8704), [sym_comment] = ACTIONS(3), }, - [3427] = { - [aux_sym_function_definition_repeat1] = STATE(3423), - [sym_macro_type_specifier] = STATE(876), - [sym_class_specifier] = STATE(876), - [sym__type_specifier] = STATE(876), - [sym_sized_type_specifier] = STATE(876), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(4083), - [sym_declaration] = STATE(4083), - [aux_sym__declaration_specifiers_repeat1] = STATE(878), - [sym_storage_class_specifier] = STATE(878), - [sym_dependent_type] = STATE(876), - [sym_struct_specifier] = STATE(876), - [sym_union_specifier] = STATE(876), - [sym_attribute] = STATE(3423), - [sym_type_qualifier] = STATE(878), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__empty_declaration] = STATE(4083), - [aux_sym_sized_type_specifier_repeat1] = STATE(879), - [sym_enum_specifier] = STATE(876), - [sym__declaration_specifiers] = STATE(4084), - [sym_scoped_type_identifier] = STATE(87), + [3399] = { + [sym_macro_type_specifier] = STATE(55), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_sized_type_specifier] = STATE(55), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_function_definition] = STATE(4053), + [sym_declaration] = STATE(4053), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(3397), + [sym_template_type] = STATE(91), + [sym__empty_declaration] = STATE(4053), + [sym_storage_class_specifier] = STATE(881), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_union_specifier] = STATE(55), + [sym_type_qualifier] = STATE(881), + [aux_sym__declaration_specifiers_repeat1] = STATE(881), + [sym_enum_specifier] = STATE(55), + [sym_attribute] = STATE(3397), + [sym__declaration_specifiers] = STATE(4054), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1571), + [sym_auto] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(35), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(35), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -141952,351 +141405,559 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(35), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1573), + [anon_sym_typename] = ACTIONS(69), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(35), [anon_sym_restrict] = ACTIONS(11), }, - [3428] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(4085), - [sym_preproc_function_def] = STATE(4085), - [sym_alias_declaration] = STATE(4085), + [3400] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(4055), + [sym_preproc_function_def] = STATE(4055), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(4085), - [sym_preproc_if_in_field_declaration_list] = STATE(4085), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(4085), - [sym_type_definition] = STATE(4085), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(4085), - [sym__field_declaration_list_item] = STATE(4085), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4085), - [sym_inline_method_definition] = STATE(4085), - [sym_friend_declaration] = STATE(4085), - [sym_access_specifier] = STATE(4085), - [sym_using_declaration] = STATE(4085), - [sym_preproc_else_in_field_declaration_list] = STATE(4086), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4086), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(4085), - [sym_constructor_or_destructor_definition] = STATE(4085), - [sym_constructor_or_destructor_declaration] = STATE(4085), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4055), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(4055), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(4055), + [sym_preproc_if_in_field_declaration_list] = STATE(4055), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(4055), + [sym_type_definition] = STATE(4055), + [sym_using_declaration] = STATE(4055), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(4055), + [sym_inline_method_definition] = STATE(4055), + [sym_constructor_or_destructor_definition] = STATE(4055), + [sym_access_specifier] = STATE(4055), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(4055), + [sym_alias_declaration] = STATE(4055), + [sym_preproc_else_in_field_declaration_list] = STATE(4056), + [sym_preproc_elif_in_field_declaration_list] = STATE(4056), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(4055), + [sym_constructor_or_destructor_declaration] = STATE(4055), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(8742), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(8706), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [3429] = { - [sym_preproc_params] = STATE(4089), - [sym_preproc_arg] = ACTIONS(8744), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(8746), + [3401] = { + [sym_preproc_params] = STATE(4059), + [sym_preproc_arg] = ACTIONS(8708), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_LF] = ACTIONS(8710), [sym_comment] = ACTIONS(244), }, - [3430] = { - [sym_compound_statement] = STATE(4090), - [sym_field_initializer_list] = STATE(4091), - [sym_default_method_clause] = STATE(4090), - [sym_delete_method_clause] = STATE(4090), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(7355), - [anon_sym_LBRACE] = ACTIONS(7357), + [3402] = { + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(1434), + [sym_type_qualifier] = STATE(1434), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [aux_sym__declaration_specifiers_repeat1] = STATE(1434), + [sym_enum_specifier] = STATE(620), + [sym__declaration_specifiers] = STATE(4060), + [sym_scoped_namespace_identifier] = STATE(92), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(11), + }, + [3403] = { + [sym_function_field_declarator] = STATE(4061), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(4061), + [sym_pointer_field_declarator] = STATE(4061), + [sym__field_declarator] = STATE(4061), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(4046), + [sym_array_field_declarator] = STATE(4061), + [sym_initializer_list] = STATE(4046), + [sym_template_method] = STATE(4061), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(8696), + [sym_operator_name] = ACTIONS(8712), + [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), }, - [3431] = { - [anon_sym_LPAREN2] = ACTIONS(5104), - [anon_sym_struct] = ACTIONS(5106), - [sym_auto] = ACTIONS(5106), - [anon_sym_signed] = ACTIONS(5106), - [anon_sym_mutable] = ACTIONS(5106), - [anon_sym_long] = ACTIONS(5106), - [anon_sym_COLON_COLON] = ACTIONS(5104), - [anon_sym_using] = ACTIONS(5106), - [aux_sym_preproc_else_token1] = ACTIONS(5106), - [aux_sym_preproc_if_token2] = ACTIONS(5106), - [sym_preproc_directive] = ACTIONS(5106), - [aux_sym_preproc_if_token1] = ACTIONS(5106), - [anon_sym_AMP] = ACTIONS(5106), - [anon_sym_static] = ACTIONS(5106), - [anon_sym_volatile] = ACTIONS(5106), - [anon_sym_typedef] = ACTIONS(5106), - [anon_sym_STAR] = ACTIONS(5104), - [anon_sym_union] = ACTIONS(5106), - [anon_sym_typename] = ACTIONS(5106), - [anon_sym_private] = ACTIONS(5106), - [anon_sym_explicit] = ACTIONS(5106), - [anon_sym_short] = ACTIONS(5106), - [sym_identifier] = ACTIONS(5106), - [sym_operator_name] = ACTIONS(5104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5106), - [anon_sym_register] = ACTIONS(5106), - [anon_sym__Atomic] = ACTIONS(5106), - [anon_sym_const] = ACTIONS(5106), - [anon_sym_extern] = ACTIONS(5106), - [anon_sym_virtual] = ACTIONS(5106), - [anon_sym_enum] = ACTIONS(5106), - [anon_sym_class] = ACTIONS(5106), - [anon_sym_constexpr] = ACTIONS(5106), - [sym_primitive_type] = ACTIONS(5106), - [anon_sym_unsigned] = ACTIONS(5106), - [anon_sym_public] = ACTIONS(5106), - [anon_sym_protected] = ACTIONS(5106), - [anon_sym_friend] = ACTIONS(5106), - [anon_sym_template] = ACTIONS(5106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5106), - [anon_sym_TILDE] = ACTIONS(5104), - [aux_sym_preproc_elif_token1] = ACTIONS(5106), - [aux_sym_preproc_def_token1] = ACTIONS(5106), - [anon_sym_AMP_AMP] = ACTIONS(5104), - [anon_sym_inline] = ACTIONS(5106), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5106), + [3404] = { + [anon_sym_LPAREN2] = ACTIONS(8714), + [anon_sym_struct] = ACTIONS(8716), + [sym_auto] = ACTIONS(8716), + [anon_sym_signed] = ACTIONS(8716), + [anon_sym_mutable] = ACTIONS(8716), + [anon_sym_long] = ACTIONS(8716), + [anon_sym_COLON_COLON] = ACTIONS(8714), + [anon_sym_using] = ACTIONS(8716), + [sym_preproc_directive] = ACTIONS(8716), + [aux_sym_preproc_if_token1] = ACTIONS(8716), + [anon_sym_AMP] = ACTIONS(8716), + [anon_sym_static] = ACTIONS(8716), + [anon_sym_volatile] = ACTIONS(8716), + [anon_sym_RBRACE] = ACTIONS(8714), + [anon_sym_typedef] = ACTIONS(8716), + [anon_sym_STAR] = ACTIONS(8714), + [anon_sym_union] = ACTIONS(8716), + [anon_sym_typename] = ACTIONS(8716), + [anon_sym_private] = ACTIONS(8716), + [anon_sym_explicit] = ACTIONS(8716), + [anon_sym_short] = ACTIONS(8716), + [sym_identifier] = ACTIONS(8716), + [sym_operator_name] = ACTIONS(8714), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8716), + [anon_sym_register] = ACTIONS(8716), + [anon_sym__Atomic] = ACTIONS(8716), + [anon_sym_const] = ACTIONS(8716), + [anon_sym_extern] = ACTIONS(8716), + [anon_sym_LBRACK] = ACTIONS(8716), + [anon_sym_virtual] = ACTIONS(8716), + [anon_sym_enum] = ACTIONS(8716), + [anon_sym_class] = ACTIONS(8716), + [anon_sym_constexpr] = ACTIONS(8716), + [sym_primitive_type] = ACTIONS(8716), + [anon_sym_unsigned] = ACTIONS(8716), + [anon_sym_public] = ACTIONS(8716), + [anon_sym_protected] = ACTIONS(8716), + [anon_sym_friend] = ACTIONS(8716), + [anon_sym_template] = ACTIONS(8716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8714), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8716), + [anon_sym_TILDE] = ACTIONS(8714), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(8716), + [anon_sym_AMP_AMP] = ACTIONS(8714), + [anon_sym_inline] = ACTIONS(8716), + [anon_sym_restrict] = ACTIONS(8716), }, - [3432] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4092), - [sym_logical_expression] = STATE(4092), - [sym_bitwise_expression] = STATE(4092), - [sym_cast_expression] = STATE(4092), - [sym_new_expression] = STATE(4092), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4092), - [sym_char_literal] = STATE(4092), - [sym_template_function] = STATE(4092), - [sym_conditional_expression] = STATE(4092), - [sym_equality_expression] = STATE(4092), - [sym_relational_expression] = STATE(4092), - [sym_delete_expression] = STATE(4092), - [sym_sizeof_expression] = STATE(4092), - [sym_parenthesized_expression] = STATE(4092), - [sym_initializer_list] = STATE(4077), - [sym_concatenated_string] = STATE(4092), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4092), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4092), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4092), - [sym_math_expression] = STATE(4092), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8748), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(8750), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(8750), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8748), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(8750), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(8750), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [3405] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3405), + [sym_preproc_function_def] = STATE(3405), + [sym__declarator] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), + [sym_array_declarator] = STATE(614), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3405), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3405), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3405), + [sym_preproc_if_in_field_declaration_list] = STATE(3405), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3405), + [sym_type_definition] = STATE(3405), + [sym_using_declaration] = STATE(3405), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3405), + [sym_inline_method_definition] = STATE(3405), + [sym_constructor_or_destructor_definition] = STATE(3405), + [sym_access_specifier] = STATE(3405), + [sym_reference_declarator] = STATE(614), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3405), + [sym_alias_declaration] = STATE(3405), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3405), + [sym_constructor_or_destructor_declaration] = STATE(3405), + [anon_sym_LPAREN2] = ACTIONS(5092), + [anon_sym_struct] = ACTIONS(5095), + [sym_auto] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(5101), + [anon_sym_mutable] = ACTIONS(5104), + [anon_sym_long] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5107), + [anon_sym_using] = ACTIONS(8718), + [aux_sym_preproc_else_token1] = ACTIONS(8721), + [aux_sym_preproc_if_token2] = ACTIONS(8721), + [sym_preproc_directive] = ACTIONS(8723), + [aux_sym_preproc_if_token1] = ACTIONS(8726), + [anon_sym_AMP] = ACTIONS(5119), + [anon_sym_static] = ACTIONS(5122), + [anon_sym_volatile] = ACTIONS(5104), + [anon_sym_typedef] = ACTIONS(8729), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_union] = ACTIONS(5133), + [anon_sym_typename] = ACTIONS(5136), + [anon_sym_private] = ACTIONS(8732), + [anon_sym_explicit] = ACTIONS(5104), + [anon_sym_short] = ACTIONS(5101), + [sym_identifier] = ACTIONS(5142), + [sym_operator_name] = ACTIONS(5145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8735), + [anon_sym_register] = ACTIONS(5122), + [anon_sym__Atomic] = ACTIONS(5104), + [anon_sym_const] = ACTIONS(5104), + [anon_sym_extern] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_virtual] = ACTIONS(8738), + [anon_sym_enum] = ACTIONS(5157), + [anon_sym_class] = ACTIONS(5160), + [anon_sym_constexpr] = ACTIONS(5104), + [sym_primitive_type] = ACTIONS(5098), + [anon_sym_unsigned] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(8732), + [anon_sym_protected] = ACTIONS(8732), + [anon_sym_friend] = ACTIONS(8741), + [anon_sym_template] = ACTIONS(8744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8735), + [anon_sym_TILDE] = ACTIONS(5172), + [aux_sym_preproc_elif_token1] = ACTIONS(8721), + [aux_sym_preproc_def_token1] = ACTIONS(8747), + [anon_sym_AMP_AMP] = ACTIONS(5178), + [anon_sym_inline] = ACTIONS(5122), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5104), + }, + [3406] = { + [aux_sym_preproc_if_token2] = ACTIONS(8750), + [sym_comment] = ACTIONS(3), + }, + [3407] = { + [anon_sym_LPAREN2] = ACTIONS(5193), + [anon_sym_struct] = ACTIONS(5195), + [sym_auto] = ACTIONS(5195), + [anon_sym_signed] = ACTIONS(5195), + [anon_sym_mutable] = ACTIONS(5195), + [anon_sym_long] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_using] = ACTIONS(5195), + [aux_sym_preproc_else_token1] = ACTIONS(5195), + [aux_sym_preproc_if_token2] = ACTIONS(5195), + [sym_preproc_directive] = ACTIONS(5195), + [aux_sym_preproc_if_token1] = ACTIONS(5195), + [anon_sym_AMP] = ACTIONS(5195), + [anon_sym_static] = ACTIONS(5195), + [anon_sym_volatile] = ACTIONS(5195), + [anon_sym_typedef] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_union] = ACTIONS(5195), + [anon_sym_typename] = ACTIONS(5195), + [anon_sym_private] = ACTIONS(5195), + [anon_sym_explicit] = ACTIONS(5195), + [anon_sym_short] = ACTIONS(5195), + [sym_identifier] = ACTIONS(5195), + [sym_operator_name] = ACTIONS(5193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5195), + [anon_sym_register] = ACTIONS(5195), + [anon_sym__Atomic] = ACTIONS(5195), + [anon_sym_const] = ACTIONS(5195), + [anon_sym_extern] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_virtual] = ACTIONS(5195), + [anon_sym_enum] = ACTIONS(5195), + [anon_sym_class] = ACTIONS(5195), + [anon_sym_constexpr] = ACTIONS(5195), + [sym_primitive_type] = ACTIONS(5195), + [anon_sym_unsigned] = ACTIONS(5195), + [anon_sym_public] = ACTIONS(5195), + [anon_sym_protected] = ACTIONS(5195), + [anon_sym_friend] = ACTIONS(5195), + [anon_sym_template] = ACTIONS(5195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5195), + [anon_sym_TILDE] = ACTIONS(5193), + [aux_sym_preproc_elif_token1] = ACTIONS(5195), + [aux_sym_preproc_def_token1] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_inline] = ACTIONS(5195), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5195), + }, + [3408] = { + [sym_template_function] = STATE(4063), + [sym__expression] = STATE(4063), + [sym_logical_expression] = STATE(4063), + [sym_bitwise_expression] = STATE(4063), + [sym_cast_expression] = STATE(4063), + [sym_delete_expression] = STATE(4063), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4063), + [sym_lambda_expression] = STATE(4063), + [sym_char_literal] = STATE(4063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4063), + [sym_equality_expression] = STATE(4063), + [sym_relational_expression] = STATE(4063), + [sym_sizeof_expression] = STATE(4063), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4046), + [sym_parenthesized_expression] = STATE(4063), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4063), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4063), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4063), + [sym_math_expression] = STATE(4063), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4063), + [sym_raw_string_literal] = ACTIONS(8752), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(8754), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(8754), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8752), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(8754), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(8754), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [3433] = { - [sym_compound_statement] = STATE(4095), - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(4077), - [aux_sym_field_declaration_repeat1] = STATE(4096), - [sym_initializer_list] = STATE(4077), - [sym_delete_method_clause] = STATE(4095), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(8730), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(8752), - [anon_sym_LBRACE] = ACTIONS(8754), + [3409] = { [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(8694), }, - [3434] = { + [3410] = { + [sym_compound_statement] = STATE(4066), + [sym_parameter_list] = STATE(2505), + [sym_delete_method_clause] = STATE(4066), + [sym_bitfield_clause] = STATE(4046), + [sym_initializer_list] = STATE(4046), + [aux_sym_field_declaration_repeat1] = STATE(4067), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(8756), + [anon_sym_LBRACE] = ACTIONS(8758), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8730), }, - [3435] = { - [anon_sym_default] = ACTIONS(8756), - [anon_sym_delete] = ACTIONS(8758), + [3411] = { + [anon_sym_default] = ACTIONS(8760), + [anon_sym_delete] = ACTIONS(8762), [sym_comment] = ACTIONS(3), }, - [3436] = { - [sym_goto_statement] = STATE(4100), - [sym_preproc_function_def] = STATE(4100), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(4100), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(4100), + [3412] = { + [sym_goto_statement] = STATE(4071), + [sym_preproc_function_def] = STATE(4071), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(4071), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(4100), - [sym_return_statement] = STATE(4100), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(4071), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(4071), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(4071), + [sym_namespace_definition] = STATE(4071), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(4100), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(4100), - [sym_break_statement] = STATE(4100), - [sym_preproc_include] = STATE(4100), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(4100), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(4100), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(4071), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(4071), + [sym_constructor_or_destructor_definition] = STATE(4071), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(4071), + [sym_preproc_include] = STATE(4071), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(4071), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(4071), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(4100), - [sym_template_instantiation] = STATE(4100), - [sym_constructor_or_destructor_definition] = STATE(4100), - [sym_expression_statement] = STATE(4100), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(4100), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(4100), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(4100), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(4100), - [aux_sym_translation_unit_repeat1] = STATE(4100), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(4100), - [sym_if_statement] = STATE(4100), - [sym_for_statement] = STATE(4100), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(4100), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(4100), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(4100), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(4100), - [sym_preproc_if] = STATE(4100), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(4071), + [sym_expression_statement] = STATE(4071), + [sym_do_statement] = STATE(4071), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(4071), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(4071), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(4071), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(4071), + [sym_for_statement] = STATE(4071), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(4071), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(4071), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(4071), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(4071), + [sym_preproc_if] = STATE(4071), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(4100), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(4100), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(4100), - [sym_while_statement] = STATE(4100), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(4071), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(4071), + [aux_sym_translation_unit_repeat1] = STATE(4071), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(4071), + [sym_while_statement] = STATE(4071), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -142338,7 +141999,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(8760), + [anon_sym_RBRACE] = ACTIONS(8764), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -142370,392 +142031,854 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3437] = { - [anon_sym_LPAREN2] = ACTIONS(5138), - [anon_sym_struct] = ACTIONS(5140), - [sym_auto] = ACTIONS(5140), - [anon_sym_signed] = ACTIONS(5140), - [anon_sym_mutable] = ACTIONS(5140), - [anon_sym_long] = ACTIONS(5140), - [anon_sym_COLON_COLON] = ACTIONS(5138), - [anon_sym_using] = ACTIONS(5140), - [aux_sym_preproc_else_token1] = ACTIONS(5140), - [aux_sym_preproc_if_token2] = ACTIONS(5140), - [sym_preproc_directive] = ACTIONS(5140), - [aux_sym_preproc_if_token1] = ACTIONS(5140), - [anon_sym_AMP] = ACTIONS(5140), - [anon_sym_static] = ACTIONS(5140), - [anon_sym_volatile] = ACTIONS(5140), - [anon_sym_typedef] = ACTIONS(5140), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_union] = ACTIONS(5140), - [anon_sym_typename] = ACTIONS(5140), - [anon_sym_private] = ACTIONS(5140), - [anon_sym_explicit] = ACTIONS(5140), - [anon_sym_short] = ACTIONS(5140), - [sym_identifier] = ACTIONS(5140), - [sym_operator_name] = ACTIONS(5138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5140), - [anon_sym_register] = ACTIONS(5140), - [anon_sym__Atomic] = ACTIONS(5140), - [anon_sym_const] = ACTIONS(5140), - [anon_sym_extern] = ACTIONS(5140), - [anon_sym_virtual] = ACTIONS(5140), - [anon_sym_enum] = ACTIONS(5140), - [anon_sym_class] = ACTIONS(5140), - [anon_sym_constexpr] = ACTIONS(5140), - [sym_primitive_type] = ACTIONS(5140), - [anon_sym_unsigned] = ACTIONS(5140), - [anon_sym_public] = ACTIONS(5140), - [anon_sym_protected] = ACTIONS(5140), - [anon_sym_friend] = ACTIONS(5140), - [anon_sym_template] = ACTIONS(5140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5140), - [anon_sym_TILDE] = ACTIONS(5138), - [aux_sym_preproc_elif_token1] = ACTIONS(5140), - [aux_sym_preproc_def_token1] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_inline] = ACTIONS(5140), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5140), + [3413] = { + [anon_sym_LPAREN2] = ACTIONS(5229), + [anon_sym_struct] = ACTIONS(5231), + [sym_auto] = ACTIONS(5231), + [anon_sym_signed] = ACTIONS(5231), + [anon_sym_mutable] = ACTIONS(5231), + [anon_sym_long] = ACTIONS(5231), + [anon_sym_COLON_COLON] = ACTIONS(5229), + [anon_sym_using] = ACTIONS(5231), + [aux_sym_preproc_else_token1] = ACTIONS(5231), + [aux_sym_preproc_if_token2] = ACTIONS(5231), + [sym_preproc_directive] = ACTIONS(5231), + [aux_sym_preproc_if_token1] = ACTIONS(5231), + [anon_sym_AMP] = ACTIONS(5231), + [anon_sym_static] = ACTIONS(5231), + [anon_sym_volatile] = ACTIONS(5231), + [anon_sym_typedef] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_union] = ACTIONS(5231), + [anon_sym_typename] = ACTIONS(5231), + [anon_sym_private] = ACTIONS(5231), + [anon_sym_explicit] = ACTIONS(5231), + [anon_sym_short] = ACTIONS(5231), + [sym_identifier] = ACTIONS(5231), + [sym_operator_name] = ACTIONS(5229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5231), + [anon_sym_register] = ACTIONS(5231), + [anon_sym__Atomic] = ACTIONS(5231), + [anon_sym_const] = ACTIONS(5231), + [anon_sym_extern] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_virtual] = ACTIONS(5231), + [anon_sym_enum] = ACTIONS(5231), + [anon_sym_class] = ACTIONS(5231), + [anon_sym_constexpr] = ACTIONS(5231), + [sym_primitive_type] = ACTIONS(5231), + [anon_sym_unsigned] = ACTIONS(5231), + [anon_sym_public] = ACTIONS(5231), + [anon_sym_protected] = ACTIONS(5231), + [anon_sym_friend] = ACTIONS(5231), + [anon_sym_template] = ACTIONS(5231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5229), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5231), + [anon_sym_TILDE] = ACTIONS(5229), + [aux_sym_preproc_elif_token1] = ACTIONS(5231), + [aux_sym_preproc_def_token1] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5229), + [anon_sym_inline] = ACTIONS(5231), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5231), }, - [3438] = { - [anon_sym_LPAREN2] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_mutable] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1697), - [aux_sym_preproc_else_token1] = ACTIONS(1697), - [aux_sym_preproc_if_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1697), - [aux_sym_preproc_if_token1] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_typename] = ACTIONS(1697), - [anon_sym_private] = ACTIONS(1697), - [anon_sym_explicit] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1697), - [sym_operator_name] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_virtual] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_protected] = ACTIONS(1697), - [anon_sym_friend] = ACTIONS(1697), - [anon_sym_template] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1699), - [aux_sym_preproc_elif_token1] = ACTIONS(1697), - [aux_sym_preproc_def_token1] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1697), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(1697), + [3414] = { + [anon_sym_LPAREN2] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1762), + [sym_auto] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1762), + [anon_sym_mutable] = ACTIONS(1762), + [anon_sym_long] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_using] = ACTIONS(1762), + [aux_sym_preproc_else_token1] = ACTIONS(1762), + [aux_sym_preproc_if_token2] = ACTIONS(1762), + [sym_preproc_directive] = ACTIONS(1762), + [aux_sym_preproc_if_token1] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_typename] = ACTIONS(1762), + [anon_sym_private] = ACTIONS(1762), + [anon_sym_explicit] = ACTIONS(1762), + [anon_sym_short] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1762), + [sym_operator_name] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_virtual] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [sym_primitive_type] = ACTIONS(1762), + [anon_sym_unsigned] = ACTIONS(1762), + [anon_sym_public] = ACTIONS(1762), + [anon_sym_protected] = ACTIONS(1762), + [anon_sym_friend] = ACTIONS(1762), + [anon_sym_template] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1764), + [aux_sym_preproc_elif_token1] = ACTIONS(1762), + [aux_sym_preproc_def_token1] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1762), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(1762), }, - [3439] = { - [sym_compound_statement] = STATE(4090), - [sym_delete_method_clause] = STATE(4090), - [sym_default_method_clause] = STATE(4090), - [anon_sym_EQ] = ACTIONS(7355), - [anon_sym_LBRACE] = ACTIONS(7357), + [3415] = { + [sym_compound_statement] = STATE(4072), + [sym_default_method_clause] = STATE(4072), + [sym_delete_method_clause] = STATE(4072), + [anon_sym_EQ] = ACTIONS(7340), + [anon_sym_LBRACE] = ACTIONS(7342), [sym_comment] = ACTIONS(3), }, - [3440] = { - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(1439), - [sym_storage_class_specifier] = STATE(1439), - [sym_type_qualifier] = STATE(1439), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym__declaration_specifiers] = STATE(4101), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), + [3416] = { + [sym_compound_statement] = STATE(4072), + [sym_field_initializer_list] = STATE(4073), + [sym_delete_method_clause] = STATE(4072), + [sym_default_method_clause] = STATE(4072), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(7340), + [anon_sym_LBRACE] = ACTIONS(7342), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(11), }, - [3441] = { - [sym_function_field_declarator] = STATE(4102), - [sym_reference_field_declarator] = STATE(4102), - [sym_template_method] = STATE(4102), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(4102), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(4102), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(4102), - [sym_bitfield_clause] = STATE(4077), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(4077), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(8730), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(8732), - [sym_operator_name] = ACTIONS(8762), - [anon_sym_LBRACE] = ACTIONS(175), + [3417] = { + [aux_sym_type_definition_repeat2] = STATE(4075), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_COMMA] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(8766), }, - [3442] = { - [anon_sym_LPAREN2] = ACTIONS(8764), - [anon_sym_struct] = ACTIONS(8766), - [sym_auto] = ACTIONS(8766), - [anon_sym_signed] = ACTIONS(8766), - [anon_sym_mutable] = ACTIONS(8766), - [anon_sym_long] = ACTIONS(8766), - [anon_sym_COLON_COLON] = ACTIONS(8764), - [anon_sym_using] = ACTIONS(8766), - [sym_preproc_directive] = ACTIONS(8766), - [aux_sym_preproc_if_token1] = ACTIONS(8766), - [anon_sym_AMP] = ACTIONS(8766), - [anon_sym_static] = ACTIONS(8766), - [anon_sym_volatile] = ACTIONS(8766), - [anon_sym_RBRACE] = ACTIONS(8764), - [anon_sym_typedef] = ACTIONS(8766), - [anon_sym_STAR] = ACTIONS(8764), - [anon_sym_union] = ACTIONS(8766), - [anon_sym_typename] = ACTIONS(8766), - [anon_sym_private] = ACTIONS(8766), - [anon_sym_explicit] = ACTIONS(8766), - [anon_sym_short] = ACTIONS(8766), - [sym_identifier] = ACTIONS(8766), - [sym_operator_name] = ACTIONS(8764), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), - [anon_sym_register] = ACTIONS(8766), - [anon_sym__Atomic] = ACTIONS(8766), - [anon_sym_const] = ACTIONS(8766), - [anon_sym_extern] = ACTIONS(8766), - [anon_sym_virtual] = ACTIONS(8766), - [anon_sym_enum] = ACTIONS(8766), - [anon_sym_class] = ACTIONS(8766), - [anon_sym_constexpr] = ACTIONS(8766), - [sym_primitive_type] = ACTIONS(8766), - [anon_sym_unsigned] = ACTIONS(8766), - [anon_sym_public] = ACTIONS(8766), - [anon_sym_protected] = ACTIONS(8766), - [anon_sym_friend] = ACTIONS(8766), - [anon_sym_template] = ACTIONS(8766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8764), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), - [anon_sym_TILDE] = ACTIONS(8764), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8766), - [anon_sym_AMP_AMP] = ACTIONS(8764), - [anon_sym_inline] = ACTIONS(8766), - [anon_sym_restrict] = ACTIONS(8766), + [3418] = { + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_struct] = ACTIONS(4147), + [sym_auto] = ACTIONS(4147), + [anon_sym_signed] = ACTIONS(4147), + [anon_sym_mutable] = ACTIONS(4147), + [anon_sym_long] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_using] = ACTIONS(4147), + [sym_preproc_directive] = ACTIONS(4147), + [aux_sym_preproc_if_token1] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_static] = ACTIONS(4147), + [anon_sym_volatile] = ACTIONS(4147), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_typedef] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_union] = ACTIONS(4147), + [anon_sym_typename] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_explicit] = ACTIONS(4147), + [anon_sym_short] = ACTIONS(4147), + [sym_identifier] = ACTIONS(4147), + [sym_operator_name] = ACTIONS(4149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4147), + [anon_sym_register] = ACTIONS(4147), + [anon_sym__Atomic] = ACTIONS(4147), + [anon_sym_const] = ACTIONS(4147), + [anon_sym_extern] = ACTIONS(4147), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_virtual] = ACTIONS(4147), + [anon_sym_enum] = ACTIONS(4147), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_constexpr] = ACTIONS(4147), + [sym_primitive_type] = ACTIONS(4147), + [anon_sym_unsigned] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_friend] = ACTIONS(4147), + [anon_sym_template] = ACTIONS(4147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4147), + [anon_sym_TILDE] = ACTIONS(4149), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(4147), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_restrict] = ACTIONS(4147), }, - [3443] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3443), - [sym_preproc_function_def] = STATE(3443), - [sym_alias_declaration] = STATE(3443), - [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), - [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3443), - [sym_preproc_if_in_field_declaration_list] = STATE(3443), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3443), - [sym_type_definition] = STATE(3443), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3443), - [sym__field_declaration_list_item] = STATE(3443), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3443), - [sym_inline_method_definition] = STATE(3443), - [sym_friend_declaration] = STATE(3443), - [sym_access_specifier] = STATE(3443), - [sym_using_declaration] = STATE(3443), - [sym_attribute] = STATE(2479), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3443), - [sym_constructor_or_destructor_definition] = STATE(3443), - [sym_constructor_or_destructor_declaration] = STATE(3443), - [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_struct] = ACTIONS(5151), - [sym_auto] = ACTIONS(5154), - [anon_sym_signed] = ACTIONS(5157), - [anon_sym_mutable] = ACTIONS(5160), - [anon_sym_long] = ACTIONS(5157), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_using] = ACTIONS(8768), - [aux_sym_preproc_else_token1] = ACTIONS(8771), - [aux_sym_preproc_if_token2] = ACTIONS(8771), - [sym_preproc_directive] = ACTIONS(8773), - [aux_sym_preproc_if_token1] = ACTIONS(8776), - [anon_sym_AMP] = ACTIONS(5175), - [anon_sym_static] = ACTIONS(5178), - [anon_sym_volatile] = ACTIONS(5160), - [anon_sym_typedef] = ACTIONS(8779), - [anon_sym_STAR] = ACTIONS(5186), - [anon_sym_union] = ACTIONS(5189), - [anon_sym_typename] = ACTIONS(5192), - [anon_sym_private] = ACTIONS(8782), - [anon_sym_explicit] = ACTIONS(5160), - [anon_sym_short] = ACTIONS(5157), - [sym_identifier] = ACTIONS(5198), - [sym_operator_name] = ACTIONS(5201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8785), - [anon_sym_register] = ACTIONS(5178), - [anon_sym__Atomic] = ACTIONS(5160), - [anon_sym_const] = ACTIONS(5160), - [anon_sym_extern] = ACTIONS(5178), - [anon_sym_virtual] = ACTIONS(8788), - [anon_sym_enum] = ACTIONS(5210), - [anon_sym_class] = ACTIONS(5213), - [anon_sym_constexpr] = ACTIONS(5160), - [sym_primitive_type] = ACTIONS(5154), - [anon_sym_unsigned] = ACTIONS(5157), - [anon_sym_public] = ACTIONS(8782), - [anon_sym_protected] = ACTIONS(8782), - [anon_sym_friend] = ACTIONS(8791), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8785), - [anon_sym_TILDE] = ACTIONS(5225), - [aux_sym_preproc_elif_token1] = ACTIONS(8771), - [aux_sym_preproc_def_token1] = ACTIONS(8797), - [anon_sym_AMP_AMP] = ACTIONS(5231), - [anon_sym_inline] = ACTIONS(5178), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5160), + [3419] = { + [aux_sym_type_definition_repeat2] = STATE(2046), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(8766), }, - [3444] = { - [aux_sym_preproc_if_token2] = ACTIONS(8800), + [3420] = { + [anon_sym_LPAREN2] = ACTIONS(8768), + [anon_sym_struct] = ACTIONS(8770), + [sym_auto] = ACTIONS(8770), + [anon_sym_signed] = ACTIONS(8770), + [anon_sym_mutable] = ACTIONS(8770), + [anon_sym_long] = ACTIONS(8770), + [anon_sym_COLON_COLON] = ACTIONS(8768), + [anon_sym_using] = ACTIONS(8770), + [sym_preproc_directive] = ACTIONS(8770), + [aux_sym_preproc_if_token1] = ACTIONS(8770), + [anon_sym_AMP] = ACTIONS(8770), + [anon_sym_static] = ACTIONS(8770), + [anon_sym_volatile] = ACTIONS(8770), + [anon_sym_RBRACE] = ACTIONS(8768), + [anon_sym_typedef] = ACTIONS(8770), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_union] = ACTIONS(8770), + [anon_sym_typename] = ACTIONS(8770), + [anon_sym_private] = ACTIONS(8770), + [anon_sym_explicit] = ACTIONS(8770), + [anon_sym_short] = ACTIONS(8770), + [sym_identifier] = ACTIONS(8770), + [sym_operator_name] = ACTIONS(8768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8770), + [anon_sym_register] = ACTIONS(8770), + [anon_sym__Atomic] = ACTIONS(8770), + [anon_sym_const] = ACTIONS(8770), + [anon_sym_extern] = ACTIONS(8770), + [anon_sym_LBRACK] = ACTIONS(8770), + [anon_sym_virtual] = ACTIONS(8770), + [anon_sym_enum] = ACTIONS(8770), + [anon_sym_class] = ACTIONS(8770), + [anon_sym_constexpr] = ACTIONS(8770), + [sym_primitive_type] = ACTIONS(8770), + [anon_sym_unsigned] = ACTIONS(8770), + [anon_sym_public] = ACTIONS(8770), + [anon_sym_protected] = ACTIONS(8770), + [anon_sym_friend] = ACTIONS(8770), + [anon_sym_template] = ACTIONS(8770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8770), + [anon_sym_TILDE] = ACTIONS(8768), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(8770), + [anon_sym_AMP_AMP] = ACTIONS(8768), + [anon_sym_inline] = ACTIONS(8770), + [anon_sym_restrict] = ACTIONS(8770), + }, + [3421] = { + [aux_sym_preproc_if_token2] = ACTIONS(8772), [sym_comment] = ACTIONS(3), }, - [3445] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(4105), - [anon_sym_LPAREN2] = ACTIONS(587), + [3422] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(8774), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [3423] = { [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(8802), + [anon_sym_SEMI] = ACTIONS(8774), }, - [3446] = { - [anon_sym_LPAREN2] = ACTIONS(4151), - [anon_sym_struct] = ACTIONS(4149), - [sym_auto] = ACTIONS(4149), - [anon_sym_signed] = ACTIONS(4149), - [anon_sym_mutable] = ACTIONS(4149), - [anon_sym_long] = ACTIONS(4149), - [anon_sym_COLON_COLON] = ACTIONS(4151), - [anon_sym_using] = ACTIONS(4149), - [sym_preproc_directive] = ACTIONS(4149), - [aux_sym_preproc_if_token1] = ACTIONS(4149), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_volatile] = ACTIONS(4149), - [anon_sym_RBRACE] = ACTIONS(4151), - [anon_sym_typedef] = ACTIONS(4149), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_union] = ACTIONS(4149), - [anon_sym_typename] = ACTIONS(4149), - [anon_sym_private] = ACTIONS(4149), - [anon_sym_explicit] = ACTIONS(4149), - [anon_sym_short] = ACTIONS(4149), - [sym_identifier] = ACTIONS(4149), - [sym_operator_name] = ACTIONS(4151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4149), - [anon_sym_register] = ACTIONS(4149), - [anon_sym__Atomic] = ACTIONS(4149), - [anon_sym_const] = ACTIONS(4149), - [anon_sym_extern] = ACTIONS(4149), - [anon_sym_virtual] = ACTIONS(4149), - [anon_sym_enum] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_constexpr] = ACTIONS(4149), - [sym_primitive_type] = ACTIONS(4149), - [anon_sym_unsigned] = ACTIONS(4149), - [anon_sym_public] = ACTIONS(4149), - [anon_sym_protected] = ACTIONS(4149), - [anon_sym_friend] = ACTIONS(4149), - [anon_sym_template] = ACTIONS(4149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4149), - [anon_sym_TILDE] = ACTIONS(4151), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(4149), - [anon_sym_AMP_AMP] = ACTIONS(4151), - [anon_sym_inline] = ACTIONS(4149), - [anon_sym_restrict] = ACTIONS(4149), + [3424] = { + [anon_sym_LPAREN2] = ACTIONS(8776), + [anon_sym_struct] = ACTIONS(8778), + [sym_auto] = ACTIONS(8778), + [anon_sym_signed] = ACTIONS(8778), + [anon_sym_mutable] = ACTIONS(8778), + [anon_sym_long] = ACTIONS(8778), + [anon_sym_COLON_COLON] = ACTIONS(8776), + [anon_sym_using] = ACTIONS(8778), + [sym_preproc_directive] = ACTIONS(8778), + [aux_sym_preproc_if_token1] = ACTIONS(8778), + [anon_sym_AMP] = ACTIONS(8778), + [anon_sym_static] = ACTIONS(8778), + [anon_sym_volatile] = ACTIONS(8778), + [anon_sym_RBRACE] = ACTIONS(8776), + [anon_sym_typedef] = ACTIONS(8778), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_union] = ACTIONS(8778), + [anon_sym_typename] = ACTIONS(8778), + [anon_sym_private] = ACTIONS(8778), + [anon_sym_explicit] = ACTIONS(8778), + [anon_sym_short] = ACTIONS(8778), + [sym_identifier] = ACTIONS(8778), + [sym_operator_name] = ACTIONS(8776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8778), + [anon_sym_register] = ACTIONS(8778), + [anon_sym__Atomic] = ACTIONS(8778), + [anon_sym_const] = ACTIONS(8778), + [anon_sym_extern] = ACTIONS(8778), + [anon_sym_LBRACK] = ACTIONS(8778), + [anon_sym_virtual] = ACTIONS(8778), + [anon_sym_enum] = ACTIONS(8778), + [anon_sym_class] = ACTIONS(8778), + [anon_sym_constexpr] = ACTIONS(8778), + [sym_primitive_type] = ACTIONS(8778), + [anon_sym_unsigned] = ACTIONS(8778), + [anon_sym_public] = ACTIONS(8778), + [anon_sym_protected] = ACTIONS(8778), + [anon_sym_friend] = ACTIONS(8778), + [anon_sym_template] = ACTIONS(8778), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8778), + [anon_sym_TILDE] = ACTIONS(8776), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(8778), + [anon_sym_AMP_AMP] = ACTIONS(8776), + [anon_sym_inline] = ACTIONS(8778), + [anon_sym_restrict] = ACTIONS(8778), }, - [3447] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [3425] = { + [sym_template_function] = STATE(4078), + [sym__expression] = STATE(4078), + [sym_logical_expression] = STATE(4078), + [sym_bitwise_expression] = STATE(4078), + [sym_cast_expression] = STATE(4078), + [sym_delete_expression] = STATE(4078), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4078), + [sym_lambda_expression] = STATE(4078), + [sym_char_literal] = STATE(4078), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4078), + [sym_equality_expression] = STATE(4078), + [sym_relational_expression] = STATE(4078), + [sym_sizeof_expression] = STATE(4078), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4079), + [sym_parenthesized_expression] = STATE(4078), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4078), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4078), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4078), + [sym_math_expression] = STATE(4078), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4078), + [sym_raw_string_literal] = ACTIONS(8780), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(8782), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(8782), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8780), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(8782), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(8782), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [3426] = { + [sym_bitfield_clause] = STATE(4079), + [sym_initializer_list] = STATE(4079), + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(5213), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(8802), + [anon_sym_EQ] = ACTIONS(8784), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(8774), }, - [3448] = { + [3427] = { + [sym_compound_statement] = STATE(4082), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(4083), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(5219), + [anon_sym_SEMI] = ACTIONS(8786), + }, + [3428] = { + [aux_sym_declaration_repeat1] = STATE(4083), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(8786), + }, + [3429] = { + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_struct] = ACTIONS(4111), + [sym_auto] = ACTIONS(4111), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_using] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_RBRACE] = ACTIONS(4113), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_private] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [sym_identifier] = ACTIONS(4111), + [sym_operator_name] = ACTIONS(4113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_public] = ACTIONS(4111), + [anon_sym_protected] = ACTIONS(4111), + [anon_sym_friend] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4113), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym_restrict] = ACTIONS(4111), + }, + [3430] = { + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_struct] = ACTIONS(4115), + [sym_auto] = ACTIONS(4115), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_using] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_private] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [sym_identifier] = ACTIONS(4115), + [sym_operator_name] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_public] = ACTIONS(4115), + [anon_sym_protected] = ACTIONS(4115), + [anon_sym_friend] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [anon_sym_TILDE] = ACTIONS(4117), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym_restrict] = ACTIONS(4115), + }, + [3431] = { + [aux_sym_declaration_repeat1] = STATE(2034), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(8786), + }, + [3432] = { + [anon_sym_LPAREN2] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1915), + [sym_auto] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_mutable] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1915), + [sym_preproc_directive] = ACTIONS(1915), + [aux_sym_preproc_if_token1] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_volatile] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_typedef] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_typename] = ACTIONS(1915), + [anon_sym_private] = ACTIONS(1915), + [anon_sym_explicit] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1915), + [sym_operator_name] = ACTIONS(1917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym__Atomic] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_virtual] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_constexpr] = ACTIONS(1915), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_public] = ACTIONS(1915), + [anon_sym_protected] = ACTIONS(1915), + [anon_sym_friend] = ACTIONS(1915), + [anon_sym_template] = ACTIONS(1915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(1915), + [anon_sym_AMP_AMP] = ACTIONS(1917), + [anon_sym_inline] = ACTIONS(1915), + [anon_sym_restrict] = ACTIONS(1915), + }, + [3433] = { + [anon_sym_LPAREN2] = ACTIONS(5903), + [anon_sym_struct] = ACTIONS(5901), + [sym_auto] = ACTIONS(5901), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_mutable] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_COLON_COLON] = ACTIONS(5903), + [anon_sym_using] = ACTIONS(5901), + [sym_preproc_directive] = ACTIONS(5901), + [aux_sym_preproc_if_token1] = ACTIONS(5901), + [anon_sym_AMP] = ACTIONS(5901), + [anon_sym_static] = ACTIONS(5901), + [anon_sym_volatile] = ACTIONS(5901), + [anon_sym_RBRACE] = ACTIONS(5903), + [anon_sym_typedef] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_union] = ACTIONS(5901), + [anon_sym_typename] = ACTIONS(5901), + [anon_sym_private] = ACTIONS(5901), + [anon_sym_explicit] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [sym_identifier] = ACTIONS(5901), + [sym_operator_name] = ACTIONS(5903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5901), + [anon_sym_register] = ACTIONS(5901), + [anon_sym__Atomic] = ACTIONS(5901), + [anon_sym_const] = ACTIONS(5901), + [anon_sym_extern] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5901), + [anon_sym_virtual] = ACTIONS(5901), + [anon_sym_enum] = ACTIONS(5901), + [anon_sym_class] = ACTIONS(5901), + [anon_sym_constexpr] = ACTIONS(5901), + [sym_primitive_type] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_public] = ACTIONS(5901), + [anon_sym_protected] = ACTIONS(5901), + [anon_sym_friend] = ACTIONS(5901), + [anon_sym_template] = ACTIONS(5901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5901), + [anon_sym_TILDE] = ACTIONS(5903), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5901), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_inline] = ACTIONS(5901), + [anon_sym_restrict] = ACTIONS(5901), + }, + [3434] = { + [anon_sym_LPAREN2] = ACTIONS(5915), + [anon_sym_struct] = ACTIONS(5913), + [sym_auto] = ACTIONS(5913), + [anon_sym_signed] = ACTIONS(5913), + [anon_sym_mutable] = ACTIONS(5913), + [anon_sym_long] = ACTIONS(5913), + [anon_sym_COLON_COLON] = ACTIONS(5915), + [anon_sym_using] = ACTIONS(5913), + [sym_preproc_directive] = ACTIONS(5913), + [aux_sym_preproc_if_token1] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_static] = ACTIONS(5913), + [anon_sym_volatile] = ACTIONS(5913), + [anon_sym_RBRACE] = ACTIONS(5915), + [anon_sym_typedef] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_union] = ACTIONS(5913), + [anon_sym_typename] = ACTIONS(5913), + [anon_sym_private] = ACTIONS(5913), + [anon_sym_explicit] = ACTIONS(5913), + [anon_sym_short] = ACTIONS(5913), + [sym_identifier] = ACTIONS(5913), + [sym_operator_name] = ACTIONS(5915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5913), + [anon_sym_register] = ACTIONS(5913), + [anon_sym__Atomic] = ACTIONS(5913), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_extern] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_virtual] = ACTIONS(5913), + [anon_sym_enum] = ACTIONS(5913), + [anon_sym_class] = ACTIONS(5913), + [anon_sym_constexpr] = ACTIONS(5913), + [sym_primitive_type] = ACTIONS(5913), + [anon_sym_unsigned] = ACTIONS(5913), + [anon_sym_public] = ACTIONS(5913), + [anon_sym_protected] = ACTIONS(5913), + [anon_sym_friend] = ACTIONS(5913), + [anon_sym_template] = ACTIONS(5913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5913), + [anon_sym_TILDE] = ACTIONS(5915), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5913), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_inline] = ACTIONS(5913), + [anon_sym_restrict] = ACTIONS(5913), + }, + [3435] = { + [anon_sym_LF] = ACTIONS(8788), + [sym_comment] = ACTIONS(244), + }, + [3436] = { + [sym_union_specifier] = STATE(1671), + [sym_macro_type_specifier] = STATE(1671), + [sym_class_specifier] = STATE(1671), + [aux_sym_sized_type_specifier_repeat1] = STATE(3437), + [sym_sized_type_specifier] = STATE(1671), + [sym__type_specifier] = STATE(1671), + [sym_scoped_type_identifier] = STATE(2005), + [sym_enum_specifier] = STATE(1671), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1671), + [sym_struct_specifier] = STATE(1671), + [anon_sym_unsigned] = ACTIONS(7390), + [anon_sym_struct] = ACTIONS(3992), + [sym_auto] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(7390), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(7390), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(7394), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(7390), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3316), + }, + [3437] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4085), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(8790), + [anon_sym_mutable] = ACTIONS(558), + [sym_identifier] = ACTIONS(3333), + [anon_sym_long] = ACTIONS(8790), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(3335), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(8790), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_short] = ACTIONS(8790), + }, + [3438] = { + [sym_abstract_reference_declarator] = STATE(4089), + [sym_abstract_array_declarator] = STATE(4089), + [sym_abstract_pointer_declarator] = STATE(4089), + [sym_parameter_list] = STATE(4088), + [sym_abstract_function_declarator] = STATE(4089), + [sym__abstract_declarator] = STATE(4089), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(8792), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(8794), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_SEMI] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_EQ] = ACTIONS(6085), + [anon_sym_restrict] = ACTIONS(6085), + [anon_sym_LBRACE] = ACTIONS(6085), + }, + [3439] = { + [sym_virtual_specifier] = STATE(3439), + [aux_sym_function_declarator_repeat1] = STATE(3439), + [sym_type_qualifier] = STATE(3439), + [sym_trailing_return_type] = STATE(3439), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(8798), + [anon_sym_mutable] = ACTIONS(6294), + [anon_sym__Atomic] = ACTIONS(6294), + [anon_sym_const] = ACTIONS(6297), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(6294), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6294), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_SEMI] = ACTIONS(6286), + [anon_sym_COLON] = ACTIONS(6286), + [anon_sym_explicit] = ACTIONS(6294), + [anon_sym_DASH_GT] = ACTIONS(8801), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_restrict] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6286), + }, + [3440] = { + [sym_parameter_list] = STATE(2505), + [sym_bitfield_clause] = STATE(4079), + [sym_initializer_list] = STATE(4079), + [aux_sym_field_declaration_repeat1] = STATE(4090), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(8784), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + }, + [3441] = { + [sym_template_function] = STATE(4078), + [sym__expression] = STATE(4078), + [sym_logical_expression] = STATE(4078), + [sym_bitwise_expression] = STATE(4078), + [sym_cast_expression] = STATE(4078), + [sym_delete_expression] = STATE(4078), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4078), + [sym_lambda_expression] = STATE(4078), + [sym_char_literal] = STATE(4078), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4078), + [sym_equality_expression] = STATE(4078), + [sym_relational_expression] = STATE(4078), + [sym_sizeof_expression] = STATE(4078), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4079), + [sym_parenthesized_expression] = STATE(4078), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4078), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4078), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4078), + [sym_math_expression] = STATE(4078), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4078), + [sym_raw_string_literal] = ACTIONS(8780), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(8782), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(8782), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8780), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(8782), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(8782), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(7424), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [3442] = { [anon_sym_LPAREN2] = ACTIONS(8804), [anon_sym_struct] = ACTIONS(8806), [sym_auto] = ACTIONS(8806), @@ -142784,6 +142907,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(8806), [anon_sym_const] = ACTIONS(8806), [anon_sym_extern] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8806), [anon_sym_virtual] = ACTIONS(8806), [anon_sym_enum] = ACTIONS(8806), [anon_sym_class] = ACTIONS(8806), @@ -142803,667 +142927,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(8806), [anon_sym_restrict] = ACTIONS(8806), }, - [3449] = { - [aux_sym_preproc_if_token2] = ACTIONS(8808), - [sym_comment] = ACTIONS(3), - }, - [3450] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(8810), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [3451] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(8810), - }, - [3452] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4108), - [sym_logical_expression] = STATE(4108), - [sym_bitwise_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_new_expression] = STATE(4108), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4108), - [sym_char_literal] = STATE(4108), - [sym_template_function] = STATE(4108), - [sym_conditional_expression] = STATE(4108), - [sym_equality_expression] = STATE(4108), - [sym_relational_expression] = STATE(4108), - [sym_delete_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_parenthesized_expression] = STATE(4108), - [sym_initializer_list] = STATE(4109), - [sym_concatenated_string] = STATE(4108), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4108), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4108), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4108), - [sym_math_expression] = STATE(4108), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8812), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(8814), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(8814), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8812), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(8814), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(8814), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [3453] = { - [anon_sym_LPAREN2] = ACTIONS(8816), - [anon_sym_struct] = ACTIONS(8818), - [sym_auto] = ACTIONS(8818), - [anon_sym_signed] = ACTIONS(8818), - [anon_sym_mutable] = ACTIONS(8818), - [anon_sym_long] = ACTIONS(8818), - [anon_sym_COLON_COLON] = ACTIONS(8816), - [anon_sym_using] = ACTIONS(8818), - [sym_preproc_directive] = ACTIONS(8818), - [aux_sym_preproc_if_token1] = ACTIONS(8818), - [anon_sym_AMP] = ACTIONS(8818), - [anon_sym_static] = ACTIONS(8818), - [anon_sym_volatile] = ACTIONS(8818), - [anon_sym_RBRACE] = ACTIONS(8816), - [anon_sym_typedef] = ACTIONS(8818), - [anon_sym_STAR] = ACTIONS(8816), - [anon_sym_union] = ACTIONS(8818), - [anon_sym_typename] = ACTIONS(8818), - [anon_sym_private] = ACTIONS(8818), - [anon_sym_explicit] = ACTIONS(8818), - [anon_sym_short] = ACTIONS(8818), - [sym_identifier] = ACTIONS(8818), - [sym_operator_name] = ACTIONS(8816), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8818), - [anon_sym_register] = ACTIONS(8818), - [anon_sym__Atomic] = ACTIONS(8818), - [anon_sym_const] = ACTIONS(8818), - [anon_sym_extern] = ACTIONS(8818), - [anon_sym_virtual] = ACTIONS(8818), - [anon_sym_enum] = ACTIONS(8818), - [anon_sym_class] = ACTIONS(8818), - [anon_sym_constexpr] = ACTIONS(8818), - [sym_primitive_type] = ACTIONS(8818), - [anon_sym_unsigned] = ACTIONS(8818), - [anon_sym_public] = ACTIONS(8818), - [anon_sym_protected] = ACTIONS(8818), - [anon_sym_friend] = ACTIONS(8818), - [anon_sym_template] = ACTIONS(8818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8816), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8818), - [anon_sym_TILDE] = ACTIONS(8816), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8818), - [anon_sym_AMP_AMP] = ACTIONS(8816), - [anon_sym_inline] = ACTIONS(8818), - [anon_sym_restrict] = ACTIONS(8818), - }, - [3454] = { - [sym_bitfield_clause] = STATE(4109), - [aux_sym_field_declaration_repeat1] = STATE(3485), - [sym_initializer_list] = STATE(4109), - [anon_sym_COLON] = ACTIONS(5122), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(8820), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(8810), - }, - [3455] = { - [sym_compound_statement] = STATE(4112), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(4113), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(5128), - [anon_sym_SEMI] = ACTIONS(8822), - }, - [3456] = { - [aux_sym_declaration_repeat1] = STATE(4113), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(8822), - }, - [3457] = { - [anon_sym_LPAREN2] = ACTIONS(4077), - [anon_sym_struct] = ACTIONS(4075), - [sym_auto] = ACTIONS(4075), - [anon_sym_signed] = ACTIONS(4075), - [anon_sym_mutable] = ACTIONS(4075), - [anon_sym_long] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_using] = ACTIONS(4075), - [sym_preproc_directive] = ACTIONS(4075), - [aux_sym_preproc_if_token1] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_volatile] = ACTIONS(4075), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_typedef] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4077), - [anon_sym_union] = ACTIONS(4075), - [anon_sym_typename] = ACTIONS(4075), - [anon_sym_private] = ACTIONS(4075), - [anon_sym_explicit] = ACTIONS(4075), - [anon_sym_short] = ACTIONS(4075), - [sym_identifier] = ACTIONS(4075), - [sym_operator_name] = ACTIONS(4077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4075), - [anon_sym_register] = ACTIONS(4075), - [anon_sym__Atomic] = ACTIONS(4075), - [anon_sym_const] = ACTIONS(4075), - [anon_sym_extern] = ACTIONS(4075), - [anon_sym_virtual] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_class] = ACTIONS(4075), - [anon_sym_constexpr] = ACTIONS(4075), - [sym_primitive_type] = ACTIONS(4075), - [anon_sym_unsigned] = ACTIONS(4075), - [anon_sym_public] = ACTIONS(4075), - [anon_sym_protected] = ACTIONS(4075), - [anon_sym_friend] = ACTIONS(4075), - [anon_sym_template] = ACTIONS(4075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4075), - [anon_sym_TILDE] = ACTIONS(4077), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(4075), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_restrict] = ACTIONS(4075), - }, - [3458] = { - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_struct] = ACTIONS(4079), - [sym_auto] = ACTIONS(4079), - [anon_sym_signed] = ACTIONS(4079), - [anon_sym_mutable] = ACTIONS(4079), - [anon_sym_long] = ACTIONS(4079), - [anon_sym_COLON_COLON] = ACTIONS(4081), - [anon_sym_using] = ACTIONS(4079), - [sym_preproc_directive] = ACTIONS(4079), - [aux_sym_preproc_if_token1] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(4079), - [anon_sym_static] = ACTIONS(4079), - [anon_sym_volatile] = ACTIONS(4079), - [anon_sym_RBRACE] = ACTIONS(4081), - [anon_sym_typedef] = ACTIONS(4079), - [anon_sym_STAR] = ACTIONS(4081), - [anon_sym_union] = ACTIONS(4079), - [anon_sym_typename] = ACTIONS(4079), - [anon_sym_private] = ACTIONS(4079), - [anon_sym_explicit] = ACTIONS(4079), - [anon_sym_short] = ACTIONS(4079), - [sym_identifier] = ACTIONS(4079), - [sym_operator_name] = ACTIONS(4081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4079), - [anon_sym_register] = ACTIONS(4079), - [anon_sym__Atomic] = ACTIONS(4079), - [anon_sym_const] = ACTIONS(4079), - [anon_sym_extern] = ACTIONS(4079), - [anon_sym_virtual] = ACTIONS(4079), - [anon_sym_enum] = ACTIONS(4079), - [anon_sym_class] = ACTIONS(4079), - [anon_sym_constexpr] = ACTIONS(4079), - [sym_primitive_type] = ACTIONS(4079), - [anon_sym_unsigned] = ACTIONS(4079), - [anon_sym_public] = ACTIONS(4079), - [anon_sym_protected] = ACTIONS(4079), - [anon_sym_friend] = ACTIONS(4079), - [anon_sym_template] = ACTIONS(4079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4081), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4079), - [anon_sym_TILDE] = ACTIONS(4081), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(4079), - [anon_sym_AMP_AMP] = ACTIONS(4081), - [anon_sym_inline] = ACTIONS(4079), - [anon_sym_restrict] = ACTIONS(4079), - }, - [3459] = { - [aux_sym_declaration_repeat1] = STATE(2028), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(8822), - }, - [3460] = { - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2016), - [sym_auto] = ACTIONS(2016), - [anon_sym_signed] = ACTIONS(2016), - [anon_sym_mutable] = ACTIONS(2016), - [anon_sym_long] = ACTIONS(2016), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_using] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_typedef] = ACTIONS(2016), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_typename] = ACTIONS(2016), - [anon_sym_private] = ACTIONS(2016), - [anon_sym_explicit] = ACTIONS(2016), - [anon_sym_short] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2016), - [sym_operator_name] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), - [anon_sym_register] = ACTIONS(2016), - [anon_sym__Atomic] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_virtual] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_class] = ACTIONS(2016), - [anon_sym_constexpr] = ACTIONS(2016), - [sym_primitive_type] = ACTIONS(2016), - [anon_sym_unsigned] = ACTIONS(2016), - [anon_sym_public] = ACTIONS(2016), - [anon_sym_protected] = ACTIONS(2016), - [anon_sym_friend] = ACTIONS(2016), - [anon_sym_template] = ACTIONS(2016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2016), - [anon_sym_restrict] = ACTIONS(2016), - }, - [3461] = { - [anon_sym_LPAREN2] = ACTIONS(5896), - [anon_sym_struct] = ACTIONS(5894), - [sym_auto] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(5894), - [anon_sym_mutable] = ACTIONS(5894), - [anon_sym_long] = ACTIONS(5894), - [anon_sym_COLON_COLON] = ACTIONS(5896), - [anon_sym_using] = ACTIONS(5894), - [sym_preproc_directive] = ACTIONS(5894), - [aux_sym_preproc_if_token1] = ACTIONS(5894), - [anon_sym_AMP] = ACTIONS(5894), - [anon_sym_static] = ACTIONS(5894), - [anon_sym_volatile] = ACTIONS(5894), - [anon_sym_RBRACE] = ACTIONS(5896), - [anon_sym_typedef] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5896), - [anon_sym_union] = ACTIONS(5894), - [anon_sym_typename] = ACTIONS(5894), - [anon_sym_private] = ACTIONS(5894), - [anon_sym_explicit] = ACTIONS(5894), - [anon_sym_short] = ACTIONS(5894), - [sym_identifier] = ACTIONS(5894), - [sym_operator_name] = ACTIONS(5896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5894), - [anon_sym_register] = ACTIONS(5894), - [anon_sym__Atomic] = ACTIONS(5894), - [anon_sym_const] = ACTIONS(5894), - [anon_sym_extern] = ACTIONS(5894), - [anon_sym_virtual] = ACTIONS(5894), - [anon_sym_enum] = ACTIONS(5894), - [anon_sym_class] = ACTIONS(5894), - [anon_sym_constexpr] = ACTIONS(5894), - [sym_primitive_type] = ACTIONS(5894), - [anon_sym_unsigned] = ACTIONS(5894), - [anon_sym_public] = ACTIONS(5894), - [anon_sym_protected] = ACTIONS(5894), - [anon_sym_friend] = ACTIONS(5894), - [anon_sym_template] = ACTIONS(5894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5894), - [anon_sym_TILDE] = ACTIONS(5896), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5896), - [anon_sym_inline] = ACTIONS(5894), - [anon_sym_restrict] = ACTIONS(5894), - }, - [3462] = { - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_struct] = ACTIONS(5906), - [sym_auto] = ACTIONS(5906), - [anon_sym_signed] = ACTIONS(5906), - [anon_sym_mutable] = ACTIONS(5906), - [anon_sym_long] = ACTIONS(5906), - [anon_sym_COLON_COLON] = ACTIONS(5908), - [anon_sym_using] = ACTIONS(5906), - [sym_preproc_directive] = ACTIONS(5906), - [aux_sym_preproc_if_token1] = ACTIONS(5906), - [anon_sym_AMP] = ACTIONS(5906), - [anon_sym_static] = ACTIONS(5906), - [anon_sym_volatile] = ACTIONS(5906), - [anon_sym_RBRACE] = ACTIONS(5908), - [anon_sym_typedef] = ACTIONS(5906), - [anon_sym_STAR] = ACTIONS(5908), - [anon_sym_union] = ACTIONS(5906), - [anon_sym_typename] = ACTIONS(5906), - [anon_sym_private] = ACTIONS(5906), - [anon_sym_explicit] = ACTIONS(5906), - [anon_sym_short] = ACTIONS(5906), - [sym_identifier] = ACTIONS(5906), - [sym_operator_name] = ACTIONS(5908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), - [anon_sym_register] = ACTIONS(5906), - [anon_sym__Atomic] = ACTIONS(5906), - [anon_sym_const] = ACTIONS(5906), - [anon_sym_extern] = ACTIONS(5906), - [anon_sym_virtual] = ACTIONS(5906), - [anon_sym_enum] = ACTIONS(5906), - [anon_sym_class] = ACTIONS(5906), - [anon_sym_constexpr] = ACTIONS(5906), - [sym_primitive_type] = ACTIONS(5906), - [anon_sym_unsigned] = ACTIONS(5906), - [anon_sym_public] = ACTIONS(5906), - [anon_sym_protected] = ACTIONS(5906), - [anon_sym_friend] = ACTIONS(5906), - [anon_sym_template] = ACTIONS(5906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), - [anon_sym_TILDE] = ACTIONS(5908), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5906), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_inline] = ACTIONS(5906), - [anon_sym_restrict] = ACTIONS(5906), - }, - [3463] = { - [anon_sym_LF] = ACTIONS(8824), - [sym_comment] = ACTIONS(244), - }, - [3464] = { - [sym_union_specifier] = STATE(1673), - [sym_macro_type_specifier] = STATE(1673), - [sym_class_specifier] = STATE(1673), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1673), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1673), - [aux_sym_sized_type_specifier_repeat1] = STATE(3465), - [sym_struct_specifier] = STATE(1673), - [sym_enum_specifier] = STATE(1673), - [sym_scoped_type_identifier] = STATE(1989), - [sym_dependent_type] = STATE(1673), - [anon_sym_unsigned] = ACTIONS(7409), - [anon_sym_struct] = ACTIONS(3914), - [sym_auto] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(7409), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(7409), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(7413), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(7409), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(3920), - [sym_primitive_type] = ACTIONS(3306), - }, - [3465] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4115), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(8826), - [anon_sym_mutable] = ACTIONS(625), - [sym_identifier] = ACTIONS(3328), - [anon_sym_long] = ACTIONS(8826), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(8826), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_short] = ACTIONS(8826), - }, - [3466] = { - [sym_parameter_list] = STATE(4118), - [sym_abstract_array_declarator] = STATE(4119), - [sym_abstract_pointer_declarator] = STATE(4119), - [sym_abstract_reference_declarator] = STATE(4119), - [sym_abstract_function_declarator] = STATE(4119), - [sym__abstract_declarator] = STATE(4119), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(8828), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(8830), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_SEMI] = ACTIONS(6210), - [anon_sym_COLON] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(8832), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_restrict] = ACTIONS(6210), - [anon_sym_LBRACE] = ACTIONS(6210), - }, - [3467] = { - [sym_virtual_specifier] = STATE(3467), - [aux_sym_function_declarator_repeat1] = STATE(3467), - [sym_trailing_return_type] = STATE(3467), - [sym_type_qualifier] = STATE(3467), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(8834), - [anon_sym_mutable] = ACTIONS(6228), - [anon_sym__Atomic] = ACTIONS(6228), - [anon_sym_const] = ACTIONS(6231), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6228), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_SEMI] = ACTIONS(6220), - [anon_sym_COLON] = ACTIONS(6220), - [anon_sym_explicit] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(8837), - [anon_sym_EQ] = ACTIONS(6220), - [anon_sym_restrict] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(6220), - }, - [3468] = { - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_struct] = ACTIONS(5912), - [sym_auto] = ACTIONS(5912), - [anon_sym_signed] = ACTIONS(5912), - [anon_sym_mutable] = ACTIONS(5912), - [anon_sym_long] = ACTIONS(5912), - [anon_sym_COLON_COLON] = ACTIONS(5914), - [anon_sym_using] = ACTIONS(5912), - [sym_preproc_directive] = ACTIONS(5912), - [aux_sym_preproc_if_token1] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_static] = ACTIONS(5912), - [anon_sym_volatile] = ACTIONS(5912), - [anon_sym_RBRACE] = ACTIONS(5914), - [anon_sym_typedef] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_union] = ACTIONS(5912), - [anon_sym_typename] = ACTIONS(5912), - [anon_sym_private] = ACTIONS(5912), - [anon_sym_explicit] = ACTIONS(5912), - [anon_sym_short] = ACTIONS(5912), - [sym_identifier] = ACTIONS(5912), - [sym_operator_name] = ACTIONS(5914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5912), - [anon_sym_register] = ACTIONS(5912), - [anon_sym__Atomic] = ACTIONS(5912), - [anon_sym_const] = ACTIONS(5912), - [anon_sym_extern] = ACTIONS(5912), - [anon_sym_virtual] = ACTIONS(5912), - [anon_sym_enum] = ACTIONS(5912), - [anon_sym_class] = ACTIONS(5912), - [anon_sym_constexpr] = ACTIONS(5912), - [sym_primitive_type] = ACTIONS(5912), - [anon_sym_unsigned] = ACTIONS(5912), - [anon_sym_public] = ACTIONS(5912), - [anon_sym_protected] = ACTIONS(5912), - [anon_sym_friend] = ACTIONS(5912), - [anon_sym_template] = ACTIONS(5912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5912), - [anon_sym_TILDE] = ACTIONS(5914), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5912), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_inline] = ACTIONS(5912), - [anon_sym_restrict] = ACTIONS(5912), - }, - [3469] = { - [sym_parameter_list] = STATE(3473), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(7423), - [anon_sym_LBRACK] = ACTIONS(5124), + [3443] = { + [sym_parameter_list] = STATE(3447), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(7408), + [anon_sym_LBRACK] = ACTIONS(5215), [sym_comment] = ACTIONS(3), }, - [3470] = { - [sym_function_field_declarator] = STATE(4120), - [sym_reference_field_declarator] = STATE(4120), - [sym_template_method] = STATE(4120), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(4120), - [sym_scoped_namespace_identifier] = STATE(949), - [aux_sym_type_definition_repeat1] = STATE(3474), - [sym__field_declarator] = STATE(4120), - [sym_scoped_field_identifier] = STATE(2511), - [sym_array_field_declarator] = STATE(4120), - [sym_scoped_type_identifier] = STATE(174), - [sym_type_qualifier] = STATE(3474), - [anon_sym_LPAREN2] = ACTIONS(2887), + [3444] = { + [sym_function_field_declarator] = STATE(4091), + [aux_sym_type_definition_repeat1] = STATE(3448), + [sym_scoped_field_identifier] = STATE(2493), + [sym_reference_field_declarator] = STATE(4091), + [sym_pointer_field_declarator] = STATE(4091), + [sym__field_declarator] = STATE(4091), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_array_field_declarator] = STATE(4091), + [sym_template_method] = STATE(4091), + [sym_type_qualifier] = STATE(3448), + [sym_scoped_namespace_identifier] = STATE(988), + [anon_sym_LPAREN2] = ACTIONS(2889), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(1733), + [anon_sym_COLON_COLON] = ACTIONS(1825), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5181), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5183), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(5096), - [sym_operator_name] = ACTIONS(8840), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [sym_operator_name] = ACTIONS(8808), [anon_sym_restrict] = ACTIONS(11), }, - [3471] = { - [sym_parameter_list] = STATE(3473), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(7427), - [anon_sym_LBRACK] = ACTIONS(5124), + [3445] = { + [sym_parameter_list] = STATE(3447), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(7412), + [anon_sym_LBRACK] = ACTIONS(5215), [sym_comment] = ACTIONS(3), }, - [3472] = { - [anon_sym_LPAREN2] = ACTIONS(8842), - [anon_sym_COMMA] = ACTIONS(8842), - [anon_sym_SEMI] = ACTIONS(8842), - [anon_sym_COLON] = ACTIONS(8842), - [anon_sym_LBRACK] = ACTIONS(8842), - [anon_sym_RPAREN] = ACTIONS(8842), - [anon_sym_EQ] = ACTIONS(8842), - [anon_sym_LBRACE] = ACTIONS(8842), + [3446] = { + [anon_sym_LPAREN2] = ACTIONS(8810), + [anon_sym_COMMA] = ACTIONS(8810), + [anon_sym_SEMI] = ACTIONS(8810), + [anon_sym_COLON] = ACTIONS(8810), + [anon_sym_LBRACK] = ACTIONS(8810), + [anon_sym_RPAREN] = ACTIONS(8810), + [anon_sym_EQ] = ACTIONS(8810), + [anon_sym_LBRACE] = ACTIONS(8810), [sym_comment] = ACTIONS(3), }, - [3473] = { - [sym_virtual_specifier] = STATE(4121), - [aux_sym_function_declarator_repeat1] = STATE(4121), - [sym_trailing_return_type] = STATE(4121), - [sym_type_qualifier] = STATE(4121), - [anon_sym_LPAREN2] = ACTIONS(7449), - [sym_noexcept] = ACTIONS(8844), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [3447] = { + [sym_virtual_specifier] = STATE(4092), + [aux_sym_function_declarator_repeat1] = STATE(4092), + [sym_type_qualifier] = STATE(4092), + [sym_trailing_return_type] = STATE(4092), + [anon_sym_LPAREN2] = ACTIONS(7434), + [sym_noexcept] = ACTIONS(8812), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(7449), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(7434), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(7449), - [anon_sym_DASH_GT] = ACTIONS(2824), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(7434), + [anon_sym_DASH_GT] = ACTIONS(2826), + [anon_sym_restrict] = ACTIONS(1070), }, - [3474] = { - [sym_type_qualifier] = STATE(3474), - [aux_sym_type_definition_repeat1] = STATE(3474), + [3448] = { + [aux_sym_type_definition_repeat1] = STATE(3448), + [sym_type_qualifier] = STATE(3448), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_mutable] = ACTIONS(2103), [anon_sym__Atomic] = ACTIONS(2103), @@ -143480,1964 +143021,1898 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(2103), [sym_operator_name] = ACTIONS(2106), }, - [3475] = { - [sym_parameter_list] = STATE(2522), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(8846), - [anon_sym_SEMI] = ACTIONS(8846), - [anon_sym_COLON] = ACTIONS(8846), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(8846), - [anon_sym_LBRACE] = ACTIONS(8846), + [3449] = { + [sym_parameter_list] = STATE(2505), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(8814), + [anon_sym_SEMI] = ACTIONS(8814), + [anon_sym_COLON] = ACTIONS(8814), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(8814), + [anon_sym_LBRACE] = ACTIONS(8814), [sym_comment] = ACTIONS(3), }, - [3476] = { - [anon_sym_LPAREN2] = ACTIONS(8848), - [anon_sym_COMMA] = ACTIONS(8848), - [anon_sym_SEMI] = ACTIONS(8848), - [anon_sym_COLON] = ACTIONS(8848), - [anon_sym_LBRACK] = ACTIONS(8848), - [anon_sym_RPAREN] = ACTIONS(8848), - [anon_sym_EQ] = ACTIONS(8848), - [anon_sym_LBRACE] = ACTIONS(8848), + [3450] = { + [anon_sym_LPAREN2] = ACTIONS(8816), + [anon_sym_COMMA] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8816), + [anon_sym_COLON] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_RPAREN] = ACTIONS(8816), + [anon_sym_EQ] = ACTIONS(8816), + [anon_sym_LBRACE] = ACTIONS(8816), [sym_comment] = ACTIONS(3), }, - [3477] = { - [sym_template_type] = STATE(754), + [3451] = { + [sym_template_function] = STATE(755), [sym__expression] = STATE(755), [sym_logical_expression] = STATE(755), [sym_bitwise_expression] = STATE(755), [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), + [sym_delete_expression] = STATE(755), [sym_field_expression] = STATE(755), [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), [sym_conditional_expression] = STATE(755), [sym_equality_expression] = STATE(755), [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), + [sym_template_type] = STATE(761), [sym_assignment_expression] = STATE(755), [sym_pointer_expression] = STATE(755), [sym_shift_expression] = STATE(755), [sym_math_expression] = STATE(755), [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_RBRACK] = ACTIONS(8850), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(8818), }, - [3478] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8850), + [3452] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8818), }, - [3479] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(4124), - [sym_logical_expression] = STATE(4124), - [sym_bitwise_expression] = STATE(4124), - [sym_cast_expression] = STATE(4124), - [sym_new_expression] = STATE(4124), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(4124), - [sym_char_literal] = STATE(4124), - [sym_type_qualifier] = STATE(1987), - [sym_template_function] = STATE(4124), - [sym_conditional_expression] = STATE(4124), - [sym_equality_expression] = STATE(4124), - [sym_relational_expression] = STATE(4124), - [sym_delete_expression] = STATE(4124), - [sym_sizeof_expression] = STATE(4124), - [sym_parenthesized_expression] = STATE(4124), - [sym_lambda_expression] = STATE(4124), - [sym_concatenated_string] = STATE(4124), - [sym_string_literal] = STATE(967), + [3453] = { + [sym_template_function] = STATE(4095), + [sym__expression] = STATE(4095), + [sym_logical_expression] = STATE(4095), + [sym_bitwise_expression] = STATE(4095), + [sym_cast_expression] = STATE(4095), + [sym_delete_expression] = STATE(4095), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(4095), + [sym_lambda_expression] = STATE(4095), + [sym_char_literal] = STATE(4095), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(4124), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(4124), - [sym_math_expression] = STATE(4124), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_type_qualifier] = STATE(1928), + [sym_conditional_expression] = STATE(4095), + [sym_equality_expression] = STATE(4095), + [sym_relational_expression] = STATE(4095), + [sym_sizeof_expression] = STATE(4095), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [aux_sym_type_definition_repeat1] = STATE(1987), - [sym_raw_string_literal] = ACTIONS(8852), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(8854), - [anon_sym_mutable] = ACTIONS(1835), - [sym_null] = ACTIONS(8854), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(8856), - [anon_sym_explicit] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(8852), - [anon_sym_DQUOTE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_constexpr] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(8854), - [sym_nullptr] = ACTIONS(8854), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(8850), + [sym_parenthesized_expression] = STATE(4095), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [aux_sym_type_definition_repeat1] = STATE(1928), + [sym_concatenated_string] = STATE(4095), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(4095), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(4095), + [sym_math_expression] = STATE(4095), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(4095), + [sym_raw_string_literal] = ACTIONS(8820), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(8822), + [anon_sym_mutable] = ACTIONS(1716), + [sym_null] = ACTIONS(8822), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(8824), + [anon_sym_explicit] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(8820), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_constexpr] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(8822), + [sym_nullptr] = ACTIONS(8822), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(8818), }, - [3480] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(884), - [sym_logical_expression] = STATE(884), - [sym_bitwise_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_new_expression] = STATE(884), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(884), - [sym_char_literal] = STATE(884), - [sym_template_function] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_equality_expression] = STATE(884), - [sym_relational_expression] = STATE(884), - [sym_delete_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(884), - [sym_lambda_expression] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(884), - [sym_math_expression] = STATE(884), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(7457), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [3454] = { + [sym_template_function] = STATE(885), + [sym__expression] = STATE(885), + [sym_logical_expression] = STATE(885), + [sym_bitwise_expression] = STATE(885), + [sym_cast_expression] = STATE(885), + [sym_delete_expression] = STATE(885), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(885), + [sym_lambda_expression] = STATE(885), + [sym_char_literal] = STATE(885), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(885), + [sym_equality_expression] = STATE(885), + [sym_relational_expression] = STATE(885), + [sym_sizeof_expression] = STATE(885), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(885), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(885), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(885), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(885), + [sym_math_expression] = STATE(885), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(885), + [sym_raw_string_literal] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1587), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(7442), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [3481] = { - [sym_parameter_list] = STATE(2522), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(8858), - [anon_sym_SEMI] = ACTIONS(8858), - [anon_sym_COLON] = ACTIONS(8858), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(8858), - [anon_sym_LBRACE] = ACTIONS(8858), + [3455] = { + [sym_parameter_list] = STATE(2505), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(8826), + [anon_sym_SEMI] = ACTIONS(8826), + [anon_sym_COLON] = ACTIONS(8826), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(8826), + [anon_sym_LBRACE] = ACTIONS(8826), [sym_comment] = ACTIONS(3), }, - [3482] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_private] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_virtual] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_public] = ACTIONS(962), - [anon_sym_protected] = ACTIONS(962), - [anon_sym_friend] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(2397), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(962), + [3456] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_private] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_virtual] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_public] = ACTIONS(966), + [anon_sym_protected] = ACTIONS(966), + [anon_sym_friend] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(2399), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(966), }, - [3483] = { - [sym_union_specifier] = STATE(4127), - [sym_macro_type_specifier] = STATE(4127), - [sym_class_specifier] = STATE(4127), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(4127), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(4127), - [aux_sym_sized_type_specifier_repeat1] = STATE(4126), - [sym_struct_specifier] = STATE(4127), - [sym_enum_specifier] = STATE(4127), - [sym_scoped_type_identifier] = STATE(1989), - [sym_dependent_type] = STATE(4127), - [anon_sym_unsigned] = ACTIONS(8860), - [anon_sym_struct] = ACTIONS(3914), - [sym_auto] = ACTIONS(8862), - [anon_sym_signed] = ACTIONS(8860), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(8860), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(8864), + [3457] = { + [sym_union_specifier] = STATE(4098), + [sym_macro_type_specifier] = STATE(4098), + [sym_class_specifier] = STATE(4098), + [aux_sym_sized_type_specifier_repeat1] = STATE(4097), + [sym_sized_type_specifier] = STATE(4098), + [sym__type_specifier] = STATE(4098), + [sym_scoped_type_identifier] = STATE(2005), + [sym_enum_specifier] = STATE(4098), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(4098), + [sym_struct_specifier] = STATE(4098), + [anon_sym_unsigned] = ACTIONS(8828), + [anon_sym_struct] = ACTIONS(3992), + [sym_auto] = ACTIONS(8830), + [anon_sym_signed] = ACTIONS(8828), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(8828), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(8832), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(8860), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(3920), - [sym_primitive_type] = ACTIONS(8862), + [anon_sym_short] = ACTIONS(8828), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(8830), }, - [3484] = { - [sym_virtual_specifier] = STATE(4128), - [aux_sym_function_declarator_repeat1] = STATE(4128), - [sym_trailing_return_type] = STATE(4128), - [sym_type_qualifier] = STATE(4128), - [anon_sym_LPAREN2] = ACTIONS(8866), - [sym_noexcept] = ACTIONS(8868), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(8866), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(8866), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(8866), - [anon_sym_COLON] = ACTIONS(8866), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(7453), - [anon_sym_EQ] = ACTIONS(8866), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(8866), + [3458] = { + [sym_virtual_specifier] = STATE(4099), + [aux_sym_function_declarator_repeat1] = STATE(4099), + [sym_type_qualifier] = STATE(4099), + [sym_trailing_return_type] = STATE(4099), + [anon_sym_LPAREN2] = ACTIONS(8834), + [sym_noexcept] = ACTIONS(8836), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(8834), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(8834), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(8834), + [anon_sym_COLON] = ACTIONS(8834), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(7438), + [anon_sym_EQ] = ACTIONS(8834), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(8834), }, - [3485] = { - [aux_sym_field_declaration_repeat1] = STATE(3485), - [anon_sym_COLON] = ACTIONS(8858), + [3459] = { + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(8826), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(8858), - [anon_sym_COMMA] = ACTIONS(8870), - [anon_sym_LBRACE] = ACTIONS(8858), - [anon_sym_SEMI] = ACTIONS(8858), - }, - [3486] = { - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_struct] = ACTIONS(5934), - [sym_auto] = ACTIONS(5934), - [anon_sym_signed] = ACTIONS(5934), - [anon_sym_mutable] = ACTIONS(5934), - [anon_sym_long] = ACTIONS(5934), - [anon_sym_COLON_COLON] = ACTIONS(5936), - [anon_sym_using] = ACTIONS(5934), - [sym_preproc_directive] = ACTIONS(5934), - [aux_sym_preproc_if_token1] = ACTIONS(5934), - [anon_sym_AMP] = ACTIONS(5934), - [anon_sym_static] = ACTIONS(5934), - [anon_sym_volatile] = ACTIONS(5934), - [anon_sym_RBRACE] = ACTIONS(5936), - [anon_sym_typedef] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_union] = ACTIONS(5934), - [anon_sym_typename] = ACTIONS(5934), - [anon_sym_private] = ACTIONS(5934), - [anon_sym_explicit] = ACTIONS(5934), - [anon_sym_short] = ACTIONS(5934), - [sym_identifier] = ACTIONS(5934), - [sym_operator_name] = ACTIONS(5936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5934), - [anon_sym_register] = ACTIONS(5934), - [anon_sym__Atomic] = ACTIONS(5934), - [anon_sym_const] = ACTIONS(5934), - [anon_sym_extern] = ACTIONS(5934), - [anon_sym_virtual] = ACTIONS(5934), - [anon_sym_enum] = ACTIONS(5934), - [anon_sym_class] = ACTIONS(5934), - [anon_sym_constexpr] = ACTIONS(5934), - [sym_primitive_type] = ACTIONS(5934), - [anon_sym_unsigned] = ACTIONS(5934), - [anon_sym_public] = ACTIONS(5934), - [anon_sym_protected] = ACTIONS(5934), - [anon_sym_friend] = ACTIONS(5934), - [anon_sym_template] = ACTIONS(5934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5934), - [anon_sym_TILDE] = ACTIONS(5936), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_inline] = ACTIONS(5934), - [anon_sym_restrict] = ACTIONS(5934), - }, - [3487] = { - [anon_sym_LPAREN2] = ACTIONS(5940), - [anon_sym_struct] = ACTIONS(5938), - [sym_auto] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(5938), - [anon_sym_mutable] = ACTIONS(5938), - [anon_sym_long] = ACTIONS(5938), - [anon_sym_COLON_COLON] = ACTIONS(5940), - [anon_sym_using] = ACTIONS(5938), - [sym_preproc_directive] = ACTIONS(5938), - [aux_sym_preproc_if_token1] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_static] = ACTIONS(5938), - [anon_sym_volatile] = ACTIONS(5938), - [anon_sym_RBRACE] = ACTIONS(5940), - [anon_sym_typedef] = ACTIONS(5938), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_union] = ACTIONS(5938), - [anon_sym_typename] = ACTIONS(5938), - [anon_sym_private] = ACTIONS(5938), - [anon_sym_explicit] = ACTIONS(5938), - [anon_sym_short] = ACTIONS(5938), - [sym_identifier] = ACTIONS(5938), - [sym_operator_name] = ACTIONS(5940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), - [anon_sym_register] = ACTIONS(5938), - [anon_sym__Atomic] = ACTIONS(5938), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_extern] = ACTIONS(5938), - [anon_sym_virtual] = ACTIONS(5938), - [anon_sym_enum] = ACTIONS(5938), - [anon_sym_class] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5938), - [sym_primitive_type] = ACTIONS(5938), - [anon_sym_unsigned] = ACTIONS(5938), - [anon_sym_public] = ACTIONS(5938), - [anon_sym_protected] = ACTIONS(5938), - [anon_sym_friend] = ACTIONS(5938), - [anon_sym_template] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), - [anon_sym_TILDE] = ACTIONS(5940), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5938), - [anon_sym_AMP_AMP] = ACTIONS(5940), - [anon_sym_inline] = ACTIONS(5938), - [anon_sym_restrict] = ACTIONS(5938), - }, - [3488] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2707), - [sym_auto] = ACTIONS(2707), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_private] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2707), - [sym_operator_name] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_public] = ACTIONS(2707), - [anon_sym_protected] = ACTIONS(2707), - [anon_sym_friend] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), + [anon_sym_EQ] = ACTIONS(8826), + [anon_sym_COMMA] = ACTIONS(8838), + [anon_sym_LBRACE] = ACTIONS(8826), + [anon_sym_SEMI] = ACTIONS(8826), }, - [3489] = { - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(4109), - [aux_sym_field_declaration_repeat1] = STATE(4129), - [sym_initializer_list] = STATE(4109), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(8810), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(8820), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), + [3460] = { + [anon_sym_LPAREN2] = ACTIONS(6128), + [anon_sym_struct] = ACTIONS(6126), + [sym_auto] = ACTIONS(6126), + [anon_sym_signed] = ACTIONS(6126), + [anon_sym_mutable] = ACTIONS(6126), + [anon_sym_long] = ACTIONS(6126), + [anon_sym_COLON_COLON] = ACTIONS(6128), + [anon_sym_using] = ACTIONS(6126), + [sym_preproc_directive] = ACTIONS(6126), + [aux_sym_preproc_if_token1] = ACTIONS(6126), + [anon_sym_AMP] = ACTIONS(6126), + [anon_sym_static] = ACTIONS(6126), + [anon_sym_volatile] = ACTIONS(6126), + [anon_sym_RBRACE] = ACTIONS(6128), + [anon_sym_typedef] = ACTIONS(6126), + [anon_sym_STAR] = ACTIONS(6128), + [anon_sym_union] = ACTIONS(6126), + [anon_sym_typename] = ACTIONS(6126), + [anon_sym_private] = ACTIONS(6126), + [anon_sym_explicit] = ACTIONS(6126), + [anon_sym_short] = ACTIONS(6126), + [sym_identifier] = ACTIONS(6126), + [sym_operator_name] = ACTIONS(6128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6126), + [anon_sym_register] = ACTIONS(6126), + [anon_sym__Atomic] = ACTIONS(6126), + [anon_sym_const] = ACTIONS(6126), + [anon_sym_extern] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(6126), + [anon_sym_virtual] = ACTIONS(6126), + [anon_sym_enum] = ACTIONS(6126), + [anon_sym_class] = ACTIONS(6126), + [anon_sym_constexpr] = ACTIONS(6126), + [sym_primitive_type] = ACTIONS(6126), + [anon_sym_unsigned] = ACTIONS(6126), + [anon_sym_public] = ACTIONS(6126), + [anon_sym_protected] = ACTIONS(6126), + [anon_sym_friend] = ACTIONS(6126), + [anon_sym_template] = ACTIONS(6126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6126), + [anon_sym_TILDE] = ACTIONS(6128), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(6126), + [anon_sym_AMP_AMP] = ACTIONS(6128), + [anon_sym_inline] = ACTIONS(6126), + [anon_sym_restrict] = ACTIONS(6126), }, - [3490] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4108), - [sym_logical_expression] = STATE(4108), - [sym_bitwise_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_new_expression] = STATE(4108), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4108), - [sym_char_literal] = STATE(4108), - [sym_template_function] = STATE(4108), - [sym_conditional_expression] = STATE(4108), - [sym_equality_expression] = STATE(4108), - [sym_relational_expression] = STATE(4108), - [sym_delete_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_parenthesized_expression] = STATE(4108), - [sym_initializer_list] = STATE(4109), - [sym_concatenated_string] = STATE(4108), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4108), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4108), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4108), - [sym_math_expression] = STATE(4108), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8812), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(8814), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(8814), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8812), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(8814), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(8814), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(7439), - [anon_sym_LBRACE] = ACTIONS(175), + [3461] = { + [anon_sym_LPAREN2] = ACTIONS(6132), + [anon_sym_struct] = ACTIONS(6130), + [sym_auto] = ACTIONS(6130), + [anon_sym_signed] = ACTIONS(6130), + [anon_sym_mutable] = ACTIONS(6130), + [anon_sym_long] = ACTIONS(6130), + [anon_sym_COLON_COLON] = ACTIONS(6132), + [anon_sym_using] = ACTIONS(6130), + [sym_preproc_directive] = ACTIONS(6130), + [aux_sym_preproc_if_token1] = ACTIONS(6130), + [anon_sym_AMP] = ACTIONS(6130), + [anon_sym_static] = ACTIONS(6130), + [anon_sym_volatile] = ACTIONS(6130), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_typedef] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(6132), + [anon_sym_union] = ACTIONS(6130), + [anon_sym_typename] = ACTIONS(6130), + [anon_sym_private] = ACTIONS(6130), + [anon_sym_explicit] = ACTIONS(6130), + [anon_sym_short] = ACTIONS(6130), + [sym_identifier] = ACTIONS(6130), + [sym_operator_name] = ACTIONS(6132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6130), + [anon_sym_register] = ACTIONS(6130), + [anon_sym__Atomic] = ACTIONS(6130), + [anon_sym_const] = ACTIONS(6130), + [anon_sym_extern] = ACTIONS(6130), + [anon_sym_LBRACK] = ACTIONS(6130), + [anon_sym_virtual] = ACTIONS(6130), + [anon_sym_enum] = ACTIONS(6130), + [anon_sym_class] = ACTIONS(6130), + [anon_sym_constexpr] = ACTIONS(6130), + [sym_primitive_type] = ACTIONS(6130), + [anon_sym_unsigned] = ACTIONS(6130), + [anon_sym_public] = ACTIONS(6130), + [anon_sym_protected] = ACTIONS(6130), + [anon_sym_friend] = ACTIONS(6130), + [anon_sym_template] = ACTIONS(6130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6130), + [anon_sym_TILDE] = ACTIONS(6132), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(6130), + [anon_sym_AMP_AMP] = ACTIONS(6132), + [anon_sym_inline] = ACTIONS(6130), + [anon_sym_restrict] = ACTIONS(6130), }, - [3491] = { - [anon_sym_LPAREN2] = ACTIONS(8873), - [anon_sym_struct] = ACTIONS(8875), - [sym_auto] = ACTIONS(8875), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_mutable] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_COLON_COLON] = ACTIONS(8873), - [anon_sym_using] = ACTIONS(8875), - [sym_preproc_directive] = ACTIONS(8875), - [aux_sym_preproc_if_token1] = ACTIONS(8875), - [anon_sym_AMP] = ACTIONS(8875), - [anon_sym_static] = ACTIONS(8875), - [anon_sym_volatile] = ACTIONS(8875), - [anon_sym_RBRACE] = ACTIONS(8873), - [anon_sym_typedef] = ACTIONS(8875), - [anon_sym_STAR] = ACTIONS(8873), - [anon_sym_union] = ACTIONS(8875), - [anon_sym_typename] = ACTIONS(8875), - [anon_sym_private] = ACTIONS(8875), - [anon_sym_explicit] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [sym_identifier] = ACTIONS(8875), - [sym_operator_name] = ACTIONS(8873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8875), - [anon_sym_register] = ACTIONS(8875), - [anon_sym__Atomic] = ACTIONS(8875), - [anon_sym_const] = ACTIONS(8875), - [anon_sym_extern] = ACTIONS(8875), - [anon_sym_virtual] = ACTIONS(8875), - [anon_sym_enum] = ACTIONS(8875), - [anon_sym_class] = ACTIONS(8875), - [anon_sym_constexpr] = ACTIONS(8875), - [sym_primitive_type] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_public] = ACTIONS(8875), - [anon_sym_protected] = ACTIONS(8875), - [anon_sym_friend] = ACTIONS(8875), - [anon_sym_template] = ACTIONS(8875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8875), - [anon_sym_TILDE] = ACTIONS(8873), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8875), - [anon_sym_AMP_AMP] = ACTIONS(8873), - [anon_sym_inline] = ACTIONS(8875), - [anon_sym_restrict] = ACTIONS(8875), + [3462] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2709), + [sym_auto] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_using] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_private] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2709), + [sym_operator_name] = ACTIONS(2711), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_public] = ACTIONS(2709), + [anon_sym_protected] = ACTIONS(2709), + [anon_sym_friend] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), }, - [3492] = { - [sym_parameter_list] = STATE(3499), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(4989), + [3463] = { + [anon_sym_LPAREN2] = ACTIONS(6136), + [anon_sym_struct] = ACTIONS(6134), + [sym_auto] = ACTIONS(6134), + [anon_sym_signed] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [anon_sym_long] = ACTIONS(6134), + [anon_sym_COLON_COLON] = ACTIONS(6136), + [anon_sym_using] = ACTIONS(6134), + [sym_preproc_directive] = ACTIONS(6134), + [aux_sym_preproc_if_token1] = ACTIONS(6134), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_static] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_RBRACE] = ACTIONS(6136), + [anon_sym_typedef] = ACTIONS(6134), + [anon_sym_STAR] = ACTIONS(6136), + [anon_sym_union] = ACTIONS(6134), + [anon_sym_typename] = ACTIONS(6134), + [anon_sym_private] = ACTIONS(6134), + [anon_sym_explicit] = ACTIONS(6134), + [anon_sym_short] = ACTIONS(6134), + [sym_identifier] = ACTIONS(6134), + [sym_operator_name] = ACTIONS(6136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6134), + [anon_sym_register] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [anon_sym_const] = ACTIONS(6134), + [anon_sym_extern] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_virtual] = ACTIONS(6134), + [anon_sym_enum] = ACTIONS(6134), + [anon_sym_class] = ACTIONS(6134), + [anon_sym_constexpr] = ACTIONS(6134), + [sym_primitive_type] = ACTIONS(6134), + [anon_sym_unsigned] = ACTIONS(6134), + [anon_sym_public] = ACTIONS(6134), + [anon_sym_protected] = ACTIONS(6134), + [anon_sym_friend] = ACTIONS(6134), + [anon_sym_template] = ACTIONS(6134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6136), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(6134), + [anon_sym_AMP_AMP] = ACTIONS(6136), + [anon_sym_inline] = ACTIONS(6134), + [anon_sym_restrict] = ACTIONS(6134), }, - [3493] = { - [sym_abstract_array_declarator] = STATE(4130), - [sym_parameter_list] = STATE(2535), - [sym_abstract_reference_declarator] = STATE(4130), - [sym_abstract_function_declarator] = STATE(4130), - [aux_sym_type_definition_repeat1] = STATE(3497), - [sym_abstract_pointer_declarator] = STATE(4130), - [sym_type_qualifier] = STATE(3497), - [sym__abstract_declarator] = STATE(4130), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(5249), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(1062), + [3464] = { + [sym_abstract_reference_declarator] = STATE(4100), + [aux_sym_type_definition_repeat1] = STATE(3469), + [sym_abstract_array_declarator] = STATE(4100), + [sym_parameter_list] = STATE(2523), + [sym_abstract_function_declarator] = STATE(4100), + [sym_abstract_pointer_declarator] = STATE(4100), + [sym_type_qualifier] = STATE(3469), + [sym__abstract_declarator] = STATE(4100), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(4992), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(5256), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [3494] = { - [sym_parameter_list] = STATE(3499), - [anon_sym_LPAREN2] = ACTIONS(587), + [3465] = { + [sym_parameter_list] = STATE(3472), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(4992), }, - [3495] = { - [sym_union_specifier] = STATE(4133), - [sym_macro_type_specifier] = STATE(4133), - [sym_class_specifier] = STATE(4133), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(4133), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(4133), - [aux_sym_sized_type_specifier_repeat1] = STATE(4132), - [sym_struct_specifier] = STATE(4133), - [sym_enum_specifier] = STATE(4133), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(4133), - [anon_sym_unsigned] = ACTIONS(8877), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(8879), - [anon_sym_signed] = ACTIONS(8877), + [3466] = { + [sym_parameter_list] = STATE(3472), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(8877), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(8881), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(8877), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(8879), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(4985), }, - [3496] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4134), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4134), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(8883), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(4115), + [3467] = { + [sym_abstract_reference_declarator] = STATE(4101), + [aux_sym_type_definition_repeat1] = STATE(3469), + [sym_abstract_array_declarator] = STATE(4101), + [sym_parameter_list] = STATE(2523), + [sym_abstract_function_declarator] = STATE(4101), + [sym_abstract_pointer_declarator] = STATE(4101), + [sym_type_qualifier] = STATE(3469), + [sym__abstract_declarator] = STATE(4101), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7473), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(5256), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [3497] = { - [sym_type_qualifier] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(3497), + [3468] = { + [sym_parameter_list] = STATE(3472), + [anon_sym_LPAREN2] = ACTIONS(614), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(4987), + }, + [3469] = { + [aux_sym_type_definition_repeat1] = STATE(3469), + [sym_type_qualifier] = STATE(3469), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), - [anon_sym_mutable] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(4989), + [anon_sym_mutable] = ACTIONS(4989), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_SEMI] = ACTIONS(2106), [anon_sym_const] = ACTIONS(2103), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), + [anon_sym_explicit] = ACTIONS(4989), [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), - [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(4989), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), }, - [3498] = { - [sym_parameter_list] = STATE(3499), - [anon_sym_LPAREN2] = ACTIONS(587), + [3470] = { + [sym_union_specifier] = STATE(4104), + [sym_macro_type_specifier] = STATE(4104), + [sym_class_specifier] = STATE(4104), + [aux_sym_sized_type_specifier_repeat1] = STATE(4103), + [sym_sized_type_specifier] = STATE(4104), + [sym__type_specifier] = STATE(4104), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(4104), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(4104), + [sym_struct_specifier] = STATE(4104), + [anon_sym_unsigned] = ACTIONS(8841), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(8843), + [anon_sym_signed] = ACTIONS(8841), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_long] = ACTIONS(8841), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(8845), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(8841), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(8843), }, - [3499] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4135), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4135), - [anon_sym_LPAREN2] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(8885), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(4115), + [3471] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4105), + [sym_type_qualifier] = STATE(4105), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(8847), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(3838), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7473), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7457), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [3500] = { - [sym_abstract_array_declarator] = STATE(4136), - [sym_parameter_list] = STATE(2535), - [sym_abstract_reference_declarator] = STATE(4136), - [sym_abstract_function_declarator] = STATE(4136), - [aux_sym_type_definition_repeat1] = STATE(3497), - [sym_abstract_pointer_declarator] = STATE(4136), - [sym_type_qualifier] = STATE(3497), - [sym__abstract_declarator] = STATE(4136), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(5249), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(5004), + [3472] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4106), + [sym_type_qualifier] = STATE(4106), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(8849), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(3838), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7457), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [3501] = { - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_LT_LT_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5018), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_CARET_EQ] = ACTIONS(5018), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_COLON] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_PIPE_EQ] = ACTIONS(5018), - [anon_sym_GT_GT_EQ] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5018), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_PERCENT] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_AMP_EQ] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_GT_GT] = ACTIONS(5020), + [3473] = { + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH_GT] = ACTIONS(5014), + [anon_sym_RPAREN] = ACTIONS(5014), + [anon_sym_STAR_EQ] = ACTIONS(5014), + [anon_sym_LT_LT_EQ] = ACTIONS(5014), + [anon_sym_PERCENT_EQ] = ACTIONS(5014), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_SLASH_EQ] = ACTIONS(5014), + [anon_sym_PLUS_EQ] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5014), + [anon_sym_GT_GT_EQ] = ACTIONS(5014), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_DASH_EQ] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_AMP_EQ] = ACTIONS(5014), + [anon_sym_AMP_AMP] = ACTIONS(5014), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5016), }, - [3502] = { - [sym_field_declaration_list] = STATE(4137), - [anon_sym_LBRACE] = ACTIONS(2963), + [3474] = { + [sym_field_declaration_list] = STATE(4107), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, - [3503] = { - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_DASH_DASH] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5144), - [anon_sym_RPAREN] = ACTIONS(5144), - [anon_sym_STAR_EQ] = ACTIONS(5144), - [anon_sym_LT_LT_EQ] = ACTIONS(5144), - [anon_sym_PERCENT_EQ] = ACTIONS(5144), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5144), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_CARET_EQ] = ACTIONS(5144), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5144), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_RBRACE] = ACTIONS(5144), - [anon_sym_COLON] = ACTIONS(5144), - [anon_sym_SLASH_EQ] = ACTIONS(5144), - [anon_sym_PLUS_EQ] = ACTIONS(5144), - [anon_sym_CARET] = ACTIONS(5146), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_PIPE_EQ] = ACTIONS(5144), - [anon_sym_GT_GT_EQ] = ACTIONS(5144), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5144), - [anon_sym_LT_LT] = ACTIONS(5146), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5146), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_DASH_EQ] = ACTIONS(5144), - [anon_sym_SEMI] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_AMP_EQ] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_EQ] = ACTIONS(5146), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_LBRACE] = ACTIONS(5144), - [anon_sym_GT_GT] = ACTIONS(5146), + [3475] = { + [anon_sym_LPAREN2] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_STAR_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_EQ] = ACTIONS(5088), + [anon_sym_PERCENT_EQ] = ACTIONS(5088), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_CARET_EQ] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_SLASH_EQ] = ACTIONS(5088), + [anon_sym_PLUS_EQ] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_PIPE_EQ] = ACTIONS(5088), + [anon_sym_GT_GT_EQ] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_DASH_EQ] = ACTIONS(5088), + [anon_sym_SEMI] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_AMP_EQ] = ACTIONS(5088), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5090), }, - [3504] = { - [anon_sym_LPAREN2] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_DASH_DASH] = ACTIONS(5237), - [anon_sym_DASH_GT] = ACTIONS(5237), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_STAR_EQ] = ACTIONS(5237), - [anon_sym_LT_LT_EQ] = ACTIONS(5237), - [anon_sym_PERCENT_EQ] = ACTIONS(5237), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_CARET_EQ] = ACTIONS(5237), - [anon_sym_AMP] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_GT_EQ] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_RBRACE] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_SLASH_EQ] = ACTIONS(5237), - [anon_sym_PLUS_EQ] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_PIPE_EQ] = ACTIONS(5237), - [anon_sym_GT_GT_EQ] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5237), - [anon_sym_LT_LT] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_PERCENT] = ACTIONS(5239), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5237), - [anon_sym_DASH_EQ] = ACTIONS(5237), - [anon_sym_SEMI] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5237), - [anon_sym_AMP_EQ] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_GT_GT] = ACTIONS(5239), + [3476] = { + [anon_sym_LPAREN2] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5236), + [anon_sym_DASH_GT] = ACTIONS(5236), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym_BANG_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5236), + [anon_sym_LBRACE] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5238), }, - [3505] = { - [sym_field_declaration_list] = STATE(4138), - [anon_sym_LBRACE] = ACTIONS(2963), + [3477] = { + [sym_field_declaration_list] = STATE(4108), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, - [3506] = { - [anon_sym_LPAREN2] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_DASH_DASH] = ACTIONS(5327), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_STAR_EQ] = ACTIONS(5327), - [anon_sym_LT_LT_EQ] = ACTIONS(5327), - [anon_sym_PERCENT_EQ] = ACTIONS(5327), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5327), - [anon_sym_EQ_EQ] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_CARET_EQ] = ACTIONS(5327), - [anon_sym_AMP] = ACTIONS(5329), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_GT_EQ] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_RBRACE] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_SLASH_EQ] = ACTIONS(5327), - [anon_sym_PLUS_EQ] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_PIPE_EQ] = ACTIONS(5327), - [anon_sym_GT_GT_EQ] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_PIPE_PIPE] = ACTIONS(5327), - [anon_sym_DOT] = ACTIONS(5327), - [anon_sym_LT_LT] = ACTIONS(5329), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_PERCENT] = ACTIONS(5329), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5327), - [anon_sym_DASH_EQ] = ACTIONS(5327), - [anon_sym_SEMI] = ACTIONS(5327), - [anon_sym_BANG_EQ] = ACTIONS(5327), - [anon_sym_AMP_EQ] = ACTIONS(5327), - [anon_sym_AMP_AMP] = ACTIONS(5327), - [anon_sym_LT_EQ] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5329), - [anon_sym_PLUS_PLUS] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [anon_sym_GT_GT] = ACTIONS(5329), + [3478] = { + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_DASH_DASH] = ACTIONS(5326), + [anon_sym_DASH_GT] = ACTIONS(5326), + [anon_sym_RPAREN] = ACTIONS(5326), + [anon_sym_STAR_EQ] = ACTIONS(5326), + [anon_sym_LT_LT_EQ] = ACTIONS(5326), + [anon_sym_PERCENT_EQ] = ACTIONS(5326), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5326), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_CARET_EQ] = ACTIONS(5326), + [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_GT_EQ] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5326), + [anon_sym_COLON] = ACTIONS(5326), + [anon_sym_SLASH_EQ] = ACTIONS(5326), + [anon_sym_PLUS_EQ] = ACTIONS(5326), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_PIPE_EQ] = ACTIONS(5326), + [anon_sym_GT_GT_EQ] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_PERCENT] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_DASH_EQ] = ACTIONS(5326), + [anon_sym_SEMI] = ACTIONS(5326), + [anon_sym_BANG_EQ] = ACTIONS(5326), + [anon_sym_AMP_EQ] = ACTIONS(5326), + [anon_sym_AMP_AMP] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5328), + [anon_sym_PLUS_PLUS] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_GT_GT] = ACTIONS(5328), }, - [3507] = { - [sym_field_declaration_list] = STATE(4139), - [anon_sym_LBRACE] = ACTIONS(2963), + [3479] = { + [sym_field_declaration_list] = STATE(4109), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, - [3508] = { - [anon_sym_LPAREN2] = ACTIONS(5331), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_DASH_DASH] = ACTIONS(5331), - [anon_sym_DASH_GT] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_STAR_EQ] = ACTIONS(5331), - [anon_sym_LT_LT_EQ] = ACTIONS(5331), - [anon_sym_PERCENT_EQ] = ACTIONS(5331), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5331), - [anon_sym_EQ_EQ] = ACTIONS(5331), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_CARET_EQ] = ACTIONS(5331), - [anon_sym_AMP] = ACTIONS(5333), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_GT_EQ] = ACTIONS(5331), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_RBRACE] = ACTIONS(5331), - [anon_sym_COLON] = ACTIONS(5331), - [anon_sym_SLASH_EQ] = ACTIONS(5331), - [anon_sym_PLUS_EQ] = ACTIONS(5331), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_PIPE_EQ] = ACTIONS(5331), - [anon_sym_GT_GT_EQ] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_PIPE_PIPE] = ACTIONS(5331), - [anon_sym_DOT] = ACTIONS(5331), - [anon_sym_LT_LT] = ACTIONS(5333), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_PERCENT] = ACTIONS(5333), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5331), - [anon_sym_DASH_EQ] = ACTIONS(5331), - [anon_sym_SEMI] = ACTIONS(5331), - [anon_sym_BANG_EQ] = ACTIONS(5331), - [anon_sym_AMP_EQ] = ACTIONS(5331), - [anon_sym_AMP_AMP] = ACTIONS(5331), - [anon_sym_LT_EQ] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5333), - [anon_sym_PLUS_PLUS] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_GT_GT] = ACTIONS(5333), + [3480] = { + [anon_sym_LPAREN2] = ACTIONS(5330), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_DASH_DASH] = ACTIONS(5330), + [anon_sym_DASH_GT] = ACTIONS(5330), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_STAR_EQ] = ACTIONS(5330), + [anon_sym_LT_LT_EQ] = ACTIONS(5330), + [anon_sym_PERCENT_EQ] = ACTIONS(5330), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5330), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_CARET_EQ] = ACTIONS(5330), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_GT_EQ] = ACTIONS(5330), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5330), + [anon_sym_COLON] = ACTIONS(5330), + [anon_sym_SLASH_EQ] = ACTIONS(5330), + [anon_sym_PLUS_EQ] = ACTIONS(5330), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_PIPE_EQ] = ACTIONS(5330), + [anon_sym_GT_GT_EQ] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_PIPE_PIPE] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_PERCENT] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5330), + [anon_sym_DASH_EQ] = ACTIONS(5330), + [anon_sym_SEMI] = ACTIONS(5330), + [anon_sym_BANG_EQ] = ACTIONS(5330), + [anon_sym_AMP_EQ] = ACTIONS(5330), + [anon_sym_AMP_AMP] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5332), + [anon_sym_PLUS_PLUS] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), }, - [3509] = { - [sym_field_declaration_list] = STATE(4140), - [anon_sym_LBRACE] = ACTIONS(2963), + [3481] = { + [sym_field_declaration_list] = STATE(4110), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, - [3510] = { - [anon_sym_LPAREN2] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4740), - [anon_sym_RPAREN] = ACTIONS(4740), - [anon_sym_STAR_EQ] = ACTIONS(4740), - [anon_sym_LT_LT_EQ] = ACTIONS(4740), - [anon_sym_PERCENT_EQ] = ACTIONS(4740), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_CARET_EQ] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_COLON] = ACTIONS(4740), - [anon_sym_SLASH_EQ] = ACTIONS(4740), - [anon_sym_PLUS_EQ] = ACTIONS(4740), - [anon_sym_CARET] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_PIPE_EQ] = ACTIONS(4740), - [anon_sym_GT_GT_EQ] = ACTIONS(4740), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_LT_LT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4740), - [anon_sym_DASH_EQ] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_AMP_EQ] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_GT_GT] = ACTIONS(4742), + [3482] = { + [anon_sym_LPAREN2] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4736), + [anon_sym_DASH_GT] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_STAR_EQ] = ACTIONS(4736), + [anon_sym_LT_LT_EQ] = ACTIONS(4736), + [anon_sym_PERCENT_EQ] = ACTIONS(4736), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4738), + [anon_sym_CARET_EQ] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [anon_sym_SLASH] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_COLON] = ACTIONS(4736), + [anon_sym_SLASH_EQ] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4736), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_PIPE_EQ] = ACTIONS(4736), + [anon_sym_GT_GT_EQ] = ACTIONS(4736), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4736), + [anon_sym_DASH_EQ] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_AMP_EQ] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4738), }, - [3511] = { - [sym_enumerator] = STATE(2379), + [3483] = { + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(8887), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(8851), }, - [3512] = { - [aux_sym_enumerator_list_repeat1] = STATE(2381), + [3484] = { + [aux_sym_enumerator_list_repeat1] = STATE(2366), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8889), - [anon_sym_RBRACE] = ACTIONS(8887), + [anon_sym_COMMA] = ACTIONS(8853), + [anon_sym_RBRACE] = ACTIONS(8851), }, - [3513] = { - [anon_sym_LPAREN2] = ACTIONS(5604), - [anon_sym_DASH] = ACTIONS(5606), - [anon_sym_DASH_DASH] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(5604), - [anon_sym_RPAREN] = ACTIONS(5604), - [anon_sym_STAR_EQ] = ACTIONS(5604), - [anon_sym_LT_LT_EQ] = ACTIONS(5604), - [anon_sym_PERCENT_EQ] = ACTIONS(5604), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5604), - [anon_sym_EQ_EQ] = ACTIONS(5604), - [anon_sym_PIPE] = ACTIONS(5606), - [anon_sym_LT] = ACTIONS(5606), - [anon_sym_CARET_EQ] = ACTIONS(5604), - [anon_sym_AMP] = ACTIONS(5606), - [anon_sym_PLUS] = ACTIONS(5606), - [anon_sym_GT_EQ] = ACTIONS(5604), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_SLASH] = ACTIONS(5606), - [anon_sym_RBRACE] = ACTIONS(5604), - [anon_sym_COLON] = ACTIONS(5604), - [anon_sym_SLASH_EQ] = ACTIONS(5604), - [anon_sym_PLUS_EQ] = ACTIONS(5604), - [anon_sym_CARET] = ACTIONS(5606), - [anon_sym_GT] = ACTIONS(5606), - [anon_sym_PIPE_EQ] = ACTIONS(5604), - [anon_sym_GT_GT_EQ] = ACTIONS(5604), - [anon_sym_COMMA] = ACTIONS(5604), - [anon_sym_PIPE_PIPE] = ACTIONS(5604), - [anon_sym_DOT] = ACTIONS(5604), - [anon_sym_LT_LT] = ACTIONS(5606), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_PERCENT] = ACTIONS(5606), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5604), - [anon_sym_DASH_EQ] = ACTIONS(5604), - [anon_sym_SEMI] = ACTIONS(5604), - [anon_sym_BANG_EQ] = ACTIONS(5604), - [anon_sym_AMP_EQ] = ACTIONS(5604), - [anon_sym_AMP_AMP] = ACTIONS(5604), - [anon_sym_LT_EQ] = ACTIONS(5604), - [anon_sym_EQ] = ACTIONS(5606), - [anon_sym_PLUS_PLUS] = ACTIONS(5604), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_GT_GT] = ACTIONS(5606), + [3485] = { + [anon_sym_LPAREN2] = ACTIONS(5610), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_DASH_DASH] = ACTIONS(5610), + [anon_sym_DASH_GT] = ACTIONS(5610), + [anon_sym_RPAREN] = ACTIONS(5610), + [anon_sym_STAR_EQ] = ACTIONS(5610), + [anon_sym_LT_LT_EQ] = ACTIONS(5610), + [anon_sym_PERCENT_EQ] = ACTIONS(5610), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5610), + [anon_sym_PIPE] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5612), + [anon_sym_CARET_EQ] = ACTIONS(5610), + [anon_sym_AMP] = ACTIONS(5612), + [anon_sym_PLUS] = ACTIONS(5612), + [anon_sym_GT_EQ] = ACTIONS(5610), + [anon_sym_STAR] = ACTIONS(5612), + [anon_sym_SLASH] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5610), + [anon_sym_COLON] = ACTIONS(5610), + [anon_sym_SLASH_EQ] = ACTIONS(5610), + [anon_sym_PLUS_EQ] = ACTIONS(5610), + [anon_sym_CARET] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_PIPE_EQ] = ACTIONS(5610), + [anon_sym_GT_GT_EQ] = ACTIONS(5610), + [anon_sym_COMMA] = ACTIONS(5610), + [anon_sym_PIPE_PIPE] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(5610), + [anon_sym_PERCENT] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5610), + [anon_sym_DASH_EQ] = ACTIONS(5610), + [anon_sym_SEMI] = ACTIONS(5610), + [anon_sym_BANG_EQ] = ACTIONS(5610), + [anon_sym_AMP_EQ] = ACTIONS(5610), + [anon_sym_AMP_AMP] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5610), + [anon_sym_EQ] = ACTIONS(5612), + [anon_sym_PLUS_PLUS] = ACTIONS(5610), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_GT_GT] = ACTIONS(5612), }, - [3514] = { - [sym_field_declaration_list] = STATE(4143), - [anon_sym_LBRACE] = ACTIONS(2963), + [3486] = { + [sym_field_declaration_list] = STATE(4113), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, - [3515] = { - [anon_sym_LPAREN2] = ACTIONS(5608), - [anon_sym_DASH] = ACTIONS(5610), - [anon_sym_DASH_DASH] = ACTIONS(5608), - [anon_sym_DASH_GT] = ACTIONS(5608), - [anon_sym_RPAREN] = ACTIONS(5608), - [anon_sym_STAR_EQ] = ACTIONS(5608), - [anon_sym_LT_LT_EQ] = ACTIONS(5608), - [anon_sym_PERCENT_EQ] = ACTIONS(5608), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5608), - [anon_sym_EQ_EQ] = ACTIONS(5608), - [anon_sym_PIPE] = ACTIONS(5610), - [anon_sym_LT] = ACTIONS(5610), - [anon_sym_CARET_EQ] = ACTIONS(5608), - [anon_sym_AMP] = ACTIONS(5610), - [anon_sym_PLUS] = ACTIONS(5610), - [anon_sym_GT_EQ] = ACTIONS(5608), - [anon_sym_STAR] = ACTIONS(5610), - [anon_sym_SLASH] = ACTIONS(5610), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_SLASH_EQ] = ACTIONS(5608), - [anon_sym_PLUS_EQ] = ACTIONS(5608), - [anon_sym_CARET] = ACTIONS(5610), - [anon_sym_GT] = ACTIONS(5610), - [anon_sym_PIPE_EQ] = ACTIONS(5608), - [anon_sym_GT_GT_EQ] = ACTIONS(5608), - [anon_sym_COMMA] = ACTIONS(5608), - [anon_sym_PIPE_PIPE] = ACTIONS(5608), - [anon_sym_DOT] = ACTIONS(5608), - [anon_sym_LT_LT] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5608), - [anon_sym_PERCENT] = ACTIONS(5610), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5608), - [anon_sym_DASH_EQ] = ACTIONS(5608), - [anon_sym_SEMI] = ACTIONS(5608), - [anon_sym_BANG_EQ] = ACTIONS(5608), - [anon_sym_AMP_EQ] = ACTIONS(5608), - [anon_sym_AMP_AMP] = ACTIONS(5608), - [anon_sym_LT_EQ] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_PLUS_PLUS] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(5608), - [anon_sym_GT_GT] = ACTIONS(5610), + [3487] = { + [anon_sym_LPAREN2] = ACTIONS(5614), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5614), + [anon_sym_DASH_GT] = ACTIONS(5614), + [anon_sym_RPAREN] = ACTIONS(5614), + [anon_sym_STAR_EQ] = ACTIONS(5614), + [anon_sym_LT_LT_EQ] = ACTIONS(5614), + [anon_sym_PERCENT_EQ] = ACTIONS(5614), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5614), + [anon_sym_PIPE] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5616), + [anon_sym_CARET_EQ] = ACTIONS(5614), + [anon_sym_AMP] = ACTIONS(5616), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_GT_EQ] = ACTIONS(5614), + [anon_sym_STAR] = ACTIONS(5616), + [anon_sym_SLASH] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5614), + [anon_sym_SLASH_EQ] = ACTIONS(5614), + [anon_sym_PLUS_EQ] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5616), + [anon_sym_PIPE_EQ] = ACTIONS(5614), + [anon_sym_GT_GT_EQ] = ACTIONS(5614), + [anon_sym_COMMA] = ACTIONS(5614), + [anon_sym_PIPE_PIPE] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5614), + [anon_sym_PERCENT] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5614), + [anon_sym_DASH_EQ] = ACTIONS(5614), + [anon_sym_SEMI] = ACTIONS(5614), + [anon_sym_BANG_EQ] = ACTIONS(5614), + [anon_sym_AMP_EQ] = ACTIONS(5614), + [anon_sym_AMP_AMP] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(5616), + [anon_sym_PLUS_PLUS] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5616), }, - [3516] = { - [sym_field_declaration_list] = STATE(4144), - [anon_sym_LBRACE] = ACTIONS(2963), + [3488] = { + [sym_field_declaration_list] = STATE(4114), + [anon_sym_LBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(3), }, - [3517] = { - [sym_new_declarator] = STATE(4145), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_SEMI] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), + [3489] = { + [sym_new_declarator] = STATE(4115), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7530), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_PERCENT] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), + [anon_sym_SEMI] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_EQ] = ACTIONS(7532), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), }, - [3518] = { - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_DASH_GT] = ACTIONS(7553), - [anon_sym_RPAREN] = ACTIONS(7553), - [anon_sym_STAR_EQ] = ACTIONS(7553), - [anon_sym_LT_LT_EQ] = ACTIONS(7553), - [anon_sym_PERCENT_EQ] = ACTIONS(7553), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7553), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_CARET_EQ] = ACTIONS(7553), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7553), - [anon_sym_STAR] = ACTIONS(7555), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_RBRACE] = ACTIONS(7553), - [anon_sym_COLON] = ACTIONS(7553), - [anon_sym_SLASH_EQ] = ACTIONS(7553), - [anon_sym_PLUS_EQ] = ACTIONS(7553), - [anon_sym_CARET] = ACTIONS(7555), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_PIPE_EQ] = ACTIONS(7553), - [anon_sym_GT_GT_EQ] = ACTIONS(7553), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7553), - [anon_sym_LT_LT] = ACTIONS(7555), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_PERCENT] = ACTIONS(7555), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_DASH_EQ] = ACTIONS(7553), - [anon_sym_SEMI] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_AMP_EQ] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_LT_EQ] = ACTIONS(7553), - [anon_sym_EQ] = ACTIONS(7555), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym_DASH_DASH] = ACTIONS(7553), + [3490] = { + [anon_sym_LPAREN2] = ACTIONS(7534), + [anon_sym_DASH] = ACTIONS(7536), + [anon_sym_DASH_GT] = ACTIONS(7534), + [anon_sym_RPAREN] = ACTIONS(7534), + [anon_sym_STAR_EQ] = ACTIONS(7534), + [anon_sym_LT_LT_EQ] = ACTIONS(7534), + [anon_sym_PERCENT_EQ] = ACTIONS(7534), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7534), + [anon_sym_EQ_EQ] = ACTIONS(7534), + [anon_sym_PIPE] = ACTIONS(7536), + [anon_sym_LT] = ACTIONS(7536), + [anon_sym_CARET_EQ] = ACTIONS(7534), + [anon_sym_AMP] = ACTIONS(7536), + [anon_sym_PLUS] = ACTIONS(7536), + [anon_sym_GT_EQ] = ACTIONS(7534), + [anon_sym_STAR] = ACTIONS(7536), + [anon_sym_SLASH] = ACTIONS(7536), + [anon_sym_RBRACE] = ACTIONS(7534), + [anon_sym_COLON] = ACTIONS(7534), + [anon_sym_SLASH_EQ] = ACTIONS(7534), + [anon_sym_PLUS_EQ] = ACTIONS(7534), + [anon_sym_CARET] = ACTIONS(7536), + [anon_sym_GT] = ACTIONS(7536), + [anon_sym_PIPE_EQ] = ACTIONS(7534), + [anon_sym_GT_GT_EQ] = ACTIONS(7534), + [anon_sym_COMMA] = ACTIONS(7534), + [anon_sym_PIPE_PIPE] = ACTIONS(7534), + [anon_sym_DOT] = ACTIONS(7534), + [anon_sym_LT_LT] = ACTIONS(7536), + [anon_sym_LBRACK] = ACTIONS(7534), + [anon_sym_PERCENT] = ACTIONS(7536), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7534), + [anon_sym_DASH_EQ] = ACTIONS(7534), + [anon_sym_SEMI] = ACTIONS(7534), + [anon_sym_BANG_EQ] = ACTIONS(7534), + [anon_sym_AMP_EQ] = ACTIONS(7534), + [anon_sym_AMP_AMP] = ACTIONS(7534), + [anon_sym_LT_EQ] = ACTIONS(7534), + [anon_sym_EQ] = ACTIONS(7536), + [anon_sym_PLUS_PLUS] = ACTIONS(7534), + [anon_sym_GT_GT] = ACTIONS(7536), + [anon_sym_DASH_DASH] = ACTIONS(7534), }, - [3519] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_SEMI] = ACTIONS(7469), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3491] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_SEMI] = ACTIONS(7450), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3520] = { - [anon_sym_LPAREN2] = ACTIONS(6805), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_DASH_DASH] = ACTIONS(6805), - [anon_sym_DASH_GT] = ACTIONS(6805), - [anon_sym_RPAREN] = ACTIONS(6805), - [anon_sym_final] = ACTIONS(6805), - [anon_sym_STAR_EQ] = ACTIONS(6805), - [anon_sym_LT_LT_EQ] = ACTIONS(6805), - [anon_sym_PERCENT_EQ] = ACTIONS(6805), - [anon_sym_COLON_COLON] = ACTIONS(6805), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6805), - [anon_sym_EQ_EQ] = ACTIONS(6805), - [anon_sym_PIPE] = ACTIONS(6807), - [anon_sym_LT] = ACTIONS(6807), - [anon_sym_CARET_EQ] = ACTIONS(6805), - [anon_sym_AMP] = ACTIONS(6807), - [anon_sym_PLUS] = ACTIONS(6807), - [anon_sym_GT_EQ] = ACTIONS(6805), - [anon_sym_STAR] = ACTIONS(6807), - [anon_sym_SLASH] = ACTIONS(6807), - [anon_sym_RBRACE] = ACTIONS(6805), - [anon_sym_override] = ACTIONS(6805), - [anon_sym_COLON] = ACTIONS(6807), - [anon_sym_SLASH_EQ] = ACTIONS(6805), - [anon_sym_PLUS_EQ] = ACTIONS(6805), - [anon_sym_CARET] = ACTIONS(6807), - [anon_sym_GT] = ACTIONS(6807), - [anon_sym_PIPE_EQ] = ACTIONS(6805), - [anon_sym_GT_GT_EQ] = ACTIONS(6805), - [anon_sym_COMMA] = ACTIONS(6805), - [anon_sym_PIPE_PIPE] = ACTIONS(6805), - [anon_sym_DOT] = ACTIONS(6805), - [anon_sym_LT_LT] = ACTIONS(6807), - [anon_sym_LBRACK] = ACTIONS(6805), - [anon_sym_PERCENT] = ACTIONS(6807), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6805), - [anon_sym_DASH_EQ] = ACTIONS(6805), - [anon_sym_SEMI] = ACTIONS(6805), - [anon_sym_BANG_EQ] = ACTIONS(6805), - [anon_sym_AMP_EQ] = ACTIONS(6805), - [anon_sym_AMP_AMP] = ACTIONS(6805), - [anon_sym_LT_EQ] = ACTIONS(6805), - [anon_sym_EQ] = ACTIONS(6807), - [anon_sym_PLUS_PLUS] = ACTIONS(6805), - [anon_sym_LBRACE] = ACTIONS(6805), - [anon_sym_GT_GT] = ACTIONS(6807), + [3492] = { + [anon_sym_LPAREN2] = ACTIONS(6794), + [anon_sym_DASH] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6794), + [anon_sym_DASH_GT] = ACTIONS(6794), + [anon_sym_RPAREN] = ACTIONS(6794), + [anon_sym_final] = ACTIONS(6794), + [anon_sym_STAR_EQ] = ACTIONS(6794), + [anon_sym_LT_LT_EQ] = ACTIONS(6794), + [anon_sym_PERCENT_EQ] = ACTIONS(6794), + [anon_sym_COLON_COLON] = ACTIONS(6794), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6794), + [anon_sym_PIPE] = ACTIONS(6796), + [anon_sym_LT] = ACTIONS(6796), + [anon_sym_CARET_EQ] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6796), + [anon_sym_PLUS] = ACTIONS(6796), + [anon_sym_GT_EQ] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6796), + [anon_sym_SLASH] = ACTIONS(6796), + [anon_sym_RBRACE] = ACTIONS(6794), + [anon_sym_override] = ACTIONS(6794), + [anon_sym_COLON] = ACTIONS(6796), + [anon_sym_SLASH_EQ] = ACTIONS(6794), + [anon_sym_PLUS_EQ] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6796), + [anon_sym_PIPE_EQ] = ACTIONS(6794), + [anon_sym_GT_GT_EQ] = ACTIONS(6794), + [anon_sym_COMMA] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6794), + [anon_sym_DASH_EQ] = ACTIONS(6794), + [anon_sym_SEMI] = ACTIONS(6794), + [anon_sym_BANG_EQ] = ACTIONS(6794), + [anon_sym_AMP_EQ] = ACTIONS(6794), + [anon_sym_AMP_AMP] = ACTIONS(6794), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6794), + [anon_sym_LBRACE] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6796), }, - [3521] = { - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_final] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_COLON_COLON] = ACTIONS(6812), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_RBRACE] = ACTIONS(6812), - [anon_sym_override] = ACTIONS(6812), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6812), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_PERCENT] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_SEMI] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6814), + [3493] = { + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6801), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6801), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_PERCENT] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_SEMI] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6803), }, - [3522] = { - [anon_sym_LPAREN2] = ACTIONS(6926), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_DASH_GT] = ACTIONS(6926), - [anon_sym_RPAREN] = ACTIONS(6926), - [anon_sym_STAR_EQ] = ACTIONS(6926), - [anon_sym_LT_LT_EQ] = ACTIONS(6926), - [anon_sym_PERCENT_EQ] = ACTIONS(6926), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_PIPE] = ACTIONS(6928), - [anon_sym_LT] = ACTIONS(6928), - [anon_sym_CARET_EQ] = ACTIONS(6926), - [anon_sym_AMP] = ACTIONS(6928), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_GT_EQ] = ACTIONS(6926), - [anon_sym_STAR] = ACTIONS(6928), - [anon_sym_SLASH] = ACTIONS(6928), - [anon_sym_RBRACE] = ACTIONS(6926), - [anon_sym_COLON] = ACTIONS(6926), - [anon_sym_SLASH_EQ] = ACTIONS(6926), - [anon_sym_PLUS_EQ] = ACTIONS(6926), - [anon_sym_CARET] = ACTIONS(6928), - [anon_sym_GT] = ACTIONS(6928), - [anon_sym_PIPE_EQ] = ACTIONS(6926), - [anon_sym_GT_GT_EQ] = ACTIONS(6926), - [anon_sym_COMMA] = ACTIONS(6926), - [anon_sym_PIPE_PIPE] = ACTIONS(6926), - [anon_sym_DOT] = ACTIONS(6926), - [anon_sym_LT_LT] = ACTIONS(6928), - [anon_sym_LBRACK] = ACTIONS(6926), - [anon_sym_PERCENT] = ACTIONS(6928), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6926), - [anon_sym_DASH_EQ] = ACTIONS(6926), - [anon_sym_SEMI] = ACTIONS(6926), - [anon_sym_BANG_EQ] = ACTIONS(6926), - [anon_sym_AMP_EQ] = ACTIONS(6926), - [anon_sym_AMP_AMP] = ACTIONS(6926), - [anon_sym_LT_EQ] = ACTIONS(6926), - [anon_sym_EQ] = ACTIONS(6928), - [anon_sym_PLUS_PLUS] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6928), - [anon_sym_DASH_DASH] = ACTIONS(6926), + [3494] = { + [anon_sym_LPAREN2] = ACTIONS(6915), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_DASH_GT] = ACTIONS(6915), + [anon_sym_RPAREN] = ACTIONS(6915), + [anon_sym_STAR_EQ] = ACTIONS(6915), + [anon_sym_LT_LT_EQ] = ACTIONS(6915), + [anon_sym_PERCENT_EQ] = ACTIONS(6915), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(6915), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_CARET_EQ] = ACTIONS(6915), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6915), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_RBRACE] = ACTIONS(6915), + [anon_sym_COLON] = ACTIONS(6915), + [anon_sym_SLASH_EQ] = ACTIONS(6915), + [anon_sym_PLUS_EQ] = ACTIONS(6915), + [anon_sym_CARET] = ACTIONS(6917), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_PIPE_EQ] = ACTIONS(6915), + [anon_sym_GT_GT_EQ] = ACTIONS(6915), + [anon_sym_COMMA] = ACTIONS(6915), + [anon_sym_PIPE_PIPE] = ACTIONS(6915), + [anon_sym_DOT] = ACTIONS(6915), + [anon_sym_LT_LT] = ACTIONS(6917), + [anon_sym_LBRACK] = ACTIONS(6915), + [anon_sym_PERCENT] = ACTIONS(6917), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6915), + [anon_sym_DASH_EQ] = ACTIONS(6915), + [anon_sym_SEMI] = ACTIONS(6915), + [anon_sym_BANG_EQ] = ACTIONS(6915), + [anon_sym_AMP_EQ] = ACTIONS(6915), + [anon_sym_AMP_AMP] = ACTIONS(6915), + [anon_sym_LT_EQ] = ACTIONS(6915), + [anon_sym_EQ] = ACTIONS(6917), + [anon_sym_PLUS_PLUS] = ACTIONS(6915), + [anon_sym_GT_GT] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6915), }, - [3523] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [3495] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(8893), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(8857), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [3524] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8895), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_SEMI] = ACTIONS(8131), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3496] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8859), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_SEMI] = ACTIONS(8176), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3525] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3525), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_final] = ACTIONS(2082), - [sym_noexcept] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(8899), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(8899), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(8899), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(8899), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), + [3497] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3497), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_final] = ACTIONS(1783), + [sym_noexcept] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(8863), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(8863), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(8863), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(8863), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1783), }, - [3526] = { - [sym_parameter_list] = STATE(3528), - [sym_abstract_array_declarator] = STATE(4147), - [sym_abstract_pointer_declarator] = STATE(4147), - [sym_abstract_reference_declarator] = STATE(4147), - [sym_abstract_function_declarator] = STATE(4147), - [sym__abstract_declarator] = STATE(4147), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7516), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(7518), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(7520), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), + [3498] = { + [sym_abstract_reference_declarator] = STATE(4117), + [sym_abstract_array_declarator] = STATE(4117), + [sym_abstract_pointer_declarator] = STATE(4117), + [sym_parameter_list] = STATE(3500), + [sym_abstract_function_declarator] = STATE(4117), + [sym__abstract_declarator] = STATE(4117), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7497), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(7499), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), }, - [3527] = { - [sym_abstract_array_declarator] = STATE(4149), - [sym_parameter_list] = STATE(3528), - [sym_abstract_reference_declarator] = STATE(4149), - [sym_abstract_function_declarator] = STATE(4149), - [aux_sym_type_definition_repeat1] = STATE(4148), - [sym_abstract_pointer_declarator] = STATE(4149), - [sym_type_qualifier] = STATE(4148), - [sym__abstract_declarator] = STATE(4149), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [3499] = { + [sym_abstract_reference_declarator] = STATE(4119), + [aux_sym_type_definition_repeat1] = STATE(4118), + [sym_abstract_array_declarator] = STATE(4119), + [sym_parameter_list] = STATE(3500), + [sym_abstract_function_declarator] = STATE(4119), + [sym_abstract_pointer_declarator] = STATE(4119), + [sym_type_qualifier] = STATE(4118), + [sym__abstract_declarator] = STATE(4119), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7516), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(7518), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(7520), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7497), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(7499), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(1070), }, - [3528] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4150), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4150), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [anon_sym_volatile] = ACTIONS(1062), - [sym_noexcept] = ACTIONS(8902), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(1062), + [3500] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4120), + [sym_type_qualifier] = STATE(4120), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [anon_sym_volatile] = ACTIONS(1070), + [sym_noexcept] = ACTIONS(8866), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [3529] = { - [sym_parameter_list] = STATE(4151), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [anon_sym_volatile] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), - [anon_sym_constexpr] = ACTIONS(8186), + [3501] = { + [sym_parameter_list] = STATE(4121), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [anon_sym_volatile] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), + [anon_sym_constexpr] = ACTIONS(8038), [sym_comment] = ACTIONS(3), }, - [3530] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_DASH_GT] = ACTIONS(2709), - [anon_sym_RPAREN] = ACTIONS(2709), - [anon_sym_STAR_EQ] = ACTIONS(2709), - [anon_sym_LT_LT_EQ] = ACTIONS(2709), - [anon_sym_PERCENT_EQ] = ACTIONS(2709), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2709), - [anon_sym_EQ_EQ] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_CARET_EQ] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_COLON] = ACTIONS(2709), - [anon_sym_SLASH_EQ] = ACTIONS(2709), - [anon_sym_PLUS_EQ] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_PIPE_EQ] = ACTIONS(2709), - [anon_sym_GT_GT_EQ] = ACTIONS(2709), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_PIPE_PIPE] = ACTIONS(2709), - [anon_sym_DOT] = ACTIONS(2709), - [anon_sym_LT_LT] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_DASH_EQ] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_BANG_EQ] = ACTIONS(2709), - [anon_sym_AMP_EQ] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - }, - [3531] = { - [anon_sym_LPAREN2] = ACTIONS(7540), - [anon_sym_DASH] = ACTIONS(7542), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7540), - [anon_sym_EQ_EQ] = ACTIONS(7540), - [anon_sym_PIPE] = ACTIONS(7542), - [anon_sym_LT] = ACTIONS(7542), - [anon_sym_AMP] = ACTIONS(7542), - [anon_sym_PLUS] = ACTIONS(7542), - [anon_sym_GT_EQ] = ACTIONS(7540), - [anon_sym_STAR] = ACTIONS(7540), - [anon_sym_SLASH] = ACTIONS(7542), - [anon_sym_RBRACE] = ACTIONS(7540), - [anon_sym_COLON] = ACTIONS(7540), - [anon_sym_CARET] = ACTIONS(7540), - [anon_sym_GT] = ACTIONS(7542), - [anon_sym_COMMA] = ACTIONS(7540), - [anon_sym_PIPE_PIPE] = ACTIONS(7540), - [anon_sym_DOT] = ACTIONS(7540), - [anon_sym_LT_LT] = ACTIONS(7540), - [anon_sym_LBRACK] = ACTIONS(7540), - [anon_sym_PERCENT] = ACTIONS(7540), + [3502] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_DASH_GT] = ACTIONS(2711), + [anon_sym_RPAREN] = ACTIONS(2711), + [anon_sym_STAR_EQ] = ACTIONS(2711), + [anon_sym_LT_LT_EQ] = ACTIONS(2711), + [anon_sym_PERCENT_EQ] = ACTIONS(2711), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2711), + [anon_sym_EQ_EQ] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_CARET_EQ] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_COLON] = ACTIONS(2711), + [anon_sym_SLASH_EQ] = ACTIONS(2711), + [anon_sym_PLUS_EQ] = ACTIONS(2711), + [anon_sym_CARET] = ACTIONS(2709), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_PIPE_EQ] = ACTIONS(2711), + [anon_sym_GT_GT_EQ] = ACTIONS(2711), + [anon_sym_COMMA] = ACTIONS(2711), + [anon_sym_PIPE_PIPE] = ACTIONS(2711), + [anon_sym_DOT] = ACTIONS(2711), + [anon_sym_LT_LT] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_PERCENT] = ACTIONS(2709), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7540), - [anon_sym_SEMI] = ACTIONS(7540), - [anon_sym_BANG_EQ] = ACTIONS(7540), - [anon_sym_LT_EQ] = ACTIONS(7540), - [anon_sym_AMP_AMP] = ACTIONS(7540), - [anon_sym_DASH_GT] = ACTIONS(7540), - [anon_sym_PLUS_PLUS] = ACTIONS(7540), - [anon_sym_RPAREN] = ACTIONS(7540), - [anon_sym_GT_GT] = ACTIONS(7540), - [anon_sym_DASH_DASH] = ACTIONS(7540), + [anon_sym_QMARK] = ACTIONS(2711), + [anon_sym_DASH_EQ] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_BANG_EQ] = ACTIONS(2711), + [anon_sym_AMP_EQ] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_LT_EQ] = ACTIONS(2711), + [anon_sym_EQ] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), }, - [3532] = { - [anon_sym_LPAREN2] = ACTIONS(8904), - [anon_sym_DASH] = ACTIONS(8906), - [anon_sym_GT_GT] = ACTIONS(8904), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8904), - [anon_sym_EQ_EQ] = ACTIONS(8904), - [anon_sym_PIPE] = ACTIONS(8906), - [anon_sym_LT] = ACTIONS(8906), - [anon_sym_AMP] = ACTIONS(8906), - [anon_sym_PLUS] = ACTIONS(8906), - [anon_sym_GT_EQ] = ACTIONS(8904), - [anon_sym_STAR] = ACTIONS(8904), - [anon_sym_SLASH] = ACTIONS(8906), - [anon_sym_RBRACE] = ACTIONS(8904), - [anon_sym_COLON] = ACTIONS(8904), - [anon_sym_CARET] = ACTIONS(8904), - [anon_sym_GT] = ACTIONS(8906), - [anon_sym_COMMA] = ACTIONS(8904), - [anon_sym_PIPE_PIPE] = ACTIONS(8904), - [anon_sym_DOT] = ACTIONS(8904), - [anon_sym_LT_LT] = ACTIONS(8904), - [anon_sym_LBRACK] = ACTIONS(8904), - [anon_sym_PERCENT] = ACTIONS(8904), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8904), - [anon_sym_SEMI] = ACTIONS(8904), - [anon_sym_BANG_EQ] = ACTIONS(8904), - [anon_sym_LT_EQ] = ACTIONS(8904), - [anon_sym_AMP_AMP] = ACTIONS(8904), - [anon_sym_DASH_GT] = ACTIONS(8904), - [anon_sym_PLUS_PLUS] = ACTIONS(8904), - [anon_sym_RPAREN] = ACTIONS(8904), - [anon_sym_LBRACE] = ACTIONS(8904), - [anon_sym_DASH_DASH] = ACTIONS(8904), + [3503] = { + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_GT_EQ] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_RBRACE] = ACTIONS(7521), + [anon_sym_COLON] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7521), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_PERCENT] = ACTIONS(7521), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_SEMI] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7521), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_RPAREN] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym_DASH_DASH] = ACTIONS(7521), }, - [3533] = { - [anon_sym_DASH] = ACTIONS(8908), - [sym_raw_string_literal] = ACTIONS(8910), - [anon_sym_else] = ACTIONS(8908), - [sym_true] = ACTIONS(8908), - [anon_sym_mutable] = ACTIONS(8908), - [sym_null] = ACTIONS(8908), - [anon_sym_break] = ACTIONS(8908), - [anon_sym_BANG] = ACTIONS(8910), - [anon_sym_sizeof] = ACTIONS(8908), - [anon_sym_volatile] = ACTIONS(8908), - [anon_sym_PLUS] = ACTIONS(8908), - [anon_sym_typedef] = ACTIONS(8908), - [anon_sym_switch] = ACTIONS(8908), - [anon_sym_explicit] = ACTIONS(8908), - [sym_identifier] = ACTIONS(8908), - [anon_sym_delete] = ACTIONS(8908), - [anon_sym_continue] = ACTIONS(8908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8908), - [anon_sym__Atomic] = ACTIONS(8908), - [sym_number_literal] = ACTIONS(8910), - [anon_sym_extern] = ACTIONS(8908), - [anon_sym_enum] = ACTIONS(8908), - [anon_sym_constexpr] = ACTIONS(8908), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8910), - [anon_sym_namespace] = ACTIONS(8908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8908), - [anon_sym_SQUOTE] = ACTIONS(8910), - [anon_sym_LBRACE] = ACTIONS(8910), - [anon_sym_DASH_DASH] = ACTIONS(8910), - [anon_sym_LPAREN2] = ACTIONS(8910), - [anon_sym_struct] = ACTIONS(8908), - [sym_auto] = ACTIONS(8908), - [anon_sym_signed] = ACTIONS(8908), - [anon_sym_long] = ACTIONS(8908), - [anon_sym_COLON_COLON] = ACTIONS(8910), - [anon_sym_using] = ACTIONS(8908), - [sym_preproc_directive] = ACTIONS(8908), - [aux_sym_preproc_if_token1] = ACTIONS(8908), - [anon_sym_AMP] = ACTIONS(8908), - [anon_sym_static] = ACTIONS(8908), - [anon_sym_RBRACE] = ACTIONS(8910), - [anon_sym_STAR] = ACTIONS(8910), - [anon_sym_union] = ACTIONS(8908), - [anon_sym_typename] = ACTIONS(8908), - [anon_sym_short] = ACTIONS(8908), - [anon_sym_new] = ACTIONS(8908), - [anon_sym_goto] = ACTIONS(8908), - [sym_operator_name] = ACTIONS(8910), - [anon_sym_while] = ACTIONS(8908), - [anon_sym_try] = ACTIONS(8908), - [anon_sym_for] = ACTIONS(8908), - [aux_sym_preproc_include_token1] = ACTIONS(8908), - [anon_sym_register] = ACTIONS(8908), - [anon_sym_DQUOTE] = ACTIONS(8910), - [anon_sym_const] = ACTIONS(8908), - [anon_sym_LBRACK] = ACTIONS(8908), - [anon_sym_class] = ACTIONS(8908), - [anon_sym_if] = ACTIONS(8908), - [sym_primitive_type] = ACTIONS(8908), - [sym_false] = ACTIONS(8908), - [sym_nullptr] = ACTIONS(8908), - [anon_sym_do] = ACTIONS(8908), - [anon_sym_template] = ACTIONS(8908), - [anon_sym_return] = ACTIONS(8908), - [anon_sym_TILDE] = ACTIONS(8910), - [anon_sym_SEMI] = ACTIONS(8910), - [ts_builtin_sym_end] = ACTIONS(8910), - [aux_sym_preproc_def_token1] = ACTIONS(8908), - [anon_sym_AMP_AMP] = ACTIONS(8910), - [anon_sym_inline] = ACTIONS(8908), - [anon_sym_PLUS_PLUS] = ACTIONS(8910), - [anon_sym_restrict] = ACTIONS(8908), + [3504] = { + [anon_sym_LPAREN2] = ACTIONS(8868), + [anon_sym_DASH] = ACTIONS(8870), + [anon_sym_GT_GT] = ACTIONS(8868), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8868), + [anon_sym_EQ_EQ] = ACTIONS(8868), + [anon_sym_PIPE] = ACTIONS(8870), + [anon_sym_LT] = ACTIONS(8870), + [anon_sym_AMP] = ACTIONS(8870), + [anon_sym_PLUS] = ACTIONS(8870), + [anon_sym_GT_EQ] = ACTIONS(8868), + [anon_sym_STAR] = ACTIONS(8868), + [anon_sym_SLASH] = ACTIONS(8870), + [anon_sym_RBRACE] = ACTIONS(8868), + [anon_sym_COLON] = ACTIONS(8868), + [anon_sym_CARET] = ACTIONS(8868), + [anon_sym_GT] = ACTIONS(8870), + [anon_sym_COMMA] = ACTIONS(8868), + [anon_sym_PIPE_PIPE] = ACTIONS(8868), + [anon_sym_DOT] = ACTIONS(8868), + [anon_sym_LT_LT] = ACTIONS(8868), + [anon_sym_LBRACK] = ACTIONS(8868), + [anon_sym_PERCENT] = ACTIONS(8868), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8868), + [anon_sym_SEMI] = ACTIONS(8868), + [anon_sym_BANG_EQ] = ACTIONS(8868), + [anon_sym_LT_EQ] = ACTIONS(8868), + [anon_sym_AMP_AMP] = ACTIONS(8868), + [anon_sym_DASH_GT] = ACTIONS(8868), + [anon_sym_PLUS_PLUS] = ACTIONS(8868), + [anon_sym_RPAREN] = ACTIONS(8868), + [anon_sym_LBRACE] = ACTIONS(8868), + [anon_sym_DASH_DASH] = ACTIONS(8868), }, - [3534] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4152), - [sym_logical_expression] = STATE(4152), - [sym_bitwise_expression] = STATE(4152), - [sym_cast_expression] = STATE(4152), - [sym_new_expression] = STATE(4152), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4152), - [sym_char_literal] = STATE(4152), - [sym_template_function] = STATE(4152), - [sym_conditional_expression] = STATE(4152), - [sym_equality_expression] = STATE(4152), - [sym_relational_expression] = STATE(4152), - [sym_delete_expression] = STATE(4152), - [sym_sizeof_expression] = STATE(4152), - [sym_parenthesized_expression] = STATE(4152), - [sym_lambda_expression] = STATE(4152), - [sym_concatenated_string] = STATE(4152), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4152), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4152), - [sym_math_expression] = STATE(4152), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8912), + [3505] = { + [anon_sym_DASH] = ACTIONS(8872), + [sym_raw_string_literal] = ACTIONS(8874), + [anon_sym_else] = ACTIONS(8872), + [sym_true] = ACTIONS(8872), + [anon_sym_mutable] = ACTIONS(8872), + [sym_null] = ACTIONS(8872), + [anon_sym_break] = ACTIONS(8872), + [anon_sym_BANG] = ACTIONS(8874), + [anon_sym_sizeof] = ACTIONS(8872), + [anon_sym_volatile] = ACTIONS(8872), + [anon_sym_PLUS] = ACTIONS(8872), + [anon_sym_typedef] = ACTIONS(8872), + [anon_sym_switch] = ACTIONS(8872), + [anon_sym_explicit] = ACTIONS(8872), + [sym_identifier] = ACTIONS(8872), + [anon_sym_delete] = ACTIONS(8872), + [anon_sym_continue] = ACTIONS(8872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8872), + [anon_sym__Atomic] = ACTIONS(8872), + [sym_number_literal] = ACTIONS(8874), + [anon_sym_extern] = ACTIONS(8872), + [anon_sym_enum] = ACTIONS(8872), + [anon_sym_constexpr] = ACTIONS(8872), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8872), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8874), + [anon_sym_namespace] = ACTIONS(8872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8872), + [anon_sym_SQUOTE] = ACTIONS(8874), + [anon_sym_LBRACE] = ACTIONS(8874), + [anon_sym_DASH_DASH] = ACTIONS(8874), + [anon_sym_LPAREN2] = ACTIONS(8874), + [anon_sym_struct] = ACTIONS(8872), + [sym_auto] = ACTIONS(8872), + [anon_sym_signed] = ACTIONS(8872), + [anon_sym_long] = ACTIONS(8872), + [anon_sym_COLON_COLON] = ACTIONS(8874), + [anon_sym_using] = ACTIONS(8872), + [sym_preproc_directive] = ACTIONS(8872), + [aux_sym_preproc_if_token1] = ACTIONS(8872), + [anon_sym_AMP] = ACTIONS(8872), + [anon_sym_static] = ACTIONS(8872), + [anon_sym_RBRACE] = ACTIONS(8874), + [anon_sym_STAR] = ACTIONS(8874), + [anon_sym_union] = ACTIONS(8872), + [anon_sym_typename] = ACTIONS(8872), + [anon_sym_short] = ACTIONS(8872), + [anon_sym_new] = ACTIONS(8872), + [anon_sym_goto] = ACTIONS(8872), + [sym_operator_name] = ACTIONS(8874), + [anon_sym_while] = ACTIONS(8872), + [anon_sym_try] = ACTIONS(8872), + [anon_sym_for] = ACTIONS(8872), + [aux_sym_preproc_include_token1] = ACTIONS(8872), + [anon_sym_register] = ACTIONS(8872), + [anon_sym_DQUOTE] = ACTIONS(8874), + [anon_sym_const] = ACTIONS(8872), + [anon_sym_LBRACK] = ACTIONS(8872), + [anon_sym_class] = ACTIONS(8872), + [anon_sym_if] = ACTIONS(8872), + [sym_primitive_type] = ACTIONS(8872), + [sym_false] = ACTIONS(8872), + [sym_nullptr] = ACTIONS(8872), + [anon_sym_do] = ACTIONS(8872), + [anon_sym_template] = ACTIONS(8872), + [anon_sym_return] = ACTIONS(8872), + [anon_sym_TILDE] = ACTIONS(8874), + [anon_sym_SEMI] = ACTIONS(8874), + [ts_builtin_sym_end] = ACTIONS(8874), + [aux_sym_preproc_def_token1] = ACTIONS(8872), + [anon_sym_AMP_AMP] = ACTIONS(8874), + [anon_sym_inline] = ACTIONS(8872), + [anon_sym_PLUS_PLUS] = ACTIONS(8874), + [anon_sym_restrict] = ACTIONS(8872), + }, + [3506] = { + [sym_template_function] = STATE(4122), + [sym__expression] = STATE(4122), + [sym_logical_expression] = STATE(4122), + [sym_bitwise_expression] = STATE(4122), + [sym_cast_expression] = STATE(4122), + [sym_delete_expression] = STATE(4122), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4122), + [sym_lambda_expression] = STATE(4122), + [sym_char_literal] = STATE(4122), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4122), + [sym_equality_expression] = STATE(4122), + [sym_relational_expression] = STATE(4122), + [sym_sizeof_expression] = STATE(4122), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4122), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4122), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4122), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4122), + [sym_math_expression] = STATE(4122), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4122), + [sym_raw_string_literal] = ACTIONS(8876), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(8914), - [sym_null] = ACTIONS(8914), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(8878), + [sym_null] = ACTIONS(8878), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8912), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(8876), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(8914), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(8914), + [sym_false] = ACTIONS(8878), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(8878), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [3535] = { - [sym_do_statement] = STATE(4153), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3507] = { + [sym_do_statement] = STATE(4123), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4153), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4153), - [sym_if_statement] = STATE(4153), - [sym_switch_statement] = STATE(4153), - [sym_for_statement] = STATE(4153), - [sym_return_statement] = STATE(4153), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4123), + [sym_try_statement] = STATE(4123), + [sym_if_statement] = STATE(4123), + [sym_switch_statement] = STATE(4123), + [sym_for_statement] = STATE(4123), + [sym_return_statement] = STATE(4123), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4153), - [sym_break_statement] = STATE(4153), - [sym_continue_statement] = STATE(4153), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4123), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4153), - [sym_labeled_statement] = STATE(4153), - [sym_expression_statement] = STATE(4153), - [sym_while_statement] = STATE(4153), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4123), + [sym_for_range_loop] = STATE(4123), + [sym_compound_statement] = STATE(4123), + [sym_labeled_statement] = STATE(4123), + [sym_expression_statement] = STATE(4123), + [sym_while_statement] = STATE(4123), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -145451,7 +144926,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -145475,214 +144950,178 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3536] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(8916), + [3508] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(8880), [sym_comment] = ACTIONS(3), }, - [3537] = { - [aux_sym_for_statement_repeat1] = STATE(4156), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(8916), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3509] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4126), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(8880), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3538] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4157), - [sym_logical_expression] = STATE(4157), - [sym_bitwise_expression] = STATE(4157), - [sym_cast_expression] = STATE(4157), - [sym_new_expression] = STATE(4157), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4157), - [sym_char_literal] = STATE(4157), - [sym_template_function] = STATE(4157), - [sym_conditional_expression] = STATE(4157), - [sym_equality_expression] = STATE(4157), - [sym_relational_expression] = STATE(4157), - [sym_delete_expression] = STATE(4157), - [sym_sizeof_expression] = STATE(4157), - [sym_parenthesized_expression] = STATE(4157), - [sym_lambda_expression] = STATE(4157), - [sym_concatenated_string] = STATE(4157), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4157), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4157), - [sym_math_expression] = STATE(4157), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8918), + [3510] = { + [sym_template_function] = STATE(4127), + [sym__expression] = STATE(4127), + [sym_logical_expression] = STATE(4127), + [sym_bitwise_expression] = STATE(4127), + [sym_cast_expression] = STATE(4127), + [sym_delete_expression] = STATE(4127), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4127), + [sym_lambda_expression] = STATE(4127), + [sym_char_literal] = STATE(4127), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4127), + [sym_equality_expression] = STATE(4127), + [sym_relational_expression] = STATE(4127), + [sym_sizeof_expression] = STATE(4127), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4127), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4127), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4127), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4127), + [sym_math_expression] = STATE(4127), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4127), + [sym_raw_string_literal] = ACTIONS(8882), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(8920), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(8920), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(8884), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(8884), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8918), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(8882), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(8920), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(8920), + [sym_false] = ACTIONS(8884), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(8884), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(8916), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(8880), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [3539] = { - [sym_parameter_list] = STATE(2611), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_SEMI] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(4958), - [anon_sym_LBRACE] = ACTIONS(4958), - [sym_comment] = ACTIONS(3), - }, - [3540] = { - [sym_virtual_specifier] = STATE(4128), - [aux_sym_function_declarator_repeat1] = STATE(4128), - [sym_trailing_return_type] = STATE(4128), - [sym_type_qualifier] = STATE(4128), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(8868), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(4011), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(4011), - [anon_sym_COLON] = ACTIONS(4011), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(7453), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4011), - }, - [3541] = { - [anon_sym_LPAREN2] = ACTIONS(6356), - [anon_sym_DASH] = ACTIONS(6354), - [sym_raw_string_literal] = ACTIONS(6356), - [sym_true] = ACTIONS(6354), - [sym_null] = ACTIONS(6354), - [anon_sym_DQUOTE] = ACTIONS(6356), - [sym_number_literal] = ACTIONS(6356), - [anon_sym_COLON_COLON] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(6356), - [anon_sym_BANG] = ACTIONS(6356), - [anon_sym_AMP] = ACTIONS(6356), - [anon_sym_sizeof] = ACTIONS(6354), - [sym_false] = ACTIONS(6354), - [anon_sym_PLUS] = ACTIONS(6354), - [sym_nullptr] = ACTIONS(6354), - [anon_sym_STAR] = ACTIONS(6356), - [anon_sym_TILDE] = ACTIONS(6356), - [anon_sym_SEMI] = ACTIONS(6356), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6354), - [anon_sym_new] = ACTIONS(6354), - [anon_sym_PLUS_PLUS] = ACTIONS(6356), - [anon_sym_SQUOTE] = ACTIONS(6356), - [anon_sym_delete] = ACTIONS(6354), - [anon_sym_DASH_DASH] = ACTIONS(6356), + [3511] = { + [anon_sym_LPAREN2] = ACTIONS(5921), + [anon_sym_DASH] = ACTIONS(5919), + [sym_raw_string_literal] = ACTIONS(5921), + [sym_true] = ACTIONS(5919), + [sym_null] = ACTIONS(5919), + [anon_sym_DQUOTE] = ACTIONS(5921), + [sym_number_literal] = ACTIONS(5921), + [anon_sym_COLON_COLON] = ACTIONS(5921), + [anon_sym_LBRACK] = ACTIONS(5921), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_AMP] = ACTIONS(5921), + [anon_sym_sizeof] = ACTIONS(5919), + [sym_false] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5919), + [sym_nullptr] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_TILDE] = ACTIONS(5921), + [anon_sym_SEMI] = ACTIONS(5921), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(5919), + [anon_sym_new] = ACTIONS(5919), + [anon_sym_PLUS_PLUS] = ACTIONS(5921), + [anon_sym_SQUOTE] = ACTIONS(5921), + [anon_sym_delete] = ACTIONS(5919), + [anon_sym_DASH_DASH] = ACTIONS(5921), }, - [3542] = { - [aux_sym_declaration_repeat1] = STATE(2028), + [3512] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(8922), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(8886), }, - [3543] = { - [sym_do_statement] = STATE(4159), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3513] = { + [sym_do_statement] = STATE(4129), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4159), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4159), - [sym_if_statement] = STATE(4159), - [sym_switch_statement] = STATE(4159), - [sym_for_statement] = STATE(4159), - [sym_return_statement] = STATE(4159), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4129), + [sym_try_statement] = STATE(4129), + [sym_if_statement] = STATE(4129), + [sym_switch_statement] = STATE(4129), + [sym_for_statement] = STATE(4129), + [sym_return_statement] = STATE(4129), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4159), - [sym_break_statement] = STATE(4159), - [sym_continue_statement] = STATE(4159), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4129), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4159), - [sym_labeled_statement] = STATE(4159), - [sym_expression_statement] = STATE(4159), - [sym_while_statement] = STATE(4159), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4129), + [sym_for_range_loop] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_labeled_statement] = STATE(4129), + [sym_expression_statement] = STATE(4129), + [sym_while_statement] = STATE(4129), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -145696,7 +145135,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -145720,1458 +145159,1496 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3544] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(7469), - }, - [3545] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(4983), - [anon_sym_LT_LT_EQ] = ACTIONS(4983), - [anon_sym_PERCENT_EQ] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_CARET_EQ] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_SLASH_EQ] = ACTIONS(4983), - [anon_sym_PLUS_EQ] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_PIPE_EQ] = ACTIONS(4983), - [anon_sym_GT_GT_EQ] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(4981), + [3514] = { + [sym_parameter_list] = STATE(2598), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4954), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_DASH_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_AMP_EQ] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4983), }, - [3546] = { - [anon_sym_LPAREN2] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_STAR_EQ] = ACTIONS(4985), - [anon_sym_LT_LT_EQ] = ACTIONS(4985), - [anon_sym_PERCENT_EQ] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_CARET_EQ] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_SLASH_EQ] = ACTIONS(4985), - [anon_sym_PLUS_EQ] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_PIPE_EQ] = ACTIONS(4985), - [anon_sym_GT_GT_EQ] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4987), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4985), - [anon_sym_DASH_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_AMP_EQ] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_GT_GT] = ACTIONS(4987), - [anon_sym_RBRACK] = ACTIONS(4985), + [3515] = { + [sym_virtual_specifier] = STATE(4099), + [aux_sym_function_declarator_repeat1] = STATE(4099), + [sym_type_qualifier] = STATE(4099), + [sym_trailing_return_type] = STATE(4099), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(8836), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(4059), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4059), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(7438), + [anon_sym_EQ] = ACTIONS(4059), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(4059), }, - [3547] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(4160), - [sym_logical_expression] = STATE(4160), - [sym_bitwise_expression] = STATE(4160), - [sym_cast_expression] = STATE(4160), - [sym_new_expression] = STATE(4160), - [sym_field_expression] = STATE(4160), - [sym_compound_literal_expression] = STATE(4160), - [sym_char_literal] = STATE(4160), - [sym_template_function] = STATE(4160), - [sym_conditional_expression] = STATE(4160), - [sym_equality_expression] = STATE(4160), - [sym_relational_expression] = STATE(4160), - [sym_delete_expression] = STATE(4160), - [sym_sizeof_expression] = STATE(4160), - [sym_parenthesized_expression] = STATE(4160), - [sym_lambda_expression] = STATE(4160), - [sym_concatenated_string] = STATE(4160), - [sym_string_literal] = STATE(758), + [3516] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(7450), + }, + [3517] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(4979), + [anon_sym_LT_LT_EQ] = ACTIONS(4979), + [anon_sym_PERCENT_EQ] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_CARET_EQ] = ACTIONS(4979), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_SLASH_EQ] = ACTIONS(4979), + [anon_sym_PLUS_EQ] = ACTIONS(4979), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_PIPE_EQ] = ACTIONS(4979), + [anon_sym_GT_GT_EQ] = ACTIONS(4979), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(4977), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_DASH_EQ] = ACTIONS(4979), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_AMP_EQ] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_RBRACK] = ACTIONS(4979), + }, + [3518] = { + [anon_sym_LPAREN2] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4981), + [anon_sym_STAR_EQ] = ACTIONS(4981), + [anon_sym_LT_LT_EQ] = ACTIONS(4981), + [anon_sym_PERCENT_EQ] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_CARET_EQ] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_SLASH_EQ] = ACTIONS(4981), + [anon_sym_PLUS_EQ] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_PIPE_EQ] = ACTIONS(4981), + [anon_sym_GT_GT_EQ] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4983), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4981), + [anon_sym_DASH_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_AMP_EQ] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4983), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4983), + [anon_sym_RBRACK] = ACTIONS(4981), + }, + [3519] = { + [sym_template_function] = STATE(4130), + [sym__expression] = STATE(4130), + [sym_logical_expression] = STATE(4130), + [sym_bitwise_expression] = STATE(4130), + [sym_cast_expression] = STATE(4130), + [sym_delete_expression] = STATE(4130), + [sym_field_expression] = STATE(4130), + [sym_compound_literal_expression] = STATE(4130), + [sym_lambda_expression] = STATE(4130), + [sym_char_literal] = STATE(4130), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(4160), - [sym_assignment_expression] = STATE(4160), - [sym_pointer_expression] = STATE(4160), - [sym_shift_expression] = STATE(4160), - [sym_math_expression] = STATE(4160), - [sym_call_expression] = STATE(4160), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(4130), + [sym_equality_expression] = STATE(4130), + [sym_relational_expression] = STATE(4130), + [sym_sizeof_expression] = STATE(4130), + [sym_subscript_expression] = STATE(4130), [sym_scoped_namespace_identifier] = STATE(760), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8924), - [anon_sym_DASH] = ACTIONS(1357), - [sym_true] = ACTIONS(8926), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [sym_null] = ACTIONS(8926), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(8924), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8926), - [sym_nullptr] = ACTIONS(8926), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), + [sym_parenthesized_expression] = STATE(4130), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(4130), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(4130), + [sym_pointer_expression] = STATE(4130), + [sym_shift_expression] = STATE(4130), + [sym_math_expression] = STATE(4130), + [sym_call_expression] = STATE(4130), + [sym_new_expression] = STATE(4130), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8888), + [anon_sym_DASH] = ACTIONS(1365), + [sym_true] = ACTIONS(8890), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [sym_null] = ACTIONS(8890), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(8888), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8890), + [sym_nullptr] = ACTIONS(8890), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), }, - [3548] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3545), - [sym_logical_expression] = STATE(3545), - [sym_bitwise_expression] = STATE(3545), - [sym_cast_expression] = STATE(3545), - [sym_new_expression] = STATE(3545), - [sym_field_expression] = STATE(3545), - [sym_compound_literal_expression] = STATE(3545), - [sym_char_literal] = STATE(3545), - [sym_template_function] = STATE(3545), - [sym_conditional_expression] = STATE(3545), - [sym_equality_expression] = STATE(3545), - [sym_relational_expression] = STATE(3545), - [sym_delete_expression] = STATE(3545), - [sym_sizeof_expression] = STATE(3545), - [sym_parenthesized_expression] = STATE(3545), - [sym_initializer_list] = STATE(3546), - [sym_concatenated_string] = STATE(3545), - [sym_string_literal] = STATE(758), - [sym_lambda_expression] = STATE(3545), + [3520] = { + [sym_template_function] = STATE(3517), + [sym__expression] = STATE(3517), + [sym_logical_expression] = STATE(3517), + [sym_bitwise_expression] = STATE(3517), + [sym_cast_expression] = STATE(3517), + [sym_delete_expression] = STATE(3517), + [sym_field_expression] = STATE(3517), + [sym_compound_literal_expression] = STATE(3517), + [sym_lambda_expression] = STATE(3517), + [sym_char_literal] = STATE(3517), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3545), - [sym_assignment_expression] = STATE(3545), - [sym_pointer_expression] = STATE(3545), - [sym_shift_expression] = STATE(3545), - [sym_math_expression] = STATE(3545), - [sym_call_expression] = STATE(3545), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(3517), + [sym_equality_expression] = STATE(3517), + [sym_relational_expression] = STATE(3517), + [sym_sizeof_expression] = STATE(3517), + [sym_subscript_expression] = STATE(3517), [sym_scoped_namespace_identifier] = STATE(760), - [anon_sym_LPAREN2] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [sym_raw_string_literal] = ACTIONS(7583), - [sym_true] = ACTIONS(7585), - [sym_null] = ACTIONS(7585), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(8928), - [anon_sym_AMP] = ACTIONS(7631), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(7631), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(1375), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_number_literal] = ACTIONS(7583), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(7585), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(7585), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_RBRACK] = ACTIONS(4127), + [sym_initializer_list] = STATE(3518), + [sym_parenthesized_expression] = STATE(3517), + [sym_string_literal] = STATE(759), + [sym_lambda_capture_specifier] = STATE(758), + [sym_concatenated_string] = STATE(3517), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3517), + [sym_pointer_expression] = STATE(3517), + [sym_shift_expression] = STATE(3517), + [sym_math_expression] = STATE(3517), + [sym_call_expression] = STATE(3517), + [sym_new_expression] = STATE(3517), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [sym_raw_string_literal] = ACTIONS(7564), + [sym_true] = ACTIONS(7566), + [sym_null] = ACTIONS(7566), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(8892), + [anon_sym_AMP] = ACTIONS(7612), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(7612), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(1383), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_number_literal] = ACTIONS(7564), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(7566), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_RBRACK] = ACTIONS(4125), }, - [3549] = { - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_GT_GT] = ACTIONS(4386), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_STAR_EQ] = ACTIONS(4384), - [anon_sym_LT_LT_EQ] = ACTIONS(4384), - [anon_sym_PERCENT_EQ] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_PIPE] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4386), - [anon_sym_CARET_EQ] = ACTIONS(4384), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [anon_sym_SLASH] = ACTIONS(4386), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_COLON] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4384), - [anon_sym_PLUS_EQ] = ACTIONS(4384), - [anon_sym_CARET] = ACTIONS(4386), - [anon_sym_GT] = ACTIONS(4386), - [anon_sym_PIPE_EQ] = ACTIONS(4384), - [anon_sym_GT_GT_EQ] = ACTIONS(4384), - [anon_sym_COMMA] = ACTIONS(4384), - [anon_sym_PIPE_PIPE] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_LT_LT] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_DASH_EQ] = ACTIONS(4384), - [anon_sym_LT_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_AMP_EQ] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_DASH_GT] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_RBRACK] = ACTIONS(4384), + [3521] = { + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_GT_GT] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_DASH_DASH] = ACTIONS(4378), + [anon_sym_final] = ACTIONS(4378), + [anon_sym_STAR_EQ] = ACTIONS(4378), + [anon_sym_LT_LT_EQ] = ACTIONS(4378), + [anon_sym_PERCENT_EQ] = ACTIONS(4378), + [anon_sym_COLON_COLON] = ACTIONS(4378), + [anon_sym_EQ_EQ] = ACTIONS(4378), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4380), + [anon_sym_CARET_EQ] = ACTIONS(4378), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_GT_EQ] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_override] = ACTIONS(4378), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_SLASH_EQ] = ACTIONS(4378), + [anon_sym_PLUS_EQ] = ACTIONS(4378), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_GT] = ACTIONS(4380), + [anon_sym_PIPE_EQ] = ACTIONS(4378), + [anon_sym_GT_GT_EQ] = ACTIONS(4378), + [anon_sym_COMMA] = ACTIONS(4378), + [anon_sym_PIPE_PIPE] = ACTIONS(4378), + [anon_sym_DOT] = ACTIONS(4378), + [anon_sym_LT_LT] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4378), + [anon_sym_PERCENT] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4378), + [anon_sym_DASH_EQ] = ACTIONS(4378), + [anon_sym_LT_EQ] = ACTIONS(4378), + [anon_sym_BANG_EQ] = ACTIONS(4378), + [anon_sym_AMP_EQ] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_DASH_GT] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4378), + [anon_sym_LBRACE] = ACTIONS(4378), + [anon_sym_RBRACK] = ACTIONS(4378), }, - [3550] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [3522] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(8930), + [anon_sym_GT2] = ACTIONS(8894), [sym_comment] = ACTIONS(3), }, - [3551] = { - [anon_sym_LPAREN2] = ACTIONS(4402), - [anon_sym_GT_GT] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_final] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_LT_LT_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4402), - [anon_sym_PIPE] = ACTIONS(4404), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_CARET_EQ] = ACTIONS(4402), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4402), - [anon_sym_COLON] = ACTIONS(4404), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_CARET] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_PIPE_EQ] = ACTIONS(4402), - [anon_sym_GT_GT_EQ] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_DOT] = ACTIONS(4402), - [anon_sym_LT_LT] = ACTIONS(4404), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_PERCENT] = ACTIONS(4404), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4402), - [anon_sym_AMP_EQ] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_RBRACK] = ACTIONS(4402), + [3523] = { + [anon_sym_LPAREN2] = ACTIONS(4396), + [anon_sym_GT_GT] = ACTIONS(4398), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_LT_LT_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_PIPE] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_CARET_EQ] = ACTIONS(4396), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4398), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_COLON] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_CARET] = ACTIONS(4398), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_PIPE_EQ] = ACTIONS(4396), + [anon_sym_GT_GT_EQ] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_LT_LT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4398), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_AMP_EQ] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACK] = ACTIONS(4396), }, - [3552] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [3524] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(8932), + [anon_sym_GT2] = ACTIONS(8896), [sym_comment] = ACTIONS(3), }, - [3553] = { - [anon_sym_LPAREN2] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_LT_LT_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_CARET_EQ] = ACTIONS(4431), - [anon_sym_AMP] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_PIPE_EQ] = ACTIONS(4431), - [anon_sym_GT_GT_EQ] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4433), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_AMP_EQ] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4433), - [anon_sym_RBRACK] = ACTIONS(4431), + [3525] = { + [anon_sym_LPAREN2] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4429), + [anon_sym_STAR_EQ] = ACTIONS(4429), + [anon_sym_LT_LT_EQ] = ACTIONS(4429), + [anon_sym_PERCENT_EQ] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4429), + [anon_sym_PIPE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4431), + [anon_sym_CARET_EQ] = ACTIONS(4429), + [anon_sym_AMP] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_SLASH] = ACTIONS(4431), + [anon_sym_SLASH_EQ] = ACTIONS(4429), + [anon_sym_PLUS_EQ] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4431), + [anon_sym_GT] = ACTIONS(4431), + [anon_sym_PIPE_EQ] = ACTIONS(4429), + [anon_sym_GT_GT_EQ] = ACTIONS(4429), + [anon_sym_COMMA] = ACTIONS(4429), + [anon_sym_PIPE_PIPE] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_LT_LT] = ACTIONS(4431), + [anon_sym_LBRACK] = ACTIONS(4429), + [anon_sym_PERCENT] = ACTIONS(4431), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_DASH_EQ] = ACTIONS(4429), + [anon_sym_LT_EQ] = ACTIONS(4429), + [anon_sym_BANG_EQ] = ACTIONS(4429), + [anon_sym_AMP_EQ] = ACTIONS(4429), + [anon_sym_AMP_AMP] = ACTIONS(4429), + [anon_sym_DASH_GT] = ACTIONS(4429), + [anon_sym_EQ] = ACTIONS(4431), + [anon_sym_PLUS_PLUS] = ACTIONS(4429), + [anon_sym_GT_GT] = ACTIONS(4431), + [anon_sym_RBRACK] = ACTIONS(4429), }, - [3554] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [3526] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(8934), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(8898), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [3555] = { - [aux_sym_initializer_list_repeat1] = STATE(2268), + [3527] = { + [aux_sym_initializer_list_repeat1] = STATE(2257), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8936), - [anon_sym_RBRACE] = ACTIONS(8934), + [anon_sym_COMMA] = ACTIONS(8900), + [anon_sym_RBRACE] = ACTIONS(8898), }, - [3556] = { - [sym_field_declaration_list] = STATE(4165), - [sym_base_class_clause] = STATE(4166), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(5438), + [3528] = { + [sym_field_declaration_list] = STATE(4135), + [sym_base_class_clause] = STATE(4136), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3557] = { - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_GT_GT] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_STAR_EQ] = ACTIONS(2851), - [anon_sym_LT_LT_EQ] = ACTIONS(2851), - [anon_sym_PERCENT_EQ] = ACTIONS(2851), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_CARET_EQ] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_SLASH_EQ] = ACTIONS(2851), - [anon_sym_PLUS_EQ] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2853), - [anon_sym_GT] = ACTIONS(2853), - [anon_sym_PIPE_EQ] = ACTIONS(2851), - [anon_sym_GT_GT_EQ] = ACTIONS(2851), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_LT_LT] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_PERCENT] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_DASH_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_AMP_EQ] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_DASH_GT] = ACTIONS(2851), - [anon_sym_EQ] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACK] = ACTIONS(2851), + [3529] = { + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_STAR_EQ] = ACTIONS(2853), + [anon_sym_LT_LT_EQ] = ACTIONS(2853), + [anon_sym_PERCENT_EQ] = ACTIONS(2853), + [anon_sym_EQ_EQ] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_CARET_EQ] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_SLASH_EQ] = ACTIONS(2853), + [anon_sym_PLUS_EQ] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_PIPE_EQ] = ACTIONS(2853), + [anon_sym_GT_GT_EQ] = ACTIONS(2853), + [anon_sym_COMMA] = ACTIONS(2853), + [anon_sym_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_DOT] = ACTIONS(2853), + [anon_sym_LT_LT] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_PERCENT] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2853), + [anon_sym_DASH_EQ] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(2853), + [anon_sym_AMP_EQ] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_DASH_GT] = ACTIONS(2853), + [anon_sym_EQ] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_RBRACK] = ACTIONS(2853), }, - [3558] = { - [sym_field_declaration_list] = STATE(4165), - [anon_sym_LBRACE] = ACTIONS(5438), + [3530] = { + [sym_field_declaration_list] = STATE(4135), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3559] = { - [anon_sym_LPAREN2] = ACTIONS(2867), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_STAR_EQ] = ACTIONS(2867), - [anon_sym_LT_LT_EQ] = ACTIONS(2867), - [anon_sym_PERCENT_EQ] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_CARET_EQ] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_SLASH_EQ] = ACTIONS(2867), - [anon_sym_PLUS_EQ] = ACTIONS(2867), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_PIPE_EQ] = ACTIONS(2867), - [anon_sym_GT_GT_EQ] = ACTIONS(2867), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_PERCENT] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_DASH_EQ] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_AMP_EQ] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_DASH_GT] = ACTIONS(2867), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_RBRACK] = ACTIONS(2867), + [3531] = { + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_GT_GT] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_STAR_EQ] = ACTIONS(2869), + [anon_sym_LT_LT_EQ] = ACTIONS(2869), + [anon_sym_PERCENT_EQ] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_CARET_EQ] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_SLASH_EQ] = ACTIONS(2869), + [anon_sym_PLUS_EQ] = ACTIONS(2869), + [anon_sym_CARET] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_PIPE_EQ] = ACTIONS(2869), + [anon_sym_GT_GT_EQ] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_PERCENT] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2869), + [anon_sym_DASH_EQ] = ACTIONS(2869), + [anon_sym_LT_EQ] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), + [anon_sym_AMP_EQ] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_DASH_GT] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACK] = ACTIONS(2869), }, - [3560] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(1472), - [sym_preproc_function_def] = STATE(1472), - [sym_alias_declaration] = STATE(1472), + [3532] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(1448), + [sym_preproc_function_def] = STATE(1448), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(1472), - [sym_preproc_if_in_field_declaration_list] = STATE(1472), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1472), - [sym_type_definition] = STATE(1472), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(1472), - [sym__field_declaration_list_item] = STATE(1472), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1472), - [sym_inline_method_definition] = STATE(1472), - [sym_friend_declaration] = STATE(1472), - [sym_access_specifier] = STATE(1472), - [sym_using_declaration] = STATE(1472), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(1472), - [sym_constructor_or_destructor_definition] = STATE(1472), - [sym_constructor_or_destructor_declaration] = STATE(1472), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1448), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(1448), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(1448), + [sym_preproc_if_in_field_declaration_list] = STATE(1448), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1448), + [sym_type_definition] = STATE(1448), + [sym_using_declaration] = STATE(1448), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(1448), + [sym_inline_method_definition] = STATE(1448), + [sym_constructor_or_destructor_definition] = STATE(1448), + [sym_access_specifier] = STATE(1448), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(1448), + [sym_alias_declaration] = STATE(1448), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(1448), + [sym_constructor_or_destructor_declaration] = STATE(1448), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(8938), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(8902), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [3561] = { - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_STAR_EQ] = ACTIONS(2917), - [anon_sym_LT_LT_EQ] = ACTIONS(2917), - [anon_sym_PERCENT_EQ] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_CARET_EQ] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_SLASH_EQ] = ACTIONS(2917), - [anon_sym_PLUS_EQ] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_PIPE_EQ] = ACTIONS(2917), - [anon_sym_GT_GT_EQ] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2919), + [3533] = { + [sym_field_declaration_list] = STATE(4138), + [sym_base_class_clause] = STATE(4139), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_DASH_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_AMP_EQ] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_RBRACK] = ACTIONS(2917), }, - [3562] = { - [sym_field_declaration_list] = STATE(4168), - [anon_sym_LBRACE] = ACTIONS(5438), + [3534] = { + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_STAR_EQ] = ACTIONS(2919), + [anon_sym_LT_LT_EQ] = ACTIONS(2919), + [anon_sym_PERCENT_EQ] = ACTIONS(2919), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_CARET_EQ] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_SLASH_EQ] = ACTIONS(2919), + [anon_sym_PLUS_EQ] = ACTIONS(2919), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_PIPE_EQ] = ACTIONS(2919), + [anon_sym_GT_GT_EQ] = ACTIONS(2919), + [anon_sym_COMMA] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_PERCENT] = ACTIONS(2921), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2919), + [anon_sym_DASH_EQ] = ACTIONS(2919), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_AMP_EQ] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_DASH_GT] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_RBRACK] = ACTIONS(2919), }, - [3563] = { - [sym_field_declaration_list] = STATE(4168), - [sym_base_class_clause] = STATE(4169), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(5438), + [3535] = { + [sym_field_declaration_list] = STATE(4138), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3564] = { - [sym_field_declaration_list] = STATE(4170), - [sym_base_class_clause] = STATE(4171), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(5438), + [3536] = { + [sym_field_declaration_list] = STATE(4140), + [sym_base_class_clause] = STATE(4141), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3565] = { - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_LT_LT_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_CARET_EQ] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_PIPE_EQ] = ACTIONS(3107), - [anon_sym_GT_GT_EQ] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_PIPE_PIPE] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_PERCENT] = ACTIONS(3109), + [3537] = { + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_LT_LT_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_CARET_EQ] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_CARET] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_PIPE_EQ] = ACTIONS(3109), + [anon_sym_GT_GT_EQ] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT_LT] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3111), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3107), - [anon_sym_AMP_EQ] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_DASH_GT] = ACTIONS(3107), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACK] = ACTIONS(3107), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3109), + [anon_sym_AMP_EQ] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_DASH_GT] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_RBRACK] = ACTIONS(3109), }, - [3566] = { - [sym_field_declaration_list] = STATE(4170), - [anon_sym_LBRACE] = ACTIONS(5438), + [3538] = { + [sym_field_declaration_list] = STATE(4140), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3567] = { - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_LT_LT_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_CARET_EQ] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_PIPE_EQ] = ACTIONS(3111), - [anon_sym_GT_GT_EQ] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3111), - [anon_sym_LT_LT] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_PERCENT] = ACTIONS(3113), + [3539] = { + [sym_field_declaration_list] = STATE(4142), + [sym_base_class_clause] = STATE(4143), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3111), - [anon_sym_AMP_EQ] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_DASH_GT] = ACTIONS(3111), - [anon_sym_EQ] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACK] = ACTIONS(3111), }, - [3568] = { - [sym_field_declaration_list] = STATE(4172), - [anon_sym_LBRACE] = ACTIONS(5438), + [3540] = { + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_GT_GT] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_LT_LT_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3115), + [anon_sym_CARET_EQ] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_SLASH] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_CARET] = ACTIONS(3115), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_PIPE_EQ] = ACTIONS(3113), + [anon_sym_GT_GT_EQ] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT_LT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3115), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_AMP_EQ] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_DASH_GT] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACK] = ACTIONS(3113), }, - [3569] = { - [sym_field_declaration_list] = STATE(4172), - [sym_base_class_clause] = STATE(4173), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(5438), + [3541] = { + [sym_field_declaration_list] = STATE(4142), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3570] = { - [anon_sym_LPAREN2] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_final] = ACTIONS(2169), - [anon_sym_STAR_EQ] = ACTIONS(2169), - [anon_sym_LT_LT_EQ] = ACTIONS(2169), - [anon_sym_PERCENT_EQ] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_CARET_EQ] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_override] = ACTIONS(2169), - [anon_sym_COLON] = ACTIONS(2171), - [anon_sym_SLASH_EQ] = ACTIONS(2169), - [anon_sym_PLUS_EQ] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_PIPE_EQ] = ACTIONS(2169), - [anon_sym_GT_GT_EQ] = ACTIONS(2169), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_PERCENT] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_DASH_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_AMP_EQ] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_DASH_GT] = ACTIONS(2169), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2169), + [3542] = { + [anon_sym_LPAREN2] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_final] = ACTIONS(2171), + [anon_sym_STAR_EQ] = ACTIONS(2171), + [anon_sym_LT_LT_EQ] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_CARET_EQ] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_SLASH_EQ] = ACTIONS(2171), + [anon_sym_PLUS_EQ] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE_EQ] = ACTIONS(2171), + [anon_sym_GT_GT_EQ] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_DASH_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_AMP_EQ] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_DASH_GT] = ACTIONS(2171), + [anon_sym_EQ] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACK] = ACTIONS(2171), }, - [3571] = { + [3543] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8940), + [anon_sym_RBRACE] = ACTIONS(8904), }, - [3572] = { - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_GT_GT] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_STAR_EQ] = ACTIONS(2579), - [anon_sym_LT_LT_EQ] = ACTIONS(2579), - [anon_sym_PERCENT_EQ] = ACTIONS(2579), - [anon_sym_EQ_EQ] = ACTIONS(2579), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_CARET_EQ] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2581), - [anon_sym_SLASH_EQ] = ACTIONS(2579), - [anon_sym_PLUS_EQ] = ACTIONS(2579), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_GT] = ACTIONS(2581), - [anon_sym_PIPE_EQ] = ACTIONS(2579), - [anon_sym_GT_GT_EQ] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2581), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_DASH_EQ] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2579), - [anon_sym_AMP_EQ] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_RBRACK] = ACTIONS(2579), + [3544] = { + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_GT_GT] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_STAR_EQ] = ACTIONS(2581), + [anon_sym_LT_LT_EQ] = ACTIONS(2581), + [anon_sym_PERCENT_EQ] = ACTIONS(2581), + [anon_sym_EQ_EQ] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_CARET_EQ] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_SLASH_EQ] = ACTIONS(2581), + [anon_sym_PLUS_EQ] = ACTIONS(2581), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_PIPE_EQ] = ACTIONS(2581), + [anon_sym_GT_GT_EQ] = ACTIONS(2581), + [anon_sym_COMMA] = ACTIONS(2581), + [anon_sym_PIPE_PIPE] = ACTIONS(2581), + [anon_sym_DOT] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_PERCENT] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2581), + [anon_sym_DASH_EQ] = ACTIONS(2581), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_BANG_EQ] = ACTIONS(2581), + [anon_sym_AMP_EQ] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_DASH_GT] = ACTIONS(2581), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_RBRACK] = ACTIONS(2581), }, - [3573] = { - [aux_sym_enumerator_list_repeat1] = STATE(4176), + [3545] = { + [aux_sym_enumerator_list_repeat1] = STATE(4146), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8942), - [anon_sym_RBRACE] = ACTIONS(8940), + [anon_sym_COMMA] = ACTIONS(8906), + [anon_sym_RBRACE] = ACTIONS(8904), }, - [3574] = { - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_GT_GT] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_STAR_EQ] = ACTIONS(2585), - [anon_sym_LT_LT_EQ] = ACTIONS(2585), - [anon_sym_PERCENT_EQ] = ACTIONS(2585), - [anon_sym_EQ_EQ] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2587), - [anon_sym_CARET_EQ] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_GT_EQ] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2587), - [anon_sym_SLASH] = ACTIONS(2587), - [anon_sym_SLASH_EQ] = ACTIONS(2585), - [anon_sym_PLUS_EQ] = ACTIONS(2585), - [anon_sym_CARET] = ACTIONS(2587), - [anon_sym_GT] = ACTIONS(2587), - [anon_sym_PIPE_EQ] = ACTIONS(2585), - [anon_sym_GT_GT_EQ] = ACTIONS(2585), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2587), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_DASH_EQ] = ACTIONS(2585), - [anon_sym_LT_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_AMP_EQ] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_DASH_GT] = ACTIONS(2585), - [anon_sym_EQ] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACK] = ACTIONS(2585), + [3546] = { + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_GT_GT] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_STAR_EQ] = ACTIONS(2587), + [anon_sym_LT_LT_EQ] = ACTIONS(2587), + [anon_sym_PERCENT_EQ] = ACTIONS(2587), + [anon_sym_EQ_EQ] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_CARET_EQ] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_SLASH_EQ] = ACTIONS(2587), + [anon_sym_PLUS_EQ] = ACTIONS(2587), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE_EQ] = ACTIONS(2587), + [anon_sym_GT_GT_EQ] = ACTIONS(2587), + [anon_sym_COMMA] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_DOT] = ACTIONS(2587), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_DASH_EQ] = ACTIONS(2587), + [anon_sym_LT_EQ] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2587), + [anon_sym_AMP_EQ] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2587), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_RBRACK] = ACTIONS(2587), }, - [3575] = { - [sym_field_declaration_list] = STATE(4177), - [sym_base_class_clause] = STATE(4178), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(5438), + [3547] = { + [sym_field_declaration_list] = STATE(4147), + [sym_base_class_clause] = STATE(4148), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3576] = { - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_STAR_EQ] = ACTIONS(3414), - [anon_sym_LT_LT_EQ] = ACTIONS(3414), - [anon_sym_PERCENT_EQ] = ACTIONS(3414), - [anon_sym_EQ_EQ] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_CARET_EQ] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_SLASH_EQ] = ACTIONS(3414), - [anon_sym_PLUS_EQ] = ACTIONS(3414), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_GT] = ACTIONS(3416), - [anon_sym_PIPE_EQ] = ACTIONS(3414), - [anon_sym_GT_GT_EQ] = ACTIONS(3414), - [anon_sym_COMMA] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_DOT] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_PERCENT] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3414), - [anon_sym_DASH_EQ] = ACTIONS(3414), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_BANG_EQ] = ACTIONS(3414), - [anon_sym_AMP_EQ] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_DASH_GT] = ACTIONS(3414), - [anon_sym_EQ] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_RBRACK] = ACTIONS(3414), + [3548] = { + [anon_sym_LPAREN2] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_LT_LT_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_CARET_EQ] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_PIPE_EQ] = ACTIONS(3424), + [anon_sym_GT_GT_EQ] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_PERCENT] = ACTIONS(3426), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_AMP_EQ] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_DASH_GT] = ACTIONS(3424), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACK] = ACTIONS(3424), }, - [3577] = { - [sym_field_declaration_list] = STATE(4177), - [anon_sym_LBRACE] = ACTIONS(5438), + [3549] = { + [sym_field_declaration_list] = STATE(4147), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3578] = { - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_GT_GT] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_STAR_EQ] = ACTIONS(3418), - [anon_sym_LT_LT_EQ] = ACTIONS(3418), - [anon_sym_PERCENT_EQ] = ACTIONS(3418), - [anon_sym_EQ_EQ] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_CARET_EQ] = ACTIONS(3418), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_GT_EQ] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_SLASH_EQ] = ACTIONS(3418), - [anon_sym_PLUS_EQ] = ACTIONS(3418), - [anon_sym_CARET] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_PIPE_EQ] = ACTIONS(3418), - [anon_sym_GT_GT_EQ] = ACTIONS(3418), - [anon_sym_COMMA] = ACTIONS(3418), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_DOT] = ACTIONS(3418), - [anon_sym_LT_LT] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_PERCENT] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3418), - [anon_sym_DASH_EQ] = ACTIONS(3418), - [anon_sym_LT_EQ] = ACTIONS(3418), - [anon_sym_BANG_EQ] = ACTIONS(3418), - [anon_sym_AMP_EQ] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_DASH_GT] = ACTIONS(3418), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_RBRACK] = ACTIONS(3418), - }, - [3579] = { - [sym_field_declaration_list] = STATE(4179), - [anon_sym_LBRACE] = ACTIONS(5438), + [3550] = { + [sym_field_declaration_list] = STATE(4149), + [sym_base_class_clause] = STATE(4150), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3580] = { - [sym_field_declaration_list] = STATE(4179), - [sym_base_class_clause] = STATE(4180), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(5438), + [3551] = { + [anon_sym_LPAREN2] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_STAR_EQ] = ACTIONS(3428), + [anon_sym_LT_LT_EQ] = ACTIONS(3428), + [anon_sym_PERCENT_EQ] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_CARET_EQ] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_SLASH_EQ] = ACTIONS(3428), + [anon_sym_PLUS_EQ] = ACTIONS(3428), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_PIPE_EQ] = ACTIONS(3428), + [anon_sym_GT_GT_EQ] = ACTIONS(3428), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_LT_LT] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3430), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_DASH_EQ] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_AMP_EQ] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_DASH_GT] = ACTIONS(3428), + [anon_sym_EQ] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_RBRACK] = ACTIONS(3428), + }, + [3552] = { + [sym_field_declaration_list] = STATE(4149), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [3581] = { - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_final] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3746), - [anon_sym_LT_LT_EQ] = ACTIONS(3746), - [anon_sym_PERCENT_EQ] = ACTIONS(3746), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(3748), - [anon_sym_CARET_EQ] = ACTIONS(3746), - [anon_sym_AMP] = ACTIONS(3748), - [anon_sym_PLUS] = ACTIONS(3748), - [anon_sym_GT_EQ] = ACTIONS(3746), - [anon_sym_STAR] = ACTIONS(3748), - [anon_sym_SLASH] = ACTIONS(3748), - [anon_sym_override] = ACTIONS(3746), - [anon_sym_COLON] = ACTIONS(3748), - [anon_sym_SLASH_EQ] = ACTIONS(3746), - [anon_sym_PLUS_EQ] = ACTIONS(3746), - [anon_sym_CARET] = ACTIONS(3748), - [anon_sym_GT] = ACTIONS(3748), - [anon_sym_PIPE_EQ] = ACTIONS(3746), - [anon_sym_GT_GT_EQ] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3746), - [anon_sym_PERCENT] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_DASH_EQ] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_AMP_EQ] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_DASH_GT] = ACTIONS(3746), - [anon_sym_EQ] = ACTIONS(3748), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_RBRACK] = ACTIONS(3746), + [3553] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8908), }, - [3582] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8944), + [3554] = { + [anon_sym_LPAREN2] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_PERCENT_EQ] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_CARET_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_PIPE_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5348), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5350), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5348), }, - [3583] = { - [anon_sym_LPAREN2] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), - [anon_sym_STAR_EQ] = ACTIONS(5349), - [anon_sym_LT_LT_EQ] = ACTIONS(5349), - [anon_sym_PERCENT_EQ] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_CARET_EQ] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5351), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_SLASH_EQ] = ACTIONS(5349), - [anon_sym_PLUS_EQ] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_PIPE_EQ] = ACTIONS(5349), - [anon_sym_GT_GT_EQ] = ACTIONS(5349), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_DASH_EQ] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5349), + [3555] = { + [sym_argument_list] = STATE(4152), + [sym_initializer_list] = STATE(4152), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_PERCENT_EQ] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_CARET_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_PIPE_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5348), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5350), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5348), }, - [3584] = { - [sym_argument_list] = STATE(4182), - [sym_initializer_list] = STATE(4182), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_STAR_EQ] = ACTIONS(5349), - [anon_sym_LT_LT_EQ] = ACTIONS(5349), - [anon_sym_PERCENT_EQ] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_CARET_EQ] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5351), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_SLASH_EQ] = ACTIONS(5349), - [anon_sym_PLUS_EQ] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_PIPE_EQ] = ACTIONS(5349), - [anon_sym_GT_GT_EQ] = ACTIONS(5349), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_DASH_EQ] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5349), + [3556] = { + [anon_sym_LPAREN2] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3857), + [anon_sym_final] = ACTIONS(3857), + [anon_sym_STAR_EQ] = ACTIONS(3857), + [anon_sym_LT_LT_EQ] = ACTIONS(3857), + [anon_sym_PERCENT_EQ] = ACTIONS(3857), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_CARET_EQ] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3859), + [anon_sym_override] = ACTIONS(3857), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_SLASH_EQ] = ACTIONS(3857), + [anon_sym_PLUS_EQ] = ACTIONS(3857), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_PIPE_EQ] = ACTIONS(3857), + [anon_sym_GT_GT_EQ] = ACTIONS(3857), + [anon_sym_COMMA] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_PERCENT] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3857), + [anon_sym_DASH_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_AMP_EQ] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_DASH_GT] = ACTIONS(3857), + [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(3857), }, - [3585] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(5490), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(4529), + [3557] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(5485), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(5487), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(5489), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(4527), }, - [3586] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(4183), - [sym_logical_expression] = STATE(4183), - [sym_bitwise_expression] = STATE(4183), - [sym_cast_expression] = STATE(4183), - [sym_new_expression] = STATE(4183), - [sym_field_expression] = STATE(4183), - [sym_compound_literal_expression] = STATE(4183), - [sym_char_literal] = STATE(4183), - [sym_template_function] = STATE(4183), - [sym_conditional_expression] = STATE(4183), - [sym_equality_expression] = STATE(4183), - [sym_relational_expression] = STATE(4183), - [sym_delete_expression] = STATE(4183), - [sym_sizeof_expression] = STATE(4183), - [sym_parenthesized_expression] = STATE(4183), - [sym_lambda_expression] = STATE(4183), - [sym_concatenated_string] = STATE(4183), - [sym_string_literal] = STATE(758), + [3558] = { + [sym_template_function] = STATE(4153), + [sym__expression] = STATE(4153), + [sym_logical_expression] = STATE(4153), + [sym_bitwise_expression] = STATE(4153), + [sym_cast_expression] = STATE(4153), + [sym_delete_expression] = STATE(4153), + [sym_field_expression] = STATE(4153), + [sym_compound_literal_expression] = STATE(4153), + [sym_lambda_expression] = STATE(4153), + [sym_char_literal] = STATE(4153), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(4183), - [sym_assignment_expression] = STATE(4183), - [sym_pointer_expression] = STATE(4183), - [sym_shift_expression] = STATE(4183), - [sym_math_expression] = STATE(4183), - [sym_call_expression] = STATE(4183), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(4153), + [sym_equality_expression] = STATE(4153), + [sym_relational_expression] = STATE(4153), + [sym_sizeof_expression] = STATE(4153), + [sym_subscript_expression] = STATE(4153), [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(8946), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [sym_true] = ACTIONS(8948), - [sym_null] = ACTIONS(8948), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(8946), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1369), - [sym_false] = ACTIONS(8948), - [anon_sym_AMP] = ACTIONS(408), - [sym_nullptr] = ACTIONS(8948), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1363), + [sym_parenthesized_expression] = STATE(4153), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(759), + [sym_concatenated_string] = STATE(4153), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(4153), + [sym_pointer_expression] = STATE(4153), + [sym_shift_expression] = STATE(4153), + [sym_math_expression] = STATE(4153), + [sym_call_expression] = STATE(4153), + [sym_new_expression] = STATE(4153), + [sym_raw_string_literal] = ACTIONS(8910), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [sym_true] = ACTIONS(8912), + [sym_null] = ACTIONS(8912), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(8910), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1377), + [sym_false] = ACTIONS(8912), + [anon_sym_AMP] = ACTIONS(410), + [sym_nullptr] = ACTIONS(8912), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1371), }, - [3587] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_LT_LT_EQ] = ACTIONS(964), - [anon_sym_PERCENT_EQ] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_CARET_EQ] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_CARET] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_PIPE_EQ] = ACTIONS(964), - [anon_sym_GT_GT_EQ] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_PERCENT] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_AMP_EQ] = ACTIONS(964), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_DASH_GT] = ACTIONS(964), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_RBRACK] = ACTIONS(964), + [3559] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_LT_LT_EQ] = ACTIONS(968), + [anon_sym_PERCENT_EQ] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(968), + [anon_sym_GT_GT_EQ] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_AMP_EQ] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_DASH_GT] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_RBRACK] = ACTIONS(968), }, - [3588] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [3560] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -147213,7 +146690,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(8950), + [anon_sym_RBRACE] = ACTIONS(8914), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -147245,1901 +146722,1901 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3589] = { - [anon_sym_LPAREN2] = ACTIONS(6805), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_LBRACE] = ACTIONS(6805), - [anon_sym_RBRACK] = ACTIONS(6805), - [anon_sym_final] = ACTIONS(6805), - [anon_sym_COLON_COLON] = ACTIONS(6805), - [anon_sym_EQ_EQ] = ACTIONS(6805), - [anon_sym_PIPE] = ACTIONS(6807), - [anon_sym_LT] = ACTIONS(6807), - [anon_sym_AMP] = ACTIONS(6807), - [anon_sym_PLUS] = ACTIONS(6807), - [anon_sym_GT_EQ] = ACTIONS(6805), - [anon_sym_STAR] = ACTIONS(6805), - [anon_sym_SLASH] = ACTIONS(6807), - [anon_sym_override] = ACTIONS(6805), - [anon_sym_COLON] = ACTIONS(6807), - [anon_sym_CARET] = ACTIONS(6805), - [anon_sym_GT] = ACTIONS(6807), - [anon_sym_COMMA] = ACTIONS(6805), - [anon_sym_PIPE_PIPE] = ACTIONS(6805), - [anon_sym_DOT] = ACTIONS(6805), - [anon_sym_LT_LT] = ACTIONS(6805), - [anon_sym_LBRACK] = ACTIONS(6805), - [anon_sym_PERCENT] = ACTIONS(6805), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6805), - [anon_sym_LT_EQ] = ACTIONS(6805), - [anon_sym_BANG_EQ] = ACTIONS(6805), - [anon_sym_AMP_AMP] = ACTIONS(6805), - [anon_sym_DASH_GT] = ACTIONS(6805), - [anon_sym_PLUS_PLUS] = ACTIONS(6805), - [anon_sym_GT_GT] = ACTIONS(6805), - [anon_sym_DASH_DASH] = ACTIONS(6805), + [3561] = { + [anon_sym_LPAREN2] = ACTIONS(6794), + [anon_sym_DASH] = ACTIONS(6796), + [anon_sym_LBRACE] = ACTIONS(6794), + [anon_sym_RBRACK] = ACTIONS(6794), + [anon_sym_final] = ACTIONS(6794), + [anon_sym_COLON_COLON] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6794), + [anon_sym_PIPE] = ACTIONS(6796), + [anon_sym_LT] = ACTIONS(6796), + [anon_sym_AMP] = ACTIONS(6796), + [anon_sym_PLUS] = ACTIONS(6796), + [anon_sym_GT_EQ] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_SLASH] = ACTIONS(6796), + [anon_sym_override] = ACTIONS(6794), + [anon_sym_COLON] = ACTIONS(6796), + [anon_sym_CARET] = ACTIONS(6794), + [anon_sym_GT] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6794), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6794), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6794), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_BANG_EQ] = ACTIONS(6794), + [anon_sym_AMP_AMP] = ACTIONS(6794), + [anon_sym_DASH_GT] = ACTIONS(6794), + [anon_sym_PLUS_PLUS] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6794), + [anon_sym_DASH_DASH] = ACTIONS(6794), }, - [3590] = { - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_RBRACK] = ACTIONS(6812), - [anon_sym_final] = ACTIONS(6812), - [anon_sym_COLON_COLON] = ACTIONS(6812), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6812), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6812), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_PERCENT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6812), - [anon_sym_DASH_DASH] = ACTIONS(6812), + [3562] = { + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_RBRACK] = ACTIONS(6801), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6801), + [anon_sym_LT_LT] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_PERCENT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6801), + [anon_sym_DASH_DASH] = ACTIONS(6801), }, - [3591] = { - [anon_sym_LPAREN2] = ACTIONS(6926), - [anon_sym_CARET] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6928), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_DASH_DASH] = ACTIONS(6926), - [anon_sym_COMMA] = ACTIONS(6926), - [anon_sym_PIPE_PIPE] = ACTIONS(6926), - [anon_sym_DOT] = ACTIONS(6926), - [anon_sym_LT_LT] = ACTIONS(6926), - [anon_sym_LBRACK] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_PIPE] = ACTIONS(6928), - [anon_sym_LT] = ACTIONS(6928), - [anon_sym_PERCENT] = ACTIONS(6926), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6928), - [anon_sym_QMARK] = ACTIONS(6926), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_GT_EQ] = ACTIONS(6926), - [anon_sym_STAR] = ACTIONS(6926), - [anon_sym_SLASH] = ACTIONS(6928), - [anon_sym_LT_EQ] = ACTIONS(6926), - [anon_sym_BANG_EQ] = ACTIONS(6926), - [anon_sym_AMP_AMP] = ACTIONS(6926), - [anon_sym_DASH_GT] = ACTIONS(6926), - [anon_sym_PLUS_PLUS] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6926), - [anon_sym_RBRACK] = ACTIONS(6926), + [3563] = { + [anon_sym_LPAREN2] = ACTIONS(6915), + [anon_sym_CARET] = ACTIONS(6915), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6915), + [anon_sym_COMMA] = ACTIONS(6915), + [anon_sym_PIPE_PIPE] = ACTIONS(6915), + [anon_sym_DOT] = ACTIONS(6915), + [anon_sym_LT_LT] = ACTIONS(6915), + [anon_sym_LBRACK] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(6915), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_PERCENT] = ACTIONS(6915), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_QMARK] = ACTIONS(6915), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6915), + [anon_sym_STAR] = ACTIONS(6915), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_LT_EQ] = ACTIONS(6915), + [anon_sym_BANG_EQ] = ACTIONS(6915), + [anon_sym_AMP_AMP] = ACTIONS(6915), + [anon_sym_DASH_GT] = ACTIONS(6915), + [anon_sym_PLUS_PLUS] = ACTIONS(6915), + [anon_sym_GT_GT] = ACTIONS(6915), + [anon_sym_RBRACK] = ACTIONS(6915), }, - [3592] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [3564] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(8952), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(8916), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [3593] = { - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACK] = ACTIONS(5018), - [anon_sym_final] = ACTIONS(5018), - [anon_sym_mutable] = ACTIONS(5018), - [anon_sym_restrict] = ACTIONS(5018), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5018), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_STAR] = ACTIONS(5018), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_override] = ACTIONS(5018), - [anon_sym_COLON] = ACTIONS(5018), - [anon_sym_explicit] = ACTIONS(5018), - [sym_noexcept] = ACTIONS(5018), - [anon_sym_CARET] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5018), - [anon_sym__Atomic] = ACTIONS(5018), - [anon_sym_LT_LT] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_PERCENT] = ACTIONS(5018), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5018), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5018), - [anon_sym_DASH_DASH] = ACTIONS(5018), + [3565] = { + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_RBRACK] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_explicit] = ACTIONS(5014), + [sym_noexcept] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5016), + [anon_sym_constexpr] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_AMP_AMP] = ACTIONS(5014), + [anon_sym_DASH_GT] = ACTIONS(5014), + [anon_sym_PLUS_PLUS] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5014), }, - [3594] = { - [sym_field_declaration_list] = STATE(4186), - [anon_sym_LBRACE] = ACTIONS(3302), + [3566] = { + [sym_field_declaration_list] = STATE(4156), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [3595] = { - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_LBRACE] = ACTIONS(5144), - [anon_sym_RBRACK] = ACTIONS(5144), - [anon_sym_final] = ACTIONS(5144), - [anon_sym_mutable] = ACTIONS(5144), - [anon_sym_restrict] = ACTIONS(5144), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_volatile] = ACTIONS(5144), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5144), - [anon_sym_STAR] = ACTIONS(5144), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_override] = ACTIONS(5144), - [anon_sym_COLON] = ACTIONS(5144), - [anon_sym_explicit] = ACTIONS(5144), - [sym_noexcept] = ACTIONS(5144), - [anon_sym_CARET] = ACTIONS(5144), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5144), - [anon_sym__Atomic] = ACTIONS(5144), - [anon_sym_LT_LT] = ACTIONS(5144), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_const] = ACTIONS(5146), - [anon_sym_constexpr] = ACTIONS(5144), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_SEMI] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5144), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_EQ] = ACTIONS(5146), - [anon_sym_GT_GT] = ACTIONS(5144), - [anon_sym_DASH_DASH] = ACTIONS(5144), + [3567] = { + [anon_sym_LPAREN2] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5088), + [anon_sym_final] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_volatile] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_override] = ACTIONS(5088), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_explicit] = ACTIONS(5088), + [sym_noexcept] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym__Atomic] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_const] = ACTIONS(5090), + [anon_sym_constexpr] = ACTIONS(5088), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_SEMI] = ACTIONS(5088), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5088), }, - [3596] = { - [anon_sym_LPAREN2] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_final] = ACTIONS(5237), - [anon_sym_mutable] = ACTIONS(5237), - [anon_sym_restrict] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_AMP] = ACTIONS(5239), - [anon_sym_volatile] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_GT_EQ] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_override] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_explicit] = ACTIONS(5237), - [sym_noexcept] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5237), - [anon_sym__Atomic] = ACTIONS(5237), - [anon_sym_LT_LT] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_PERCENT] = ACTIONS(5237), - [anon_sym_const] = ACTIONS(5239), - [anon_sym_constexpr] = ACTIONS(5237), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5237), - [anon_sym_SEMI] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_DASH_GT] = ACTIONS(5237), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_GT_GT] = ACTIONS(5237), - [anon_sym_DASH_DASH] = ACTIONS(5237), + [3568] = { + [anon_sym_LPAREN2] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5236), + [anon_sym_RBRACK] = ACTIONS(5236), + [anon_sym_final] = ACTIONS(5236), + [anon_sym_mutable] = ACTIONS(5236), + [anon_sym_restrict] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_volatile] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5238), + [anon_sym_override] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_explicit] = ACTIONS(5236), + [sym_noexcept] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym__Atomic] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_const] = ACTIONS(5238), + [anon_sym_constexpr] = ACTIONS(5236), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_BANG_EQ] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_DASH_GT] = ACTIONS(5236), + [anon_sym_PLUS_PLUS] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_DASH_DASH] = ACTIONS(5236), }, - [3597] = { - [sym_field_declaration_list] = STATE(4187), - [anon_sym_LBRACE] = ACTIONS(3302), + [3569] = { + [sym_field_declaration_list] = STATE(4157), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [3598] = { - [anon_sym_LPAREN2] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_LBRACE] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_final] = ACTIONS(5327), - [anon_sym_mutable] = ACTIONS(5327), - [anon_sym_restrict] = ACTIONS(5327), - [anon_sym_EQ_EQ] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5329), - [anon_sym_volatile] = ACTIONS(5327), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_GT_EQ] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_override] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_explicit] = ACTIONS(5327), - [sym_noexcept] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_PIPE_PIPE] = ACTIONS(5327), - [anon_sym_DOT] = ACTIONS(5327), - [anon_sym__Atomic] = ACTIONS(5327), - [anon_sym_LT_LT] = ACTIONS(5327), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_PERCENT] = ACTIONS(5327), - [anon_sym_const] = ACTIONS(5329), - [anon_sym_constexpr] = ACTIONS(5327), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5327), - [anon_sym_LT_EQ] = ACTIONS(5327), - [anon_sym_BANG_EQ] = ACTIONS(5327), - [anon_sym_SEMI] = ACTIONS(5327), - [anon_sym_AMP_AMP] = ACTIONS(5327), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_PLUS_PLUS] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5329), - [anon_sym_GT_GT] = ACTIONS(5327), - [anon_sym_DASH_DASH] = ACTIONS(5327), + [3570] = { + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_RBRACK] = ACTIONS(5326), + [anon_sym_final] = ACTIONS(5326), + [anon_sym_mutable] = ACTIONS(5326), + [anon_sym_restrict] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5326), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_volatile] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_GT_EQ] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(5326), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_override] = ACTIONS(5326), + [anon_sym_COLON] = ACTIONS(5326), + [anon_sym_explicit] = ACTIONS(5326), + [sym_noexcept] = ACTIONS(5326), + [anon_sym_CARET] = ACTIONS(5326), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym__Atomic] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_PERCENT] = ACTIONS(5326), + [anon_sym_const] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5326), + [anon_sym_BANG_EQ] = ACTIONS(5326), + [anon_sym_SEMI] = ACTIONS(5326), + [anon_sym_AMP_AMP] = ACTIONS(5326), + [anon_sym_DASH_GT] = ACTIONS(5326), + [anon_sym_PLUS_PLUS] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5328), + [anon_sym_GT_GT] = ACTIONS(5326), + [anon_sym_DASH_DASH] = ACTIONS(5326), }, - [3599] = { - [sym_field_declaration_list] = STATE(4188), - [anon_sym_LBRACE] = ACTIONS(3302), + [3571] = { + [sym_field_declaration_list] = STATE(4158), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [3600] = { - [anon_sym_LPAREN2] = ACTIONS(5331), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_final] = ACTIONS(5331), - [anon_sym_mutable] = ACTIONS(5331), - [anon_sym_restrict] = ACTIONS(5331), - [anon_sym_EQ_EQ] = ACTIONS(5331), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_AMP] = ACTIONS(5333), - [anon_sym_volatile] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_GT_EQ] = ACTIONS(5331), - [anon_sym_STAR] = ACTIONS(5331), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_override] = ACTIONS(5331), - [anon_sym_COLON] = ACTIONS(5331), - [anon_sym_explicit] = ACTIONS(5331), - [sym_noexcept] = ACTIONS(5331), - [anon_sym_CARET] = ACTIONS(5331), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_PIPE_PIPE] = ACTIONS(5331), - [anon_sym_DOT] = ACTIONS(5331), - [anon_sym__Atomic] = ACTIONS(5331), - [anon_sym_LT_LT] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_PERCENT] = ACTIONS(5331), - [anon_sym_const] = ACTIONS(5333), - [anon_sym_constexpr] = ACTIONS(5331), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5331), - [anon_sym_LT_EQ] = ACTIONS(5331), - [anon_sym_BANG_EQ] = ACTIONS(5331), - [anon_sym_SEMI] = ACTIONS(5331), - [anon_sym_AMP_AMP] = ACTIONS(5331), - [anon_sym_DASH_GT] = ACTIONS(5331), - [anon_sym_PLUS_PLUS] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5333), - [anon_sym_GT_GT] = ACTIONS(5331), - [anon_sym_DASH_DASH] = ACTIONS(5331), + [3572] = { + [anon_sym_LPAREN2] = ACTIONS(5330), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_LBRACE] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(5330), + [anon_sym_final] = ACTIONS(5330), + [anon_sym_mutable] = ACTIONS(5330), + [anon_sym_restrict] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5330), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_GT_EQ] = ACTIONS(5330), + [anon_sym_STAR] = ACTIONS(5330), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_override] = ACTIONS(5330), + [anon_sym_COLON] = ACTIONS(5330), + [anon_sym_explicit] = ACTIONS(5330), + [sym_noexcept] = ACTIONS(5330), + [anon_sym_CARET] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_PIPE_PIPE] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym__Atomic] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_PERCENT] = ACTIONS(5330), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5330), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5330), + [anon_sym_BANG_EQ] = ACTIONS(5330), + [anon_sym_SEMI] = ACTIONS(5330), + [anon_sym_AMP_AMP] = ACTIONS(5330), + [anon_sym_DASH_GT] = ACTIONS(5330), + [anon_sym_PLUS_PLUS] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5332), + [anon_sym_GT_GT] = ACTIONS(5330), + [anon_sym_DASH_DASH] = ACTIONS(5330), }, - [3601] = { - [sym_field_declaration_list] = STATE(4189), - [anon_sym_LBRACE] = ACTIONS(3302), + [3573] = { + [sym_field_declaration_list] = STATE(4159), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [3602] = { - [anon_sym_LPAREN2] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_RBRACK] = ACTIONS(4740), - [anon_sym_final] = ACTIONS(4740), - [anon_sym_mutable] = ACTIONS(4740), - [anon_sym_restrict] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_AMP] = ACTIONS(4742), - [anon_sym_volatile] = ACTIONS(4740), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4740), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_override] = ACTIONS(4740), - [anon_sym_COLON] = ACTIONS(4740), - [anon_sym_explicit] = ACTIONS(4740), - [sym_noexcept] = ACTIONS(4740), - [anon_sym_CARET] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym__Atomic] = ACTIONS(4740), - [anon_sym_LT_LT] = ACTIONS(4740), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4740), - [anon_sym_const] = ACTIONS(4742), - [anon_sym_constexpr] = ACTIONS(4740), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4740), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_GT_GT] = ACTIONS(4740), - [anon_sym_DASH_DASH] = ACTIONS(4740), + [3574] = { + [anon_sym_LPAREN2] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_RBRACK] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_mutable] = ACTIONS(4736), + [anon_sym_restrict] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4738), + [anon_sym_AMP] = ACTIONS(4738), + [anon_sym_volatile] = ACTIONS(4736), + [anon_sym_PLUS] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4738), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_COLON] = ACTIONS(4736), + [anon_sym_explicit] = ACTIONS(4736), + [sym_noexcept] = ACTIONS(4736), + [anon_sym_CARET] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym__Atomic] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_const] = ACTIONS(4738), + [anon_sym_constexpr] = ACTIONS(4736), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_DASH_GT] = ACTIONS(4736), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4738), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_DASH_DASH] = ACTIONS(4736), }, - [3603] = { - [sym_enumerator] = STATE(2379), + [3575] = { + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(8954), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(8918), }, - [3604] = { - [aux_sym_enumerator_list_repeat1] = STATE(2381), + [3576] = { + [aux_sym_enumerator_list_repeat1] = STATE(2366), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(8956), - [anon_sym_RBRACE] = ACTIONS(8954), - }, - [3605] = { - [anon_sym_LPAREN2] = ACTIONS(5604), - [anon_sym_DASH] = ACTIONS(5606), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACK] = ACTIONS(5604), - [anon_sym_final] = ACTIONS(5604), - [anon_sym_mutable] = ACTIONS(5604), - [anon_sym_restrict] = ACTIONS(5604), - [anon_sym_EQ_EQ] = ACTIONS(5604), - [anon_sym_PIPE] = ACTIONS(5606), - [anon_sym_LT] = ACTIONS(5606), - [anon_sym_AMP] = ACTIONS(5606), - [anon_sym_volatile] = ACTIONS(5604), - [anon_sym_PLUS] = ACTIONS(5606), - [anon_sym_GT_EQ] = ACTIONS(5604), - [anon_sym_STAR] = ACTIONS(5604), - [anon_sym_SLASH] = ACTIONS(5606), - [anon_sym_override] = ACTIONS(5604), - [anon_sym_COLON] = ACTIONS(5604), - [anon_sym_explicit] = ACTIONS(5604), - [sym_noexcept] = ACTIONS(5604), - [anon_sym_CARET] = ACTIONS(5604), - [anon_sym_GT] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(5604), - [anon_sym_PIPE_PIPE] = ACTIONS(5604), - [anon_sym_DOT] = ACTIONS(5604), - [anon_sym__Atomic] = ACTIONS(5604), - [anon_sym_LT_LT] = ACTIONS(5604), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_PERCENT] = ACTIONS(5604), - [anon_sym_const] = ACTIONS(5606), - [anon_sym_constexpr] = ACTIONS(5604), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5604), - [anon_sym_LT_EQ] = ACTIONS(5604), - [anon_sym_BANG_EQ] = ACTIONS(5604), - [anon_sym_SEMI] = ACTIONS(5604), - [anon_sym_AMP_AMP] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(5604), - [anon_sym_PLUS_PLUS] = ACTIONS(5604), - [anon_sym_EQ] = ACTIONS(5606), - [anon_sym_GT_GT] = ACTIONS(5604), - [anon_sym_DASH_DASH] = ACTIONS(5604), + [anon_sym_COMMA] = ACTIONS(8920), + [anon_sym_RBRACE] = ACTIONS(8918), }, - [3606] = { - [sym_field_declaration_list] = STATE(4192), - [anon_sym_LBRACE] = ACTIONS(3302), + [3577] = { + [anon_sym_LPAREN2] = ACTIONS(5610), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACK] = ACTIONS(5610), + [anon_sym_final] = ACTIONS(5610), + [anon_sym_mutable] = ACTIONS(5610), + [anon_sym_restrict] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5610), + [anon_sym_PIPE] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5612), + [anon_sym_AMP] = ACTIONS(5612), + [anon_sym_volatile] = ACTIONS(5610), + [anon_sym_PLUS] = ACTIONS(5612), + [anon_sym_GT_EQ] = ACTIONS(5610), + [anon_sym_STAR] = ACTIONS(5610), + [anon_sym_SLASH] = ACTIONS(5612), + [anon_sym_override] = ACTIONS(5610), + [anon_sym_COLON] = ACTIONS(5610), + [anon_sym_explicit] = ACTIONS(5610), + [sym_noexcept] = ACTIONS(5610), + [anon_sym_CARET] = ACTIONS(5610), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_COMMA] = ACTIONS(5610), + [anon_sym_PIPE_PIPE] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym__Atomic] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5610), + [anon_sym_LBRACK] = ACTIONS(5610), + [anon_sym_PERCENT] = ACTIONS(5610), + [anon_sym_const] = ACTIONS(5612), + [anon_sym_constexpr] = ACTIONS(5610), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5610), + [anon_sym_BANG_EQ] = ACTIONS(5610), + [anon_sym_SEMI] = ACTIONS(5610), + [anon_sym_AMP_AMP] = ACTIONS(5610), + [anon_sym_DASH_GT] = ACTIONS(5610), + [anon_sym_PLUS_PLUS] = ACTIONS(5610), + [anon_sym_EQ] = ACTIONS(5612), + [anon_sym_GT_GT] = ACTIONS(5610), + [anon_sym_DASH_DASH] = ACTIONS(5610), }, - [3607] = { - [anon_sym_LPAREN2] = ACTIONS(5608), - [anon_sym_DASH] = ACTIONS(5610), - [anon_sym_LBRACE] = ACTIONS(5608), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_final] = ACTIONS(5608), - [anon_sym_mutable] = ACTIONS(5608), - [anon_sym_restrict] = ACTIONS(5608), - [anon_sym_EQ_EQ] = ACTIONS(5608), - [anon_sym_PIPE] = ACTIONS(5610), - [anon_sym_LT] = ACTIONS(5610), - [anon_sym_AMP] = ACTIONS(5610), - [anon_sym_volatile] = ACTIONS(5608), - [anon_sym_PLUS] = ACTIONS(5610), - [anon_sym_GT_EQ] = ACTIONS(5608), - [anon_sym_STAR] = ACTIONS(5608), - [anon_sym_SLASH] = ACTIONS(5610), - [anon_sym_override] = ACTIONS(5608), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_explicit] = ACTIONS(5608), - [sym_noexcept] = ACTIONS(5608), - [anon_sym_CARET] = ACTIONS(5608), - [anon_sym_GT] = ACTIONS(5610), - [anon_sym_COMMA] = ACTIONS(5608), - [anon_sym_PIPE_PIPE] = ACTIONS(5608), - [anon_sym_DOT] = ACTIONS(5608), - [anon_sym__Atomic] = ACTIONS(5608), - [anon_sym_LT_LT] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(5608), - [anon_sym_PERCENT] = ACTIONS(5608), - [anon_sym_const] = ACTIONS(5610), - [anon_sym_constexpr] = ACTIONS(5608), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5608), - [anon_sym_LT_EQ] = ACTIONS(5608), - [anon_sym_BANG_EQ] = ACTIONS(5608), - [anon_sym_SEMI] = ACTIONS(5608), - [anon_sym_AMP_AMP] = ACTIONS(5608), - [anon_sym_DASH_GT] = ACTIONS(5608), - [anon_sym_PLUS_PLUS] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_GT_GT] = ACTIONS(5608), - [anon_sym_DASH_DASH] = ACTIONS(5608), - }, - [3608] = { - [sym_field_declaration_list] = STATE(4193), - [anon_sym_LBRACE] = ACTIONS(3302), + [3578] = { + [sym_field_declaration_list] = STATE(4162), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [3609] = { - [anon_sym_LPAREN2] = ACTIONS(5339), - [anon_sym_CARET] = ACTIONS(5339), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_DASH_DASH] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_PIPE_PIPE] = ACTIONS(5339), - [anon_sym_DOT] = ACTIONS(5339), - [anon_sym_LT_LT] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_EQ_EQ] = ACTIONS(5339), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_PERCENT] = ACTIONS(5339), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(5341), - [anon_sym_QMARK] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_GT_EQ] = ACTIONS(5339), - [anon_sym_STAR] = ACTIONS(5339), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_LT_EQ] = ACTIONS(5339), - [anon_sym_BANG_EQ] = ACTIONS(5339), - [anon_sym_AMP_AMP] = ACTIONS(5339), - [anon_sym_DASH_GT] = ACTIONS(5339), - [anon_sym_PLUS_PLUS] = ACTIONS(5339), - [anon_sym_GT_GT] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), + [3579] = { + [anon_sym_LPAREN2] = ACTIONS(5614), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACK] = ACTIONS(5614), + [anon_sym_final] = ACTIONS(5614), + [anon_sym_mutable] = ACTIONS(5614), + [anon_sym_restrict] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5614), + [anon_sym_PIPE] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5616), + [anon_sym_volatile] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_GT_EQ] = ACTIONS(5614), + [anon_sym_STAR] = ACTIONS(5614), + [anon_sym_SLASH] = ACTIONS(5616), + [anon_sym_override] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5614), + [anon_sym_explicit] = ACTIONS(5614), + [sym_noexcept] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5614), + [anon_sym_GT] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5614), + [anon_sym_PIPE_PIPE] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym__Atomic] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_LBRACK] = ACTIONS(5614), + [anon_sym_PERCENT] = ACTIONS(5614), + [anon_sym_const] = ACTIONS(5616), + [anon_sym_constexpr] = ACTIONS(5614), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_BANG_EQ] = ACTIONS(5614), + [anon_sym_SEMI] = ACTIONS(5614), + [anon_sym_AMP_AMP] = ACTIONS(5614), + [anon_sym_DASH_GT] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(5616), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_DASH_DASH] = ACTIONS(5614), }, - [3610] = { - [aux_sym_argument_list_repeat1] = STATE(2595), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(8958), + [3580] = { + [sym_field_declaration_list] = STATE(4163), + [anon_sym_LBRACE] = ACTIONS(3312), [sym_comment] = ACTIONS(3), }, - [3611] = { - [sym_new_declarator] = STATE(4195), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_RBRACK] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), + [3581] = { + [anon_sym_LPAREN2] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5338), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_DASH_DASH] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_PIPE_PIPE] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5338), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_PERCENT] = ACTIONS(5338), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(5340), + [anon_sym_QMARK] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_GT_EQ] = ACTIONS(5338), + [anon_sym_STAR] = ACTIONS(5338), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_LT_EQ] = ACTIONS(5338), + [anon_sym_BANG_EQ] = ACTIONS(5338), + [anon_sym_AMP_AMP] = ACTIONS(5338), + [anon_sym_DASH_GT] = ACTIONS(5338), + [anon_sym_PLUS_PLUS] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5338), + [anon_sym_RBRACK] = ACTIONS(5338), }, - [3612] = { - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_CARET] = ACTIONS(7553), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_DASH_DASH] = ACTIONS(7553), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7553), - [anon_sym_LT_LT] = ACTIONS(7553), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7553), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7553), - [anon_sym_STAR] = ACTIONS(7553), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_LT_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7553), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_GT_GT] = ACTIONS(7553), - [anon_sym_RBRACK] = ACTIONS(7553), + [3582] = { + [aux_sym_argument_list_repeat1] = STATE(2580), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(8922), + [sym_comment] = ACTIONS(3), }, - [3613] = { - [anon_sym_LPAREN2] = ACTIONS(7540), - [anon_sym_DASH] = ACTIONS(7542), - [anon_sym_DASH_DASH] = ACTIONS(7540), - [anon_sym_STAR_EQ] = ACTIONS(7540), - [anon_sym_LT_LT_EQ] = ACTIONS(7540), - [anon_sym_PERCENT_EQ] = ACTIONS(7540), - [anon_sym_EQ_EQ] = ACTIONS(7540), - [anon_sym_PIPE] = ACTIONS(7542), - [anon_sym_LT] = ACTIONS(7542), - [anon_sym_CARET_EQ] = ACTIONS(7540), - [anon_sym_AMP] = ACTIONS(7542), - [anon_sym_PLUS] = ACTIONS(7542), - [anon_sym_GT_EQ] = ACTIONS(7540), - [anon_sym_STAR] = ACTIONS(7542), - [anon_sym_SLASH] = ACTIONS(7542), - [anon_sym_COLON] = ACTIONS(7540), - [anon_sym_SLASH_EQ] = ACTIONS(7540), - [anon_sym_PLUS_EQ] = ACTIONS(7540), - [anon_sym_CARET] = ACTIONS(7542), - [anon_sym_GT] = ACTIONS(7542), - [anon_sym_PIPE_EQ] = ACTIONS(7540), - [anon_sym_GT_GT_EQ] = ACTIONS(7540), - [anon_sym_COMMA] = ACTIONS(7540), - [anon_sym_PIPE_PIPE] = ACTIONS(7540), - [anon_sym_DOT] = ACTIONS(7540), - [anon_sym_LT_LT] = ACTIONS(7542), - [anon_sym_LBRACK] = ACTIONS(7540), - [anon_sym_PERCENT] = ACTIONS(7542), + [3583] = { + [sym_new_declarator] = STATE(4165), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_RBRACK] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_PERCENT] = ACTIONS(7530), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7540), - [anon_sym_DASH_EQ] = ACTIONS(7540), - [anon_sym_LT_EQ] = ACTIONS(7540), - [anon_sym_BANG_EQ] = ACTIONS(7540), - [anon_sym_AMP_EQ] = ACTIONS(7540), - [anon_sym_AMP_AMP] = ACTIONS(7540), - [anon_sym_DASH_GT] = ACTIONS(7540), - [anon_sym_EQ] = ACTIONS(7542), - [anon_sym_PLUS_PLUS] = ACTIONS(7540), - [anon_sym_GT_GT] = ACTIONS(7542), - [anon_sym_RBRACK] = ACTIONS(7540), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7530), + [anon_sym_DASH_DASH] = ACTIONS(7530), }, - [3614] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(8131), + [3584] = { + [anon_sym_LPAREN2] = ACTIONS(7534), + [anon_sym_CARET] = ACTIONS(7534), + [anon_sym_GT] = ACTIONS(7536), + [anon_sym_DASH] = ACTIONS(7536), + [anon_sym_DASH_DASH] = ACTIONS(7534), + [anon_sym_COMMA] = ACTIONS(7534), + [anon_sym_PIPE_PIPE] = ACTIONS(7534), + [anon_sym_DOT] = ACTIONS(7534), + [anon_sym_LT_LT] = ACTIONS(7534), + [anon_sym_LBRACK] = ACTIONS(7534), + [anon_sym_EQ_EQ] = ACTIONS(7534), + [anon_sym_PIPE] = ACTIONS(7536), + [anon_sym_LT] = ACTIONS(7536), + [anon_sym_PERCENT] = ACTIONS(7534), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7536), + [anon_sym_QMARK] = ACTIONS(7534), + [anon_sym_PLUS] = ACTIONS(7536), + [anon_sym_GT_EQ] = ACTIONS(7534), + [anon_sym_STAR] = ACTIONS(7534), + [anon_sym_SLASH] = ACTIONS(7536), + [anon_sym_LT_EQ] = ACTIONS(7534), + [anon_sym_BANG_EQ] = ACTIONS(7534), + [anon_sym_AMP_AMP] = ACTIONS(7534), + [anon_sym_DASH_GT] = ACTIONS(7534), + [anon_sym_PLUS_PLUS] = ACTIONS(7534), + [anon_sym_GT_GT] = ACTIONS(7534), + [anon_sym_RBRACK] = ACTIONS(7534), }, - [3615] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2709), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_PIPE_PIPE] = ACTIONS(2709), - [anon_sym_DOT] = ACTIONS(2709), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_EQ_EQ] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2709), + [3585] = { + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_DASH_DASH] = ACTIONS(7521), + [anon_sym_STAR_EQ] = ACTIONS(7521), + [anon_sym_LT_LT_EQ] = ACTIONS(7521), + [anon_sym_PERCENT_EQ] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_CARET_EQ] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_GT_EQ] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7523), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_COLON] = ACTIONS(7521), + [anon_sym_SLASH_EQ] = ACTIONS(7521), + [anon_sym_PLUS_EQ] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7523), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_PIPE_EQ] = ACTIONS(7521), + [anon_sym_GT_GT_EQ] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7523), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_PERCENT] = ACTIONS(7523), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_DASH_EQ] = ACTIONS(7521), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_AMP_EQ] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7521), + [anon_sym_EQ] = ACTIONS(7523), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7523), + [anon_sym_RBRACK] = ACTIONS(7521), + }, + [3586] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(8176), + }, + [3587] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_CARET] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_COMMA] = ACTIONS(2711), + [anon_sym_PIPE_PIPE] = ACTIONS(2711), + [anon_sym_DOT] = ACTIONS(2711), + [anon_sym_LT_LT] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_EQ_EQ] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_PERCENT] = ACTIONS(2711), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_BANG_EQ] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_DASH_GT] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_RBRACK] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_QMARK] = ACTIONS(2711), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_LT_EQ] = ACTIONS(2711), + [anon_sym_BANG_EQ] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_DASH_GT] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_GT_GT] = ACTIONS(2711), + [anon_sym_RBRACK] = ACTIONS(2711), }, - [3616] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4196), - [sym_logical_expression] = STATE(4196), - [sym_bitwise_expression] = STATE(4196), - [sym_cast_expression] = STATE(4196), - [sym_new_expression] = STATE(4196), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4196), - [sym_char_literal] = STATE(4196), - [sym_template_function] = STATE(4196), - [sym_conditional_expression] = STATE(4196), - [sym_equality_expression] = STATE(4196), - [sym_relational_expression] = STATE(4196), - [sym_delete_expression] = STATE(4196), - [sym_sizeof_expression] = STATE(4196), - [sym_parenthesized_expression] = STATE(4196), - [sym_lambda_expression] = STATE(4196), - [sym_concatenated_string] = STATE(4196), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4196), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4196), - [sym_math_expression] = STATE(4196), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8960), - [anon_sym_DASH] = ACTIONS(1482), - [sym_true] = ACTIONS(8962), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [sym_null] = ACTIONS(8962), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8960), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8962), - [sym_nullptr] = ACTIONS(8962), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), + [3588] = { + [sym_template_function] = STATE(4166), + [sym__expression] = STATE(4166), + [sym_logical_expression] = STATE(4166), + [sym_bitwise_expression] = STATE(4166), + [sym_cast_expression] = STATE(4166), + [sym_delete_expression] = STATE(4166), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4166), + [sym_lambda_expression] = STATE(4166), + [sym_char_literal] = STATE(4166), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4166), + [sym_equality_expression] = STATE(4166), + [sym_relational_expression] = STATE(4166), + [sym_sizeof_expression] = STATE(4166), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4166), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4166), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4166), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4166), + [sym_math_expression] = STATE(4166), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4166), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8924), + [anon_sym_DASH] = ACTIONS(1496), + [sym_true] = ACTIONS(8926), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_null] = ACTIONS(8926), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8924), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8926), + [sym_nullptr] = ACTIONS(8926), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1518), }, - [3617] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(1738), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [3589] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(5269), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [sym_null] = ACTIONS(5269), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5267), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(5269), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(1234), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(1736), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [sym_raw_string_literal] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(5268), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [sym_null] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5266), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(1240), }, - [3618] = { - [sym_template_type] = STATE(239), + [3590] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(8964), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(8928), }, - [3619] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3591] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(7674), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(7684), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3620] = { - [anon_sym_RPAREN] = ACTIONS(8966), + [3592] = { + [anon_sym_RPAREN] = ACTIONS(8930), [sym_comment] = ACTIONS(3), }, - [3621] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3593] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(7674), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(7684), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3622] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3622), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(8968), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(8968), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(8968), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(8968), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [3594] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3594), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(8932), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(8932), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(8932), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(8932), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), }, - [3623] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(4199), - [sym_logical_expression] = STATE(4199), - [sym_bitwise_expression] = STATE(4199), - [sym_cast_expression] = STATE(4199), - [sym_new_expression] = STATE(4199), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(4199), - [sym_char_literal] = STATE(4199), - [sym_template_function] = STATE(4199), - [sym_conditional_expression] = STATE(4199), - [sym_equality_expression] = STATE(4199), - [sym_relational_expression] = STATE(4199), - [sym_delete_expression] = STATE(4199), - [sym_sizeof_expression] = STATE(4199), - [sym_parenthesized_expression] = STATE(4199), - [sym_lambda_expression] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(967), + [3595] = { + [sym_template_function] = STATE(4169), + [sym__expression] = STATE(4169), + [sym_logical_expression] = STATE(4169), + [sym_bitwise_expression] = STATE(4169), + [sym_cast_expression] = STATE(4169), + [sym_delete_expression] = STATE(4169), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(4169), + [sym_lambda_expression] = STATE(4169), + [sym_char_literal] = STATE(4169), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(4199), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(4199), - [sym_math_expression] = STATE(4199), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(4169), + [sym_equality_expression] = STATE(4169), + [sym_relational_expression] = STATE(4169), + [sym_sizeof_expression] = STATE(4169), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(8971), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(8973), - [sym_null] = ACTIONS(8973), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(8971), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(8973), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(8973), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(4169), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(4169), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(4169), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(4169), + [sym_math_expression] = STATE(4169), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(4169), + [sym_raw_string_literal] = ACTIONS(8935), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(8937), + [sym_null] = ACTIONS(8937), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(8935), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(8937), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(8937), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [3624] = { - [sym_initializer_list] = STATE(2571), - [sym_new_declarator] = STATE(2572), - [sym_argument_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(7685), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [3596] = { + [sym_new_declarator] = STATE(2556), + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(7666), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [3625] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4200), - [sym_logical_expression] = STATE(4200), - [sym_bitwise_expression] = STATE(4200), - [sym_cast_expression] = STATE(4200), - [sym_new_expression] = STATE(4200), - [sym_field_expression] = STATE(4200), - [sym_compound_literal_expression] = STATE(4200), - [sym_char_literal] = STATE(4200), - [sym_template_function] = STATE(4200), - [sym_conditional_expression] = STATE(4200), - [sym_equality_expression] = STATE(4200), - [sym_relational_expression] = STATE(4200), - [sym_delete_expression] = STATE(4200), - [sym_sizeof_expression] = STATE(4200), - [sym_parenthesized_expression] = STATE(4200), - [sym_lambda_expression] = STATE(4200), - [sym_concatenated_string] = STATE(4200), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4200), - [sym_assignment_expression] = STATE(4200), - [sym_pointer_expression] = STATE(4200), - [sym_shift_expression] = STATE(4200), - [sym_math_expression] = STATE(4200), - [sym_call_expression] = STATE(4200), - [sym_lambda_capture_specifier] = STATE(196), + [3597] = { + [sym_template_function] = STATE(4170), + [sym__expression] = STATE(4170), + [sym_logical_expression] = STATE(4170), + [sym_bitwise_expression] = STATE(4170), + [sym_cast_expression] = STATE(4170), + [sym_delete_expression] = STATE(4170), + [sym_field_expression] = STATE(4170), + [sym_compound_literal_expression] = STATE(4170), + [sym_lambda_expression] = STATE(4170), + [sym_char_literal] = STATE(4170), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4170), + [sym_equality_expression] = STATE(4170), + [sym_relational_expression] = STATE(4170), + [sym_sizeof_expression] = STATE(4170), + [sym_subscript_expression] = STATE(4170), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(8975), - [anon_sym_DASH] = ACTIONS(3424), - [sym_true] = ACTIONS(8977), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [sym_null] = ACTIONS(8977), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(8975), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(8977), - [sym_nullptr] = ACTIONS(8977), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), + [sym_parenthesized_expression] = STATE(4170), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(4170), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4170), + [sym_pointer_expression] = STATE(4170), + [sym_shift_expression] = STATE(4170), + [sym_math_expression] = STATE(4170), + [sym_call_expression] = STATE(4170), + [sym_new_expression] = STATE(4170), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(8939), + [anon_sym_DASH] = ACTIONS(3434), + [sym_true] = ACTIONS(8941), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [sym_null] = ACTIONS(8941), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(8939), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(8941), + [sym_nullptr] = ACTIONS(8941), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), }, - [3626] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3598] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3627] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_RPAREN] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3599] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3628] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_RPAREN] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3600] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3629] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3601] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(7674), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3630] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3602] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3631] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_RPAREN] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3603] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_RPAREN] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3632] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3604] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3633] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3605] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3634] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(8979), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3606] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(8943), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3635] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3607] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(7674), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3636] = { - [sym_string_literal] = STATE(3636), - [aux_sym_concatenated_string_repeat1] = STATE(3636), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [3608] = { + [sym_string_literal] = STATE(3608), + [aux_sym_concatenated_string_repeat1] = STATE(3608), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5323), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [3637] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(828), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1482), - [sym_raw_string_literal] = ACTIONS(2826), - [sym_true] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(41), - [sym_null] = ACTIONS(2828), + [3609] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(832), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(1400), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [sym_raw_string_literal] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(41), + [sym_null] = ACTIONS(2830), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(8981), - [anon_sym_AMP] = ACTIONS(8983), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2826), - [anon_sym_LT_LT] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_RPAREN] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_GT_GT] = ACTIONS(4127), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(8945), + [anon_sym_AMP] = ACTIONS(8947), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2828), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [3638] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8985), + [3610] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8949), }, - [3639] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3611] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3640] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4203), - [sym_logical_expression] = STATE(4203), - [sym_bitwise_expression] = STATE(4203), - [sym_cast_expression] = STATE(4203), - [sym_new_expression] = STATE(4203), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4203), - [sym_char_literal] = STATE(4203), - [sym_template_function] = STATE(4203), - [sym_conditional_expression] = STATE(4203), - [sym_equality_expression] = STATE(4203), - [sym_relational_expression] = STATE(4203), - [sym_delete_expression] = STATE(4203), - [sym_sizeof_expression] = STATE(4203), - [sym_parenthesized_expression] = STATE(4203), - [sym_lambda_expression] = STATE(4203), - [sym_concatenated_string] = STATE(4203), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4203), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4203), - [sym_math_expression] = STATE(4203), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8987), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(8989), - [sym_null] = ACTIONS(8989), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8987), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(8989), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(8989), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [3612] = { + [sym_template_function] = STATE(4173), + [sym__expression] = STATE(4173), + [sym_logical_expression] = STATE(4173), + [sym_bitwise_expression] = STATE(4173), + [sym_cast_expression] = STATE(4173), + [sym_delete_expression] = STATE(4173), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4173), + [sym_lambda_expression] = STATE(4173), + [sym_char_literal] = STATE(4173), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4173), + [sym_equality_expression] = STATE(4173), + [sym_relational_expression] = STATE(4173), + [sym_sizeof_expression] = STATE(4173), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4173), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4173), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4173), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4173), + [sym_math_expression] = STATE(4173), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4173), + [sym_raw_string_literal] = ACTIONS(8951), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(8953), + [sym_null] = ACTIONS(8953), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8951), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(8953), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(8953), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [3641] = { - [sym_do_statement] = STATE(432), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3613] = { + [sym_do_statement] = STATE(433), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(432), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(432), - [sym_if_statement] = STATE(432), - [sym_switch_statement] = STATE(432), - [sym_for_statement] = STATE(432), - [sym_return_statement] = STATE(432), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(433), + [sym_try_statement] = STATE(433), + [sym_if_statement] = STATE(433), + [sym_switch_statement] = STATE(433), + [sym_for_statement] = STATE(433), + [sym_return_statement] = STATE(433), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(432), - [sym_break_statement] = STATE(432), - [sym_continue_statement] = STATE(432), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(433), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(432), - [sym_labeled_statement] = STATE(432), - [sym_expression_statement] = STATE(432), - [sym_while_statement] = STATE(432), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(433), + [sym_for_range_loop] = STATE(433), + [sym_compound_statement] = STATE(433), + [sym_labeled_statement] = STATE(433), + [sym_expression_statement] = STATE(433), + [sym_while_statement] = STATE(433), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -149153,18 +148630,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -149177,51 +148654,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3642] = { - [sym_do_statement] = STATE(714), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3614] = { + [sym_do_statement] = STATE(715), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(714), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(714), - [sym_if_statement] = STATE(714), - [sym_switch_statement] = STATE(714), - [sym_for_statement] = STATE(714), - [sym_return_statement] = STATE(714), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(715), + [sym_try_statement] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_switch_statement] = STATE(715), + [sym_for_statement] = STATE(715), + [sym_return_statement] = STATE(715), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(714), - [sym_break_statement] = STATE(714), - [sym_continue_statement] = STATE(714), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(715), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(714), - [sym_labeled_statement] = STATE(714), - [sym_expression_statement] = STATE(714), - [sym_while_statement] = STATE(714), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(715), + [sym_for_range_loop] = STATE(715), + [sym_compound_statement] = STATE(715), + [sym_labeled_statement] = STATE(715), + [sym_expression_statement] = STATE(715), + [sym_while_statement] = STATE(715), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -149235,18 +148712,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -149259,212 +148736,212 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3643] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(4205), - [sym_logical_expression] = STATE(4205), - [sym_bitwise_expression] = STATE(4205), - [sym_cast_expression] = STATE(4205), - [sym_new_expression] = STATE(4205), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4205), - [sym_declaration] = STATE(4204), - [sym_char_literal] = STATE(4205), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(4205), - [sym_conditional_expression] = STATE(4205), - [sym_equality_expression] = STATE(4205), - [sym_relational_expression] = STATE(4205), - [sym_sizeof_expression] = STATE(4205), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(4205), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(4205), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(4205), - [sym_lambda_expression] = STATE(4205), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(4206), - [sym_assignment_expression] = STATE(4205), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4205), - [sym_math_expression] = STATE(4205), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [3615] = { + [sym_template_function] = STATE(4175), + [sym__expression] = STATE(4175), + [sym_logical_expression] = STATE(4175), + [sym_bitwise_expression] = STATE(4175), + [sym_cast_expression] = STATE(4175), + [sym_delete_expression] = STATE(4175), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(4175), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(4175), + [sym_lambda_expression] = STATE(4175), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(4174), + [sym_for_range_declaration] = STATE(4176), + [sym_conditional_expression] = STATE(4175), + [sym_equality_expression] = STATE(4175), + [sym_relational_expression] = STATE(4175), + [sym_sizeof_expression] = STATE(4175), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(4175), + [sym_concatenated_string] = STATE(4175), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(8991), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(4175), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4175), + [sym_math_expression] = STATE(4175), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4175), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(8955), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(8993), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(8957), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(8993), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(8957), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(8991), + [sym_number_literal] = ACTIONS(8955), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(8993), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(8957), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(8993), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(8957), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(8995), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(8959), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [3644] = { - [aux_sym_try_statement_repeat1] = STATE(4207), - [sym_catch_clause] = STATE(4207), - [anon_sym_catch] = ACTIONS(1297), + [3616] = { + [sym_catch_clause] = STATE(4177), + [aux_sym_try_statement_repeat1] = STATE(4177), + [anon_sym_catch] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [3645] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4208), - [sym_logical_expression] = STATE(4208), - [sym_bitwise_expression] = STATE(4208), - [sym_cast_expression] = STATE(4208), - [sym_new_expression] = STATE(4208), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4208), - [sym_char_literal] = STATE(4208), - [sym_template_function] = STATE(4208), - [sym_conditional_expression] = STATE(4208), - [sym_equality_expression] = STATE(4208), - [sym_relational_expression] = STATE(4208), - [sym_delete_expression] = STATE(4208), - [sym_sizeof_expression] = STATE(4208), - [sym_parenthesized_expression] = STATE(4208), - [sym_lambda_expression] = STATE(4208), - [sym_concatenated_string] = STATE(4208), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4208), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4208), - [sym_math_expression] = STATE(4208), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(8997), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(8999), - [sym_null] = ACTIONS(8999), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8997), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(8999), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(8999), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [3617] = { + [sym_template_function] = STATE(4178), + [sym__expression] = STATE(4178), + [sym_logical_expression] = STATE(4178), + [sym_bitwise_expression] = STATE(4178), + [sym_cast_expression] = STATE(4178), + [sym_delete_expression] = STATE(4178), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4178), + [sym_lambda_expression] = STATE(4178), + [sym_char_literal] = STATE(4178), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4178), + [sym_equality_expression] = STATE(4178), + [sym_relational_expression] = STATE(4178), + [sym_sizeof_expression] = STATE(4178), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4178), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4178), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4178), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4178), + [sym_math_expression] = STATE(4178), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4178), + [sym_raw_string_literal] = ACTIONS(8961), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(8963), + [sym_null] = ACTIONS(8963), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8961), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(8963), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(8963), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [3646] = { - [anon_sym_LPAREN2] = ACTIONS(9001), + [3618] = { + [anon_sym_LPAREN2] = ACTIONS(8965), [sym_comment] = ACTIONS(3), }, - [3647] = { - [sym_do_statement] = STATE(4210), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3619] = { + [sym_do_statement] = STATE(4180), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4210), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4210), - [sym_if_statement] = STATE(4210), - [sym_switch_statement] = STATE(4210), - [sym_for_statement] = STATE(4210), - [sym_return_statement] = STATE(4210), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4180), + [sym_try_statement] = STATE(4180), + [sym_if_statement] = STATE(4180), + [sym_switch_statement] = STATE(4180), + [sym_for_statement] = STATE(4180), + [sym_return_statement] = STATE(4180), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4210), - [sym_break_statement] = STATE(4210), - [sym_continue_statement] = STATE(4210), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4180), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4210), - [sym_labeled_statement] = STATE(4210), - [sym_expression_statement] = STATE(4210), - [sym_while_statement] = STATE(4210), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4180), + [sym_for_range_loop] = STATE(4180), + [sym_compound_statement] = STATE(4180), + [sym_labeled_statement] = STATE(4180), + [sym_expression_statement] = STATE(4180), + [sym_while_statement] = STATE(4180), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -149478,7 +148955,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -149502,325 +148979,325 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3648] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(9007), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_namespace] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_using] = ACTIONS(9003), - [sym_preproc_directive] = ACTIONS(9003), - [aux_sym_preproc_if_token1] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9003), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [sym_operator_name] = ACTIONS(9005), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [aux_sym_preproc_include_token1] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_template] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [ts_builtin_sym_end] = ACTIONS(9005), - [aux_sym_preproc_def_token1] = ACTIONS(9003), - [anon_sym_AMP_AMP] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), + [3620] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(8971), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_namespace] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_using] = ACTIONS(8967), + [sym_preproc_directive] = ACTIONS(8967), + [aux_sym_preproc_if_token1] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8967), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [sym_operator_name] = ACTIONS(8969), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [aux_sym_preproc_include_token1] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_template] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [ts_builtin_sym_end] = ACTIONS(8969), + [aux_sym_preproc_def_token1] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), }, - [3649] = { - [anon_sym_else] = ACTIONS(6507), - [anon_sym_while] = ACTIONS(6507), + [3621] = { + [anon_sym_else] = ACTIONS(6496), + [anon_sym_while] = ACTIONS(6496), [sym_comment] = ACTIONS(3), }, - [3650] = { - [sym_do_statement] = STATE(4212), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [3622] = { + [sym_do_statement] = STATE(4182), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4212), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4212), - [sym_if_statement] = STATE(4212), - [sym_switch_statement] = STATE(4212), - [sym_for_statement] = STATE(4212), - [sym_return_statement] = STATE(4212), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4182), + [sym_try_statement] = STATE(4182), + [sym_if_statement] = STATE(4182), + [sym_switch_statement] = STATE(4182), + [sym_for_statement] = STATE(4182), + [sym_return_statement] = STATE(4182), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4212), - [sym_break_statement] = STATE(4212), - [sym_continue_statement] = STATE(4212), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4182), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4212), - [sym_labeled_statement] = STATE(4212), - [sym_expression_statement] = STATE(4212), - [sym_while_statement] = STATE(4212), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4182), + [sym_for_range_loop] = STATE(4182), + [sym_compound_statement] = STATE(4182), + [sym_labeled_statement] = STATE(4182), + [sym_expression_statement] = STATE(4182), + [sym_while_statement] = STATE(4182), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3651] = { - [aux_sym_for_statement_repeat1] = STATE(4214), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9009), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3623] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4184), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(8973), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3652] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4215), - [sym_logical_expression] = STATE(4215), - [sym_bitwise_expression] = STATE(4215), - [sym_cast_expression] = STATE(4215), - [sym_new_expression] = STATE(4215), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4215), - [sym_char_literal] = STATE(4215), - [sym_template_function] = STATE(4215), - [sym_conditional_expression] = STATE(4215), - [sym_equality_expression] = STATE(4215), - [sym_relational_expression] = STATE(4215), - [sym_delete_expression] = STATE(4215), - [sym_sizeof_expression] = STATE(4215), - [sym_parenthesized_expression] = STATE(4215), - [sym_lambda_expression] = STATE(4215), - [sym_concatenated_string] = STATE(4215), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4215), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4215), - [sym_math_expression] = STATE(4215), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9011), + [3624] = { + [sym_template_function] = STATE(4185), + [sym__expression] = STATE(4185), + [sym_logical_expression] = STATE(4185), + [sym_bitwise_expression] = STATE(4185), + [sym_cast_expression] = STATE(4185), + [sym_delete_expression] = STATE(4185), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4185), + [sym_lambda_expression] = STATE(4185), + [sym_char_literal] = STATE(4185), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4185), + [sym_equality_expression] = STATE(4185), + [sym_relational_expression] = STATE(4185), + [sym_sizeof_expression] = STATE(4185), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4185), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4185), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4185), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4185), + [sym_math_expression] = STATE(4185), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4185), + [sym_raw_string_literal] = ACTIONS(8975), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(9013), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(9013), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(8977), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(8977), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9011), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(8975), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(9013), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(9013), + [sym_false] = ACTIONS(8977), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(8977), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(9009), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(8973), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [3653] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(9015), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3625] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(8979), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3654] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9017), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3626] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(8981), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3655] = { - [anon_sym_else] = ACTIONS(7559), - [anon_sym_catch] = ACTIONS(7559), - [anon_sym_while] = ACTIONS(7559), + [3627] = { + [anon_sym_else] = ACTIONS(7540), + [anon_sym_catch] = ACTIONS(7540), + [anon_sym_while] = ACTIONS(7540), [sym_comment] = ACTIONS(3), }, - [3656] = { - [sym_template_argument_list] = STATE(377), + [3628] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -149828,7 +149305,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -149838,7 +149315,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(9019), + [anon_sym_COLON] = ACTIONS(8983), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -149864,418 +149341,411 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [3657] = { - [sym_parenthesized_expression] = STATE(4219), - [anon_sym_LPAREN2] = ACTIONS(372), + [3629] = { + [sym_parenthesized_expression] = STATE(4189), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [3658] = { - [anon_sym_LPAREN2] = ACTIONS(9021), + [3630] = { + [anon_sym_LPAREN2] = ACTIONS(8985), [sym_comment] = ACTIONS(3), }, - [3659] = { - [sym_compound_statement] = STATE(4221), - [anon_sym_LBRACE] = ACTIONS(374), + [3631] = { + [sym_compound_statement] = STATE(4191), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [3660] = { - [anon_sym_LPAREN2] = ACTIONS(9023), - [anon_sym_constexpr] = ACTIONS(9025), + [3632] = { + [anon_sym_LPAREN2] = ACTIONS(8987), + [anon_sym_constexpr] = ACTIONS(8989), [sym_comment] = ACTIONS(3), }, - [3661] = { + [3633] = { [sym_comment] = ACTIONS(3), - [anon_sym_while] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(9027), + [anon_sym_while] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(8991), }, - [3662] = { - [sym_do_statement] = STATE(4225), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [3634] = { + [sym_do_statement] = STATE(4195), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4225), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4195), + [sym_try_statement] = STATE(4195), + [sym_if_statement] = STATE(4195), + [sym_switch_statement] = STATE(4195), + [sym_for_statement] = STATE(4195), + [sym_return_statement] = STATE(4195), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4195), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_expression_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4195), + [sym_for_range_loop] = STATE(4195), + [sym_compound_statement] = STATE(4195), + [sym_labeled_statement] = STATE(4195), + [sym_expression_statement] = STATE(4195), + [sym_while_statement] = STATE(4195), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3663] = { - [anon_sym_DASH] = ACTIONS(2818), - [sym_raw_string_literal] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2816), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2816), - [anon_sym_namespace] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2818), - [sym_auto] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_using] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [sym_operator_name] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_nullptr] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [ts_builtin_sym_end] = ACTIONS(2816), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_restrict] = ACTIONS(2818), + [3635] = { + [anon_sym_DASH] = ACTIONS(2820), + [sym_raw_string_literal] = ACTIONS(2818), + [anon_sym_else] = ACTIONS(2820), + [sym_true] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [sym_null] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_explicit] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym_namespace] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_struct] = ACTIONS(2820), + [sym_auto] = ACTIONS(2820), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_using] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [sym_operator_name] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [sym_nullptr] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_template] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [ts_builtin_sym_end] = ACTIONS(2818), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_restrict] = ACTIONS(2820), }, - [3664] = { - [sym_union_specifier] = STATE(1117), - [sym_macro_type_specifier] = STATE(1117), - [sym_class_specifier] = STATE(1117), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1117), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1117), - [aux_sym_sized_type_specifier_repeat1] = STATE(3665), - [sym_struct_specifier] = STATE(1117), - [sym_enum_specifier] = STATE(1117), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(1117), - [anon_sym_unsigned] = ACTIONS(7813), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(2246), - [anon_sym_signed] = ACTIONS(7813), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(7813), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(7817), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(7813), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(2246), + [3636] = { + [sym_union_specifier] = STATE(1113), + [sym_macro_type_specifier] = STATE(1113), + [sym_class_specifier] = STATE(1113), + [aux_sym_sized_type_specifier_repeat1] = STATE(3637), + [sym_sized_type_specifier] = STATE(1113), + [sym__type_specifier] = STATE(1113), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(1113), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1113), + [sym_struct_specifier] = STATE(1113), + [anon_sym_unsigned] = ACTIONS(7794), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(7794), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(7794), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(7798), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(7794), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(2248), }, - [3665] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4226), - [anon_sym_unsigned] = ACTIONS(9029), + [3637] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4196), + [anon_sym_unsigned] = ACTIONS(8993), [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(9029), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_long] = ACTIONS(9029), - [anon_sym_GT2] = ACTIONS(621), - [anon_sym_short] = ACTIONS(9029), - [sym_identifier] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2349), + [anon_sym_signed] = ACTIONS(8993), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_long] = ACTIONS(8993), + [anon_sym_GT2] = ACTIONS(554), + [anon_sym_short] = ACTIONS(8993), + [sym_identifier] = ACTIONS(2343), + [sym_primitive_type] = ACTIONS(2341), }, - [3666] = { - [anon_sym_COMMA] = ACTIONS(9031), - [anon_sym_GT2] = ACTIONS(9031), + [3638] = { + [anon_sym_COMMA] = ACTIONS(8995), + [anon_sym_GT2] = ACTIONS(8995), [sym_comment] = ACTIONS(3), }, - [3667] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(3667), - [sym_storage_class_specifier] = STATE(3667), - [sym_type_qualifier] = STATE(3667), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_COMMA] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1683), - [sym_operator_name] = ACTIONS(1679), + [3639] = { + [sym_storage_class_specifier] = STATE(3639), + [sym_type_qualifier] = STATE(3639), + [aux_sym__declaration_specifiers_repeat1] = STATE(3639), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_register] = ACTIONS(1802), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_GT2] = ACTIONS(1795), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_inline] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1797), + [anon_sym_restrict] = ACTIONS(1799), + [sym_operator_name] = ACTIONS(1795), }, - [3668] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(3667), - [sym_storage_class_specifier] = STATE(3667), - [sym_type_qualifier] = STATE(3667), - [anon_sym_LPAREN2] = ACTIONS(3708), + [3640] = { + [sym_storage_class_specifier] = STATE(3639), + [sym_type_qualifier] = STATE(3639), + [aux_sym__declaration_specifiers_repeat1] = STATE(3639), + [anon_sym_LPAREN2] = ACTIONS(3895), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(3708), + [anon_sym_COMMA] = ACTIONS(3895), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(3708), - [anon_sym_GT2] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3895), + [anon_sym_GT2] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3897), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [sym_identifier] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [sym_identifier] = ACTIONS(3897), [anon_sym_inline] = ACTIONS(63), - [sym_operator_name] = ACTIONS(3708), + [sym_operator_name] = ACTIONS(3895), [anon_sym_restrict] = ACTIONS(11), }, - [3669] = { - [sym_parameter_list] = STATE(3672), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - }, - [3670] = { - [sym_parameter_list] = STATE(3672), - [anon_sym_LPAREN2] = ACTIONS(587), + [3641] = { + [sym_parameter_list] = STATE(3644), + [anon_sym_LPAREN2] = ACTIONS(614), [anon_sym_GT2] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(616), [anon_sym_COMMA] = ACTIONS(2756), [sym_comment] = ACTIONS(3), }, - [3671] = { - [sym__abstract_declarator] = STATE(3224), - [sym_template_type] = STATE(1807), - [sym_abstract_array_declarator] = STATE(3224), - [sym_function_declarator] = STATE(4227), - [sym_destructor_name] = STATE(4227), - [sym__declarator] = STATE(4227), - [sym_abstract_pointer_declarator] = STATE(3224), - [sym_array_declarator] = STATE(4227), - [sym_type_qualifier] = STATE(3675), + [3642] = { + [sym_abstract_reference_declarator] = STATE(3204), + [sym_template_function] = STATE(4197), + [sym_abstract_array_declarator] = STATE(3204), + [aux_sym_type_definition_repeat1] = STATE(3646), + [sym__declarator] = STATE(4197), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(1806), + [sym_reference_declarator] = STATE(4197), + [sym_array_declarator] = STATE(4197), + [sym_abstract_pointer_declarator] = STATE(3204), + [sym_template_type] = STATE(1808), + [sym_type_qualifier] = STATE(3646), + [sym_destructor_name] = STATE(4197), [sym_parameter_list] = STATE(1174), - [sym_pointer_declarator] = STATE(4227), - [sym_scoped_namespace_identifier] = STATE(1807), - [sym_abstract_reference_declarator] = STATE(3224), - [sym_abstract_function_declarator] = STATE(3224), - [sym_template_function] = STATE(4227), - [aux_sym_type_definition_repeat1] = STATE(3675), - [sym_scoped_identifier] = STATE(1809), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(4227), - [anon_sym_LPAREN2] = ACTIONS(3557), + [sym_pointer_declarator] = STATE(4197), + [sym_structured_binding_declarator] = STATE(4197), + [sym_abstract_function_declarator] = STATE(3204), + [sym_scoped_namespace_identifier] = STATE(1808), + [sym__abstract_declarator] = STATE(3204), + [sym_function_declarator] = STATE(4197), + [anon_sym_LPAREN2] = ACTIONS(3567), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4987), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_COLON_COLON] = ACTIONS(3565), + [anon_sym_GT2] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_COLON_COLON] = ACTIONS(3575), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_AMP] = ACTIONS(5758), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(5747), - [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(5762), + [anon_sym_TILDE] = ACTIONS(2200), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(3567), - [anon_sym_AMP_AMP] = ACTIONS(5749), - [sym_operator_name] = ACTIONS(9033), + [sym_identifier] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(5764), + [sym_operator_name] = ACTIONS(8997), [anon_sym_restrict] = ACTIONS(11), }, - [3672] = { - [sym_virtual_specifier] = STATE(4229), - [aux_sym_function_declarator_repeat1] = STATE(4229), - [sym_trailing_return_type] = STATE(4229), - [sym_type_qualifier] = STATE(4229), - [anon_sym_LPAREN2] = ACTIONS(1841), - [sym_noexcept] = ACTIONS(9035), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym__Atomic] = ACTIONS(1062), + [3643] = { + [sym_parameter_list] = STATE(3644), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + }, + [3644] = { + [sym_virtual_specifier] = STATE(4199), + [aux_sym_function_declarator_repeat1] = STATE(4199), + [sym_type_qualifier] = STATE(4199), + [sym_trailing_return_type] = STATE(4199), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(8999), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(9037), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(9001), + [anon_sym_restrict] = ACTIONS(1070), }, - [3673] = { - [sym__abstract_declarator] = STATE(2443), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(2443), - [sym_function_declarator] = STATE(1386), - [sym_destructor_name] = STATE(1386), - [sym__declarator] = STATE(1386), - [sym_abstract_pointer_declarator] = STATE(2443), - [sym_array_declarator] = STATE(1386), - [sym_type_qualifier] = STATE(4230), - [sym_parameter_list] = STATE(587), - [sym_pointer_declarator] = STATE(1386), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(2443), - [sym_abstract_function_declarator] = STATE(2443), - [sym_template_function] = STATE(1386), - [aux_sym_type_definition_repeat1] = STATE(4230), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(1386), - [anon_sym_LPAREN2] = ACTIONS(3557), + [3645] = { + [sym_abstract_reference_declarator] = STATE(2428), + [sym_template_function] = STATE(1381), + [sym_abstract_array_declarator] = STATE(2428), + [aux_sym_type_definition_repeat1] = STATE(4200), + [sym__declarator] = STATE(1381), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(1381), + [sym_array_declarator] = STATE(1381), + [sym_abstract_pointer_declarator] = STATE(2428), + [sym_template_type] = STATE(310), + [sym_type_qualifier] = STATE(4200), + [sym_destructor_name] = STATE(1381), + [sym_parameter_list] = STATE(590), + [sym_pointer_declarator] = STATE(1381), + [sym_structured_binding_declarator] = STATE(1381), + [sym_abstract_function_declarator] = STATE(2428), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(2428), + [sym_function_declarator] = STATE(1381), + [anon_sym_LPAREN2] = ACTIONS(3567), [anon_sym_mutable] = ACTIONS(11), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(3579), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(5764), + [anon_sym_AMP] = ACTIONS(5770), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(5766), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(5772), + [anon_sym_TILDE] = ACTIONS(310), [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(5768), - [sym_operator_name] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(4987), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5776), + [sym_operator_name] = ACTIONS(2760), [anon_sym_restrict] = ACTIONS(11), }, - [3674] = { - [sym_parameter_list] = STATE(2827), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [sym_comment] = ACTIONS(3), - }, - [3675] = { - [sym_type_qualifier] = STATE(3675), - [aux_sym_type_definition_repeat1] = STATE(3675), + [3646] = { + [aux_sym_type_definition_repeat1] = STATE(3646), + [sym_type_qualifier] = STATE(3646), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_mutable] = ACTIONS(2103), [anon_sym_COMMA] = ACTIONS(2106), @@ -150296,16 +149766,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(2103), [sym_operator_name] = ACTIONS(2106), }, - [3676] = { - [sym_argument_list] = STATE(1165), + [3647] = { + [sym_parameter_list] = STATE(2812), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [sym_comment] = ACTIONS(3), + }, + [3648] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(9039), + [anon_sym_COMMA] = ACTIONS(9003), [anon_sym_PIPE_PIPE] = ACTIONS(2305), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_GT2] = ACTIONS(9039), + [anon_sym_GT2] = ACTIONS(9003), [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_PERCENT] = ACTIONS(2311), [anon_sym_EQ_EQ] = ACTIONS(2313), @@ -150327,2659 +149806,3090 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [3677] = { - [sym_union_specifier] = STATE(4233), - [sym_macro_type_specifier] = STATE(4233), - [sym_class_specifier] = STATE(4233), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(4233), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(4233), - [aux_sym_sized_type_specifier_repeat1] = STATE(4232), - [sym_struct_specifier] = STATE(4233), - [sym_enum_specifier] = STATE(4233), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(4233), - [anon_sym_unsigned] = ACTIONS(9041), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(9043), - [anon_sym_signed] = ACTIONS(9041), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(9041), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(9045), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(9041), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(9043), + [3649] = { + [sym_union_specifier] = STATE(4203), + [sym_macro_type_specifier] = STATE(4203), + [sym_class_specifier] = STATE(4203), + [aux_sym_sized_type_specifier_repeat1] = STATE(4202), + [sym_sized_type_specifier] = STATE(4203), + [sym__type_specifier] = STATE(4203), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(4203), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(4203), + [sym_struct_specifier] = STATE(4203), + [anon_sym_unsigned] = ACTIONS(9005), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(9007), + [anon_sym_signed] = ACTIONS(9005), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(9005), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(9009), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(9005), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(9007), }, - [3678] = { - [sym_virtual_specifier] = STATE(4234), - [aux_sym_function_declarator_repeat1] = STATE(4234), - [sym_trailing_return_type] = STATE(4234), - [sym_type_qualifier] = STATE(4234), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(9047), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4011), - [anon_sym__Atomic] = ACTIONS(1062), + [3650] = { + [sym_virtual_specifier] = STATE(4204), + [aux_sym_function_declarator_repeat1] = STATE(4204), + [sym_type_qualifier] = STATE(4204), + [sym_trailing_return_type] = STATE(4204), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(9011), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4059), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4011), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(4059), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7847), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7828), + [anon_sym_EQ] = ACTIONS(4059), + [anon_sym_restrict] = ACTIONS(1070), }, - [3679] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3679), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_final] = ACTIONS(2082), - [sym_noexcept] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(9049), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(9049), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(9049), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(9049), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), + [3651] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3651), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_final] = ACTIONS(1783), + [sym_noexcept] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(9013), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(9013), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(9013), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(9013), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1783), }, - [3680] = { - [sym_parameter_list] = STATE(3682), - [sym_abstract_array_declarator] = STATE(4235), - [sym_abstract_pointer_declarator] = STATE(4235), - [sym_abstract_reference_declarator] = STATE(4235), - [sym_abstract_function_declarator] = STATE(4235), - [sym__abstract_declarator] = STATE(4235), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7851), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(7853), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(7855), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), + [3652] = { + [sym_abstract_reference_declarator] = STATE(4205), + [sym_abstract_array_declarator] = STATE(4205), + [sym_abstract_pointer_declarator] = STATE(4205), + [sym_parameter_list] = STATE(3654), + [sym_abstract_function_declarator] = STATE(4205), + [sym__abstract_declarator] = STATE(4205), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7832), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), }, - [3681] = { - [sym_abstract_array_declarator] = STATE(4237), - [sym_parameter_list] = STATE(3682), - [sym_abstract_reference_declarator] = STATE(4237), - [sym_abstract_function_declarator] = STATE(4237), - [aux_sym_type_definition_repeat1] = STATE(4236), - [sym_abstract_pointer_declarator] = STATE(4237), - [sym_type_qualifier] = STATE(4236), - [sym__abstract_declarator] = STATE(4237), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [3653] = { + [sym_abstract_reference_declarator] = STATE(4207), + [aux_sym_type_definition_repeat1] = STATE(4206), + [sym_abstract_array_declarator] = STATE(4207), + [sym_parameter_list] = STATE(3654), + [sym_abstract_function_declarator] = STATE(4207), + [sym_abstract_pointer_declarator] = STATE(4207), + [sym_type_qualifier] = STATE(4206), + [sym__abstract_declarator] = STATE(4207), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7851), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(7853), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(7855), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7832), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(1070), }, - [3682] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4238), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4238), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(9052), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [3654] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4208), + [sym_type_qualifier] = STATE(4208), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(9016), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(3587), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(3602), + [anon_sym_restrict] = ACTIONS(1070), }, - [3683] = { - [sym_parameter_list] = STATE(4239), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_SEMI] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), + [3655] = { + [sym_parameter_list] = STATE(4209), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_SEMI] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), }, - [3684] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(7469), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3656] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(7450), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3685] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4240), - [sym_logical_expression] = STATE(4240), - [sym_bitwise_expression] = STATE(4240), - [sym_cast_expression] = STATE(4240), - [sym_new_expression] = STATE(4240), - [sym_field_expression] = STATE(4240), - [sym_compound_literal_expression] = STATE(4240), - [sym_char_literal] = STATE(4240), - [sym_template_function] = STATE(4240), - [sym_conditional_expression] = STATE(4240), - [sym_equality_expression] = STATE(4240), - [sym_relational_expression] = STATE(4240), - [sym_delete_expression] = STATE(4240), - [sym_sizeof_expression] = STATE(4240), - [sym_parenthesized_expression] = STATE(4240), - [sym_lambda_expression] = STATE(4240), - [sym_concatenated_string] = STATE(4240), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4240), - [sym_assignment_expression] = STATE(4240), - [sym_pointer_expression] = STATE(4240), - [sym_shift_expression] = STATE(4240), - [sym_math_expression] = STATE(4240), - [sym_call_expression] = STATE(4240), - [sym_lambda_capture_specifier] = STATE(196), + [3657] = { + [sym_template_function] = STATE(4210), + [sym__expression] = STATE(4210), + [sym_logical_expression] = STATE(4210), + [sym_bitwise_expression] = STATE(4210), + [sym_cast_expression] = STATE(4210), + [sym_delete_expression] = STATE(4210), + [sym_field_expression] = STATE(4210), + [sym_compound_literal_expression] = STATE(4210), + [sym_lambda_expression] = STATE(4210), + [sym_char_literal] = STATE(4210), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4210), + [sym_equality_expression] = STATE(4210), + [sym_relational_expression] = STATE(4210), + [sym_sizeof_expression] = STATE(4210), + [sym_subscript_expression] = STATE(4210), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9054), - [anon_sym_DASH] = ACTIONS(1585), - [sym_true] = ACTIONS(9056), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [sym_null] = ACTIONS(9056), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9054), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9056), - [sym_nullptr] = ACTIONS(9056), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), + [sym_parenthesized_expression] = STATE(4210), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(4210), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4210), + [sym_pointer_expression] = STATE(4210), + [sym_shift_expression] = STATE(4210), + [sym_math_expression] = STATE(4210), + [sym_call_expression] = STATE(4210), + [sym_new_expression] = STATE(4210), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(1595), + [sym_true] = ACTIONS(9020), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [sym_null] = ACTIONS(9020), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9018), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9020), + [sym_nullptr] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), }, - [3686] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(894), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [3658] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_DASH_GT] = ACTIONS(4127), - [sym_raw_string_literal] = ACTIONS(5267), - [sym_true] = ACTIONS(5269), - [sym_null] = ACTIONS(5269), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(9058), - [anon_sym_AMP] = ACTIONS(7886), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(7886), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5267), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5269), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(895), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [anon_sym_LPAREN2] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_DASH_GT] = ACTIONS(4125), + [sym_raw_string_literal] = ACTIONS(5266), + [sym_true] = ACTIONS(5268), + [sym_null] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(9022), + [anon_sym_AMP] = ACTIONS(7867), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(7867), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5266), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, - [3687] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(9060), + [3659] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9024), }, - [3688] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(5829), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4529), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(5841), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3660] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(5836), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(5846), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3689] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4242), - [sym_logical_expression] = STATE(4242), - [sym_bitwise_expression] = STATE(4242), - [sym_cast_expression] = STATE(4242), - [sym_new_expression] = STATE(4242), - [sym_field_expression] = STATE(4242), - [sym_compound_literal_expression] = STATE(4242), - [sym_char_literal] = STATE(4242), - [sym_template_function] = STATE(4242), - [sym_conditional_expression] = STATE(4242), - [sym_equality_expression] = STATE(4242), - [sym_relational_expression] = STATE(4242), - [sym_delete_expression] = STATE(4242), - [sym_sizeof_expression] = STATE(4242), - [sym_parenthesized_expression] = STATE(4242), - [sym_lambda_expression] = STATE(4242), - [sym_concatenated_string] = STATE(4242), - [sym_string_literal] = STATE(894), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4242), - [sym_assignment_expression] = STATE(4242), - [sym_pointer_expression] = STATE(4242), - [sym_shift_expression] = STATE(4242), - [sym_math_expression] = STATE(4242), - [sym_call_expression] = STATE(4242), - [sym_lambda_capture_specifier] = STATE(196), + [3661] = { + [sym_template_function] = STATE(4212), + [sym__expression] = STATE(4212), + [sym_logical_expression] = STATE(4212), + [sym_bitwise_expression] = STATE(4212), + [sym_cast_expression] = STATE(4212), + [sym_delete_expression] = STATE(4212), + [sym_field_expression] = STATE(4212), + [sym_compound_literal_expression] = STATE(4212), + [sym_lambda_expression] = STATE(4212), + [sym_char_literal] = STATE(4212), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4212), + [sym_equality_expression] = STATE(4212), + [sym_relational_expression] = STATE(4212), + [sym_sizeof_expression] = STATE(4212), + [sym_subscript_expression] = STATE(4212), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9062), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [sym_true] = ACTIONS(9064), - [sym_null] = ACTIONS(9064), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9062), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1591), - [sym_false] = ACTIONS(9064), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(9064), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1599), + [sym_parenthesized_expression] = STATE(4212), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(895), + [sym_concatenated_string] = STATE(4212), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4212), + [sym_pointer_expression] = STATE(4212), + [sym_shift_expression] = STATE(4212), + [sym_math_expression] = STATE(4212), + [sym_call_expression] = STATE(4212), + [sym_new_expression] = STATE(4212), + [sym_raw_string_literal] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LPAREN2] = ACTIONS(1597), + [sym_true] = ACTIONS(9028), + [sym_null] = ACTIONS(9028), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9026), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1601), + [sym_false] = ACTIONS(9028), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(9028), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), }, - [3690] = { - [sym_new_declarator] = STATE(3532), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SEMI] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7549), + [3662] = { + [sym_new_declarator] = STATE(3504), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_PERCENT] = ACTIONS(7530), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_SEMI] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7530), }, - [3691] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(8131), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3663] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(8176), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3692] = { - [anon_sym_COMMA] = ACTIONS(9066), - [anon_sym_RPAREN] = ACTIONS(9066), + [3664] = { + [anon_sym_COMMA] = ACTIONS(9030), + [anon_sym_RPAREN] = ACTIONS(9030), [sym_comment] = ACTIONS(3), }, - [3693] = { + [3665] = { [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(9068), - [sym_preproc_arg] = ACTIONS(9070), + [anon_sym_LF] = ACTIONS(9032), + [sym_preproc_arg] = ACTIONS(9034), }, - [3694] = { - [aux_sym_preproc_params_repeat1] = STATE(3694), - [anon_sym_COMMA] = ACTIONS(9072), - [anon_sym_RPAREN] = ACTIONS(9066), + [3666] = { + [aux_sym_preproc_params_repeat1] = STATE(3666), + [anon_sym_COMMA] = ACTIONS(9036), + [anon_sym_RPAREN] = ACTIONS(9030), [sym_comment] = ACTIONS(3), }, - [3695] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(4243), - [sym_logical_expression] = STATE(4243), - [sym_bitwise_expression] = STATE(4243), - [sym_cast_expression] = STATE(4243), - [sym_new_expression] = STATE(4243), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(4243), - [sym_char_literal] = STATE(4243), - [sym_template_function] = STATE(4243), - [sym_conditional_expression] = STATE(4243), - [sym_equality_expression] = STATE(4243), - [sym_relational_expression] = STATE(4243), - [sym_delete_expression] = STATE(4243), - [sym_sizeof_expression] = STATE(4243), - [sym_parenthesized_expression] = STATE(4243), - [sym_lambda_expression] = STATE(4243), - [sym_concatenated_string] = STATE(4243), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(4243), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(4243), - [sym_math_expression] = STATE(4243), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9075), - [anon_sym_DASH] = ACTIONS(1755), - [sym_true] = ACTIONS(9077), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [sym_null] = ACTIONS(9077), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(9075), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9077), - [sym_nullptr] = ACTIONS(9077), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - }, - [3696] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3545), - [sym_logical_expression] = STATE(3545), - [sym_bitwise_expression] = STATE(3545), - [sym_cast_expression] = STATE(3545), - [sym_new_expression] = STATE(3545), - [sym_field_expression] = STATE(3545), - [sym_compound_literal_expression] = STATE(3545), - [sym_char_literal] = STATE(3545), - [sym_template_function] = STATE(3545), - [sym_conditional_expression] = STATE(3545), - [sym_equality_expression] = STATE(3545), - [sym_relational_expression] = STATE(3545), - [sym_delete_expression] = STATE(3545), - [sym_sizeof_expression] = STATE(3545), - [sym_parenthesized_expression] = STATE(3545), - [sym_initializer_list] = STATE(3546), - [sym_concatenated_string] = STATE(3545), - [sym_string_literal] = STATE(1899), - [sym_lambda_expression] = STATE(3545), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3545), - [sym_assignment_expression] = STATE(3545), - [sym_pointer_expression] = STATE(3545), - [sym_shift_expression] = STATE(3545), - [sym_math_expression] = STATE(3545), - [sym_call_expression] = STATE(3545), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(7583), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(7585), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(7585), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7583), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(7585), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(7585), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_LBRACE] = ACTIONS(3241), - }, - [3697] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(240), - [sym_logical_expression] = STATE(240), - [sym_bitwise_expression] = STATE(240), - [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), - [sym_field_expression] = STATE(241), - [sym_compound_literal_expression] = STATE(240), - [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), - [sym_conditional_expression] = STATE(240), - [sym_equality_expression] = STATE(240), - [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), - [sym_sizeof_expression] = STATE(240), - [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), - [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), - [sym_assignment_expression] = STATE(240), - [sym_pointer_expression] = STATE(241), - [sym_shift_expression] = STATE(240), - [sym_math_expression] = STATE(240), - [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(9079), - }, - [3698] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(7951), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(7959), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(7961), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(7963), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(2925), + [3667] = { + [sym_storage_class_specifier] = STATE(3667), + [sym_type_qualifier] = STATE(3667), + [aux_sym__declaration_specifiers_repeat1] = STATE(3667), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_register] = ACTIONS(1802), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1795), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1797), + [sym_operator_name] = ACTIONS(1795), }, - [3699] = { - [anon_sym_RPAREN] = ACTIONS(9081), + [3668] = { + [sym_storage_class_specifier] = STATE(3667), + [sym_type_qualifier] = STATE(3667), + [aux_sym__declaration_specifiers_repeat1] = STATE(3667), + [anon_sym_LPAREN2] = ACTIONS(3895), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(3895), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(3895), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [sym_identifier] = ACTIONS(3897), + [sym_operator_name] = ACTIONS(3895), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_restrict] = ACTIONS(11), }, - [3700] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(7951), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(7959), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(7961), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(7963), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(2160), - }, - [3701] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3701), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(9083), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(9083), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(9083), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(9083), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACK] = ACTIONS(2077), - }, - [3702] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(4246), - [sym_logical_expression] = STATE(4246), - [sym_bitwise_expression] = STATE(4246), - [sym_cast_expression] = STATE(4246), - [sym_new_expression] = STATE(4246), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(4246), - [sym_char_literal] = STATE(4246), - [sym_template_function] = STATE(4246), - [sym_conditional_expression] = STATE(4246), - [sym_equality_expression] = STATE(4246), - [sym_relational_expression] = STATE(4246), - [sym_delete_expression] = STATE(4246), - [sym_sizeof_expression] = STATE(4246), - [sym_parenthesized_expression] = STATE(4246), - [sym_lambda_expression] = STATE(4246), - [sym_concatenated_string] = STATE(4246), - [sym_string_literal] = STATE(967), + [3669] = { + [sym_parameter_list] = STATE(3672), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(2756), + [sym_comment] = ACTIONS(3), + }, + [3670] = { + [sym_abstract_reference_declarator] = STATE(3675), + [sym_template_function] = STATE(4213), + [sym_abstract_array_declarator] = STATE(3675), + [aux_sym_type_definition_repeat1] = STATE(3673), + [sym__declarator] = STATE(4213), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(4213), + [sym_array_declarator] = STATE(4213), + [sym_abstract_pointer_declarator] = STATE(3675), + [sym_template_type] = STATE(310), + [sym_type_qualifier] = STATE(3673), + [sym_destructor_name] = STATE(4213), + [sym_parameter_list] = STATE(1886), + [sym_pointer_declarator] = STATE(4213), + [sym_structured_binding_declarator] = STATE(4213), + [sym_abstract_function_declarator] = STATE(3675), + [sym_scoped_namespace_identifier] = STATE(310), + [sym__abstract_declarator] = STATE(3675), + [sym_function_declarator] = STATE(4213), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(3579), + [anon_sym_constexpr] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(5944), + [anon_sym_volatile] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(5946), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_explicit] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(4987), + [sym_identifier] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(5948), + [sym_operator_name] = ACTIONS(9039), + [anon_sym_restrict] = ACTIONS(11), + }, + [3671] = { + [sym_parameter_list] = STATE(3672), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + }, + [3672] = { + [sym_virtual_specifier] = STATE(4215), + [aux_sym_function_declarator_repeat1] = STATE(4215), + [sym_type_qualifier] = STATE(4215), + [sym_trailing_return_type] = STATE(4215), + [anon_sym_LPAREN2] = ACTIONS(1899), + [sym_noexcept] = ACTIONS(9041), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(9043), + [anon_sym_restrict] = ACTIONS(1070), + }, + [3673] = { + [aux_sym_type_definition_repeat1] = STATE(3673), + [sym_type_qualifier] = STATE(3673), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_mutable] = ACTIONS(2103), + [anon_sym_COMMA] = ACTIONS(2106), + [anon_sym__Atomic] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_constexpr] = ACTIONS(2103), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_volatile] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_explicit] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2101), + [anon_sym_restrict] = ACTIONS(2103), + [sym_operator_name] = ACTIONS(2106), + }, + [3674] = { + [sym_parameter_list] = STATE(2870), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [sym_comment] = ACTIONS(3), + }, + [3675] = { + [sym_parameter_list] = STATE(2873), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + }, + [3676] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(9003), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(9003), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [3677] = { + [sym_union_specifier] = STATE(4218), + [sym_macro_type_specifier] = STATE(4218), + [sym_class_specifier] = STATE(4218), + [aux_sym_sized_type_specifier_repeat1] = STATE(4217), + [sym_sized_type_specifier] = STATE(4218), + [sym__type_specifier] = STATE(4218), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(4218), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(4218), + [sym_struct_specifier] = STATE(4218), + [anon_sym_unsigned] = ACTIONS(9045), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(9047), + [anon_sym_signed] = ACTIONS(9045), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(9045), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(9049), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(9045), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(9047), + }, + [3678] = { + [sym_virtual_specifier] = STATE(4219), + [aux_sym_function_declarator_repeat1] = STATE(4219), + [sym_type_qualifier] = STATE(4219), + [sym_trailing_return_type] = STATE(4219), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(9051), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4059), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(4059), + [anon_sym_DASH_GT] = ACTIONS(7919), + [anon_sym_EQ] = ACTIONS(4059), + [anon_sym_restrict] = ACTIONS(1070), + }, + [3679] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3680), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(7921), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(7921), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(7921), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(7925), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(7921), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(358), + }, + [3680] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(9053), + [anon_sym_signed] = ACTIONS(9053), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_long] = ACTIONS(9053), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_short] = ACTIONS(9053), + [sym_identifier] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(560), + }, + [3681] = { + [sym_abstract_reference_declarator] = STATE(4223), + [sym_abstract_array_declarator] = STATE(4223), + [sym_abstract_pointer_declarator] = STATE(4223), + [sym_parameter_list] = STATE(1886), + [sym_abstract_function_declarator] = STATE(4223), + [sym__abstract_declarator] = STATE(4223), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(9055), + [anon_sym_COMMA] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(9057), + [anon_sym_RPAREN] = ACTIONS(6085), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(9059), + [sym_comment] = ACTIONS(3), + }, + [3682] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3682), + [sym_type_qualifier] = STATE(3682), + [anon_sym_LPAREN2] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(9061), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + }, + [3683] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(3682), + [sym_type_qualifier] = STATE(3682), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(7927), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(5970), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + }, + [3684] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3684), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_unsigned] = ACTIONS(9064), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(9064), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(9064), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(9064), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + }, + [3685] = { + [sym_template_function] = STATE(4224), + [sym__expression] = STATE(4224), + [sym_logical_expression] = STATE(4224), + [sym_bitwise_expression] = STATE(4224), + [sym_cast_expression] = STATE(4224), + [sym_delete_expression] = STATE(4224), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(4224), + [sym_lambda_expression] = STATE(4224), + [sym_char_literal] = STATE(4224), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(4246), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(4246), - [sym_math_expression] = STATE(4246), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(4224), + [sym_equality_expression] = STATE(4224), + [sym_relational_expression] = STATE(4224), + [sym_sizeof_expression] = STATE(4224), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(9086), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(9088), - [sym_null] = ACTIONS(9088), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(9086), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(9088), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(9088), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(4224), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(4224), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(4224), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(4224), + [sym_math_expression] = STATE(4224), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(4224), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9067), + [anon_sym_DASH] = ACTIONS(1710), + [sym_true] = ACTIONS(9069), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [sym_null] = ACTIONS(9069), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(9067), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9069), + [sym_nullptr] = ACTIONS(9069), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), }, - [3703] = { - [sym_initializer_list] = STATE(3583), - [sym_new_declarator] = STATE(3584), - [sym_argument_list] = STATE(3583), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(7943), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_RBRACK] = ACTIONS(3138), + [3686] = { + [sym_template_function] = STATE(3517), + [sym__expression] = STATE(3517), + [sym_logical_expression] = STATE(3517), + [sym_bitwise_expression] = STATE(3517), + [sym_cast_expression] = STATE(3517), + [sym_delete_expression] = STATE(3517), + [sym_field_expression] = STATE(3517), + [sym_compound_literal_expression] = STATE(3517), + [sym_lambda_expression] = STATE(3517), + [sym_char_literal] = STATE(3517), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), + [sym_conditional_expression] = STATE(3517), + [sym_equality_expression] = STATE(3517), + [sym_relational_expression] = STATE(3517), + [sym_sizeof_expression] = STATE(3517), + [sym_subscript_expression] = STATE(3517), + [sym_scoped_namespace_identifier] = STATE(760), + [sym_initializer_list] = STATE(3518), + [sym_parenthesized_expression] = STATE(3517), + [sym_string_literal] = STATE(1903), + [sym_lambda_capture_specifier] = STATE(758), + [sym_concatenated_string] = STATE(3517), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3517), + [sym_pointer_expression] = STATE(3517), + [sym_shift_expression] = STATE(3517), + [sym_math_expression] = STATE(3517), + [sym_call_expression] = STATE(3517), + [sym_new_expression] = STATE(3517), + [sym_raw_string_literal] = ACTIONS(7564), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(7566), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7564), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(7566), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3243), }, - [3704] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(4247), - [sym_logical_expression] = STATE(4247), - [sym_bitwise_expression] = STATE(4247), - [sym_cast_expression] = STATE(4247), - [sym_new_expression] = STATE(4247), - [sym_field_expression] = STATE(4247), - [sym_compound_literal_expression] = STATE(4247), - [sym_char_literal] = STATE(4247), - [sym_template_function] = STATE(4247), - [sym_conditional_expression] = STATE(4247), - [sym_equality_expression] = STATE(4247), - [sym_relational_expression] = STATE(4247), - [sym_delete_expression] = STATE(4247), - [sym_sizeof_expression] = STATE(4247), - [sym_parenthesized_expression] = STATE(4247), - [sym_lambda_expression] = STATE(4247), - [sym_concatenated_string] = STATE(4247), - [sym_string_literal] = STATE(1899), + [3687] = { + [sym_template_function] = STATE(240), + [sym__expression] = STATE(240), + [sym_logical_expression] = STATE(240), + [sym_bitwise_expression] = STATE(240), + [sym_cast_expression] = STATE(240), + [sym_delete_expression] = STATE(240), + [sym_field_expression] = STATE(241), + [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), + [sym_char_literal] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(240), + [sym_equality_expression] = STATE(240), + [sym_relational_expression] = STATE(240), + [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), + [sym_parenthesized_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), + [sym_concatenated_string] = STATE(240), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(240), + [sym_pointer_expression] = STATE(241), + [sym_shift_expression] = STATE(240), + [sym_math_expression] = STATE(240), + [sym_call_expression] = STATE(241), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(9071), + }, + [3688] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(7972), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(7974), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(2927), + }, + [3689] = { + [anon_sym_RPAREN] = ACTIONS(9073), + [sym_comment] = ACTIONS(3), + }, + [3690] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(7972), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(7974), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(2162), + }, + [3691] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3691), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(9075), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(9075), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(9075), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(9075), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_RBRACK] = ACTIONS(1778), + }, + [3692] = { + [sym_template_function] = STATE(4227), + [sym__expression] = STATE(4227), + [sym_logical_expression] = STATE(4227), + [sym_bitwise_expression] = STATE(4227), + [sym_cast_expression] = STATE(4227), + [sym_delete_expression] = STATE(4227), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(4227), + [sym_lambda_expression] = STATE(4227), + [sym_char_literal] = STATE(4227), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(4227), + [sym_equality_expression] = STATE(4227), + [sym_relational_expression] = STATE(4227), + [sym_sizeof_expression] = STATE(4227), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(4227), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(4227), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(4227), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(4227), + [sym_math_expression] = STATE(4227), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(4227), + [sym_raw_string_literal] = ACTIONS(9078), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(9080), + [sym_null] = ACTIONS(9080), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(9078), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(9080), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), + }, + [3693] = { + [sym_new_declarator] = STATE(3555), + [sym_argument_list] = STATE(3554), + [sym_initializer_list] = STATE(3554), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(7954), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_RBRACK] = ACTIONS(3140), + }, + [3694] = { + [sym_template_function] = STATE(4228), + [sym__expression] = STATE(4228), + [sym_logical_expression] = STATE(4228), + [sym_bitwise_expression] = STATE(4228), + [sym_cast_expression] = STATE(4228), + [sym_delete_expression] = STATE(4228), + [sym_field_expression] = STATE(4228), + [sym_compound_literal_expression] = STATE(4228), + [sym_lambda_expression] = STATE(4228), + [sym_char_literal] = STATE(4228), [sym_scoped_identifier] = STATE(756), [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(4247), - [sym_assignment_expression] = STATE(4247), - [sym_pointer_expression] = STATE(4247), - [sym_shift_expression] = STATE(4247), - [sym_math_expression] = STATE(4247), - [sym_call_expression] = STATE(4247), - [sym_lambda_capture_specifier] = STATE(759), + [sym_conditional_expression] = STATE(4228), + [sym_equality_expression] = STATE(4228), + [sym_relational_expression] = STATE(4228), + [sym_sizeof_expression] = STATE(4228), + [sym_subscript_expression] = STATE(4228), [sym_scoped_namespace_identifier] = STATE(760), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9090), - [anon_sym_DASH] = ACTIONS(3800), - [sym_true] = ACTIONS(9092), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(9092), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(9090), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(3806), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9092), - [sym_nullptr] = ACTIONS(9092), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), + [sym_parenthesized_expression] = STATE(4228), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(4228), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(4228), + [sym_pointer_expression] = STATE(4228), + [sym_shift_expression] = STATE(4228), + [sym_math_expression] = STATE(4228), + [sym_call_expression] = STATE(4228), + [sym_new_expression] = STATE(4228), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(3758), + [sym_true] = ACTIONS(9084), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(9084), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(9082), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9084), + [sym_nullptr] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + }, + [3695] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(3901), + }, + [3696] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(3905), + }, + [3697] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_RBRACK] = ACTIONS(3909), + }, + [3698] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(7974), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(3915), + }, + [3699] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_RBRACK] = ACTIONS(3936), + }, + [3700] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(3940), + }, + [3701] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(3901), + }, + [3702] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(3901), + }, + [3703] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(9086), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [3704] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(3915), }, [3705] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(3755), + [sym_string_literal] = STATE(3705), + [aux_sym_concatenated_string_repeat1] = STATE(3705), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(7607), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_RBRACK] = ACTIONS(3886), }, [3706] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(3759), + [sym_template_function] = STATE(2601), + [sym__expression] = STATE(2601), + [sym_logical_expression] = STATE(2601), + [sym_bitwise_expression] = STATE(2601), + [sym_cast_expression] = STATE(2601), + [sym_delete_expression] = STATE(2601), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(2601), + [sym_lambda_expression] = STATE(2601), + [sym_char_literal] = STATE(2601), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(2601), + [sym_equality_expression] = STATE(2601), + [sym_relational_expression] = STATE(2601), + [sym_sizeof_expression] = STATE(2601), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_initializer_list] = STATE(2602), + [sym_parenthesized_expression] = STATE(2601), + [sym_string_literal] = STATE(951), + [sym_lambda_capture_specifier] = STATE(244), + [sym_concatenated_string] = STATE(2601), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(2601), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(2601), + [sym_math_expression] = STATE(2601), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(2601), + [anon_sym_LPAREN2] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1710), + [sym_raw_string_literal] = ACTIONS(5389), + [sym_true] = ACTIONS(5391), + [anon_sym_RBRACK] = ACTIONS(4125), + [sym_null] = ACTIONS(5391), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(9088), + [anon_sym_AMP] = ACTIONS(9090), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(5389), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5391), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(5391), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, [3707] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_RBRACK] = ACTIONS(3763), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9092), }, [3708] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(7951), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(7959), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(7963), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(3769), + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(4527), }, [3709] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_RBRACK] = ACTIONS(3790), + [sym_template_function] = STATE(4231), + [sym__expression] = STATE(4231), + [sym_logical_expression] = STATE(4231), + [sym_bitwise_expression] = STATE(4231), + [sym_cast_expression] = STATE(4231), + [sym_delete_expression] = STATE(4231), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(4231), + [sym_lambda_expression] = STATE(4231), + [sym_char_literal] = STATE(4231), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), + [sym_conditional_expression] = STATE(4231), + [sym_equality_expression] = STATE(4231), + [sym_relational_expression] = STATE(4231), + [sym_sizeof_expression] = STATE(4231), + [sym_subscript_expression] = STATE(950), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(4231), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(4231), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(4231), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(4231), + [sym_math_expression] = STATE(4231), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(4231), + [sym_raw_string_literal] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(9096), + [sym_null] = ACTIONS(9096), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(9094), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(9096), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(9096), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, [3710] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(3794), + [sym_parameter_list] = STATE(959), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(4985), + [sym_comment] = ACTIONS(3), }, [3711] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(7959), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(3755), + [sym_abstract_reference_declarator] = STATE(4233), + [aux_sym_type_definition_repeat1] = STATE(4232), + [sym_abstract_array_declarator] = STATE(4233), + [sym_parameter_list] = STATE(319), + [sym_abstract_function_declarator] = STATE(4233), + [sym_abstract_pointer_declarator] = STATE(4233), + [sym_type_qualifier] = STATE(4232), + [sym__abstract_declarator] = STATE(4233), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(6079), + [anon_sym_volatile] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(6083), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(6081), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(4987), + [anon_sym_constexpr] = ACTIONS(1070), }, [3712] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(3755), + [sym_parameter_list] = STATE(959), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), }, [3713] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(9094), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_LPAREN2] = ACTIONS(9098), + [anon_sym_final] = ACTIONS(9098), + [sym_noexcept] = ACTIONS(9098), + [anon_sym_mutable] = ACTIONS(9098), + [anon_sym_COMMA] = ACTIONS(9098), + [anon_sym__Atomic] = ACTIONS(9098), + [anon_sym_const] = ACTIONS(9100), + [anon_sym_GT2] = ACTIONS(9098), + [anon_sym_LBRACK] = ACTIONS(9098), + [anon_sym_constexpr] = ACTIONS(9098), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(9098), + [anon_sym_override] = ACTIONS(9098), + [anon_sym_SEMI] = ACTIONS(9098), + [anon_sym_COLON] = ACTIONS(9098), + [anon_sym_explicit] = ACTIONS(9098), + [anon_sym_RPAREN] = ACTIONS(9098), + [anon_sym_DASH_GT] = ACTIONS(9098), + [anon_sym_EQ] = ACTIONS(9098), + [anon_sym_restrict] = ACTIONS(9098), + [anon_sym_LBRACE] = ACTIONS(9098), }, [3714] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(7951), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(7959), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(3769), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4979), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4979), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_COLON] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [3715] = { - [sym_string_literal] = STATE(3715), - [aux_sym_concatenated_string_repeat1] = STATE(3715), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(7624), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_RBRACK] = ACTIONS(3732), - }, - [3716] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(2616), - [sym_logical_expression] = STATE(2616), - [sym_bitwise_expression] = STATE(2616), - [sym_cast_expression] = STATE(2616), - [sym_new_expression] = STATE(2616), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(2616), - [sym_char_literal] = STATE(2616), - [sym_template_function] = STATE(2616), - [sym_conditional_expression] = STATE(2616), - [sym_equality_expression] = STATE(2616), - [sym_relational_expression] = STATE(2616), - [sym_delete_expression] = STATE(2616), - [sym_sizeof_expression] = STATE(2616), - [sym_parenthesized_expression] = STATE(2616), - [sym_initializer_list] = STATE(2617), - [sym_concatenated_string] = STATE(2616), - [sym_string_literal] = STATE(967), - [sym_lambda_expression] = STATE(2616), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(2616), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(2616), - [sym_math_expression] = STATE(2616), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [sym_raw_string_literal] = ACTIONS(5390), - [sym_true] = ACTIONS(5392), - [anon_sym_RBRACK] = ACTIONS(4127), - [sym_null] = ACTIONS(5392), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(9096), - [anon_sym_AMP] = ACTIONS(9098), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(5390), - [anon_sym_LT_LT] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5392), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(5392), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_GT_GT] = ACTIONS(4127), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [3717] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(9100), - }, - [3718] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(4529), - }, - [3719] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(4250), - [sym_logical_expression] = STATE(4250), - [sym_bitwise_expression] = STATE(4250), - [sym_cast_expression] = STATE(4250), - [sym_new_expression] = STATE(4250), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(4250), - [sym_char_literal] = STATE(4250), - [sym_template_function] = STATE(4250), - [sym_conditional_expression] = STATE(4250), - [sym_equality_expression] = STATE(4250), - [sym_relational_expression] = STATE(4250), - [sym_delete_expression] = STATE(4250), - [sym_sizeof_expression] = STATE(4250), - [sym_parenthesized_expression] = STATE(4250), - [sym_lambda_expression] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(967), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(4250), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(4250), - [sym_math_expression] = STATE(4250), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), + [sym_template_function] = STATE(4234), + [sym__expression] = STATE(4234), + [sym_logical_expression] = STATE(4234), + [sym_bitwise_expression] = STATE(4234), + [sym_cast_expression] = STATE(4234), + [sym_delete_expression] = STATE(4234), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(4234), + [sym_lambda_expression] = STATE(4234), + [sym_char_literal] = STATE(4234), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4234), + [sym_equality_expression] = STATE(4234), + [sym_relational_expression] = STATE(4234), + [sym_sizeof_expression] = STATE(4234), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4234), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(4234), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4234), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(4234), + [sym_math_expression] = STATE(4234), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(4234), + [anon_sym_LPAREN2] = ACTIONS(1343), [sym_raw_string_literal] = ACTIONS(9102), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1855), [sym_true] = ACTIONS(9104), + [anon_sym_DASH_DASH] = ACTIONS(1875), [sym_null] = ACTIONS(9104), - [anon_sym_DQUOTE] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(9102), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1345), [sym_false] = ACTIONS(9104), - [anon_sym_AMP] = ACTIONS(1765), [sym_nullptr] = ACTIONS(9104), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - }, - [3720] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_PERCENT] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1869), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), }, - [3721] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4251), - [sym_logical_expression] = STATE(4251), - [sym_bitwise_expression] = STATE(4251), - [sym_cast_expression] = STATE(4251), - [sym_new_expression] = STATE(4251), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(4251), - [sym_char_literal] = STATE(4251), - [sym_template_function] = STATE(4251), - [sym_conditional_expression] = STATE(4251), - [sym_equality_expression] = STATE(4251), - [sym_relational_expression] = STATE(4251), - [sym_delete_expression] = STATE(4251), - [sym_sizeof_expression] = STATE(4251), - [sym_parenthesized_expression] = STATE(4251), - [sym_lambda_expression] = STATE(4251), - [sym_concatenated_string] = STATE(4251), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(4251), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(4251), - [sym_math_expression] = STATE(4251), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), + [3716] = { + [sym_template_function] = STATE(4235), + [sym__expression] = STATE(4235), + [sym_logical_expression] = STATE(4235), + [sym_bitwise_expression] = STATE(4235), + [sym_cast_expression] = STATE(4235), + [sym_delete_expression] = STATE(4235), + [sym_field_expression] = STATE(4235), + [sym_compound_literal_expression] = STATE(4235), + [sym_lambda_expression] = STATE(4235), + [sym_char_literal] = STATE(4235), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4235), + [sym_equality_expression] = STATE(4235), + [sym_relational_expression] = STATE(4235), + [sym_sizeof_expression] = STATE(4235), + [sym_subscript_expression] = STATE(4235), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(4235), + [sym_string_literal] = STATE(1970), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(4235), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4235), + [sym_pointer_expression] = STATE(4235), + [sym_shift_expression] = STATE(4235), + [sym_math_expression] = STATE(4235), + [sym_call_expression] = STATE(4235), + [sym_new_expression] = STATE(4235), [sym_raw_string_literal] = ACTIONS(9106), - [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), [sym_true] = ACTIONS(9108), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(3974), [sym_null] = ACTIONS(9108), - [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(9106), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), [sym_false] = ACTIONS(9108), + [anon_sym_AMP] = ACTIONS(1865), [sym_nullptr] = ACTIONS(9108), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(1240), }, - [3722] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4252), - [sym_logical_expression] = STATE(4252), - [sym_bitwise_expression] = STATE(4252), - [sym_cast_expression] = STATE(4252), - [sym_new_expression] = STATE(4252), - [sym_field_expression] = STATE(4252), - [sym_compound_literal_expression] = STATE(4252), - [sym_char_literal] = STATE(4252), - [sym_template_function] = STATE(4252), - [sym_conditional_expression] = STATE(4252), - [sym_equality_expression] = STATE(4252), - [sym_relational_expression] = STATE(4252), - [sym_delete_expression] = STATE(4252), - [sym_sizeof_expression] = STATE(4252), - [sym_parenthesized_expression] = STATE(4252), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(4252), - [sym_string_literal] = STATE(1936), - [sym_lambda_expression] = STATE(4252), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4252), - [sym_assignment_expression] = STATE(4252), - [sym_pointer_expression] = STATE(4252), - [sym_shift_expression] = STATE(4252), - [sym_math_expression] = STATE(4252), - [sym_call_expression] = STATE(4252), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9110), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(9112), - [anon_sym_DASH_DASH] = ACTIONS(3896), - [sym_null] = ACTIONS(9112), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9110), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(9112), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(9112), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(1234), - }, - [3723] = { - [sym_template_type] = STATE(239), + [3717] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(9114), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(9110), }, - [3724] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(2925), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(8058), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(8060), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(8062), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3718] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(8095), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(2927), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(8103), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(8105), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(8107), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3725] = { - [anon_sym_RPAREN] = ACTIONS(9116), + [3719] = { + [anon_sym_RPAREN] = ACTIONS(9112), [sym_comment] = ACTIONS(3), }, - [3726] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(2160), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(8058), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(8060), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(8062), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3720] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(8095), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(8103), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(8105), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(8107), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3727] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3727), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(9118), - [anon_sym_long] = ACTIONS(9118), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_COLON] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(9118), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(9118), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [3721] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3721), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(9114), + [anon_sym_long] = ACTIONS(9114), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(9114), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), }, - [3728] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(4255), - [sym_logical_expression] = STATE(4255), - [sym_bitwise_expression] = STATE(4255), - [sym_cast_expression] = STATE(4255), - [sym_new_expression] = STATE(4255), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(4255), - [sym_char_literal] = STATE(4255), - [sym_template_function] = STATE(4255), - [sym_conditional_expression] = STATE(4255), - [sym_equality_expression] = STATE(4255), - [sym_relational_expression] = STATE(4255), - [sym_delete_expression] = STATE(4255), - [sym_sizeof_expression] = STATE(4255), - [sym_parenthesized_expression] = STATE(4255), - [sym_lambda_expression] = STATE(4255), - [sym_concatenated_string] = STATE(4255), - [sym_string_literal] = STATE(967), + [3722] = { + [sym_template_function] = STATE(4238), + [sym__expression] = STATE(4238), + [sym_logical_expression] = STATE(4238), + [sym_bitwise_expression] = STATE(4238), + [sym_cast_expression] = STATE(4238), + [sym_delete_expression] = STATE(4238), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(4238), + [sym_lambda_expression] = STATE(4238), + [sym_char_literal] = STATE(4238), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(4255), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(4255), - [sym_math_expression] = STATE(4255), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(4238), + [sym_equality_expression] = STATE(4238), + [sym_relational_expression] = STATE(4238), + [sym_sizeof_expression] = STATE(4238), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), + [sym_parenthesized_expression] = STATE(4238), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(4238), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(4238), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(4238), + [sym_math_expression] = STATE(4238), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(4238), + [sym_raw_string_literal] = ACTIONS(9117), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(9119), + [sym_null] = ACTIONS(9119), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(9117), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(9119), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(9119), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), + }, + [3723] = { + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + }, + [3724] = { + [sym_new_declarator] = STATE(4239), + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + }, + [3725] = { + [sym_template_function] = STATE(4240), + [sym__expression] = STATE(4240), + [sym_logical_expression] = STATE(4240), + [sym_bitwise_expression] = STATE(4240), + [sym_cast_expression] = STATE(4240), + [sym_delete_expression] = STATE(4240), + [sym_field_expression] = STATE(4240), + [sym_compound_literal_expression] = STATE(4240), + [sym_lambda_expression] = STATE(4240), + [sym_char_literal] = STATE(4240), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4240), + [sym_equality_expression] = STATE(4240), + [sym_relational_expression] = STATE(4240), + [sym_sizeof_expression] = STATE(4240), + [sym_subscript_expression] = STATE(4240), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(4240), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(4240), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4240), + [sym_pointer_expression] = STATE(4240), + [sym_shift_expression] = STATE(4240), + [sym_math_expression] = STATE(4240), + [sym_call_expression] = STATE(4240), + [sym_new_expression] = STATE(4240), + [anon_sym_LPAREN2] = ACTIONS(1343), [sym_raw_string_literal] = ACTIONS(9121), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(3958), [sym_true] = ACTIONS(9123), + [anon_sym_DASH_DASH] = ACTIONS(3974), [sym_null] = ACTIONS(9123), - [anon_sym_DQUOTE] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(338), [sym_number_literal] = ACTIONS(9121), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(3966), + [anon_sym_AMP] = ACTIONS(1345), [sym_false] = ACTIONS(9123), - [anon_sym_AMP] = ACTIONS(1765), [sym_nullptr] = ACTIONS(9123), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + }, + [3726] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [3727] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(3905), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [3728] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [3729] = { - [sym_argument_list] = STATE(2571), - [sym_initializer_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_COLON] = ACTIONS(3138), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(8095), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(3915), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(8103), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(8107), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [3730] = { - [sym_initializer_list] = STATE(2571), - [sym_new_declarator] = STATE(4256), - [sym_argument_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_COLON] = ACTIONS(3138), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(8042), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(3936), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [3731] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4257), - [sym_logical_expression] = STATE(4257), - [sym_bitwise_expression] = STATE(4257), - [sym_cast_expression] = STATE(4257), - [sym_new_expression] = STATE(4257), - [sym_field_expression] = STATE(4257), - [sym_compound_literal_expression] = STATE(4257), - [sym_char_literal] = STATE(4257), - [sym_template_function] = STATE(4257), - [sym_conditional_expression] = STATE(4257), - [sym_equality_expression] = STATE(4257), - [sym_relational_expression] = STATE(4257), - [sym_delete_expression] = STATE(4257), - [sym_sizeof_expression] = STATE(4257), - [sym_parenthesized_expression] = STATE(4257), - [sym_lambda_expression] = STATE(4257), - [sym_concatenated_string] = STATE(4257), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4257), - [sym_assignment_expression] = STATE(4257), - [sym_pointer_expression] = STATE(4257), - [sym_shift_expression] = STATE(4257), - [sym_math_expression] = STATE(4257), - [sym_call_expression] = STATE(4257), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9125), - [anon_sym_DASH] = ACTIONS(3880), - [sym_true] = ACTIONS(9127), - [anon_sym_DASH_DASH] = ACTIONS(3896), - [sym_null] = ACTIONS(9127), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9125), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9127), - [sym_nullptr] = ACTIONS(9127), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(3911), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [3732] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(3755), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(3940), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [3733] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(3759), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(8103), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [3734] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(3763), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [3735] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(3769), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(8058), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(8062), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(9125), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, [3736] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(3790), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(8095), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(3915), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(8103), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [3737] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(3765), - [anon_sym_SLASH] = ACTIONS(3765), - [anon_sym_COLON] = ACTIONS(3763), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(3765), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_STAR_EQ] = ACTIONS(2204), + [anon_sym_LT_LT_EQ] = ACTIONS(2204), + [anon_sym_PERCENT_EQ] = ACTIONS(2204), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_CARET_EQ] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_COLON] = ACTIONS(2204), + [anon_sym_SLASH_EQ] = ACTIONS(2204), + [anon_sym_PLUS_EQ] = ACTIONS(2204), + [anon_sym_CARET] = ACTIONS(2206), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_PIPE_EQ] = ACTIONS(2204), + [anon_sym_GT_GT_EQ] = ACTIONS(2204), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2204), + [anon_sym_DASH_EQ] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_AMP_EQ] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_DASH_GT] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_GT_GT] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2204), }, [3738] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(3794), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [3739] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(3755), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(8058), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [3740] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(3755), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [3741] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(9129), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [3742] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(3769), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(8058), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [3743] = { - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR_EQ] = ACTIONS(2202), - [anon_sym_LT_LT_EQ] = ACTIONS(2202), - [anon_sym_PERCENT_EQ] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_CARET_EQ] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SLASH_EQ] = ACTIONS(2202), - [anon_sym_PLUS_EQ] = ACTIONS(2202), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_PIPE_EQ] = ACTIONS(2202), - [anon_sym_GT_GT_EQ] = ACTIONS(2202), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(2202), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2204), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2202), - [anon_sym_DASH_EQ] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_AMP_EQ] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_DASH_GT] = ACTIONS(2202), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2202), - }, - [3744] = { - [sym_argument_list] = STATE(1165), - [aux_sym_template_argument_list_repeat1] = STATE(4260), + [aux_sym_template_argument_list_repeat1] = STATE(4243), + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), @@ -152993,7 +152903,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_GT2] = ACTIONS(9131), + [anon_sym_GT2] = ACTIONS(9127), [anon_sym_AMP] = ACTIONS(2321), [anon_sym_QMARK] = ACTIONS(2323), [sym_comment] = ACTIONS(3), @@ -153009,3172 +152919,2646 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [3745] = { - [aux_sym_template_argument_list_repeat1] = STATE(4262), + [3739] = { + [aux_sym_template_argument_list_repeat1] = STATE(4245), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(9133), + [anon_sym_GT2] = ACTIONS(9129), [sym_comment] = ACTIONS(3), }, - [3746] = { - [sym_string_literal] = STATE(3746), - [aux_sym_concatenated_string_repeat1] = STATE(3746), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_COLON] = ACTIONS(3732), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [3740] = { + [sym_string_literal] = STATE(3740), + [aux_sym_concatenated_string_repeat1] = STATE(3740), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_COLON] = ACTIONS(3886), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5323), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [3747] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3720), - [sym_logical_expression] = STATE(3720), - [sym_bitwise_expression] = STATE(3720), - [sym_cast_expression] = STATE(3720), - [sym_new_expression] = STATE(3720), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(3720), - [sym_char_literal] = STATE(3720), - [sym_template_function] = STATE(3720), - [sym_conditional_expression] = STATE(3720), - [sym_equality_expression] = STATE(3720), - [sym_relational_expression] = STATE(3720), - [sym_delete_expression] = STATE(3720), - [sym_sizeof_expression] = STATE(3720), - [sym_parenthesized_expression] = STATE(3720), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(3720), - [sym_string_literal] = STATE(982), - [sym_lambda_expression] = STATE(3720), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(3720), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(3720), - [sym_math_expression] = STATE(3720), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1785), - [sym_raw_string_literal] = ACTIONS(8020), - [sym_true] = ACTIONS(8022), + [3741] = { + [sym_template_function] = STATE(3714), + [sym__expression] = STATE(3714), + [sym_logical_expression] = STATE(3714), + [sym_bitwise_expression] = STATE(3714), + [sym_cast_expression] = STATE(3714), + [sym_delete_expression] = STATE(3714), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(3714), + [sym_lambda_expression] = STATE(3714), + [sym_char_literal] = STATE(3714), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(3714), + [sym_equality_expression] = STATE(3714), + [sym_relational_expression] = STATE(3714), + [sym_sizeof_expression] = STATE(3714), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(3714), + [sym_string_literal] = STATE(1008), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3714), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(3714), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(3714), + [sym_math_expression] = STATE(3714), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(3714), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1855), + [sym_raw_string_literal] = ACTIONS(8065), + [sym_true] = ACTIONS(8067), [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(8022), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(9135), - [anon_sym_AMP] = ACTIONS(9137), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_SLASH] = ACTIONS(4129), - [anon_sym_COLON] = ACTIONS(4129), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(8020), - [anon_sym_LT_LT] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(8022), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(8022), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_GT_GT] = ACTIONS(4127), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [sym_null] = ACTIONS(8067), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(9131), + [anon_sym_AMP] = ACTIONS(9133), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_COLON] = ACTIONS(4127), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8065), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(8067), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(8067), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [3748] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(9139), + [3742] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9135), }, - [3749] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(4529), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3743] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3750] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4264), - [sym_logical_expression] = STATE(4264), - [sym_bitwise_expression] = STATE(4264), - [sym_cast_expression] = STATE(4264), - [sym_new_expression] = STATE(4264), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(4264), - [sym_char_literal] = STATE(4264), - [sym_template_function] = STATE(4264), - [sym_conditional_expression] = STATE(4264), - [sym_equality_expression] = STATE(4264), - [sym_relational_expression] = STATE(4264), - [sym_delete_expression] = STATE(4264), - [sym_sizeof_expression] = STATE(4264), - [sym_parenthesized_expression] = STATE(4264), - [sym_lambda_expression] = STATE(4264), - [sym_concatenated_string] = STATE(4264), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(4264), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(4264), - [sym_math_expression] = STATE(4264), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9141), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(9143), - [sym_null] = ACTIONS(9143), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9141), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(9143), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(9143), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [3744] = { + [sym_template_function] = STATE(4247), + [sym__expression] = STATE(4247), + [sym_logical_expression] = STATE(4247), + [sym_bitwise_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_char_literal] = STATE(4247), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4247), + [sym_equality_expression] = STATE(4247), + [sym_relational_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(4247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(4247), + [sym_math_expression] = STATE(4247), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(4247), + [sym_raw_string_literal] = ACTIONS(9137), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(9139), + [sym_null] = ACTIONS(9139), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9137), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(9139), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(9139), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [3751] = { - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_PIPE] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4386), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(4384), - [anon_sym_CARET] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_COMMA] = ACTIONS(4384), - [anon_sym_LT_LT] = ACTIONS(4384), - [anon_sym_LBRACK] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_LT_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_DASH_GT] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4386), - [anon_sym_GT_GT] = ACTIONS(4384), - [anon_sym_DASH_DASH] = ACTIONS(4384), + [3745] = { + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4378), + [anon_sym_EQ_EQ] = ACTIONS(4378), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_GT_EQ] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4378), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_COLON] = ACTIONS(4378), + [anon_sym_CARET] = ACTIONS(4378), + [anon_sym_GT] = ACTIONS(4380), + [anon_sym_PIPE_PIPE] = ACTIONS(4378), + [anon_sym_DOT] = ACTIONS(4378), + [anon_sym_COMMA] = ACTIONS(4378), + [anon_sym_LT_LT] = ACTIONS(4378), + [anon_sym_LBRACK] = ACTIONS(4378), + [anon_sym_PERCENT] = ACTIONS(4378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4378), + [anon_sym_LT_EQ] = ACTIONS(4378), + [anon_sym_BANG_EQ] = ACTIONS(4378), + [anon_sym_SEMI] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_DASH_GT] = ACTIONS(4378), + [anon_sym_PLUS_PLUS] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4380), + [anon_sym_GT_GT] = ACTIONS(4378), + [anon_sym_DASH_DASH] = ACTIONS(4378), }, - [3752] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [3746] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(9145), + [anon_sym_GT2] = ACTIONS(9141), [sym_comment] = ACTIONS(3), }, - [3753] = { - [anon_sym_LPAREN2] = ACTIONS(4402), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4402), - [anon_sym_PIPE] = ACTIONS(4404), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_STAR] = ACTIONS(4402), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_COLON] = ACTIONS(4402), - [anon_sym_CARET] = ACTIONS(4402), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_DOT] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT_LT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_PERCENT] = ACTIONS(4402), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4402), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_GT_GT] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), + [3747] = { + [anon_sym_LPAREN2] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_PIPE] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_COLON] = ACTIONS(4396), + [anon_sym_CARET] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT_LT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_GT_GT] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), }, - [3754] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [3748] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(9147), + [anon_sym_GT2] = ACTIONS(9143), [sym_comment] = ACTIONS(3), }, - [3755] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(3755), - [sym_storage_class_specifier] = STATE(3755), - [sym_type_qualifier] = STATE(3755), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_COMMA] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_restrict] = ACTIONS(1683), - [sym_identifier] = ACTIONS(1681), - [sym_operator_name] = ACTIONS(1679), - }, - [3756] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(3755), - [sym_storage_class_specifier] = STATE(3755), - [sym_type_qualifier] = STATE(3755), - [anon_sym_LPAREN2] = ACTIONS(3708), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_constexpr] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_TILDE] = ACTIONS(3708), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [sym_identifier] = ACTIONS(3710), - [sym_operator_name] = ACTIONS(3708), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_restrict] = ACTIONS(11), + [3749] = { + [sym_parameter_list] = STATE(3753), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_COLON] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), }, - [3757] = { - [sym_parameter_list] = STATE(3760), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), + [3750] = { + [sym_abstract_reference_declarator] = STATE(4251), + [aux_sym_type_definition_repeat1] = STATE(4250), + [sym_abstract_array_declarator] = STATE(4251), + [sym_parameter_list] = STATE(3002), + [sym_abstract_function_declarator] = STATE(4251), + [sym_abstract_pointer_declarator] = STATE(4251), + [sym_type_qualifier] = STATE(4250), + [sym__abstract_declarator] = STATE(4251), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(6282), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(6284), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(4987), }, - [3758] = { - [sym_parameter_list] = STATE(3760), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(2756), - [sym_comment] = ACTIONS(3), + [3751] = { + [sym_parameter_list] = STATE(3753), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), + [anon_sym_LBRACE] = ACTIONS(4987), }, - [3759] = { - [sym__abstract_declarator] = STATE(3763), - [sym_template_type] = STATE(308), - [sym_abstract_array_declarator] = STATE(3763), - [sym_function_declarator] = STATE(4267), - [sym_destructor_name] = STATE(4267), - [sym__declarator] = STATE(4267), - [sym_abstract_pointer_declarator] = STATE(3763), - [sym_array_declarator] = STATE(4267), - [sym_type_qualifier] = STATE(3762), - [sym_parameter_list] = STATE(1982), - [sym_pointer_declarator] = STATE(4267), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_abstract_reference_declarator] = STATE(3763), - [sym_abstract_function_declarator] = STATE(3763), - [sym_template_function] = STATE(4267), - [aux_sym_type_definition_repeat1] = STATE(3762), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_reference_declarator] = STATE(4267), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(11), + [3752] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4252), + [sym_type_qualifier] = STATE(4252), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(9149), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1905), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_explicit] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym_identifier] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(6172), - [sym_operator_name] = ACTIONS(9149), - [anon_sym_restrict] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(3838), }, - [3760] = { - [sym_virtual_specifier] = STATE(4269), - [aux_sym_function_declarator_repeat1] = STATE(4269), - [sym_trailing_return_type] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [anon_sym_LPAREN2] = ACTIONS(1841), + [3753] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4253), + [sym_type_qualifier] = STATE(4253), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), [sym_noexcept] = ACTIONS(9151), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_DASH_GT] = ACTIONS(9153), - [anon_sym_restrict] = ACTIONS(1062), - }, - [3761] = { - [sym_parameter_list] = STATE(2996), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [sym_comment] = ACTIONS(3), - }, - [3762] = { - [sym_type_qualifier] = STATE(3762), - [aux_sym_type_definition_repeat1] = STATE(3762), - [anon_sym_LPAREN2] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(2103), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_TILDE] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(2103), - [anon_sym_RPAREN] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2101), - [anon_sym_restrict] = ACTIONS(2103), - [sym_operator_name] = ACTIONS(2106), - }, - [3763] = { - [sym_parameter_list] = STATE(2999), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(7275), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - }, - [3764] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(9039), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(9039), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [3765] = { - [sym_union_specifier] = STATE(4272), - [sym_macro_type_specifier] = STATE(4272), - [sym_class_specifier] = STATE(4272), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(4272), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(4272), - [aux_sym_sized_type_specifier_repeat1] = STATE(4271), - [sym_struct_specifier] = STATE(4272), - [sym_enum_specifier] = STATE(4272), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(4272), - [anon_sym_unsigned] = ACTIONS(9155), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(9157), - [anon_sym_signed] = ACTIONS(9155), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(9155), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(9159), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(9155), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(9157), - }, - [3766] = { - [sym_virtual_specifier] = STATE(4273), - [aux_sym_function_declarator_repeat1] = STATE(4273), - [sym_trailing_return_type] = STATE(4273), - [sym_type_qualifier] = STATE(4273), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(9161), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4011), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(8165), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_restrict] = ACTIONS(1062), - }, - [3767] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(3768), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(8167), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(8167), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(8167), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(8171), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(8167), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), - }, - [3768] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4274), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(9163), - [anon_sym_signed] = ACTIONS(9163), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_long] = ACTIONS(9163), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_short] = ACTIONS(9163), - [sym_identifier] = ACTIONS(1074), - [sym_primitive_type] = ACTIONS(627), - }, - [3769] = { - [sym_parameter_list] = STATE(1982), - [sym_abstract_array_declarator] = STATE(4277), - [sym_abstract_pointer_declarator] = STATE(4277), - [sym_abstract_reference_declarator] = STATE(4277), - [sym_abstract_function_declarator] = STATE(4277), - [sym__abstract_declarator] = STATE(4277), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(9165), - [anon_sym_COMMA] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(9167), - [anon_sym_RPAREN] = ACTIONS(6210), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(9169), - [sym_comment] = ACTIONS(3), - }, - [3770] = { - [sym_type_qualifier] = STATE(3770), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3770), - [anon_sym_LPAREN2] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(9171), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - }, - [3771] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(3770), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3770), - [anon_sym_LPAREN2] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(8173), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_DASH_GT] = ACTIONS(6199), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [3772] = { - [sym_parameter_list] = STATE(3776), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_COLON] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), - }, - [3773] = { - [sym_abstract_array_declarator] = STATE(4279), - [sym_parameter_list] = STATE(3004), - [sym_abstract_reference_declarator] = STATE(4279), - [sym_abstract_function_declarator] = STATE(4279), - [aux_sym_type_definition_repeat1] = STATE(4278), - [sym_abstract_pointer_declarator] = STATE(4279), - [sym_type_qualifier] = STATE(4278), - [sym__abstract_declarator] = STATE(4279), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6214), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(6216), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_AMP_AMP] = ACTIONS(6218), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4991), - }, - [3774] = { - [sym_parameter_list] = STATE(3776), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - }, - [3775] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4280), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4280), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(9178), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_COLON] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4115), - }, - [3776] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4281), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4281), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(9180), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1847), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1905), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_COLON] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(3838), }, - [3777] = { - [anon_sym_LPAREN2] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_inline] = ACTIONS(2171), - [anon_sym_restrict] = ACTIONS(2171), - [anon_sym_mutable] = ACTIONS(2171), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_volatile] = ACTIONS(2171), - [anon_sym_explicit] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2171), - [sym_operator_name] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2164), - [anon_sym_register] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2171), - [anon_sym_constexpr] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_GT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - }, - [3778] = { - [anon_sym_LPAREN2] = ACTIONS(3743), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_EQ] = ACTIONS(3748), - [anon_sym_inline] = ACTIONS(3748), - [anon_sym_restrict] = ACTIONS(3748), - [anon_sym_mutable] = ACTIONS(3748), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3739), - [anon_sym_PIPE] = ACTIONS(3741), - [anon_sym_LT] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3748), - [anon_sym_PLUS] = ACTIONS(3741), - [anon_sym_GT_EQ] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(3741), - [anon_sym_volatile] = ACTIONS(3748), - [anon_sym_explicit] = ACTIONS(3748), - [sym_identifier] = ACTIONS(3748), - [sym_operator_name] = ACTIONS(3746), - [anon_sym_CARET] = ACTIONS(3739), - [anon_sym_GT] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_PIPE_PIPE] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3741), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_LT_LT] = ACTIONS(3739), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_PERCENT] = ACTIONS(3739), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym__Atomic] = ACTIONS(3748), - [anon_sym_constexpr] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3739), - [anon_sym_TILDE] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3739), - [anon_sym_BANG_EQ] = ACTIONS(3739), - [anon_sym_RPAREN] = ACTIONS(3743), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_PLUS_PLUS] = ACTIONS(3739), - [anon_sym_DASH_GT] = ACTIONS(3739), - [anon_sym_GT_GT] = ACTIONS(3739), - [anon_sym_DASH_DASH] = ACTIONS(3739), - }, - [3779] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(3787), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [3754] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(3762), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [3780] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_new_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_template_function] = STATE(669), - [sym_conditional_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_delete_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_lambda_expression] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_lambda_capture_specifier] = STATE(196), + [3755] = { + [sym_template_function] = STATE(670), + [sym__expression] = STATE(670), + [sym_logical_expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_delete_expression] = STATE(670), + [sym_field_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_lambda_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(670), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(670), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(670), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_call_expression] = STATE(670), + [sym_new_expression] = STATE(670), + [sym_raw_string_literal] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3781] = { - [anon_sym_RPAREN] = ACTIONS(9182), + [3756] = { + [anon_sym_RPAREN] = ACTIONS(9153), [sym_comment] = ACTIONS(3), }, - [3782] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(6338), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3757] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(6386), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3783] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4283), - [sym_logical_expression] = STATE(4283), - [sym_bitwise_expression] = STATE(4283), - [sym_cast_expression] = STATE(4283), - [sym_new_expression] = STATE(4283), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(4283), - [sym_char_literal] = STATE(4283), - [sym_template_function] = STATE(4283), - [sym_conditional_expression] = STATE(4283), - [sym_equality_expression] = STATE(4283), - [sym_relational_expression] = STATE(4283), - [sym_delete_expression] = STATE(4283), - [sym_sizeof_expression] = STATE(4283), - [sym_parenthesized_expression] = STATE(4283), - [sym_lambda_expression] = STATE(4283), - [sym_concatenated_string] = STATE(4283), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(4283), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(4283), - [sym_math_expression] = STATE(4283), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9184), - [anon_sym_DASH] = ACTIONS(4043), - [sym_true] = ACTIONS(9186), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [sym_null] = ACTIONS(9186), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9184), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9186), - [sym_nullptr] = ACTIONS(9186), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), + [3758] = { + [sym_template_function] = STATE(4255), + [sym__expression] = STATE(4255), + [sym_logical_expression] = STATE(4255), + [sym_bitwise_expression] = STATE(4255), + [sym_cast_expression] = STATE(4255), + [sym_delete_expression] = STATE(4255), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(4255), + [sym_lambda_expression] = STATE(4255), + [sym_char_literal] = STATE(4255), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4255), + [sym_equality_expression] = STATE(4255), + [sym_relational_expression] = STATE(4255), + [sym_sizeof_expression] = STATE(4255), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4255), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(4255), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4255), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(4255), + [sym_math_expression] = STATE(4255), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(4255), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9155), + [anon_sym_DASH] = ACTIONS(4079), + [sym_true] = ACTIONS(9157), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [sym_null] = ACTIONS(9157), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9155), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9157), + [sym_nullptr] = ACTIONS(9157), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), }, - [3784] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(2023), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [sym_null] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), + [3759] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(2030), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(1400), + [sym_raw_string_literal] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [sym_null] = ACTIONS(2830), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2828), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), [anon_sym_LBRACE] = ACTIONS(175), }, - [3785] = { - [sym_template_type] = STATE(239), + [3760] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(9188), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(9159), }, - [3786] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(6338), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3761] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(6386), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3787] = { - [anon_sym_RPAREN] = ACTIONS(9190), + [3762] = { + [anon_sym_RPAREN] = ACTIONS(9161), [sym_comment] = ACTIONS(3), }, - [3788] = { - [sym_union_specifier] = STATE(1502), - [sym_macro_type_specifier] = STATE(1502), - [sym_class_specifier] = STATE(1502), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(1502), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(1502), - [aux_sym_sized_type_specifier_repeat1] = STATE(3789), - [sym_struct_specifier] = STATE(1502), - [sym_enum_specifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(1502), - [anon_sym_unsigned] = ACTIONS(8225), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(8225), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(8225), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(8227), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(8225), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(2967), + [3763] = { + [sym_union_specifier] = STATE(1497), + [sym_macro_type_specifier] = STATE(1497), + [sym_class_specifier] = STATE(1497), + [aux_sym_sized_type_specifier_repeat1] = STATE(3764), + [sym_sized_type_specifier] = STATE(1497), + [sym__type_specifier] = STATE(1497), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(1497), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(1497), + [sym_struct_specifier] = STATE(1497), + [anon_sym_unsigned] = ACTIONS(8213), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(8213), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(8213), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(8215), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(8213), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(2969), }, - [3789] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4286), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(9192), - [anon_sym_long] = ACTIONS(9192), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_short] = ACTIONS(9192), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [sym_identifier] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2991), - [anon_sym_unsigned] = ACTIONS(9192), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(625), + [3764] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4258), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(9163), + [anon_sym_long] = ACTIONS(9163), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_short] = ACTIONS(9163), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [sym_identifier] = ACTIONS(2986), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(9163), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(558), }, - [3790] = { - [sym_initializer_list] = STATE(1522), - [sym_new_declarator] = STATE(1521), - [sym_argument_list] = STATE(1522), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_LT_LT_EQ] = ACTIONS(1283), - [anon_sym_PERCENT_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1283), - [anon_sym_GT_GT_EQ] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(9194), - [anon_sym_PERCENT] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_AMP_EQ] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), + [3765] = { + [sym_new_declarator] = STATE(1514), + [sym_argument_list] = STATE(1515), + [sym_initializer_list] = STATE(1515), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_GT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(9165), + [anon_sym_PERCENT] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), }, - [3791] = { - [sym_union_specifier] = STATE(4288), - [sym_macro_type_specifier] = STATE(4288), - [sym_class_specifier] = STATE(4288), - [sym_template_type] = STATE(651), - [sym_sized_type_specifier] = STATE(4288), - [sym_scoped_namespace_identifier] = STATE(653), - [sym__type_specifier] = STATE(4288), - [aux_sym_sized_type_specifier_repeat1] = STATE(3789), - [sym_struct_specifier] = STATE(4288), - [sym_enum_specifier] = STATE(4288), - [sym_scoped_type_identifier] = STATE(652), - [sym_dependent_type] = STATE(4288), - [anon_sym_unsigned] = ACTIONS(8225), - [anon_sym_struct] = ACTIONS(1182), - [sym_auto] = ACTIONS(9196), - [anon_sym_signed] = ACTIONS(8225), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(8225), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_typename] = ACTIONS(8227), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(8225), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_class] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(9196), + [3766] = { + [sym_union_specifier] = STATE(4260), + [sym_macro_type_specifier] = STATE(4260), + [sym_class_specifier] = STATE(4260), + [aux_sym_sized_type_specifier_repeat1] = STATE(3764), + [sym_sized_type_specifier] = STATE(4260), + [sym__type_specifier] = STATE(4260), + [sym_scoped_type_identifier] = STATE(655), + [sym_enum_specifier] = STATE(4260), + [sym_template_type] = STATE(656), + [sym_scoped_namespace_identifier] = STATE(657), + [sym_dependent_type] = STATE(4260), + [sym_struct_specifier] = STATE(4260), + [anon_sym_unsigned] = ACTIONS(8213), + [anon_sym_struct] = ACTIONS(1188), + [sym_auto] = ACTIONS(9167), + [anon_sym_signed] = ACTIONS(8213), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(8213), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_typename] = ACTIONS(8215), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(8213), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1198), + [sym_primitive_type] = ACTIONS(9167), }, - [3792] = { - [sym_template_type] = STATE(239), + [3767] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(9198), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(9169), }, - [3793] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_LT_LT_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(9204), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(9214), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(800), - [anon_sym_GT_GT_EQ] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(9216), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(9220), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3768] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(9175), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(9185), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(9187), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(9191), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3794] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4291), - [sym_logical_expression] = STATE(4291), - [sym_bitwise_expression] = STATE(4291), - [sym_cast_expression] = STATE(4291), - [sym_new_expression] = STATE(4291), - [sym_field_expression] = STATE(4291), - [sym_compound_literal_expression] = STATE(4291), - [sym_char_literal] = STATE(4291), - [sym_template_function] = STATE(4291), - [sym_conditional_expression] = STATE(4291), - [sym_equality_expression] = STATE(4291), - [sym_relational_expression] = STATE(4291), - [sym_delete_expression] = STATE(4291), - [sym_sizeof_expression] = STATE(4291), - [sym_parenthesized_expression] = STATE(4291), - [sym_lambda_expression] = STATE(4291), - [sym_concatenated_string] = STATE(4291), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4291), - [sym_assignment_expression] = STATE(4291), - [sym_pointer_expression] = STATE(4291), - [sym_shift_expression] = STATE(4291), - [sym_math_expression] = STATE(4291), - [sym_call_expression] = STATE(4291), - [sym_lambda_capture_specifier] = STATE(196), + [3769] = { + [sym_template_function] = STATE(4263), + [sym__expression] = STATE(4263), + [sym_logical_expression] = STATE(4263), + [sym_bitwise_expression] = STATE(4263), + [sym_cast_expression] = STATE(4263), + [sym_delete_expression] = STATE(4263), + [sym_field_expression] = STATE(4263), + [sym_compound_literal_expression] = STATE(4263), + [sym_lambda_expression] = STATE(4263), + [sym_char_literal] = STATE(4263), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4263), + [sym_equality_expression] = STATE(4263), + [sym_relational_expression] = STATE(4263), + [sym_sizeof_expression] = STATE(4263), + [sym_subscript_expression] = STATE(4263), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9222), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9224), - [sym_null] = ACTIONS(9224), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9222), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(9226), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9224), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9224), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4263), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4263), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4263), + [sym_pointer_expression] = STATE(4263), + [sym_shift_expression] = STATE(4263), + [sym_math_expression] = STATE(4263), + [sym_call_expression] = STATE(4263), + [sym_new_expression] = STATE(4263), + [sym_raw_string_literal] = ACTIONS(9193), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9195), + [sym_null] = ACTIONS(9195), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9193), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(9197), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9195), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9195), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3795] = { - [sym_template_type] = STATE(54), - [sym__expression] = STATE(640), - [sym_logical_expression] = STATE(640), - [sym_bitwise_expression] = STATE(640), - [sym_cast_expression] = STATE(640), - [sym_new_expression] = STATE(640), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(640), - [sym_type_descriptor] = STATE(4292), - [sym_char_literal] = STATE(640), - [sym_type_qualifier] = STATE(154), - [sym_dependent_type] = STATE(152), - [sym_union_specifier] = STATE(152), - [sym_struct_specifier] = STATE(152), - [sym_template_function] = STATE(640), - [sym_conditional_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_relational_expression] = STATE(640), - [sym_delete_expression] = STATE(640), - [sym_sizeof_expression] = STATE(640), - [sym_subscript_expression] = STATE(149), - [sym_parenthesized_expression] = STATE(640), - [sym_scoped_type_identifier] = STATE(61), - [sym_string_literal] = STATE(151), - [sym_macro_type_specifier] = STATE(152), - [sym_class_specifier] = STATE(152), - [sym_concatenated_string] = STATE(640), - [sym_sized_type_specifier] = STATE(152), - [sym_lambda_expression] = STATE(640), - [sym_scoped_identifier] = STATE(73), - [sym__type_specifier] = STATE(152), - [sym_comma_expression] = STATE(642), - [sym_assignment_expression] = STATE(640), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(640), - [sym_math_expression] = STATE(640), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(154), - [aux_sym_sized_type_specifier_repeat1] = STATE(155), - [sym_enum_specifier] = STATE(152), - [sym_raw_string_literal] = ACTIONS(1174), + [3770] = { + [sym_template_function] = STATE(641), + [sym__expression] = STATE(641), + [sym_logical_expression] = STATE(641), + [sym_bitwise_expression] = STATE(641), + [sym_cast_expression] = STATE(641), + [sym_delete_expression] = STATE(641), + [sym_field_expression] = STATE(150), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(641), + [sym_char_literal] = STATE(641), + [sym_lambda_expression] = STATE(641), + [sym_scoped_identifier] = STATE(73), + [sym_type_descriptor] = STATE(4264), + [sym_dependent_type] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym_comma_expression] = STATE(643), + [sym_conditional_expression] = STATE(641), + [sym_equality_expression] = STATE(641), + [sym_relational_expression] = STATE(641), + [sym_sizeof_expression] = STATE(641), + [sym_subscript_expression] = STATE(150), + [sym_parenthesized_expression] = STATE(641), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(641), + [sym_string_literal] = STATE(154), + [sym_macro_type_specifier] = STATE(155), + [sym_class_specifier] = STATE(155), + [aux_sym_sized_type_specifier_repeat1] = STATE(153), + [sym_sized_type_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_template_type] = STATE(64), + [sym_assignment_expression] = STATE(641), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(641), + [sym_math_expression] = STATE(641), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(641), + [sym_enum_specifier] = STATE(155), + [sym_raw_string_literal] = ACTIONS(1180), [anon_sym_struct] = ACTIONS(141), [sym_auto] = ACTIONS(260), - [sym_true] = ACTIONS(1176), + [sym_true] = ACTIONS(1182), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(1176), + [sym_null] = ACTIONS(1182), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(268), [anon_sym_signed] = ACTIONS(270), [anon_sym_long] = ACTIONS(270), [anon_sym_BANG] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), [anon_sym_sizeof] = ACTIONS(276), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_STAR] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), [anon_sym_union] = ACTIONS(151), [anon_sym_typename] = ACTIONS(280), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), [anon_sym_new] = ACTIONS(284), [anon_sym_short] = ACTIONS(270), [anon_sym_delete] = ACTIONS(288), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1180), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), [anon_sym_constexpr] = ACTIONS(11), [sym_primitive_type] = ACTIONS(260), - [sym_false] = ACTIONS(1176), + [sym_false] = ACTIONS(1182), [anon_sym_unsigned] = ACTIONS(270), - [sym_nullptr] = ACTIONS(1176), + [sym_nullptr] = ACTIONS(1182), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [3796] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3771] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3797] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4294), - [sym_logical_expression] = STATE(4294), - [sym_bitwise_expression] = STATE(4294), - [sym_cast_expression] = STATE(4294), - [sym_new_expression] = STATE(4294), - [sym_field_expression] = STATE(4294), - [sym_compound_literal_expression] = STATE(4294), - [sym_char_literal] = STATE(4294), - [sym_template_function] = STATE(4294), - [sym_conditional_expression] = STATE(4294), - [sym_equality_expression] = STATE(4294), - [sym_relational_expression] = STATE(4294), - [sym_delete_expression] = STATE(4294), - [sym_sizeof_expression] = STATE(4294), - [sym_parenthesized_expression] = STATE(4294), - [sym_lambda_expression] = STATE(4294), - [sym_concatenated_string] = STATE(4294), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4294), - [sym_assignment_expression] = STATE(4294), - [sym_pointer_expression] = STATE(4294), - [sym_shift_expression] = STATE(4294), - [sym_math_expression] = STATE(4294), - [sym_call_expression] = STATE(4294), - [sym_lambda_capture_specifier] = STATE(196), + [3772] = { + [sym_template_function] = STATE(4266), + [sym__expression] = STATE(4266), + [sym_logical_expression] = STATE(4266), + [sym_bitwise_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_field_expression] = STATE(4266), + [sym_compound_literal_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_char_literal] = STATE(4266), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4266), + [sym_equality_expression] = STATE(4266), + [sym_relational_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_subscript_expression] = STATE(4266), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9228), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9230), - [sym_null] = ACTIONS(9230), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9228), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9230), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9230), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4266), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(4266), + [sym_shift_expression] = STATE(4266), + [sym_math_expression] = STATE(4266), + [sym_call_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_raw_string_literal] = ACTIONS(9199), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9201), + [sym_null] = ACTIONS(9201), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9199), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9201), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9201), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3798] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4295), - [sym_logical_expression] = STATE(4295), - [sym_bitwise_expression] = STATE(4295), - [sym_cast_expression] = STATE(4295), - [sym_new_expression] = STATE(4295), - [sym_field_expression] = STATE(4295), - [sym_compound_literal_expression] = STATE(4295), - [sym_char_literal] = STATE(4295), - [sym_template_function] = STATE(4295), - [sym_conditional_expression] = STATE(4295), - [sym_equality_expression] = STATE(4295), - [sym_relational_expression] = STATE(4295), - [sym_delete_expression] = STATE(4295), - [sym_sizeof_expression] = STATE(4295), - [sym_parenthesized_expression] = STATE(4295), - [sym_lambda_expression] = STATE(4295), - [sym_concatenated_string] = STATE(4295), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4295), - [sym_assignment_expression] = STATE(4295), - [sym_pointer_expression] = STATE(4295), - [sym_shift_expression] = STATE(4295), - [sym_math_expression] = STATE(4295), - [sym_call_expression] = STATE(4295), - [sym_lambda_capture_specifier] = STATE(196), + [3773] = { + [sym_template_function] = STATE(4267), + [sym__expression] = STATE(4267), + [sym_logical_expression] = STATE(4267), + [sym_bitwise_expression] = STATE(4267), + [sym_cast_expression] = STATE(4267), + [sym_delete_expression] = STATE(4267), + [sym_field_expression] = STATE(4267), + [sym_compound_literal_expression] = STATE(4267), + [sym_lambda_expression] = STATE(4267), + [sym_char_literal] = STATE(4267), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4267), + [sym_equality_expression] = STATE(4267), + [sym_relational_expression] = STATE(4267), + [sym_sizeof_expression] = STATE(4267), + [sym_subscript_expression] = STATE(4267), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9232), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9234), - [sym_null] = ACTIONS(9234), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9232), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9234), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9234), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4267), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4267), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4267), + [sym_pointer_expression] = STATE(4267), + [sym_shift_expression] = STATE(4267), + [sym_math_expression] = STATE(4267), + [sym_call_expression] = STATE(4267), + [sym_new_expression] = STATE(4267), + [sym_raw_string_literal] = ACTIONS(9203), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9205), + [sym_null] = ACTIONS(9205), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9203), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9205), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9205), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3799] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4296), - [sym_logical_expression] = STATE(4296), - [sym_bitwise_expression] = STATE(4296), - [sym_cast_expression] = STATE(4296), - [sym_new_expression] = STATE(4296), - [sym_field_expression] = STATE(4296), - [sym_compound_literal_expression] = STATE(4296), - [sym_char_literal] = STATE(4296), - [sym_template_function] = STATE(4296), - [sym_conditional_expression] = STATE(4296), - [sym_equality_expression] = STATE(4296), - [sym_relational_expression] = STATE(4296), - [sym_delete_expression] = STATE(4296), - [sym_sizeof_expression] = STATE(4296), - [sym_parenthesized_expression] = STATE(4296), - [sym_lambda_expression] = STATE(4296), - [sym_concatenated_string] = STATE(4296), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4296), - [sym_assignment_expression] = STATE(4296), - [sym_pointer_expression] = STATE(4296), - [sym_shift_expression] = STATE(4296), - [sym_math_expression] = STATE(4296), - [sym_call_expression] = STATE(4296), - [sym_lambda_capture_specifier] = STATE(196), + [3774] = { + [sym_template_function] = STATE(4268), + [sym__expression] = STATE(4268), + [sym_logical_expression] = STATE(4268), + [sym_bitwise_expression] = STATE(4268), + [sym_cast_expression] = STATE(4268), + [sym_delete_expression] = STATE(4268), + [sym_field_expression] = STATE(4268), + [sym_compound_literal_expression] = STATE(4268), + [sym_lambda_expression] = STATE(4268), + [sym_char_literal] = STATE(4268), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4268), + [sym_equality_expression] = STATE(4268), + [sym_relational_expression] = STATE(4268), + [sym_sizeof_expression] = STATE(4268), + [sym_subscript_expression] = STATE(4268), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9236), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9238), - [sym_null] = ACTIONS(9238), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9236), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9238), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9238), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4268), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4268), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4268), + [sym_pointer_expression] = STATE(4268), + [sym_shift_expression] = STATE(4268), + [sym_math_expression] = STATE(4268), + [sym_call_expression] = STATE(4268), + [sym_new_expression] = STATE(4268), + [sym_raw_string_literal] = ACTIONS(9207), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9209), + [sym_null] = ACTIONS(9209), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9207), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9209), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9209), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3800] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4297), - [sym_logical_expression] = STATE(4297), - [sym_bitwise_expression] = STATE(4297), - [sym_cast_expression] = STATE(4297), - [sym_new_expression] = STATE(4297), - [sym_field_expression] = STATE(4297), - [sym_compound_literal_expression] = STATE(4297), - [sym_char_literal] = STATE(4297), - [sym_template_function] = STATE(4297), - [sym_conditional_expression] = STATE(4297), - [sym_equality_expression] = STATE(4297), - [sym_relational_expression] = STATE(4297), - [sym_delete_expression] = STATE(4297), - [sym_sizeof_expression] = STATE(4297), - [sym_parenthesized_expression] = STATE(4297), - [sym_lambda_expression] = STATE(4297), - [sym_concatenated_string] = STATE(4297), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4297), - [sym_assignment_expression] = STATE(4297), - [sym_pointer_expression] = STATE(4297), - [sym_shift_expression] = STATE(4297), - [sym_math_expression] = STATE(4297), - [sym_call_expression] = STATE(4297), - [sym_lambda_capture_specifier] = STATE(196), + [3775] = { + [sym_template_function] = STATE(4269), + [sym__expression] = STATE(4269), + [sym_logical_expression] = STATE(4269), + [sym_bitwise_expression] = STATE(4269), + [sym_cast_expression] = STATE(4269), + [sym_delete_expression] = STATE(4269), + [sym_field_expression] = STATE(4269), + [sym_compound_literal_expression] = STATE(4269), + [sym_lambda_expression] = STATE(4269), + [sym_char_literal] = STATE(4269), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4269), + [sym_equality_expression] = STATE(4269), + [sym_relational_expression] = STATE(4269), + [sym_sizeof_expression] = STATE(4269), + [sym_subscript_expression] = STATE(4269), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9240), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9242), - [sym_null] = ACTIONS(9242), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9240), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9242), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9242), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4269), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4269), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4269), + [sym_pointer_expression] = STATE(4269), + [sym_shift_expression] = STATE(4269), + [sym_math_expression] = STATE(4269), + [sym_call_expression] = STATE(4269), + [sym_new_expression] = STATE(4269), + [sym_raw_string_literal] = ACTIONS(9211), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9213), + [sym_null] = ACTIONS(9213), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9211), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9213), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9213), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3801] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4298), - [sym_logical_expression] = STATE(4298), - [sym_bitwise_expression] = STATE(4298), - [sym_cast_expression] = STATE(4298), - [sym_new_expression] = STATE(4298), - [sym_field_expression] = STATE(4298), - [sym_compound_literal_expression] = STATE(4298), - [sym_char_literal] = STATE(4298), - [sym_template_function] = STATE(4298), - [sym_conditional_expression] = STATE(4298), - [sym_equality_expression] = STATE(4298), - [sym_relational_expression] = STATE(4298), - [sym_delete_expression] = STATE(4298), - [sym_sizeof_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym_lambda_expression] = STATE(4298), - [sym_concatenated_string] = STATE(4298), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4298), - [sym_assignment_expression] = STATE(4298), - [sym_pointer_expression] = STATE(4298), - [sym_shift_expression] = STATE(4298), - [sym_math_expression] = STATE(4298), - [sym_call_expression] = STATE(4298), - [sym_lambda_capture_specifier] = STATE(196), + [3776] = { + [sym_template_function] = STATE(4270), + [sym__expression] = STATE(4270), + [sym_logical_expression] = STATE(4270), + [sym_bitwise_expression] = STATE(4270), + [sym_cast_expression] = STATE(4270), + [sym_delete_expression] = STATE(4270), + [sym_field_expression] = STATE(4270), + [sym_compound_literal_expression] = STATE(4270), + [sym_lambda_expression] = STATE(4270), + [sym_char_literal] = STATE(4270), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4270), + [sym_equality_expression] = STATE(4270), + [sym_relational_expression] = STATE(4270), + [sym_sizeof_expression] = STATE(4270), + [sym_subscript_expression] = STATE(4270), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9244), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9246), - [sym_null] = ACTIONS(9246), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9244), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9246), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9246), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4270), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4270), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4270), + [sym_pointer_expression] = STATE(4270), + [sym_shift_expression] = STATE(4270), + [sym_math_expression] = STATE(4270), + [sym_call_expression] = STATE(4270), + [sym_new_expression] = STATE(4270), + [sym_raw_string_literal] = ACTIONS(9215), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9217), + [sym_null] = ACTIONS(9217), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9215), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9217), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9217), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3802] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(1548), - [sym_logical_expression] = STATE(1548), - [sym_bitwise_expression] = STATE(1548), - [sym_cast_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_field_expression] = STATE(1548), - [sym_compound_literal_expression] = STATE(1548), - [sym_char_literal] = STATE(1548), - [sym_template_function] = STATE(1548), - [sym_conditional_expression] = STATE(1548), - [sym_equality_expression] = STATE(1548), - [sym_relational_expression] = STATE(1548), - [sym_delete_expression] = STATE(1548), - [sym_sizeof_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_lambda_expression] = STATE(1548), - [sym_concatenated_string] = STATE(1548), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(1548), - [sym_assignment_expression] = STATE(1548), - [sym_pointer_expression] = STATE(1548), - [sym_shift_expression] = STATE(1548), - [sym_math_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_lambda_capture_specifier] = STATE(196), + [3777] = { + [sym_template_function] = STATE(1541), + [sym__expression] = STATE(1541), + [sym_logical_expression] = STATE(1541), + [sym_bitwise_expression] = STATE(1541), + [sym_cast_expression] = STATE(1541), + [sym_delete_expression] = STATE(1541), + [sym_field_expression] = STATE(1541), + [sym_compound_literal_expression] = STATE(1541), + [sym_lambda_expression] = STATE(1541), + [sym_char_literal] = STATE(1541), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(1541), + [sym_equality_expression] = STATE(1541), + [sym_relational_expression] = STATE(1541), + [sym_sizeof_expression] = STATE(1541), + [sym_subscript_expression] = STATE(1541), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(3079), - [sym_null] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(1541), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(1541), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(1541), + [sym_pointer_expression] = STATE(1541), + [sym_shift_expression] = STATE(1541), + [sym_math_expression] = STATE(1541), + [sym_call_expression] = STATE(1541), + [sym_new_expression] = STATE(1541), + [sym_raw_string_literal] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3803] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4299), - [sym_logical_expression] = STATE(4299), - [sym_bitwise_expression] = STATE(4299), - [sym_cast_expression] = STATE(4299), - [sym_new_expression] = STATE(4299), - [sym_field_expression] = STATE(4299), - [sym_compound_literal_expression] = STATE(4299), - [sym_char_literal] = STATE(4299), - [sym_template_function] = STATE(4299), - [sym_conditional_expression] = STATE(4299), - [sym_equality_expression] = STATE(4299), - [sym_relational_expression] = STATE(4299), - [sym_delete_expression] = STATE(4299), - [sym_sizeof_expression] = STATE(4299), - [sym_parenthesized_expression] = STATE(4299), - [sym_lambda_expression] = STATE(4299), - [sym_concatenated_string] = STATE(4299), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4299), - [sym_assignment_expression] = STATE(4299), - [sym_pointer_expression] = STATE(4299), - [sym_shift_expression] = STATE(4299), - [sym_math_expression] = STATE(4299), - [sym_call_expression] = STATE(4299), - [sym_lambda_capture_specifier] = STATE(196), + [3778] = { + [sym_template_function] = STATE(4271), + [sym__expression] = STATE(4271), + [sym_logical_expression] = STATE(4271), + [sym_bitwise_expression] = STATE(4271), + [sym_cast_expression] = STATE(4271), + [sym_delete_expression] = STATE(4271), + [sym_field_expression] = STATE(4271), + [sym_compound_literal_expression] = STATE(4271), + [sym_lambda_expression] = STATE(4271), + [sym_char_literal] = STATE(4271), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4271), + [sym_equality_expression] = STATE(4271), + [sym_relational_expression] = STATE(4271), + [sym_sizeof_expression] = STATE(4271), + [sym_subscript_expression] = STATE(4271), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9248), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9250), - [sym_null] = ACTIONS(9250), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9248), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9250), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9250), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4271), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4271), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4271), + [sym_pointer_expression] = STATE(4271), + [sym_shift_expression] = STATE(4271), + [sym_math_expression] = STATE(4271), + [sym_call_expression] = STATE(4271), + [sym_new_expression] = STATE(4271), + [sym_raw_string_literal] = ACTIONS(9219), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9221), + [sym_null] = ACTIONS(9221), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9219), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9221), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9221), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3804] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4300), - [sym_logical_expression] = STATE(4300), - [sym_bitwise_expression] = STATE(4300), - [sym_cast_expression] = STATE(4300), - [sym_new_expression] = STATE(4300), - [sym_field_expression] = STATE(4300), - [sym_compound_literal_expression] = STATE(4300), - [sym_char_literal] = STATE(4300), - [sym_template_function] = STATE(4300), - [sym_conditional_expression] = STATE(4300), - [sym_equality_expression] = STATE(4300), - [sym_relational_expression] = STATE(4300), - [sym_delete_expression] = STATE(4300), - [sym_sizeof_expression] = STATE(4300), - [sym_parenthesized_expression] = STATE(4300), - [sym_lambda_expression] = STATE(4300), - [sym_concatenated_string] = STATE(4300), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4300), - [sym_assignment_expression] = STATE(4300), - [sym_pointer_expression] = STATE(4300), - [sym_shift_expression] = STATE(4300), - [sym_math_expression] = STATE(4300), - [sym_call_expression] = STATE(4300), - [sym_lambda_capture_specifier] = STATE(196), + [3779] = { + [sym_template_function] = STATE(4272), + [sym__expression] = STATE(4272), + [sym_logical_expression] = STATE(4272), + [sym_bitwise_expression] = STATE(4272), + [sym_cast_expression] = STATE(4272), + [sym_delete_expression] = STATE(4272), + [sym_field_expression] = STATE(4272), + [sym_compound_literal_expression] = STATE(4272), + [sym_lambda_expression] = STATE(4272), + [sym_char_literal] = STATE(4272), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4272), + [sym_equality_expression] = STATE(4272), + [sym_relational_expression] = STATE(4272), + [sym_sizeof_expression] = STATE(4272), + [sym_subscript_expression] = STATE(4272), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9252), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9254), - [sym_null] = ACTIONS(9254), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9252), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9254), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9254), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4272), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4272), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4272), + [sym_pointer_expression] = STATE(4272), + [sym_shift_expression] = STATE(4272), + [sym_math_expression] = STATE(4272), + [sym_call_expression] = STATE(4272), + [sym_new_expression] = STATE(4272), + [sym_raw_string_literal] = ACTIONS(9223), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9225), + [sym_null] = ACTIONS(9225), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9223), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9225), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9225), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3805] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4301), - [sym_logical_expression] = STATE(4301), - [sym_bitwise_expression] = STATE(4301), - [sym_cast_expression] = STATE(4301), - [sym_new_expression] = STATE(4301), - [sym_field_expression] = STATE(4301), - [sym_compound_literal_expression] = STATE(4301), - [sym_char_literal] = STATE(4301), - [sym_template_function] = STATE(4301), - [sym_conditional_expression] = STATE(4301), - [sym_equality_expression] = STATE(4301), - [sym_relational_expression] = STATE(4301), - [sym_delete_expression] = STATE(4301), - [sym_sizeof_expression] = STATE(4301), - [sym_parenthesized_expression] = STATE(4301), - [sym_lambda_expression] = STATE(4301), - [sym_concatenated_string] = STATE(4301), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4301), - [sym_assignment_expression] = STATE(4301), - [sym_pointer_expression] = STATE(4301), - [sym_shift_expression] = STATE(4301), - [sym_math_expression] = STATE(4301), - [sym_call_expression] = STATE(4301), - [sym_lambda_capture_specifier] = STATE(196), + [3780] = { + [sym_template_function] = STATE(4273), + [sym__expression] = STATE(4273), + [sym_logical_expression] = STATE(4273), + [sym_bitwise_expression] = STATE(4273), + [sym_cast_expression] = STATE(4273), + [sym_delete_expression] = STATE(4273), + [sym_field_expression] = STATE(4273), + [sym_compound_literal_expression] = STATE(4273), + [sym_lambda_expression] = STATE(4273), + [sym_char_literal] = STATE(4273), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4273), + [sym_equality_expression] = STATE(4273), + [sym_relational_expression] = STATE(4273), + [sym_sizeof_expression] = STATE(4273), + [sym_subscript_expression] = STATE(4273), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9256), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9258), - [sym_null] = ACTIONS(9258), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9256), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9258), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9258), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4273), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4273), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4273), + [sym_pointer_expression] = STATE(4273), + [sym_shift_expression] = STATE(4273), + [sym_math_expression] = STATE(4273), + [sym_call_expression] = STATE(4273), + [sym_new_expression] = STATE(4273), + [sym_raw_string_literal] = ACTIONS(9227), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9229), + [sym_null] = ACTIONS(9229), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9227), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9229), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9229), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3806] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4302), - [sym_logical_expression] = STATE(4302), - [sym_bitwise_expression] = STATE(4302), - [sym_cast_expression] = STATE(4302), - [sym_new_expression] = STATE(4302), - [sym_field_expression] = STATE(980), - [sym_compound_literal_expression] = STATE(4302), - [sym_char_literal] = STATE(4302), - [sym_template_function] = STATE(4302), - [sym_conditional_expression] = STATE(4302), - [sym_equality_expression] = STATE(4302), - [sym_relational_expression] = STATE(4302), - [sym_delete_expression] = STATE(4302), - [sym_sizeof_expression] = STATE(4302), - [sym_parenthesized_expression] = STATE(4302), - [sym_lambda_expression] = STATE(4302), - [sym_concatenated_string] = STATE(4302), - [sym_string_literal] = STATE(982), - [sym_scoped_identifier] = STATE(981), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(980), - [sym_assignment_expression] = STATE(4302), - [sym_pointer_expression] = STATE(980), - [sym_shift_expression] = STATE(4302), - [sym_math_expression] = STATE(4302), - [sym_call_expression] = STATE(980), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9260), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [sym_true] = ACTIONS(9262), - [sym_null] = ACTIONS(9262), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9260), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1793), - [sym_false] = ACTIONS(9262), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(9262), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), + [3781] = { + [sym_template_function] = STATE(4274), + [sym__expression] = STATE(4274), + [sym_logical_expression] = STATE(4274), + [sym_bitwise_expression] = STATE(4274), + [sym_cast_expression] = STATE(4274), + [sym_delete_expression] = STATE(4274), + [sym_field_expression] = STATE(1006), + [sym_compound_literal_expression] = STATE(4274), + [sym_lambda_expression] = STATE(4274), + [sym_char_literal] = STATE(4274), + [sym_scoped_identifier] = STATE(1007), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4274), + [sym_equality_expression] = STATE(4274), + [sym_relational_expression] = STATE(4274), + [sym_sizeof_expression] = STATE(4274), + [sym_subscript_expression] = STATE(1006), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4274), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(1008), + [sym_concatenated_string] = STATE(4274), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4274), + [sym_pointer_expression] = STATE(1006), + [sym_shift_expression] = STATE(4274), + [sym_math_expression] = STATE(4274), + [sym_call_expression] = STATE(1006), + [sym_new_expression] = STATE(4274), + [sym_raw_string_literal] = ACTIONS(9231), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_true] = ACTIONS(9233), + [sym_null] = ACTIONS(9233), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9231), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1863), + [sym_false] = ACTIONS(9233), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(9233), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1875), }, - [3807] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4303), - [sym_logical_expression] = STATE(4303), - [sym_bitwise_expression] = STATE(4303), - [sym_cast_expression] = STATE(4303), - [sym_new_expression] = STATE(4303), - [sym_field_expression] = STATE(4303), - [sym_compound_literal_expression] = STATE(4303), - [sym_char_literal] = STATE(4303), - [sym_template_function] = STATE(4303), - [sym_conditional_expression] = STATE(4303), - [sym_equality_expression] = STATE(4303), - [sym_relational_expression] = STATE(4303), - [sym_delete_expression] = STATE(4303), - [sym_sizeof_expression] = STATE(4303), - [sym_parenthesized_expression] = STATE(4303), - [sym_lambda_expression] = STATE(4303), - [sym_concatenated_string] = STATE(4303), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4303), - [sym_assignment_expression] = STATE(4303), - [sym_pointer_expression] = STATE(4303), - [sym_shift_expression] = STATE(4303), - [sym_math_expression] = STATE(4303), - [sym_call_expression] = STATE(4303), - [sym_lambda_capture_specifier] = STATE(196), + [3782] = { + [sym_template_function] = STATE(4275), + [sym__expression] = STATE(4275), + [sym_logical_expression] = STATE(4275), + [sym_bitwise_expression] = STATE(4275), + [sym_cast_expression] = STATE(4275), + [sym_delete_expression] = STATE(4275), + [sym_field_expression] = STATE(4275), + [sym_compound_literal_expression] = STATE(4275), + [sym_lambda_expression] = STATE(4275), + [sym_char_literal] = STATE(4275), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4275), + [sym_equality_expression] = STATE(4275), + [sym_relational_expression] = STATE(4275), + [sym_sizeof_expression] = STATE(4275), + [sym_subscript_expression] = STATE(4275), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9264), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(9266), - [sym_null] = ACTIONS(9266), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9264), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(9266), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(9266), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4275), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4275), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4275), + [sym_pointer_expression] = STATE(4275), + [sym_shift_expression] = STATE(4275), + [sym_math_expression] = STATE(4275), + [sym_call_expression] = STATE(4275), + [sym_new_expression] = STATE(4275), + [sym_raw_string_literal] = ACTIONS(9235), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(9237), + [sym_null] = ACTIONS(9237), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9235), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(9237), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9237), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [3808] = { - [sym_string_literal] = STATE(4304), - [aux_sym_concatenated_string_repeat1] = STATE(4304), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DASH_GT] = ACTIONS(1701), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_COMMA] = ACTIONS(1701), - [anon_sym_PIPE_PIPE] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [3783] = { + [sym_string_literal] = STATE(4276), + [aux_sym_concatenated_string_repeat1] = STATE(4276), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), }, - [3809] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3809), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(9268), - [anon_sym_long] = ACTIONS(9268), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(9268), - [sym_identifier] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(9268), - [anon_sym_QMARK] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), + [3784] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3784), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(9239), + [anon_sym_long] = ACTIONS(9239), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(9239), + [sym_identifier] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(9239), + [anon_sym_QMARK] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), }, - [3810] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(4305), - [sym_logical_expression] = STATE(4305), - [sym_bitwise_expression] = STATE(4305), - [sym_cast_expression] = STATE(4305), - [sym_new_expression] = STATE(4305), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(4305), - [sym_char_literal] = STATE(4305), - [sym_template_function] = STATE(4305), - [sym_conditional_expression] = STATE(4305), - [sym_equality_expression] = STATE(4305), - [sym_relational_expression] = STATE(4305), - [sym_delete_expression] = STATE(4305), - [sym_sizeof_expression] = STATE(4305), - [sym_parenthesized_expression] = STATE(4305), - [sym_lambda_expression] = STATE(4305), - [sym_concatenated_string] = STATE(4305), - [sym_string_literal] = STATE(967), + [3785] = { + [sym_template_function] = STATE(4277), + [sym__expression] = STATE(4277), + [sym_logical_expression] = STATE(4277), + [sym_bitwise_expression] = STATE(4277), + [sym_cast_expression] = STATE(4277), + [sym_delete_expression] = STATE(4277), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(4277), + [sym_lambda_expression] = STATE(4277), + [sym_char_literal] = STATE(4277), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(4305), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(4305), - [sym_math_expression] = STATE(4305), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(4277), + [sym_equality_expression] = STATE(4277), + [sym_relational_expression] = STATE(4277), + [sym_sizeof_expression] = STATE(4277), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(9271), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(9273), - [sym_null] = ACTIONS(9273), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(9271), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(9273), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(9273), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(4277), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(4277), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(4277), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(4277), + [sym_math_expression] = STATE(4277), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(4277), + [sym_raw_string_literal] = ACTIONS(9242), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(9244), + [sym_null] = ACTIONS(9244), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(9242), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(9244), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(9244), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [3811] = { - [sym_initializer_list] = STATE(1570), - [sym_new_declarator] = STATE(1571), - [sym_argument_list] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(3136), + [3786] = { + [sym_new_declarator] = STATE(1566), + [sym_argument_list] = STATE(1565), + [sym_initializer_list] = STATE(1565), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(3138), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(8245), - [anon_sym_PERCENT] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - }, - [3812] = { - [sym_string_literal] = STATE(3812), - [aux_sym_concatenated_string_repeat1] = STATE(3812), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_RBRACE] = ACTIONS(3732), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3732), - }, - [3813] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [3814] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_RBRACE] = ACTIONS(3759), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_SEMI] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [3815] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_RBRACE] = ACTIONS(3763), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_SEMI] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [3816] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(6930), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(9275), - [anon_sym_PIPE_PIPE] = ACTIONS(6338), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_PERCENT] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6342), - [anon_sym_SEMI] = ACTIONS(3767), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(8233), + [anon_sym_PERCENT] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [3817] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3787] = { + [sym_string_literal] = STATE(3787), + [aux_sym_concatenated_string_repeat1] = STATE(3787), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_CARET] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3890), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [3818] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_RBRACE] = ACTIONS(3790), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3790), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3788] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3819] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_RBRACE] = ACTIONS(3794), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3789] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_RBRACE] = ACTIONS(3905), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3820] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3790] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3821] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3791] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(6919), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(9246), + [anon_sym_PIPE_PIPE] = ACTIONS(6386), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6378), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3822] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(9278), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3792] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3823] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3793] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_RBRACE] = ACTIONS(3936), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(3936), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3824] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [anon_sym_LPAREN2] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(9280), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(9280), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [sym_noexcept] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(9280), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(9280), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), + [3794] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_RBRACE] = ACTIONS(3940), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(3940), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3825] = { - [sym_parameter_list] = STATE(3827), - [sym_abstract_array_declarator] = STATE(4307), - [sym_abstract_pointer_declarator] = STATE(4307), - [sym_abstract_reference_declarator] = STATE(4307), - [sym_abstract_function_declarator] = STATE(4307), - [sym__abstract_declarator] = STATE(4307), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(8295), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(8297), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(8299), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), + [3795] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3826] = { - [sym_abstract_array_declarator] = STATE(4309), - [sym_parameter_list] = STATE(3827), - [sym_abstract_reference_declarator] = STATE(4309), - [sym_abstract_function_declarator] = STATE(4309), - [aux_sym_type_definition_repeat1] = STATE(4308), - [sym_abstract_pointer_declarator] = STATE(4309), - [sym_type_qualifier] = STATE(4308), - [sym__abstract_declarator] = STATE(4309), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(8295), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(8297), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(8299), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(2832), + [3796] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3827] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4310), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4310), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(9283), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(2059), + [3797] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(9249), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3828] = { - [sym_parameter_list] = STATE(4311), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym_COMMA] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_SEMI] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_EQ] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), - [anon_sym_LBRACE] = ACTIONS(8186), + [3798] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3829] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3829), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_unsigned] = ACTIONS(9285), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(9285), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(9285), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(9285), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), + [3799] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3799), + [anon_sym_LPAREN2] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_final] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(9251), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(9251), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [sym_noexcept] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(9251), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(9251), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), }, - [3830] = { - [sym_parameter_list] = STATE(1033), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(4989), - [sym_comment] = ACTIONS(3), + [3800] = { + [sym_abstract_reference_declarator] = STATE(4279), + [sym_abstract_array_declarator] = STATE(4279), + [sym_abstract_pointer_declarator] = STATE(4279), + [sym_parameter_list] = STATE(3802), + [sym_abstract_function_declarator] = STATE(4279), + [sym__abstract_declarator] = STATE(4279), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(8283), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2835), }, - [3831] = { - [sym_abstract_array_declarator] = STATE(4313), - [sym_parameter_list] = STATE(361), - [sym_abstract_reference_declarator] = STATE(4313), - [sym_abstract_function_declarator] = STATE(4313), - [aux_sym_type_definition_repeat1] = STATE(4312), - [sym_abstract_pointer_declarator] = STATE(4313), - [sym_type_qualifier] = STATE(4312), - [sym__abstract_declarator] = STATE(4313), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(6389), - [anon_sym_volatile] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(6393), - [anon_sym__Atomic] = ACTIONS(1062), + [3801] = { + [sym_abstract_reference_declarator] = STATE(4281), + [aux_sym_type_definition_repeat1] = STATE(4280), + [sym_abstract_array_declarator] = STATE(4281), + [sym_parameter_list] = STATE(3802), + [sym_abstract_function_declarator] = STATE(4281), + [sym_abstract_pointer_declarator] = STATE(4281), + [sym_type_qualifier] = STATE(4280), + [sym__abstract_declarator] = STATE(4281), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(6391), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(8283), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(2837), }, - [3832] = { - [sym_parameter_list] = STATE(1033), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), + [3802] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4282), + [sym_type_qualifier] = STATE(4282), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(9254), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1740), }, - [3833] = { - [anon_sym_LPAREN2] = ACTIONS(9288), - [anon_sym_final] = ACTIONS(9288), - [sym_noexcept] = ACTIONS(9288), - [anon_sym_mutable] = ACTIONS(9288), - [anon_sym_COMMA] = ACTIONS(9288), - [anon_sym__Atomic] = ACTIONS(9288), - [anon_sym_const] = ACTIONS(9290), - [anon_sym_GT2] = ACTIONS(9288), - [anon_sym_LBRACK] = ACTIONS(9288), - [anon_sym_constexpr] = ACTIONS(9288), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(9288), - [anon_sym_override] = ACTIONS(9288), - [anon_sym_SEMI] = ACTIONS(9288), - [anon_sym_COLON] = ACTIONS(9288), - [anon_sym_explicit] = ACTIONS(9288), - [anon_sym_RPAREN] = ACTIONS(9288), - [anon_sym_DASH_GT] = ACTIONS(9288), - [anon_sym_EQ] = ACTIONS(9288), - [anon_sym_restrict] = ACTIONS(9288), - [anon_sym_LBRACE] = ACTIONS(9288), + [3803] = { + [sym_parameter_list] = STATE(4283), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym_COMMA] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_SEMI] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_EQ] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), + [anon_sym_LBRACE] = ACTIONS(8038), }, - [3834] = { - [anon_sym_LPAREN2] = ACTIONS(9292), + [3804] = { + [anon_sym_LPAREN2] = ACTIONS(9256), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(9292), - [anon_sym_RPAREN] = ACTIONS(9292), - [anon_sym_COMMA] = ACTIONS(9292), - [anon_sym_SEMI] = ACTIONS(9292), + [anon_sym_LBRACK] = ACTIONS(9256), + [anon_sym_RPAREN] = ACTIONS(9256), + [anon_sym_COMMA] = ACTIONS(9256), + [anon_sym_SEMI] = ACTIONS(9256), }, - [3835] = { - [anon_sym_DASH] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(658), - [anon_sym_else] = ACTIONS(656), - [sym_true] = ACTIONS(656), - [anon_sym_mutable] = ACTIONS(656), - [sym_null] = ACTIONS(656), - [anon_sym_break] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_sizeof] = ACTIONS(656), - [anon_sym_volatile] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_typedef] = ACTIONS(656), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_explicit] = ACTIONS(656), - [sym_identifier] = ACTIONS(656), - [anon_sym_delete] = ACTIONS(656), - [anon_sym_continue] = ACTIONS(656), - [anon_sym__Atomic] = ACTIONS(656), - [sym_number_literal] = ACTIONS(658), - [anon_sym_extern] = ACTIONS(656), - [anon_sym_enum] = ACTIONS(656), - [anon_sym_constexpr] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(658), - [anon_sym_case] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(658), - [anon_sym_LPAREN2] = ACTIONS(658), - [anon_sym_struct] = ACTIONS(656), - [sym_auto] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(656), - [anon_sym_long] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(658), - [anon_sym_default] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_static] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_union] = ACTIONS(656), - [anon_sym_typename] = ACTIONS(656), - [anon_sym_short] = ACTIONS(656), - [anon_sym_new] = ACTIONS(656), - [anon_sym_goto] = ACTIONS(656), - [anon_sym_while] = ACTIONS(656), - [anon_sym_try] = ACTIONS(656), - [anon_sym_for] = ACTIONS(656), - [anon_sym_register] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_const] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_class] = ACTIONS(656), - [anon_sym_if] = ACTIONS(656), - [sym_primitive_type] = ACTIONS(656), - [sym_false] = ACTIONS(656), - [sym_nullptr] = ACTIONS(656), - [anon_sym_do] = ACTIONS(656), - [anon_sym_return] = ACTIONS(656), - [anon_sym_TILDE] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_inline] = ACTIONS(656), - [anon_sym_PLUS_PLUS] = ACTIONS(658), - [anon_sym_restrict] = ACTIONS(656), + [3805] = { + [anon_sym_DASH] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(662), + [anon_sym_else] = ACTIONS(660), + [sym_true] = ACTIONS(660), + [anon_sym_mutable] = ACTIONS(660), + [sym_null] = ACTIONS(660), + [anon_sym_break] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_sizeof] = ACTIONS(660), + [anon_sym_volatile] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_typedef] = ACTIONS(660), + [anon_sym_switch] = ACTIONS(660), + [anon_sym_explicit] = ACTIONS(660), + [sym_identifier] = ACTIONS(660), + [anon_sym_delete] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(660), + [anon_sym__Atomic] = ACTIONS(660), + [sym_number_literal] = ACTIONS(662), + [anon_sym_extern] = ACTIONS(660), + [anon_sym_enum] = ACTIONS(660), + [anon_sym_constexpr] = ACTIONS(660), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(662), + [anon_sym_case] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_LPAREN2] = ACTIONS(662), + [anon_sym_struct] = ACTIONS(660), + [sym_auto] = ACTIONS(660), + [anon_sym_signed] = ACTIONS(660), + [anon_sym_long] = ACTIONS(660), + [anon_sym_COLON_COLON] = ACTIONS(662), + [anon_sym_default] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_static] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_union] = ACTIONS(660), + [anon_sym_typename] = ACTIONS(660), + [anon_sym_short] = ACTIONS(660), + [anon_sym_new] = ACTIONS(660), + [anon_sym_goto] = ACTIONS(660), + [anon_sym_while] = ACTIONS(660), + [anon_sym_try] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [anon_sym_register] = ACTIONS(660), + [anon_sym_DQUOTE] = ACTIONS(662), + [anon_sym_const] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_class] = ACTIONS(660), + [anon_sym_if] = ACTIONS(660), + [sym_primitive_type] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_nullptr] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(662), + [anon_sym_inline] = ACTIONS(660), + [anon_sym_PLUS_PLUS] = ACTIONS(662), + [anon_sym_restrict] = ACTIONS(660), }, - [3836] = { - [sym_union_specifier] = STATE(4314), - [sym_macro_type_specifier] = STATE(4314), - [sym_class_specifier] = STATE(4314), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(4314), - [sym_scoped_namespace_identifier] = STATE(88), + [3806] = { + [sym_union_specifier] = STATE(4284), + [sym_macro_type_specifier] = STATE(4284), + [sym_class_specifier] = STATE(4284), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(4284), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(4314), - [sym_enum_specifier] = STATE(4314), - [sym_dependent_type] = STATE(4314), - [sym_struct_specifier] = STATE(4314), - [sym_scoped_type_identifier] = STATE(87), + [sym__type_specifier] = STATE(4284), + [sym_struct_specifier] = STATE(4284), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(4284), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_type_qualifier] = STATE(388), + [sym_dependent_type] = STATE(4284), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(9294), + [sym_auto] = ACTIONS(9258), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -156184,7 +155568,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(9294), + [sym_primitive_type] = ACTIONS(9258), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -156195,321 +155579,374 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [3837] = { - [sym_pointer_type_declarator] = STATE(4315), - [sym_array_type_declarator] = STATE(4315), - [sym_function_type_declarator] = STATE(4315), - [sym__type_declarator] = STATE(4315), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [3807] = { + [sym_pointer_type_declarator] = STATE(4285), + [sym_array_type_declarator] = STATE(4285), + [sym_function_type_declarator] = STATE(4285), + [sym__type_declarator] = STATE(4285), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [3838] = { - [sym_switch_body] = STATE(4317), - [anon_sym_LBRACE] = ACTIONS(9296), + [3808] = { + [sym_switch_body] = STATE(4287), + [anon_sym_LBRACE] = ACTIONS(9260), [sym_comment] = ACTIONS(3), }, - [3839] = { - [sym_do_statement] = STATE(4319), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [3809] = { + [sym_destructor_name] = STATE(400), + [sym_identifier] = ACTIONS(9262), + [sym_operator_name] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + }, + [3810] = { + [sym_do_statement] = STATE(4290), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(4319), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(4319), - [sym_if_statement] = STATE(4319), - [sym_switch_statement] = STATE(4319), - [sym_for_statement] = STATE(4319), - [sym_return_statement] = STATE(4319), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4290), + [sym_try_statement] = STATE(4290), + [sym_if_statement] = STATE(4290), + [sym_switch_statement] = STATE(4290), + [sym_for_statement] = STATE(4290), + [sym_return_statement] = STATE(4290), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(4319), - [sym_break_statement] = STATE(4319), - [sym_continue_statement] = STATE(4319), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4290), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4319), - [sym_labeled_statement] = STATE(4319), - [sym_expression_statement] = STATE(4319), - [sym_while_statement] = STATE(4319), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4290), + [sym_for_range_loop] = STATE(4290), + [sym_compound_statement] = STATE(4290), + [sym_labeled_statement] = STATE(4290), + [sym_expression_statement] = STATE(4290), + [sym_while_statement] = STATE(4290), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3840] = { - [anon_sym_DASH] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(804), - [anon_sym_else] = ACTIONS(802), - [sym_true] = ACTIONS(802), - [anon_sym_mutable] = ACTIONS(802), - [sym_null] = ACTIONS(802), - [anon_sym_break] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(804), - [anon_sym_sizeof] = ACTIONS(802), - [anon_sym_volatile] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_typedef] = ACTIONS(802), - [anon_sym_switch] = ACTIONS(802), - [anon_sym_explicit] = ACTIONS(802), - [sym_identifier] = ACTIONS(802), - [anon_sym_delete] = ACTIONS(802), - [anon_sym_continue] = ACTIONS(802), - [anon_sym__Atomic] = ACTIONS(802), - [sym_number_literal] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(802), - [anon_sym_enum] = ACTIONS(802), - [anon_sym_constexpr] = ACTIONS(802), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(804), - [anon_sym_case] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_struct] = ACTIONS(802), - [sym_auto] = ACTIONS(802), - [anon_sym_signed] = ACTIONS(802), - [anon_sym_long] = ACTIONS(802), - [anon_sym_COLON_COLON] = ACTIONS(804), - [anon_sym_default] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_static] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_union] = ACTIONS(802), - [anon_sym_typename] = ACTIONS(802), - [anon_sym_short] = ACTIONS(802), - [anon_sym_new] = ACTIONS(802), - [anon_sym_goto] = ACTIONS(802), - [anon_sym_while] = ACTIONS(802), - [anon_sym_try] = ACTIONS(802), - [anon_sym_for] = ACTIONS(802), - [anon_sym_register] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_const] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_class] = ACTIONS(802), - [anon_sym_if] = ACTIONS(802), - [sym_primitive_type] = ACTIONS(802), - [sym_false] = ACTIONS(802), - [sym_nullptr] = ACTIONS(802), - [anon_sym_do] = ACTIONS(802), - [anon_sym_return] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_inline] = ACTIONS(802), - [anon_sym_PLUS_PLUS] = ACTIONS(804), - [anon_sym_restrict] = ACTIONS(802), + [3811] = { + [anon_sym_LPAREN2] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(793), + [anon_sym_mutable] = ACTIONS(795), + [anon_sym_COLON_COLON] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_static] = ACTIONS(795), + [anon_sym_volatile] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_explicit] = ACTIONS(795), + [sym_identifier] = ACTIONS(795), + [sym_operator_name] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_register] = ACTIONS(795), + [anon_sym__Atomic] = ACTIONS(795), + [anon_sym_const] = ACTIONS(795), + [anon_sym_extern] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_constexpr] = ACTIONS(795), + [anon_sym_DOT] = ACTIONS(793), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_inline] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_restrict] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(793), }, - [3841] = { - [anon_sym_DASH] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(964), - [anon_sym_else] = ACTIONS(962), - [sym_true] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_delete] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym_case] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_default] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [anon_sym_const] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_nullptr] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(962), + [3812] = { + [anon_sym_DASH] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(808), + [anon_sym_else] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [anon_sym_mutable] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(806), + [anon_sym_volatile] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_typedef] = ACTIONS(806), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_explicit] = ACTIONS(806), + [sym_identifier] = ACTIONS(806), + [anon_sym_delete] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym__Atomic] = ACTIONS(806), + [sym_number_literal] = ACTIONS(808), + [anon_sym_extern] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_constexpr] = ACTIONS(806), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(808), + [anon_sym_case] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_LPAREN2] = ACTIONS(808), + [anon_sym_struct] = ACTIONS(806), + [sym_auto] = ACTIONS(806), + [anon_sym_signed] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_default] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_static] = ACTIONS(806), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_union] = ACTIONS(806), + [anon_sym_typename] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_new] = ACTIONS(806), + [anon_sym_goto] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_register] = ACTIONS(806), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_const] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [sym_primitive_type] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_nullptr] = ACTIONS(806), + [anon_sym_do] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(806), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_restrict] = ACTIONS(806), }, - [3842] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [3813] = { + [anon_sym_DASH] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(968), + [anon_sym_else] = ACTIONS(966), + [sym_true] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [sym_null] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [sym_number_literal] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_case] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_default] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_static] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_const] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_nullptr] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(966), + }, + [3814] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -156551,7 +155988,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(9300), + [anon_sym_RBRACE] = ACTIONS(9266), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -156583,1355 +156020,1410 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3843] = { + [3815] = { + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym_mutable] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_explicit] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1143), + [sym_operator_name] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1136), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym_GT_GT] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1147), + }, + [3816] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9302), + [anon_sym_SEMI] = ACTIONS(9268), }, - [3844] = { - [sym_do_statement] = STATE(4322), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [3817] = { + [sym_do_statement] = STATE(4293), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(4322), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(4322), - [sym_if_statement] = STATE(4322), - [sym_switch_statement] = STATE(4322), - [sym_for_statement] = STATE(4322), - [sym_return_statement] = STATE(4322), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4293), + [sym_try_statement] = STATE(4293), + [sym_if_statement] = STATE(4293), + [sym_switch_statement] = STATE(4293), + [sym_for_statement] = STATE(4293), + [sym_return_statement] = STATE(4293), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(4322), - [sym_break_statement] = STATE(4322), - [sym_continue_statement] = STATE(4322), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4293), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4322), - [sym_labeled_statement] = STATE(4322), - [sym_expression_statement] = STATE(4322), - [sym_while_statement] = STATE(4322), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4293), + [sym_for_range_loop] = STATE(4293), + [sym_compound_statement] = STATE(4293), + [sym_labeled_statement] = STATE(4293), + [sym_expression_statement] = STATE(4293), + [sym_while_statement] = STATE(4293), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3845] = { - [aux_sym_try_statement_repeat1] = STATE(4324), - [sym_catch_clause] = STATE(4324), - [anon_sym_catch] = ACTIONS(9304), + [3818] = { + [sym_catch_clause] = STATE(4295), + [aux_sym_try_statement_repeat1] = STATE(4295), + [anon_sym_catch] = ACTIONS(9270), [sym_comment] = ACTIONS(3), }, - [3846] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(4326), - [sym_logical_expression] = STATE(4326), - [sym_bitwise_expression] = STATE(4326), - [sym_cast_expression] = STATE(4326), - [sym_new_expression] = STATE(4326), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4326), - [sym_declaration] = STATE(4325), - [sym_char_literal] = STATE(4326), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(4326), - [sym_conditional_expression] = STATE(4326), - [sym_equality_expression] = STATE(4326), - [sym_relational_expression] = STATE(4326), - [sym_sizeof_expression] = STATE(4326), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(4326), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(4326), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(4326), - [sym_lambda_expression] = STATE(4326), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(4327), - [sym_assignment_expression] = STATE(4326), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4326), - [sym_math_expression] = STATE(4326), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [3819] = { + [sym_template_function] = STATE(4297), + [sym__expression] = STATE(4297), + [sym_logical_expression] = STATE(4297), + [sym_bitwise_expression] = STATE(4297), + [sym_cast_expression] = STATE(4297), + [sym_delete_expression] = STATE(4297), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(4297), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(4297), + [sym_lambda_expression] = STATE(4297), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(4296), + [sym_for_range_declaration] = STATE(4298), + [sym_conditional_expression] = STATE(4297), + [sym_equality_expression] = STATE(4297), + [sym_relational_expression] = STATE(4297), + [sym_sizeof_expression] = STATE(4297), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(4297), + [sym_concatenated_string] = STATE(4297), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(9306), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(4297), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4297), + [sym_math_expression] = STATE(4297), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4297), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(9272), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(9308), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(9274), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(9308), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(9306), + [sym_number_literal] = ACTIONS(9272), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(9308), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(9274), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(9308), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(9274), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(9310), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(9276), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [3847] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4328), - [sym_logical_expression] = STATE(4328), - [sym_bitwise_expression] = STATE(4328), - [sym_cast_expression] = STATE(4328), - [sym_new_expression] = STATE(4328), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4328), - [sym_char_literal] = STATE(4328), - [sym_template_function] = STATE(4328), - [sym_conditional_expression] = STATE(4328), - [sym_equality_expression] = STATE(4328), - [sym_relational_expression] = STATE(4328), - [sym_delete_expression] = STATE(4328), - [sym_sizeof_expression] = STATE(4328), - [sym_parenthesized_expression] = STATE(4328), - [sym_lambda_expression] = STATE(4328), - [sym_concatenated_string] = STATE(4328), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4328), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4328), - [sym_math_expression] = STATE(4328), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9312), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(9314), - [sym_null] = ACTIONS(9314), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9312), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(9314), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(9314), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [3820] = { + [sym_template_function] = STATE(4299), + [sym__expression] = STATE(4299), + [sym_logical_expression] = STATE(4299), + [sym_bitwise_expression] = STATE(4299), + [sym_cast_expression] = STATE(4299), + [sym_delete_expression] = STATE(4299), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4299), + [sym_lambda_expression] = STATE(4299), + [sym_char_literal] = STATE(4299), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4299), + [sym_equality_expression] = STATE(4299), + [sym_relational_expression] = STATE(4299), + [sym_sizeof_expression] = STATE(4299), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4299), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4299), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4299), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4299), + [sym_math_expression] = STATE(4299), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4299), + [sym_raw_string_literal] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(9280), + [sym_null] = ACTIONS(9280), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9278), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(9280), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(9280), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [3848] = { - [anon_sym_LPAREN2] = ACTIONS(9316), + [3821] = { + [anon_sym_LPAREN2] = ACTIONS(9282), [sym_comment] = ACTIONS(3), }, - [3849] = { - [anon_sym_while] = ACTIONS(9318), + [3822] = { + [anon_sym_while] = ACTIONS(9284), [sym_comment] = ACTIONS(3), }, - [3850] = { - [anon_sym_DASH] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - [anon_sym_else] = ACTIONS(1609), - [sym_true] = ACTIONS(1609), - [anon_sym_mutable] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_typedef] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_explicit] = ACTIONS(1609), - [sym_identifier] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1609), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_constexpr] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym_case] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1609), - [sym_auto] = ACTIONS(1609), - [anon_sym_signed] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_typename] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_class] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1609), - [sym_false] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_inline] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_restrict] = ACTIONS(1609), - }, - [3851] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(9320), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [3852] = { + [3823] = { + [anon_sym_DASH] = ACTIONS(1619), + [sym_raw_string_literal] = ACTIONS(1621), + [anon_sym_else] = ACTIONS(1619), + [sym_true] = ACTIONS(1619), + [anon_sym_mutable] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_sizeof] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1619), + [anon_sym_explicit] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [anon_sym_delete] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym__Atomic] = ACTIONS(1619), + [sym_number_literal] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_constexpr] = ACTIONS(1619), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9320), - }, - [3853] = { - [anon_sym_DASH] = ACTIONS(1809), - [sym_raw_string_literal] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [anon_sym_mutable] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_sizeof] = ACTIONS(1809), - [anon_sym_volatile] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_typedef] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_explicit] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym__Atomic] = ACTIONS(1809), - [sym_number_literal] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_constexpr] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(1809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1809), - [sym_auto] = ACTIONS(1809), - [anon_sym_signed] = ACTIONS(1809), - [anon_sym_long] = ACTIONS(1809), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_typename] = ACTIONS(1809), - [anon_sym_short] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_register] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [sym_primitive_type] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nullptr] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_inline] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_restrict] = ACTIONS(1809), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1621), + [anon_sym_case] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1619), + [sym_auto] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_COLON_COLON] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_typename] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), + [sym_nullptr] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_inline] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_restrict] = ACTIONS(1619), }, - [3854] = { - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(4333), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(9322), + [3824] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(9286), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3855] = { - [aux_sym_declaration_repeat1] = STATE(4333), + [3825] = { [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(9322), + [anon_sym_SEMI] = ACTIONS(9286), }, - [3856] = { - [sym_reference_declarator] = STATE(4334), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(4334), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(4334), - [sym_destructor_name] = STATE(4334), - [sym__declarator] = STATE(4334), - [sym_init_declarator] = STATE(4335), - [sym_array_declarator] = STATE(4334), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(4334), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(9324), + [3826] = { + [sym_template_function] = STATE(4303), + [sym_destructor_name] = STATE(4303), + [sym_pointer_declarator] = STATE(4303), + [sym_structured_binding_declarator] = STATE(4303), + [sym__declarator] = STATE(4303), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(4303), + [sym_array_declarator] = STATE(4303), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(4304), + [sym_function_declarator] = STATE(4303), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(9288), [sym_comment] = ACTIONS(3), }, - [3857] = { - [sym_goto_statement] = STATE(3857), - [sym_logical_expression] = STATE(3091), - [sym_for_range_loop] = STATE(3857), - [sym_cast_expression] = STATE(3091), - [sym_declaration] = STATE(3857), + [3827] = { + [sym_goto_statement] = STATE(3827), + [sym_logical_expression] = STATE(3070), + [sym_try_statement] = STATE(3827), + [sym_cast_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_union_specifier] = STATE(278), - [sym_switch_statement] = STATE(3857), - [sym_return_statement] = STATE(3857), - [sym_template_function] = STATE(3091), - [sym_conditional_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3827), + [aux_sym_function_definition_repeat1] = STATE(3067), + [sym_type_qualifier] = STATE(285), + [aux_sym_case_statement_repeat1] = STATE(3827), + [sym_union_specifier] = STATE(280), + [sym_switch_statement] = STATE(3827), + [sym_return_statement] = STATE(3827), + [sym_conditional_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(73), - [sym_type_definition] = STATE(3857), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_break_statement] = STATE(3857), - [sym_assignment_expression] = STATE(3091), - [sym_shift_expression] = STATE(3091), - [sym_attribute] = STATE(3094), + [sym_scoped_namespace_identifier] = STATE(3069), + [sym_type_definition] = STATE(3827), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_break_statement] = STATE(3827), + [sym_assignment_expression] = STATE(3070), + [sym_for_range_loop] = STATE(3827), + [sym_shift_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_compound_statement] = STATE(3857), - [sym_expression_statement] = STATE(3857), - [sym_do_statement] = STATE(3857), - [sym_template_type] = STATE(722), - [sym__expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), - [sym_compound_literal_expression] = STATE(3091), - [sym_char_literal] = STATE(3091), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_if_statement] = STATE(3857), - [sym_for_statement] = STATE(3857), - [sym_comma_expression] = STATE(3092), - [sym_equality_expression] = STATE(3091), - [sym_try_statement] = STATE(3857), - [sym_sizeof_expression] = STATE(3091), - [sym__declaration_specifiers] = STATE(3093), - [sym_parenthesized_expression] = STATE(3091), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(3091), - [aux_sym_function_definition_repeat1] = STATE(3094), - [sym_macro_type_specifier] = STATE(278), - [sym_lambda_expression] = STATE(3091), - [sym_sized_type_specifier] = STATE(278), - [aux_sym_case_statement_repeat1] = STATE(3857), - [sym_continue_statement] = STATE(3857), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_compound_statement] = STATE(3827), + [sym_expression_statement] = STATE(3827), + [sym_do_statement] = STATE(3827), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_compound_literal_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_if_statement] = STATE(3827), + [sym_for_statement] = STATE(3827), + [sym_comma_expression] = STATE(3071), + [sym_equality_expression] = STATE(3070), + [sym_attribute] = STATE(3067), + [sym_sizeof_expression] = STATE(3070), + [sym__declaration_specifiers] = STATE(3072), + [sym_parenthesized_expression] = STATE(3070), + [sym_concatenated_string] = STATE(3070), + [sym_macro_type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [sym_template_type] = STATE(3073), + [sym_continue_statement] = STATE(3827), [sym_pointer_expression] = STATE(47), - [sym_math_expression] = STATE(3091), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(727), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_labeled_statement] = STATE(3857), - [sym_while_statement] = STATE(3857), - [anon_sym_DASH] = ACTIONS(9326), - [sym_raw_string_literal] = ACTIONS(9329), - [sym_true] = ACTIONS(9332), - [anon_sym_mutable] = ACTIONS(9335), - [sym_null] = ACTIONS(9332), - [anon_sym_break] = ACTIONS(9338), - [anon_sym_BANG] = ACTIONS(9341), - [anon_sym_sizeof] = ACTIONS(9344), - [anon_sym_volatile] = ACTIONS(9335), - [anon_sym_PLUS] = ACTIONS(9326), - [anon_sym_typedef] = ACTIONS(9347), - [anon_sym_switch] = ACTIONS(9350), - [anon_sym_explicit] = ACTIONS(9335), - [sym_identifier] = ACTIONS(9353), - [anon_sym_delete] = ACTIONS(9356), - [anon_sym_continue] = ACTIONS(9359), - [anon_sym__Atomic] = ACTIONS(9335), - [sym_number_literal] = ACTIONS(9329), - [anon_sym_extern] = ACTIONS(9362), - [anon_sym_enum] = ACTIONS(9365), - [anon_sym_constexpr] = ACTIONS(9335), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9371), - [anon_sym_case] = ACTIONS(9374), - [anon_sym_SQUOTE] = ACTIONS(9376), - [anon_sym_LBRACE] = ACTIONS(9379), - [anon_sym_DASH_DASH] = ACTIONS(9382), - [anon_sym_LPAREN2] = ACTIONS(9385), - [anon_sym_struct] = ACTIONS(9388), - [sym_auto] = ACTIONS(9391), - [anon_sym_signed] = ACTIONS(9368), - [anon_sym_long] = ACTIONS(9368), - [anon_sym_COLON_COLON] = ACTIONS(9394), - [anon_sym_default] = ACTIONS(9374), - [anon_sym_AMP] = ACTIONS(9397), - [anon_sym_static] = ACTIONS(9362), - [anon_sym_RBRACE] = ACTIONS(9400), - [anon_sym_STAR] = ACTIONS(9397), - [anon_sym_union] = ACTIONS(9402), - [anon_sym_typename] = ACTIONS(9405), - [anon_sym_short] = ACTIONS(9368), - [anon_sym_new] = ACTIONS(9408), - [anon_sym_goto] = ACTIONS(9411), - [anon_sym_while] = ACTIONS(9414), - [anon_sym_try] = ACTIONS(9417), - [anon_sym_for] = ACTIONS(9420), - [anon_sym_register] = ACTIONS(9362), - [anon_sym_DQUOTE] = ACTIONS(9423), - [anon_sym_const] = ACTIONS(9335), - [anon_sym_LBRACK] = ACTIONS(9426), - [anon_sym_class] = ACTIONS(9429), - [anon_sym_if] = ACTIONS(9432), - [sym_primitive_type] = ACTIONS(9391), - [sym_false] = ACTIONS(9332), - [sym_nullptr] = ACTIONS(9332), - [anon_sym_do] = ACTIONS(9435), - [anon_sym_return] = ACTIONS(9438), - [anon_sym_TILDE] = ACTIONS(9441), - [anon_sym_SEMI] = ACTIONS(9444), - [anon_sym_inline] = ACTIONS(9362), - [anon_sym_PLUS_PLUS] = ACTIONS(9382), - [anon_sym_restrict] = ACTIONS(9335), + [sym_new_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), + [sym_enum_specifier] = STATE(280), + [sym_labeled_statement] = STATE(3827), + [sym_while_statement] = STATE(3827), + [anon_sym_DASH] = ACTIONS(9290), + [sym_raw_string_literal] = ACTIONS(9293), + [sym_true] = ACTIONS(9296), + [anon_sym_mutable] = ACTIONS(9299), + [sym_null] = ACTIONS(9296), + [anon_sym_break] = ACTIONS(9302), + [anon_sym_BANG] = ACTIONS(9305), + [anon_sym_sizeof] = ACTIONS(9308), + [anon_sym_volatile] = ACTIONS(9299), + [anon_sym_PLUS] = ACTIONS(9290), + [anon_sym_typedef] = ACTIONS(9311), + [anon_sym_switch] = ACTIONS(9314), + [anon_sym_explicit] = ACTIONS(9299), + [sym_identifier] = ACTIONS(9317), + [anon_sym_delete] = ACTIONS(9320), + [anon_sym_continue] = ACTIONS(9323), + [anon_sym__Atomic] = ACTIONS(9299), + [sym_number_literal] = ACTIONS(9293), + [anon_sym_extern] = ACTIONS(9326), + [anon_sym_enum] = ACTIONS(9329), + [anon_sym_constexpr] = ACTIONS(9299), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9335), + [anon_sym_case] = ACTIONS(9338), + [anon_sym_SQUOTE] = ACTIONS(9340), + [anon_sym_LBRACE] = ACTIONS(9343), + [anon_sym_DASH_DASH] = ACTIONS(9346), + [anon_sym_LPAREN2] = ACTIONS(9349), + [anon_sym_struct] = ACTIONS(9352), + [sym_auto] = ACTIONS(9355), + [anon_sym_signed] = ACTIONS(9332), + [anon_sym_long] = ACTIONS(9332), + [anon_sym_COLON_COLON] = ACTIONS(9358), + [anon_sym_default] = ACTIONS(9338), + [anon_sym_AMP] = ACTIONS(9361), + [anon_sym_static] = ACTIONS(9326), + [anon_sym_RBRACE] = ACTIONS(9364), + [anon_sym_STAR] = ACTIONS(9361), + [anon_sym_union] = ACTIONS(9366), + [anon_sym_typename] = ACTIONS(9369), + [anon_sym_short] = ACTIONS(9332), + [anon_sym_new] = ACTIONS(9372), + [anon_sym_goto] = ACTIONS(9375), + [anon_sym_while] = ACTIONS(9378), + [anon_sym_try] = ACTIONS(9381), + [anon_sym_for] = ACTIONS(9384), + [anon_sym_register] = ACTIONS(9326), + [anon_sym_DQUOTE] = ACTIONS(9387), + [anon_sym_const] = ACTIONS(9299), + [anon_sym_LBRACK] = ACTIONS(9390), + [anon_sym_class] = ACTIONS(9393), + [anon_sym_if] = ACTIONS(9396), + [sym_primitive_type] = ACTIONS(9355), + [sym_false] = ACTIONS(9296), + [sym_nullptr] = ACTIONS(9296), + [anon_sym_do] = ACTIONS(9399), + [anon_sym_return] = ACTIONS(9402), + [anon_sym_TILDE] = ACTIONS(9405), + [anon_sym_SEMI] = ACTIONS(9408), + [anon_sym_inline] = ACTIONS(9326), + [anon_sym_PLUS_PLUS] = ACTIONS(9346), + [anon_sym_restrict] = ACTIONS(9299), }, - [3858] = { - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4159), - [sym_raw_string_literal] = ACTIONS(4161), - [sym_true] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [sym_null] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_default] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_BANG] = ACTIONS(4161), - [anon_sym_AMP] = ACTIONS(4161), - [anon_sym_sizeof] = ACTIONS(4159), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [anon_sym_switch] = ACTIONS(4159), - [sym_identifier] = ACTIONS(4159), - [anon_sym_new] = ACTIONS(4159), - [anon_sym_goto] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_for] = ACTIONS(4159), - [anon_sym_delete] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_DQUOTE] = ACTIONS(4161), - [sym_number_literal] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_if] = ACTIONS(4159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(4159), - [sym_nullptr] = ACTIONS(4159), - [anon_sym_do] = ACTIONS(4159), - [anon_sym_case] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4161), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_SQUOTE] = ACTIONS(4161), - [anon_sym_LBRACE] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), + [3828] = { + [sym_destructor_name] = STATE(960), + [sym_identifier] = ACTIONS(9411), + [sym_operator_name] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(310), + [sym_comment] = ACTIONS(3), }, - [3859] = { - [sym_do_statement] = STATE(2078), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [3829] = { + [anon_sym_DASH] = ACTIONS(1879), + [sym_raw_string_literal] = ACTIONS(1881), + [anon_sym_else] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [sym_null] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_sizeof] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [sym_number_literal] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), + [anon_sym_case] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1879), + [sym_auto] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nullptr] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_restrict] = ACTIONS(1879), + }, + [3830] = { + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(4307), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(9413), + }, + [3831] = { + [aux_sym_declaration_repeat1] = STATE(4307), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(9413), + }, + [3832] = { + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4157), + [sym_raw_string_literal] = ACTIONS(4159), + [sym_true] = ACTIONS(4157), + [anon_sym_else] = ACTIONS(4157), + [sym_null] = ACTIONS(4157), + [anon_sym_COLON_COLON] = ACTIONS(4159), + [anon_sym_default] = ACTIONS(4157), + [anon_sym_break] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4159), + [anon_sym_sizeof] = ACTIONS(4157), + [anon_sym_RBRACE] = ACTIONS(4159), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_switch] = ACTIONS(4157), + [sym_identifier] = ACTIONS(4157), + [anon_sym_new] = ACTIONS(4157), + [anon_sym_goto] = ACTIONS(4157), + [anon_sym_while] = ACTIONS(4157), + [anon_sym_continue] = ACTIONS(4157), + [anon_sym_for] = ACTIONS(4157), + [anon_sym_delete] = ACTIONS(4157), + [anon_sym_try] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(4159), + [sym_number_literal] = ACTIONS(4159), + [anon_sym_LBRACK] = ACTIONS(4159), + [anon_sym_if] = ACTIONS(4157), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(4157), + [sym_nullptr] = ACTIONS(4157), + [anon_sym_do] = ACTIONS(4157), + [anon_sym_case] = ACTIONS(4157), + [anon_sym_return] = ACTIONS(4157), + [anon_sym_TILDE] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4159), + [anon_sym_PLUS_PLUS] = ACTIONS(4159), + [anon_sym_SQUOTE] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4159), + [anon_sym_DASH_DASH] = ACTIONS(4159), + }, + [3833] = { + [sym_do_statement] = STATE(2067), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(2078), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(2078), - [sym_if_statement] = STATE(2078), - [sym_switch_statement] = STATE(2078), - [sym_for_statement] = STATE(2078), - [sym_return_statement] = STATE(2078), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2067), + [sym_try_statement] = STATE(2067), + [aux_sym_switch_body_repeat1] = STATE(2067), + [sym_if_statement] = STATE(2067), + [sym_switch_statement] = STATE(2067), + [sym_for_statement] = STATE(2067), + [sym_return_statement] = STATE(2067), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(2078), - [aux_sym_switch_body_repeat1] = STATE(2078), - [sym_case_statement] = STATE(2078), - [sym_break_statement] = STATE(2078), - [sym_continue_statement] = STATE(2078), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(2067), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2067), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2078), - [sym_labeled_statement] = STATE(2078), - [sym_expression_statement] = STATE(2078), - [sym_while_statement] = STATE(2078), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(2067), + [sym_for_range_loop] = STATE(2067), + [sym_compound_statement] = STATE(2067), + [sym_labeled_statement] = STATE(2067), + [sym_expression_statement] = STATE(2067), + [sym_while_statement] = STATE(2067), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(9447), + [anon_sym_RBRACE] = ACTIONS(9415), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3860] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4338), - [sym_logical_expression] = STATE(4338), - [sym_bitwise_expression] = STATE(4338), - [sym_cast_expression] = STATE(4338), - [sym_new_expression] = STATE(4338), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4338), - [sym_char_literal] = STATE(4338), - [sym_template_function] = STATE(4338), - [sym_conditional_expression] = STATE(4338), - [sym_equality_expression] = STATE(4338), - [sym_relational_expression] = STATE(4338), - [sym_delete_expression] = STATE(4338), - [sym_sizeof_expression] = STATE(4338), - [sym_parenthesized_expression] = STATE(4338), - [sym_lambda_expression] = STATE(4338), - [sym_concatenated_string] = STATE(4338), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4338), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4338), - [sym_math_expression] = STATE(4338), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9449), + [3834] = { + [sym_template_function] = STATE(4310), + [sym__expression] = STATE(4310), + [sym_logical_expression] = STATE(4310), + [sym_bitwise_expression] = STATE(4310), + [sym_cast_expression] = STATE(4310), + [sym_delete_expression] = STATE(4310), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4310), + [sym_lambda_expression] = STATE(4310), + [sym_char_literal] = STATE(4310), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4310), + [sym_equality_expression] = STATE(4310), + [sym_relational_expression] = STATE(4310), + [sym_sizeof_expression] = STATE(4310), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4310), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4310), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4310), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4310), + [sym_math_expression] = STATE(4310), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4310), + [sym_raw_string_literal] = ACTIONS(9417), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(9451), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(9451), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(9419), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(9419), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9449), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(9417), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(9451), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(9451), + [sym_false] = ACTIONS(9419), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(9419), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(9453), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(9421), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [3861] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(9455), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3835] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(9423), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3862] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4340), - [sym_logical_expression] = STATE(4340), - [sym_bitwise_expression] = STATE(4340), - [sym_cast_expression] = STATE(4340), - [sym_new_expression] = STATE(4340), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4340), - [sym_char_literal] = STATE(4340), - [sym_template_function] = STATE(4340), - [sym_conditional_expression] = STATE(4340), - [sym_equality_expression] = STATE(4340), - [sym_relational_expression] = STATE(4340), - [sym_delete_expression] = STATE(4340), - [sym_sizeof_expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(4340), - [sym_lambda_expression] = STATE(4340), - [sym_concatenated_string] = STATE(4340), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4340), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4340), - [sym_math_expression] = STATE(4340), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9457), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(9459), - [sym_null] = ACTIONS(9459), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9457), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(9459), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(9459), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(9455), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [3836] = { + [sym_template_function] = STATE(4312), + [sym__expression] = STATE(4312), + [sym_logical_expression] = STATE(4312), + [sym_bitwise_expression] = STATE(4312), + [sym_cast_expression] = STATE(4312), + [sym_delete_expression] = STATE(4312), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4312), + [sym_lambda_expression] = STATE(4312), + [sym_char_literal] = STATE(4312), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4312), + [sym_equality_expression] = STATE(4312), + [sym_relational_expression] = STATE(4312), + [sym_sizeof_expression] = STATE(4312), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4312), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4312), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4312), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4312), + [sym_math_expression] = STATE(4312), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4312), + [sym_raw_string_literal] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(9427), + [sym_null] = ACTIONS(9427), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9425), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(9427), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(9423), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [3863] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4341), - [sym_logical_expression] = STATE(4341), - [sym_bitwise_expression] = STATE(4341), - [sym_cast_expression] = STATE(4341), - [sym_new_expression] = STATE(4341), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4341), - [sym_char_literal] = STATE(4341), - [sym_template_function] = STATE(4341), - [sym_conditional_expression] = STATE(4341), - [sym_equality_expression] = STATE(4341), - [sym_relational_expression] = STATE(4341), - [sym_delete_expression] = STATE(4341), - [sym_sizeof_expression] = STATE(4341), - [sym_parenthesized_expression] = STATE(4341), - [sym_lambda_expression] = STATE(4341), - [sym_concatenated_string] = STATE(4341), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4341), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4341), - [sym_math_expression] = STATE(4341), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9461), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(9463), - [sym_null] = ACTIONS(9463), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9461), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(9463), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(9463), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [3837] = { + [sym_template_function] = STATE(4313), + [sym__expression] = STATE(4313), + [sym_logical_expression] = STATE(4313), + [sym_bitwise_expression] = STATE(4313), + [sym_cast_expression] = STATE(4313), + [sym_delete_expression] = STATE(4313), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4313), + [sym_lambda_expression] = STATE(4313), + [sym_char_literal] = STATE(4313), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4313), + [sym_equality_expression] = STATE(4313), + [sym_relational_expression] = STATE(4313), + [sym_sizeof_expression] = STATE(4313), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4313), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4313), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4313), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4313), + [sym_math_expression] = STATE(4313), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4313), + [sym_raw_string_literal] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(9431), + [sym_null] = ACTIONS(9431), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9429), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(9431), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [3864] = { - [sym_compound_statement] = STATE(4342), - [anon_sym_LBRACE] = ACTIONS(2154), + [3838] = { + [sym_compound_statement] = STATE(4314), + [anon_sym_LBRACE] = ACTIONS(2156), [sym_comment] = ACTIONS(3), }, - [3865] = { - [aux_sym_try_statement_repeat1] = STATE(3865), - [sym_catch_clause] = STATE(3865), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [sym_true] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_default] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_AMP] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_RBRACE] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_switch] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(9465), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_if] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_case] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), + [3839] = { + [sym_catch_clause] = STATE(3839), + [aux_sym_try_statement_repeat1] = STATE(3839), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [sym_true] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_default] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_AMP] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_switch] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(9433), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_if] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_case] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), }, - [3866] = { - [sym_do_statement] = STATE(4348), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [3840] = { + [sym_do_statement] = STATE(4320), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4348), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4348), - [sym_if_statement] = STATE(4348), - [sym_switch_statement] = STATE(4348), - [sym_for_statement] = STATE(4348), - [sym_return_statement] = STATE(4348), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4320), + [sym_try_statement] = STATE(4320), + [sym_if_statement] = STATE(4320), + [sym_switch_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_return_statement] = STATE(4320), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4348), - [sym_break_statement] = STATE(4348), - [sym_continue_statement] = STATE(4348), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4320), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4348), - [sym_labeled_statement] = STATE(4348), - [sym_expression_statement] = STATE(4348), - [sym_while_statement] = STATE(4348), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4320), + [sym_for_range_loop] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_labeled_statement] = STATE(4320), + [sym_expression_statement] = STATE(4320), + [sym_while_statement] = STATE(4320), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3867] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9478), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3841] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(9446), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3868] = { - [anon_sym_LPAREN2] = ACTIONS(5728), - [anon_sym_DASH] = ACTIONS(5726), - [sym_raw_string_literal] = ACTIONS(5728), - [sym_true] = ACTIONS(5726), - [anon_sym_else] = ACTIONS(5726), - [sym_null] = ACTIONS(5726), - [anon_sym_COLON_COLON] = ACTIONS(5728), - [anon_sym_default] = ACTIONS(5726), - [anon_sym_break] = ACTIONS(5726), - [anon_sym_BANG] = ACTIONS(5728), - [anon_sym_AMP] = ACTIONS(5728), - [anon_sym_sizeof] = ACTIONS(5726), - [anon_sym_RBRACE] = ACTIONS(5728), - [anon_sym_PLUS] = ACTIONS(5726), - [anon_sym_STAR] = ACTIONS(5728), - [anon_sym_switch] = ACTIONS(5726), - [sym_identifier] = ACTIONS(5726), - [anon_sym_new] = ACTIONS(5726), - [anon_sym_goto] = ACTIONS(5726), - [anon_sym_while] = ACTIONS(5726), - [anon_sym_continue] = ACTIONS(5726), - [anon_sym_for] = ACTIONS(5726), - [anon_sym_delete] = ACTIONS(5726), - [anon_sym_try] = ACTIONS(5726), - [anon_sym_DQUOTE] = ACTIONS(5728), - [sym_number_literal] = ACTIONS(5728), - [anon_sym_LBRACK] = ACTIONS(5728), - [anon_sym_if] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5726), - [sym_nullptr] = ACTIONS(5726), - [anon_sym_do] = ACTIONS(5726), - [anon_sym_case] = ACTIONS(5726), - [anon_sym_return] = ACTIONS(5726), - [anon_sym_TILDE] = ACTIONS(5728), - [anon_sym_SEMI] = ACTIONS(5728), - [anon_sym_PLUS_PLUS] = ACTIONS(5728), - [anon_sym_SQUOTE] = ACTIONS(5728), - [anon_sym_LBRACE] = ACTIONS(5728), - [anon_sym_DASH_DASH] = ACTIONS(5728), + [3842] = { + [anon_sym_LPAREN2] = ACTIONS(5734), + [anon_sym_DASH] = ACTIONS(5732), + [sym_raw_string_literal] = ACTIONS(5734), + [sym_true] = ACTIONS(5732), + [anon_sym_else] = ACTIONS(5732), + [sym_null] = ACTIONS(5732), + [anon_sym_COLON_COLON] = ACTIONS(5734), + [anon_sym_default] = ACTIONS(5732), + [anon_sym_break] = ACTIONS(5732), + [anon_sym_BANG] = ACTIONS(5734), + [anon_sym_AMP] = ACTIONS(5734), + [anon_sym_sizeof] = ACTIONS(5732), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_STAR] = ACTIONS(5734), + [anon_sym_switch] = ACTIONS(5732), + [sym_identifier] = ACTIONS(5732), + [anon_sym_new] = ACTIONS(5732), + [anon_sym_goto] = ACTIONS(5732), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_continue] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [anon_sym_delete] = ACTIONS(5732), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_DQUOTE] = ACTIONS(5734), + [sym_number_literal] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5734), + [anon_sym_if] = ACTIONS(5732), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5732), + [sym_nullptr] = ACTIONS(5732), + [anon_sym_do] = ACTIONS(5732), + [anon_sym_case] = ACTIONS(5732), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_TILDE] = ACTIONS(5734), + [anon_sym_SEMI] = ACTIONS(5734), + [anon_sym_PLUS_PLUS] = ACTIONS(5734), + [anon_sym_SQUOTE] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5734), + [anon_sym_DASH_DASH] = ACTIONS(5734), }, - [3869] = { - [sym_goto_statement] = STATE(3857), - [sym_logical_expression] = STATE(3091), - [sym_for_range_loop] = STATE(3857), - [sym_cast_expression] = STATE(3091), - [sym_declaration] = STATE(3857), + [3843] = { + [sym_goto_statement] = STATE(3827), + [sym_logical_expression] = STATE(3070), + [sym_try_statement] = STATE(3827), + [sym_cast_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_union_specifier] = STATE(278), - [sym_switch_statement] = STATE(3857), - [sym_return_statement] = STATE(3857), - [sym_template_function] = STATE(3091), - [sym_conditional_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(3827), + [aux_sym_function_definition_repeat1] = STATE(3067), + [sym_type_qualifier] = STATE(285), + [aux_sym_case_statement_repeat1] = STATE(3827), + [sym_union_specifier] = STATE(280), + [sym_switch_statement] = STATE(3827), + [sym_return_statement] = STATE(3827), + [sym_conditional_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(73), - [sym_type_definition] = STATE(3857), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_break_statement] = STATE(3857), - [sym_assignment_expression] = STATE(3091), - [sym_shift_expression] = STATE(3091), - [sym_attribute] = STATE(3094), + [sym_scoped_namespace_identifier] = STATE(3069), + [sym_type_definition] = STATE(3827), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_break_statement] = STATE(3827), + [sym_assignment_expression] = STATE(3070), + [sym_for_range_loop] = STATE(3827), + [sym_shift_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_compound_statement] = STATE(3857), - [sym_expression_statement] = STATE(3857), - [sym_do_statement] = STATE(3857), - [sym_template_type] = STATE(722), - [sym__expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), - [sym_compound_literal_expression] = STATE(3091), - [sym_char_literal] = STATE(3091), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_if_statement] = STATE(3857), - [sym_for_statement] = STATE(3857), - [sym_comma_expression] = STATE(3092), - [sym_equality_expression] = STATE(3091), - [sym_try_statement] = STATE(3857), - [sym_sizeof_expression] = STATE(3091), - [sym__declaration_specifiers] = STATE(3093), - [sym_parenthesized_expression] = STATE(3091), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(3091), - [aux_sym_function_definition_repeat1] = STATE(3094), - [sym_macro_type_specifier] = STATE(278), - [sym_lambda_expression] = STATE(3091), - [sym_sized_type_specifier] = STATE(278), - [aux_sym_case_statement_repeat1] = STATE(3857), - [sym_continue_statement] = STATE(3857), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_compound_statement] = STATE(3827), + [sym_expression_statement] = STATE(3827), + [sym_do_statement] = STATE(3827), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_compound_literal_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_storage_class_specifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_if_statement] = STATE(3827), + [sym_for_statement] = STATE(3827), + [sym_comma_expression] = STATE(3071), + [sym_equality_expression] = STATE(3070), + [sym_attribute] = STATE(3067), + [sym_sizeof_expression] = STATE(3070), + [sym__declaration_specifiers] = STATE(3072), + [sym_parenthesized_expression] = STATE(3070), + [sym_concatenated_string] = STATE(3070), + [sym_macro_type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [sym_template_type] = STATE(3073), + [sym_continue_statement] = STATE(3827), [sym_pointer_expression] = STATE(47), - [sym_math_expression] = STATE(3091), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(727), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_labeled_statement] = STATE(3857), - [sym_while_statement] = STATE(3857), + [sym_new_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), + [sym_enum_specifier] = STATE(280), + [sym_labeled_statement] = STATE(3827), + [sym_while_statement] = STATE(3827), [anon_sym_DASH] = ACTIONS(7), - [sym_raw_string_literal] = ACTIONS(6441), - [sym_true] = ACTIONS(6443), + [sym_raw_string_literal] = ACTIONS(6430), + [sym_true] = ACTIONS(6432), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(6443), - [anon_sym_break] = ACTIONS(6445), + [sym_null] = ACTIONS(6432), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(11), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(6447), - [anon_sym_switch] = ACTIONS(6449), + [anon_sym_typedef] = ACTIONS(6436), + [anon_sym_switch] = ACTIONS(6438), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(6451), + [sym_identifier] = ACTIONS(6440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_continue] = ACTIONS(6442), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_extern] = ACTIONS(63), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_case] = ACTIONS(9480), + [anon_sym_case] = ACTIONS(9448), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), [anon_sym_LPAREN2] = ACTIONS(111), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(6459), - [anon_sym_default] = ACTIONS(9480), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(6448), + [anon_sym_default] = ACTIONS(9448), [anon_sym_AMP] = ACTIONS(119), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(9482), + [anon_sym_RBRACE] = ACTIONS(9450), [anon_sym_STAR] = ACTIONS(119), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), - [anon_sym_short] = ACTIONS(460), + [anon_sym_typename] = ACTIONS(472), + [anon_sym_short] = ACTIONS(462), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), + [anon_sym_goto] = ACTIONS(6452), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_class] = ACTIONS(89), - [anon_sym_if] = ACTIONS(6471), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [anon_sym_if] = ACTIONS(6460), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_inline] = ACTIONS(63), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3870] = { - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_mutable] = ACTIONS(7299), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_final] = ACTIONS(7299), - [anon_sym_COLON_COLON] = ACTIONS(7297), - [anon_sym_GT2] = ACTIONS(7297), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_static] = ACTIONS(7299), - [anon_sym_volatile] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7299), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_override] = ACTIONS(7299), - [anon_sym_explicit] = ACTIONS(7299), - [sym_identifier] = ACTIONS(7299), - [sym_operator_name] = ACTIONS(7297), - [sym_noexcept] = ACTIONS(7299), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_register] = ACTIONS(7299), - [anon_sym__Atomic] = ACTIONS(7299), - [anon_sym_const] = ACTIONS(7299), - [anon_sym_extern] = ACTIONS(7299), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7297), - [anon_sym_LT_LT] = ACTIONS(7297), - [anon_sym_constexpr] = ACTIONS(7299), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_TILDE] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_inline] = ACTIONS(7299), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_restrict] = ACTIONS(7299), - [anon_sym_GT_GT] = ACTIONS(7299), - [anon_sym_DASH_GT] = ACTIONS(7297), + [3844] = { + [anon_sym_LPAREN2] = ACTIONS(7278), + [anon_sym_DASH] = ACTIONS(7280), + [anon_sym_PLUS_PLUS] = ACTIONS(7278), + [anon_sym_LBRACE] = ACTIONS(7278), + [anon_sym_mutable] = ACTIONS(7280), + [anon_sym_DASH_DASH] = ACTIONS(7278), + [anon_sym_final] = ACTIONS(7280), + [anon_sym_COLON_COLON] = ACTIONS(7278), + [anon_sym_GT2] = ACTIONS(7278), + [anon_sym_EQ_EQ] = ACTIONS(7278), + [anon_sym_PIPE] = ACTIONS(7280), + [anon_sym_LT] = ACTIONS(7280), + [anon_sym_AMP] = ACTIONS(7280), + [anon_sym_static] = ACTIONS(7280), + [anon_sym_volatile] = ACTIONS(7280), + [anon_sym_PLUS] = ACTIONS(7280), + [anon_sym_GT_EQ] = ACTIONS(7280), + [anon_sym_STAR] = ACTIONS(7278), + [anon_sym_SLASH] = ACTIONS(7280), + [anon_sym_override] = ACTIONS(7280), + [anon_sym_explicit] = ACTIONS(7280), + [sym_identifier] = ACTIONS(7280), + [sym_operator_name] = ACTIONS(7278), + [sym_noexcept] = ACTIONS(7280), + [anon_sym_CARET] = ACTIONS(7278), + [anon_sym_GT] = ACTIONS(7280), + [anon_sym_COMMA] = ACTIONS(7278), + [anon_sym_register] = ACTIONS(7280), + [anon_sym__Atomic] = ACTIONS(7280), + [anon_sym_const] = ACTIONS(7280), + [anon_sym_extern] = ACTIONS(7280), + [anon_sym_LBRACK] = ACTIONS(7278), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_DOT] = ACTIONS(7278), + [anon_sym_LT_LT] = ACTIONS(7278), + [anon_sym_constexpr] = ACTIONS(7280), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7278), + [anon_sym_QMARK] = ACTIONS(7278), + [anon_sym_TILDE] = ACTIONS(7278), + [anon_sym_LT_EQ] = ACTIONS(7278), + [anon_sym_BANG_EQ] = ACTIONS(7278), + [anon_sym_AMP_AMP] = ACTIONS(7278), + [anon_sym_inline] = ACTIONS(7280), + [anon_sym_EQ] = ACTIONS(7280), + [anon_sym_restrict] = ACTIONS(7280), + [anon_sym_GT_GT] = ACTIONS(7280), + [anon_sym_DASH_GT] = ACTIONS(7278), }, - [3871] = { - [anon_sym_LPAREN2] = ACTIONS(7465), - [anon_sym_DASH] = ACTIONS(7467), - [anon_sym_PLUS_PLUS] = ACTIONS(7465), - [anon_sym_LBRACE] = ACTIONS(7465), - [anon_sym_mutable] = ACTIONS(7467), - [anon_sym_DASH_DASH] = ACTIONS(7465), - [anon_sym_final] = ACTIONS(7467), - [anon_sym_COLON_COLON] = ACTIONS(7465), - [anon_sym_GT2] = ACTIONS(7465), - [anon_sym_EQ_EQ] = ACTIONS(7465), - [anon_sym_PIPE] = ACTIONS(7467), - [anon_sym_LT] = ACTIONS(7467), - [anon_sym_AMP] = ACTIONS(7467), - [anon_sym_static] = ACTIONS(7467), - [anon_sym_volatile] = ACTIONS(7467), - [anon_sym_PLUS] = ACTIONS(7467), - [anon_sym_GT_EQ] = ACTIONS(7467), - [anon_sym_STAR] = ACTIONS(7465), - [anon_sym_SLASH] = ACTIONS(7467), - [anon_sym_override] = ACTIONS(7467), - [anon_sym_explicit] = ACTIONS(7467), - [sym_identifier] = ACTIONS(7467), - [sym_operator_name] = ACTIONS(7465), - [sym_noexcept] = ACTIONS(7467), - [anon_sym_CARET] = ACTIONS(7465), - [anon_sym_GT] = ACTIONS(7467), - [anon_sym_COMMA] = ACTIONS(7465), - [anon_sym_register] = ACTIONS(7467), - [anon_sym__Atomic] = ACTIONS(7467), - [anon_sym_const] = ACTIONS(7467), - [anon_sym_extern] = ACTIONS(7467), - [anon_sym_LBRACK] = ACTIONS(7465), - [anon_sym_PIPE_PIPE] = ACTIONS(7465), - [anon_sym_DOT] = ACTIONS(7465), - [anon_sym_LT_LT] = ACTIONS(7465), - [anon_sym_constexpr] = ACTIONS(7467), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7465), - [anon_sym_QMARK] = ACTIONS(7465), - [anon_sym_TILDE] = ACTIONS(7465), - [anon_sym_LT_EQ] = ACTIONS(7465), - [anon_sym_BANG_EQ] = ACTIONS(7465), - [anon_sym_AMP_AMP] = ACTIONS(7465), - [anon_sym_inline] = ACTIONS(7467), - [anon_sym_EQ] = ACTIONS(7467), - [anon_sym_restrict] = ACTIONS(7467), - [anon_sym_GT_GT] = ACTIONS(7467), - [anon_sym_DASH_GT] = ACTIONS(7465), + [3845] = { + [anon_sym_LPAREN2] = ACTIONS(7446), + [anon_sym_DASH] = ACTIONS(7448), + [anon_sym_PLUS_PLUS] = ACTIONS(7446), + [anon_sym_LBRACE] = ACTIONS(7446), + [anon_sym_mutable] = ACTIONS(7448), + [anon_sym_DASH_DASH] = ACTIONS(7446), + [anon_sym_final] = ACTIONS(7448), + [anon_sym_COLON_COLON] = ACTIONS(7446), + [anon_sym_GT2] = ACTIONS(7446), + [anon_sym_EQ_EQ] = ACTIONS(7446), + [anon_sym_PIPE] = ACTIONS(7448), + [anon_sym_LT] = ACTIONS(7448), + [anon_sym_AMP] = ACTIONS(7448), + [anon_sym_static] = ACTIONS(7448), + [anon_sym_volatile] = ACTIONS(7448), + [anon_sym_PLUS] = ACTIONS(7448), + [anon_sym_GT_EQ] = ACTIONS(7448), + [anon_sym_STAR] = ACTIONS(7446), + [anon_sym_SLASH] = ACTIONS(7448), + [anon_sym_override] = ACTIONS(7448), + [anon_sym_explicit] = ACTIONS(7448), + [sym_identifier] = ACTIONS(7448), + [sym_operator_name] = ACTIONS(7446), + [sym_noexcept] = ACTIONS(7448), + [anon_sym_CARET] = ACTIONS(7446), + [anon_sym_GT] = ACTIONS(7448), + [anon_sym_COMMA] = ACTIONS(7446), + [anon_sym_register] = ACTIONS(7448), + [anon_sym__Atomic] = ACTIONS(7448), + [anon_sym_const] = ACTIONS(7448), + [anon_sym_extern] = ACTIONS(7448), + [anon_sym_LBRACK] = ACTIONS(7446), + [anon_sym_PIPE_PIPE] = ACTIONS(7446), + [anon_sym_DOT] = ACTIONS(7446), + [anon_sym_LT_LT] = ACTIONS(7446), + [anon_sym_constexpr] = ACTIONS(7448), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7446), + [anon_sym_QMARK] = ACTIONS(7446), + [anon_sym_TILDE] = ACTIONS(7446), + [anon_sym_LT_EQ] = ACTIONS(7446), + [anon_sym_BANG_EQ] = ACTIONS(7446), + [anon_sym_AMP_AMP] = ACTIONS(7446), + [anon_sym_inline] = ACTIONS(7448), + [anon_sym_EQ] = ACTIONS(7448), + [anon_sym_restrict] = ACTIONS(7448), + [anon_sym_GT_GT] = ACTIONS(7448), + [anon_sym_DASH_GT] = ACTIONS(7446), }, - [3872] = { - [sym_argument_list] = STATE(1165), + [3846] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(7469), + [anon_sym_COMMA] = ACTIONS(7450), [anon_sym_PIPE_PIPE] = ACTIONS(2305), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), @@ -157940,9 +157432,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(7469), + [anon_sym_GT2] = ACTIONS(7450), [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(7469), + [anon_sym_QMARK] = ACTIONS(7450), [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_GT_EQ] = ACTIONS(2299), @@ -157956,1427 +157448,1429 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [3873] = { - [sym_argument_list] = STATE(1165), + [3847] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_STAR_EQ] = ACTIONS(4983), - [anon_sym_LT_LT_EQ] = ACTIONS(4983), - [anon_sym_PERCENT_EQ] = ACTIONS(4983), - [anon_sym_GT2] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_CARET_EQ] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_SLASH_EQ] = ACTIONS(4983), - [anon_sym_PLUS_EQ] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_PIPE_EQ] = ACTIONS(4983), - [anon_sym_GT_GT_EQ] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_STAR_EQ] = ACTIONS(4979), + [anon_sym_LT_LT_EQ] = ACTIONS(4979), + [anon_sym_PERCENT_EQ] = ACTIONS(4979), + [anon_sym_GT2] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_CARET_EQ] = ACTIONS(4979), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_SLASH_EQ] = ACTIONS(4979), + [anon_sym_PLUS_EQ] = ACTIONS(4979), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_PIPE_EQ] = ACTIONS(4979), + [anon_sym_GT_GT_EQ] = ACTIONS(4977), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4977), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(4981), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_DASH_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_AMP_EQ] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), + [anon_sym_PERCENT] = ACTIONS(4977), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_DASH_EQ] = ACTIONS(4979), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_AMP_EQ] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3874] = { - [anon_sym_LPAREN2] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR_EQ] = ACTIONS(4985), - [anon_sym_LT_LT_EQ] = ACTIONS(4985), - [anon_sym_PERCENT_EQ] = ACTIONS(4985), - [anon_sym_GT2] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_CARET_EQ] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_SLASH_EQ] = ACTIONS(4985), - [anon_sym_PLUS_EQ] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_PIPE_EQ] = ACTIONS(4985), - [anon_sym_GT_GT_EQ] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4987), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4985), - [anon_sym_DASH_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_AMP_EQ] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_GT_GT] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4985), + [3848] = { + [anon_sym_LPAREN2] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR_EQ] = ACTIONS(4981), + [anon_sym_LT_LT_EQ] = ACTIONS(4981), + [anon_sym_PERCENT_EQ] = ACTIONS(4981), + [anon_sym_GT2] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_CARET_EQ] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_SLASH_EQ] = ACTIONS(4981), + [anon_sym_PLUS_EQ] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_PIPE_EQ] = ACTIONS(4981), + [anon_sym_GT_GT_EQ] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4983), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4981), + [anon_sym_DASH_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_AMP_EQ] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4983), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4981), }, - [3875] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(4350), - [sym_logical_expression] = STATE(4350), - [sym_bitwise_expression] = STATE(4350), - [sym_cast_expression] = STATE(4350), - [sym_new_expression] = STATE(4350), - [sym_field_expression] = STATE(4350), - [sym_compound_literal_expression] = STATE(4350), - [sym_char_literal] = STATE(4350), - [sym_template_function] = STATE(4350), - [sym_conditional_expression] = STATE(4350), - [sym_equality_expression] = STATE(4350), - [sym_relational_expression] = STATE(4350), - [sym_delete_expression] = STATE(4350), - [sym_sizeof_expression] = STATE(4350), - [sym_parenthesized_expression] = STATE(4350), - [sym_lambda_expression] = STATE(4350), - [sym_concatenated_string] = STATE(4350), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(4350), - [sym_assignment_expression] = STATE(4350), - [sym_pointer_expression] = STATE(4350), - [sym_shift_expression] = STATE(4350), - [sym_math_expression] = STATE(4350), - [sym_call_expression] = STATE(4350), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9484), - [anon_sym_DASH] = ACTIONS(2212), - [sym_true] = ACTIONS(9486), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [sym_null] = ACTIONS(9486), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(9484), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9486), - [sym_nullptr] = ACTIONS(9486), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), + [3849] = { + [sym_template_function] = STATE(4322), + [sym__expression] = STATE(4322), + [sym_logical_expression] = STATE(4322), + [sym_bitwise_expression] = STATE(4322), + [sym_cast_expression] = STATE(4322), + [sym_delete_expression] = STATE(4322), + [sym_field_expression] = STATE(4322), + [sym_compound_literal_expression] = STATE(4322), + [sym_lambda_expression] = STATE(4322), + [sym_char_literal] = STATE(4322), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(4322), + [sym_equality_expression] = STATE(4322), + [sym_relational_expression] = STATE(4322), + [sym_sizeof_expression] = STATE(4322), + [sym_subscript_expression] = STATE(4322), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(4322), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(4322), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(4322), + [sym_pointer_expression] = STATE(4322), + [sym_shift_expression] = STATE(4322), + [sym_math_expression] = STATE(4322), + [sym_call_expression] = STATE(4322), + [sym_new_expression] = STATE(4322), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9452), + [anon_sym_DASH] = ACTIONS(2214), + [sym_true] = ACTIONS(9454), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_null] = ACTIONS(9454), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(9452), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9454), + [sym_nullptr] = ACTIONS(9454), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), }, - [3876] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(3873), - [sym_logical_expression] = STATE(3873), - [sym_bitwise_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_new_expression] = STATE(3873), - [sym_field_expression] = STATE(3873), - [sym_compound_literal_expression] = STATE(3873), - [sym_char_literal] = STATE(3873), - [sym_template_function] = STATE(3873), - [sym_conditional_expression] = STATE(3873), - [sym_equality_expression] = STATE(3873), - [sym_relational_expression] = STATE(3873), - [sym_delete_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_parenthesized_expression] = STATE(3873), - [sym_initializer_list] = STATE(3874), - [sym_concatenated_string] = STATE(3873), - [sym_string_literal] = STATE(1106), - [sym_lambda_expression] = STATE(3873), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3873), - [sym_pointer_expression] = STATE(3873), - [sym_shift_expression] = STATE(3873), - [sym_math_expression] = STATE(3873), - [sym_call_expression] = STATE(3873), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [anon_sym_LPAREN2] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2212), - [sym_raw_string_literal] = ACTIONS(8393), - [sym_true] = ACTIONS(8395), - [anon_sym_SQUOTE] = ACTIONS(2234), - [sym_null] = ACTIONS(8395), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_GT2] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(9488), - [anon_sym_AMP] = ACTIONS(8441), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_GT_EQ] = ACTIONS(4129), - [anon_sym_STAR] = ACTIONS(8441), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(2228), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4129), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_number_literal] = ACTIONS(8393), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(8395), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(8395), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [3850] = { + [sym_template_function] = STATE(3847), + [sym__expression] = STATE(3847), + [sym_logical_expression] = STATE(3847), + [sym_bitwise_expression] = STATE(3847), + [sym_cast_expression] = STATE(3847), + [sym_delete_expression] = STATE(3847), + [sym_field_expression] = STATE(3847), + [sym_compound_literal_expression] = STATE(3847), + [sym_lambda_expression] = STATE(3847), + [sym_char_literal] = STATE(3847), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(3847), + [sym_equality_expression] = STATE(3847), + [sym_relational_expression] = STATE(3847), + [sym_sizeof_expression] = STATE(3847), + [sym_subscript_expression] = STATE(3847), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_initializer_list] = STATE(3848), + [sym_parenthesized_expression] = STATE(3847), + [sym_string_literal] = STATE(1102), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_concatenated_string] = STATE(3847), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(3847), + [sym_pointer_expression] = STATE(3847), + [sym_shift_expression] = STATE(3847), + [sym_math_expression] = STATE(3847), + [sym_call_expression] = STATE(3847), + [sym_new_expression] = STATE(3847), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2214), + [sym_raw_string_literal] = ACTIONS(8365), + [sym_true] = ACTIONS(8367), + [anon_sym_SQUOTE] = ACTIONS(2236), + [sym_null] = ACTIONS(8367), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_GT2] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(9456), + [anon_sym_AMP] = ACTIONS(8413), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(4245), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(8413), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(2230), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_number_literal] = ACTIONS(8365), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(8367), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(8367), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(2234), }, - [3877] = { - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_STAR_EQ] = ACTIONS(4384), - [anon_sym_LT_LT_EQ] = ACTIONS(4384), - [anon_sym_PERCENT_EQ] = ACTIONS(4384), - [anon_sym_GT2] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_PIPE] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4386), - [anon_sym_CARET_EQ] = ACTIONS(4384), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_STAR] = ACTIONS(4386), - [anon_sym_SLASH] = ACTIONS(4386), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_COLON] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4384), - [anon_sym_PLUS_EQ] = ACTIONS(4384), - [anon_sym_CARET] = ACTIONS(4386), - [anon_sym_GT] = ACTIONS(4386), - [anon_sym_PIPE_EQ] = ACTIONS(4384), - [anon_sym_GT_GT_EQ] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4384), - [anon_sym_PIPE_PIPE] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_LT_LT] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_DASH_EQ] = ACTIONS(4384), - [anon_sym_LT_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_AMP_EQ] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_DASH_GT] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_GT_GT] = ACTIONS(4386), + [3851] = { + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_DASH_DASH] = ACTIONS(4378), + [anon_sym_final] = ACTIONS(4378), + [anon_sym_STAR_EQ] = ACTIONS(4378), + [anon_sym_LT_LT_EQ] = ACTIONS(4378), + [anon_sym_PERCENT_EQ] = ACTIONS(4378), + [anon_sym_GT2] = ACTIONS(4378), + [anon_sym_COLON_COLON] = ACTIONS(4378), + [anon_sym_EQ_EQ] = ACTIONS(4378), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4380), + [anon_sym_CARET_EQ] = ACTIONS(4378), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_GT_EQ] = ACTIONS(4380), + [anon_sym_STAR] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_override] = ACTIONS(4378), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_SLASH_EQ] = ACTIONS(4378), + [anon_sym_PLUS_EQ] = ACTIONS(4378), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_GT] = ACTIONS(4380), + [anon_sym_PIPE_EQ] = ACTIONS(4378), + [anon_sym_GT_GT_EQ] = ACTIONS(4380), + [anon_sym_COMMA] = ACTIONS(4378), + [anon_sym_PIPE_PIPE] = ACTIONS(4378), + [anon_sym_DOT] = ACTIONS(4378), + [anon_sym_LT_LT] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4378), + [anon_sym_PERCENT] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4378), + [anon_sym_DASH_EQ] = ACTIONS(4378), + [anon_sym_LT_EQ] = ACTIONS(4378), + [anon_sym_BANG_EQ] = ACTIONS(4378), + [anon_sym_AMP_EQ] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_DASH_GT] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4378), + [anon_sym_LBRACE] = ACTIONS(4378), + [anon_sym_GT_GT] = ACTIONS(4380), }, - [3878] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [3852] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(9490), + [anon_sym_GT2] = ACTIONS(9458), [sym_comment] = ACTIONS(3), }, - [3879] = { - [anon_sym_LPAREN2] = ACTIONS(4402), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_final] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_LT_LT_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_GT2] = ACTIONS(4402), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4402), - [anon_sym_PIPE] = ACTIONS(4404), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_CARET_EQ] = ACTIONS(4402), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_GT_EQ] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4402), - [anon_sym_COLON] = ACTIONS(4404), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_CARET] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_PIPE_EQ] = ACTIONS(4402), - [anon_sym_GT_GT_EQ] = ACTIONS(4404), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_DOT] = ACTIONS(4402), - [anon_sym_LT_LT] = ACTIONS(4404), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_PERCENT] = ACTIONS(4404), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4402), - [anon_sym_AMP_EQ] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_GT_GT] = ACTIONS(4404), + [3853] = { + [anon_sym_LPAREN2] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_LT_LT_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_GT2] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_PIPE] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_CARET_EQ] = ACTIONS(4396), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4398), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_COLON] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_CARET] = ACTIONS(4398), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_PIPE_EQ] = ACTIONS(4396), + [anon_sym_GT_GT_EQ] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_LT_LT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4398), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_AMP_EQ] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_GT_GT] = ACTIONS(4398), }, - [3880] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), + [3854] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(9492), + [anon_sym_GT2] = ACTIONS(9460), [sym_comment] = ACTIONS(3), }, - [3881] = { - [anon_sym_LPAREN2] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_LT_LT_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_GT2] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_CARET_EQ] = ACTIONS(4431), - [anon_sym_AMP] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_PIPE_EQ] = ACTIONS(4431), - [anon_sym_GT_GT_EQ] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4433), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_AMP_EQ] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4431), + [3855] = { + [anon_sym_LPAREN2] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_STAR_EQ] = ACTIONS(4429), + [anon_sym_LT_LT_EQ] = ACTIONS(4429), + [anon_sym_PERCENT_EQ] = ACTIONS(4429), + [anon_sym_GT2] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4429), + [anon_sym_PIPE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4431), + [anon_sym_CARET_EQ] = ACTIONS(4429), + [anon_sym_AMP] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_SLASH] = ACTIONS(4431), + [anon_sym_SLASH_EQ] = ACTIONS(4429), + [anon_sym_PLUS_EQ] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4431), + [anon_sym_GT] = ACTIONS(4431), + [anon_sym_PIPE_EQ] = ACTIONS(4429), + [anon_sym_GT_GT_EQ] = ACTIONS(4431), + [anon_sym_COMMA] = ACTIONS(4429), + [anon_sym_PIPE_PIPE] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_LT_LT] = ACTIONS(4431), + [anon_sym_LBRACK] = ACTIONS(4429), + [anon_sym_PERCENT] = ACTIONS(4431), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_DASH_EQ] = ACTIONS(4429), + [anon_sym_LT_EQ] = ACTIONS(4429), + [anon_sym_BANG_EQ] = ACTIONS(4429), + [anon_sym_AMP_EQ] = ACTIONS(4429), + [anon_sym_AMP_AMP] = ACTIONS(4429), + [anon_sym_DASH_GT] = ACTIONS(4429), + [anon_sym_EQ] = ACTIONS(4431), + [anon_sym_PLUS_PLUS] = ACTIONS(4429), + [anon_sym_GT_GT] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4429), }, - [3882] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [3856] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(9494), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(9462), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [3883] = { - [aux_sym_initializer_list_repeat1] = STATE(2268), + [3857] = { + [aux_sym_initializer_list_repeat1] = STATE(2257), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(9496), - [anon_sym_RBRACE] = ACTIONS(9494), + [anon_sym_COMMA] = ACTIONS(9464), + [anon_sym_RBRACE] = ACTIONS(9462), }, - [3884] = { - [sym_field_declaration_list] = STATE(4355), - [sym_base_class_clause] = STATE(4356), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(6655), + [3858] = { + [sym_field_declaration_list] = STATE(4327), + [sym_base_class_clause] = STATE(4328), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3885] = { - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_STAR_EQ] = ACTIONS(2851), - [anon_sym_LT_LT_EQ] = ACTIONS(2851), - [anon_sym_PERCENT_EQ] = ACTIONS(2851), - [anon_sym_GT2] = ACTIONS(2851), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_CARET_EQ] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_GT_EQ] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_SLASH_EQ] = ACTIONS(2851), - [anon_sym_PLUS_EQ] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2853), - [anon_sym_GT] = ACTIONS(2853), - [anon_sym_PIPE_EQ] = ACTIONS(2851), - [anon_sym_GT_GT_EQ] = ACTIONS(2853), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_LT_LT] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_PERCENT] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_DASH_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_AMP_EQ] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_DASH_GT] = ACTIONS(2851), - [anon_sym_EQ] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_GT_GT] = ACTIONS(2853), + [3859] = { + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_STAR_EQ] = ACTIONS(2853), + [anon_sym_LT_LT_EQ] = ACTIONS(2853), + [anon_sym_PERCENT_EQ] = ACTIONS(2853), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_EQ_EQ] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_CARET_EQ] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_SLASH_EQ] = ACTIONS(2853), + [anon_sym_PLUS_EQ] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_PIPE_EQ] = ACTIONS(2853), + [anon_sym_GT_GT_EQ] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2853), + [anon_sym_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_DOT] = ACTIONS(2853), + [anon_sym_LT_LT] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_PERCENT] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2853), + [anon_sym_DASH_EQ] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(2853), + [anon_sym_AMP_EQ] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_DASH_GT] = ACTIONS(2853), + [anon_sym_EQ] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_GT_GT] = ACTIONS(2855), }, - [3886] = { - [sym_field_declaration_list] = STATE(4355), - [anon_sym_LBRACE] = ACTIONS(6655), + [3860] = { + [sym_field_declaration_list] = STATE(4327), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3887] = { - [anon_sym_LPAREN2] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_STAR_EQ] = ACTIONS(2867), - [anon_sym_LT_LT_EQ] = ACTIONS(2867), - [anon_sym_PERCENT_EQ] = ACTIONS(2867), - [anon_sym_GT2] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_CARET_EQ] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_SLASH_EQ] = ACTIONS(2867), - [anon_sym_PLUS_EQ] = ACTIONS(2867), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_PIPE_EQ] = ACTIONS(2867), - [anon_sym_GT_GT_EQ] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_PERCENT] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_DASH_EQ] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_AMP_EQ] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_DASH_GT] = ACTIONS(2867), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_GT_GT] = ACTIONS(2869), + [3861] = { + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_STAR_EQ] = ACTIONS(2869), + [anon_sym_LT_LT_EQ] = ACTIONS(2869), + [anon_sym_PERCENT_EQ] = ACTIONS(2869), + [anon_sym_GT2] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_CARET_EQ] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_SLASH_EQ] = ACTIONS(2869), + [anon_sym_PLUS_EQ] = ACTIONS(2869), + [anon_sym_CARET] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_PIPE_EQ] = ACTIONS(2869), + [anon_sym_GT_GT_EQ] = ACTIONS(2871), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_PERCENT] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2869), + [anon_sym_DASH_EQ] = ACTIONS(2869), + [anon_sym_LT_EQ] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), + [anon_sym_AMP_EQ] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_DASH_GT] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_GT_GT] = ACTIONS(2871), }, - [3888] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(1472), - [sym_preproc_function_def] = STATE(1472), - [sym_alias_declaration] = STATE(1472), + [3862] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(1448), + [sym_preproc_function_def] = STATE(1448), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(615), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(615), - [sym_storage_class_specifier] = STATE(615), - [sym_type_qualifier] = STATE(615), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(1472), - [sym_preproc_if_in_field_declaration_list] = STATE(1472), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1472), - [sym_type_definition] = STATE(1472), - [sym__declaration_specifiers] = STATE(616), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(617), - [aux_sym_function_definition_repeat1] = STATE(618), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(1472), - [sym__field_declaration_list_item] = STATE(1472), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1472), - [sym_inline_method_definition] = STATE(1472), - [sym_friend_declaration] = STATE(1472), - [sym_access_specifier] = STATE(1472), - [sym_using_declaration] = STATE(1472), - [sym_attribute] = STATE(618), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(1472), - [sym_constructor_or_destructor_definition] = STATE(1472), - [sym_constructor_or_destructor_declaration] = STATE(1472), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1448), + [sym_storage_class_specifier] = STATE(623), + [sym_type_qualifier] = STATE(623), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(1448), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(1448), + [sym_preproc_if_in_field_declaration_list] = STATE(1448), + [sym_attribute] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1448), + [sym_type_definition] = STATE(1448), + [sym_using_declaration] = STATE(1448), + [sym__declaration_specifiers] = STATE(617), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(619), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(1448), + [sym_inline_method_definition] = STATE(1448), + [sym_constructor_or_destructor_definition] = STATE(1448), + [sym_access_specifier] = STATE(1448), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(1448), + [sym_alias_declaration] = STATE(1448), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(623), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(1448), + [sym_constructor_or_destructor_declaration] = STATE(1448), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(9498), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(9466), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1108), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1112), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_protected] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(1118), - [anon_sym_template] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(308), + [anon_sym_friend] = ACTIONS(1124), + [anon_sym_template] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1128), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [anon_sym_restrict] = ACTIONS(11), }, - [3889] = { - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_STAR_EQ] = ACTIONS(2917), - [anon_sym_LT_LT_EQ] = ACTIONS(2917), - [anon_sym_PERCENT_EQ] = ACTIONS(2917), - [anon_sym_GT2] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_CARET_EQ] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_SLASH_EQ] = ACTIONS(2917), - [anon_sym_PLUS_EQ] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_PIPE_EQ] = ACTIONS(2917), - [anon_sym_GT_GT_EQ] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_DASH_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_AMP_EQ] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2919), - }, - [3890] = { - [sym_field_declaration_list] = STATE(4358), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), - }, - [3891] = { - [sym_field_declaration_list] = STATE(4358), - [sym_base_class_clause] = STATE(4359), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), - }, - [3892] = { - [sym_field_declaration_list] = STATE(4360), - [sym_base_class_clause] = STATE(4361), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(6655), + [3863] = { + [sym_field_declaration_list] = STATE(4330), + [sym_base_class_clause] = STATE(4331), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3893] = { - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_LT_LT_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_GT2] = ACTIONS(3107), - [anon_sym_EQ_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_CARET_EQ] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_PIPE_EQ] = ACTIONS(3107), - [anon_sym_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_PIPE_PIPE] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_PERCENT] = ACTIONS(3109), + [3864] = { + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_STAR_EQ] = ACTIONS(2919), + [anon_sym_LT_LT_EQ] = ACTIONS(2919), + [anon_sym_PERCENT_EQ] = ACTIONS(2919), + [anon_sym_GT2] = ACTIONS(2919), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_CARET_EQ] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_SLASH_EQ] = ACTIONS(2919), + [anon_sym_PLUS_EQ] = ACTIONS(2919), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_PIPE_EQ] = ACTIONS(2919), + [anon_sym_GT_GT_EQ] = ACTIONS(2921), + [anon_sym_COMMA] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_PERCENT] = ACTIONS(2921), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3107), - [anon_sym_AMP_EQ] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_DASH_GT] = ACTIONS(3107), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(2919), + [anon_sym_DASH_EQ] = ACTIONS(2919), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_AMP_EQ] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_DASH_GT] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_GT_GT] = ACTIONS(2921), }, - [3894] = { - [sym_field_declaration_list] = STATE(4360), - [anon_sym_LBRACE] = ACTIONS(6655), + [3865] = { + [sym_field_declaration_list] = STATE(4330), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3895] = { - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_LT_LT_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_GT2] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_CARET_EQ] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_PIPE_EQ] = ACTIONS(3111), - [anon_sym_GT_GT_EQ] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3111), - [anon_sym_LT_LT] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_PERCENT] = ACTIONS(3113), + [3866] = { + [sym_field_declaration_list] = STATE(4332), + [sym_base_class_clause] = STATE(4333), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3111), - [anon_sym_AMP_EQ] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_DASH_GT] = ACTIONS(3111), - [anon_sym_EQ] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3113), }, - [3896] = { - [sym_field_declaration_list] = STATE(4362), - [anon_sym_LBRACE] = ACTIONS(6655), + [3867] = { + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_LT_LT_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_GT2] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_CARET_EQ] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_GT_EQ] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_CARET] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_PIPE_EQ] = ACTIONS(3109), + [anon_sym_GT_GT_EQ] = ACTIONS(3111), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT_LT] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3111), [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3109), + [anon_sym_AMP_EQ] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_DASH_GT] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(3111), }, - [3897] = { - [sym_field_declaration_list] = STATE(4362), - [sym_base_class_clause] = STATE(4363), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(6655), + [3868] = { + [sym_field_declaration_list] = STATE(4332), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3898] = { - [anon_sym_LPAREN2] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_final] = ACTIONS(2169), - [anon_sym_STAR_EQ] = ACTIONS(2169), - [anon_sym_LT_LT_EQ] = ACTIONS(2169), - [anon_sym_PERCENT_EQ] = ACTIONS(2169), - [anon_sym_GT2] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_CARET_EQ] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_override] = ACTIONS(2169), - [anon_sym_COLON] = ACTIONS(2171), - [anon_sym_SLASH_EQ] = ACTIONS(2169), - [anon_sym_PLUS_EQ] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_PIPE_EQ] = ACTIONS(2169), - [anon_sym_GT_GT_EQ] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_PERCENT] = ACTIONS(2171), + [3869] = { + [sym_field_declaration_list] = STATE(4334), + [sym_base_class_clause] = STATE(4335), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_DASH_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_AMP_EQ] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_DASH_GT] = ACTIONS(2169), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2171), }, - [3899] = { + [3870] = { + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_LT_LT_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_GT2] = ACTIONS(3113), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3115), + [anon_sym_CARET_EQ] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_SLASH] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_CARET] = ACTIONS(3115), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_PIPE_EQ] = ACTIONS(3113), + [anon_sym_GT_GT_EQ] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT_LT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3115), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_AMP_EQ] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_DASH_GT] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_GT_GT] = ACTIONS(3115), }, - [3900] = { - [anon_sym_LPAREN2] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_STAR_EQ] = ACTIONS(2579), - [anon_sym_LT_LT_EQ] = ACTIONS(2579), - [anon_sym_PERCENT_EQ] = ACTIONS(2579), - [anon_sym_GT2] = ACTIONS(2579), - [anon_sym_EQ_EQ] = ACTIONS(2579), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_CARET_EQ] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2581), - [anon_sym_SLASH_EQ] = ACTIONS(2579), - [anon_sym_PLUS_EQ] = ACTIONS(2579), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_GT] = ACTIONS(2581), - [anon_sym_PIPE_EQ] = ACTIONS(2579), - [anon_sym_GT_GT_EQ] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2581), + [3871] = { + [sym_field_declaration_list] = STATE(4334), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_DASH_EQ] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2579), - [anon_sym_AMP_EQ] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_GT_GT] = ACTIONS(2581), }, - [3901] = { - [aux_sym_enumerator_list_repeat1] = STATE(4366), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(9502), - [anon_sym_RBRACE] = ACTIONS(9500), + [3872] = { + [anon_sym_LPAREN2] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_final] = ACTIONS(2171), + [anon_sym_STAR_EQ] = ACTIONS(2171), + [anon_sym_LT_LT_EQ] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(2171), + [anon_sym_GT2] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_CARET_EQ] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_SLASH_EQ] = ACTIONS(2171), + [anon_sym_PLUS_EQ] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE_EQ] = ACTIONS(2171), + [anon_sym_GT_GT_EQ] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_DASH_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_AMP_EQ] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_DASH_GT] = ACTIONS(2171), + [anon_sym_EQ] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2173), }, - [3902] = { - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_STAR_EQ] = ACTIONS(2585), - [anon_sym_LT_LT_EQ] = ACTIONS(2585), - [anon_sym_PERCENT_EQ] = ACTIONS(2585), - [anon_sym_GT2] = ACTIONS(2585), - [anon_sym_EQ_EQ] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2587), - [anon_sym_CARET_EQ] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_GT_EQ] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2587), - [anon_sym_SLASH] = ACTIONS(2587), - [anon_sym_SLASH_EQ] = ACTIONS(2585), - [anon_sym_PLUS_EQ] = ACTIONS(2585), - [anon_sym_CARET] = ACTIONS(2587), - [anon_sym_GT] = ACTIONS(2587), - [anon_sym_PIPE_EQ] = ACTIONS(2585), - [anon_sym_GT_GT_EQ] = ACTIONS(2587), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2587), + [3873] = { [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_DASH_EQ] = ACTIONS(2585), - [anon_sym_LT_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_AMP_EQ] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_DASH_GT] = ACTIONS(2585), - [anon_sym_EQ] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_GT_GT] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(9468), }, - [3903] = { - [sym_field_declaration_list] = STATE(4367), - [sym_base_class_clause] = STATE(4368), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(6655), + [3874] = { + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_STAR_EQ] = ACTIONS(2581), + [anon_sym_LT_LT_EQ] = ACTIONS(2581), + [anon_sym_PERCENT_EQ] = ACTIONS(2581), + [anon_sym_GT2] = ACTIONS(2581), + [anon_sym_EQ_EQ] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_CARET_EQ] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_SLASH_EQ] = ACTIONS(2581), + [anon_sym_PLUS_EQ] = ACTIONS(2581), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_PIPE_EQ] = ACTIONS(2581), + [anon_sym_GT_GT_EQ] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2581), + [anon_sym_PIPE_PIPE] = ACTIONS(2581), + [anon_sym_DOT] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_PERCENT] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2581), + [anon_sym_DASH_EQ] = ACTIONS(2581), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_BANG_EQ] = ACTIONS(2581), + [anon_sym_AMP_EQ] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_DASH_GT] = ACTIONS(2581), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_GT_GT] = ACTIONS(2583), + }, + [3875] = { + [aux_sym_enumerator_list_repeat1] = STATE(4338), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(9470), + [anon_sym_RBRACE] = ACTIONS(9468), }, - [3904] = { - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_STAR_EQ] = ACTIONS(3414), - [anon_sym_LT_LT_EQ] = ACTIONS(3414), - [anon_sym_PERCENT_EQ] = ACTIONS(3414), - [anon_sym_GT2] = ACTIONS(3414), - [anon_sym_EQ_EQ] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_CARET_EQ] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_GT_EQ] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_SLASH_EQ] = ACTIONS(3414), - [anon_sym_PLUS_EQ] = ACTIONS(3414), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_GT] = ACTIONS(3416), - [anon_sym_PIPE_EQ] = ACTIONS(3414), - [anon_sym_GT_GT_EQ] = ACTIONS(3416), - [anon_sym_COMMA] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_DOT] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_PERCENT] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3414), - [anon_sym_DASH_EQ] = ACTIONS(3414), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_BANG_EQ] = ACTIONS(3414), - [anon_sym_AMP_EQ] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_DASH_GT] = ACTIONS(3414), - [anon_sym_EQ] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3416), + [3876] = { + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_STAR_EQ] = ACTIONS(2587), + [anon_sym_LT_LT_EQ] = ACTIONS(2587), + [anon_sym_PERCENT_EQ] = ACTIONS(2587), + [anon_sym_GT2] = ACTIONS(2587), + [anon_sym_EQ_EQ] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_CARET_EQ] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_SLASH_EQ] = ACTIONS(2587), + [anon_sym_PLUS_EQ] = ACTIONS(2587), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE_EQ] = ACTIONS(2587), + [anon_sym_GT_GT_EQ] = ACTIONS(2589), + [anon_sym_COMMA] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_DOT] = ACTIONS(2587), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_DASH_EQ] = ACTIONS(2587), + [anon_sym_LT_EQ] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2587), + [anon_sym_AMP_EQ] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2587), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_GT_GT] = ACTIONS(2589), }, - [3905] = { - [sym_field_declaration_list] = STATE(4367), - [anon_sym_LBRACE] = ACTIONS(6655), + [3877] = { + [sym_field_declaration_list] = STATE(4339), + [sym_base_class_clause] = STATE(4340), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3906] = { - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_STAR_EQ] = ACTIONS(3418), - [anon_sym_LT_LT_EQ] = ACTIONS(3418), - [anon_sym_PERCENT_EQ] = ACTIONS(3418), - [anon_sym_GT2] = ACTIONS(3418), - [anon_sym_EQ_EQ] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_CARET_EQ] = ACTIONS(3418), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_GT_EQ] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_SLASH_EQ] = ACTIONS(3418), - [anon_sym_PLUS_EQ] = ACTIONS(3418), - [anon_sym_CARET] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_PIPE_EQ] = ACTIONS(3418), - [anon_sym_GT_GT_EQ] = ACTIONS(3420), - [anon_sym_COMMA] = ACTIONS(3418), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_DOT] = ACTIONS(3418), - [anon_sym_LT_LT] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_PERCENT] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3418), - [anon_sym_DASH_EQ] = ACTIONS(3418), - [anon_sym_LT_EQ] = ACTIONS(3418), - [anon_sym_BANG_EQ] = ACTIONS(3418), - [anon_sym_AMP_EQ] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_DASH_GT] = ACTIONS(3418), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_GT_GT] = ACTIONS(3420), + [3878] = { + [anon_sym_LPAREN2] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_LT_LT_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_GT2] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_CARET_EQ] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3426), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_PIPE_EQ] = ACTIONS(3424), + [anon_sym_GT_GT_EQ] = ACTIONS(3426), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_PERCENT] = ACTIONS(3426), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_AMP_EQ] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_DASH_GT] = ACTIONS(3424), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3426), }, - [3907] = { - [sym_field_declaration_list] = STATE(4369), - [anon_sym_LBRACE] = ACTIONS(6655), + [3879] = { + [sym_field_declaration_list] = STATE(4339), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3908] = { - [sym_field_declaration_list] = STATE(4369), - [sym_base_class_clause] = STATE(4370), - [anon_sym_COLON] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(6655), + [3880] = { + [sym_field_declaration_list] = STATE(4341), + [sym_base_class_clause] = STATE(4342), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(6644), [sym_comment] = ACTIONS(3), }, - [3909] = { - [anon_sym_LPAREN2] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_DASH_DASH] = ACTIONS(3746), - [anon_sym_final] = ACTIONS(3746), - [anon_sym_STAR_EQ] = ACTIONS(3746), - [anon_sym_LT_LT_EQ] = ACTIONS(3746), - [anon_sym_PERCENT_EQ] = ACTIONS(3746), - [anon_sym_GT2] = ACTIONS(3746), - [anon_sym_COLON_COLON] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3746), - [anon_sym_PIPE] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(3748), - [anon_sym_CARET_EQ] = ACTIONS(3746), - [anon_sym_AMP] = ACTIONS(3748), - [anon_sym_PLUS] = ACTIONS(3748), - [anon_sym_GT_EQ] = ACTIONS(3748), - [anon_sym_STAR] = ACTIONS(3748), - [anon_sym_SLASH] = ACTIONS(3748), - [anon_sym_override] = ACTIONS(3746), - [anon_sym_COLON] = ACTIONS(3748), - [anon_sym_SLASH_EQ] = ACTIONS(3746), - [anon_sym_PLUS_EQ] = ACTIONS(3746), - [anon_sym_CARET] = ACTIONS(3748), - [anon_sym_GT] = ACTIONS(3748), - [anon_sym_PIPE_EQ] = ACTIONS(3746), - [anon_sym_GT_GT_EQ] = ACTIONS(3748), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_PIPE_PIPE] = ACTIONS(3746), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3746), - [anon_sym_PERCENT] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3746), - [anon_sym_DASH_EQ] = ACTIONS(3746), - [anon_sym_LT_EQ] = ACTIONS(3746), - [anon_sym_BANG_EQ] = ACTIONS(3746), - [anon_sym_AMP_EQ] = ACTIONS(3746), - [anon_sym_AMP_AMP] = ACTIONS(3746), - [anon_sym_DASH_GT] = ACTIONS(3746), - [anon_sym_EQ] = ACTIONS(3748), - [anon_sym_PLUS_PLUS] = ACTIONS(3746), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3748), + [3881] = { + [anon_sym_LPAREN2] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_STAR_EQ] = ACTIONS(3428), + [anon_sym_LT_LT_EQ] = ACTIONS(3428), + [anon_sym_PERCENT_EQ] = ACTIONS(3428), + [anon_sym_GT2] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_CARET_EQ] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_SLASH_EQ] = ACTIONS(3428), + [anon_sym_PLUS_EQ] = ACTIONS(3428), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_PIPE_EQ] = ACTIONS(3428), + [anon_sym_GT_GT_EQ] = ACTIONS(3430), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_LT_LT] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3430), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_DASH_EQ] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_AMP_EQ] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_DASH_GT] = ACTIONS(3428), + [anon_sym_EQ] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(3430), }, - [3910] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(9504), + [3882] = { + [sym_field_declaration_list] = STATE(4341), + [anon_sym_LBRACE] = ACTIONS(6644), + [sym_comment] = ACTIONS(3), }, - [3911] = { - [anon_sym_LPAREN2] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_STAR_EQ] = ACTIONS(5349), - [anon_sym_LT_LT_EQ] = ACTIONS(5349), - [anon_sym_PERCENT_EQ] = ACTIONS(5349), - [anon_sym_GT2] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_CARET_EQ] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5351), - [anon_sym_STAR] = ACTIONS(5351), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_SLASH_EQ] = ACTIONS(5349), - [anon_sym_PLUS_EQ] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_PIPE_EQ] = ACTIONS(5349), - [anon_sym_GT_GT_EQ] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_DASH_EQ] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), + [3883] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9472), }, - [3912] = { - [sym_argument_list] = STATE(4372), - [sym_initializer_list] = STATE(4372), + [3884] = { + [anon_sym_LPAREN2] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_PERCENT_EQ] = ACTIONS(5348), + [anon_sym_GT2] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_CARET_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5350), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_PIPE_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5350), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), + }, + [3885] = { + [sym_argument_list] = STATE(4344), + [sym_initializer_list] = STATE(4344), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(4247), - [anon_sym_STAR_EQ] = ACTIONS(5349), - [anon_sym_LT_LT_EQ] = ACTIONS(5349), - [anon_sym_PERCENT_EQ] = ACTIONS(5349), - [anon_sym_GT2] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_CARET_EQ] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5351), - [anon_sym_STAR] = ACTIONS(5351), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_SLASH_EQ] = ACTIONS(5349), - [anon_sym_PLUS_EQ] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_PIPE_EQ] = ACTIONS(5349), - [anon_sym_GT_GT_EQ] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_DASH_EQ] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(4245), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_PERCENT_EQ] = ACTIONS(5348), + [anon_sym_GT2] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_CARET_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5350), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_PIPE_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5350), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), }, - [3913] = { - [sym_argument_list] = STATE(1165), + [3886] = { + [anon_sym_LPAREN2] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3857), + [anon_sym_final] = ACTIONS(3857), + [anon_sym_STAR_EQ] = ACTIONS(3857), + [anon_sym_LT_LT_EQ] = ACTIONS(3857), + [anon_sym_PERCENT_EQ] = ACTIONS(3857), + [anon_sym_GT2] = ACTIONS(3857), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_CARET_EQ] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3859), + [anon_sym_override] = ACTIONS(3857), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_SLASH_EQ] = ACTIONS(3857), + [anon_sym_PLUS_EQ] = ACTIONS(3857), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_PIPE_EQ] = ACTIONS(3857), + [anon_sym_GT_GT_EQ] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_PERCENT] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3857), + [anon_sym_DASH_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_AMP_EQ] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_DASH_GT] = ACTIONS(3857), + [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_GT_GT] = ACTIONS(3859), + }, + [3887] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_GT2] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(6695), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(6701), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(7494), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(6703), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_GT2] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(6684), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(6690), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(7475), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(6692), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(6707), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(6696), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), }, - [3914] = { - [sym_template_type] = STATE(1102), - [sym__expression] = STATE(4373), - [sym_logical_expression] = STATE(4373), - [sym_bitwise_expression] = STATE(4373), - [sym_cast_expression] = STATE(4373), - [sym_new_expression] = STATE(4373), - [sym_field_expression] = STATE(4373), - [sym_compound_literal_expression] = STATE(4373), - [sym_char_literal] = STATE(4373), - [sym_template_function] = STATE(4373), - [sym_conditional_expression] = STATE(4373), - [sym_equality_expression] = STATE(4373), - [sym_relational_expression] = STATE(4373), - [sym_delete_expression] = STATE(4373), - [sym_sizeof_expression] = STATE(4373), - [sym_parenthesized_expression] = STATE(4373), - [sym_lambda_expression] = STATE(4373), - [sym_concatenated_string] = STATE(4373), - [sym_string_literal] = STATE(1106), - [sym_scoped_identifier] = STATE(1104), - [sym_scoped_type_identifier] = STATE(1105), - [sym_subscript_expression] = STATE(4373), - [sym_assignment_expression] = STATE(4373), - [sym_pointer_expression] = STATE(4373), - [sym_shift_expression] = STATE(4373), - [sym_math_expression] = STATE(4373), - [sym_call_expression] = STATE(4373), - [sym_lambda_capture_specifier] = STATE(1107), - [sym_scoped_namespace_identifier] = STATE(1108), - [sym_raw_string_literal] = ACTIONS(9506), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [sym_true] = ACTIONS(9508), - [sym_null] = ACTIONS(9508), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym_number_literal] = ACTIONS(9506), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2222), - [sym_false] = ACTIONS(9508), - [anon_sym_AMP] = ACTIONS(718), - [sym_nullptr] = ACTIONS(9508), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_sizeof] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2232), + [3888] = { + [sym_template_function] = STATE(4345), + [sym__expression] = STATE(4345), + [sym_logical_expression] = STATE(4345), + [sym_bitwise_expression] = STATE(4345), + [sym_cast_expression] = STATE(4345), + [sym_delete_expression] = STATE(4345), + [sym_field_expression] = STATE(4345), + [sym_compound_literal_expression] = STATE(4345), + [sym_lambda_expression] = STATE(4345), + [sym_char_literal] = STATE(4345), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier] = STATE(1100), + [sym_conditional_expression] = STATE(4345), + [sym_equality_expression] = STATE(4345), + [sym_relational_expression] = STATE(4345), + [sym_sizeof_expression] = STATE(4345), + [sym_subscript_expression] = STATE(4345), + [sym_scoped_namespace_identifier] = STATE(1103), + [sym_parenthesized_expression] = STATE(4345), + [sym_lambda_capture_specifier] = STATE(1101), + [sym_string_literal] = STATE(1102), + [sym_concatenated_string] = STATE(4345), + [sym_template_type] = STATE(1104), + [sym_assignment_expression] = STATE(4345), + [sym_pointer_expression] = STATE(4345), + [sym_shift_expression] = STATE(4345), + [sym_math_expression] = STATE(4345), + [sym_call_expression] = STATE(4345), + [sym_new_expression] = STATE(4345), + [sym_raw_string_literal] = ACTIONS(9474), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [sym_true] = ACTIONS(9476), + [sym_null] = ACTIONS(9476), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_number_literal] = ACTIONS(9474), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2224), + [sym_false] = ACTIONS(9476), + [anon_sym_AMP] = ACTIONS(722), + [sym_nullptr] = ACTIONS(9476), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2234), }, - [3915] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_LT_LT_EQ] = ACTIONS(964), - [anon_sym_PERCENT_EQ] = ACTIONS(964), - [anon_sym_GT2] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_CARET_EQ] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_GT_EQ] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_CARET] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_PIPE_EQ] = ACTIONS(964), - [anon_sym_GT_GT_EQ] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_PERCENT] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_AMP_EQ] = ACTIONS(964), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_DASH_GT] = ACTIONS(964), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), + [3889] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_LT_LT_EQ] = ACTIONS(968), + [anon_sym_PERCENT_EQ] = ACTIONS(968), + [anon_sym_GT2] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(968), + [anon_sym_GT_GT_EQ] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_AMP_EQ] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_DASH_GT] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), }, - [3916] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [3890] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -159418,7 +158912,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(9510), + [anon_sym_RBRACE] = ACTIONS(9478), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -159450,603 +158944,603 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [3917] = { + [3891] = { + [anon_sym_LPAREN2] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7511), + [anon_sym_LBRACE] = ACTIONS(7511), + [anon_sym_mutable] = ACTIONS(7513), + [anon_sym_DASH_DASH] = ACTIONS(7511), + [anon_sym_final] = ACTIONS(7513), + [anon_sym_COLON_COLON] = ACTIONS(7511), + [anon_sym_GT2] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7511), + [anon_sym_PIPE] = ACTIONS(7513), + [anon_sym_LT] = ACTIONS(7513), + [anon_sym_AMP] = ACTIONS(7513), + [anon_sym_static] = ACTIONS(7513), + [anon_sym_volatile] = ACTIONS(7513), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_GT_EQ] = ACTIONS(7513), + [anon_sym_STAR] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_override] = ACTIONS(7513), + [anon_sym_explicit] = ACTIONS(7513), + [sym_identifier] = ACTIONS(7513), + [sym_operator_name] = ACTIONS(7511), + [sym_noexcept] = ACTIONS(7513), + [anon_sym_CARET] = ACTIONS(7511), + [anon_sym_GT] = ACTIONS(7513), + [anon_sym_COMMA] = ACTIONS(7511), + [anon_sym_register] = ACTIONS(7513), + [anon_sym__Atomic] = ACTIONS(7513), + [anon_sym_const] = ACTIONS(7513), + [anon_sym_extern] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7511), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7511), + [anon_sym_constexpr] = ACTIONS(7513), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_QMARK] = ACTIONS(7511), + [anon_sym_TILDE] = ACTIONS(7511), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_BANG_EQ] = ACTIONS(7511), + [anon_sym_AMP_AMP] = ACTIONS(7511), + [anon_sym_inline] = ACTIONS(7513), + [anon_sym_EQ] = ACTIONS(7513), + [anon_sym_restrict] = ACTIONS(7513), + [anon_sym_GT_GT] = ACTIONS(7513), + [anon_sym_DASH_GT] = ACTIONS(7511), + }, + [3892] = { + [anon_sym_LPAREN2] = ACTIONS(7515), + [anon_sym_DASH] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7515), + [anon_sym_LBRACE] = ACTIONS(7515), + [anon_sym_mutable] = ACTIONS(7517), + [anon_sym_DASH_DASH] = ACTIONS(7515), + [anon_sym_final] = ACTIONS(7517), + [anon_sym_COLON_COLON] = ACTIONS(7515), + [anon_sym_GT2] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7515), + [anon_sym_PIPE] = ACTIONS(7517), + [anon_sym_LT] = ACTIONS(7517), + [anon_sym_AMP] = ACTIONS(7517), + [anon_sym_static] = ACTIONS(7517), + [anon_sym_volatile] = ACTIONS(7517), + [anon_sym_PLUS] = ACTIONS(7517), + [anon_sym_GT_EQ] = ACTIONS(7517), + [anon_sym_STAR] = ACTIONS(7515), + [anon_sym_SLASH] = ACTIONS(7517), + [anon_sym_override] = ACTIONS(7517), + [anon_sym_explicit] = ACTIONS(7517), + [sym_identifier] = ACTIONS(7517), + [sym_operator_name] = ACTIONS(7515), + [sym_noexcept] = ACTIONS(7517), + [anon_sym_CARET] = ACTIONS(7515), + [anon_sym_GT] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(7515), + [anon_sym_register] = ACTIONS(7517), + [anon_sym__Atomic] = ACTIONS(7517), + [anon_sym_const] = ACTIONS(7517), + [anon_sym_extern] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7515), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7515), + [anon_sym_constexpr] = ACTIONS(7517), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7515), + [anon_sym_QMARK] = ACTIONS(7515), + [anon_sym_TILDE] = ACTIONS(7515), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_BANG_EQ] = ACTIONS(7515), + [anon_sym_AMP_AMP] = ACTIONS(7515), + [anon_sym_inline] = ACTIONS(7517), + [anon_sym_EQ] = ACTIONS(7517), + [anon_sym_restrict] = ACTIONS(7517), + [anon_sym_GT_GT] = ACTIONS(7517), + [anon_sym_DASH_GT] = ACTIONS(7515), + }, + [3893] = { + [anon_sym_LPAREN2] = ACTIONS(6794), + [anon_sym_DASH] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6794), + [anon_sym_inline] = ACTIONS(6796), + [anon_sym_mutable] = ACTIONS(6796), + [anon_sym_EQ] = ACTIONS(6796), + [anon_sym_final] = ACTIONS(6796), + [anon_sym_COLON_COLON] = ACTIONS(6794), + [anon_sym_GT2] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6794), + [anon_sym_PIPE] = ACTIONS(6796), + [anon_sym_LT] = ACTIONS(6796), + [anon_sym_AMP] = ACTIONS(6796), + [anon_sym_static] = ACTIONS(6796), + [anon_sym_volatile] = ACTIONS(6796), + [anon_sym_PLUS] = ACTIONS(6796), + [anon_sym_GT_EQ] = ACTIONS(6796), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_SLASH] = ACTIONS(6796), + [anon_sym_override] = ACTIONS(6796), + [anon_sym_COLON] = ACTIONS(6796), + [anon_sym_explicit] = ACTIONS(6796), + [sym_identifier] = ACTIONS(6796), + [sym_operator_name] = ACTIONS(6794), + [sym_noexcept] = ACTIONS(6796), + [anon_sym_CARET] = ACTIONS(6794), + [anon_sym_GT] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6794), + [anon_sym__Atomic] = ACTIONS(6796), + [anon_sym_const] = ACTIONS(6796), + [anon_sym_LT_LT] = ACTIONS(6794), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_register] = ACTIONS(6796), + [anon_sym_constexpr] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_extern] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6794), + [anon_sym_TILDE] = ACTIONS(6794), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_BANG_EQ] = ACTIONS(6794), + [anon_sym_AMP_AMP] = ACTIONS(6794), + [anon_sym_DASH_GT] = ACTIONS(6794), + [anon_sym_PLUS_PLUS] = ACTIONS(6794), + [anon_sym_restrict] = ACTIONS(6796), + [anon_sym_LBRACE] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6796), + }, + [3894] = { + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_inline] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_GT2] = ACTIONS(6801), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_static] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_explicit] = ACTIONS(6803), + [sym_identifier] = ACTIONS(6803), + [sym_operator_name] = ACTIONS(6801), + [sym_noexcept] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_PERCENT] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6801), + [anon_sym_register] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [anon_sym_extern] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_TILDE] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6803), + }, + [3895] = { + [anon_sym_LPAREN2] = ACTIONS(6915), + [anon_sym_CARET] = ACTIONS(6915), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_COMMA] = ACTIONS(6915), + [anon_sym_PIPE_PIPE] = ACTIONS(6915), + [anon_sym_DOT] = ACTIONS(6915), + [anon_sym_LT_LT] = ACTIONS(6915), + [anon_sym_LBRACK] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(6915), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_PERCENT] = ACTIONS(6915), + [anon_sym_GT2] = ACTIONS(6915), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_QMARK] = ACTIONS(6915), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6915), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_LT_EQ] = ACTIONS(6915), + [anon_sym_BANG_EQ] = ACTIONS(6915), + [anon_sym_AMP_AMP] = ACTIONS(6915), + [anon_sym_DASH_GT] = ACTIONS(6915), + [anon_sym_PLUS_PLUS] = ACTIONS(6915), + [anon_sym_GT_GT] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6915), + }, + [3896] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), + [sym_string_literal] = STATE(450), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(9480), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [3897] = { + [anon_sym_LPAREN2] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5338), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_PIPE_PIPE] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_LT_LT] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5338), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_PERCENT] = ACTIONS(5338), + [anon_sym_GT2] = ACTIONS(5338), + [anon_sym_AMP] = ACTIONS(5340), + [anon_sym_QMARK] = ACTIONS(5338), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_GT_EQ] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5338), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_LT_EQ] = ACTIONS(5338), + [anon_sym_BANG_EQ] = ACTIONS(5338), + [anon_sym_AMP_AMP] = ACTIONS(5338), + [anon_sym_DASH_GT] = ACTIONS(5338), + [anon_sym_PLUS_PLUS] = ACTIONS(5338), + [anon_sym_GT_GT] = ACTIONS(5340), + [anon_sym_DASH_DASH] = ACTIONS(5338), + }, + [3898] = { + [aux_sym_argument_list_repeat1] = STATE(2580), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(9482), + [sym_comment] = ACTIONS(3), + }, + [3899] = { + [sym_new_declarator] = STATE(4349), [anon_sym_LPAREN2] = ACTIONS(7530), [anon_sym_DASH] = ACTIONS(7532), - [anon_sym_PLUS_PLUS] = ACTIONS(7530), - [anon_sym_LBRACE] = ACTIONS(7530), - [anon_sym_mutable] = ACTIONS(7532), - [anon_sym_DASH_DASH] = ACTIONS(7530), - [anon_sym_final] = ACTIONS(7532), - [anon_sym_COLON_COLON] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), [anon_sym_GT2] = ACTIONS(7530), [anon_sym_EQ_EQ] = ACTIONS(7530), [anon_sym_PIPE] = ACTIONS(7532), [anon_sym_LT] = ACTIONS(7532), [anon_sym_AMP] = ACTIONS(7532), - [anon_sym_static] = ACTIONS(7532), - [anon_sym_volatile] = ACTIONS(7532), [anon_sym_PLUS] = ACTIONS(7532), [anon_sym_GT_EQ] = ACTIONS(7532), [anon_sym_STAR] = ACTIONS(7530), [anon_sym_SLASH] = ACTIONS(7532), - [anon_sym_override] = ACTIONS(7532), - [anon_sym_explicit] = ACTIONS(7532), - [sym_identifier] = ACTIONS(7532), - [sym_operator_name] = ACTIONS(7530), - [sym_noexcept] = ACTIONS(7532), [anon_sym_CARET] = ACTIONS(7530), [anon_sym_GT] = ACTIONS(7532), [anon_sym_COMMA] = ACTIONS(7530), - [anon_sym_register] = ACTIONS(7532), - [anon_sym__Atomic] = ACTIONS(7532), - [anon_sym_const] = ACTIONS(7532), - [anon_sym_extern] = ACTIONS(7532), - [anon_sym_LBRACK] = ACTIONS(7530), [anon_sym_PIPE_PIPE] = ACTIONS(7530), [anon_sym_DOT] = ACTIONS(7530), [anon_sym_LT_LT] = ACTIONS(7530), - [anon_sym_constexpr] = ACTIONS(7532), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4313), [anon_sym_PERCENT] = ACTIONS(7530), + [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(7530), - [anon_sym_TILDE] = ACTIONS(7530), [anon_sym_LT_EQ] = ACTIONS(7530), [anon_sym_BANG_EQ] = ACTIONS(7530), [anon_sym_AMP_AMP] = ACTIONS(7530), - [anon_sym_inline] = ACTIONS(7532), - [anon_sym_EQ] = ACTIONS(7532), - [anon_sym_restrict] = ACTIONS(7532), - [anon_sym_GT_GT] = ACTIONS(7532), [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_DASH_DASH] = ACTIONS(7530), }, - [3918] = { + [3900] = { [anon_sym_LPAREN2] = ACTIONS(7534), + [anon_sym_CARET] = ACTIONS(7534), + [anon_sym_GT] = ACTIONS(7536), [anon_sym_DASH] = ACTIONS(7536), - [anon_sym_PLUS_PLUS] = ACTIONS(7534), - [anon_sym_LBRACE] = ACTIONS(7534), - [anon_sym_mutable] = ACTIONS(7536), - [anon_sym_DASH_DASH] = ACTIONS(7534), - [anon_sym_final] = ACTIONS(7536), - [anon_sym_COLON_COLON] = ACTIONS(7534), - [anon_sym_GT2] = ACTIONS(7534), + [anon_sym_COMMA] = ACTIONS(7534), + [anon_sym_PIPE_PIPE] = ACTIONS(7534), + [anon_sym_DOT] = ACTIONS(7534), + [anon_sym_LT_LT] = ACTIONS(7534), + [anon_sym_LBRACK] = ACTIONS(7534), [anon_sym_EQ_EQ] = ACTIONS(7534), [anon_sym_PIPE] = ACTIONS(7536), [anon_sym_LT] = ACTIONS(7536), + [anon_sym_PERCENT] = ACTIONS(7534), + [anon_sym_GT2] = ACTIONS(7534), [anon_sym_AMP] = ACTIONS(7536), - [anon_sym_static] = ACTIONS(7536), - [anon_sym_volatile] = ACTIONS(7536), + [anon_sym_QMARK] = ACTIONS(7534), + [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(7536), [anon_sym_GT_EQ] = ACTIONS(7536), [anon_sym_STAR] = ACTIONS(7534), [anon_sym_SLASH] = ACTIONS(7536), - [anon_sym_override] = ACTIONS(7536), - [anon_sym_explicit] = ACTIONS(7536), - [sym_identifier] = ACTIONS(7536), - [sym_operator_name] = ACTIONS(7534), - [sym_noexcept] = ACTIONS(7536), - [anon_sym_CARET] = ACTIONS(7534), - [anon_sym_GT] = ACTIONS(7536), - [anon_sym_COMMA] = ACTIONS(7534), - [anon_sym_register] = ACTIONS(7536), - [anon_sym__Atomic] = ACTIONS(7536), - [anon_sym_const] = ACTIONS(7536), - [anon_sym_extern] = ACTIONS(7536), - [anon_sym_LBRACK] = ACTIONS(7534), - [anon_sym_PIPE_PIPE] = ACTIONS(7534), - [anon_sym_DOT] = ACTIONS(7534), - [anon_sym_LT_LT] = ACTIONS(7534), - [anon_sym_constexpr] = ACTIONS(7536), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7534), - [anon_sym_QMARK] = ACTIONS(7534), - [anon_sym_TILDE] = ACTIONS(7534), [anon_sym_LT_EQ] = ACTIONS(7534), [anon_sym_BANG_EQ] = ACTIONS(7534), [anon_sym_AMP_AMP] = ACTIONS(7534), - [anon_sym_inline] = ACTIONS(7536), - [anon_sym_EQ] = ACTIONS(7536), - [anon_sym_restrict] = ACTIONS(7536), - [anon_sym_GT_GT] = ACTIONS(7536), [anon_sym_DASH_GT] = ACTIONS(7534), + [anon_sym_PLUS_PLUS] = ACTIONS(7534), + [anon_sym_GT_GT] = ACTIONS(7536), + [anon_sym_DASH_DASH] = ACTIONS(7534), }, - [3919] = { - [anon_sym_LPAREN2] = ACTIONS(6805), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_DASH_DASH] = ACTIONS(6805), - [anon_sym_inline] = ACTIONS(6807), - [anon_sym_mutable] = ACTIONS(6807), - [anon_sym_EQ] = ACTIONS(6807), - [anon_sym_final] = ACTIONS(6807), - [anon_sym_COLON_COLON] = ACTIONS(6805), - [anon_sym_GT2] = ACTIONS(6805), - [anon_sym_EQ_EQ] = ACTIONS(6805), - [anon_sym_PIPE] = ACTIONS(6807), - [anon_sym_LT] = ACTIONS(6807), - [anon_sym_AMP] = ACTIONS(6807), - [anon_sym_static] = ACTIONS(6807), - [anon_sym_volatile] = ACTIONS(6807), - [anon_sym_PLUS] = ACTIONS(6807), - [anon_sym_GT_EQ] = ACTIONS(6807), - [anon_sym_STAR] = ACTIONS(6805), - [anon_sym_SLASH] = ACTIONS(6807), - [anon_sym_override] = ACTIONS(6807), - [anon_sym_COLON] = ACTIONS(6807), - [anon_sym_explicit] = ACTIONS(6807), - [sym_identifier] = ACTIONS(6807), - [sym_operator_name] = ACTIONS(6805), - [sym_noexcept] = ACTIONS(6807), - [anon_sym_CARET] = ACTIONS(6805), - [anon_sym_GT] = ACTIONS(6807), - [anon_sym_COMMA] = ACTIONS(6805), - [anon_sym_PIPE_PIPE] = ACTIONS(6805), - [anon_sym__Atomic] = ACTIONS(6807), - [anon_sym_const] = ACTIONS(6807), - [anon_sym_LT_LT] = ACTIONS(6805), - [anon_sym_LBRACK] = ACTIONS(6805), - [anon_sym_PERCENT] = ACTIONS(6805), - [anon_sym_DOT] = ACTIONS(6805), - [anon_sym_register] = ACTIONS(6807), - [anon_sym_constexpr] = ACTIONS(6807), - [sym_comment] = ACTIONS(3), - [anon_sym_extern] = ACTIONS(6807), - [anon_sym_QMARK] = ACTIONS(6805), - [anon_sym_TILDE] = ACTIONS(6805), - [anon_sym_LT_EQ] = ACTIONS(6805), - [anon_sym_BANG_EQ] = ACTIONS(6805), - [anon_sym_AMP_AMP] = ACTIONS(6805), - [anon_sym_DASH_GT] = ACTIONS(6805), - [anon_sym_PLUS_PLUS] = ACTIONS(6805), - [anon_sym_restrict] = ACTIONS(6807), - [anon_sym_LBRACE] = ACTIONS(6805), - [anon_sym_GT_GT] = ACTIONS(6807), - }, - [3920] = { - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_inline] = ACTIONS(6814), - [anon_sym_mutable] = ACTIONS(6814), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_COLON_COLON] = ACTIONS(6812), - [anon_sym_GT2] = ACTIONS(6812), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_static] = ACTIONS(6814), - [anon_sym_volatile] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_explicit] = ACTIONS(6814), - [sym_identifier] = ACTIONS(6814), - [sym_operator_name] = ACTIONS(6812), - [sym_noexcept] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym__Atomic] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6812), - [anon_sym_register] = ACTIONS(6814), - [anon_sym_constexpr] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_extern] = ACTIONS(6814), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_TILDE] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_restrict] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6814), - }, - [3921] = { - [anon_sym_LPAREN2] = ACTIONS(6926), - [anon_sym_CARET] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6928), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_COMMA] = ACTIONS(6926), - [anon_sym_PIPE_PIPE] = ACTIONS(6926), - [anon_sym_DOT] = ACTIONS(6926), - [anon_sym_LT_LT] = ACTIONS(6926), - [anon_sym_LBRACK] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_PIPE] = ACTIONS(6928), - [anon_sym_LT] = ACTIONS(6928), - [anon_sym_PERCENT] = ACTIONS(6926), - [anon_sym_GT2] = ACTIONS(6926), - [anon_sym_AMP] = ACTIONS(6928), - [anon_sym_QMARK] = ACTIONS(6926), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_GT_EQ] = ACTIONS(6928), - [anon_sym_STAR] = ACTIONS(6926), - [anon_sym_SLASH] = ACTIONS(6928), - [anon_sym_LT_EQ] = ACTIONS(6926), - [anon_sym_BANG_EQ] = ACTIONS(6926), - [anon_sym_AMP_AMP] = ACTIONS(6926), - [anon_sym_DASH_GT] = ACTIONS(6926), - [anon_sym_PLUS_PLUS] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6928), - [anon_sym_DASH_DASH] = ACTIONS(6926), - }, - [3922] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), - [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(9512), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [3923] = { - [anon_sym_LPAREN2] = ACTIONS(5339), - [anon_sym_CARET] = ACTIONS(5339), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_PIPE_PIPE] = ACTIONS(5339), - [anon_sym_DOT] = ACTIONS(5339), - [anon_sym_LT_LT] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_EQ_EQ] = ACTIONS(5339), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_PERCENT] = ACTIONS(5339), - [anon_sym_GT2] = ACTIONS(5339), - [anon_sym_AMP] = ACTIONS(5341), - [anon_sym_QMARK] = ACTIONS(5339), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_GT_EQ] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5339), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_LT_EQ] = ACTIONS(5339), - [anon_sym_BANG_EQ] = ACTIONS(5339), - [anon_sym_AMP_AMP] = ACTIONS(5339), - [anon_sym_DASH_GT] = ACTIONS(5339), - [anon_sym_PLUS_PLUS] = ACTIONS(5339), - [anon_sym_GT_GT] = ACTIONS(5341), - [anon_sym_DASH_DASH] = ACTIONS(5339), - }, - [3924] = { - [aux_sym_argument_list_repeat1] = STATE(2595), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(9514), - [sym_comment] = ACTIONS(3), - }, - [3925] = { - [sym_new_declarator] = STATE(4377), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7551), - [anon_sym_GT2] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7551), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), - }, - [3926] = { - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_CARET] = ACTIONS(7553), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7553), - [anon_sym_LT_LT] = ACTIONS(7553), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7553), - [anon_sym_GT2] = ACTIONS(7553), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_QMARK] = ACTIONS(7553), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7553), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_LT_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7553), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym_DASH_DASH] = ACTIONS(7553), - }, - [3927] = { - [anon_sym_LPAREN2] = ACTIONS(7154), - [anon_sym_DASH] = ACTIONS(7156), - [anon_sym_PLUS_PLUS] = ACTIONS(7154), - [anon_sym_LBRACE] = ACTIONS(7154), - [anon_sym_mutable] = ACTIONS(7156), - [anon_sym_DASH_DASH] = ACTIONS(7154), - [anon_sym_final] = ACTIONS(7156), - [anon_sym_COLON_COLON] = ACTIONS(7154), - [anon_sym_GT2] = ACTIONS(7154), - [anon_sym_EQ_EQ] = ACTIONS(7154), - [anon_sym_PIPE] = ACTIONS(7156), - [anon_sym_LT] = ACTIONS(7156), - [anon_sym_AMP] = ACTIONS(7156), - [anon_sym_static] = ACTIONS(7156), - [anon_sym_volatile] = ACTIONS(7156), - [anon_sym_PLUS] = ACTIONS(7156), - [anon_sym_GT_EQ] = ACTIONS(7156), - [anon_sym_STAR] = ACTIONS(7154), - [anon_sym_SLASH] = ACTIONS(7156), - [anon_sym_override] = ACTIONS(7156), - [anon_sym_explicit] = ACTIONS(7156), - [sym_identifier] = ACTIONS(7156), - [sym_operator_name] = ACTIONS(7154), - [sym_noexcept] = ACTIONS(7156), - [anon_sym_CARET] = ACTIONS(7154), - [anon_sym_GT] = ACTIONS(7156), - [anon_sym_COMMA] = ACTIONS(7154), - [anon_sym_register] = ACTIONS(7156), - [anon_sym__Atomic] = ACTIONS(7156), - [anon_sym_const] = ACTIONS(7156), - [anon_sym_extern] = ACTIONS(7156), - [anon_sym_LBRACK] = ACTIONS(7154), - [anon_sym_PIPE_PIPE] = ACTIONS(7154), - [anon_sym_DOT] = ACTIONS(7154), - [anon_sym_LT_LT] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7156), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7154), - [anon_sym_QMARK] = ACTIONS(7154), - [anon_sym_TILDE] = ACTIONS(7154), - [anon_sym_LT_EQ] = ACTIONS(7154), - [anon_sym_BANG_EQ] = ACTIONS(7154), - [anon_sym_AMP_AMP] = ACTIONS(7154), - [anon_sym_inline] = ACTIONS(7156), - [anon_sym_EQ] = ACTIONS(7156), - [anon_sym_restrict] = ACTIONS(7156), - [anon_sym_GT_GT] = ACTIONS(7156), - [anon_sym_DASH_GT] = ACTIONS(7154), + [3901] = { + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7137), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7137), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_final] = ACTIONS(7137), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_GT2] = ACTIONS(7135), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7137), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_AMP] = ACTIONS(7137), + [anon_sym_static] = ACTIONS(7137), + [anon_sym_volatile] = ACTIONS(7137), + [anon_sym_PLUS] = ACTIONS(7137), + [anon_sym_GT_EQ] = ACTIONS(7137), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_override] = ACTIONS(7137), + [anon_sym_explicit] = ACTIONS(7137), + [sym_identifier] = ACTIONS(7137), + [sym_operator_name] = ACTIONS(7135), + [sym_noexcept] = ACTIONS(7137), + [anon_sym_CARET] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7137), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_register] = ACTIONS(7137), + [anon_sym__Atomic] = ACTIONS(7137), + [anon_sym_const] = ACTIONS(7137), + [anon_sym_extern] = ACTIONS(7137), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7135), + [anon_sym_LT_LT] = ACTIONS(7135), + [anon_sym_constexpr] = ACTIONS(7137), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_TILDE] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_inline] = ACTIONS(7137), + [anon_sym_EQ] = ACTIONS(7137), + [anon_sym_restrict] = ACTIONS(7137), + [anon_sym_GT_GT] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(7135), }, - [3928] = { - [sym_enumerator] = STATE(2379), + [3902] = { + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(9516), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(9484), }, - [3929] = { - [anon_sym_LPAREN2] = ACTIONS(7659), - [anon_sym_DASH] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7659), - [anon_sym_LBRACE] = ACTIONS(7659), - [anon_sym_mutable] = ACTIONS(7661), - [anon_sym_DASH_DASH] = ACTIONS(7659), - [anon_sym_final] = ACTIONS(7661), - [anon_sym_COLON_COLON] = ACTIONS(7659), - [anon_sym_GT2] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7659), - [anon_sym_PIPE] = ACTIONS(7661), - [anon_sym_LT] = ACTIONS(7661), - [anon_sym_AMP] = ACTIONS(7661), - [anon_sym_static] = ACTIONS(7661), - [anon_sym_volatile] = ACTIONS(7661), - [anon_sym_PLUS] = ACTIONS(7661), - [anon_sym_GT_EQ] = ACTIONS(7661), - [anon_sym_STAR] = ACTIONS(7659), - [anon_sym_SLASH] = ACTIONS(7661), - [anon_sym_override] = ACTIONS(7661), - [anon_sym_explicit] = ACTIONS(7661), - [sym_identifier] = ACTIONS(7661), - [sym_operator_name] = ACTIONS(7659), - [sym_noexcept] = ACTIONS(7661), - [anon_sym_CARET] = ACTIONS(7659), - [anon_sym_GT] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7659), - [anon_sym_register] = ACTIONS(7661), - [anon_sym__Atomic] = ACTIONS(7661), - [anon_sym_const] = ACTIONS(7661), - [anon_sym_extern] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7659), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7659), - [anon_sym_constexpr] = ACTIONS(7661), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7659), - [anon_sym_QMARK] = ACTIONS(7659), - [anon_sym_TILDE] = ACTIONS(7659), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_BANG_EQ] = ACTIONS(7659), - [anon_sym_AMP_AMP] = ACTIONS(7659), - [anon_sym_inline] = ACTIONS(7661), - [anon_sym_EQ] = ACTIONS(7661), - [anon_sym_restrict] = ACTIONS(7661), - [anon_sym_GT_GT] = ACTIONS(7661), - [anon_sym_DASH_GT] = ACTIONS(7659), + [3903] = { + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_mutable] = ACTIONS(7642), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_final] = ACTIONS(7642), + [anon_sym_COLON_COLON] = ACTIONS(7640), + [anon_sym_GT2] = ACTIONS(7640), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_static] = ACTIONS(7642), + [anon_sym_volatile] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7640), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_override] = ACTIONS(7642), + [anon_sym_explicit] = ACTIONS(7642), + [sym_identifier] = ACTIONS(7642), + [sym_operator_name] = ACTIONS(7640), + [sym_noexcept] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7640), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_register] = ACTIONS(7642), + [anon_sym__Atomic] = ACTIONS(7642), + [anon_sym_const] = ACTIONS(7642), + [anon_sym_extern] = ACTIONS(7642), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_LT_LT] = ACTIONS(7640), + [anon_sym_constexpr] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7640), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_TILDE] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_inline] = ACTIONS(7642), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_restrict] = ACTIONS(7642), + [anon_sym_GT_GT] = ACTIONS(7642), + [anon_sym_DASH_GT] = ACTIONS(7640), }, - [3930] = { - [anon_sym_LPAREN2] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7663), - [anon_sym_LBRACE] = ACTIONS(7663), - [anon_sym_mutable] = ACTIONS(7665), - [anon_sym_DASH_DASH] = ACTIONS(7663), - [anon_sym_final] = ACTIONS(7665), - [anon_sym_COLON_COLON] = ACTIONS(7663), - [anon_sym_GT2] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7663), - [anon_sym_PIPE] = ACTIONS(7665), - [anon_sym_LT] = ACTIONS(7665), - [anon_sym_AMP] = ACTIONS(7665), - [anon_sym_static] = ACTIONS(7665), - [anon_sym_volatile] = ACTIONS(7665), - [anon_sym_PLUS] = ACTIONS(7665), - [anon_sym_GT_EQ] = ACTIONS(7665), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_override] = ACTIONS(7665), - [anon_sym_explicit] = ACTIONS(7665), - [sym_identifier] = ACTIONS(7665), - [sym_operator_name] = ACTIONS(7663), - [sym_noexcept] = ACTIONS(7665), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_GT] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7663), - [anon_sym_register] = ACTIONS(7665), - [anon_sym__Atomic] = ACTIONS(7665), - [anon_sym_const] = ACTIONS(7665), - [anon_sym_extern] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7663), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_constexpr] = ACTIONS(7665), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_QMARK] = ACTIONS(7663), - [anon_sym_TILDE] = ACTIONS(7663), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_BANG_EQ] = ACTIONS(7663), - [anon_sym_AMP_AMP] = ACTIONS(7663), - [anon_sym_inline] = ACTIONS(7665), - [anon_sym_EQ] = ACTIONS(7665), - [anon_sym_restrict] = ACTIONS(7665), - [anon_sym_GT_GT] = ACTIONS(7665), - [anon_sym_DASH_GT] = ACTIONS(7663), + [3904] = { + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_mutable] = ACTIONS(7646), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_final] = ACTIONS(7646), + [anon_sym_COLON_COLON] = ACTIONS(7644), + [anon_sym_GT2] = ACTIONS(7644), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_static] = ACTIONS(7646), + [anon_sym_volatile] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7646), + [anon_sym_STAR] = ACTIONS(7644), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_override] = ACTIONS(7646), + [anon_sym_explicit] = ACTIONS(7646), + [sym_identifier] = ACTIONS(7646), + [sym_operator_name] = ACTIONS(7644), + [sym_noexcept] = ACTIONS(7646), + [anon_sym_CARET] = ACTIONS(7644), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_register] = ACTIONS(7646), + [anon_sym__Atomic] = ACTIONS(7646), + [anon_sym_const] = ACTIONS(7646), + [anon_sym_extern] = ACTIONS(7646), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7644), + [anon_sym_LT_LT] = ACTIONS(7644), + [anon_sym_constexpr] = ACTIONS(7646), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(7644), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_TILDE] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_inline] = ACTIONS(7646), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_restrict] = ACTIONS(7646), + [anon_sym_GT_GT] = ACTIONS(7646), + [anon_sym_DASH_GT] = ACTIONS(7644), }, - [3931] = { - [anon_sym_LPAREN2] = ACTIONS(7540), - [anon_sym_DASH] = ACTIONS(7542), - [anon_sym_STAR_EQ] = ACTIONS(7540), - [anon_sym_LT_LT_EQ] = ACTIONS(7540), - [anon_sym_PERCENT_EQ] = ACTIONS(7540), - [anon_sym_GT2] = ACTIONS(7540), - [anon_sym_EQ_EQ] = ACTIONS(7540), - [anon_sym_PIPE] = ACTIONS(7542), - [anon_sym_LT] = ACTIONS(7542), - [anon_sym_CARET_EQ] = ACTIONS(7540), - [anon_sym_AMP] = ACTIONS(7542), - [anon_sym_PLUS] = ACTIONS(7542), - [anon_sym_GT_EQ] = ACTIONS(7542), - [anon_sym_STAR] = ACTIONS(7542), - [anon_sym_SLASH] = ACTIONS(7542), - [anon_sym_SLASH_EQ] = ACTIONS(7540), - [anon_sym_PLUS_EQ] = ACTIONS(7540), - [anon_sym_CARET] = ACTIONS(7542), - [anon_sym_GT] = ACTIONS(7542), - [anon_sym_PIPE_EQ] = ACTIONS(7540), - [anon_sym_GT_GT_EQ] = ACTIONS(7542), - [anon_sym_COMMA] = ACTIONS(7540), - [anon_sym_PIPE_PIPE] = ACTIONS(7540), - [anon_sym_DOT] = ACTIONS(7540), - [anon_sym_LT_LT] = ACTIONS(7542), - [anon_sym_LBRACK] = ACTIONS(7540), - [anon_sym_PERCENT] = ACTIONS(7542), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7540), - [anon_sym_DASH_EQ] = ACTIONS(7540), - [anon_sym_LT_EQ] = ACTIONS(7540), - [anon_sym_BANG_EQ] = ACTIONS(7540), - [anon_sym_AMP_EQ] = ACTIONS(7540), - [anon_sym_AMP_AMP] = ACTIONS(7540), - [anon_sym_DASH_GT] = ACTIONS(7540), - [anon_sym_EQ] = ACTIONS(7542), - [anon_sym_PLUS_PLUS] = ACTIONS(7540), - [anon_sym_GT_GT] = ACTIONS(7542), - [anon_sym_DASH_DASH] = ACTIONS(7540), + [3905] = { + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_STAR_EQ] = ACTIONS(7521), + [anon_sym_LT_LT_EQ] = ACTIONS(7521), + [anon_sym_PERCENT_EQ] = ACTIONS(7521), + [anon_sym_GT2] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_CARET_EQ] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_GT_EQ] = ACTIONS(7523), + [anon_sym_STAR] = ACTIONS(7523), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_SLASH_EQ] = ACTIONS(7521), + [anon_sym_PLUS_EQ] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7523), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_PIPE_EQ] = ACTIONS(7521), + [anon_sym_GT_GT_EQ] = ACTIONS(7523), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7523), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_PERCENT] = ACTIONS(7523), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_DASH_EQ] = ACTIONS(7521), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_AMP_EQ] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7521), + [anon_sym_EQ] = ACTIONS(7523), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7523), + [anon_sym_DASH_DASH] = ACTIONS(7521), }, - [3932] = { - [sym_argument_list] = STATE(1165), + [3906] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_CARET] = ACTIONS(2297), [anon_sym_GT] = ACTIONS(2299), [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(8131), + [anon_sym_COMMA] = ACTIONS(8176), [anon_sym_PIPE_PIPE] = ACTIONS(2305), [anon_sym_DOT] = ACTIONS(2307), [anon_sym_LT_LT] = ACTIONS(2309), @@ -160055,7 +159549,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2315), [anon_sym_LT] = ACTIONS(2299), [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(8131), + [anon_sym_GT2] = ACTIONS(8176), [anon_sym_AMP] = ACTIONS(2321), [anon_sym_QMARK] = ACTIONS(2323), [sym_comment] = ACTIONS(3), @@ -160071,988 +159565,988 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2333), [anon_sym_DASH_DASH] = ACTIONS(2331), }, - [3933] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3933), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_unsigned] = ACTIONS(9518), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(9518), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(9518), - [anon_sym_GT2] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(9518), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - }, - [3934] = { - [sym_parameter_list] = STATE(2218), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(8186), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(8186), + [3907] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_CARET] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_COMMA] = ACTIONS(2711), + [anon_sym_PIPE_PIPE] = ACTIONS(2711), + [anon_sym_DOT] = ACTIONS(2711), + [anon_sym_LT_LT] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_EQ_EQ] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_PERCENT] = ACTIONS(2711), + [anon_sym_GT2] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_QMARK] = ACTIONS(2711), [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_LT_EQ] = ACTIONS(2711), + [anon_sym_BANG_EQ] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_DASH_GT] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), }, - [3935] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2709), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_PIPE_PIPE] = ACTIONS(2709), - [anon_sym_DOT] = ACTIONS(2709), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_EQ_EQ] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2709), - [anon_sym_GT2] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2709), + [3908] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3908), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_unsigned] = ACTIONS(9486), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(9486), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(9486), + [anon_sym_GT2] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(9486), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + }, + [3909] = { + [sym_parameter_list] = STATE(2207), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(8038), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(8038), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_BANG_EQ] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_DASH_GT] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), }, - [3936] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_RBRACE] = ACTIONS(7469), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3910] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_RBRACE] = ACTIONS(7450), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3937] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4379), - [sym_logical_expression] = STATE(4379), - [sym_bitwise_expression] = STATE(4379), - [sym_cast_expression] = STATE(4379), - [sym_new_expression] = STATE(4379), - [sym_field_expression] = STATE(4379), - [sym_compound_literal_expression] = STATE(4379), - [sym_char_literal] = STATE(4379), - [sym_template_function] = STATE(4379), - [sym_conditional_expression] = STATE(4379), - [sym_equality_expression] = STATE(4379), - [sym_relational_expression] = STATE(4379), - [sym_delete_expression] = STATE(4379), - [sym_sizeof_expression] = STATE(4379), - [sym_parenthesized_expression] = STATE(4379), - [sym_lambda_expression] = STATE(4379), - [sym_concatenated_string] = STATE(4379), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4379), - [sym_assignment_expression] = STATE(4379), - [sym_pointer_expression] = STATE(4379), - [sym_shift_expression] = STATE(4379), - [sym_math_expression] = STATE(4379), - [sym_call_expression] = STATE(4379), - [sym_lambda_capture_specifier] = STATE(196), + [3911] = { + [sym_template_function] = STATE(4351), + [sym__expression] = STATE(4351), + [sym_logical_expression] = STATE(4351), + [sym_bitwise_expression] = STATE(4351), + [sym_cast_expression] = STATE(4351), + [sym_delete_expression] = STATE(4351), + [sym_field_expression] = STATE(4351), + [sym_compound_literal_expression] = STATE(4351), + [sym_lambda_expression] = STATE(4351), + [sym_char_literal] = STATE(4351), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4351), + [sym_equality_expression] = STATE(4351), + [sym_relational_expression] = STATE(4351), + [sym_sizeof_expression] = STATE(4351), + [sym_subscript_expression] = STATE(4351), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9521), - [anon_sym_DASH] = ACTIONS(2373), - [sym_true] = ACTIONS(9523), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [sym_null] = ACTIONS(9523), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9521), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9523), - [sym_nullptr] = ACTIONS(9523), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), + [sym_parenthesized_expression] = STATE(4351), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(4351), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4351), + [sym_pointer_expression] = STATE(4351), + [sym_shift_expression] = STATE(4351), + [sym_math_expression] = STATE(4351), + [sym_call_expression] = STATE(4351), + [sym_new_expression] = STATE(4351), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9489), + [anon_sym_DASH] = ACTIONS(2375), + [sym_true] = ACTIONS(9491), + [anon_sym_DASH_DASH] = ACTIONS(2389), + [sym_null] = ACTIONS(9491), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9489), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9491), + [sym_nullptr] = ACTIONS(9491), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), }, - [3938] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(1197), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [3912] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(2375), - [anon_sym_DASH] = ACTIONS(2373), - [sym_raw_string_literal] = ACTIONS(5267), - [sym_true] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(332), - [sym_null] = ACTIONS(5269), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(9525), - [anon_sym_AMP] = ACTIONS(8495), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(4127), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(8495), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_number_literal] = ACTIONS(5267), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5269), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(1193), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [anon_sym_LPAREN2] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2375), + [sym_raw_string_literal] = ACTIONS(5266), + [sym_true] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(334), + [sym_null] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(9493), + [anon_sym_AMP] = ACTIONS(8467), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_number_literal] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [3939] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(9527), + [3913] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9495), }, - [3940] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(6863), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(6871), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(6873), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(6875), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3914] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(6862), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(6864), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [3941] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4381), - [sym_logical_expression] = STATE(4381), - [sym_bitwise_expression] = STATE(4381), - [sym_cast_expression] = STATE(4381), - [sym_new_expression] = STATE(4381), - [sym_field_expression] = STATE(4381), - [sym_compound_literal_expression] = STATE(4381), - [sym_char_literal] = STATE(4381), - [sym_template_function] = STATE(4381), - [sym_conditional_expression] = STATE(4381), - [sym_equality_expression] = STATE(4381), - [sym_relational_expression] = STATE(4381), - [sym_delete_expression] = STATE(4381), - [sym_sizeof_expression] = STATE(4381), - [sym_parenthesized_expression] = STATE(4381), - [sym_lambda_expression] = STATE(4381), - [sym_concatenated_string] = STATE(4381), - [sym_string_literal] = STATE(1197), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4381), - [sym_assignment_expression] = STATE(4381), - [sym_pointer_expression] = STATE(4381), - [sym_shift_expression] = STATE(4381), - [sym_math_expression] = STATE(4381), - [sym_call_expression] = STATE(4381), - [sym_lambda_capture_specifier] = STATE(196), + [3915] = { + [sym_template_function] = STATE(4353), + [sym__expression] = STATE(4353), + [sym_logical_expression] = STATE(4353), + [sym_bitwise_expression] = STATE(4353), + [sym_cast_expression] = STATE(4353), + [sym_delete_expression] = STATE(4353), + [sym_field_expression] = STATE(4353), + [sym_compound_literal_expression] = STATE(4353), + [sym_lambda_expression] = STATE(4353), + [sym_char_literal] = STATE(4353), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4353), + [sym_equality_expression] = STATE(4353), + [sym_relational_expression] = STATE(4353), + [sym_sizeof_expression] = STATE(4353), + [sym_subscript_expression] = STATE(4353), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9529), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LPAREN2] = ACTIONS(2375), - [sym_true] = ACTIONS(9531), - [sym_null] = ACTIONS(9531), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9529), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(2379), - [sym_false] = ACTIONS(9531), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(9531), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(2389), - [anon_sym_DASH_DASH] = ACTIONS(2387), + [sym_parenthesized_expression] = STATE(4353), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1193), + [sym_concatenated_string] = STATE(4353), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4353), + [sym_pointer_expression] = STATE(4353), + [sym_shift_expression] = STATE(4353), + [sym_math_expression] = STATE(4353), + [sym_call_expression] = STATE(4353), + [sym_new_expression] = STATE(4353), + [sym_raw_string_literal] = ACTIONS(9497), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(2377), + [sym_true] = ACTIONS(9499), + [sym_null] = ACTIONS(9499), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9497), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(2381), + [sym_false] = ACTIONS(9499), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(9499), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2389), }, - [3942] = { - [sym_new_declarator] = STATE(3532), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_RBRACE] = ACTIONS(7549), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), + [3916] = { + [sym_new_declarator] = STATE(3504), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_GT_GT] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_RBRACE] = ACTIONS(7530), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_PERCENT] = ACTIONS(7530), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_DASH_DASH] = ACTIONS(7530), }, - [3943] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PERCENT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(8131), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3917] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_GT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(8176), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3944] = { - [anon_sym_DASH] = ACTIONS(6416), - [sym_raw_string_literal] = ACTIONS(6418), - [sym_true] = ACTIONS(6416), - [anon_sym_mutable] = ACTIONS(6416), - [sym_null] = ACTIONS(6416), - [anon_sym_break] = ACTIONS(6416), - [aux_sym_preproc_if_token2] = ACTIONS(6416), - [anon_sym_BANG] = ACTIONS(6418), - [anon_sym_sizeof] = ACTIONS(6416), - [anon_sym_volatile] = ACTIONS(6416), - [anon_sym_PLUS] = ACTIONS(6416), - [anon_sym_typedef] = ACTIONS(6416), - [anon_sym_switch] = ACTIONS(6416), - [anon_sym_explicit] = ACTIONS(6416), - [sym_identifier] = ACTIONS(6416), - [anon_sym_delete] = ACTIONS(6416), - [anon_sym_continue] = ACTIONS(6416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6416), - [anon_sym__Atomic] = ACTIONS(6416), - [sym_number_literal] = ACTIONS(6418), - [anon_sym_extern] = ACTIONS(6416), - [anon_sym_enum] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6416), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6418), - [anon_sym_namespace] = ACTIONS(6416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6416), - [aux_sym_preproc_elif_token1] = ACTIONS(6416), - [anon_sym_SQUOTE] = ACTIONS(6418), - [anon_sym_LBRACE] = ACTIONS(6418), - [anon_sym_DASH_DASH] = ACTIONS(6418), - [anon_sym_LPAREN2] = ACTIONS(6418), - [anon_sym_struct] = ACTIONS(6416), - [sym_auto] = ACTIONS(6416), - [anon_sym_signed] = ACTIONS(6416), - [anon_sym_long] = ACTIONS(6416), - [anon_sym_COLON_COLON] = ACTIONS(6418), - [anon_sym_using] = ACTIONS(6416), - [aux_sym_preproc_else_token1] = ACTIONS(6416), - [sym_preproc_directive] = ACTIONS(6416), - [aux_sym_preproc_if_token1] = ACTIONS(6416), - [anon_sym_AMP] = ACTIONS(6416), - [anon_sym_static] = ACTIONS(6416), - [anon_sym_STAR] = ACTIONS(6418), - [anon_sym_union] = ACTIONS(6416), - [anon_sym_typename] = ACTIONS(6416), - [anon_sym_short] = ACTIONS(6416), - [anon_sym_new] = ACTIONS(6416), - [anon_sym_goto] = ACTIONS(6416), - [sym_operator_name] = ACTIONS(6418), - [anon_sym_while] = ACTIONS(6416), - [anon_sym_try] = ACTIONS(6416), - [anon_sym_for] = ACTIONS(6416), - [aux_sym_preproc_include_token1] = ACTIONS(6416), - [anon_sym_register] = ACTIONS(6416), - [anon_sym_DQUOTE] = ACTIONS(6418), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_LBRACK] = ACTIONS(6416), - [anon_sym_class] = ACTIONS(6416), - [anon_sym_if] = ACTIONS(6416), - [sym_primitive_type] = ACTIONS(6416), - [sym_false] = ACTIONS(6416), - [sym_nullptr] = ACTIONS(6416), - [anon_sym_do] = ACTIONS(6416), - [anon_sym_template] = ACTIONS(6416), - [anon_sym_return] = ACTIONS(6416), - [anon_sym_TILDE] = ACTIONS(6418), - [anon_sym_SEMI] = ACTIONS(6418), - [aux_sym_preproc_def_token1] = ACTIONS(6416), - [anon_sym_AMP_AMP] = ACTIONS(6418), - [anon_sym_inline] = ACTIONS(6416), - [anon_sym_PLUS_PLUS] = ACTIONS(6418), - [anon_sym_restrict] = ACTIONS(6416), + [3918] = { + [anon_sym_DASH] = ACTIONS(6405), + [sym_raw_string_literal] = ACTIONS(6407), + [sym_true] = ACTIONS(6405), + [anon_sym_mutable] = ACTIONS(6405), + [sym_null] = ACTIONS(6405), + [anon_sym_break] = ACTIONS(6405), + [aux_sym_preproc_if_token2] = ACTIONS(6405), + [anon_sym_BANG] = ACTIONS(6407), + [anon_sym_sizeof] = ACTIONS(6405), + [anon_sym_volatile] = ACTIONS(6405), + [anon_sym_PLUS] = ACTIONS(6405), + [anon_sym_typedef] = ACTIONS(6405), + [anon_sym_switch] = ACTIONS(6405), + [anon_sym_explicit] = ACTIONS(6405), + [sym_identifier] = ACTIONS(6405), + [anon_sym_delete] = ACTIONS(6405), + [anon_sym_continue] = ACTIONS(6405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6405), + [anon_sym__Atomic] = ACTIONS(6405), + [sym_number_literal] = ACTIONS(6407), + [anon_sym_extern] = ACTIONS(6405), + [anon_sym_enum] = ACTIONS(6405), + [anon_sym_constexpr] = ACTIONS(6405), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6407), + [anon_sym_namespace] = ACTIONS(6405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6405), + [aux_sym_preproc_elif_token1] = ACTIONS(6405), + [anon_sym_SQUOTE] = ACTIONS(6407), + [anon_sym_LBRACE] = ACTIONS(6407), + [anon_sym_DASH_DASH] = ACTIONS(6407), + [anon_sym_LPAREN2] = ACTIONS(6407), + [anon_sym_struct] = ACTIONS(6405), + [sym_auto] = ACTIONS(6405), + [anon_sym_signed] = ACTIONS(6405), + [anon_sym_long] = ACTIONS(6405), + [anon_sym_COLON_COLON] = ACTIONS(6407), + [anon_sym_using] = ACTIONS(6405), + [aux_sym_preproc_else_token1] = ACTIONS(6405), + [sym_preproc_directive] = ACTIONS(6405), + [aux_sym_preproc_if_token1] = ACTIONS(6405), + [anon_sym_AMP] = ACTIONS(6405), + [anon_sym_static] = ACTIONS(6405), + [anon_sym_STAR] = ACTIONS(6407), + [anon_sym_union] = ACTIONS(6405), + [anon_sym_typename] = ACTIONS(6405), + [anon_sym_short] = ACTIONS(6405), + [anon_sym_new] = ACTIONS(6405), + [anon_sym_goto] = ACTIONS(6405), + [sym_operator_name] = ACTIONS(6407), + [anon_sym_while] = ACTIONS(6405), + [anon_sym_try] = ACTIONS(6405), + [anon_sym_for] = ACTIONS(6405), + [aux_sym_preproc_include_token1] = ACTIONS(6405), + [anon_sym_register] = ACTIONS(6405), + [anon_sym_DQUOTE] = ACTIONS(6407), + [anon_sym_const] = ACTIONS(6405), + [anon_sym_LBRACK] = ACTIONS(6405), + [anon_sym_class] = ACTIONS(6405), + [anon_sym_if] = ACTIONS(6405), + [sym_primitive_type] = ACTIONS(6405), + [sym_false] = ACTIONS(6405), + [sym_nullptr] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(6405), + [anon_sym_template] = ACTIONS(6405), + [anon_sym_return] = ACTIONS(6405), + [anon_sym_TILDE] = ACTIONS(6407), + [anon_sym_SEMI] = ACTIONS(6407), + [aux_sym_preproc_def_token1] = ACTIONS(6405), + [anon_sym_AMP_AMP] = ACTIONS(6407), + [anon_sym_inline] = ACTIONS(6405), + [anon_sym_PLUS_PLUS] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6405), }, - [3945] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [3919] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(9533), + [anon_sym_SEMI] = ACTIONS(9501), }, - [3946] = { - [anon_sym_DASH] = ACTIONS(6505), - [sym_raw_string_literal] = ACTIONS(6507), - [anon_sym_else] = ACTIONS(6505), - [sym_true] = ACTIONS(6505), - [anon_sym_mutable] = ACTIONS(6505), - [sym_null] = ACTIONS(6505), - [anon_sym_break] = ACTIONS(6505), - [aux_sym_preproc_if_token2] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6507), - [anon_sym_sizeof] = ACTIONS(6505), - [anon_sym_volatile] = ACTIONS(6505), - [anon_sym_PLUS] = ACTIONS(6505), - [anon_sym_typedef] = ACTIONS(6505), - [anon_sym_switch] = ACTIONS(6505), - [anon_sym_explicit] = ACTIONS(6505), - [sym_identifier] = ACTIONS(6505), - [anon_sym_delete] = ACTIONS(6505), - [anon_sym_continue] = ACTIONS(6505), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6505), - [anon_sym__Atomic] = ACTIONS(6505), - [sym_number_literal] = ACTIONS(6507), - [anon_sym_extern] = ACTIONS(6505), - [anon_sym_enum] = ACTIONS(6505), - [anon_sym_constexpr] = ACTIONS(6505), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6507), - [anon_sym_namespace] = ACTIONS(6505), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6505), - [aux_sym_preproc_elif_token1] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [anon_sym_DASH_DASH] = ACTIONS(6507), - [anon_sym_LPAREN2] = ACTIONS(6507), - [anon_sym_struct] = ACTIONS(6505), - [sym_auto] = ACTIONS(6505), - [anon_sym_signed] = ACTIONS(6505), - [anon_sym_long] = ACTIONS(6505), - [anon_sym_COLON_COLON] = ACTIONS(6507), - [anon_sym_using] = ACTIONS(6505), - [aux_sym_preproc_else_token1] = ACTIONS(6505), - [sym_preproc_directive] = ACTIONS(6505), - [aux_sym_preproc_if_token1] = ACTIONS(6505), - [anon_sym_AMP] = ACTIONS(6505), - [anon_sym_static] = ACTIONS(6505), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_union] = ACTIONS(6505), - [anon_sym_typename] = ACTIONS(6505), - [anon_sym_short] = ACTIONS(6505), - [anon_sym_new] = ACTIONS(6505), - [anon_sym_goto] = ACTIONS(6505), - [sym_operator_name] = ACTIONS(6507), - [anon_sym_while] = ACTIONS(6505), - [anon_sym_try] = ACTIONS(6505), - [anon_sym_for] = ACTIONS(6505), - [aux_sym_preproc_include_token1] = ACTIONS(6505), - [anon_sym_register] = ACTIONS(6505), - [anon_sym_DQUOTE] = ACTIONS(6507), - [anon_sym_const] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6505), - [anon_sym_class] = ACTIONS(6505), - [anon_sym_if] = ACTIONS(6505), - [sym_primitive_type] = ACTIONS(6505), - [sym_false] = ACTIONS(6505), - [sym_nullptr] = ACTIONS(6505), - [anon_sym_do] = ACTIONS(6505), - [anon_sym_template] = ACTIONS(6505), - [anon_sym_return] = ACTIONS(6505), - [anon_sym_TILDE] = ACTIONS(6507), - [anon_sym_SEMI] = ACTIONS(6507), - [aux_sym_preproc_def_token1] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(6507), - [anon_sym_inline] = ACTIONS(6505), - [anon_sym_PLUS_PLUS] = ACTIONS(6507), - [anon_sym_restrict] = ACTIONS(6505), + [3920] = { + [anon_sym_DASH] = ACTIONS(6494), + [sym_raw_string_literal] = ACTIONS(6496), + [anon_sym_else] = ACTIONS(6494), + [sym_true] = ACTIONS(6494), + [anon_sym_mutable] = ACTIONS(6494), + [sym_null] = ACTIONS(6494), + [anon_sym_break] = ACTIONS(6494), + [aux_sym_preproc_if_token2] = ACTIONS(6494), + [anon_sym_BANG] = ACTIONS(6496), + [anon_sym_sizeof] = ACTIONS(6494), + [anon_sym_volatile] = ACTIONS(6494), + [anon_sym_PLUS] = ACTIONS(6494), + [anon_sym_typedef] = ACTIONS(6494), + [anon_sym_switch] = ACTIONS(6494), + [anon_sym_explicit] = ACTIONS(6494), + [sym_identifier] = ACTIONS(6494), + [anon_sym_delete] = ACTIONS(6494), + [anon_sym_continue] = ACTIONS(6494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6494), + [anon_sym__Atomic] = ACTIONS(6494), + [sym_number_literal] = ACTIONS(6496), + [anon_sym_extern] = ACTIONS(6494), + [anon_sym_enum] = ACTIONS(6494), + [anon_sym_constexpr] = ACTIONS(6494), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6496), + [anon_sym_namespace] = ACTIONS(6494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6494), + [aux_sym_preproc_elif_token1] = ACTIONS(6494), + [anon_sym_SQUOTE] = ACTIONS(6496), + [anon_sym_LBRACE] = ACTIONS(6496), + [anon_sym_DASH_DASH] = ACTIONS(6496), + [anon_sym_LPAREN2] = ACTIONS(6496), + [anon_sym_struct] = ACTIONS(6494), + [sym_auto] = ACTIONS(6494), + [anon_sym_signed] = ACTIONS(6494), + [anon_sym_long] = ACTIONS(6494), + [anon_sym_COLON_COLON] = ACTIONS(6496), + [anon_sym_using] = ACTIONS(6494), + [aux_sym_preproc_else_token1] = ACTIONS(6494), + [sym_preproc_directive] = ACTIONS(6494), + [aux_sym_preproc_if_token1] = ACTIONS(6494), + [anon_sym_AMP] = ACTIONS(6494), + [anon_sym_static] = ACTIONS(6494), + [anon_sym_STAR] = ACTIONS(6496), + [anon_sym_union] = ACTIONS(6494), + [anon_sym_typename] = ACTIONS(6494), + [anon_sym_short] = ACTIONS(6494), + [anon_sym_new] = ACTIONS(6494), + [anon_sym_goto] = ACTIONS(6494), + [sym_operator_name] = ACTIONS(6496), + [anon_sym_while] = ACTIONS(6494), + [anon_sym_try] = ACTIONS(6494), + [anon_sym_for] = ACTIONS(6494), + [aux_sym_preproc_include_token1] = ACTIONS(6494), + [anon_sym_register] = ACTIONS(6494), + [anon_sym_DQUOTE] = ACTIONS(6496), + [anon_sym_const] = ACTIONS(6494), + [anon_sym_LBRACK] = ACTIONS(6494), + [anon_sym_class] = ACTIONS(6494), + [anon_sym_if] = ACTIONS(6494), + [sym_primitive_type] = ACTIONS(6494), + [sym_false] = ACTIONS(6494), + [sym_nullptr] = ACTIONS(6494), + [anon_sym_do] = ACTIONS(6494), + [anon_sym_template] = ACTIONS(6494), + [anon_sym_return] = ACTIONS(6494), + [anon_sym_TILDE] = ACTIONS(6496), + [anon_sym_SEMI] = ACTIONS(6496), + [aux_sym_preproc_def_token1] = ACTIONS(6494), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_inline] = ACTIONS(6494), + [anon_sym_PLUS_PLUS] = ACTIONS(6496), + [anon_sym_restrict] = ACTIONS(6494), }, - [3947] = { - [anon_sym_DASH] = ACTIONS(7138), - [sym_raw_string_literal] = ACTIONS(7140), - [sym_true] = ACTIONS(7138), - [anon_sym_mutable] = ACTIONS(7138), - [sym_null] = ACTIONS(7138), - [anon_sym_break] = ACTIONS(7138), - [aux_sym_preproc_if_token2] = ACTIONS(7138), - [anon_sym_BANG] = ACTIONS(7140), - [anon_sym_sizeof] = ACTIONS(7138), - [anon_sym_volatile] = ACTIONS(7138), - [anon_sym_PLUS] = ACTIONS(7138), - [anon_sym_typedef] = ACTIONS(7138), - [anon_sym_switch] = ACTIONS(7138), - [anon_sym_explicit] = ACTIONS(7138), - [sym_identifier] = ACTIONS(7138), - [anon_sym_delete] = ACTIONS(7138), - [anon_sym_continue] = ACTIONS(7138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7138), - [anon_sym__Atomic] = ACTIONS(7138), - [sym_number_literal] = ACTIONS(7140), - [anon_sym_extern] = ACTIONS(7138), - [anon_sym_enum] = ACTIONS(7138), - [anon_sym_constexpr] = ACTIONS(7138), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7140), - [anon_sym_namespace] = ACTIONS(7138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7138), - [aux_sym_preproc_elif_token1] = ACTIONS(7138), - [anon_sym_SQUOTE] = ACTIONS(7140), - [anon_sym_LBRACE] = ACTIONS(7140), - [anon_sym_DASH_DASH] = ACTIONS(7140), - [anon_sym_LPAREN2] = ACTIONS(7140), - [anon_sym_struct] = ACTIONS(7138), - [sym_auto] = ACTIONS(7138), - [anon_sym_signed] = ACTIONS(7138), - [anon_sym_long] = ACTIONS(7138), - [anon_sym_COLON_COLON] = ACTIONS(7140), - [anon_sym_using] = ACTIONS(7138), - [aux_sym_preproc_else_token1] = ACTIONS(7138), - [sym_preproc_directive] = ACTIONS(7138), - [aux_sym_preproc_if_token1] = ACTIONS(7138), - [anon_sym_AMP] = ACTIONS(7138), - [anon_sym_static] = ACTIONS(7138), - [anon_sym_STAR] = ACTIONS(7140), - [anon_sym_union] = ACTIONS(7138), - [anon_sym_typename] = ACTIONS(7138), - [anon_sym_short] = ACTIONS(7138), - [anon_sym_new] = ACTIONS(7138), - [anon_sym_goto] = ACTIONS(7138), - [sym_operator_name] = ACTIONS(7140), - [anon_sym_while] = ACTIONS(7138), - [anon_sym_try] = ACTIONS(7138), - [anon_sym_for] = ACTIONS(7138), - [aux_sym_preproc_include_token1] = ACTIONS(7138), - [anon_sym_register] = ACTIONS(7138), - [anon_sym_DQUOTE] = ACTIONS(7140), - [anon_sym_const] = ACTIONS(7138), - [anon_sym_LBRACK] = ACTIONS(7138), - [anon_sym_class] = ACTIONS(7138), - [anon_sym_if] = ACTIONS(7138), - [sym_primitive_type] = ACTIONS(7138), - [sym_false] = ACTIONS(7138), - [sym_nullptr] = ACTIONS(7138), - [anon_sym_do] = ACTIONS(7138), - [anon_sym_template] = ACTIONS(7138), - [anon_sym_return] = ACTIONS(7138), - [anon_sym_TILDE] = ACTIONS(7140), - [anon_sym_SEMI] = ACTIONS(7140), - [aux_sym_preproc_def_token1] = ACTIONS(7138), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_inline] = ACTIONS(7138), - [anon_sym_PLUS_PLUS] = ACTIONS(7140), - [anon_sym_restrict] = ACTIONS(7138), + [3921] = { + [anon_sym_DASH] = ACTIONS(7129), + [sym_raw_string_literal] = ACTIONS(7131), + [sym_true] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [sym_null] = ACTIONS(7129), + [anon_sym_break] = ACTIONS(7129), + [aux_sym_preproc_if_token2] = ACTIONS(7129), + [anon_sym_BANG] = ACTIONS(7131), + [anon_sym_sizeof] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_typedef] = ACTIONS(7129), + [anon_sym_switch] = ACTIONS(7129), + [anon_sym_explicit] = ACTIONS(7129), + [sym_identifier] = ACTIONS(7129), + [anon_sym_delete] = ACTIONS(7129), + [anon_sym_continue] = ACTIONS(7129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [sym_number_literal] = ACTIONS(7131), + [anon_sym_extern] = ACTIONS(7129), + [anon_sym_enum] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7131), + [anon_sym_namespace] = ACTIONS(7129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7129), + [aux_sym_preproc_elif_token1] = ACTIONS(7129), + [anon_sym_SQUOTE] = ACTIONS(7131), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_struct] = ACTIONS(7129), + [sym_auto] = ACTIONS(7129), + [anon_sym_signed] = ACTIONS(7129), + [anon_sym_long] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(7131), + [anon_sym_using] = ACTIONS(7129), + [aux_sym_preproc_else_token1] = ACTIONS(7129), + [sym_preproc_directive] = ACTIONS(7129), + [aux_sym_preproc_if_token1] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_static] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7131), + [anon_sym_union] = ACTIONS(7129), + [anon_sym_typename] = ACTIONS(7129), + [anon_sym_short] = ACTIONS(7129), + [anon_sym_new] = ACTIONS(7129), + [anon_sym_goto] = ACTIONS(7129), + [sym_operator_name] = ACTIONS(7131), + [anon_sym_while] = ACTIONS(7129), + [anon_sym_try] = ACTIONS(7129), + [anon_sym_for] = ACTIONS(7129), + [aux_sym_preproc_include_token1] = ACTIONS(7129), + [anon_sym_register] = ACTIONS(7129), + [anon_sym_DQUOTE] = ACTIONS(7131), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_class] = ACTIONS(7129), + [anon_sym_if] = ACTIONS(7129), + [sym_primitive_type] = ACTIONS(7129), + [sym_false] = ACTIONS(7129), + [sym_nullptr] = ACTIONS(7129), + [anon_sym_do] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_return] = ACTIONS(7129), + [anon_sym_TILDE] = ACTIONS(7131), + [anon_sym_SEMI] = ACTIONS(7131), + [aux_sym_preproc_def_token1] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_inline] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_restrict] = ACTIONS(7129), }, - [3948] = { - [anon_sym_DASH] = ACTIONS(7475), - [sym_raw_string_literal] = ACTIONS(7477), - [sym_true] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [sym_null] = ACTIONS(7475), - [anon_sym_break] = ACTIONS(7475), - [aux_sym_preproc_if_token2] = ACTIONS(7475), - [anon_sym_BANG] = ACTIONS(7477), - [anon_sym_sizeof] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_PLUS] = ACTIONS(7475), - [anon_sym_typedef] = ACTIONS(7475), - [anon_sym_switch] = ACTIONS(7475), - [anon_sym_explicit] = ACTIONS(7475), - [sym_identifier] = ACTIONS(7475), - [anon_sym_delete] = ACTIONS(7475), - [anon_sym_continue] = ACTIONS(7475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [sym_number_literal] = ACTIONS(7477), - [anon_sym_extern] = ACTIONS(7475), - [anon_sym_enum] = ACTIONS(7475), - [anon_sym_constexpr] = ACTIONS(7475), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7477), - [anon_sym_namespace] = ACTIONS(7475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7475), - [aux_sym_preproc_elif_token1] = ACTIONS(7475), - [anon_sym_SQUOTE] = ACTIONS(7477), - [anon_sym_LBRACE] = ACTIONS(7477), - [anon_sym_DASH_DASH] = ACTIONS(7477), - [anon_sym_LPAREN2] = ACTIONS(7477), - [anon_sym_struct] = ACTIONS(7475), - [sym_auto] = ACTIONS(7475), - [anon_sym_signed] = ACTIONS(7475), - [anon_sym_long] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7477), - [anon_sym_using] = ACTIONS(7475), - [aux_sym_preproc_else_token1] = ACTIONS(7475), - [sym_preproc_directive] = ACTIONS(7475), - [aux_sym_preproc_if_token1] = ACTIONS(7475), - [anon_sym_AMP] = ACTIONS(7475), - [anon_sym_static] = ACTIONS(7475), - [anon_sym_STAR] = ACTIONS(7477), - [anon_sym_union] = ACTIONS(7475), - [anon_sym_typename] = ACTIONS(7475), - [anon_sym_short] = ACTIONS(7475), - [anon_sym_new] = ACTIONS(7475), - [anon_sym_goto] = ACTIONS(7475), - [sym_operator_name] = ACTIONS(7477), - [anon_sym_while] = ACTIONS(7475), - [anon_sym_try] = ACTIONS(7475), - [anon_sym_for] = ACTIONS(7475), - [aux_sym_preproc_include_token1] = ACTIONS(7475), - [anon_sym_register] = ACTIONS(7475), - [anon_sym_DQUOTE] = ACTIONS(7477), - [anon_sym_const] = ACTIONS(7475), - [anon_sym_LBRACK] = ACTIONS(7475), - [anon_sym_class] = ACTIONS(7475), - [anon_sym_if] = ACTIONS(7475), - [sym_primitive_type] = ACTIONS(7475), - [sym_false] = ACTIONS(7475), - [sym_nullptr] = ACTIONS(7475), - [anon_sym_do] = ACTIONS(7475), - [anon_sym_template] = ACTIONS(7475), - [anon_sym_return] = ACTIONS(7475), - [anon_sym_TILDE] = ACTIONS(7477), - [anon_sym_SEMI] = ACTIONS(7477), - [aux_sym_preproc_def_token1] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7477), - [anon_sym_inline] = ACTIONS(7475), - [anon_sym_PLUS_PLUS] = ACTIONS(7477), - [anon_sym_restrict] = ACTIONS(7475), + [3922] = { + [anon_sym_DASH] = ACTIONS(7459), + [sym_raw_string_literal] = ACTIONS(7461), + [sym_true] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [sym_null] = ACTIONS(7459), + [anon_sym_break] = ACTIONS(7459), + [aux_sym_preproc_if_token2] = ACTIONS(7459), + [anon_sym_BANG] = ACTIONS(7461), + [anon_sym_sizeof] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_typedef] = ACTIONS(7459), + [anon_sym_switch] = ACTIONS(7459), + [anon_sym_explicit] = ACTIONS(7459), + [sym_identifier] = ACTIONS(7459), + [anon_sym_delete] = ACTIONS(7459), + [anon_sym_continue] = ACTIONS(7459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [sym_number_literal] = ACTIONS(7461), + [anon_sym_extern] = ACTIONS(7459), + [anon_sym_enum] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7461), + [anon_sym_namespace] = ACTIONS(7459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7459), + [aux_sym_preproc_elif_token1] = ACTIONS(7459), + [anon_sym_SQUOTE] = ACTIONS(7461), + [anon_sym_LBRACE] = ACTIONS(7461), + [anon_sym_DASH_DASH] = ACTIONS(7461), + [anon_sym_LPAREN2] = ACTIONS(7461), + [anon_sym_struct] = ACTIONS(7459), + [sym_auto] = ACTIONS(7459), + [anon_sym_signed] = ACTIONS(7459), + [anon_sym_long] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7461), + [anon_sym_using] = ACTIONS(7459), + [aux_sym_preproc_else_token1] = ACTIONS(7459), + [sym_preproc_directive] = ACTIONS(7459), + [aux_sym_preproc_if_token1] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_static] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7461), + [anon_sym_union] = ACTIONS(7459), + [anon_sym_typename] = ACTIONS(7459), + [anon_sym_short] = ACTIONS(7459), + [anon_sym_new] = ACTIONS(7459), + [anon_sym_goto] = ACTIONS(7459), + [sym_operator_name] = ACTIONS(7461), + [anon_sym_while] = ACTIONS(7459), + [anon_sym_try] = ACTIONS(7459), + [anon_sym_for] = ACTIONS(7459), + [aux_sym_preproc_include_token1] = ACTIONS(7459), + [anon_sym_register] = ACTIONS(7459), + [anon_sym_DQUOTE] = ACTIONS(7461), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_LBRACK] = ACTIONS(7459), + [anon_sym_class] = ACTIONS(7459), + [anon_sym_if] = ACTIONS(7459), + [sym_primitive_type] = ACTIONS(7459), + [sym_false] = ACTIONS(7459), + [sym_nullptr] = ACTIONS(7459), + [anon_sym_do] = ACTIONS(7459), + [anon_sym_template] = ACTIONS(7459), + [anon_sym_return] = ACTIONS(7459), + [anon_sym_TILDE] = ACTIONS(7461), + [anon_sym_SEMI] = ACTIONS(7461), + [aux_sym_preproc_def_token1] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_inline] = ACTIONS(7459), + [anon_sym_PLUS_PLUS] = ACTIONS(7461), + [anon_sym_restrict] = ACTIONS(7459), }, - [3949] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(4384), - [anon_sym_LPAREN2] = ACTIONS(587), + [3923] = { + [aux_sym_type_definition_repeat2] = STATE(4356), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(9535), + [anon_sym_SEMI] = ACTIONS(9503), }, - [3950] = { - [anon_sym_DASH] = ACTIONS(4149), - [sym_raw_string_literal] = ACTIONS(4151), - [sym_true] = ACTIONS(4149), - [anon_sym_mutable] = ACTIONS(4149), - [sym_null] = ACTIONS(4149), - [anon_sym_break] = ACTIONS(4149), - [aux_sym_preproc_if_token2] = ACTIONS(4149), - [anon_sym_BANG] = ACTIONS(4151), - [anon_sym_sizeof] = ACTIONS(4149), - [anon_sym_volatile] = ACTIONS(4149), - [anon_sym_PLUS] = ACTIONS(4149), - [anon_sym_typedef] = ACTIONS(4149), - [anon_sym_switch] = ACTIONS(4149), - [anon_sym_explicit] = ACTIONS(4149), - [sym_identifier] = ACTIONS(4149), - [anon_sym_delete] = ACTIONS(4149), - [anon_sym_continue] = ACTIONS(4149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4149), - [anon_sym__Atomic] = ACTIONS(4149), - [sym_number_literal] = ACTIONS(4151), - [anon_sym_extern] = ACTIONS(4149), - [anon_sym_enum] = ACTIONS(4149), - [anon_sym_constexpr] = ACTIONS(4149), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4151), - [anon_sym_namespace] = ACTIONS(4149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4149), - [anon_sym_SQUOTE] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4151), - [anon_sym_DASH_DASH] = ACTIONS(4151), - [anon_sym_LPAREN2] = ACTIONS(4151), - [anon_sym_struct] = ACTIONS(4149), - [sym_auto] = ACTIONS(4149), - [anon_sym_signed] = ACTIONS(4149), - [anon_sym_long] = ACTIONS(4149), - [anon_sym_COLON_COLON] = ACTIONS(4151), - [anon_sym_using] = ACTIONS(4149), - [sym_preproc_directive] = ACTIONS(4149), - [aux_sym_preproc_if_token1] = ACTIONS(4149), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_union] = ACTIONS(4149), - [anon_sym_typename] = ACTIONS(4149), - [anon_sym_short] = ACTIONS(4149), - [anon_sym_new] = ACTIONS(4149), - [anon_sym_goto] = ACTIONS(4149), - [sym_operator_name] = ACTIONS(4151), - [anon_sym_while] = ACTIONS(4149), - [anon_sym_try] = ACTIONS(4149), - [anon_sym_for] = ACTIONS(4149), - [aux_sym_preproc_include_token1] = ACTIONS(4149), - [anon_sym_register] = ACTIONS(4149), - [anon_sym_DQUOTE] = ACTIONS(4151), - [anon_sym_const] = ACTIONS(4149), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_if] = ACTIONS(4149), - [sym_primitive_type] = ACTIONS(4149), - [sym_false] = ACTIONS(4149), - [sym_nullptr] = ACTIONS(4149), - [anon_sym_do] = ACTIONS(4149), - [anon_sym_template] = ACTIONS(4149), - [anon_sym_return] = ACTIONS(4149), - [anon_sym_TILDE] = ACTIONS(4151), - [anon_sym_SEMI] = ACTIONS(4151), - [aux_sym_preproc_def_token1] = ACTIONS(4149), - [anon_sym_AMP_AMP] = ACTIONS(4151), - [anon_sym_inline] = ACTIONS(4149), - [anon_sym_PLUS_PLUS] = ACTIONS(4151), - [anon_sym_restrict] = ACTIONS(4149), + [3924] = { + [anon_sym_DASH] = ACTIONS(4147), + [sym_raw_string_literal] = ACTIONS(4149), + [sym_true] = ACTIONS(4147), + [anon_sym_mutable] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [aux_sym_preproc_if_token2] = ACTIONS(4147), + [anon_sym_BANG] = ACTIONS(4149), + [anon_sym_sizeof] = ACTIONS(4147), + [anon_sym_volatile] = ACTIONS(4147), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_typedef] = ACTIONS(4147), + [anon_sym_switch] = ACTIONS(4147), + [anon_sym_explicit] = ACTIONS(4147), + [sym_identifier] = ACTIONS(4147), + [anon_sym_delete] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4147), + [anon_sym__Atomic] = ACTIONS(4147), + [sym_number_literal] = ACTIONS(4149), + [anon_sym_extern] = ACTIONS(4147), + [anon_sym_enum] = ACTIONS(4147), + [anon_sym_constexpr] = ACTIONS(4147), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4149), + [anon_sym_namespace] = ACTIONS(4147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_struct] = ACTIONS(4147), + [sym_auto] = ACTIONS(4147), + [anon_sym_signed] = ACTIONS(4147), + [anon_sym_long] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_using] = ACTIONS(4147), + [sym_preproc_directive] = ACTIONS(4147), + [aux_sym_preproc_if_token1] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_static] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_union] = ACTIONS(4147), + [anon_sym_typename] = ACTIONS(4147), + [anon_sym_short] = ACTIONS(4147), + [anon_sym_new] = ACTIONS(4147), + [anon_sym_goto] = ACTIONS(4147), + [sym_operator_name] = ACTIONS(4149), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_for] = ACTIONS(4147), + [aux_sym_preproc_include_token1] = ACTIONS(4147), + [anon_sym_register] = ACTIONS(4147), + [anon_sym_DQUOTE] = ACTIONS(4149), + [anon_sym_const] = ACTIONS(4147), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [sym_primitive_type] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_nullptr] = ACTIONS(4147), + [anon_sym_do] = ACTIONS(4147), + [anon_sym_template] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_TILDE] = ACTIONS(4149), + [anon_sym_SEMI] = ACTIONS(4149), + [aux_sym_preproc_def_token1] = ACTIONS(4147), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_restrict] = ACTIONS(4147), }, - [3951] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [3925] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(9535), + [anon_sym_SEMI] = ACTIONS(9503), }, - [3952] = { - [anon_sym_DASH] = ACTIONS(4159), - [sym_raw_string_literal] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [sym_true] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [sym_null] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [aux_sym_preproc_if_token2] = ACTIONS(4159), - [anon_sym_BANG] = ACTIONS(4161), - [anon_sym_sizeof] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_typedef] = ACTIONS(4159), - [anon_sym_switch] = ACTIONS(4159), - [anon_sym_explicit] = ACTIONS(4159), - [sym_identifier] = ACTIONS(4159), - [anon_sym_delete] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [sym_number_literal] = ACTIONS(4161), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym_enum] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4161), - [anon_sym_namespace] = ACTIONS(4159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [anon_sym_LBRACE] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_struct] = ACTIONS(4159), - [sym_auto] = ACTIONS(4159), - [anon_sym_signed] = ACTIONS(4159), - [anon_sym_long] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_using] = ACTIONS(4159), - [sym_preproc_directive] = ACTIONS(4159), - [aux_sym_preproc_if_token1] = ACTIONS(4159), - [anon_sym_AMP] = ACTIONS(4159), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [anon_sym_union] = ACTIONS(4159), - [anon_sym_typename] = ACTIONS(4159), - [anon_sym_short] = ACTIONS(4159), - [anon_sym_new] = ACTIONS(4159), - [anon_sym_goto] = ACTIONS(4159), - [sym_operator_name] = ACTIONS(4161), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_for] = ACTIONS(4159), - [aux_sym_preproc_include_token1] = ACTIONS(4159), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_DQUOTE] = ACTIONS(4161), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_LBRACK] = ACTIONS(4159), - [anon_sym_class] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [sym_primitive_type] = ACTIONS(4159), - [sym_false] = ACTIONS(4159), - [sym_nullptr] = ACTIONS(4159), - [anon_sym_do] = ACTIONS(4159), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4161), - [anon_sym_SEMI] = ACTIONS(4161), - [aux_sym_preproc_def_token1] = ACTIONS(4159), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_restrict] = ACTIONS(4159), + [3926] = { + [anon_sym_DASH] = ACTIONS(4157), + [sym_raw_string_literal] = ACTIONS(4159), + [anon_sym_else] = ACTIONS(4157), + [sym_true] = ACTIONS(4157), + [anon_sym_mutable] = ACTIONS(4157), + [sym_null] = ACTIONS(4157), + [anon_sym_break] = ACTIONS(4157), + [aux_sym_preproc_if_token2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(4159), + [anon_sym_sizeof] = ACTIONS(4157), + [anon_sym_volatile] = ACTIONS(4157), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_typedef] = ACTIONS(4157), + [anon_sym_switch] = ACTIONS(4157), + [anon_sym_explicit] = ACTIONS(4157), + [sym_identifier] = ACTIONS(4157), + [anon_sym_delete] = ACTIONS(4157), + [anon_sym_continue] = ACTIONS(4157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4157), + [anon_sym__Atomic] = ACTIONS(4157), + [sym_number_literal] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4157), + [anon_sym_enum] = ACTIONS(4157), + [anon_sym_constexpr] = ACTIONS(4157), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4159), + [anon_sym_namespace] = ACTIONS(4157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4157), + [anon_sym_SQUOTE] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4159), + [anon_sym_DASH_DASH] = ACTIONS(4159), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_struct] = ACTIONS(4157), + [sym_auto] = ACTIONS(4157), + [anon_sym_signed] = ACTIONS(4157), + [anon_sym_long] = ACTIONS(4157), + [anon_sym_COLON_COLON] = ACTIONS(4159), + [anon_sym_using] = ACTIONS(4157), + [sym_preproc_directive] = ACTIONS(4157), + [aux_sym_preproc_if_token1] = ACTIONS(4157), + [anon_sym_AMP] = ACTIONS(4157), + [anon_sym_static] = ACTIONS(4157), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_union] = ACTIONS(4157), + [anon_sym_typename] = ACTIONS(4157), + [anon_sym_short] = ACTIONS(4157), + [anon_sym_new] = ACTIONS(4157), + [anon_sym_goto] = ACTIONS(4157), + [sym_operator_name] = ACTIONS(4159), + [anon_sym_while] = ACTIONS(4157), + [anon_sym_try] = ACTIONS(4157), + [anon_sym_for] = ACTIONS(4157), + [aux_sym_preproc_include_token1] = ACTIONS(4157), + [anon_sym_register] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4157), + [anon_sym_LBRACK] = ACTIONS(4157), + [anon_sym_class] = ACTIONS(4157), + [anon_sym_if] = ACTIONS(4157), + [sym_primitive_type] = ACTIONS(4157), + [sym_false] = ACTIONS(4157), + [sym_nullptr] = ACTIONS(4157), + [anon_sym_do] = ACTIONS(4157), + [anon_sym_template] = ACTIONS(4157), + [anon_sym_return] = ACTIONS(4157), + [anon_sym_TILDE] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4159), + [aux_sym_preproc_def_token1] = ACTIONS(4157), + [anon_sym_AMP_AMP] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4157), + [anon_sym_PLUS_PLUS] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4157), }, - [3953] = { - [sym_do_statement] = STATE(2078), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [3927] = { + [sym_do_statement] = STATE(2067), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(2078), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(2078), - [sym_if_statement] = STATE(2078), - [sym_switch_statement] = STATE(2078), - [sym_for_statement] = STATE(2078), - [sym_return_statement] = STATE(2078), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2067), + [sym_try_statement] = STATE(2067), + [aux_sym_switch_body_repeat1] = STATE(2067), + [sym_if_statement] = STATE(2067), + [sym_switch_statement] = STATE(2067), + [sym_for_statement] = STATE(2067), + [sym_return_statement] = STATE(2067), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(2078), - [aux_sym_switch_body_repeat1] = STATE(2078), - [sym_case_statement] = STATE(2078), - [sym_break_statement] = STATE(2078), - [sym_continue_statement] = STATE(2078), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(2067), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2067), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2078), - [sym_labeled_statement] = STATE(2078), - [sym_expression_statement] = STATE(2078), - [sym_while_statement] = STATE(2078), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(2067), + [sym_for_range_loop] = STATE(2067), + [sym_compound_statement] = STATE(2067), + [sym_labeled_statement] = STATE(2067), + [sym_expression_statement] = STATE(2067), + [sym_while_statement] = STATE(2067), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(9537), + [anon_sym_RBRACE] = ACTIONS(9505), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3954] = { + [3928] = { [anon_sym_DASH] = ACTIONS(4645), [sym_raw_string_literal] = ACTIONS(4647), [sym_true] = ACTIONS(4645), @@ -161126,2008 +160620,1900 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(4647), [anon_sym_restrict] = ACTIONS(4645), }, - [3955] = { - [aux_sym_preproc_if_token2] = ACTIONS(9539), + [3929] = { + [aux_sym_preproc_if_token2] = ACTIONS(9507), [sym_comment] = ACTIONS(3), }, - [3956] = { - [anon_sym_DASH] = ACTIONS(4856), - [sym_raw_string_literal] = ACTIONS(4858), - [sym_true] = ACTIONS(4856), - [anon_sym_mutable] = ACTIONS(4856), - [sym_null] = ACTIONS(4856), - [anon_sym_break] = ACTIONS(4856), - [aux_sym_preproc_if_token2] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(4858), - [anon_sym_sizeof] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_typedef] = ACTIONS(4856), - [anon_sym_switch] = ACTIONS(4856), - [anon_sym_explicit] = ACTIONS(4856), - [sym_identifier] = ACTIONS(4856), - [anon_sym_delete] = ACTIONS(4856), - [anon_sym_continue] = ACTIONS(4856), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4856), - [anon_sym__Atomic] = ACTIONS(4856), - [sym_number_literal] = ACTIONS(4858), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym_enum] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4856), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4856), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4858), - [anon_sym_namespace] = ACTIONS(4856), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4856), - [anon_sym_SQUOTE] = ACTIONS(4858), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_LPAREN2] = ACTIONS(4858), - [anon_sym_struct] = ACTIONS(4856), - [sym_auto] = ACTIONS(4856), - [anon_sym_signed] = ACTIONS(4856), - [anon_sym_long] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4858), - [anon_sym_using] = ACTIONS(4856), - [sym_preproc_directive] = ACTIONS(4856), - [aux_sym_preproc_if_token1] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4858), - [anon_sym_union] = ACTIONS(4856), - [anon_sym_typename] = ACTIONS(4856), - [anon_sym_short] = ACTIONS(4856), - [anon_sym_new] = ACTIONS(4856), - [anon_sym_goto] = ACTIONS(4856), - [sym_operator_name] = ACTIONS(4858), - [anon_sym_while] = ACTIONS(4856), - [anon_sym_try] = ACTIONS(4856), - [anon_sym_for] = ACTIONS(4856), - [aux_sym_preproc_include_token1] = ACTIONS(4856), - [anon_sym_register] = ACTIONS(4856), - [anon_sym_DQUOTE] = ACTIONS(4858), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_LBRACK] = ACTIONS(4856), - [anon_sym_class] = ACTIONS(4856), - [anon_sym_if] = ACTIONS(4856), - [sym_primitive_type] = ACTIONS(4856), - [sym_false] = ACTIONS(4856), - [sym_nullptr] = ACTIONS(4856), - [anon_sym_do] = ACTIONS(4856), - [anon_sym_template] = ACTIONS(4856), - [anon_sym_return] = ACTIONS(4856), - [anon_sym_TILDE] = ACTIONS(4858), - [anon_sym_SEMI] = ACTIONS(4858), - [aux_sym_preproc_def_token1] = ACTIONS(4856), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym_PLUS_PLUS] = ACTIONS(4858), - [anon_sym_restrict] = ACTIONS(4856), + [3930] = { + [anon_sym_DASH] = ACTIONS(4852), + [sym_raw_string_literal] = ACTIONS(4854), + [sym_true] = ACTIONS(4852), + [anon_sym_mutable] = ACTIONS(4852), + [sym_null] = ACTIONS(4852), + [anon_sym_break] = ACTIONS(4852), + [aux_sym_preproc_if_token2] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_sizeof] = ACTIONS(4852), + [anon_sym_volatile] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_typedef] = ACTIONS(4852), + [anon_sym_switch] = ACTIONS(4852), + [anon_sym_explicit] = ACTIONS(4852), + [sym_identifier] = ACTIONS(4852), + [anon_sym_delete] = ACTIONS(4852), + [anon_sym_continue] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4852), + [anon_sym__Atomic] = ACTIONS(4852), + [sym_number_literal] = ACTIONS(4854), + [anon_sym_extern] = ACTIONS(4852), + [anon_sym_enum] = ACTIONS(4852), + [anon_sym_constexpr] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4852), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4854), + [anon_sym_namespace] = ACTIONS(4852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4852), + [anon_sym_SQUOTE] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4854), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_LPAREN2] = ACTIONS(4854), + [anon_sym_struct] = ACTIONS(4852), + [sym_auto] = ACTIONS(4852), + [anon_sym_signed] = ACTIONS(4852), + [anon_sym_long] = ACTIONS(4852), + [anon_sym_COLON_COLON] = ACTIONS(4854), + [anon_sym_using] = ACTIONS(4852), + [sym_preproc_directive] = ACTIONS(4852), + [aux_sym_preproc_if_token1] = ACTIONS(4852), + [anon_sym_AMP] = ACTIONS(4852), + [anon_sym_static] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_union] = ACTIONS(4852), + [anon_sym_typename] = ACTIONS(4852), + [anon_sym_short] = ACTIONS(4852), + [anon_sym_new] = ACTIONS(4852), + [anon_sym_goto] = ACTIONS(4852), + [sym_operator_name] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4852), + [anon_sym_for] = ACTIONS(4852), + [aux_sym_preproc_include_token1] = ACTIONS(4852), + [anon_sym_register] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4854), + [anon_sym_const] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_class] = ACTIONS(4852), + [anon_sym_if] = ACTIONS(4852), + [sym_primitive_type] = ACTIONS(4852), + [sym_false] = ACTIONS(4852), + [sym_nullptr] = ACTIONS(4852), + [anon_sym_do] = ACTIONS(4852), + [anon_sym_template] = ACTIONS(4852), + [anon_sym_return] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4854), + [aux_sym_preproc_def_token1] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4854), + [anon_sym_restrict] = ACTIONS(4852), }, - [3957] = { - [anon_sym_DASH] = ACTIONS(5245), - [sym_raw_string_literal] = ACTIONS(5247), - [sym_true] = ACTIONS(5245), - [anon_sym_mutable] = ACTIONS(5245), - [sym_null] = ACTIONS(5245), - [anon_sym_break] = ACTIONS(5245), - [aux_sym_preproc_if_token2] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_sizeof] = ACTIONS(5245), - [anon_sym_volatile] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_typedef] = ACTIONS(5245), - [anon_sym_switch] = ACTIONS(5245), - [anon_sym_explicit] = ACTIONS(5245), - [sym_identifier] = ACTIONS(5245), - [anon_sym_delete] = ACTIONS(5245), - [anon_sym_continue] = ACTIONS(5245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5245), - [anon_sym__Atomic] = ACTIONS(5245), - [sym_number_literal] = ACTIONS(5247), - [anon_sym_extern] = ACTIONS(5245), - [anon_sym_enum] = ACTIONS(5245), - [anon_sym_constexpr] = ACTIONS(5245), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5247), - [anon_sym_namespace] = ACTIONS(5245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5245), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5247), - [anon_sym_DASH_DASH] = ACTIONS(5247), - [anon_sym_LPAREN2] = ACTIONS(5247), - [anon_sym_struct] = ACTIONS(5245), - [sym_auto] = ACTIONS(5245), - [anon_sym_signed] = ACTIONS(5245), - [anon_sym_long] = ACTIONS(5245), - [anon_sym_COLON_COLON] = ACTIONS(5247), - [anon_sym_using] = ACTIONS(5245), - [sym_preproc_directive] = ACTIONS(5245), - [aux_sym_preproc_if_token1] = ACTIONS(5245), - [anon_sym_AMP] = ACTIONS(5245), - [anon_sym_static] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_union] = ACTIONS(5245), - [anon_sym_typename] = ACTIONS(5245), - [anon_sym_short] = ACTIONS(5245), - [anon_sym_new] = ACTIONS(5245), - [anon_sym_goto] = ACTIONS(5245), - [sym_operator_name] = ACTIONS(5247), - [anon_sym_while] = ACTIONS(5245), - [anon_sym_try] = ACTIONS(5245), - [anon_sym_for] = ACTIONS(5245), - [aux_sym_preproc_include_token1] = ACTIONS(5245), - [anon_sym_register] = ACTIONS(5245), - [anon_sym_DQUOTE] = ACTIONS(5247), - [anon_sym_const] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_class] = ACTIONS(5245), - [anon_sym_if] = ACTIONS(5245), - [sym_primitive_type] = ACTIONS(5245), - [sym_false] = ACTIONS(5245), - [sym_nullptr] = ACTIONS(5245), - [anon_sym_do] = ACTIONS(5245), - [anon_sym_template] = ACTIONS(5245), - [anon_sym_return] = ACTIONS(5245), - [anon_sym_TILDE] = ACTIONS(5247), - [anon_sym_SEMI] = ACTIONS(5247), - [aux_sym_preproc_def_token1] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5247), - [anon_sym_inline] = ACTIONS(5245), - [anon_sym_PLUS_PLUS] = ACTIONS(5247), - [anon_sym_restrict] = ACTIONS(5245), + [3931] = { + [anon_sym_DASH] = ACTIONS(5244), + [sym_raw_string_literal] = ACTIONS(5246), + [sym_true] = ACTIONS(5244), + [anon_sym_mutable] = ACTIONS(5244), + [sym_null] = ACTIONS(5244), + [anon_sym_break] = ACTIONS(5244), + [aux_sym_preproc_if_token2] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5246), + [anon_sym_sizeof] = ACTIONS(5244), + [anon_sym_volatile] = ACTIONS(5244), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_typedef] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5244), + [anon_sym_explicit] = ACTIONS(5244), + [sym_identifier] = ACTIONS(5244), + [anon_sym_delete] = ACTIONS(5244), + [anon_sym_continue] = ACTIONS(5244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5244), + [anon_sym__Atomic] = ACTIONS(5244), + [sym_number_literal] = ACTIONS(5246), + [anon_sym_extern] = ACTIONS(5244), + [anon_sym_enum] = ACTIONS(5244), + [anon_sym_constexpr] = ACTIONS(5244), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5246), + [anon_sym_namespace] = ACTIONS(5244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5246), + [anon_sym_LPAREN2] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(5244), + [sym_auto] = ACTIONS(5244), + [anon_sym_signed] = ACTIONS(5244), + [anon_sym_long] = ACTIONS(5244), + [anon_sym_COLON_COLON] = ACTIONS(5246), + [anon_sym_using] = ACTIONS(5244), + [sym_preproc_directive] = ACTIONS(5244), + [aux_sym_preproc_if_token1] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_static] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_union] = ACTIONS(5244), + [anon_sym_typename] = ACTIONS(5244), + [anon_sym_short] = ACTIONS(5244), + [anon_sym_new] = ACTIONS(5244), + [anon_sym_goto] = ACTIONS(5244), + [sym_operator_name] = ACTIONS(5246), + [anon_sym_while] = ACTIONS(5244), + [anon_sym_try] = ACTIONS(5244), + [anon_sym_for] = ACTIONS(5244), + [aux_sym_preproc_include_token1] = ACTIONS(5244), + [anon_sym_register] = ACTIONS(5244), + [anon_sym_DQUOTE] = ACTIONS(5246), + [anon_sym_const] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5244), + [anon_sym_class] = ACTIONS(5244), + [anon_sym_if] = ACTIONS(5244), + [sym_primitive_type] = ACTIONS(5244), + [sym_false] = ACTIONS(5244), + [sym_nullptr] = ACTIONS(5244), + [anon_sym_do] = ACTIONS(5244), + [anon_sym_template] = ACTIONS(5244), + [anon_sym_return] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(5246), + [aux_sym_preproc_def_token1] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_inline] = ACTIONS(5244), + [anon_sym_PLUS_PLUS] = ACTIONS(5246), + [anon_sym_restrict] = ACTIONS(5244), }, - [3958] = { + [3932] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9541), + [anon_sym_SEMI] = ACTIONS(9509), }, - [3959] = { - [anon_sym_DASH] = ACTIONS(5261), - [sym_raw_string_literal] = ACTIONS(5263), - [sym_true] = ACTIONS(5261), - [anon_sym_mutable] = ACTIONS(5261), - [sym_null] = ACTIONS(5261), - [anon_sym_break] = ACTIONS(5261), - [aux_sym_preproc_if_token2] = ACTIONS(5261), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_sizeof] = ACTIONS(5261), - [anon_sym_volatile] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_typedef] = ACTIONS(5261), - [anon_sym_switch] = ACTIONS(5261), - [anon_sym_explicit] = ACTIONS(5261), - [sym_identifier] = ACTIONS(5261), - [anon_sym_delete] = ACTIONS(5261), - [anon_sym_continue] = ACTIONS(5261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5261), - [anon_sym__Atomic] = ACTIONS(5261), - [sym_number_literal] = ACTIONS(5263), - [anon_sym_extern] = ACTIONS(5261), - [anon_sym_enum] = ACTIONS(5261), - [anon_sym_constexpr] = ACTIONS(5261), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5263), - [anon_sym_namespace] = ACTIONS(5261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5261), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_LBRACE] = ACTIONS(5263), - [anon_sym_DASH_DASH] = ACTIONS(5263), - [anon_sym_LPAREN2] = ACTIONS(5263), - [anon_sym_struct] = ACTIONS(5261), - [sym_auto] = ACTIONS(5261), - [anon_sym_signed] = ACTIONS(5261), - [anon_sym_long] = ACTIONS(5261), - [anon_sym_COLON_COLON] = ACTIONS(5263), - [anon_sym_using] = ACTIONS(5261), - [sym_preproc_directive] = ACTIONS(5261), - [aux_sym_preproc_if_token1] = ACTIONS(5261), - [anon_sym_AMP] = ACTIONS(5261), - [anon_sym_static] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_union] = ACTIONS(5261), - [anon_sym_typename] = ACTIONS(5261), - [anon_sym_short] = ACTIONS(5261), - [anon_sym_new] = ACTIONS(5261), - [anon_sym_goto] = ACTIONS(5261), - [sym_operator_name] = ACTIONS(5263), - [anon_sym_while] = ACTIONS(5261), - [anon_sym_try] = ACTIONS(5261), - [anon_sym_for] = ACTIONS(5261), - [aux_sym_preproc_include_token1] = ACTIONS(5261), - [anon_sym_register] = ACTIONS(5261), - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_const] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_class] = ACTIONS(5261), - [anon_sym_if] = ACTIONS(5261), - [sym_primitive_type] = ACTIONS(5261), - [sym_false] = ACTIONS(5261), - [sym_nullptr] = ACTIONS(5261), - [anon_sym_do] = ACTIONS(5261), - [anon_sym_template] = ACTIONS(5261), - [anon_sym_return] = ACTIONS(5261), - [anon_sym_TILDE] = ACTIONS(5263), - [anon_sym_SEMI] = ACTIONS(5263), - [aux_sym_preproc_def_token1] = ACTIONS(5261), - [anon_sym_AMP_AMP] = ACTIONS(5263), - [anon_sym_inline] = ACTIONS(5261), - [anon_sym_PLUS_PLUS] = ACTIONS(5263), - [anon_sym_restrict] = ACTIONS(5261), + [3933] = { + [anon_sym_DASH] = ACTIONS(5260), + [sym_raw_string_literal] = ACTIONS(5262), + [sym_true] = ACTIONS(5260), + [anon_sym_mutable] = ACTIONS(5260), + [sym_null] = ACTIONS(5260), + [anon_sym_break] = ACTIONS(5260), + [aux_sym_preproc_if_token2] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5262), + [anon_sym_sizeof] = ACTIONS(5260), + [anon_sym_volatile] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_typedef] = ACTIONS(5260), + [anon_sym_switch] = ACTIONS(5260), + [anon_sym_explicit] = ACTIONS(5260), + [sym_identifier] = ACTIONS(5260), + [anon_sym_delete] = ACTIONS(5260), + [anon_sym_continue] = ACTIONS(5260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5260), + [anon_sym__Atomic] = ACTIONS(5260), + [sym_number_literal] = ACTIONS(5262), + [anon_sym_extern] = ACTIONS(5260), + [anon_sym_enum] = ACTIONS(5260), + [anon_sym_constexpr] = ACTIONS(5260), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5262), + [anon_sym_namespace] = ACTIONS(5260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_DASH_DASH] = ACTIONS(5262), + [anon_sym_LPAREN2] = ACTIONS(5262), + [anon_sym_struct] = ACTIONS(5260), + [sym_auto] = ACTIONS(5260), + [anon_sym_signed] = ACTIONS(5260), + [anon_sym_long] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5262), + [anon_sym_using] = ACTIONS(5260), + [sym_preproc_directive] = ACTIONS(5260), + [aux_sym_preproc_if_token1] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_static] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_union] = ACTIONS(5260), + [anon_sym_typename] = ACTIONS(5260), + [anon_sym_short] = ACTIONS(5260), + [anon_sym_new] = ACTIONS(5260), + [anon_sym_goto] = ACTIONS(5260), + [sym_operator_name] = ACTIONS(5262), + [anon_sym_while] = ACTIONS(5260), + [anon_sym_try] = ACTIONS(5260), + [anon_sym_for] = ACTIONS(5260), + [aux_sym_preproc_include_token1] = ACTIONS(5260), + [anon_sym_register] = ACTIONS(5260), + [anon_sym_DQUOTE] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5260), + [anon_sym_class] = ACTIONS(5260), + [anon_sym_if] = ACTIONS(5260), + [sym_primitive_type] = ACTIONS(5260), + [sym_false] = ACTIONS(5260), + [sym_nullptr] = ACTIONS(5260), + [anon_sym_do] = ACTIONS(5260), + [anon_sym_template] = ACTIONS(5260), + [anon_sym_return] = ACTIONS(5260), + [anon_sym_TILDE] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5262), + [aux_sym_preproc_def_token1] = ACTIONS(5260), + [anon_sym_AMP_AMP] = ACTIONS(5262), + [anon_sym_inline] = ACTIONS(5260), + [anon_sym_PLUS_PLUS] = ACTIONS(5262), + [anon_sym_restrict] = ACTIONS(5260), }, - [3960] = { - [aux_sym_preproc_if_token2] = ACTIONS(9543), + [3934] = { + [aux_sym_preproc_if_token2] = ACTIONS(9511), [sym_comment] = ACTIONS(3), }, - [3961] = { - [sym_compound_statement] = STATE(4389), - [anon_sym_LBRACE] = ACTIONS(2497), + [3935] = { + [sym_compound_statement] = STATE(4361), + [anon_sym_LBRACE] = ACTIONS(2499), [sym_comment] = ACTIONS(3), }, - [3962] = { - [aux_sym_try_statement_repeat1] = STATE(3962), - [sym_catch_clause] = STATE(3962), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [aux_sym_preproc_if_token2] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(9545), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_namespace] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_using] = ACTIONS(5353), - [sym_preproc_directive] = ACTIONS(5353), - [aux_sym_preproc_if_token1] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [sym_operator_name] = ACTIONS(5355), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [aux_sym_preproc_include_token1] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_template] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [aux_sym_preproc_def_token1] = ACTIONS(5353), - [anon_sym_AMP_AMP] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [3936] = { + [sym_catch_clause] = STATE(3936), + [aux_sym_try_statement_repeat1] = STATE(3936), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [aux_sym_preproc_if_token2] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(9513), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_namespace] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_using] = ACTIONS(5352), + [sym_preproc_directive] = ACTIONS(5352), + [aux_sym_preproc_if_token1] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [sym_operator_name] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [aux_sym_preproc_include_token1] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_template] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [aux_sym_preproc_def_token1] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [3963] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4391), - [sym_logical_expression] = STATE(4391), - [sym_bitwise_expression] = STATE(4391), - [sym_cast_expression] = STATE(4391), - [sym_new_expression] = STATE(4391), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4391), - [sym_char_literal] = STATE(4391), - [sym_template_function] = STATE(4391), - [sym_conditional_expression] = STATE(4391), - [sym_equality_expression] = STATE(4391), - [sym_relational_expression] = STATE(4391), - [sym_delete_expression] = STATE(4391), - [sym_sizeof_expression] = STATE(4391), - [sym_parenthesized_expression] = STATE(4391), - [sym_lambda_expression] = STATE(4391), - [sym_concatenated_string] = STATE(4391), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4391), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4391), - [sym_math_expression] = STATE(4391), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9548), + [3937] = { + [sym_template_function] = STATE(4363), + [sym__expression] = STATE(4363), + [sym_logical_expression] = STATE(4363), + [sym_bitwise_expression] = STATE(4363), + [sym_cast_expression] = STATE(4363), + [sym_delete_expression] = STATE(4363), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4363), + [sym_lambda_expression] = STATE(4363), + [sym_char_literal] = STATE(4363), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4363), + [sym_equality_expression] = STATE(4363), + [sym_relational_expression] = STATE(4363), + [sym_sizeof_expression] = STATE(4363), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4363), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4363), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4363), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4363), + [sym_math_expression] = STATE(4363), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4363), + [sym_raw_string_literal] = ACTIONS(9516), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(9550), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(9550), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(9518), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(9518), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9548), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(9516), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(9550), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(9550), + [sym_false] = ACTIONS(9518), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(9518), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(9552), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(9520), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [3964] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(9554), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3938] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(9522), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3965] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4393), - [sym_logical_expression] = STATE(4393), - [sym_bitwise_expression] = STATE(4393), - [sym_cast_expression] = STATE(4393), - [sym_new_expression] = STATE(4393), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4393), - [sym_char_literal] = STATE(4393), - [sym_template_function] = STATE(4393), - [sym_conditional_expression] = STATE(4393), - [sym_equality_expression] = STATE(4393), - [sym_relational_expression] = STATE(4393), - [sym_delete_expression] = STATE(4393), - [sym_sizeof_expression] = STATE(4393), - [sym_parenthesized_expression] = STATE(4393), - [sym_lambda_expression] = STATE(4393), - [sym_concatenated_string] = STATE(4393), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4393), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4393), - [sym_math_expression] = STATE(4393), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9556), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(9558), - [sym_null] = ACTIONS(9558), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9556), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(9558), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(9558), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(9554), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [3939] = { + [sym_template_function] = STATE(4365), + [sym__expression] = STATE(4365), + [sym_logical_expression] = STATE(4365), + [sym_bitwise_expression] = STATE(4365), + [sym_cast_expression] = STATE(4365), + [sym_delete_expression] = STATE(4365), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4365), + [sym_lambda_expression] = STATE(4365), + [sym_char_literal] = STATE(4365), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4365), + [sym_equality_expression] = STATE(4365), + [sym_relational_expression] = STATE(4365), + [sym_sizeof_expression] = STATE(4365), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4365), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4365), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4365), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4365), + [sym_math_expression] = STATE(4365), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4365), + [sym_raw_string_literal] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(9526), + [sym_null] = ACTIONS(9526), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9524), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(9526), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(9522), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [3966] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4394), - [sym_logical_expression] = STATE(4394), - [sym_bitwise_expression] = STATE(4394), - [sym_cast_expression] = STATE(4394), - [sym_new_expression] = STATE(4394), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4394), - [sym_char_literal] = STATE(4394), - [sym_template_function] = STATE(4394), - [sym_conditional_expression] = STATE(4394), - [sym_equality_expression] = STATE(4394), - [sym_relational_expression] = STATE(4394), - [sym_delete_expression] = STATE(4394), - [sym_sizeof_expression] = STATE(4394), - [sym_parenthesized_expression] = STATE(4394), - [sym_lambda_expression] = STATE(4394), - [sym_concatenated_string] = STATE(4394), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4394), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4394), - [sym_math_expression] = STATE(4394), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9560), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(9562), - [sym_null] = ACTIONS(9562), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9560), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(9562), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(9562), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [3940] = { + [sym_template_function] = STATE(4366), + [sym__expression] = STATE(4366), + [sym_logical_expression] = STATE(4366), + [sym_bitwise_expression] = STATE(4366), + [sym_cast_expression] = STATE(4366), + [sym_delete_expression] = STATE(4366), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4366), + [sym_lambda_expression] = STATE(4366), + [sym_char_literal] = STATE(4366), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4366), + [sym_equality_expression] = STATE(4366), + [sym_relational_expression] = STATE(4366), + [sym_sizeof_expression] = STATE(4366), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4366), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4366), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4366), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4366), + [sym_math_expression] = STATE(4366), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4366), + [sym_raw_string_literal] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(9530), + [sym_null] = ACTIONS(9530), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9528), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(9530), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(9530), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [3967] = { - [anon_sym_DASH] = ACTIONS(3186), - [sym_raw_string_literal] = ACTIONS(3184), - [sym_true] = ACTIONS(3186), - [anon_sym_mutable] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [aux_sym_preproc_if_token2] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_explicit] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_constexpr] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_struct] = ACTIONS(3186), - [sym_auto] = ACTIONS(3186), - [anon_sym_signed] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [aux_sym_preproc_if_token1] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_typename] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [sym_operator_name] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [aux_sym_preproc_include_token1] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_nullptr] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_template] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [aux_sym_preproc_def_token1] = ACTIONS(3186), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_restrict] = ACTIONS(3186), + [3941] = { + [anon_sym_DASH] = ACTIONS(3188), + [sym_raw_string_literal] = ACTIONS(3186), + [sym_true] = ACTIONS(3188), + [anon_sym_mutable] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [aux_sym_preproc_if_token2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3188), + [anon_sym_volatile] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_explicit] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3188), + [anon_sym__Atomic] = ACTIONS(3188), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_constexpr] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_struct] = ACTIONS(3188), + [sym_auto] = ACTIONS(3188), + [anon_sym_signed] = ACTIONS(3188), + [anon_sym_long] = ACTIONS(3188), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3188), + [sym_preproc_directive] = ACTIONS(3188), + [aux_sym_preproc_if_token1] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_short] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_goto] = ACTIONS(3188), + [sym_operator_name] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [aux_sym_preproc_include_token1] = ACTIONS(3188), + [anon_sym_register] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [sym_primitive_type] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_nullptr] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [aux_sym_preproc_def_token1] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_restrict] = ACTIONS(3188), }, - [3968] = { - [sym_do_statement] = STATE(4400), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [3942] = { + [sym_do_statement] = STATE(4372), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4400), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_switch_statement] = STATE(4400), - [sym_for_statement] = STATE(4400), - [sym_return_statement] = STATE(4400), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4372), + [sym_try_statement] = STATE(4372), + [sym_if_statement] = STATE(4372), + [sym_switch_statement] = STATE(4372), + [sym_for_statement] = STATE(4372), + [sym_return_statement] = STATE(4372), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4400), - [sym_break_statement] = STATE(4400), - [sym_continue_statement] = STATE(4400), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4372), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4400), - [sym_labeled_statement] = STATE(4400), - [sym_expression_statement] = STATE(4400), - [sym_while_statement] = STATE(4400), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4372), + [sym_for_range_loop] = STATE(4372), + [sym_compound_statement] = STATE(4372), + [sym_labeled_statement] = STATE(4372), + [sym_expression_statement] = STATE(4372), + [sym_while_statement] = STATE(4372), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3969] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9574), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3943] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(9542), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3970] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4402), - [sym_logical_expression] = STATE(4402), - [sym_bitwise_expression] = STATE(4402), - [sym_cast_expression] = STATE(4402), - [sym_new_expression] = STATE(4402), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4402), - [sym_char_literal] = STATE(4402), - [sym_comma_expression] = STATE(4403), - [sym_template_function] = STATE(4402), - [sym_conditional_expression] = STATE(4402), - [sym_equality_expression] = STATE(4402), - [sym_delete_expression] = STATE(4402), - [sym_relational_expression] = STATE(4402), - [sym_parenthesized_expression] = STATE(4402), - [sym_sizeof_expression] = STATE(4402), - [sym_concatenated_string] = STATE(4402), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(4402), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4402), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4402), - [sym_math_expression] = STATE(4402), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9576), + [3944] = { + [sym_template_function] = STATE(4374), + [sym__expression] = STATE(4374), + [sym_logical_expression] = STATE(4374), + [sym_bitwise_expression] = STATE(4374), + [sym_cast_expression] = STATE(4374), + [sym_delete_expression] = STATE(4374), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4374), + [sym_lambda_expression] = STATE(4374), + [sym_char_literal] = STATE(4374), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_comma_expression] = STATE(4375), + [sym_conditional_expression] = STATE(4374), + [sym_equality_expression] = STATE(4374), + [sym_relational_expression] = STATE(4374), + [sym_sizeof_expression] = STATE(4374), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4374), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4374), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4374), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4374), + [sym_math_expression] = STATE(4374), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4374), + [sym_raw_string_literal] = ACTIONS(9544), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(9578), - [sym_null] = ACTIONS(9578), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(9546), + [sym_null] = ACTIONS(9546), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9576), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(9544), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(9578), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(9578), + [sym_false] = ACTIONS(9546), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(9546), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [3971] = { - [anon_sym_DASH] = ACTIONS(5726), - [sym_raw_string_literal] = ACTIONS(5728), - [anon_sym_else] = ACTIONS(5726), - [sym_true] = ACTIONS(5726), - [anon_sym_mutable] = ACTIONS(5726), - [sym_null] = ACTIONS(5726), - [anon_sym_break] = ACTIONS(5726), - [aux_sym_preproc_if_token2] = ACTIONS(5726), - [anon_sym_BANG] = ACTIONS(5728), - [anon_sym_sizeof] = ACTIONS(5726), - [anon_sym_volatile] = ACTIONS(5726), - [anon_sym_PLUS] = ACTIONS(5726), - [anon_sym_typedef] = ACTIONS(5726), - [anon_sym_switch] = ACTIONS(5726), - [anon_sym_explicit] = ACTIONS(5726), - [sym_identifier] = ACTIONS(5726), - [anon_sym_delete] = ACTIONS(5726), - [anon_sym_continue] = ACTIONS(5726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5726), - [anon_sym__Atomic] = ACTIONS(5726), - [sym_number_literal] = ACTIONS(5728), - [anon_sym_extern] = ACTIONS(5726), - [anon_sym_enum] = ACTIONS(5726), - [anon_sym_constexpr] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5728), - [anon_sym_namespace] = ACTIONS(5726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5726), - [anon_sym_SQUOTE] = ACTIONS(5728), - [anon_sym_LBRACE] = ACTIONS(5728), - [anon_sym_DASH_DASH] = ACTIONS(5728), - [anon_sym_LPAREN2] = ACTIONS(5728), - [anon_sym_struct] = ACTIONS(5726), - [sym_auto] = ACTIONS(5726), - [anon_sym_signed] = ACTIONS(5726), - [anon_sym_long] = ACTIONS(5726), - [anon_sym_COLON_COLON] = ACTIONS(5728), - [anon_sym_using] = ACTIONS(5726), - [sym_preproc_directive] = ACTIONS(5726), - [aux_sym_preproc_if_token1] = ACTIONS(5726), - [anon_sym_AMP] = ACTIONS(5726), - [anon_sym_static] = ACTIONS(5726), - [anon_sym_STAR] = ACTIONS(5728), - [anon_sym_union] = ACTIONS(5726), - [anon_sym_typename] = ACTIONS(5726), - [anon_sym_short] = ACTIONS(5726), - [anon_sym_new] = ACTIONS(5726), - [anon_sym_goto] = ACTIONS(5726), - [sym_operator_name] = ACTIONS(5728), - [anon_sym_while] = ACTIONS(5726), - [anon_sym_try] = ACTIONS(5726), - [anon_sym_for] = ACTIONS(5726), - [aux_sym_preproc_include_token1] = ACTIONS(5726), - [anon_sym_register] = ACTIONS(5726), - [anon_sym_DQUOTE] = ACTIONS(5728), - [anon_sym_const] = ACTIONS(5726), - [anon_sym_LBRACK] = ACTIONS(5726), - [anon_sym_class] = ACTIONS(5726), - [anon_sym_if] = ACTIONS(5726), - [sym_primitive_type] = ACTIONS(5726), - [sym_false] = ACTIONS(5726), - [sym_nullptr] = ACTIONS(5726), - [anon_sym_do] = ACTIONS(5726), - [anon_sym_template] = ACTIONS(5726), - [anon_sym_return] = ACTIONS(5726), - [anon_sym_TILDE] = ACTIONS(5728), - [anon_sym_SEMI] = ACTIONS(5728), - [aux_sym_preproc_def_token1] = ACTIONS(5726), - [anon_sym_AMP_AMP] = ACTIONS(5728), - [anon_sym_inline] = ACTIONS(5726), - [anon_sym_PLUS_PLUS] = ACTIONS(5728), - [anon_sym_restrict] = ACTIONS(5726), + [3945] = { + [anon_sym_DASH] = ACTIONS(5732), + [sym_raw_string_literal] = ACTIONS(5734), + [anon_sym_else] = ACTIONS(5732), + [sym_true] = ACTIONS(5732), + [anon_sym_mutable] = ACTIONS(5732), + [sym_null] = ACTIONS(5732), + [anon_sym_break] = ACTIONS(5732), + [aux_sym_preproc_if_token2] = ACTIONS(5732), + [anon_sym_BANG] = ACTIONS(5734), + [anon_sym_sizeof] = ACTIONS(5732), + [anon_sym_volatile] = ACTIONS(5732), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_typedef] = ACTIONS(5732), + [anon_sym_switch] = ACTIONS(5732), + [anon_sym_explicit] = ACTIONS(5732), + [sym_identifier] = ACTIONS(5732), + [anon_sym_delete] = ACTIONS(5732), + [anon_sym_continue] = ACTIONS(5732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5732), + [anon_sym__Atomic] = ACTIONS(5732), + [sym_number_literal] = ACTIONS(5734), + [anon_sym_extern] = ACTIONS(5732), + [anon_sym_enum] = ACTIONS(5732), + [anon_sym_constexpr] = ACTIONS(5732), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5734), + [anon_sym_namespace] = ACTIONS(5732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5732), + [anon_sym_SQUOTE] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5734), + [anon_sym_DASH_DASH] = ACTIONS(5734), + [anon_sym_LPAREN2] = ACTIONS(5734), + [anon_sym_struct] = ACTIONS(5732), + [sym_auto] = ACTIONS(5732), + [anon_sym_signed] = ACTIONS(5732), + [anon_sym_long] = ACTIONS(5732), + [anon_sym_COLON_COLON] = ACTIONS(5734), + [anon_sym_using] = ACTIONS(5732), + [sym_preproc_directive] = ACTIONS(5732), + [aux_sym_preproc_if_token1] = ACTIONS(5732), + [anon_sym_AMP] = ACTIONS(5732), + [anon_sym_static] = ACTIONS(5732), + [anon_sym_STAR] = ACTIONS(5734), + [anon_sym_union] = ACTIONS(5732), + [anon_sym_typename] = ACTIONS(5732), + [anon_sym_short] = ACTIONS(5732), + [anon_sym_new] = ACTIONS(5732), + [anon_sym_goto] = ACTIONS(5732), + [sym_operator_name] = ACTIONS(5734), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [aux_sym_preproc_include_token1] = ACTIONS(5732), + [anon_sym_register] = ACTIONS(5732), + [anon_sym_DQUOTE] = ACTIONS(5734), + [anon_sym_const] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5732), + [anon_sym_class] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [sym_primitive_type] = ACTIONS(5732), + [sym_false] = ACTIONS(5732), + [sym_nullptr] = ACTIONS(5732), + [anon_sym_do] = ACTIONS(5732), + [anon_sym_template] = ACTIONS(5732), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_TILDE] = ACTIONS(5734), + [anon_sym_SEMI] = ACTIONS(5734), + [aux_sym_preproc_def_token1] = ACTIONS(5732), + [anon_sym_AMP_AMP] = ACTIONS(5734), + [anon_sym_inline] = ACTIONS(5732), + [anon_sym_PLUS_PLUS] = ACTIONS(5734), + [anon_sym_restrict] = ACTIONS(5732), }, - [3972] = { - [anon_sym_DASH] = ACTIONS(5795), - [sym_raw_string_literal] = ACTIONS(5797), - [sym_true] = ACTIONS(5795), - [anon_sym_mutable] = ACTIONS(5795), - [sym_null] = ACTIONS(5795), - [anon_sym_break] = ACTIONS(5795), - [aux_sym_preproc_if_token2] = ACTIONS(5795), - [anon_sym_BANG] = ACTIONS(5797), - [anon_sym_sizeof] = ACTIONS(5795), - [anon_sym_volatile] = ACTIONS(5795), - [anon_sym_PLUS] = ACTIONS(5795), - [anon_sym_typedef] = ACTIONS(5795), - [anon_sym_switch] = ACTIONS(5795), - [anon_sym_explicit] = ACTIONS(5795), - [sym_identifier] = ACTIONS(5795), - [anon_sym_delete] = ACTIONS(5795), - [anon_sym_continue] = ACTIONS(5795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5795), - [anon_sym__Atomic] = ACTIONS(5795), - [sym_number_literal] = ACTIONS(5797), - [anon_sym_extern] = ACTIONS(5795), - [anon_sym_enum] = ACTIONS(5795), - [anon_sym_constexpr] = ACTIONS(5795), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5797), - [anon_sym_namespace] = ACTIONS(5795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5795), - [anon_sym_SQUOTE] = ACTIONS(5797), - [anon_sym_LBRACE] = ACTIONS(5797), - [anon_sym_DASH_DASH] = ACTIONS(5797), - [anon_sym_LPAREN2] = ACTIONS(5797), - [anon_sym_struct] = ACTIONS(5795), - [sym_auto] = ACTIONS(5795), - [anon_sym_signed] = ACTIONS(5795), - [anon_sym_long] = ACTIONS(5795), - [anon_sym_COLON_COLON] = ACTIONS(5797), - [anon_sym_using] = ACTIONS(5795), - [sym_preproc_directive] = ACTIONS(5795), - [aux_sym_preproc_if_token1] = ACTIONS(5795), - [anon_sym_AMP] = ACTIONS(5795), - [anon_sym_static] = ACTIONS(5795), - [anon_sym_STAR] = ACTIONS(5797), - [anon_sym_union] = ACTIONS(5795), - [anon_sym_typename] = ACTIONS(5795), - [anon_sym_short] = ACTIONS(5795), - [anon_sym_new] = ACTIONS(5795), - [anon_sym_goto] = ACTIONS(5795), - [sym_operator_name] = ACTIONS(5797), - [anon_sym_while] = ACTIONS(5795), - [anon_sym_try] = ACTIONS(5795), - [anon_sym_for] = ACTIONS(5795), - [aux_sym_preproc_include_token1] = ACTIONS(5795), - [anon_sym_register] = ACTIONS(5795), - [anon_sym_DQUOTE] = ACTIONS(5797), - [anon_sym_const] = ACTIONS(5795), - [anon_sym_LBRACK] = ACTIONS(5795), - [anon_sym_class] = ACTIONS(5795), - [anon_sym_if] = ACTIONS(5795), - [sym_primitive_type] = ACTIONS(5795), - [sym_false] = ACTIONS(5795), - [sym_nullptr] = ACTIONS(5795), - [anon_sym_do] = ACTIONS(5795), - [anon_sym_template] = ACTIONS(5795), - [anon_sym_return] = ACTIONS(5795), - [anon_sym_TILDE] = ACTIONS(5797), - [anon_sym_SEMI] = ACTIONS(5797), - [aux_sym_preproc_def_token1] = ACTIONS(5795), - [anon_sym_AMP_AMP] = ACTIONS(5797), - [anon_sym_inline] = ACTIONS(5795), - [anon_sym_PLUS_PLUS] = ACTIONS(5797), - [anon_sym_restrict] = ACTIONS(5795), + [3946] = { + [anon_sym_DASH] = ACTIONS(5802), + [sym_raw_string_literal] = ACTIONS(5804), + [sym_true] = ACTIONS(5802), + [anon_sym_mutable] = ACTIONS(5802), + [sym_null] = ACTIONS(5802), + [anon_sym_break] = ACTIONS(5802), + [aux_sym_preproc_if_token2] = ACTIONS(5802), + [anon_sym_BANG] = ACTIONS(5804), + [anon_sym_sizeof] = ACTIONS(5802), + [anon_sym_volatile] = ACTIONS(5802), + [anon_sym_PLUS] = ACTIONS(5802), + [anon_sym_typedef] = ACTIONS(5802), + [anon_sym_switch] = ACTIONS(5802), + [anon_sym_explicit] = ACTIONS(5802), + [sym_identifier] = ACTIONS(5802), + [anon_sym_delete] = ACTIONS(5802), + [anon_sym_continue] = ACTIONS(5802), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5802), + [anon_sym__Atomic] = ACTIONS(5802), + [sym_number_literal] = ACTIONS(5804), + [anon_sym_extern] = ACTIONS(5802), + [anon_sym_enum] = ACTIONS(5802), + [anon_sym_constexpr] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5804), + [anon_sym_namespace] = ACTIONS(5802), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5802), + [anon_sym_SQUOTE] = ACTIONS(5804), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_DASH_DASH] = ACTIONS(5804), + [anon_sym_LPAREN2] = ACTIONS(5804), + [anon_sym_struct] = ACTIONS(5802), + [sym_auto] = ACTIONS(5802), + [anon_sym_signed] = ACTIONS(5802), + [anon_sym_long] = ACTIONS(5802), + [anon_sym_COLON_COLON] = ACTIONS(5804), + [anon_sym_using] = ACTIONS(5802), + [sym_preproc_directive] = ACTIONS(5802), + [aux_sym_preproc_if_token1] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5802), + [anon_sym_static] = ACTIONS(5802), + [anon_sym_STAR] = ACTIONS(5804), + [anon_sym_union] = ACTIONS(5802), + [anon_sym_typename] = ACTIONS(5802), + [anon_sym_short] = ACTIONS(5802), + [anon_sym_new] = ACTIONS(5802), + [anon_sym_goto] = ACTIONS(5802), + [sym_operator_name] = ACTIONS(5804), + [anon_sym_while] = ACTIONS(5802), + [anon_sym_try] = ACTIONS(5802), + [anon_sym_for] = ACTIONS(5802), + [aux_sym_preproc_include_token1] = ACTIONS(5802), + [anon_sym_register] = ACTIONS(5802), + [anon_sym_DQUOTE] = ACTIONS(5804), + [anon_sym_const] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_class] = ACTIONS(5802), + [anon_sym_if] = ACTIONS(5802), + [sym_primitive_type] = ACTIONS(5802), + [sym_false] = ACTIONS(5802), + [sym_nullptr] = ACTIONS(5802), + [anon_sym_do] = ACTIONS(5802), + [anon_sym_template] = ACTIONS(5802), + [anon_sym_return] = ACTIONS(5802), + [anon_sym_TILDE] = ACTIONS(5804), + [anon_sym_SEMI] = ACTIONS(5804), + [aux_sym_preproc_def_token1] = ACTIONS(5802), + [anon_sym_AMP_AMP] = ACTIONS(5804), + [anon_sym_inline] = ACTIONS(5802), + [anon_sym_PLUS_PLUS] = ACTIONS(5804), + [anon_sym_restrict] = ACTIONS(5802), }, - [3973] = { - [anon_sym_DASH] = ACTIONS(5894), - [sym_raw_string_literal] = ACTIONS(5896), - [sym_true] = ACTIONS(5894), - [anon_sym_mutable] = ACTIONS(5894), - [sym_null] = ACTIONS(5894), - [anon_sym_break] = ACTIONS(5894), - [aux_sym_preproc_if_token2] = ACTIONS(5894), - [anon_sym_BANG] = ACTIONS(5896), - [anon_sym_sizeof] = ACTIONS(5894), - [anon_sym_volatile] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5894), - [anon_sym_typedef] = ACTIONS(5894), - [anon_sym_switch] = ACTIONS(5894), - [anon_sym_explicit] = ACTIONS(5894), - [sym_identifier] = ACTIONS(5894), - [anon_sym_delete] = ACTIONS(5894), - [anon_sym_continue] = ACTIONS(5894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5894), - [anon_sym__Atomic] = ACTIONS(5894), - [sym_number_literal] = ACTIONS(5896), - [anon_sym_extern] = ACTIONS(5894), - [anon_sym_enum] = ACTIONS(5894), - [anon_sym_constexpr] = ACTIONS(5894), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5896), - [anon_sym_namespace] = ACTIONS(5894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5894), - [anon_sym_SQUOTE] = ACTIONS(5896), - [anon_sym_LBRACE] = ACTIONS(5896), - [anon_sym_DASH_DASH] = ACTIONS(5896), - [anon_sym_LPAREN2] = ACTIONS(5896), - [anon_sym_struct] = ACTIONS(5894), - [sym_auto] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(5894), - [anon_sym_long] = ACTIONS(5894), - [anon_sym_COLON_COLON] = ACTIONS(5896), - [anon_sym_using] = ACTIONS(5894), - [sym_preproc_directive] = ACTIONS(5894), - [aux_sym_preproc_if_token1] = ACTIONS(5894), - [anon_sym_AMP] = ACTIONS(5894), - [anon_sym_static] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5896), - [anon_sym_union] = ACTIONS(5894), - [anon_sym_typename] = ACTIONS(5894), - [anon_sym_short] = ACTIONS(5894), - [anon_sym_new] = ACTIONS(5894), - [anon_sym_goto] = ACTIONS(5894), - [sym_operator_name] = ACTIONS(5896), - [anon_sym_while] = ACTIONS(5894), - [anon_sym_try] = ACTIONS(5894), - [anon_sym_for] = ACTIONS(5894), - [aux_sym_preproc_include_token1] = ACTIONS(5894), - [anon_sym_register] = ACTIONS(5894), - [anon_sym_DQUOTE] = ACTIONS(5896), - [anon_sym_const] = ACTIONS(5894), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_class] = ACTIONS(5894), - [anon_sym_if] = ACTIONS(5894), - [sym_primitive_type] = ACTIONS(5894), - [sym_false] = ACTIONS(5894), - [sym_nullptr] = ACTIONS(5894), - [anon_sym_do] = ACTIONS(5894), - [anon_sym_template] = ACTIONS(5894), - [anon_sym_return] = ACTIONS(5894), - [anon_sym_TILDE] = ACTIONS(5896), - [anon_sym_SEMI] = ACTIONS(5896), - [aux_sym_preproc_def_token1] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5896), - [anon_sym_inline] = ACTIONS(5894), - [anon_sym_PLUS_PLUS] = ACTIONS(5896), - [anon_sym_restrict] = ACTIONS(5894), + [3947] = { + [anon_sym_DASH] = ACTIONS(5901), + [sym_raw_string_literal] = ACTIONS(5903), + [sym_true] = ACTIONS(5901), + [anon_sym_mutable] = ACTIONS(5901), + [sym_null] = ACTIONS(5901), + [anon_sym_break] = ACTIONS(5901), + [aux_sym_preproc_if_token2] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5903), + [anon_sym_sizeof] = ACTIONS(5901), + [anon_sym_volatile] = ACTIONS(5901), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_typedef] = ACTIONS(5901), + [anon_sym_switch] = ACTIONS(5901), + [anon_sym_explicit] = ACTIONS(5901), + [sym_identifier] = ACTIONS(5901), + [anon_sym_delete] = ACTIONS(5901), + [anon_sym_continue] = ACTIONS(5901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5901), + [anon_sym__Atomic] = ACTIONS(5901), + [sym_number_literal] = ACTIONS(5903), + [anon_sym_extern] = ACTIONS(5901), + [anon_sym_enum] = ACTIONS(5901), + [anon_sym_constexpr] = ACTIONS(5901), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5903), + [anon_sym_namespace] = ACTIONS(5901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5903), + [anon_sym_LBRACE] = ACTIONS(5903), + [anon_sym_DASH_DASH] = ACTIONS(5903), + [anon_sym_LPAREN2] = ACTIONS(5903), + [anon_sym_struct] = ACTIONS(5901), + [sym_auto] = ACTIONS(5901), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_COLON_COLON] = ACTIONS(5903), + [anon_sym_using] = ACTIONS(5901), + [sym_preproc_directive] = ACTIONS(5901), + [aux_sym_preproc_if_token1] = ACTIONS(5901), + [anon_sym_AMP] = ACTIONS(5901), + [anon_sym_static] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_union] = ACTIONS(5901), + [anon_sym_typename] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_new] = ACTIONS(5901), + [anon_sym_goto] = ACTIONS(5901), + [sym_operator_name] = ACTIONS(5903), + [anon_sym_while] = ACTIONS(5901), + [anon_sym_try] = ACTIONS(5901), + [anon_sym_for] = ACTIONS(5901), + [aux_sym_preproc_include_token1] = ACTIONS(5901), + [anon_sym_register] = ACTIONS(5901), + [anon_sym_DQUOTE] = ACTIONS(5903), + [anon_sym_const] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5901), + [anon_sym_class] = ACTIONS(5901), + [anon_sym_if] = ACTIONS(5901), + [sym_primitive_type] = ACTIONS(5901), + [sym_false] = ACTIONS(5901), + [sym_nullptr] = ACTIONS(5901), + [anon_sym_do] = ACTIONS(5901), + [anon_sym_template] = ACTIONS(5901), + [anon_sym_return] = ACTIONS(5901), + [anon_sym_TILDE] = ACTIONS(5903), + [anon_sym_SEMI] = ACTIONS(5903), + [aux_sym_preproc_def_token1] = ACTIONS(5901), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_inline] = ACTIONS(5901), + [anon_sym_PLUS_PLUS] = ACTIONS(5903), + [anon_sym_restrict] = ACTIONS(5901), }, - [3974] = { - [anon_sym_DASH] = ACTIONS(5906), - [sym_raw_string_literal] = ACTIONS(5908), - [sym_true] = ACTIONS(5906), - [anon_sym_mutable] = ACTIONS(5906), - [sym_null] = ACTIONS(5906), - [anon_sym_break] = ACTIONS(5906), - [aux_sym_preproc_if_token2] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5908), - [anon_sym_sizeof] = ACTIONS(5906), - [anon_sym_volatile] = ACTIONS(5906), - [anon_sym_PLUS] = ACTIONS(5906), - [anon_sym_typedef] = ACTIONS(5906), - [anon_sym_switch] = ACTIONS(5906), - [anon_sym_explicit] = ACTIONS(5906), - [sym_identifier] = ACTIONS(5906), - [anon_sym_delete] = ACTIONS(5906), - [anon_sym_continue] = ACTIONS(5906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), - [anon_sym__Atomic] = ACTIONS(5906), - [sym_number_literal] = ACTIONS(5908), - [anon_sym_extern] = ACTIONS(5906), - [anon_sym_enum] = ACTIONS(5906), - [anon_sym_constexpr] = ACTIONS(5906), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5908), - [anon_sym_namespace] = ACTIONS(5906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), - [anon_sym_SQUOTE] = ACTIONS(5908), - [anon_sym_LBRACE] = ACTIONS(5908), - [anon_sym_DASH_DASH] = ACTIONS(5908), - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_struct] = ACTIONS(5906), - [sym_auto] = ACTIONS(5906), - [anon_sym_signed] = ACTIONS(5906), - [anon_sym_long] = ACTIONS(5906), - [anon_sym_COLON_COLON] = ACTIONS(5908), - [anon_sym_using] = ACTIONS(5906), - [sym_preproc_directive] = ACTIONS(5906), - [aux_sym_preproc_if_token1] = ACTIONS(5906), - [anon_sym_AMP] = ACTIONS(5906), - [anon_sym_static] = ACTIONS(5906), - [anon_sym_STAR] = ACTIONS(5908), - [anon_sym_union] = ACTIONS(5906), - [anon_sym_typename] = ACTIONS(5906), - [anon_sym_short] = ACTIONS(5906), - [anon_sym_new] = ACTIONS(5906), - [anon_sym_goto] = ACTIONS(5906), - [sym_operator_name] = ACTIONS(5908), - [anon_sym_while] = ACTIONS(5906), - [anon_sym_try] = ACTIONS(5906), - [anon_sym_for] = ACTIONS(5906), - [aux_sym_preproc_include_token1] = ACTIONS(5906), - [anon_sym_register] = ACTIONS(5906), - [anon_sym_DQUOTE] = ACTIONS(5908), - [anon_sym_const] = ACTIONS(5906), - [anon_sym_LBRACK] = ACTIONS(5906), - [anon_sym_class] = ACTIONS(5906), - [anon_sym_if] = ACTIONS(5906), - [sym_primitive_type] = ACTIONS(5906), - [sym_false] = ACTIONS(5906), - [sym_nullptr] = ACTIONS(5906), - [anon_sym_do] = ACTIONS(5906), - [anon_sym_template] = ACTIONS(5906), - [anon_sym_return] = ACTIONS(5906), - [anon_sym_TILDE] = ACTIONS(5908), - [anon_sym_SEMI] = ACTIONS(5908), - [aux_sym_preproc_def_token1] = ACTIONS(5906), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_inline] = ACTIONS(5906), - [anon_sym_PLUS_PLUS] = ACTIONS(5908), - [anon_sym_restrict] = ACTIONS(5906), + [3948] = { + [anon_sym_DASH] = ACTIONS(5913), + [sym_raw_string_literal] = ACTIONS(5915), + [sym_true] = ACTIONS(5913), + [anon_sym_mutable] = ACTIONS(5913), + [sym_null] = ACTIONS(5913), + [anon_sym_break] = ACTIONS(5913), + [aux_sym_preproc_if_token2] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_sizeof] = ACTIONS(5913), + [anon_sym_volatile] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_typedef] = ACTIONS(5913), + [anon_sym_switch] = ACTIONS(5913), + [anon_sym_explicit] = ACTIONS(5913), + [sym_identifier] = ACTIONS(5913), + [anon_sym_delete] = ACTIONS(5913), + [anon_sym_continue] = ACTIONS(5913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5913), + [anon_sym__Atomic] = ACTIONS(5913), + [sym_number_literal] = ACTIONS(5915), + [anon_sym_extern] = ACTIONS(5913), + [anon_sym_enum] = ACTIONS(5913), + [anon_sym_constexpr] = ACTIONS(5913), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5915), + [anon_sym_namespace] = ACTIONS(5913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5913), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_LBRACE] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5915), + [anon_sym_LPAREN2] = ACTIONS(5915), + [anon_sym_struct] = ACTIONS(5913), + [sym_auto] = ACTIONS(5913), + [anon_sym_signed] = ACTIONS(5913), + [anon_sym_long] = ACTIONS(5913), + [anon_sym_COLON_COLON] = ACTIONS(5915), + [anon_sym_using] = ACTIONS(5913), + [sym_preproc_directive] = ACTIONS(5913), + [aux_sym_preproc_if_token1] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_static] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_union] = ACTIONS(5913), + [anon_sym_typename] = ACTIONS(5913), + [anon_sym_short] = ACTIONS(5913), + [anon_sym_new] = ACTIONS(5913), + [anon_sym_goto] = ACTIONS(5913), + [sym_operator_name] = ACTIONS(5915), + [anon_sym_while] = ACTIONS(5913), + [anon_sym_try] = ACTIONS(5913), + [anon_sym_for] = ACTIONS(5913), + [aux_sym_preproc_include_token1] = ACTIONS(5913), + [anon_sym_register] = ACTIONS(5913), + [anon_sym_DQUOTE] = ACTIONS(5915), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_class] = ACTIONS(5913), + [anon_sym_if] = ACTIONS(5913), + [sym_primitive_type] = ACTIONS(5913), + [sym_false] = ACTIONS(5913), + [sym_nullptr] = ACTIONS(5913), + [anon_sym_do] = ACTIONS(5913), + [anon_sym_template] = ACTIONS(5913), + [anon_sym_return] = ACTIONS(5913), + [anon_sym_TILDE] = ACTIONS(5915), + [anon_sym_SEMI] = ACTIONS(5915), + [aux_sym_preproc_def_token1] = ACTIONS(5913), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_inline] = ACTIONS(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5915), + [anon_sym_restrict] = ACTIONS(5913), }, - [3975] = { - [anon_sym_LF] = ACTIONS(9580), + [3949] = { + [anon_sym_LF] = ACTIONS(9548), [sym_comment] = ACTIONS(244), }, - [3976] = { - [anon_sym_DASH] = ACTIONS(5912), - [sym_raw_string_literal] = ACTIONS(5914), - [sym_true] = ACTIONS(5912), - [anon_sym_mutable] = ACTIONS(5912), - [sym_null] = ACTIONS(5912), - [anon_sym_break] = ACTIONS(5912), - [aux_sym_preproc_if_token2] = ACTIONS(5912), - [anon_sym_BANG] = ACTIONS(5914), - [anon_sym_sizeof] = ACTIONS(5912), - [anon_sym_volatile] = ACTIONS(5912), - [anon_sym_PLUS] = ACTIONS(5912), - [anon_sym_typedef] = ACTIONS(5912), - [anon_sym_switch] = ACTIONS(5912), - [anon_sym_explicit] = ACTIONS(5912), - [sym_identifier] = ACTIONS(5912), - [anon_sym_delete] = ACTIONS(5912), - [anon_sym_continue] = ACTIONS(5912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5912), - [anon_sym__Atomic] = ACTIONS(5912), - [sym_number_literal] = ACTIONS(5914), - [anon_sym_extern] = ACTIONS(5912), - [anon_sym_enum] = ACTIONS(5912), - [anon_sym_constexpr] = ACTIONS(5912), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5914), - [anon_sym_namespace] = ACTIONS(5912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5912), - [anon_sym_SQUOTE] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(5914), - [anon_sym_DASH_DASH] = ACTIONS(5914), - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_struct] = ACTIONS(5912), - [sym_auto] = ACTIONS(5912), - [anon_sym_signed] = ACTIONS(5912), - [anon_sym_long] = ACTIONS(5912), - [anon_sym_COLON_COLON] = ACTIONS(5914), - [anon_sym_using] = ACTIONS(5912), - [sym_preproc_directive] = ACTIONS(5912), - [aux_sym_preproc_if_token1] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_static] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_union] = ACTIONS(5912), - [anon_sym_typename] = ACTIONS(5912), - [anon_sym_short] = ACTIONS(5912), - [anon_sym_new] = ACTIONS(5912), - [anon_sym_goto] = ACTIONS(5912), - [sym_operator_name] = ACTIONS(5914), - [anon_sym_while] = ACTIONS(5912), - [anon_sym_try] = ACTIONS(5912), - [anon_sym_for] = ACTIONS(5912), - [aux_sym_preproc_include_token1] = ACTIONS(5912), - [anon_sym_register] = ACTIONS(5912), - [anon_sym_DQUOTE] = ACTIONS(5914), - [anon_sym_const] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5912), - [anon_sym_class] = ACTIONS(5912), - [anon_sym_if] = ACTIONS(5912), - [sym_primitive_type] = ACTIONS(5912), - [sym_false] = ACTIONS(5912), - [sym_nullptr] = ACTIONS(5912), - [anon_sym_do] = ACTIONS(5912), - [anon_sym_template] = ACTIONS(5912), - [anon_sym_return] = ACTIONS(5912), - [anon_sym_TILDE] = ACTIONS(5914), - [anon_sym_SEMI] = ACTIONS(5914), - [aux_sym_preproc_def_token1] = ACTIONS(5912), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_inline] = ACTIONS(5912), - [anon_sym_PLUS_PLUS] = ACTIONS(5914), - [anon_sym_restrict] = ACTIONS(5912), - }, - [3977] = { - [anon_sym_DASH] = ACTIONS(5934), - [sym_raw_string_literal] = ACTIONS(5936), - [sym_true] = ACTIONS(5934), - [anon_sym_mutable] = ACTIONS(5934), - [sym_null] = ACTIONS(5934), - [anon_sym_break] = ACTIONS(5934), - [aux_sym_preproc_if_token2] = ACTIONS(5934), - [anon_sym_BANG] = ACTIONS(5936), - [anon_sym_sizeof] = ACTIONS(5934), - [anon_sym_volatile] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_typedef] = ACTIONS(5934), - [anon_sym_switch] = ACTIONS(5934), - [anon_sym_explicit] = ACTIONS(5934), - [sym_identifier] = ACTIONS(5934), - [anon_sym_delete] = ACTIONS(5934), - [anon_sym_continue] = ACTIONS(5934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5934), - [anon_sym__Atomic] = ACTIONS(5934), - [sym_number_literal] = ACTIONS(5936), - [anon_sym_extern] = ACTIONS(5934), - [anon_sym_enum] = ACTIONS(5934), - [anon_sym_constexpr] = ACTIONS(5934), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5936), - [anon_sym_namespace] = ACTIONS(5934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5934), - [anon_sym_SQUOTE] = ACTIONS(5936), - [anon_sym_LBRACE] = ACTIONS(5936), - [anon_sym_DASH_DASH] = ACTIONS(5936), - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_struct] = ACTIONS(5934), - [sym_auto] = ACTIONS(5934), - [anon_sym_signed] = ACTIONS(5934), - [anon_sym_long] = ACTIONS(5934), - [anon_sym_COLON_COLON] = ACTIONS(5936), - [anon_sym_using] = ACTIONS(5934), - [sym_preproc_directive] = ACTIONS(5934), - [aux_sym_preproc_if_token1] = ACTIONS(5934), - [anon_sym_AMP] = ACTIONS(5934), - [anon_sym_static] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_union] = ACTIONS(5934), - [anon_sym_typename] = ACTIONS(5934), - [anon_sym_short] = ACTIONS(5934), - [anon_sym_new] = ACTIONS(5934), - [anon_sym_goto] = ACTIONS(5934), - [sym_operator_name] = ACTIONS(5936), - [anon_sym_while] = ACTIONS(5934), - [anon_sym_try] = ACTIONS(5934), - [anon_sym_for] = ACTIONS(5934), - [aux_sym_preproc_include_token1] = ACTIONS(5934), - [anon_sym_register] = ACTIONS(5934), - [anon_sym_DQUOTE] = ACTIONS(5936), - [anon_sym_const] = ACTIONS(5934), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_class] = ACTIONS(5934), - [anon_sym_if] = ACTIONS(5934), - [sym_primitive_type] = ACTIONS(5934), - [sym_false] = ACTIONS(5934), - [sym_nullptr] = ACTIONS(5934), - [anon_sym_do] = ACTIONS(5934), - [anon_sym_template] = ACTIONS(5934), - [anon_sym_return] = ACTIONS(5934), - [anon_sym_TILDE] = ACTIONS(5936), - [anon_sym_SEMI] = ACTIONS(5936), - [aux_sym_preproc_def_token1] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_inline] = ACTIONS(5934), - [anon_sym_PLUS_PLUS] = ACTIONS(5936), - [anon_sym_restrict] = ACTIONS(5934), - }, - [3978] = { - [anon_sym_DASH] = ACTIONS(5938), - [sym_raw_string_literal] = ACTIONS(5940), - [sym_true] = ACTIONS(5938), - [anon_sym_mutable] = ACTIONS(5938), - [sym_null] = ACTIONS(5938), - [anon_sym_break] = ACTIONS(5938), - [aux_sym_preproc_if_token2] = ACTIONS(5938), - [anon_sym_BANG] = ACTIONS(5940), - [anon_sym_sizeof] = ACTIONS(5938), - [anon_sym_volatile] = ACTIONS(5938), - [anon_sym_PLUS] = ACTIONS(5938), - [anon_sym_typedef] = ACTIONS(5938), - [anon_sym_switch] = ACTIONS(5938), - [anon_sym_explicit] = ACTIONS(5938), - [sym_identifier] = ACTIONS(5938), - [anon_sym_delete] = ACTIONS(5938), - [anon_sym_continue] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), - [anon_sym__Atomic] = ACTIONS(5938), - [sym_number_literal] = ACTIONS(5940), - [anon_sym_extern] = ACTIONS(5938), - [anon_sym_enum] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5938), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5940), - [anon_sym_namespace] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), - [anon_sym_SQUOTE] = ACTIONS(5940), - [anon_sym_LBRACE] = ACTIONS(5940), - [anon_sym_DASH_DASH] = ACTIONS(5940), - [anon_sym_LPAREN2] = ACTIONS(5940), - [anon_sym_struct] = ACTIONS(5938), - [sym_auto] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(5938), - [anon_sym_long] = ACTIONS(5938), - [anon_sym_COLON_COLON] = ACTIONS(5940), - [anon_sym_using] = ACTIONS(5938), - [sym_preproc_directive] = ACTIONS(5938), - [aux_sym_preproc_if_token1] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_static] = ACTIONS(5938), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_union] = ACTIONS(5938), - [anon_sym_typename] = ACTIONS(5938), - [anon_sym_short] = ACTIONS(5938), - [anon_sym_new] = ACTIONS(5938), - [anon_sym_goto] = ACTIONS(5938), - [sym_operator_name] = ACTIONS(5940), - [anon_sym_while] = ACTIONS(5938), - [anon_sym_try] = ACTIONS(5938), - [anon_sym_for] = ACTIONS(5938), - [aux_sym_preproc_include_token1] = ACTIONS(5938), - [anon_sym_register] = ACTIONS(5938), - [anon_sym_DQUOTE] = ACTIONS(5940), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_LBRACK] = ACTIONS(5938), - [anon_sym_class] = ACTIONS(5938), - [anon_sym_if] = ACTIONS(5938), - [sym_primitive_type] = ACTIONS(5938), - [sym_false] = ACTIONS(5938), - [sym_nullptr] = ACTIONS(5938), - [anon_sym_do] = ACTIONS(5938), - [anon_sym_template] = ACTIONS(5938), - [anon_sym_return] = ACTIONS(5938), - [anon_sym_TILDE] = ACTIONS(5940), - [anon_sym_SEMI] = ACTIONS(5940), - [aux_sym_preproc_def_token1] = ACTIONS(5938), - [anon_sym_AMP_AMP] = ACTIONS(5940), - [anon_sym_inline] = ACTIONS(5938), - [anon_sym_PLUS_PLUS] = ACTIONS(5940), - [anon_sym_restrict] = ACTIONS(5938), + [3950] = { + [anon_sym_DASH] = ACTIONS(5919), + [sym_raw_string_literal] = ACTIONS(5921), + [sym_true] = ACTIONS(5919), + [anon_sym_mutable] = ACTIONS(5919), + [sym_null] = ACTIONS(5919), + [anon_sym_break] = ACTIONS(5919), + [aux_sym_preproc_if_token2] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_sizeof] = ACTIONS(5919), + [anon_sym_volatile] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_typedef] = ACTIONS(5919), + [anon_sym_switch] = ACTIONS(5919), + [anon_sym_explicit] = ACTIONS(5919), + [sym_identifier] = ACTIONS(5919), + [anon_sym_delete] = ACTIONS(5919), + [anon_sym_continue] = ACTIONS(5919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5919), + [anon_sym__Atomic] = ACTIONS(5919), + [sym_number_literal] = ACTIONS(5921), + [anon_sym_extern] = ACTIONS(5919), + [anon_sym_enum] = ACTIONS(5919), + [anon_sym_constexpr] = ACTIONS(5919), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5921), + [anon_sym_namespace] = ACTIONS(5919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [anon_sym_DASH_DASH] = ACTIONS(5921), + [anon_sym_LPAREN2] = ACTIONS(5921), + [anon_sym_struct] = ACTIONS(5919), + [sym_auto] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(5919), + [anon_sym_long] = ACTIONS(5919), + [anon_sym_COLON_COLON] = ACTIONS(5921), + [anon_sym_using] = ACTIONS(5919), + [sym_preproc_directive] = ACTIONS(5919), + [aux_sym_preproc_if_token1] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_static] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_union] = ACTIONS(5919), + [anon_sym_typename] = ACTIONS(5919), + [anon_sym_short] = ACTIONS(5919), + [anon_sym_new] = ACTIONS(5919), + [anon_sym_goto] = ACTIONS(5919), + [sym_operator_name] = ACTIONS(5921), + [anon_sym_while] = ACTIONS(5919), + [anon_sym_try] = ACTIONS(5919), + [anon_sym_for] = ACTIONS(5919), + [aux_sym_preproc_include_token1] = ACTIONS(5919), + [anon_sym_register] = ACTIONS(5919), + [anon_sym_DQUOTE] = ACTIONS(5921), + [anon_sym_const] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_class] = ACTIONS(5919), + [anon_sym_if] = ACTIONS(5919), + [sym_primitive_type] = ACTIONS(5919), + [sym_false] = ACTIONS(5919), + [sym_nullptr] = ACTIONS(5919), + [anon_sym_do] = ACTIONS(5919), + [anon_sym_template] = ACTIONS(5919), + [anon_sym_return] = ACTIONS(5919), + [anon_sym_TILDE] = ACTIONS(5921), + [anon_sym_SEMI] = ACTIONS(5921), + [aux_sym_preproc_def_token1] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5921), + [anon_sym_inline] = ACTIONS(5919), + [anon_sym_PLUS_PLUS] = ACTIONS(5921), + [anon_sym_restrict] = ACTIONS(5919), }, - [3979] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(9582), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3951] = { + [anon_sym_DASH] = ACTIONS(5923), + [sym_raw_string_literal] = ACTIONS(5925), + [sym_true] = ACTIONS(5923), + [anon_sym_mutable] = ACTIONS(5923), + [sym_null] = ACTIONS(5923), + [anon_sym_break] = ACTIONS(5923), + [aux_sym_preproc_if_token2] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5925), + [anon_sym_sizeof] = ACTIONS(5923), + [anon_sym_volatile] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_typedef] = ACTIONS(5923), + [anon_sym_switch] = ACTIONS(5923), + [anon_sym_explicit] = ACTIONS(5923), + [sym_identifier] = ACTIONS(5923), + [anon_sym_delete] = ACTIONS(5923), + [anon_sym_continue] = ACTIONS(5923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5923), + [anon_sym__Atomic] = ACTIONS(5923), + [sym_number_literal] = ACTIONS(5925), + [anon_sym_extern] = ACTIONS(5923), + [anon_sym_enum] = ACTIONS(5923), + [anon_sym_constexpr] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5925), + [anon_sym_namespace] = ACTIONS(5923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5925), + [anon_sym_DASH_DASH] = ACTIONS(5925), + [anon_sym_LPAREN2] = ACTIONS(5925), + [anon_sym_struct] = ACTIONS(5923), + [sym_auto] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(5923), + [anon_sym_long] = ACTIONS(5923), + [anon_sym_COLON_COLON] = ACTIONS(5925), + [anon_sym_using] = ACTIONS(5923), + [sym_preproc_directive] = ACTIONS(5923), + [aux_sym_preproc_if_token1] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5923), + [anon_sym_static] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5925), + [anon_sym_union] = ACTIONS(5923), + [anon_sym_typename] = ACTIONS(5923), + [anon_sym_short] = ACTIONS(5923), + [anon_sym_new] = ACTIONS(5923), + [anon_sym_goto] = ACTIONS(5923), + [sym_operator_name] = ACTIONS(5925), + [anon_sym_while] = ACTIONS(5923), + [anon_sym_try] = ACTIONS(5923), + [anon_sym_for] = ACTIONS(5923), + [aux_sym_preproc_include_token1] = ACTIONS(5923), + [anon_sym_register] = ACTIONS(5923), + [anon_sym_DQUOTE] = ACTIONS(5925), + [anon_sym_const] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_class] = ACTIONS(5923), + [anon_sym_if] = ACTIONS(5923), + [sym_primitive_type] = ACTIONS(5923), + [sym_false] = ACTIONS(5923), + [sym_nullptr] = ACTIONS(5923), + [anon_sym_do] = ACTIONS(5923), + [anon_sym_template] = ACTIONS(5923), + [anon_sym_return] = ACTIONS(5923), + [anon_sym_TILDE] = ACTIONS(5925), + [anon_sym_SEMI] = ACTIONS(5925), + [aux_sym_preproc_def_token1] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_inline] = ACTIONS(5923), + [anon_sym_PLUS_PLUS] = ACTIONS(5925), + [anon_sym_restrict] = ACTIONS(5923), }, - [3980] = { + [3952] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9582), - }, - [3981] = { - [anon_sym_DASH] = ACTIONS(6245), - [sym_raw_string_literal] = ACTIONS(6247), - [sym_true] = ACTIONS(6245), - [anon_sym_mutable] = ACTIONS(6245), - [sym_null] = ACTIONS(6245), - [anon_sym_break] = ACTIONS(6245), - [aux_sym_preproc_if_token2] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6247), - [anon_sym_sizeof] = ACTIONS(6245), - [anon_sym_volatile] = ACTIONS(6245), - [anon_sym_PLUS] = ACTIONS(6245), - [anon_sym_typedef] = ACTIONS(6245), - [anon_sym_switch] = ACTIONS(6245), - [anon_sym_explicit] = ACTIONS(6245), - [sym_identifier] = ACTIONS(6245), - [anon_sym_delete] = ACTIONS(6245), - [anon_sym_continue] = ACTIONS(6245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6245), - [anon_sym__Atomic] = ACTIONS(6245), - [sym_number_literal] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6245), - [anon_sym_enum] = ACTIONS(6245), - [anon_sym_constexpr] = ACTIONS(6245), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6247), - [anon_sym_namespace] = ACTIONS(6245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6245), - [anon_sym_SQUOTE] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6247), - [anon_sym_DASH_DASH] = ACTIONS(6247), - [anon_sym_LPAREN2] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6245), - [sym_auto] = ACTIONS(6245), - [anon_sym_signed] = ACTIONS(6245), - [anon_sym_long] = ACTIONS(6245), - [anon_sym_COLON_COLON] = ACTIONS(6247), - [anon_sym_using] = ACTIONS(6245), - [sym_preproc_directive] = ACTIONS(6245), - [aux_sym_preproc_if_token1] = ACTIONS(6245), - [anon_sym_AMP] = ACTIONS(6245), - [anon_sym_static] = ACTIONS(6245), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6245), - [anon_sym_typename] = ACTIONS(6245), - [anon_sym_short] = ACTIONS(6245), - [anon_sym_new] = ACTIONS(6245), - [anon_sym_goto] = ACTIONS(6245), - [sym_operator_name] = ACTIONS(6247), - [anon_sym_while] = ACTIONS(6245), - [anon_sym_try] = ACTIONS(6245), - [anon_sym_for] = ACTIONS(6245), - [aux_sym_preproc_include_token1] = ACTIONS(6245), - [anon_sym_register] = ACTIONS(6245), - [anon_sym_DQUOTE] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_class] = ACTIONS(6245), - [anon_sym_if] = ACTIONS(6245), - [sym_primitive_type] = ACTIONS(6245), - [sym_false] = ACTIONS(6245), - [sym_nullptr] = ACTIONS(6245), - [anon_sym_do] = ACTIONS(6245), - [anon_sym_template] = ACTIONS(6245), - [anon_sym_return] = ACTIONS(6245), - [anon_sym_TILDE] = ACTIONS(6247), - [anon_sym_SEMI] = ACTIONS(6247), - [aux_sym_preproc_def_token1] = ACTIONS(6245), - [anon_sym_AMP_AMP] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6245), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(9550), }, - [3982] = { - [anon_sym_DASH] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [anon_sym_delete] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym_namespace] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [anon_sym_while] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [anon_sym_const] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_nullptr] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(2397), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(962), + [3953] = { + [anon_sym_DASH] = ACTIONS(6126), + [sym_raw_string_literal] = ACTIONS(6128), + [sym_true] = ACTIONS(6126), + [anon_sym_mutable] = ACTIONS(6126), + [sym_null] = ACTIONS(6126), + [anon_sym_break] = ACTIONS(6126), + [aux_sym_preproc_if_token2] = ACTIONS(6126), + [anon_sym_BANG] = ACTIONS(6128), + [anon_sym_sizeof] = ACTIONS(6126), + [anon_sym_volatile] = ACTIONS(6126), + [anon_sym_PLUS] = ACTIONS(6126), + [anon_sym_typedef] = ACTIONS(6126), + [anon_sym_switch] = ACTIONS(6126), + [anon_sym_explicit] = ACTIONS(6126), + [sym_identifier] = ACTIONS(6126), + [anon_sym_delete] = ACTIONS(6126), + [anon_sym_continue] = ACTIONS(6126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6126), + [anon_sym__Atomic] = ACTIONS(6126), + [sym_number_literal] = ACTIONS(6128), + [anon_sym_extern] = ACTIONS(6126), + [anon_sym_enum] = ACTIONS(6126), + [anon_sym_constexpr] = ACTIONS(6126), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6128), + [anon_sym_namespace] = ACTIONS(6126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6126), + [anon_sym_SQUOTE] = ACTIONS(6128), + [anon_sym_LBRACE] = ACTIONS(6128), + [anon_sym_DASH_DASH] = ACTIONS(6128), + [anon_sym_LPAREN2] = ACTIONS(6128), + [anon_sym_struct] = ACTIONS(6126), + [sym_auto] = ACTIONS(6126), + [anon_sym_signed] = ACTIONS(6126), + [anon_sym_long] = ACTIONS(6126), + [anon_sym_COLON_COLON] = ACTIONS(6128), + [anon_sym_using] = ACTIONS(6126), + [sym_preproc_directive] = ACTIONS(6126), + [aux_sym_preproc_if_token1] = ACTIONS(6126), + [anon_sym_AMP] = ACTIONS(6126), + [anon_sym_static] = ACTIONS(6126), + [anon_sym_STAR] = ACTIONS(6128), + [anon_sym_union] = ACTIONS(6126), + [anon_sym_typename] = ACTIONS(6126), + [anon_sym_short] = ACTIONS(6126), + [anon_sym_new] = ACTIONS(6126), + [anon_sym_goto] = ACTIONS(6126), + [sym_operator_name] = ACTIONS(6128), + [anon_sym_while] = ACTIONS(6126), + [anon_sym_try] = ACTIONS(6126), + [anon_sym_for] = ACTIONS(6126), + [aux_sym_preproc_include_token1] = ACTIONS(6126), + [anon_sym_register] = ACTIONS(6126), + [anon_sym_DQUOTE] = ACTIONS(6128), + [anon_sym_const] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(6126), + [anon_sym_class] = ACTIONS(6126), + [anon_sym_if] = ACTIONS(6126), + [sym_primitive_type] = ACTIONS(6126), + [sym_false] = ACTIONS(6126), + [sym_nullptr] = ACTIONS(6126), + [anon_sym_do] = ACTIONS(6126), + [anon_sym_template] = ACTIONS(6126), + [anon_sym_return] = ACTIONS(6126), + [anon_sym_TILDE] = ACTIONS(6128), + [anon_sym_SEMI] = ACTIONS(6128), + [aux_sym_preproc_def_token1] = ACTIONS(6126), + [anon_sym_AMP_AMP] = ACTIONS(6128), + [anon_sym_inline] = ACTIONS(6126), + [anon_sym_PLUS_PLUS] = ACTIONS(6128), + [anon_sym_restrict] = ACTIONS(6126), }, - [3983] = { - [anon_sym_DASH] = ACTIONS(6354), - [sym_raw_string_literal] = ACTIONS(6356), - [sym_true] = ACTIONS(6354), - [anon_sym_mutable] = ACTIONS(6354), - [sym_null] = ACTIONS(6354), - [anon_sym_break] = ACTIONS(6354), - [aux_sym_preproc_if_token2] = ACTIONS(6354), - [anon_sym_BANG] = ACTIONS(6356), - [anon_sym_sizeof] = ACTIONS(6354), - [anon_sym_volatile] = ACTIONS(6354), - [anon_sym_PLUS] = ACTIONS(6354), - [anon_sym_typedef] = ACTIONS(6354), - [anon_sym_switch] = ACTIONS(6354), - [anon_sym_explicit] = ACTIONS(6354), - [sym_identifier] = ACTIONS(6354), - [anon_sym_delete] = ACTIONS(6354), - [anon_sym_continue] = ACTIONS(6354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6354), - [anon_sym__Atomic] = ACTIONS(6354), - [sym_number_literal] = ACTIONS(6356), - [anon_sym_extern] = ACTIONS(6354), - [anon_sym_enum] = ACTIONS(6354), - [anon_sym_constexpr] = ACTIONS(6354), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6356), - [anon_sym_namespace] = ACTIONS(6354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6354), - [anon_sym_SQUOTE] = ACTIONS(6356), - [anon_sym_LBRACE] = ACTIONS(6356), - [anon_sym_DASH_DASH] = ACTIONS(6356), - [anon_sym_LPAREN2] = ACTIONS(6356), - [anon_sym_struct] = ACTIONS(6354), - [sym_auto] = ACTIONS(6354), - [anon_sym_signed] = ACTIONS(6354), - [anon_sym_long] = ACTIONS(6354), - [anon_sym_COLON_COLON] = ACTIONS(6356), - [anon_sym_using] = ACTIONS(6354), - [sym_preproc_directive] = ACTIONS(6354), - [aux_sym_preproc_if_token1] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(6354), - [anon_sym_static] = ACTIONS(6354), - [anon_sym_STAR] = ACTIONS(6356), - [anon_sym_union] = ACTIONS(6354), - [anon_sym_typename] = ACTIONS(6354), - [anon_sym_short] = ACTIONS(6354), - [anon_sym_new] = ACTIONS(6354), - [anon_sym_goto] = ACTIONS(6354), - [sym_operator_name] = ACTIONS(6356), - [anon_sym_while] = ACTIONS(6354), - [anon_sym_try] = ACTIONS(6354), - [anon_sym_for] = ACTIONS(6354), - [aux_sym_preproc_include_token1] = ACTIONS(6354), - [anon_sym_register] = ACTIONS(6354), - [anon_sym_DQUOTE] = ACTIONS(6356), - [anon_sym_const] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(6354), - [anon_sym_class] = ACTIONS(6354), - [anon_sym_if] = ACTIONS(6354), - [sym_primitive_type] = ACTIONS(6354), - [sym_false] = ACTIONS(6354), - [sym_nullptr] = ACTIONS(6354), - [anon_sym_do] = ACTIONS(6354), - [anon_sym_template] = ACTIONS(6354), - [anon_sym_return] = ACTIONS(6354), - [anon_sym_TILDE] = ACTIONS(6356), - [anon_sym_SEMI] = ACTIONS(6356), - [aux_sym_preproc_def_token1] = ACTIONS(6354), - [anon_sym_AMP_AMP] = ACTIONS(6356), - [anon_sym_inline] = ACTIONS(6354), - [anon_sym_PLUS_PLUS] = ACTIONS(6356), - [anon_sym_restrict] = ACTIONS(6354), + [3954] = { + [anon_sym_DASH] = ACTIONS(6130), + [sym_raw_string_literal] = ACTIONS(6132), + [sym_true] = ACTIONS(6130), + [anon_sym_mutable] = ACTIONS(6130), + [sym_null] = ACTIONS(6130), + [anon_sym_break] = ACTIONS(6130), + [aux_sym_preproc_if_token2] = ACTIONS(6130), + [anon_sym_BANG] = ACTIONS(6132), + [anon_sym_sizeof] = ACTIONS(6130), + [anon_sym_volatile] = ACTIONS(6130), + [anon_sym_PLUS] = ACTIONS(6130), + [anon_sym_typedef] = ACTIONS(6130), + [anon_sym_switch] = ACTIONS(6130), + [anon_sym_explicit] = ACTIONS(6130), + [sym_identifier] = ACTIONS(6130), + [anon_sym_delete] = ACTIONS(6130), + [anon_sym_continue] = ACTIONS(6130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6130), + [anon_sym__Atomic] = ACTIONS(6130), + [sym_number_literal] = ACTIONS(6132), + [anon_sym_extern] = ACTIONS(6130), + [anon_sym_enum] = ACTIONS(6130), + [anon_sym_constexpr] = ACTIONS(6130), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6132), + [anon_sym_namespace] = ACTIONS(6130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6130), + [anon_sym_SQUOTE] = ACTIONS(6132), + [anon_sym_LBRACE] = ACTIONS(6132), + [anon_sym_DASH_DASH] = ACTIONS(6132), + [anon_sym_LPAREN2] = ACTIONS(6132), + [anon_sym_struct] = ACTIONS(6130), + [sym_auto] = ACTIONS(6130), + [anon_sym_signed] = ACTIONS(6130), + [anon_sym_long] = ACTIONS(6130), + [anon_sym_COLON_COLON] = ACTIONS(6132), + [anon_sym_using] = ACTIONS(6130), + [sym_preproc_directive] = ACTIONS(6130), + [aux_sym_preproc_if_token1] = ACTIONS(6130), + [anon_sym_AMP] = ACTIONS(6130), + [anon_sym_static] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(6132), + [anon_sym_union] = ACTIONS(6130), + [anon_sym_typename] = ACTIONS(6130), + [anon_sym_short] = ACTIONS(6130), + [anon_sym_new] = ACTIONS(6130), + [anon_sym_goto] = ACTIONS(6130), + [sym_operator_name] = ACTIONS(6132), + [anon_sym_while] = ACTIONS(6130), + [anon_sym_try] = ACTIONS(6130), + [anon_sym_for] = ACTIONS(6130), + [aux_sym_preproc_include_token1] = ACTIONS(6130), + [anon_sym_register] = ACTIONS(6130), + [anon_sym_DQUOTE] = ACTIONS(6132), + [anon_sym_const] = ACTIONS(6130), + [anon_sym_LBRACK] = ACTIONS(6130), + [anon_sym_class] = ACTIONS(6130), + [anon_sym_if] = ACTIONS(6130), + [sym_primitive_type] = ACTIONS(6130), + [sym_false] = ACTIONS(6130), + [sym_nullptr] = ACTIONS(6130), + [anon_sym_do] = ACTIONS(6130), + [anon_sym_template] = ACTIONS(6130), + [anon_sym_return] = ACTIONS(6130), + [anon_sym_TILDE] = ACTIONS(6132), + [anon_sym_SEMI] = ACTIONS(6132), + [aux_sym_preproc_def_token1] = ACTIONS(6130), + [anon_sym_AMP_AMP] = ACTIONS(6132), + [anon_sym_inline] = ACTIONS(6130), + [anon_sym_PLUS_PLUS] = ACTIONS(6132), + [anon_sym_restrict] = ACTIONS(6130), }, - [3984] = { - [anon_sym_DASH] = ACTIONS(6361), - [sym_raw_string_literal] = ACTIONS(6363), - [sym_true] = ACTIONS(6361), - [anon_sym_mutable] = ACTIONS(6361), - [sym_null] = ACTIONS(6361), - [anon_sym_break] = ACTIONS(6361), - [aux_sym_preproc_if_token2] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6363), - [anon_sym_sizeof] = ACTIONS(6361), - [anon_sym_volatile] = ACTIONS(6361), - [anon_sym_PLUS] = ACTIONS(6361), - [anon_sym_typedef] = ACTIONS(6361), - [anon_sym_switch] = ACTIONS(6361), - [anon_sym_explicit] = ACTIONS(6361), - [sym_identifier] = ACTIONS(6361), - [anon_sym_delete] = ACTIONS(6361), - [anon_sym_continue] = ACTIONS(6361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6361), - [anon_sym__Atomic] = ACTIONS(6361), - [sym_number_literal] = ACTIONS(6363), - [anon_sym_extern] = ACTIONS(6361), - [anon_sym_enum] = ACTIONS(6361), - [anon_sym_constexpr] = ACTIONS(6361), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6363), - [anon_sym_namespace] = ACTIONS(6361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [anon_sym_DASH_DASH] = ACTIONS(6363), - [anon_sym_LPAREN2] = ACTIONS(6363), - [anon_sym_struct] = ACTIONS(6361), - [sym_auto] = ACTIONS(6361), - [anon_sym_signed] = ACTIONS(6361), - [anon_sym_long] = ACTIONS(6361), - [anon_sym_COLON_COLON] = ACTIONS(6363), - [anon_sym_using] = ACTIONS(6361), - [sym_preproc_directive] = ACTIONS(6361), - [aux_sym_preproc_if_token1] = ACTIONS(6361), - [anon_sym_AMP] = ACTIONS(6361), - [anon_sym_static] = ACTIONS(6361), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_union] = ACTIONS(6361), - [anon_sym_typename] = ACTIONS(6361), - [anon_sym_short] = ACTIONS(6361), - [anon_sym_new] = ACTIONS(6361), - [anon_sym_goto] = ACTIONS(6361), - [sym_operator_name] = ACTIONS(6363), - [anon_sym_while] = ACTIONS(6361), - [anon_sym_try] = ACTIONS(6361), - [anon_sym_for] = ACTIONS(6361), - [aux_sym_preproc_include_token1] = ACTIONS(6361), - [anon_sym_register] = ACTIONS(6361), - [anon_sym_DQUOTE] = ACTIONS(6363), - [anon_sym_const] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6361), - [anon_sym_class] = ACTIONS(6361), - [anon_sym_if] = ACTIONS(6361), - [sym_primitive_type] = ACTIONS(6361), - [sym_false] = ACTIONS(6361), - [sym_nullptr] = ACTIONS(6361), - [anon_sym_do] = ACTIONS(6361), - [anon_sym_template] = ACTIONS(6361), - [anon_sym_return] = ACTIONS(6361), - [anon_sym_TILDE] = ACTIONS(6363), - [anon_sym_SEMI] = ACTIONS(6363), - [aux_sym_preproc_def_token1] = ACTIONS(6361), - [anon_sym_AMP_AMP] = ACTIONS(6363), - [anon_sym_inline] = ACTIONS(6361), - [anon_sym_PLUS_PLUS] = ACTIONS(6363), - [anon_sym_restrict] = ACTIONS(6361), + [3955] = { + [anon_sym_DASH] = ACTIONS(6134), + [sym_raw_string_literal] = ACTIONS(6136), + [sym_true] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [sym_null] = ACTIONS(6134), + [anon_sym_break] = ACTIONS(6134), + [aux_sym_preproc_if_token2] = ACTIONS(6134), + [anon_sym_BANG] = ACTIONS(6136), + [anon_sym_sizeof] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_PLUS] = ACTIONS(6134), + [anon_sym_typedef] = ACTIONS(6134), + [anon_sym_switch] = ACTIONS(6134), + [anon_sym_explicit] = ACTIONS(6134), + [sym_identifier] = ACTIONS(6134), + [anon_sym_delete] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [sym_number_literal] = ACTIONS(6136), + [anon_sym_extern] = ACTIONS(6134), + [anon_sym_enum] = ACTIONS(6134), + [anon_sym_constexpr] = ACTIONS(6134), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6136), + [anon_sym_namespace] = ACTIONS(6134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6134), + [anon_sym_SQUOTE] = ACTIONS(6136), + [anon_sym_LBRACE] = ACTIONS(6136), + [anon_sym_DASH_DASH] = ACTIONS(6136), + [anon_sym_LPAREN2] = ACTIONS(6136), + [anon_sym_struct] = ACTIONS(6134), + [sym_auto] = ACTIONS(6134), + [anon_sym_signed] = ACTIONS(6134), + [anon_sym_long] = ACTIONS(6134), + [anon_sym_COLON_COLON] = ACTIONS(6136), + [anon_sym_using] = ACTIONS(6134), + [sym_preproc_directive] = ACTIONS(6134), + [aux_sym_preproc_if_token1] = ACTIONS(6134), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_static] = ACTIONS(6134), + [anon_sym_STAR] = ACTIONS(6136), + [anon_sym_union] = ACTIONS(6134), + [anon_sym_typename] = ACTIONS(6134), + [anon_sym_short] = ACTIONS(6134), + [anon_sym_new] = ACTIONS(6134), + [anon_sym_goto] = ACTIONS(6134), + [sym_operator_name] = ACTIONS(6136), + [anon_sym_while] = ACTIONS(6134), + [anon_sym_try] = ACTIONS(6134), + [anon_sym_for] = ACTIONS(6134), + [aux_sym_preproc_include_token1] = ACTIONS(6134), + [anon_sym_register] = ACTIONS(6134), + [anon_sym_DQUOTE] = ACTIONS(6136), + [anon_sym_const] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_class] = ACTIONS(6134), + [anon_sym_if] = ACTIONS(6134), + [sym_primitive_type] = ACTIONS(6134), + [sym_false] = ACTIONS(6134), + [sym_nullptr] = ACTIONS(6134), + [anon_sym_do] = ACTIONS(6134), + [anon_sym_template] = ACTIONS(6134), + [anon_sym_return] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6136), + [anon_sym_SEMI] = ACTIONS(6136), + [aux_sym_preproc_def_token1] = ACTIONS(6134), + [anon_sym_AMP_AMP] = ACTIONS(6136), + [anon_sym_inline] = ACTIONS(6134), + [anon_sym_PLUS_PLUS] = ACTIONS(6136), + [anon_sym_restrict] = ACTIONS(6134), }, - [3985] = { - [aux_sym_declaration_repeat1] = STATE(2028), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(9584), + [3956] = { + [anon_sym_DASH] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(968), + [sym_true] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [sym_null] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [aux_sym_preproc_if_token2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(966), + [sym_number_literal] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_namespace] = ACTIONS(966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [anon_sym_while] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [aux_sym_preproc_include_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_const] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_nullptr] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(2399), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(966), }, - [3986] = { - [anon_sym_DASH] = ACTIONS(7482), - [sym_raw_string_literal] = ACTIONS(7484), - [sym_true] = ACTIONS(7482), - [anon_sym_mutable] = ACTIONS(7482), - [sym_null] = ACTIONS(7482), - [anon_sym_break] = ACTIONS(7482), - [aux_sym_preproc_if_token2] = ACTIONS(7482), - [anon_sym_BANG] = ACTIONS(7484), - [anon_sym_sizeof] = ACTIONS(7482), - [anon_sym_volatile] = ACTIONS(7482), - [anon_sym_PLUS] = ACTIONS(7482), - [anon_sym_typedef] = ACTIONS(7482), - [anon_sym_switch] = ACTIONS(7482), - [anon_sym_explicit] = ACTIONS(7482), - [sym_identifier] = ACTIONS(7482), - [anon_sym_delete] = ACTIONS(7482), - [anon_sym_continue] = ACTIONS(7482), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7482), - [anon_sym__Atomic] = ACTIONS(7482), - [sym_number_literal] = ACTIONS(7484), - [anon_sym_extern] = ACTIONS(7482), - [anon_sym_enum] = ACTIONS(7482), - [anon_sym_constexpr] = ACTIONS(7482), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7482), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7484), - [anon_sym_namespace] = ACTIONS(7482), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7482), - [aux_sym_preproc_elif_token1] = ACTIONS(7482), - [anon_sym_SQUOTE] = ACTIONS(7484), - [anon_sym_LBRACE] = ACTIONS(7484), - [anon_sym_DASH_DASH] = ACTIONS(7484), - [anon_sym_LPAREN2] = ACTIONS(7484), - [anon_sym_struct] = ACTIONS(7482), - [sym_auto] = ACTIONS(7482), - [anon_sym_signed] = ACTIONS(7482), - [anon_sym_long] = ACTIONS(7482), - [anon_sym_COLON_COLON] = ACTIONS(7484), - [anon_sym_using] = ACTIONS(7482), - [aux_sym_preproc_else_token1] = ACTIONS(7482), - [sym_preproc_directive] = ACTIONS(7482), - [aux_sym_preproc_if_token1] = ACTIONS(7482), - [anon_sym_AMP] = ACTIONS(7482), - [anon_sym_static] = ACTIONS(7482), - [anon_sym_STAR] = ACTIONS(7484), - [anon_sym_union] = ACTIONS(7482), - [anon_sym_typename] = ACTIONS(7482), - [anon_sym_short] = ACTIONS(7482), - [anon_sym_new] = ACTIONS(7482), - [anon_sym_goto] = ACTIONS(7482), - [sym_operator_name] = ACTIONS(7484), - [anon_sym_while] = ACTIONS(7482), - [anon_sym_try] = ACTIONS(7482), - [anon_sym_for] = ACTIONS(7482), - [aux_sym_preproc_include_token1] = ACTIONS(7482), - [anon_sym_register] = ACTIONS(7482), - [anon_sym_DQUOTE] = ACTIONS(7484), - [anon_sym_const] = ACTIONS(7482), - [anon_sym_LBRACK] = ACTIONS(7482), - [anon_sym_class] = ACTIONS(7482), - [anon_sym_if] = ACTIONS(7482), - [sym_primitive_type] = ACTIONS(7482), - [sym_false] = ACTIONS(7482), - [sym_nullptr] = ACTIONS(7482), - [anon_sym_do] = ACTIONS(7482), - [anon_sym_template] = ACTIONS(7482), - [anon_sym_return] = ACTIONS(7482), - [anon_sym_TILDE] = ACTIONS(7484), - [anon_sym_SEMI] = ACTIONS(7484), - [aux_sym_preproc_def_token1] = ACTIONS(7482), - [anon_sym_AMP_AMP] = ACTIONS(7484), - [anon_sym_inline] = ACTIONS(7482), - [anon_sym_PLUS_PLUS] = ACTIONS(7484), - [anon_sym_restrict] = ACTIONS(7482), + [3957] = { + [anon_sym_DASH] = ACTIONS(7463), + [sym_raw_string_literal] = ACTIONS(7465), + [sym_true] = ACTIONS(7463), + [anon_sym_mutable] = ACTIONS(7463), + [sym_null] = ACTIONS(7463), + [anon_sym_break] = ACTIONS(7463), + [aux_sym_preproc_if_token2] = ACTIONS(7463), + [anon_sym_BANG] = ACTIONS(7465), + [anon_sym_sizeof] = ACTIONS(7463), + [anon_sym_volatile] = ACTIONS(7463), + [anon_sym_PLUS] = ACTIONS(7463), + [anon_sym_typedef] = ACTIONS(7463), + [anon_sym_switch] = ACTIONS(7463), + [anon_sym_explicit] = ACTIONS(7463), + [sym_identifier] = ACTIONS(7463), + [anon_sym_delete] = ACTIONS(7463), + [anon_sym_continue] = ACTIONS(7463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7463), + [anon_sym__Atomic] = ACTIONS(7463), + [sym_number_literal] = ACTIONS(7465), + [anon_sym_extern] = ACTIONS(7463), + [anon_sym_enum] = ACTIONS(7463), + [anon_sym_constexpr] = ACTIONS(7463), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7465), + [anon_sym_namespace] = ACTIONS(7463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7463), + [aux_sym_preproc_elif_token1] = ACTIONS(7463), + [anon_sym_SQUOTE] = ACTIONS(7465), + [anon_sym_LBRACE] = ACTIONS(7465), + [anon_sym_DASH_DASH] = ACTIONS(7465), + [anon_sym_LPAREN2] = ACTIONS(7465), + [anon_sym_struct] = ACTIONS(7463), + [sym_auto] = ACTIONS(7463), + [anon_sym_signed] = ACTIONS(7463), + [anon_sym_long] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(7465), + [anon_sym_using] = ACTIONS(7463), + [aux_sym_preproc_else_token1] = ACTIONS(7463), + [sym_preproc_directive] = ACTIONS(7463), + [aux_sym_preproc_if_token1] = ACTIONS(7463), + [anon_sym_AMP] = ACTIONS(7463), + [anon_sym_static] = ACTIONS(7463), + [anon_sym_STAR] = ACTIONS(7465), + [anon_sym_union] = ACTIONS(7463), + [anon_sym_typename] = ACTIONS(7463), + [anon_sym_short] = ACTIONS(7463), + [anon_sym_new] = ACTIONS(7463), + [anon_sym_goto] = ACTIONS(7463), + [sym_operator_name] = ACTIONS(7465), + [anon_sym_while] = ACTIONS(7463), + [anon_sym_try] = ACTIONS(7463), + [anon_sym_for] = ACTIONS(7463), + [aux_sym_preproc_include_token1] = ACTIONS(7463), + [anon_sym_register] = ACTIONS(7463), + [anon_sym_DQUOTE] = ACTIONS(7465), + [anon_sym_const] = ACTIONS(7463), + [anon_sym_LBRACK] = ACTIONS(7463), + [anon_sym_class] = ACTIONS(7463), + [anon_sym_if] = ACTIONS(7463), + [sym_primitive_type] = ACTIONS(7463), + [sym_false] = ACTIONS(7463), + [sym_nullptr] = ACTIONS(7463), + [anon_sym_do] = ACTIONS(7463), + [anon_sym_template] = ACTIONS(7463), + [anon_sym_return] = ACTIONS(7463), + [anon_sym_TILDE] = ACTIONS(7465), + [anon_sym_SEMI] = ACTIONS(7465), + [aux_sym_preproc_def_token1] = ACTIONS(7463), + [anon_sym_AMP_AMP] = ACTIONS(7465), + [anon_sym_inline] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(7465), + [anon_sym_restrict] = ACTIONS(7463), }, - [3987] = { - [anon_sym_DASH] = ACTIONS(7557), - [sym_raw_string_literal] = ACTIONS(7559), - [anon_sym_else] = ACTIONS(7557), - [sym_true] = ACTIONS(7557), - [anon_sym_mutable] = ACTIONS(7557), - [sym_null] = ACTIONS(7557), - [anon_sym_break] = ACTIONS(7557), - [aux_sym_preproc_if_token2] = ACTIONS(7557), - [anon_sym_BANG] = ACTIONS(7559), - [anon_sym_sizeof] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [anon_sym_PLUS] = ACTIONS(7557), - [anon_sym_typedef] = ACTIONS(7557), - [anon_sym_switch] = ACTIONS(7557), - [anon_sym_explicit] = ACTIONS(7557), - [sym_identifier] = ACTIONS(7557), - [anon_sym_catch] = ACTIONS(7557), - [anon_sym_delete] = ACTIONS(7557), - [anon_sym_continue] = ACTIONS(7557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7557), - [anon_sym__Atomic] = ACTIONS(7557), - [sym_number_literal] = ACTIONS(7559), - [anon_sym_extern] = ACTIONS(7557), - [anon_sym_enum] = ACTIONS(7557), - [anon_sym_constexpr] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7559), - [anon_sym_namespace] = ACTIONS(7557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7557), - [aux_sym_preproc_elif_token1] = ACTIONS(7557), - [anon_sym_SQUOTE] = ACTIONS(7559), - [anon_sym_LBRACE] = ACTIONS(7559), - [anon_sym_DASH_DASH] = ACTIONS(7559), - [anon_sym_LPAREN2] = ACTIONS(7559), - [anon_sym_struct] = ACTIONS(7557), - [sym_auto] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(7557), - [anon_sym_long] = ACTIONS(7557), - [anon_sym_COLON_COLON] = ACTIONS(7559), - [anon_sym_using] = ACTIONS(7557), - [aux_sym_preproc_else_token1] = ACTIONS(7557), - [sym_preproc_directive] = ACTIONS(7557), - [aux_sym_preproc_if_token1] = ACTIONS(7557), - [anon_sym_AMP] = ACTIONS(7557), - [anon_sym_static] = ACTIONS(7557), - [anon_sym_STAR] = ACTIONS(7559), - [anon_sym_union] = ACTIONS(7557), - [anon_sym_typename] = ACTIONS(7557), - [anon_sym_short] = ACTIONS(7557), - [anon_sym_new] = ACTIONS(7557), - [anon_sym_goto] = ACTIONS(7557), - [sym_operator_name] = ACTIONS(7559), - [anon_sym_while] = ACTIONS(7557), - [anon_sym_try] = ACTIONS(7557), - [anon_sym_for] = ACTIONS(7557), - [aux_sym_preproc_include_token1] = ACTIONS(7557), - [anon_sym_register] = ACTIONS(7557), - [anon_sym_DQUOTE] = ACTIONS(7559), - [anon_sym_const] = ACTIONS(7557), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_class] = ACTIONS(7557), - [anon_sym_if] = ACTIONS(7557), - [sym_primitive_type] = ACTIONS(7557), - [sym_false] = ACTIONS(7557), - [sym_nullptr] = ACTIONS(7557), - [anon_sym_do] = ACTIONS(7557), - [anon_sym_template] = ACTIONS(7557), - [anon_sym_return] = ACTIONS(7557), - [anon_sym_TILDE] = ACTIONS(7559), - [anon_sym_SEMI] = ACTIONS(7559), - [aux_sym_preproc_def_token1] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_inline] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7559), - [anon_sym_restrict] = ACTIONS(7557), + [3958] = { + [anon_sym_DASH] = ACTIONS(7538), + [sym_raw_string_literal] = ACTIONS(7540), + [anon_sym_else] = ACTIONS(7538), + [sym_true] = ACTIONS(7538), + [anon_sym_mutable] = ACTIONS(7538), + [sym_null] = ACTIONS(7538), + [anon_sym_break] = ACTIONS(7538), + [aux_sym_preproc_if_token2] = ACTIONS(7538), + [anon_sym_BANG] = ACTIONS(7540), + [anon_sym_sizeof] = ACTIONS(7538), + [anon_sym_volatile] = ACTIONS(7538), + [anon_sym_PLUS] = ACTIONS(7538), + [anon_sym_typedef] = ACTIONS(7538), + [anon_sym_switch] = ACTIONS(7538), + [anon_sym_explicit] = ACTIONS(7538), + [sym_identifier] = ACTIONS(7538), + [anon_sym_catch] = ACTIONS(7538), + [anon_sym_delete] = ACTIONS(7538), + [anon_sym_continue] = ACTIONS(7538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7538), + [anon_sym__Atomic] = ACTIONS(7538), + [sym_number_literal] = ACTIONS(7540), + [anon_sym_extern] = ACTIONS(7538), + [anon_sym_enum] = ACTIONS(7538), + [anon_sym_constexpr] = ACTIONS(7538), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7540), + [anon_sym_namespace] = ACTIONS(7538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7538), + [aux_sym_preproc_elif_token1] = ACTIONS(7538), + [anon_sym_SQUOTE] = ACTIONS(7540), + [anon_sym_LBRACE] = ACTIONS(7540), + [anon_sym_DASH_DASH] = ACTIONS(7540), + [anon_sym_LPAREN2] = ACTIONS(7540), + [anon_sym_struct] = ACTIONS(7538), + [sym_auto] = ACTIONS(7538), + [anon_sym_signed] = ACTIONS(7538), + [anon_sym_long] = ACTIONS(7538), + [anon_sym_COLON_COLON] = ACTIONS(7540), + [anon_sym_using] = ACTIONS(7538), + [aux_sym_preproc_else_token1] = ACTIONS(7538), + [sym_preproc_directive] = ACTIONS(7538), + [aux_sym_preproc_if_token1] = ACTIONS(7538), + [anon_sym_AMP] = ACTIONS(7538), + [anon_sym_static] = ACTIONS(7538), + [anon_sym_STAR] = ACTIONS(7540), + [anon_sym_union] = ACTIONS(7538), + [anon_sym_typename] = ACTIONS(7538), + [anon_sym_short] = ACTIONS(7538), + [anon_sym_new] = ACTIONS(7538), + [anon_sym_goto] = ACTIONS(7538), + [sym_operator_name] = ACTIONS(7540), + [anon_sym_while] = ACTIONS(7538), + [anon_sym_try] = ACTIONS(7538), + [anon_sym_for] = ACTIONS(7538), + [aux_sym_preproc_include_token1] = ACTIONS(7538), + [anon_sym_register] = ACTIONS(7538), + [anon_sym_DQUOTE] = ACTIONS(7540), + [anon_sym_const] = ACTIONS(7538), + [anon_sym_LBRACK] = ACTIONS(7538), + [anon_sym_class] = ACTIONS(7538), + [anon_sym_if] = ACTIONS(7538), + [sym_primitive_type] = ACTIONS(7538), + [sym_false] = ACTIONS(7538), + [sym_nullptr] = ACTIONS(7538), + [anon_sym_do] = ACTIONS(7538), + [anon_sym_template] = ACTIONS(7538), + [anon_sym_return] = ACTIONS(7538), + [anon_sym_TILDE] = ACTIONS(7540), + [anon_sym_SEMI] = ACTIONS(7540), + [aux_sym_preproc_def_token1] = ACTIONS(7538), + [anon_sym_AMP_AMP] = ACTIONS(7540), + [anon_sym_inline] = ACTIONS(7538), + [anon_sym_PLUS_PLUS] = ACTIONS(7540), + [anon_sym_restrict] = ACTIONS(7538), }, - [3988] = { - [sym_do_statement] = STATE(4407), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [3959] = { + [sym_do_statement] = STATE(4378), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4407), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4407), - [sym_if_statement] = STATE(4407), - [sym_switch_statement] = STATE(4407), - [sym_for_statement] = STATE(4407), - [sym_return_statement] = STATE(4407), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4378), + [sym_try_statement] = STATE(4378), + [sym_if_statement] = STATE(4378), + [sym_switch_statement] = STATE(4378), + [sym_for_statement] = STATE(4378), + [sym_return_statement] = STATE(4378), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4407), - [sym_break_statement] = STATE(4407), - [sym_continue_statement] = STATE(4407), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4378), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4407), - [sym_labeled_statement] = STATE(4407), - [sym_expression_statement] = STATE(4407), - [sym_while_statement] = STATE(4407), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4378), + [sym_for_range_loop] = STATE(4378), + [sym_compound_statement] = STATE(4378), + [sym_labeled_statement] = STATE(4378), + [sym_expression_statement] = STATE(4378), + [sym_while_statement] = STATE(4378), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [3989] = { - [aux_sym_for_statement_repeat1] = STATE(4409), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9586), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3960] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4380), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(9552), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3990] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4410), - [sym_logical_expression] = STATE(4410), - [sym_bitwise_expression] = STATE(4410), - [sym_cast_expression] = STATE(4410), - [sym_new_expression] = STATE(4410), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4410), - [sym_char_literal] = STATE(4410), - [sym_template_function] = STATE(4410), - [sym_conditional_expression] = STATE(4410), - [sym_equality_expression] = STATE(4410), - [sym_relational_expression] = STATE(4410), - [sym_delete_expression] = STATE(4410), - [sym_sizeof_expression] = STATE(4410), - [sym_parenthesized_expression] = STATE(4410), - [sym_lambda_expression] = STATE(4410), - [sym_concatenated_string] = STATE(4410), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4410), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4410), - [sym_math_expression] = STATE(4410), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), + [3961] = { + [sym_template_function] = STATE(4381), + [sym__expression] = STATE(4381), + [sym_logical_expression] = STATE(4381), + [sym_bitwise_expression] = STATE(4381), + [sym_cast_expression] = STATE(4381), + [sym_delete_expression] = STATE(4381), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4381), + [sym_lambda_expression] = STATE(4381), + [sym_char_literal] = STATE(4381), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4381), + [sym_equality_expression] = STATE(4381), + [sym_relational_expression] = STATE(4381), + [sym_sizeof_expression] = STATE(4381), + [sym_subscript_expression] = STATE(150), [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9588), + [sym_parenthesized_expression] = STATE(4381), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4381), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4381), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4381), + [sym_math_expression] = STATE(4381), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4381), + [sym_raw_string_literal] = ACTIONS(9554), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(9590), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(9590), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(9556), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(9556), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9588), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(9554), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(9590), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(9590), + [sym_false] = ACTIONS(9556), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(9556), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(9586), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(9552), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [3991] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(9592), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3962] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(9558), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3992] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9594), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3963] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(9560), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [3993] = { - [sym_template_argument_list] = STATE(377), + [3964] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -163135,7 +162521,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -163145,7 +162531,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9562), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -163171,619 +162557,543 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [3994] = { - [sym_parenthesized_expression] = STATE(4414), - [anon_sym_LPAREN2] = ACTIONS(372), + [3965] = { + [sym_parenthesized_expression] = STATE(4385), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [3995] = { - [anon_sym_LPAREN2] = ACTIONS(9598), + [3966] = { + [anon_sym_LPAREN2] = ACTIONS(9564), [sym_comment] = ACTIONS(3), }, - [3996] = { - [sym_compound_statement] = STATE(4416), - [anon_sym_LBRACE] = ACTIONS(374), + [3967] = { + [sym_compound_statement] = STATE(4387), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [3997] = { - [anon_sym_LPAREN2] = ACTIONS(9600), - [anon_sym_constexpr] = ACTIONS(9602), + [3968] = { + [anon_sym_LPAREN2] = ACTIONS(9566), + [anon_sym_constexpr] = ACTIONS(9568), [sym_comment] = ACTIONS(3), }, - [3998] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(9604), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [aux_sym_preproc_if_token2] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_namespace] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7770), - [aux_sym_preproc_elif_token1] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_using] = ACTIONS(7770), - [aux_sym_preproc_else_token1] = ACTIONS(7770), - [sym_preproc_directive] = ACTIONS(7770), - [aux_sym_preproc_if_token1] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7770), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [sym_operator_name] = ACTIONS(7772), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [aux_sym_preproc_include_token1] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_template] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7770), - [anon_sym_AMP_AMP] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [3969] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(9570), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [aux_sym_preproc_if_token2] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_namespace] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7751), + [aux_sym_preproc_elif_token1] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_using] = ACTIONS(7751), + [aux_sym_preproc_else_token1] = ACTIONS(7751), + [sym_preproc_directive] = ACTIONS(7751), + [aux_sym_preproc_if_token1] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [sym_operator_name] = ACTIONS(7753), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [aux_sym_preproc_include_token1] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [aux_sym_preproc_def_token1] = ACTIONS(7751), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [3999] = { - [sym_do_statement] = STATE(4420), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [3970] = { + [sym_do_statement] = STATE(4391), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4420), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4420), - [sym_if_statement] = STATE(4420), - [sym_switch_statement] = STATE(4420), - [sym_for_statement] = STATE(4420), - [sym_return_statement] = STATE(4420), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4391), + [sym_try_statement] = STATE(4391), + [sym_if_statement] = STATE(4391), + [sym_switch_statement] = STATE(4391), + [sym_for_statement] = STATE(4391), + [sym_return_statement] = STATE(4391), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4420), - [sym_break_statement] = STATE(4420), - [sym_continue_statement] = STATE(4420), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4391), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4420), - [sym_labeled_statement] = STATE(4420), - [sym_expression_statement] = STATE(4420), - [sym_while_statement] = STATE(4420), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4391), + [sym_for_range_loop] = STATE(4391), + [sym_compound_statement] = STATE(4391), + [sym_labeled_statement] = STATE(4391), + [sym_expression_statement] = STATE(4391), + [sym_while_statement] = STATE(4391), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4000] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9606), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3971] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(9572), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4001] = { - [anon_sym_RPAREN] = ACTIONS(9606), + [3972] = { + [anon_sym_RPAREN] = ACTIONS(9572), [sym_comment] = ACTIONS(3), }, - [4002] = { - [anon_sym_DASH] = ACTIONS(7902), - [sym_raw_string_literal] = ACTIONS(7904), - [sym_true] = ACTIONS(7902), - [anon_sym_mutable] = ACTIONS(7902), - [sym_null] = ACTIONS(7902), - [anon_sym_break] = ACTIONS(7902), - [aux_sym_preproc_if_token2] = ACTIONS(7902), - [anon_sym_BANG] = ACTIONS(7904), - [anon_sym_sizeof] = ACTIONS(7902), - [anon_sym_volatile] = ACTIONS(7902), - [anon_sym_PLUS] = ACTIONS(7902), - [anon_sym_typedef] = ACTIONS(7902), - [anon_sym_switch] = ACTIONS(7902), - [anon_sym_explicit] = ACTIONS(7902), - [sym_identifier] = ACTIONS(7902), - [anon_sym_delete] = ACTIONS(7902), - [anon_sym_continue] = ACTIONS(7902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7902), - [anon_sym__Atomic] = ACTIONS(7902), - [sym_number_literal] = ACTIONS(7904), - [anon_sym_extern] = ACTIONS(7902), - [anon_sym_enum] = ACTIONS(7902), - [anon_sym_constexpr] = ACTIONS(7902), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7904), - [anon_sym_namespace] = ACTIONS(7902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7902), - [aux_sym_preproc_elif_token1] = ACTIONS(7902), - [anon_sym_SQUOTE] = ACTIONS(7904), - [anon_sym_LBRACE] = ACTIONS(7904), - [anon_sym_DASH_DASH] = ACTIONS(7904), - [anon_sym_LPAREN2] = ACTIONS(7904), - [anon_sym_struct] = ACTIONS(7902), - [sym_auto] = ACTIONS(7902), - [anon_sym_signed] = ACTIONS(7902), - [anon_sym_long] = ACTIONS(7902), - [anon_sym_COLON_COLON] = ACTIONS(7904), - [anon_sym_using] = ACTIONS(7902), - [aux_sym_preproc_else_token1] = ACTIONS(7902), - [sym_preproc_directive] = ACTIONS(7902), - [aux_sym_preproc_if_token1] = ACTIONS(7902), - [anon_sym_AMP] = ACTIONS(7902), - [anon_sym_static] = ACTIONS(7902), - [anon_sym_STAR] = ACTIONS(7904), - [anon_sym_union] = ACTIONS(7902), - [anon_sym_typename] = ACTIONS(7902), - [anon_sym_short] = ACTIONS(7902), - [anon_sym_new] = ACTIONS(7902), - [anon_sym_goto] = ACTIONS(7902), - [sym_operator_name] = ACTIONS(7904), - [anon_sym_while] = ACTIONS(7902), - [anon_sym_try] = ACTIONS(7902), - [anon_sym_for] = ACTIONS(7902), - [aux_sym_preproc_include_token1] = ACTIONS(7902), - [anon_sym_register] = ACTIONS(7902), - [anon_sym_DQUOTE] = ACTIONS(7904), - [anon_sym_const] = ACTIONS(7902), - [anon_sym_LBRACK] = ACTIONS(7902), - [anon_sym_class] = ACTIONS(7902), - [anon_sym_if] = ACTIONS(7902), - [sym_primitive_type] = ACTIONS(7902), - [sym_false] = ACTIONS(7902), - [sym_nullptr] = ACTIONS(7902), - [anon_sym_do] = ACTIONS(7902), - [anon_sym_template] = ACTIONS(7902), - [anon_sym_return] = ACTIONS(7902), - [anon_sym_TILDE] = ACTIONS(7904), - [anon_sym_SEMI] = ACTIONS(7904), - [aux_sym_preproc_def_token1] = ACTIONS(7902), - [anon_sym_AMP_AMP] = ACTIONS(7904), - [anon_sym_inline] = ACTIONS(7902), - [anon_sym_PLUS_PLUS] = ACTIONS(7904), - [anon_sym_restrict] = ACTIONS(7902), - }, - [4003] = { - [anon_sym_DASH] = ACTIONS(8197), - [sym_raw_string_literal] = ACTIONS(8199), - [sym_true] = ACTIONS(8197), - [anon_sym_mutable] = ACTIONS(8197), - [sym_null] = ACTIONS(8197), - [anon_sym_break] = ACTIONS(8197), - [aux_sym_preproc_if_token2] = ACTIONS(8197), - [anon_sym_BANG] = ACTIONS(8199), - [anon_sym_sizeof] = ACTIONS(8197), - [anon_sym_volatile] = ACTIONS(8197), - [anon_sym_PLUS] = ACTIONS(8197), - [anon_sym_typedef] = ACTIONS(8197), - [anon_sym_switch] = ACTIONS(8197), - [anon_sym_explicit] = ACTIONS(8197), - [sym_identifier] = ACTIONS(8197), - [anon_sym_delete] = ACTIONS(8197), - [anon_sym_continue] = ACTIONS(8197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8197), - [anon_sym__Atomic] = ACTIONS(8197), - [sym_number_literal] = ACTIONS(8199), - [anon_sym_extern] = ACTIONS(8197), - [anon_sym_enum] = ACTIONS(8197), - [anon_sym_constexpr] = ACTIONS(8197), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8199), - [anon_sym_namespace] = ACTIONS(8197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8197), - [aux_sym_preproc_elif_token1] = ACTIONS(8197), - [anon_sym_SQUOTE] = ACTIONS(8199), - [anon_sym_LBRACE] = ACTIONS(8199), - [anon_sym_DASH_DASH] = ACTIONS(8199), - [anon_sym_LPAREN2] = ACTIONS(8199), - [anon_sym_struct] = ACTIONS(8197), - [sym_auto] = ACTIONS(8197), - [anon_sym_signed] = ACTIONS(8197), - [anon_sym_long] = ACTIONS(8197), - [anon_sym_COLON_COLON] = ACTIONS(8199), - [anon_sym_using] = ACTIONS(8197), - [aux_sym_preproc_else_token1] = ACTIONS(8197), - [sym_preproc_directive] = ACTIONS(8197), - [aux_sym_preproc_if_token1] = ACTIONS(8197), - [anon_sym_AMP] = ACTIONS(8197), - [anon_sym_static] = ACTIONS(8197), - [anon_sym_STAR] = ACTIONS(8199), - [anon_sym_union] = ACTIONS(8197), - [anon_sym_typename] = ACTIONS(8197), - [anon_sym_short] = ACTIONS(8197), - [anon_sym_new] = ACTIONS(8197), - [anon_sym_goto] = ACTIONS(8197), - [sym_operator_name] = ACTIONS(8199), - [anon_sym_while] = ACTIONS(8197), - [anon_sym_try] = ACTIONS(8197), - [anon_sym_for] = ACTIONS(8197), - [aux_sym_preproc_include_token1] = ACTIONS(8197), - [anon_sym_register] = ACTIONS(8197), - [anon_sym_DQUOTE] = ACTIONS(8199), - [anon_sym_const] = ACTIONS(8197), - [anon_sym_LBRACK] = ACTIONS(8197), - [anon_sym_class] = ACTIONS(8197), - [anon_sym_if] = ACTIONS(8197), - [sym_primitive_type] = ACTIONS(8197), - [sym_false] = ACTIONS(8197), - [sym_nullptr] = ACTIONS(8197), - [anon_sym_do] = ACTIONS(8197), - [anon_sym_template] = ACTIONS(8197), - [anon_sym_return] = ACTIONS(8197), - [anon_sym_TILDE] = ACTIONS(8199), - [anon_sym_SEMI] = ACTIONS(8199), - [aux_sym_preproc_def_token1] = ACTIONS(8197), - [anon_sym_AMP_AMP] = ACTIONS(8199), - [anon_sym_inline] = ACTIONS(8197), - [anon_sym_PLUS_PLUS] = ACTIONS(8199), - [anon_sym_restrict] = ACTIONS(8197), + [3973] = { + [anon_sym_DASH] = ACTIONS(7883), + [sym_raw_string_literal] = ACTIONS(7885), + [sym_true] = ACTIONS(7883), + [anon_sym_mutable] = ACTIONS(7883), + [sym_null] = ACTIONS(7883), + [anon_sym_break] = ACTIONS(7883), + [aux_sym_preproc_if_token2] = ACTIONS(7883), + [anon_sym_BANG] = ACTIONS(7885), + [anon_sym_sizeof] = ACTIONS(7883), + [anon_sym_volatile] = ACTIONS(7883), + [anon_sym_PLUS] = ACTIONS(7883), + [anon_sym_typedef] = ACTIONS(7883), + [anon_sym_switch] = ACTIONS(7883), + [anon_sym_explicit] = ACTIONS(7883), + [sym_identifier] = ACTIONS(7883), + [anon_sym_delete] = ACTIONS(7883), + [anon_sym_continue] = ACTIONS(7883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7883), + [anon_sym__Atomic] = ACTIONS(7883), + [sym_number_literal] = ACTIONS(7885), + [anon_sym_extern] = ACTIONS(7883), + [anon_sym_enum] = ACTIONS(7883), + [anon_sym_constexpr] = ACTIONS(7883), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7885), + [anon_sym_namespace] = ACTIONS(7883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7883), + [aux_sym_preproc_elif_token1] = ACTIONS(7883), + [anon_sym_SQUOTE] = ACTIONS(7885), + [anon_sym_LBRACE] = ACTIONS(7885), + [anon_sym_DASH_DASH] = ACTIONS(7885), + [anon_sym_LPAREN2] = ACTIONS(7885), + [anon_sym_struct] = ACTIONS(7883), + [sym_auto] = ACTIONS(7883), + [anon_sym_signed] = ACTIONS(7883), + [anon_sym_long] = ACTIONS(7883), + [anon_sym_COLON_COLON] = ACTIONS(7885), + [anon_sym_using] = ACTIONS(7883), + [aux_sym_preproc_else_token1] = ACTIONS(7883), + [sym_preproc_directive] = ACTIONS(7883), + [aux_sym_preproc_if_token1] = ACTIONS(7883), + [anon_sym_AMP] = ACTIONS(7883), + [anon_sym_static] = ACTIONS(7883), + [anon_sym_STAR] = ACTIONS(7885), + [anon_sym_union] = ACTIONS(7883), + [anon_sym_typename] = ACTIONS(7883), + [anon_sym_short] = ACTIONS(7883), + [anon_sym_new] = ACTIONS(7883), + [anon_sym_goto] = ACTIONS(7883), + [sym_operator_name] = ACTIONS(7885), + [anon_sym_while] = ACTIONS(7883), + [anon_sym_try] = ACTIONS(7883), + [anon_sym_for] = ACTIONS(7883), + [aux_sym_preproc_include_token1] = ACTIONS(7883), + [anon_sym_register] = ACTIONS(7883), + [anon_sym_DQUOTE] = ACTIONS(7885), + [anon_sym_const] = ACTIONS(7883), + [anon_sym_LBRACK] = ACTIONS(7883), + [anon_sym_class] = ACTIONS(7883), + [anon_sym_if] = ACTIONS(7883), + [sym_primitive_type] = ACTIONS(7883), + [sym_false] = ACTIONS(7883), + [sym_nullptr] = ACTIONS(7883), + [anon_sym_do] = ACTIONS(7883), + [anon_sym_template] = ACTIONS(7883), + [anon_sym_return] = ACTIONS(7883), + [anon_sym_TILDE] = ACTIONS(7885), + [anon_sym_SEMI] = ACTIONS(7885), + [aux_sym_preproc_def_token1] = ACTIONS(7883), + [anon_sym_AMP_AMP] = ACTIONS(7885), + [anon_sym_inline] = ACTIONS(7883), + [anon_sym_PLUS_PLUS] = ACTIONS(7885), + [anon_sym_restrict] = ACTIONS(7883), }, - [4004] = { - [anon_sym_DASH] = ACTIONS(8307), - [sym_raw_string_literal] = ACTIONS(8309), - [sym_true] = ACTIONS(8307), - [anon_sym_mutable] = ACTIONS(8307), - [sym_null] = ACTIONS(8307), - [anon_sym_break] = ACTIONS(8307), - [aux_sym_preproc_if_token2] = ACTIONS(8307), - [anon_sym_BANG] = ACTIONS(8309), - [anon_sym_sizeof] = ACTIONS(8307), - [anon_sym_volatile] = ACTIONS(8307), - [anon_sym_PLUS] = ACTIONS(8307), - [anon_sym_typedef] = ACTIONS(8307), - [anon_sym_switch] = ACTIONS(8307), - [anon_sym_explicit] = ACTIONS(8307), - [sym_identifier] = ACTIONS(8307), - [anon_sym_delete] = ACTIONS(8307), - [anon_sym_continue] = ACTIONS(8307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8307), - [anon_sym__Atomic] = ACTIONS(8307), - [sym_number_literal] = ACTIONS(8309), - [anon_sym_extern] = ACTIONS(8307), - [anon_sym_enum] = ACTIONS(8307), - [anon_sym_constexpr] = ACTIONS(8307), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8309), - [anon_sym_namespace] = ACTIONS(8307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8307), - [aux_sym_preproc_elif_token1] = ACTIONS(8307), - [anon_sym_SQUOTE] = ACTIONS(8309), - [anon_sym_LBRACE] = ACTIONS(8309), - [anon_sym_DASH_DASH] = ACTIONS(8309), - [anon_sym_LPAREN2] = ACTIONS(8309), - [anon_sym_struct] = ACTIONS(8307), - [sym_auto] = ACTIONS(8307), - [anon_sym_signed] = ACTIONS(8307), - [anon_sym_long] = ACTIONS(8307), - [anon_sym_COLON_COLON] = ACTIONS(8309), - [anon_sym_using] = ACTIONS(8307), - [aux_sym_preproc_else_token1] = ACTIONS(8307), - [sym_preproc_directive] = ACTIONS(8307), - [aux_sym_preproc_if_token1] = ACTIONS(8307), - [anon_sym_AMP] = ACTIONS(8307), - [anon_sym_static] = ACTIONS(8307), - [anon_sym_STAR] = ACTIONS(8309), - [anon_sym_union] = ACTIONS(8307), - [anon_sym_typename] = ACTIONS(8307), - [anon_sym_short] = ACTIONS(8307), - [anon_sym_new] = ACTIONS(8307), - [anon_sym_goto] = ACTIONS(8307), - [sym_operator_name] = ACTIONS(8309), - [anon_sym_while] = ACTIONS(8307), - [anon_sym_try] = ACTIONS(8307), - [anon_sym_for] = ACTIONS(8307), - [aux_sym_preproc_include_token1] = ACTIONS(8307), - [anon_sym_register] = ACTIONS(8307), - [anon_sym_DQUOTE] = ACTIONS(8309), - [anon_sym_const] = ACTIONS(8307), - [anon_sym_LBRACK] = ACTIONS(8307), - [anon_sym_class] = ACTIONS(8307), - [anon_sym_if] = ACTIONS(8307), - [sym_primitive_type] = ACTIONS(8307), - [sym_false] = ACTIONS(8307), - [sym_nullptr] = ACTIONS(8307), - [anon_sym_do] = ACTIONS(8307), - [anon_sym_template] = ACTIONS(8307), - [anon_sym_return] = ACTIONS(8307), - [anon_sym_TILDE] = ACTIONS(8309), - [anon_sym_SEMI] = ACTIONS(8309), - [aux_sym_preproc_def_token1] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_inline] = ACTIONS(8307), - [anon_sym_PLUS_PLUS] = ACTIONS(8309), - [anon_sym_restrict] = ACTIONS(8307), + [3974] = { + [anon_sym_DASH] = ACTIONS(7887), + [sym_raw_string_literal] = ACTIONS(7889), + [sym_true] = ACTIONS(7887), + [anon_sym_mutable] = ACTIONS(7887), + [sym_null] = ACTIONS(7887), + [anon_sym_break] = ACTIONS(7887), + [aux_sym_preproc_if_token2] = ACTIONS(7887), + [anon_sym_BANG] = ACTIONS(7889), + [anon_sym_sizeof] = ACTIONS(7887), + [anon_sym_volatile] = ACTIONS(7887), + [anon_sym_PLUS] = ACTIONS(7887), + [anon_sym_typedef] = ACTIONS(7887), + [anon_sym_switch] = ACTIONS(7887), + [anon_sym_explicit] = ACTIONS(7887), + [sym_identifier] = ACTIONS(7887), + [anon_sym_delete] = ACTIONS(7887), + [anon_sym_continue] = ACTIONS(7887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7887), + [anon_sym__Atomic] = ACTIONS(7887), + [sym_number_literal] = ACTIONS(7889), + [anon_sym_extern] = ACTIONS(7887), + [anon_sym_enum] = ACTIONS(7887), + [anon_sym_constexpr] = ACTIONS(7887), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7887), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7889), + [anon_sym_namespace] = ACTIONS(7887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7887), + [aux_sym_preproc_elif_token1] = ACTIONS(7887), + [anon_sym_SQUOTE] = ACTIONS(7889), + [anon_sym_LBRACE] = ACTIONS(7889), + [anon_sym_DASH_DASH] = ACTIONS(7889), + [anon_sym_LPAREN2] = ACTIONS(7889), + [anon_sym_struct] = ACTIONS(7887), + [sym_auto] = ACTIONS(7887), + [anon_sym_signed] = ACTIONS(7887), + [anon_sym_long] = ACTIONS(7887), + [anon_sym_COLON_COLON] = ACTIONS(7889), + [anon_sym_using] = ACTIONS(7887), + [aux_sym_preproc_else_token1] = ACTIONS(7887), + [sym_preproc_directive] = ACTIONS(7887), + [aux_sym_preproc_if_token1] = ACTIONS(7887), + [anon_sym_AMP] = ACTIONS(7887), + [anon_sym_static] = ACTIONS(7887), + [anon_sym_STAR] = ACTIONS(7889), + [anon_sym_union] = ACTIONS(7887), + [anon_sym_typename] = ACTIONS(7887), + [anon_sym_short] = ACTIONS(7887), + [anon_sym_new] = ACTIONS(7887), + [anon_sym_goto] = ACTIONS(7887), + [sym_operator_name] = ACTIONS(7889), + [anon_sym_while] = ACTIONS(7887), + [anon_sym_try] = ACTIONS(7887), + [anon_sym_for] = ACTIONS(7887), + [aux_sym_preproc_include_token1] = ACTIONS(7887), + [anon_sym_register] = ACTIONS(7887), + [anon_sym_DQUOTE] = ACTIONS(7889), + [anon_sym_const] = ACTIONS(7887), + [anon_sym_LBRACK] = ACTIONS(7887), + [anon_sym_class] = ACTIONS(7887), + [anon_sym_if] = ACTIONS(7887), + [sym_primitive_type] = ACTIONS(7887), + [sym_false] = ACTIONS(7887), + [sym_nullptr] = ACTIONS(7887), + [anon_sym_do] = ACTIONS(7887), + [anon_sym_template] = ACTIONS(7887), + [anon_sym_return] = ACTIONS(7887), + [anon_sym_TILDE] = ACTIONS(7889), + [anon_sym_SEMI] = ACTIONS(7889), + [aux_sym_preproc_def_token1] = ACTIONS(7887), + [anon_sym_AMP_AMP] = ACTIONS(7889), + [anon_sym_inline] = ACTIONS(7887), + [anon_sym_PLUS_PLUS] = ACTIONS(7889), + [anon_sym_restrict] = ACTIONS(7887), }, - [4005] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3975] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4006] = { - [sym_new_declarator] = STATE(4145), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), + [3976] = { + [sym_new_declarator] = STATE(4115), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7530), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_EQ] = ACTIONS(7532), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), }, - [4007] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(4776), - [anon_sym_PIPE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(4782), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4784), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4764), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(9608), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_LT_EQ] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4776), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3977] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_SLASH] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4760), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(9574), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4762), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4008] = { - [sym_do_statement] = STATE(4153), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3978] = { + [sym_do_statement] = STATE(4123), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4153), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4153), - [sym_if_statement] = STATE(4153), - [sym_switch_statement] = STATE(4153), - [sym_for_statement] = STATE(4153), - [sym_return_statement] = STATE(4153), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4123), + [sym_try_statement] = STATE(4123), + [sym_if_statement] = STATE(4123), + [sym_switch_statement] = STATE(4123), + [sym_for_statement] = STATE(4123), + [sym_return_statement] = STATE(4123), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4153), - [sym_break_statement] = STATE(4153), - [sym_continue_statement] = STATE(4153), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4123), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4153), - [sym_labeled_statement] = STATE(4153), - [sym_expression_statement] = STATE(4153), - [sym_while_statement] = STATE(4153), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4123), + [sym_for_range_loop] = STATE(4123), + [sym_compound_statement] = STATE(4123), + [sym_labeled_statement] = STATE(4123), + [sym_expression_statement] = STATE(4123), + [sym_while_statement] = STATE(4123), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -163797,7 +163107,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -163821,145 +163131,145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4009] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(9610), + [3979] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(9576), [sym_comment] = ACTIONS(3), }, - [4010] = { - [aux_sym_for_statement_repeat1] = STATE(4423), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9610), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [3980] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4394), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(9576), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4011] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4424), - [sym_logical_expression] = STATE(4424), - [sym_bitwise_expression] = STATE(4424), - [sym_cast_expression] = STATE(4424), - [sym_new_expression] = STATE(4424), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4424), - [sym_char_literal] = STATE(4424), - [sym_template_function] = STATE(4424), - [sym_conditional_expression] = STATE(4424), - [sym_equality_expression] = STATE(4424), - [sym_relational_expression] = STATE(4424), - [sym_delete_expression] = STATE(4424), - [sym_sizeof_expression] = STATE(4424), - [sym_parenthesized_expression] = STATE(4424), - [sym_lambda_expression] = STATE(4424), - [sym_concatenated_string] = STATE(4424), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4424), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4424), - [sym_math_expression] = STATE(4424), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9612), + [3981] = { + [sym_template_function] = STATE(4395), + [sym__expression] = STATE(4395), + [sym_logical_expression] = STATE(4395), + [sym_bitwise_expression] = STATE(4395), + [sym_cast_expression] = STATE(4395), + [sym_delete_expression] = STATE(4395), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4395), + [sym_lambda_expression] = STATE(4395), + [sym_char_literal] = STATE(4395), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4395), + [sym_equality_expression] = STATE(4395), + [sym_relational_expression] = STATE(4395), + [sym_sizeof_expression] = STATE(4395), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4395), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4395), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4395), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4395), + [sym_math_expression] = STATE(4395), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4395), + [sym_raw_string_literal] = ACTIONS(9578), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(9614), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(9614), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(9580), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(9580), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9612), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(9578), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(9614), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(9614), + [sym_false] = ACTIONS(9580), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(9580), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(9610), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(9576), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4012] = { - [sym_do_statement] = STATE(4159), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3982] = { + [sym_do_statement] = STATE(4129), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4159), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4159), - [sym_if_statement] = STATE(4159), - [sym_switch_statement] = STATE(4159), - [sym_for_statement] = STATE(4159), - [sym_return_statement] = STATE(4159), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4129), + [sym_try_statement] = STATE(4129), + [sym_if_statement] = STATE(4129), + [sym_switch_statement] = STATE(4129), + [sym_for_statement] = STATE(4129), + [sym_return_statement] = STATE(4129), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4159), - [sym_break_statement] = STATE(4159), - [sym_continue_statement] = STATE(4159), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4129), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4159), - [sym_labeled_statement] = STATE(4159), - [sym_expression_statement] = STATE(4159), - [sym_while_statement] = STATE(4159), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4129), + [sym_for_range_loop] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_labeled_statement] = STATE(4129), + [sym_expression_statement] = STATE(4129), + [sym_while_statement] = STATE(4129), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -163973,7 +163283,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -163997,51 +163307,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4013] = { - [sym_do_statement] = STATE(432), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3983] = { + [sym_do_statement] = STATE(433), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(432), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(432), - [sym_if_statement] = STATE(432), - [sym_switch_statement] = STATE(432), - [sym_for_statement] = STATE(432), - [sym_return_statement] = STATE(432), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(433), + [sym_try_statement] = STATE(433), + [sym_if_statement] = STATE(433), + [sym_switch_statement] = STATE(433), + [sym_for_statement] = STATE(433), + [sym_return_statement] = STATE(433), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(432), - [sym_break_statement] = STATE(432), - [sym_continue_statement] = STATE(432), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(433), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(432), - [sym_labeled_statement] = STATE(432), - [sym_expression_statement] = STATE(432), - [sym_while_statement] = STATE(432), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(433), + [sym_for_range_loop] = STATE(433), + [sym_compound_statement] = STATE(433), + [sym_labeled_statement] = STATE(433), + [sym_expression_statement] = STATE(433), + [sym_while_statement] = STATE(433), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -164055,18 +163365,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -164079,51 +163389,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4014] = { - [sym_do_statement] = STATE(714), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3984] = { + [sym_do_statement] = STATE(715), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(714), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(714), - [sym_if_statement] = STATE(714), - [sym_switch_statement] = STATE(714), - [sym_for_statement] = STATE(714), - [sym_return_statement] = STATE(714), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(715), + [sym_try_statement] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_switch_statement] = STATE(715), + [sym_for_statement] = STATE(715), + [sym_return_statement] = STATE(715), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(714), - [sym_break_statement] = STATE(714), - [sym_continue_statement] = STATE(714), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(715), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(714), - [sym_labeled_statement] = STATE(714), - [sym_expression_statement] = STATE(714), - [sym_while_statement] = STATE(714), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(715), + [sym_for_range_loop] = STATE(715), + [sym_compound_statement] = STATE(715), + [sym_labeled_statement] = STATE(715), + [sym_expression_statement] = STATE(715), + [sym_while_statement] = STATE(715), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -164137,18 +163447,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -164161,212 +163471,212 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4015] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(4426), - [sym_logical_expression] = STATE(4426), - [sym_bitwise_expression] = STATE(4426), - [sym_cast_expression] = STATE(4426), - [sym_new_expression] = STATE(4426), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4426), - [sym_declaration] = STATE(4425), - [sym_char_literal] = STATE(4426), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(4426), - [sym_conditional_expression] = STATE(4426), - [sym_equality_expression] = STATE(4426), - [sym_relational_expression] = STATE(4426), - [sym_sizeof_expression] = STATE(4426), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(4426), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(4426), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(4426), - [sym_lambda_expression] = STATE(4426), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(4427), - [sym_assignment_expression] = STATE(4426), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4426), - [sym_math_expression] = STATE(4426), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [3985] = { + [sym_template_function] = STATE(4397), + [sym__expression] = STATE(4397), + [sym_logical_expression] = STATE(4397), + [sym_bitwise_expression] = STATE(4397), + [sym_cast_expression] = STATE(4397), + [sym_delete_expression] = STATE(4397), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(4397), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(4397), + [sym_lambda_expression] = STATE(4397), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(4396), + [sym_for_range_declaration] = STATE(4398), + [sym_conditional_expression] = STATE(4397), + [sym_equality_expression] = STATE(4397), + [sym_relational_expression] = STATE(4397), + [sym_sizeof_expression] = STATE(4397), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(4397), + [sym_concatenated_string] = STATE(4397), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(9616), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(4397), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4397), + [sym_math_expression] = STATE(4397), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4397), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(9582), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(9618), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(9584), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(9618), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(9616), + [sym_number_literal] = ACTIONS(9582), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(9618), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(9584), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(9618), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(9584), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(9620), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(9586), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4016] = { - [aux_sym_try_statement_repeat1] = STATE(4428), - [sym_catch_clause] = STATE(4428), - [anon_sym_catch] = ACTIONS(1297), + [3986] = { + [sym_catch_clause] = STATE(4399), + [aux_sym_try_statement_repeat1] = STATE(4399), + [anon_sym_catch] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [4017] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4429), - [sym_logical_expression] = STATE(4429), - [sym_bitwise_expression] = STATE(4429), - [sym_cast_expression] = STATE(4429), - [sym_new_expression] = STATE(4429), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4429), - [sym_char_literal] = STATE(4429), - [sym_template_function] = STATE(4429), - [sym_conditional_expression] = STATE(4429), - [sym_equality_expression] = STATE(4429), - [sym_relational_expression] = STATE(4429), - [sym_delete_expression] = STATE(4429), - [sym_sizeof_expression] = STATE(4429), - [sym_parenthesized_expression] = STATE(4429), - [sym_lambda_expression] = STATE(4429), - [sym_concatenated_string] = STATE(4429), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4429), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4429), - [sym_math_expression] = STATE(4429), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9622), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(9624), - [sym_null] = ACTIONS(9624), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9622), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(9624), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(9624), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [3987] = { + [sym_template_function] = STATE(4400), + [sym__expression] = STATE(4400), + [sym_logical_expression] = STATE(4400), + [sym_bitwise_expression] = STATE(4400), + [sym_cast_expression] = STATE(4400), + [sym_delete_expression] = STATE(4400), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4400), + [sym_lambda_expression] = STATE(4400), + [sym_char_literal] = STATE(4400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4400), + [sym_equality_expression] = STATE(4400), + [sym_relational_expression] = STATE(4400), + [sym_sizeof_expression] = STATE(4400), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4400), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4400), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4400), + [sym_math_expression] = STATE(4400), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4400), + [sym_raw_string_literal] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(9590), + [sym_null] = ACTIONS(9590), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9588), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(9590), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4018] = { - [anon_sym_LPAREN2] = ACTIONS(9626), + [3988] = { + [anon_sym_LPAREN2] = ACTIONS(9592), [sym_comment] = ACTIONS(3), }, - [4019] = { - [sym_do_statement] = STATE(4210), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [3989] = { + [sym_do_statement] = STATE(4180), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4210), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4210), - [sym_if_statement] = STATE(4210), - [sym_switch_statement] = STATE(4210), - [sym_for_statement] = STATE(4210), - [sym_return_statement] = STATE(4210), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4180), + [sym_try_statement] = STATE(4180), + [sym_if_statement] = STATE(4180), + [sym_switch_statement] = STATE(4180), + [sym_for_statement] = STATE(4180), + [sym_return_statement] = STATE(4180), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4210), - [sym_break_statement] = STATE(4210), - [sym_continue_statement] = STATE(4210), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4180), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4210), - [sym_labeled_statement] = STATE(4210), - [sym_expression_statement] = STATE(4210), - [sym_while_statement] = STATE(4210), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4180), + [sym_for_range_loop] = STATE(4180), + [sym_compound_statement] = STATE(4180), + [sym_labeled_statement] = STATE(4180), + [sym_expression_statement] = STATE(4180), + [sym_while_statement] = STATE(4180), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -164380,7 +163690,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -164404,644 +163714,649 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4020] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(9628), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_namespace] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_using] = ACTIONS(9003), - [sym_preproc_directive] = ACTIONS(9003), - [aux_sym_preproc_if_token1] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9003), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_RBRACE] = ACTIONS(9005), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [sym_operator_name] = ACTIONS(9005), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [aux_sym_preproc_include_token1] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_template] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [aux_sym_preproc_def_token1] = ACTIONS(9003), - [anon_sym_AMP_AMP] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), + [3990] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(9594), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_namespace] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_using] = ACTIONS(8967), + [sym_preproc_directive] = ACTIONS(8967), + [aux_sym_preproc_if_token1] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8967), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_RBRACE] = ACTIONS(8969), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [sym_operator_name] = ACTIONS(8969), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [aux_sym_preproc_include_token1] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_template] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [aux_sym_preproc_def_token1] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), }, - [4021] = { - [sym_new_declarator] = STATE(4145), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_RPAREN] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), + [3991] = { + [sym_new_declarator] = STATE(4115), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7530), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_PERCENT] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_RPAREN] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_EQ] = ACTIONS(7532), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), }, - [4022] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_RPAREN] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3992] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_RPAREN] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4023] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(4904), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4900), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(9630), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_RPAREN] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [3993] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(9596), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_RPAREN] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4024] = { - [sym_parameter_list] = STATE(4028), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), + [3994] = { + [sym_parameter_list] = STATE(3998), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), }, - [4025] = { - [sym_abstract_array_declarator] = STATE(4433), - [sym_parameter_list] = STATE(3387), - [sym_abstract_reference_declarator] = STATE(4433), - [sym_abstract_function_declarator] = STATE(4433), - [aux_sym_type_definition_repeat1] = STATE(4432), - [sym_abstract_pointer_declarator] = STATE(4433), - [sym_type_qualifier] = STATE(4432), - [sym__abstract_declarator] = STATE(4433), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [3995] = { + [sym_abstract_reference_declarator] = STATE(4404), + [aux_sym_type_definition_repeat1] = STATE(4403), + [sym_abstract_array_declarator] = STATE(4404), + [sym_parameter_list] = STATE(3359), + [sym_abstract_function_declarator] = STATE(4404), + [sym_abstract_pointer_declarator] = STATE(4404), + [sym_type_qualifier] = STATE(4403), + [sym__abstract_declarator] = STATE(4404), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7257), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(7259), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7238), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(7240), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_AMP_AMP] = ACTIONS(7242), + [anon_sym_restrict] = ACTIONS(1070), }, - [4026] = { - [sym_parameter_list] = STATE(4028), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), + [3996] = { + [sym_parameter_list] = STATE(3998), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), }, - [4027] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4434), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4434), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(9632), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [3997] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4405), + [sym_type_qualifier] = STATE(4405), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(9598), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(2824), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(2826), + [anon_sym_restrict] = ACTIONS(1070), }, - [4028] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4435), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4435), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(9634), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [3998] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4406), + [sym_type_qualifier] = STATE(4406), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(9600), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(2824), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(2826), + [anon_sym_restrict] = ACTIONS(1070), }, - [4029] = { - [anon_sym_LPAREN2] = ACTIONS(7477), - [anon_sym_struct] = ACTIONS(7475), - [sym_auto] = ACTIONS(7475), - [anon_sym_signed] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [anon_sym_long] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7477), - [anon_sym_using] = ACTIONS(7475), - [sym_preproc_directive] = ACTIONS(7475), - [aux_sym_preproc_if_token1] = ACTIONS(7475), - [anon_sym_AMP] = ACTIONS(7475), - [anon_sym_static] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_RBRACE] = ACTIONS(7477), - [anon_sym_typedef] = ACTIONS(7475), - [anon_sym_STAR] = ACTIONS(7477), - [anon_sym_union] = ACTIONS(7475), - [anon_sym_typename] = ACTIONS(7475), - [anon_sym_private] = ACTIONS(7475), - [anon_sym_explicit] = ACTIONS(7475), - [anon_sym_short] = ACTIONS(7475), - [sym_identifier] = ACTIONS(7475), - [sym_operator_name] = ACTIONS(7477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7475), - [anon_sym_register] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [anon_sym_const] = ACTIONS(7475), - [anon_sym_extern] = ACTIONS(7475), - [anon_sym_virtual] = ACTIONS(7475), - [anon_sym_enum] = ACTIONS(7475), - [anon_sym_class] = ACTIONS(7475), - [anon_sym_constexpr] = ACTIONS(7475), - [sym_primitive_type] = ACTIONS(7475), - [anon_sym_unsigned] = ACTIONS(7475), - [anon_sym_public] = ACTIONS(7475), - [anon_sym_protected] = ACTIONS(7475), - [anon_sym_friend] = ACTIONS(7475), - [anon_sym_template] = ACTIONS(7475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7475), - [anon_sym_TILDE] = ACTIONS(7477), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7477), - [anon_sym_inline] = ACTIONS(7475), - [anon_sym_restrict] = ACTIONS(7475), + [3999] = { + [anon_sym_LPAREN2] = ACTIONS(7461), + [anon_sym_struct] = ACTIONS(7459), + [sym_auto] = ACTIONS(7459), + [anon_sym_signed] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [anon_sym_long] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7461), + [anon_sym_using] = ACTIONS(7459), + [sym_preproc_directive] = ACTIONS(7459), + [aux_sym_preproc_if_token1] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_static] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_RBRACE] = ACTIONS(7461), + [anon_sym_typedef] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7461), + [anon_sym_union] = ACTIONS(7459), + [anon_sym_typename] = ACTIONS(7459), + [anon_sym_private] = ACTIONS(7459), + [anon_sym_explicit] = ACTIONS(7459), + [anon_sym_short] = ACTIONS(7459), + [sym_identifier] = ACTIONS(7459), + [sym_operator_name] = ACTIONS(7461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7459), + [anon_sym_register] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_extern] = ACTIONS(7459), + [anon_sym_LBRACK] = ACTIONS(7459), + [anon_sym_virtual] = ACTIONS(7459), + [anon_sym_enum] = ACTIONS(7459), + [anon_sym_class] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [sym_primitive_type] = ACTIONS(7459), + [anon_sym_unsigned] = ACTIONS(7459), + [anon_sym_public] = ACTIONS(7459), + [anon_sym_protected] = ACTIONS(7459), + [anon_sym_friend] = ACTIONS(7459), + [anon_sym_template] = ACTIONS(7459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7459), + [anon_sym_TILDE] = ACTIONS(7461), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_inline] = ACTIONS(7459), + [anon_sym_restrict] = ACTIONS(7459), }, - [4030] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [4000] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(9636), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(9602), }, - [4031] = { + [4001] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9636), + [anon_sym_SEMI] = ACTIONS(9602), }, - [4032] = { - [sym_macro_type_specifier] = STATE(1480), - [sym_class_specifier] = STATE(1480), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1480), - [sym__type_specifier] = STATE(1480), - [sym_type_descriptor] = STATE(4437), - [sym_type_qualifier] = STATE(1482), - [sym_struct_specifier] = STATE(1480), - [sym_union_specifier] = STATE(1480), - [sym_dependent_type] = STATE(1480), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(1482), - [aux_sym_sized_type_specifier_repeat1] = STATE(1483), - [sym_enum_specifier] = STATE(1480), - [sym_scoped_type_identifier] = STATE(87), + [4002] = { + [aux_sym_type_definition_repeat1] = STATE(1475), + [sym_macro_type_specifier] = STATE(1477), + [sym_class_specifier] = STATE(1477), + [aux_sym_sized_type_specifier_repeat1] = STATE(1476), + [sym_sized_type_specifier] = STATE(1477), + [sym__type_specifier] = STATE(1477), + [sym_type_descriptor] = STATE(4408), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_type_qualifier] = STATE(1475), + [sym_struct_specifier] = STATE(1477), + [sym_union_specifier] = STATE(1477), + [sym_dependent_type] = STATE(1477), + [sym_enum_specifier] = STATE(1477), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2933), + [sym_auto] = ACTIONS(2933), + [anon_sym_signed] = ACTIONS(2935), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2935), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(147), [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2935), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2937), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2935), [anon_sym_restrict] = ACTIONS(11), }, - [4033] = { - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2937), - [sym_auto] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2937), - [aux_sym_preproc_else_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_private] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2937), - [sym_operator_name] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_public] = ACTIONS(2937), - [anon_sym_protected] = ACTIONS(2937), - [anon_sym_friend] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2939), - [aux_sym_preproc_elif_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(2937), + [4003] = { + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2939), + [sym_auto] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2939), + [aux_sym_preproc_else_token1] = ACTIONS(2939), + [aux_sym_preproc_if_token2] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_private] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2939), + [sym_operator_name] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_virtual] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_public] = ACTIONS(2939), + [anon_sym_protected] = ACTIONS(2939), + [anon_sym_friend] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2941), + [aux_sym_preproc_elif_token1] = ACTIONS(2939), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(2939), }, - [4034] = { - [sym_template_type] = STATE(172), - [sym_scoped_namespace_identifier] = STATE(172), - [sym_scoped_identifier] = STATE(4439), - [sym_scoped_type_identifier] = STATE(174), - [anon_sym_COLON_COLON] = ACTIONS(312), - [sym_identifier] = ACTIONS(9638), + [4004] = { + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(174), + [sym_scoped_namespace_identifier] = STATE(174), + [sym_scoped_identifier] = STATE(4410), + [anon_sym_COLON_COLON] = ACTIONS(314), + [sym_identifier] = ACTIONS(9604), [sym_comment] = ACTIONS(3), }, - [4035] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [4005] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(9640), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(9642), + [anon_sym_EQ] = ACTIONS(9606), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(9608), }, - [4036] = { + [4006] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9642), + [anon_sym_SEMI] = ACTIONS(9608), }, - [4037] = { - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1166), - [sym_auto] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_mutable] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1168), - [anon_sym_using] = ACTIONS(1166), - [aux_sym_preproc_if_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_typename] = ACTIONS(1166), - [anon_sym_private] = ACTIONS(1166), - [anon_sym_explicit] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1166), - [sym_operator_name] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym_virtual] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_class] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_public] = ACTIONS(1166), - [anon_sym_protected] = ACTIONS(1166), - [anon_sym_friend] = ACTIONS(1166), - [anon_sym_template] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1168), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), + [4007] = { + [anon_sym_LPAREN2] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1172), + [sym_auto] = ACTIONS(1172), + [anon_sym_signed] = ACTIONS(1172), + [anon_sym_mutable] = ACTIONS(1172), + [anon_sym_long] = ACTIONS(1172), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1172), + [aux_sym_preproc_if_token2] = ACTIONS(1172), + [sym_preproc_directive] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_volatile] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_typename] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_explicit] = ACTIONS(1172), + [anon_sym_short] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1172), + [sym_operator_name] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), + [anon_sym_register] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_virtual] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1172), + [anon_sym_constexpr] = ACTIONS(1172), + [sym_primitive_type] = ACTIONS(1172), + [anon_sym_unsigned] = ACTIONS(1172), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_protected] = ACTIONS(1172), + [anon_sym_friend] = ACTIONS(1172), + [anon_sym_template] = ACTIONS(1172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1172), + [anon_sym_restrict] = ACTIONS(1172), }, - [4038] = { - [anon_sym_LF] = ACTIONS(9644), + [4008] = { + [anon_sym_LF] = ACTIONS(9610), [sym_comment] = ACTIONS(244), }, - [4039] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(4444), - [sym_preproc_function_def] = STATE(4444), - [sym_alias_declaration] = STATE(4444), + [4009] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(4415), + [sym_preproc_function_def] = STATE(4415), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(4444), - [sym_preproc_if_in_field_declaration_list] = STATE(4444), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(4444), - [sym_type_definition] = STATE(4444), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(4444), - [sym__field_declaration_list_item] = STATE(4444), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4444), - [sym_inline_method_definition] = STATE(4444), - [sym_friend_declaration] = STATE(4444), - [sym_access_specifier] = STATE(4444), - [sym_using_declaration] = STATE(4444), - [sym_preproc_else_in_field_declaration_list] = STATE(4445), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4445), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(4444), - [sym_constructor_or_destructor_definition] = STATE(4444), - [sym_constructor_or_destructor_declaration] = STATE(4444), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4415), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(4415), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(4415), + [sym_preproc_if_in_field_declaration_list] = STATE(4415), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(4415), + [sym_type_definition] = STATE(4415), + [sym_using_declaration] = STATE(4415), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(4415), + [sym_inline_method_definition] = STATE(4415), + [sym_constructor_or_destructor_definition] = STATE(4415), + [sym_access_specifier] = STATE(4415), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(4415), + [sym_alias_declaration] = STATE(4415), + [sym_preproc_else_in_field_declaration_list] = STATE(4416), + [sym_preproc_elif_in_field_declaration_list] = STATE(4416), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(4415), + [sym_constructor_or_destructor_declaration] = STATE(4415), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(9646), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(9612), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [4040] = { - [sym_union_specifier] = STATE(4446), - [sym_macro_type_specifier] = STATE(4446), - [sym_class_specifier] = STATE(4446), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(4446), - [sym_scoped_namespace_identifier] = STATE(88), + [4010] = { + [sym_union_specifier] = STATE(4417), + [sym_macro_type_specifier] = STATE(4417), + [sym_class_specifier] = STATE(4417), + [aux_sym_sized_type_specifier_repeat1] = STATE(87), + [sym_sized_type_specifier] = STATE(4417), [aux_sym_type_definition_repeat1] = STATE(388), - [aux_sym_sized_type_specifier_repeat1] = STATE(89), - [sym__type_specifier] = STATE(4446), - [sym_enum_specifier] = STATE(4446), - [sym_dependent_type] = STATE(4446), - [sym_struct_specifier] = STATE(4446), - [sym_scoped_type_identifier] = STATE(87), + [sym__type_specifier] = STATE(4417), + [sym_struct_specifier] = STATE(4417), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(4417), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), [sym_type_qualifier] = STATE(388), + [sym_dependent_type] = STATE(4417), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(9648), + [sym_auto] = ACTIONS(9614), [anon_sym_signed] = ACTIONS(145), [anon_sym_mutable] = ACTIONS(11), [anon_sym_long] = ACTIONS(145), @@ -165051,7 +164366,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(9648), + [sym_primitive_type] = ACTIONS(9614), [anon_sym_unsigned] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), @@ -165062,215 +164377,291 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(145), [anon_sym_restrict] = ACTIONS(11), }, - [4041] = { - [sym_pointer_type_declarator] = STATE(4447), - [sym_array_type_declarator] = STATE(4447), - [sym_function_type_declarator] = STATE(4447), - [sym__type_declarator] = STATE(4447), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [4011] = { + [sym_pointer_type_declarator] = STATE(4418), + [sym_array_type_declarator] = STATE(4418), + [sym_function_type_declarator] = STATE(4418), + [sym__type_declarator] = STATE(4418), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [4042] = { - [anon_sym_LPAREN2] = ACTIONS(5058), - [anon_sym_struct] = ACTIONS(5060), - [sym_auto] = ACTIONS(5060), - [anon_sym_signed] = ACTIONS(5060), - [anon_sym_mutable] = ACTIONS(5060), - [anon_sym_long] = ACTIONS(5060), - [anon_sym_COLON_COLON] = ACTIONS(5058), - [anon_sym_using] = ACTIONS(5060), - [aux_sym_preproc_if_token2] = ACTIONS(5060), - [sym_preproc_directive] = ACTIONS(5060), - [aux_sym_preproc_if_token1] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5060), - [anon_sym_static] = ACTIONS(5060), - [anon_sym_volatile] = ACTIONS(5060), - [anon_sym_typedef] = ACTIONS(5060), - [anon_sym_STAR] = ACTIONS(5058), - [anon_sym_union] = ACTIONS(5060), - [anon_sym_typename] = ACTIONS(5060), - [anon_sym_private] = ACTIONS(5060), - [anon_sym_explicit] = ACTIONS(5060), - [anon_sym_short] = ACTIONS(5060), - [sym_identifier] = ACTIONS(5060), - [sym_operator_name] = ACTIONS(5058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5060), - [anon_sym_register] = ACTIONS(5060), - [anon_sym__Atomic] = ACTIONS(5060), - [anon_sym_const] = ACTIONS(5060), - [anon_sym_extern] = ACTIONS(5060), - [anon_sym_virtual] = ACTIONS(5060), - [anon_sym_enum] = ACTIONS(5060), - [anon_sym_class] = ACTIONS(5060), - [anon_sym_constexpr] = ACTIONS(5060), - [sym_primitive_type] = ACTIONS(5060), - [anon_sym_unsigned] = ACTIONS(5060), - [anon_sym_public] = ACTIONS(5060), - [anon_sym_protected] = ACTIONS(5060), - [anon_sym_friend] = ACTIONS(5060), - [anon_sym_template] = ACTIONS(5060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5060), - [anon_sym_TILDE] = ACTIONS(5058), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5060), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_inline] = ACTIONS(5060), - [anon_sym_restrict] = ACTIONS(5060), + [4012] = { + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_struct] = ACTIONS(5056), + [sym_auto] = ACTIONS(5056), + [anon_sym_signed] = ACTIONS(5056), + [anon_sym_mutable] = ACTIONS(5056), + [anon_sym_long] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(5054), + [anon_sym_using] = ACTIONS(5056), + [aux_sym_preproc_if_token2] = ACTIONS(5056), + [sym_preproc_directive] = ACTIONS(5056), + [aux_sym_preproc_if_token1] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_static] = ACTIONS(5056), + [anon_sym_volatile] = ACTIONS(5056), + [anon_sym_typedef] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5054), + [anon_sym_union] = ACTIONS(5056), + [anon_sym_typename] = ACTIONS(5056), + [anon_sym_private] = ACTIONS(5056), + [anon_sym_explicit] = ACTIONS(5056), + [anon_sym_short] = ACTIONS(5056), + [sym_identifier] = ACTIONS(5056), + [sym_operator_name] = ACTIONS(5054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5056), + [anon_sym_register] = ACTIONS(5056), + [anon_sym__Atomic] = ACTIONS(5056), + [anon_sym_const] = ACTIONS(5056), + [anon_sym_extern] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_virtual] = ACTIONS(5056), + [anon_sym_enum] = ACTIONS(5056), + [anon_sym_class] = ACTIONS(5056), + [anon_sym_constexpr] = ACTIONS(5056), + [sym_primitive_type] = ACTIONS(5056), + [anon_sym_unsigned] = ACTIONS(5056), + [anon_sym_public] = ACTIONS(5056), + [anon_sym_protected] = ACTIONS(5056), + [anon_sym_friend] = ACTIONS(5056), + [anon_sym_template] = ACTIONS(5056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5054), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5054), + [anon_sym_inline] = ACTIONS(5056), + [anon_sym_restrict] = ACTIONS(5056), }, - [4043] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(4449), - [sym_preproc_function_def] = STATE(4449), - [sym_alias_declaration] = STATE(4449), + [4013] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(4420), + [sym_preproc_function_def] = STATE(4420), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(4449), - [sym_preproc_if_in_field_declaration_list] = STATE(4449), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(4449), - [sym_type_definition] = STATE(4449), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(4449), - [sym__field_declaration_list_item] = STATE(4449), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4449), - [sym_inline_method_definition] = STATE(4449), - [sym_friend_declaration] = STATE(4449), - [sym_access_specifier] = STATE(4449), - [sym_using_declaration] = STATE(4449), - [sym_preproc_else_in_field_declaration_list] = STATE(4450), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4450), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(4449), - [sym_constructor_or_destructor_definition] = STATE(4449), - [sym_constructor_or_destructor_declaration] = STATE(4449), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4420), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(4420), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(4420), + [sym_preproc_if_in_field_declaration_list] = STATE(4420), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(4420), + [sym_type_definition] = STATE(4420), + [sym_using_declaration] = STATE(4420), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(4420), + [sym_inline_method_definition] = STATE(4420), + [sym_constructor_or_destructor_definition] = STATE(4420), + [sym_access_specifier] = STATE(4420), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(4420), + [sym_alias_declaration] = STATE(4420), + [sym_preproc_else_in_field_declaration_list] = STATE(4421), + [sym_preproc_elif_in_field_declaration_list] = STATE(4421), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(4420), + [sym_constructor_or_destructor_declaration] = STATE(4420), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(9650), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(9616), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [4044] = { - [sym_function_field_declarator] = STATE(4453), - [sym_reference_field_declarator] = STATE(4453), - [sym_template_method] = STATE(4453), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(4453), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(4453), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(4453), - [sym_bitfield_clause] = STATE(4454), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(4454), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(9652), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(9654), - [sym_operator_name] = ACTIONS(9656), + [4014] = { + [sym_function_field_declarator] = STATE(4425), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(4425), + [sym_pointer_field_declarator] = STATE(4425), + [sym__field_declarator] = STATE(4425), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(4424), + [sym_array_field_declarator] = STATE(4425), + [sym_initializer_list] = STATE(4424), + [sym_template_method] = STATE(4425), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(9618), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(9620), + [sym_operator_name] = ACTIONS(9622), [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), }, - [4045] = { - [anon_sym_LPAREN2] = ACTIONS(535), + [4015] = { + [anon_sym_LPAREN2] = ACTIONS(548), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(9658), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(9624), }, - [4046] = { - [aux_sym_function_definition_repeat1] = STATE(355), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_type_qualifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_attribute] = STATE(355), - [sym_struct_specifier] = STATE(278), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym__declaration_specifiers] = STATE(4456), - [sym_scoped_type_identifier] = STATE(87), + [4016] = { + [anon_sym_LPAREN2] = ACTIONS(530), + [anon_sym_mutable] = ACTIONS(532), + [anon_sym_register] = ACTIONS(532), + [anon_sym__Atomic] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym_constexpr] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(9626), + [anon_sym_explicit] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(532), + [sym_identifier] = ACTIONS(532), + [anon_sym_restrict] = ACTIONS(532), + [sym_operator_name] = ACTIONS(530), + }, + [4017] = { + [anon_sym_LPAREN2] = ACTIONS(5072), + [anon_sym_struct] = ACTIONS(5074), + [sym_auto] = ACTIONS(5074), + [anon_sym_signed] = ACTIONS(5074), + [anon_sym_mutable] = ACTIONS(5074), + [anon_sym_long] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(5072), + [anon_sym_using] = ACTIONS(5074), + [aux_sym_preproc_if_token2] = ACTIONS(5074), + [sym_preproc_directive] = ACTIONS(5074), + [aux_sym_preproc_if_token1] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_static] = ACTIONS(5074), + [anon_sym_volatile] = ACTIONS(5074), + [anon_sym_typedef] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_union] = ACTIONS(5074), + [anon_sym_typename] = ACTIONS(5074), + [anon_sym_private] = ACTIONS(5074), + [anon_sym_explicit] = ACTIONS(5074), + [anon_sym_short] = ACTIONS(5074), + [sym_identifier] = ACTIONS(5074), + [sym_operator_name] = ACTIONS(5072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5074), + [anon_sym_register] = ACTIONS(5074), + [anon_sym__Atomic] = ACTIONS(5074), + [anon_sym_const] = ACTIONS(5074), + [anon_sym_extern] = ACTIONS(5074), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_virtual] = ACTIONS(5074), + [anon_sym_enum] = ACTIONS(5074), + [anon_sym_class] = ACTIONS(5074), + [anon_sym_constexpr] = ACTIONS(5074), + [sym_primitive_type] = ACTIONS(5074), + [anon_sym_unsigned] = ACTIONS(5074), + [anon_sym_public] = ACTIONS(5074), + [anon_sym_protected] = ACTIONS(5074), + [anon_sym_friend] = ACTIONS(5074), + [anon_sym_template] = ACTIONS(5074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5074), + [anon_sym_TILDE] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5074), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_inline] = ACTIONS(5074), + [anon_sym_restrict] = ACTIONS(5074), + }, + [4018] = { + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(313), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_dependent_type] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_struct_specifier] = STATE(280), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_attribute] = STATE(313), + [sym__declaration_specifiers] = STATE(4428), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(460), + [sym_auto] = ACTIONS(460), + [anon_sym_signed] = ACTIONS(462), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(460), + [anon_sym_long] = ACTIONS(462), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -165279,141 +164670,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [anon_sym_unsigned] = ACTIONS(460), + [sym_primitive_type] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(462), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(460), + [anon_sym_short] = ACTIONS(462), [anon_sym_restrict] = ACTIONS(11), }, - [4047] = { - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(545), - [anon_sym_constexpr] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(9660), - [anon_sym_explicit] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_inline] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_operator_name] = ACTIONS(545), - }, - [4048] = { - [anon_sym_LPAREN2] = ACTIONS(5076), - [anon_sym_struct] = ACTIONS(5078), - [sym_auto] = ACTIONS(5078), - [anon_sym_signed] = ACTIONS(5078), - [anon_sym_mutable] = ACTIONS(5078), - [anon_sym_long] = ACTIONS(5078), - [anon_sym_COLON_COLON] = ACTIONS(5076), - [anon_sym_using] = ACTIONS(5078), - [aux_sym_preproc_if_token2] = ACTIONS(5078), - [sym_preproc_directive] = ACTIONS(5078), - [aux_sym_preproc_if_token1] = ACTIONS(5078), - [anon_sym_AMP] = ACTIONS(5078), - [anon_sym_static] = ACTIONS(5078), - [anon_sym_volatile] = ACTIONS(5078), - [anon_sym_typedef] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5076), - [anon_sym_union] = ACTIONS(5078), - [anon_sym_typename] = ACTIONS(5078), - [anon_sym_private] = ACTIONS(5078), - [anon_sym_explicit] = ACTIONS(5078), - [anon_sym_short] = ACTIONS(5078), - [sym_identifier] = ACTIONS(5078), - [sym_operator_name] = ACTIONS(5076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5078), - [anon_sym_register] = ACTIONS(5078), - [anon_sym__Atomic] = ACTIONS(5078), - [anon_sym_const] = ACTIONS(5078), - [anon_sym_extern] = ACTIONS(5078), - [anon_sym_virtual] = ACTIONS(5078), - [anon_sym_enum] = ACTIONS(5078), - [anon_sym_class] = ACTIONS(5078), - [anon_sym_constexpr] = ACTIONS(5078), - [sym_primitive_type] = ACTIONS(5078), - [anon_sym_unsigned] = ACTIONS(5078), - [anon_sym_public] = ACTIONS(5078), - [anon_sym_protected] = ACTIONS(5078), - [anon_sym_friend] = ACTIONS(5078), - [anon_sym_template] = ACTIONS(5078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5078), - [anon_sym_TILDE] = ACTIONS(5076), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5078), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_inline] = ACTIONS(5078), - [anon_sym_restrict] = ACTIONS(5078), - }, - [4049] = { - [sym_reference_declarator] = STATE(4458), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(4458), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(4458), - [sym_destructor_name] = STATE(4458), - [sym__declarator] = STATE(4458), - [sym_init_declarator] = STATE(4459), - [sym_array_declarator] = STATE(4458), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(4458), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(9662), + [4019] = { + [sym_template_function] = STATE(4429), + [sym_destructor_name] = STATE(4429), + [sym_pointer_declarator] = STATE(4429), + [sym_structured_binding_declarator] = STATE(4429), + [sym__declarator] = STATE(4429), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(4429), + [sym_array_declarator] = STATE(4429), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(4430), + [sym_function_declarator] = STATE(4429), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(9628), [sym_comment] = ACTIONS(3), }, - [4050] = { - [aux_sym_function_definition_repeat1] = STATE(4046), - [sym_macro_type_specifier] = STATE(876), - [sym_class_specifier] = STATE(876), - [sym__type_specifier] = STATE(876), - [sym_sized_type_specifier] = STATE(876), - [sym_template_type] = STATE(86), - [sym_function_definition] = STATE(4460), - [sym_declaration] = STATE(4460), - [aux_sym__declaration_specifiers_repeat1] = STATE(878), - [sym_storage_class_specifier] = STATE(878), - [sym_dependent_type] = STATE(876), - [sym_struct_specifier] = STATE(876), - [sym_union_specifier] = STATE(876), - [sym_attribute] = STATE(4046), - [sym_type_qualifier] = STATE(878), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__empty_declaration] = STATE(4460), - [aux_sym_sized_type_specifier_repeat1] = STATE(879), - [sym_enum_specifier] = STATE(876), - [sym__declaration_specifiers] = STATE(4461), - [sym_scoped_type_identifier] = STATE(87), + [4020] = { + [sym_macro_type_specifier] = STATE(55), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_sized_type_specifier] = STATE(55), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_function_definition] = STATE(4431), + [sym_declaration] = STATE(4431), + [sym_scoped_type_identifier] = STATE(90), + [aux_sym_function_definition_repeat1] = STATE(4018), + [sym_template_type] = STATE(91), + [sym__empty_declaration] = STATE(4431), + [sym_storage_class_specifier] = STATE(881), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_union_specifier] = STATE(55), + [sym_type_qualifier] = STATE(881), + [aux_sym__declaration_specifiers_repeat1] = STATE(881), + [sym_enum_specifier] = STATE(55), + [sym_attribute] = STATE(4018), + [sym__declaration_specifiers] = STATE(4432), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1571), + [sym_auto] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(35), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1571), + [anon_sym_long] = ACTIONS(35), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), @@ -165422,254 +164744,405 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1571), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(35), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1573), + [anon_sym_typename] = ACTIONS(69), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1571), + [anon_sym_short] = ACTIONS(35), [anon_sym_restrict] = ACTIONS(11), }, - [4051] = { - [sym_preproc_params] = STATE(4464), - [sym_preproc_arg] = ACTIONS(9664), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(9666), + [4021] = { + [sym_preproc_params] = STATE(4435), + [sym_preproc_arg] = ACTIONS(9630), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_LF] = ACTIONS(9632), [sym_comment] = ACTIONS(244), }, - [4052] = { - [sym_compound_statement] = STATE(4465), - [sym_field_initializer_list] = STATE(4466), - [sym_default_method_clause] = STATE(4465), - [sym_delete_method_clause] = STATE(4465), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(8712), - [anon_sym_LBRACE] = ACTIONS(8714), + [4022] = { + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_storage_class_specifier] = STATE(1434), + [sym_type_qualifier] = STATE(1434), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [aux_sym__declaration_specifiers_repeat1] = STATE(1434), + [sym_enum_specifier] = STATE(620), + [sym__declaration_specifiers] = STATE(4436), + [sym_scoped_namespace_identifier] = STATE(92), + [anon_sym_struct] = ACTIONS(49), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_mutable] = ACTIONS(11), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(63), + [anon_sym__Atomic] = ACTIONS(11), + [anon_sym_const] = ACTIONS(11), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(147), + [anon_sym_enum] = ACTIONS(366), + [anon_sym_class] = ACTIONS(89), + [anon_sym_constexpr] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(11), [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(67), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_explicit] = ACTIONS(11), + [sym_identifier] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(63), + [anon_sym_short] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(11), }, - [4053] = { - [anon_sym_LPAREN2] = ACTIONS(5104), - [anon_sym_struct] = ACTIONS(5106), - [sym_auto] = ACTIONS(5106), - [anon_sym_signed] = ACTIONS(5106), - [anon_sym_mutable] = ACTIONS(5106), - [anon_sym_long] = ACTIONS(5106), - [anon_sym_COLON_COLON] = ACTIONS(5104), - [anon_sym_using] = ACTIONS(5106), - [aux_sym_preproc_if_token2] = ACTIONS(5106), - [sym_preproc_directive] = ACTIONS(5106), - [aux_sym_preproc_if_token1] = ACTIONS(5106), - [anon_sym_AMP] = ACTIONS(5106), - [anon_sym_static] = ACTIONS(5106), - [anon_sym_volatile] = ACTIONS(5106), - [anon_sym_typedef] = ACTIONS(5106), - [anon_sym_STAR] = ACTIONS(5104), - [anon_sym_union] = ACTIONS(5106), - [anon_sym_typename] = ACTIONS(5106), - [anon_sym_private] = ACTIONS(5106), - [anon_sym_explicit] = ACTIONS(5106), - [anon_sym_short] = ACTIONS(5106), - [sym_identifier] = ACTIONS(5106), - [sym_operator_name] = ACTIONS(5104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5106), - [anon_sym_register] = ACTIONS(5106), - [anon_sym__Atomic] = ACTIONS(5106), - [anon_sym_const] = ACTIONS(5106), - [anon_sym_extern] = ACTIONS(5106), - [anon_sym_virtual] = ACTIONS(5106), - [anon_sym_enum] = ACTIONS(5106), - [anon_sym_class] = ACTIONS(5106), - [anon_sym_constexpr] = ACTIONS(5106), - [sym_primitive_type] = ACTIONS(5106), - [anon_sym_unsigned] = ACTIONS(5106), - [anon_sym_public] = ACTIONS(5106), - [anon_sym_protected] = ACTIONS(5106), - [anon_sym_friend] = ACTIONS(5106), - [anon_sym_template] = ACTIONS(5106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5106), - [anon_sym_TILDE] = ACTIONS(5104), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5106), - [anon_sym_AMP_AMP] = ACTIONS(5104), - [anon_sym_inline] = ACTIONS(5106), - [anon_sym_restrict] = ACTIONS(5106), + [4023] = { + [sym_function_field_declarator] = STATE(4437), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(4437), + [sym_pointer_field_declarator] = STATE(4437), + [sym__field_declarator] = STATE(4437), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(4424), + [sym_array_field_declarator] = STATE(4437), + [sym_initializer_list] = STATE(4424), + [sym_template_method] = STATE(4437), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(9618), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(9620), + [sym_operator_name] = ACTIONS(9634), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), }, - [4054] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4467), - [sym_logical_expression] = STATE(4467), - [sym_bitwise_expression] = STATE(4467), - [sym_cast_expression] = STATE(4467), - [sym_new_expression] = STATE(4467), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4467), - [sym_char_literal] = STATE(4467), - [sym_template_function] = STATE(4467), - [sym_conditional_expression] = STATE(4467), - [sym_equality_expression] = STATE(4467), - [sym_relational_expression] = STATE(4467), - [sym_delete_expression] = STATE(4467), - [sym_sizeof_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_initializer_list] = STATE(4454), - [sym_concatenated_string] = STATE(4467), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4467), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4467), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4467), - [sym_math_expression] = STATE(4467), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9668), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(9670), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(9670), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9668), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(9670), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(9670), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [4024] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(4024), + [sym_preproc_function_def] = STATE(4024), + [sym__declarator] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(3381), + [sym_array_declarator] = STATE(614), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4024), + [sym_storage_class_specifier] = STATE(3385), + [sym_type_qualifier] = STATE(3385), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(4024), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(4024), + [sym_preproc_if_in_field_declaration_list] = STATE(4024), + [sym_attribute] = STATE(3381), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(4024), + [sym_type_definition] = STATE(4024), + [sym_using_declaration] = STATE(4024), + [sym__declaration_specifiers] = STATE(3383), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(3384), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(4024), + [sym_inline_method_definition] = STATE(4024), + [sym_constructor_or_destructor_definition] = STATE(4024), + [sym_access_specifier] = STATE(4024), + [sym_reference_declarator] = STATE(614), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(4024), + [sym_alias_declaration] = STATE(4024), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(3385), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(4024), + [sym_constructor_or_destructor_declaration] = STATE(4024), + [anon_sym_LPAREN2] = ACTIONS(5092), + [anon_sym_struct] = ACTIONS(5095), + [sym_auto] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(5101), + [anon_sym_mutable] = ACTIONS(5104), + [anon_sym_long] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5107), + [anon_sym_using] = ACTIONS(9636), + [aux_sym_preproc_if_token2] = ACTIONS(8721), + [sym_preproc_directive] = ACTIONS(9639), + [aux_sym_preproc_if_token1] = ACTIONS(9642), + [anon_sym_AMP] = ACTIONS(5119), + [anon_sym_static] = ACTIONS(5122), + [anon_sym_volatile] = ACTIONS(5104), + [anon_sym_typedef] = ACTIONS(9645), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_union] = ACTIONS(5133), + [anon_sym_typename] = ACTIONS(5136), + [anon_sym_private] = ACTIONS(9648), + [anon_sym_explicit] = ACTIONS(5104), + [anon_sym_short] = ACTIONS(5101), + [sym_identifier] = ACTIONS(5142), + [sym_operator_name] = ACTIONS(5145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9651), + [anon_sym_register] = ACTIONS(5122), + [anon_sym__Atomic] = ACTIONS(5104), + [anon_sym_const] = ACTIONS(5104), + [anon_sym_extern] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_virtual] = ACTIONS(9654), + [anon_sym_enum] = ACTIONS(5157), + [anon_sym_class] = ACTIONS(5160), + [anon_sym_constexpr] = ACTIONS(5104), + [sym_primitive_type] = ACTIONS(5098), + [anon_sym_unsigned] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(9648), + [anon_sym_protected] = ACTIONS(9648), + [anon_sym_friend] = ACTIONS(9657), + [anon_sym_template] = ACTIONS(9660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9651), + [anon_sym_TILDE] = ACTIONS(5172), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(9663), + [anon_sym_AMP_AMP] = ACTIONS(5178), + [anon_sym_inline] = ACTIONS(5122), + [anon_sym_restrict] = ACTIONS(5104), + }, + [4025] = { + [anon_sym_LPAREN2] = ACTIONS(5193), + [anon_sym_struct] = ACTIONS(5195), + [sym_auto] = ACTIONS(5195), + [anon_sym_signed] = ACTIONS(5195), + [anon_sym_mutable] = ACTIONS(5195), + [anon_sym_long] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_using] = ACTIONS(5195), + [aux_sym_preproc_if_token2] = ACTIONS(5195), + [sym_preproc_directive] = ACTIONS(5195), + [aux_sym_preproc_if_token1] = ACTIONS(5195), + [anon_sym_AMP] = ACTIONS(5195), + [anon_sym_static] = ACTIONS(5195), + [anon_sym_volatile] = ACTIONS(5195), + [anon_sym_typedef] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_union] = ACTIONS(5195), + [anon_sym_typename] = ACTIONS(5195), + [anon_sym_private] = ACTIONS(5195), + [anon_sym_explicit] = ACTIONS(5195), + [anon_sym_short] = ACTIONS(5195), + [sym_identifier] = ACTIONS(5195), + [sym_operator_name] = ACTIONS(5193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5195), + [anon_sym_register] = ACTIONS(5195), + [anon_sym__Atomic] = ACTIONS(5195), + [anon_sym_const] = ACTIONS(5195), + [anon_sym_extern] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_virtual] = ACTIONS(5195), + [anon_sym_enum] = ACTIONS(5195), + [anon_sym_class] = ACTIONS(5195), + [anon_sym_constexpr] = ACTIONS(5195), + [sym_primitive_type] = ACTIONS(5195), + [anon_sym_unsigned] = ACTIONS(5195), + [anon_sym_public] = ACTIONS(5195), + [anon_sym_protected] = ACTIONS(5195), + [anon_sym_friend] = ACTIONS(5195), + [anon_sym_template] = ACTIONS(5195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5195), + [anon_sym_TILDE] = ACTIONS(5193), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_inline] = ACTIONS(5195), + [anon_sym_restrict] = ACTIONS(5195), + }, + [4026] = { + [sym_template_function] = STATE(4438), + [sym__expression] = STATE(4438), + [sym_logical_expression] = STATE(4438), + [sym_bitwise_expression] = STATE(4438), + [sym_cast_expression] = STATE(4438), + [sym_delete_expression] = STATE(4438), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4438), + [sym_lambda_expression] = STATE(4438), + [sym_char_literal] = STATE(4438), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4438), + [sym_equality_expression] = STATE(4438), + [sym_relational_expression] = STATE(4438), + [sym_sizeof_expression] = STATE(4438), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4424), + [sym_parenthesized_expression] = STATE(4438), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4438), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4438), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4438), + [sym_math_expression] = STATE(4438), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4438), + [sym_raw_string_literal] = ACTIONS(9666), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(9668), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(9668), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9666), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(9668), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(9668), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [4055] = { - [sym_compound_statement] = STATE(4470), - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(4454), - [aux_sym_field_declaration_repeat1] = STATE(4471), - [sym_initializer_list] = STATE(4454), - [sym_delete_method_clause] = STATE(4470), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(9652), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(9672), - [anon_sym_LBRACE] = ACTIONS(9674), + [4027] = { [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(9618), }, - [4056] = { + [4028] = { + [sym_compound_statement] = STATE(4441), + [sym_parameter_list] = STATE(2505), + [sym_delete_method_clause] = STATE(4441), + [sym_bitfield_clause] = STATE(4424), + [sym_initializer_list] = STATE(4424), + [aux_sym_field_declaration_repeat1] = STATE(4442), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(9618), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(9670), + [anon_sym_LBRACE] = ACTIONS(9672), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9652), }, - [4057] = { - [anon_sym_default] = ACTIONS(9676), - [anon_sym_delete] = ACTIONS(9678), + [4029] = { + [anon_sym_default] = ACTIONS(9674), + [anon_sym_delete] = ACTIONS(9676), [sym_comment] = ACTIONS(3), }, - [4058] = { - [sym_goto_statement] = STATE(4475), - [sym_preproc_function_def] = STATE(4475), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(4475), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(4475), + [4030] = { + [sym_goto_statement] = STATE(4446), + [sym_preproc_function_def] = STATE(4446), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(4446), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(4475), - [sym_return_statement] = STATE(4475), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(4446), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(4446), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(4446), + [sym_namespace_definition] = STATE(4446), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(4475), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(4475), - [sym_break_statement] = STATE(4475), - [sym_preproc_include] = STATE(4475), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(4475), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(4475), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(4446), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(4446), + [sym_constructor_or_destructor_definition] = STATE(4446), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(4446), + [sym_preproc_include] = STATE(4446), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(4446), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(4446), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(4475), - [sym_template_instantiation] = STATE(4475), - [sym_constructor_or_destructor_definition] = STATE(4475), - [sym_expression_statement] = STATE(4475), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(4475), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(4475), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(4475), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(4475), - [aux_sym_translation_unit_repeat1] = STATE(4475), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(4475), - [sym_if_statement] = STATE(4475), - [sym_for_statement] = STATE(4475), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(4475), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(4475), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(4475), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(4475), - [sym_preproc_if] = STATE(4475), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(4446), + [sym_expression_statement] = STATE(4446), + [sym_do_statement] = STATE(4446), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(4446), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(4446), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(4446), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(4446), + [sym_for_statement] = STATE(4446), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(4446), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(4446), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(4446), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(4446), + [sym_preproc_if] = STATE(4446), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(4475), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(4475), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(4475), - [sym_while_statement] = STATE(4475), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(4446), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(4446), + [aux_sym_translation_unit_repeat1] = STATE(4446), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(4446), + [sym_while_statement] = STATE(4446), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -165711,7 +165184,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(9680), + [anon_sym_RBRACE] = ACTIONS(9678), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -165743,1393 +165216,1298 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [4059] = { - [anon_sym_LPAREN2] = ACTIONS(5138), - [anon_sym_struct] = ACTIONS(5140), - [sym_auto] = ACTIONS(5140), - [anon_sym_signed] = ACTIONS(5140), - [anon_sym_mutable] = ACTIONS(5140), - [anon_sym_long] = ACTIONS(5140), - [anon_sym_COLON_COLON] = ACTIONS(5138), - [anon_sym_using] = ACTIONS(5140), - [aux_sym_preproc_if_token2] = ACTIONS(5140), - [sym_preproc_directive] = ACTIONS(5140), - [aux_sym_preproc_if_token1] = ACTIONS(5140), - [anon_sym_AMP] = ACTIONS(5140), - [anon_sym_static] = ACTIONS(5140), - [anon_sym_volatile] = ACTIONS(5140), - [anon_sym_typedef] = ACTIONS(5140), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_union] = ACTIONS(5140), - [anon_sym_typename] = ACTIONS(5140), - [anon_sym_private] = ACTIONS(5140), - [anon_sym_explicit] = ACTIONS(5140), - [anon_sym_short] = ACTIONS(5140), - [sym_identifier] = ACTIONS(5140), - [sym_operator_name] = ACTIONS(5138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5140), - [anon_sym_register] = ACTIONS(5140), - [anon_sym__Atomic] = ACTIONS(5140), - [anon_sym_const] = ACTIONS(5140), - [anon_sym_extern] = ACTIONS(5140), - [anon_sym_virtual] = ACTIONS(5140), - [anon_sym_enum] = ACTIONS(5140), - [anon_sym_class] = ACTIONS(5140), - [anon_sym_constexpr] = ACTIONS(5140), - [sym_primitive_type] = ACTIONS(5140), - [anon_sym_unsigned] = ACTIONS(5140), - [anon_sym_public] = ACTIONS(5140), - [anon_sym_protected] = ACTIONS(5140), - [anon_sym_friend] = ACTIONS(5140), - [anon_sym_template] = ACTIONS(5140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5140), - [anon_sym_TILDE] = ACTIONS(5138), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_inline] = ACTIONS(5140), - [anon_sym_restrict] = ACTIONS(5140), + [4031] = { + [anon_sym_LPAREN2] = ACTIONS(5229), + [anon_sym_struct] = ACTIONS(5231), + [sym_auto] = ACTIONS(5231), + [anon_sym_signed] = ACTIONS(5231), + [anon_sym_mutable] = ACTIONS(5231), + [anon_sym_long] = ACTIONS(5231), + [anon_sym_COLON_COLON] = ACTIONS(5229), + [anon_sym_using] = ACTIONS(5231), + [aux_sym_preproc_if_token2] = ACTIONS(5231), + [sym_preproc_directive] = ACTIONS(5231), + [aux_sym_preproc_if_token1] = ACTIONS(5231), + [anon_sym_AMP] = ACTIONS(5231), + [anon_sym_static] = ACTIONS(5231), + [anon_sym_volatile] = ACTIONS(5231), + [anon_sym_typedef] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_union] = ACTIONS(5231), + [anon_sym_typename] = ACTIONS(5231), + [anon_sym_private] = ACTIONS(5231), + [anon_sym_explicit] = ACTIONS(5231), + [anon_sym_short] = ACTIONS(5231), + [sym_identifier] = ACTIONS(5231), + [sym_operator_name] = ACTIONS(5229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5231), + [anon_sym_register] = ACTIONS(5231), + [anon_sym__Atomic] = ACTIONS(5231), + [anon_sym_const] = ACTIONS(5231), + [anon_sym_extern] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_virtual] = ACTIONS(5231), + [anon_sym_enum] = ACTIONS(5231), + [anon_sym_class] = ACTIONS(5231), + [anon_sym_constexpr] = ACTIONS(5231), + [sym_primitive_type] = ACTIONS(5231), + [anon_sym_unsigned] = ACTIONS(5231), + [anon_sym_public] = ACTIONS(5231), + [anon_sym_protected] = ACTIONS(5231), + [anon_sym_friend] = ACTIONS(5231), + [anon_sym_template] = ACTIONS(5231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5229), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5231), + [anon_sym_TILDE] = ACTIONS(5229), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5229), + [anon_sym_inline] = ACTIONS(5231), + [anon_sym_restrict] = ACTIONS(5231), }, - [4060] = { - [anon_sym_LPAREN2] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_mutable] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1697), - [aux_sym_preproc_if_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1697), - [aux_sym_preproc_if_token1] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_typename] = ACTIONS(1697), - [anon_sym_private] = ACTIONS(1697), - [anon_sym_explicit] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1697), - [sym_operator_name] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_virtual] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_protected] = ACTIONS(1697), - [anon_sym_friend] = ACTIONS(1697), - [anon_sym_template] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), + [4032] = { + [anon_sym_LPAREN2] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1762), + [sym_auto] = ACTIONS(1762), + [anon_sym_signed] = ACTIONS(1762), + [anon_sym_mutable] = ACTIONS(1762), + [anon_sym_long] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_using] = ACTIONS(1762), + [aux_sym_preproc_if_token2] = ACTIONS(1762), + [sym_preproc_directive] = ACTIONS(1762), + [aux_sym_preproc_if_token1] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_typename] = ACTIONS(1762), + [anon_sym_private] = ACTIONS(1762), + [anon_sym_explicit] = ACTIONS(1762), + [anon_sym_short] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1762), + [sym_operator_name] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym__Atomic] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_virtual] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1762), + [anon_sym_constexpr] = ACTIONS(1762), + [sym_primitive_type] = ACTIONS(1762), + [anon_sym_unsigned] = ACTIONS(1762), + [anon_sym_public] = ACTIONS(1762), + [anon_sym_protected] = ACTIONS(1762), + [anon_sym_friend] = ACTIONS(1762), + [anon_sym_template] = ACTIONS(1762), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), }, - [4061] = { - [sym_compound_statement] = STATE(4465), - [sym_delete_method_clause] = STATE(4465), - [sym_default_method_clause] = STATE(4465), - [anon_sym_EQ] = ACTIONS(8712), - [anon_sym_LBRACE] = ACTIONS(8714), + [4033] = { + [sym_compound_statement] = STATE(4447), + [sym_default_method_clause] = STATE(4447), + [sym_delete_method_clause] = STATE(4447), + [anon_sym_EQ] = ACTIONS(8680), + [anon_sym_LBRACE] = ACTIONS(8682), [sym_comment] = ACTIONS(3), }, - [4062] = { - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_type] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(1439), - [sym_storage_class_specifier] = STATE(1439), - [sym_type_qualifier] = STATE(1439), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym__declaration_specifiers] = STATE(4476), - [sym_scoped_type_identifier] = STATE(87), - [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(63), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_COLON_COLON] = ACTIONS(147), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_class] = ACTIONS(89), - [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(11), + [4034] = { + [sym_compound_statement] = STATE(4447), + [sym_field_initializer_list] = STATE(4448), + [sym_delete_method_clause] = STATE(4447), + [sym_default_method_clause] = STATE(4447), + [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(8680), + [anon_sym_LBRACE] = ACTIONS(8682), [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(11), }, - [4063] = { - [sym_function_field_declarator] = STATE(4477), - [sym_reference_field_declarator] = STATE(4477), - [sym_template_method] = STATE(4477), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(4477), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(4477), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(4477), - [sym_bitfield_clause] = STATE(4454), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(4454), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(9652), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(9654), - [sym_operator_name] = ACTIONS(9682), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), + [4035] = { + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2945), + [sym_auto] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2945), + [aux_sym_preproc_else_token1] = ACTIONS(2945), + [aux_sym_preproc_if_token2] = ACTIONS(2945), + [sym_preproc_directive] = ACTIONS(2945), + [aux_sym_preproc_if_token1] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_private] = ACTIONS(2945), + [anon_sym_explicit] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2945), + [sym_operator_name] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_virtual] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2945), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_public] = ACTIONS(2945), + [anon_sym_protected] = ACTIONS(2945), + [anon_sym_friend] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2947), + [aux_sym_preproc_elif_token1] = ACTIONS(2945), + [aux_sym_preproc_def_token1] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2945), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(2945), }, - [4064] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(4064), - [sym_preproc_function_def] = STATE(4064), - [sym_alias_declaration] = STATE(4064), + [4036] = { + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_struct] = ACTIONS(7312), + [sym_auto] = ACTIONS(7312), + [anon_sym_signed] = ACTIONS(7312), + [anon_sym_mutable] = ACTIONS(7312), + [anon_sym_long] = ACTIONS(7312), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_using] = ACTIONS(7312), + [aux_sym_preproc_else_token1] = ACTIONS(7312), + [aux_sym_preproc_if_token2] = ACTIONS(7312), + [sym_preproc_directive] = ACTIONS(7312), + [aux_sym_preproc_if_token1] = ACTIONS(7312), + [anon_sym_AMP] = ACTIONS(7312), + [anon_sym_static] = ACTIONS(7312), + [anon_sym_volatile] = ACTIONS(7312), + [anon_sym_typedef] = ACTIONS(7312), + [anon_sym_STAR] = ACTIONS(7310), + [anon_sym_union] = ACTIONS(7312), + [anon_sym_typename] = ACTIONS(7312), + [anon_sym_private] = ACTIONS(7312), + [anon_sym_explicit] = ACTIONS(7312), + [anon_sym_short] = ACTIONS(7312), + [sym_identifier] = ACTIONS(7312), + [sym_operator_name] = ACTIONS(7310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7312), + [anon_sym_register] = ACTIONS(7312), + [anon_sym__Atomic] = ACTIONS(7312), + [anon_sym_const] = ACTIONS(7312), + [anon_sym_extern] = ACTIONS(7312), + [anon_sym_LBRACK] = ACTIONS(7312), + [anon_sym_virtual] = ACTIONS(7312), + [anon_sym_enum] = ACTIONS(7312), + [anon_sym_class] = ACTIONS(7312), + [anon_sym_constexpr] = ACTIONS(7312), + [sym_primitive_type] = ACTIONS(7312), + [anon_sym_unsigned] = ACTIONS(7312), + [anon_sym_public] = ACTIONS(7312), + [anon_sym_protected] = ACTIONS(7312), + [anon_sym_friend] = ACTIONS(7312), + [anon_sym_template] = ACTIONS(7312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7312), + [anon_sym_TILDE] = ACTIONS(7310), + [aux_sym_preproc_elif_token1] = ACTIONS(7312), + [aux_sym_preproc_def_token1] = ACTIONS(7312), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_inline] = ACTIONS(7312), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(7312), + }, + [4037] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3405), + [sym_preproc_function_def] = STATE(3405), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(3409), - [sym_storage_class_specifier] = STATE(3409), - [sym_type_qualifier] = STATE(3409), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(4064), - [sym_preproc_if_in_field_declaration_list] = STATE(4064), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(4064), - [sym_type_definition] = STATE(4064), - [sym__declaration_specifiers] = STATE(3410), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(3411), - [aux_sym_function_definition_repeat1] = STATE(3412), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(4064), - [sym__field_declaration_list_item] = STATE(4064), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(4064), - [sym_inline_method_definition] = STATE(4064), - [sym_friend_declaration] = STATE(4064), - [sym_access_specifier] = STATE(4064), - [sym_using_declaration] = STATE(4064), - [sym_attribute] = STATE(3412), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(4064), - [sym_constructor_or_destructor_definition] = STATE(4064), - [sym_constructor_or_destructor_declaration] = STATE(4064), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3405), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3405), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3405), + [sym_preproc_if_in_field_declaration_list] = STATE(3405), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3405), + [sym_type_definition] = STATE(3405), + [sym_using_declaration] = STATE(3405), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3405), + [sym_inline_method_definition] = STATE(3405), + [sym_constructor_or_destructor_definition] = STATE(3405), + [sym_access_specifier] = STATE(3405), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_struct] = ACTIONS(5151), - [sym_auto] = ACTIONS(5154), - [anon_sym_signed] = ACTIONS(5157), - [anon_sym_mutable] = ACTIONS(5160), - [anon_sym_long] = ACTIONS(5157), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_using] = ACTIONS(9684), - [aux_sym_preproc_if_token2] = ACTIONS(8771), - [sym_preproc_directive] = ACTIONS(9687), - [aux_sym_preproc_if_token1] = ACTIONS(9690), - [anon_sym_AMP] = ACTIONS(5175), - [anon_sym_static] = ACTIONS(5178), - [anon_sym_volatile] = ACTIONS(5160), - [anon_sym_typedef] = ACTIONS(9693), - [anon_sym_STAR] = ACTIONS(5186), - [anon_sym_union] = ACTIONS(5189), - [anon_sym_typename] = ACTIONS(5192), - [anon_sym_private] = ACTIONS(9696), - [anon_sym_explicit] = ACTIONS(5160), - [anon_sym_short] = ACTIONS(5157), - [sym_identifier] = ACTIONS(5198), - [sym_operator_name] = ACTIONS(5201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9699), - [anon_sym_register] = ACTIONS(5178), - [anon_sym__Atomic] = ACTIONS(5160), - [anon_sym_const] = ACTIONS(5160), - [anon_sym_extern] = ACTIONS(5178), - [anon_sym_virtual] = ACTIONS(9702), - [anon_sym_enum] = ACTIONS(5210), - [anon_sym_class] = ACTIONS(5213), - [anon_sym_constexpr] = ACTIONS(5160), - [sym_primitive_type] = ACTIONS(5154), - [anon_sym_unsigned] = ACTIONS(5157), - [anon_sym_public] = ACTIONS(9696), - [anon_sym_protected] = ACTIONS(9696), - [anon_sym_friend] = ACTIONS(9705), - [anon_sym_template] = ACTIONS(9708), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9699), - [anon_sym_TILDE] = ACTIONS(5225), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(9711), - [anon_sym_AMP_AMP] = ACTIONS(5231), - [anon_sym_inline] = ACTIONS(5178), - [anon_sym_restrict] = ACTIONS(5160), - }, - [4065] = { - [anon_sym_LPAREN2] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2943), - [sym_auto] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2943), - [anon_sym_mutable] = ACTIONS(2943), - [anon_sym_long] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2943), - [aux_sym_preproc_else_token1] = ACTIONS(2943), - [aux_sym_preproc_if_token2] = ACTIONS(2943), - [sym_preproc_directive] = ACTIONS(2943), - [aux_sym_preproc_if_token1] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_volatile] = ACTIONS(2943), - [anon_sym_typedef] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_typename] = ACTIONS(2943), - [anon_sym_private] = ACTIONS(2943), - [anon_sym_explicit] = ACTIONS(2943), - [anon_sym_short] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2943), - [sym_operator_name] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), - [anon_sym_register] = ACTIONS(2943), - [anon_sym__Atomic] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym_virtual] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_constexpr] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(2943), - [anon_sym_unsigned] = ACTIONS(2943), - [anon_sym_public] = ACTIONS(2943), - [anon_sym_protected] = ACTIONS(2943), - [anon_sym_friend] = ACTIONS(2943), - [anon_sym_template] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2945), - [aux_sym_preproc_elif_token1] = ACTIONS(2943), - [aux_sym_preproc_def_token1] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2943), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(2943), - }, - [4066] = { - [anon_sym_LPAREN2] = ACTIONS(7329), - [anon_sym_struct] = ACTIONS(7331), - [sym_auto] = ACTIONS(7331), - [anon_sym_signed] = ACTIONS(7331), - [anon_sym_mutable] = ACTIONS(7331), - [anon_sym_long] = ACTIONS(7331), - [anon_sym_COLON_COLON] = ACTIONS(7329), - [anon_sym_using] = ACTIONS(7331), - [aux_sym_preproc_else_token1] = ACTIONS(7331), - [aux_sym_preproc_if_token2] = ACTIONS(7331), - [sym_preproc_directive] = ACTIONS(7331), - [aux_sym_preproc_if_token1] = ACTIONS(7331), - [anon_sym_AMP] = ACTIONS(7331), - [anon_sym_static] = ACTIONS(7331), - [anon_sym_volatile] = ACTIONS(7331), - [anon_sym_typedef] = ACTIONS(7331), - [anon_sym_STAR] = ACTIONS(7329), - [anon_sym_union] = ACTIONS(7331), - [anon_sym_typename] = ACTIONS(7331), - [anon_sym_private] = ACTIONS(7331), - [anon_sym_explicit] = ACTIONS(7331), - [anon_sym_short] = ACTIONS(7331), - [sym_identifier] = ACTIONS(7331), - [sym_operator_name] = ACTIONS(7329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7331), - [anon_sym_register] = ACTIONS(7331), - [anon_sym__Atomic] = ACTIONS(7331), - [anon_sym_const] = ACTIONS(7331), - [anon_sym_extern] = ACTIONS(7331), - [anon_sym_virtual] = ACTIONS(7331), - [anon_sym_enum] = ACTIONS(7331), - [anon_sym_class] = ACTIONS(7331), - [anon_sym_constexpr] = ACTIONS(7331), - [sym_primitive_type] = ACTIONS(7331), - [anon_sym_unsigned] = ACTIONS(7331), - [anon_sym_public] = ACTIONS(7331), - [anon_sym_protected] = ACTIONS(7331), - [anon_sym_friend] = ACTIONS(7331), - [anon_sym_template] = ACTIONS(7331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7331), - [anon_sym_TILDE] = ACTIONS(7329), - [aux_sym_preproc_elif_token1] = ACTIONS(7331), - [aux_sym_preproc_def_token1] = ACTIONS(7331), - [anon_sym_AMP_AMP] = ACTIONS(7329), - [anon_sym_inline] = ACTIONS(7331), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(7331), - }, - [4067] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3443), - [sym_preproc_function_def] = STATE(3443), - [sym_alias_declaration] = STATE(3443), - [sym__declarator] = STATE(614), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3405), + [sym_alias_declaration] = STATE(3405), + [sym_preproc_else_in_field_declaration_list] = STATE(4450), + [sym_preproc_elif_in_field_declaration_list] = STATE(4450), [sym_destructor_name] = STATE(614), - [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3443), - [sym_preproc_if_in_field_declaration_list] = STATE(3443), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3443), - [sym_type_definition] = STATE(3443), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3443), - [sym__field_declaration_list_item] = STATE(3443), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3443), - [sym_inline_method_definition] = STATE(3443), - [sym_friend_declaration] = STATE(3443), - [sym_access_specifier] = STATE(3443), - [sym_using_declaration] = STATE(3443), - [sym_preproc_else_in_field_declaration_list] = STATE(4479), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4479), [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3443), - [sym_constructor_or_destructor_definition] = STATE(3443), - [sym_constructor_or_destructor_declaration] = STATE(3443), - [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3405), + [sym_constructor_or_destructor_declaration] = STATE(3405), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(9714), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(9680), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [4068] = { - [aux_sym_preproc_if_token2] = ACTIONS(9716), + [4038] = { + [aux_sym_preproc_if_token2] = ACTIONS(9682), [sym_comment] = ACTIONS(3), }, - [4069] = { - [sym_pointer_type_declarator] = STATE(4480), - [sym_array_type_declarator] = STATE(4480), - [sym_function_type_declarator] = STATE(4480), - [sym__type_declarator] = STATE(4480), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [4039] = { + [sym_pointer_type_declarator] = STATE(4451), + [sym_array_type_declarator] = STATE(4451), + [sym_function_type_declarator] = STATE(4451), + [sym__type_declarator] = STATE(4451), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [4070] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(4482), - [anon_sym_LPAREN2] = ACTIONS(587), + [4040] = { + [aux_sym_type_definition_repeat2] = STATE(4453), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(9718), + [anon_sym_SEMI] = ACTIONS(9684), }, - [4071] = { - [anon_sym_LPAREN2] = ACTIONS(7369), - [anon_sym_struct] = ACTIONS(7371), - [sym_auto] = ACTIONS(7371), - [anon_sym_signed] = ACTIONS(7371), - [anon_sym_mutable] = ACTIONS(7371), - [anon_sym_long] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(7369), - [anon_sym_using] = ACTIONS(7371), - [aux_sym_preproc_else_token1] = ACTIONS(7371), - [aux_sym_preproc_if_token2] = ACTIONS(7371), - [sym_preproc_directive] = ACTIONS(7371), - [aux_sym_preproc_if_token1] = ACTIONS(7371), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_static] = ACTIONS(7371), - [anon_sym_volatile] = ACTIONS(7371), - [anon_sym_typedef] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(7369), - [anon_sym_union] = ACTIONS(7371), - [anon_sym_typename] = ACTIONS(7371), - [anon_sym_private] = ACTIONS(7371), - [anon_sym_explicit] = ACTIONS(7371), - [anon_sym_short] = ACTIONS(7371), - [sym_identifier] = ACTIONS(7371), - [sym_operator_name] = ACTIONS(7369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7371), - [anon_sym_register] = ACTIONS(7371), - [anon_sym__Atomic] = ACTIONS(7371), - [anon_sym_const] = ACTIONS(7371), - [anon_sym_extern] = ACTIONS(7371), - [anon_sym_virtual] = ACTIONS(7371), - [anon_sym_enum] = ACTIONS(7371), - [anon_sym_class] = ACTIONS(7371), - [anon_sym_constexpr] = ACTIONS(7371), - [sym_primitive_type] = ACTIONS(7371), - [anon_sym_unsigned] = ACTIONS(7371), - [anon_sym_public] = ACTIONS(7371), - [anon_sym_protected] = ACTIONS(7371), - [anon_sym_friend] = ACTIONS(7371), - [anon_sym_template] = ACTIONS(7371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7371), - [anon_sym_TILDE] = ACTIONS(7369), - [aux_sym_preproc_elif_token1] = ACTIONS(7371), - [aux_sym_preproc_def_token1] = ACTIONS(7371), - [anon_sym_AMP_AMP] = ACTIONS(7369), - [anon_sym_inline] = ACTIONS(7371), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(7371), + [4041] = { + [anon_sym_LPAREN2] = ACTIONS(7350), + [anon_sym_struct] = ACTIONS(7352), + [sym_auto] = ACTIONS(7352), + [anon_sym_signed] = ACTIONS(7352), + [anon_sym_mutable] = ACTIONS(7352), + [anon_sym_long] = ACTIONS(7352), + [anon_sym_COLON_COLON] = ACTIONS(7350), + [anon_sym_using] = ACTIONS(7352), + [aux_sym_preproc_else_token1] = ACTIONS(7352), + [aux_sym_preproc_if_token2] = ACTIONS(7352), + [sym_preproc_directive] = ACTIONS(7352), + [aux_sym_preproc_if_token1] = ACTIONS(7352), + [anon_sym_AMP] = ACTIONS(7352), + [anon_sym_static] = ACTIONS(7352), + [anon_sym_volatile] = ACTIONS(7352), + [anon_sym_typedef] = ACTIONS(7352), + [anon_sym_STAR] = ACTIONS(7350), + [anon_sym_union] = ACTIONS(7352), + [anon_sym_typename] = ACTIONS(7352), + [anon_sym_private] = ACTIONS(7352), + [anon_sym_explicit] = ACTIONS(7352), + [anon_sym_short] = ACTIONS(7352), + [sym_identifier] = ACTIONS(7352), + [sym_operator_name] = ACTIONS(7350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7352), + [anon_sym_register] = ACTIONS(7352), + [anon_sym__Atomic] = ACTIONS(7352), + [anon_sym_const] = ACTIONS(7352), + [anon_sym_extern] = ACTIONS(7352), + [anon_sym_LBRACK] = ACTIONS(7352), + [anon_sym_virtual] = ACTIONS(7352), + [anon_sym_enum] = ACTIONS(7352), + [anon_sym_class] = ACTIONS(7352), + [anon_sym_constexpr] = ACTIONS(7352), + [sym_primitive_type] = ACTIONS(7352), + [anon_sym_unsigned] = ACTIONS(7352), + [anon_sym_public] = ACTIONS(7352), + [anon_sym_protected] = ACTIONS(7352), + [anon_sym_friend] = ACTIONS(7352), + [anon_sym_template] = ACTIONS(7352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7352), + [anon_sym_TILDE] = ACTIONS(7350), + [aux_sym_preproc_elif_token1] = ACTIONS(7352), + [aux_sym_preproc_def_token1] = ACTIONS(7352), + [anon_sym_AMP_AMP] = ACTIONS(7350), + [anon_sym_inline] = ACTIONS(7352), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(7352), }, - [4072] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3443), - [sym_preproc_function_def] = STATE(3443), - [sym_alias_declaration] = STATE(3443), + [4042] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3405), + [sym_preproc_function_def] = STATE(3405), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3443), - [sym_preproc_if_in_field_declaration_list] = STATE(3443), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3443), - [sym_type_definition] = STATE(3443), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3443), - [sym__field_declaration_list_item] = STATE(3443), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3443), - [sym_inline_method_definition] = STATE(3443), - [sym_friend_declaration] = STATE(3443), - [sym_access_specifier] = STATE(3443), - [sym_using_declaration] = STATE(3443), - [sym_preproc_else_in_field_declaration_list] = STATE(4484), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4484), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3443), - [sym_constructor_or_destructor_definition] = STATE(3443), - [sym_constructor_or_destructor_declaration] = STATE(3443), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3405), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3405), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3405), + [sym_preproc_if_in_field_declaration_list] = STATE(3405), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3405), + [sym_type_definition] = STATE(3405), + [sym_using_declaration] = STATE(3405), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3405), + [sym_inline_method_definition] = STATE(3405), + [sym_constructor_or_destructor_definition] = STATE(3405), + [sym_access_specifier] = STATE(3405), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3405), + [sym_alias_declaration] = STATE(3405), + [sym_preproc_else_in_field_declaration_list] = STATE(4455), + [sym_preproc_elif_in_field_declaration_list] = STATE(4455), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3405), + [sym_constructor_or_destructor_declaration] = STATE(3405), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(9720), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(9686), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [4073] = { - [aux_sym_preproc_if_token2] = ACTIONS(9722), + [4043] = { + [aux_sym_preproc_if_token2] = ACTIONS(9688), [sym_comment] = ACTIONS(3), }, - [4074] = { - [anon_sym_LPAREN2] = ACTIONS(7377), - [anon_sym_struct] = ACTIONS(7379), - [sym_auto] = ACTIONS(7379), - [anon_sym_signed] = ACTIONS(7379), - [anon_sym_mutable] = ACTIONS(7379), - [anon_sym_long] = ACTIONS(7379), - [anon_sym_COLON_COLON] = ACTIONS(7377), - [anon_sym_using] = ACTIONS(7379), - [aux_sym_preproc_else_token1] = ACTIONS(7379), - [aux_sym_preproc_if_token2] = ACTIONS(7379), - [sym_preproc_directive] = ACTIONS(7379), - [aux_sym_preproc_if_token1] = ACTIONS(7379), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_static] = ACTIONS(7379), - [anon_sym_volatile] = ACTIONS(7379), - [anon_sym_typedef] = ACTIONS(7379), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_union] = ACTIONS(7379), - [anon_sym_typename] = ACTIONS(7379), - [anon_sym_private] = ACTIONS(7379), - [anon_sym_explicit] = ACTIONS(7379), - [anon_sym_short] = ACTIONS(7379), - [sym_identifier] = ACTIONS(7379), - [sym_operator_name] = ACTIONS(7377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7379), - [anon_sym_register] = ACTIONS(7379), - [anon_sym__Atomic] = ACTIONS(7379), - [anon_sym_const] = ACTIONS(7379), - [anon_sym_extern] = ACTIONS(7379), - [anon_sym_virtual] = ACTIONS(7379), - [anon_sym_enum] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7379), - [anon_sym_constexpr] = ACTIONS(7379), - [sym_primitive_type] = ACTIONS(7379), - [anon_sym_unsigned] = ACTIONS(7379), - [anon_sym_public] = ACTIONS(7379), - [anon_sym_protected] = ACTIONS(7379), - [anon_sym_friend] = ACTIONS(7379), - [anon_sym_template] = ACTIONS(7379), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7379), - [anon_sym_TILDE] = ACTIONS(7377), - [aux_sym_preproc_elif_token1] = ACTIONS(7379), - [aux_sym_preproc_def_token1] = ACTIONS(7379), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_inline] = ACTIONS(7379), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(7379), + [4044] = { + [anon_sym_LPAREN2] = ACTIONS(7358), + [anon_sym_struct] = ACTIONS(7360), + [sym_auto] = ACTIONS(7360), + [anon_sym_signed] = ACTIONS(7360), + [anon_sym_mutable] = ACTIONS(7360), + [anon_sym_long] = ACTIONS(7360), + [anon_sym_COLON_COLON] = ACTIONS(7358), + [anon_sym_using] = ACTIONS(7360), + [aux_sym_preproc_else_token1] = ACTIONS(7360), + [aux_sym_preproc_if_token2] = ACTIONS(7360), + [sym_preproc_directive] = ACTIONS(7360), + [aux_sym_preproc_if_token1] = ACTIONS(7360), + [anon_sym_AMP] = ACTIONS(7360), + [anon_sym_static] = ACTIONS(7360), + [anon_sym_volatile] = ACTIONS(7360), + [anon_sym_typedef] = ACTIONS(7360), + [anon_sym_STAR] = ACTIONS(7358), + [anon_sym_union] = ACTIONS(7360), + [anon_sym_typename] = ACTIONS(7360), + [anon_sym_private] = ACTIONS(7360), + [anon_sym_explicit] = ACTIONS(7360), + [anon_sym_short] = ACTIONS(7360), + [sym_identifier] = ACTIONS(7360), + [sym_operator_name] = ACTIONS(7358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7360), + [anon_sym_register] = ACTIONS(7360), + [anon_sym__Atomic] = ACTIONS(7360), + [anon_sym_const] = ACTIONS(7360), + [anon_sym_extern] = ACTIONS(7360), + [anon_sym_LBRACK] = ACTIONS(7360), + [anon_sym_virtual] = ACTIONS(7360), + [anon_sym_enum] = ACTIONS(7360), + [anon_sym_class] = ACTIONS(7360), + [anon_sym_constexpr] = ACTIONS(7360), + [sym_primitive_type] = ACTIONS(7360), + [anon_sym_unsigned] = ACTIONS(7360), + [anon_sym_public] = ACTIONS(7360), + [anon_sym_protected] = ACTIONS(7360), + [anon_sym_friend] = ACTIONS(7360), + [anon_sym_template] = ACTIONS(7360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7360), + [anon_sym_TILDE] = ACTIONS(7358), + [aux_sym_preproc_elif_token1] = ACTIONS(7360), + [aux_sym_preproc_def_token1] = ACTIONS(7360), + [anon_sym_AMP_AMP] = ACTIONS(7358), + [anon_sym_inline] = ACTIONS(7360), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(7360), }, - [4075] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4485), - [sym_logical_expression] = STATE(4485), - [sym_bitwise_expression] = STATE(4485), - [sym_cast_expression] = STATE(4485), - [sym_new_expression] = STATE(4485), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4485), - [sym_char_literal] = STATE(4485), - [sym_template_function] = STATE(4485), - [sym_conditional_expression] = STATE(4485), - [sym_equality_expression] = STATE(4485), - [sym_relational_expression] = STATE(4485), - [sym_delete_expression] = STATE(4485), - [sym_sizeof_expression] = STATE(4485), - [sym_parenthesized_expression] = STATE(4485), - [sym_initializer_list] = STATE(4486), - [sym_concatenated_string] = STATE(4485), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4485), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4485), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4485), - [sym_math_expression] = STATE(4485), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9724), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(9726), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(9726), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9724), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(9726), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(9726), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [4045] = { + [sym_template_function] = STATE(4456), + [sym__expression] = STATE(4456), + [sym_logical_expression] = STATE(4456), + [sym_bitwise_expression] = STATE(4456), + [sym_cast_expression] = STATE(4456), + [sym_delete_expression] = STATE(4456), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4456), + [sym_lambda_expression] = STATE(4456), + [sym_char_literal] = STATE(4456), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4456), + [sym_equality_expression] = STATE(4456), + [sym_relational_expression] = STATE(4456), + [sym_sizeof_expression] = STATE(4456), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4457), + [sym_parenthesized_expression] = STATE(4456), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4456), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4456), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4456), + [sym_math_expression] = STATE(4456), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4456), + [sym_raw_string_literal] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(9692), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(9692), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9690), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(9692), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [4076] = { - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(4486), - [aux_sym_field_declaration_repeat1] = STATE(4489), - [sym_initializer_list] = STATE(4486), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(9728), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(9730), - [anon_sym_LBRACE] = ACTIONS(175), + [4046] = { [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(9694), }, - [4077] = { + [4047] = { + [sym_parameter_list] = STATE(2505), + [sym_bitfield_clause] = STATE(4457), + [sym_initializer_list] = STATE(4457), + [aux_sym_field_declaration_repeat1] = STATE(4460), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(9696), + [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9728), }, - [4078] = { - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_struct] = ACTIONS(7391), - [sym_auto] = ACTIONS(7391), - [anon_sym_signed] = ACTIONS(7391), - [anon_sym_mutable] = ACTIONS(7391), - [anon_sym_long] = ACTIONS(7391), - [anon_sym_COLON_COLON] = ACTIONS(7389), - [anon_sym_using] = ACTIONS(7391), - [aux_sym_preproc_else_token1] = ACTIONS(7391), - [aux_sym_preproc_if_token2] = ACTIONS(7391), - [sym_preproc_directive] = ACTIONS(7391), - [aux_sym_preproc_if_token1] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_static] = ACTIONS(7391), - [anon_sym_volatile] = ACTIONS(7391), - [anon_sym_typedef] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7389), - [anon_sym_union] = ACTIONS(7391), - [anon_sym_typename] = ACTIONS(7391), - [anon_sym_private] = ACTIONS(7391), - [anon_sym_explicit] = ACTIONS(7391), - [anon_sym_short] = ACTIONS(7391), - [sym_identifier] = ACTIONS(7391), - [sym_operator_name] = ACTIONS(7389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7391), - [anon_sym_register] = ACTIONS(7391), - [anon_sym__Atomic] = ACTIONS(7391), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_extern] = ACTIONS(7391), - [anon_sym_virtual] = ACTIONS(7391), - [anon_sym_enum] = ACTIONS(7391), - [anon_sym_class] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7391), - [sym_primitive_type] = ACTIONS(7391), - [anon_sym_unsigned] = ACTIONS(7391), - [anon_sym_public] = ACTIONS(7391), - [anon_sym_protected] = ACTIONS(7391), - [anon_sym_friend] = ACTIONS(7391), - [anon_sym_template] = ACTIONS(7391), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7391), - [anon_sym_TILDE] = ACTIONS(7389), - [aux_sym_preproc_elif_token1] = ACTIONS(7391), - [aux_sym_preproc_def_token1] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_inline] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(7391), + [4048] = { + [anon_sym_LPAREN2] = ACTIONS(7370), + [anon_sym_struct] = ACTIONS(7372), + [sym_auto] = ACTIONS(7372), + [anon_sym_signed] = ACTIONS(7372), + [anon_sym_mutable] = ACTIONS(7372), + [anon_sym_long] = ACTIONS(7372), + [anon_sym_COLON_COLON] = ACTIONS(7370), + [anon_sym_using] = ACTIONS(7372), + [aux_sym_preproc_else_token1] = ACTIONS(7372), + [aux_sym_preproc_if_token2] = ACTIONS(7372), + [sym_preproc_directive] = ACTIONS(7372), + [aux_sym_preproc_if_token1] = ACTIONS(7372), + [anon_sym_AMP] = ACTIONS(7372), + [anon_sym_static] = ACTIONS(7372), + [anon_sym_volatile] = ACTIONS(7372), + [anon_sym_typedef] = ACTIONS(7372), + [anon_sym_STAR] = ACTIONS(7370), + [anon_sym_union] = ACTIONS(7372), + [anon_sym_typename] = ACTIONS(7372), + [anon_sym_private] = ACTIONS(7372), + [anon_sym_explicit] = ACTIONS(7372), + [anon_sym_short] = ACTIONS(7372), + [sym_identifier] = ACTIONS(7372), + [sym_operator_name] = ACTIONS(7370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7372), + [anon_sym_register] = ACTIONS(7372), + [anon_sym__Atomic] = ACTIONS(7372), + [anon_sym_const] = ACTIONS(7372), + [anon_sym_extern] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(7372), + [anon_sym_virtual] = ACTIONS(7372), + [anon_sym_enum] = ACTIONS(7372), + [anon_sym_class] = ACTIONS(7372), + [anon_sym_constexpr] = ACTIONS(7372), + [sym_primitive_type] = ACTIONS(7372), + [anon_sym_unsigned] = ACTIONS(7372), + [anon_sym_public] = ACTIONS(7372), + [anon_sym_protected] = ACTIONS(7372), + [anon_sym_friend] = ACTIONS(7372), + [anon_sym_template] = ACTIONS(7372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7372), + [anon_sym_TILDE] = ACTIONS(7370), + [aux_sym_preproc_elif_token1] = ACTIONS(7372), + [aux_sym_preproc_def_token1] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7370), + [anon_sym_inline] = ACTIONS(7372), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(7372), }, - [4079] = { - [sym_reference_declarator] = STATE(4490), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(4490), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(4490), - [sym_destructor_name] = STATE(4490), - [sym__declarator] = STATE(4490), - [sym_init_declarator] = STATE(4491), - [sym_array_declarator] = STATE(4490), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(4490), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(9732), - [sym_comment] = ACTIONS(3), + [4049] = { + [anon_sym_LPAREN2] = ACTIONS(7374), + [anon_sym_struct] = ACTIONS(7376), + [sym_auto] = ACTIONS(7376), + [anon_sym_signed] = ACTIONS(7376), + [anon_sym_mutable] = ACTIONS(7376), + [anon_sym_long] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7374), + [anon_sym_using] = ACTIONS(7376), + [aux_sym_preproc_else_token1] = ACTIONS(7376), + [aux_sym_preproc_if_token2] = ACTIONS(7376), + [sym_preproc_directive] = ACTIONS(7376), + [aux_sym_preproc_if_token1] = ACTIONS(7376), + [anon_sym_AMP] = ACTIONS(7376), + [anon_sym_static] = ACTIONS(7376), + [anon_sym_volatile] = ACTIONS(7376), + [anon_sym_typedef] = ACTIONS(7376), + [anon_sym_STAR] = ACTIONS(7374), + [anon_sym_union] = ACTIONS(7376), + [anon_sym_typename] = ACTIONS(7376), + [anon_sym_private] = ACTIONS(7376), + [anon_sym_explicit] = ACTIONS(7376), + [anon_sym_short] = ACTIONS(7376), + [sym_identifier] = ACTIONS(7376), + [sym_operator_name] = ACTIONS(7374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7376), + [anon_sym_register] = ACTIONS(7376), + [anon_sym__Atomic] = ACTIONS(7376), + [anon_sym_const] = ACTIONS(7376), + [anon_sym_extern] = ACTIONS(7376), + [anon_sym_LBRACK] = ACTIONS(7376), + [anon_sym_virtual] = ACTIONS(7376), + [anon_sym_enum] = ACTIONS(7376), + [anon_sym_class] = ACTIONS(7376), + [anon_sym_constexpr] = ACTIONS(7376), + [sym_primitive_type] = ACTIONS(7376), + [anon_sym_unsigned] = ACTIONS(7376), + [anon_sym_public] = ACTIONS(7376), + [anon_sym_protected] = ACTIONS(7376), + [anon_sym_friend] = ACTIONS(7376), + [anon_sym_template] = ACTIONS(7376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7376), + [anon_sym_TILDE] = ACTIONS(7374), + [aux_sym_preproc_elif_token1] = ACTIONS(7376), + [aux_sym_preproc_def_token1] = ACTIONS(7376), + [anon_sym_AMP_AMP] = ACTIONS(7374), + [anon_sym_inline] = ACTIONS(7376), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(7376), }, - [4080] = { - [anon_sym_LPAREN2] = ACTIONS(7395), - [anon_sym_struct] = ACTIONS(7397), - [sym_auto] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(7397), - [anon_sym_mutable] = ACTIONS(7397), - [anon_sym_long] = ACTIONS(7397), - [anon_sym_COLON_COLON] = ACTIONS(7395), - [anon_sym_using] = ACTIONS(7397), - [aux_sym_preproc_else_token1] = ACTIONS(7397), - [aux_sym_preproc_if_token2] = ACTIONS(7397), - [sym_preproc_directive] = ACTIONS(7397), - [aux_sym_preproc_if_token1] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7397), - [anon_sym_static] = ACTIONS(7397), - [anon_sym_volatile] = ACTIONS(7397), - [anon_sym_typedef] = ACTIONS(7397), - [anon_sym_STAR] = ACTIONS(7395), - [anon_sym_union] = ACTIONS(7397), - [anon_sym_typename] = ACTIONS(7397), - [anon_sym_private] = ACTIONS(7397), - [anon_sym_explicit] = ACTIONS(7397), - [anon_sym_short] = ACTIONS(7397), - [sym_identifier] = ACTIONS(7397), - [sym_operator_name] = ACTIONS(7395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7397), - [anon_sym_register] = ACTIONS(7397), - [anon_sym__Atomic] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7397), - [anon_sym_extern] = ACTIONS(7397), - [anon_sym_virtual] = ACTIONS(7397), - [anon_sym_enum] = ACTIONS(7397), - [anon_sym_class] = ACTIONS(7397), - [anon_sym_constexpr] = ACTIONS(7397), - [sym_primitive_type] = ACTIONS(7397), - [anon_sym_unsigned] = ACTIONS(7397), - [anon_sym_public] = ACTIONS(7397), - [anon_sym_protected] = ACTIONS(7397), - [anon_sym_friend] = ACTIONS(7397), - [anon_sym_template] = ACTIONS(7397), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7397), - [anon_sym_TILDE] = ACTIONS(7395), - [aux_sym_preproc_elif_token1] = ACTIONS(7397), - [aux_sym_preproc_def_token1] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7395), - [anon_sym_inline] = ACTIONS(7397), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(7397), + [4050] = { + [sym_template_function] = STATE(4461), + [sym_destructor_name] = STATE(4461), + [sym_pointer_declarator] = STATE(4461), + [sym_structured_binding_declarator] = STATE(4461), + [sym__declarator] = STATE(4461), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(4461), + [sym_array_declarator] = STATE(4461), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(4462), + [sym_function_declarator] = STATE(4461), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(9698), + [sym_comment] = ACTIONS(3), }, - [4081] = { - [sym_compound_statement] = STATE(4493), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(4494), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(8754), - [anon_sym_SEMI] = ACTIONS(9734), + [4051] = { + [sym_compound_statement] = STATE(4464), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(4465), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(8758), + [anon_sym_SEMI] = ACTIONS(9700), }, - [4082] = { - [aux_sym_declaration_repeat1] = STATE(4494), + [4052] = { + [aux_sym_declaration_repeat1] = STATE(4465), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(9734), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(9700), }, - [4083] = { - [anon_sym_LPAREN2] = ACTIONS(3594), - [anon_sym_struct] = ACTIONS(3592), - [sym_auto] = ACTIONS(3592), - [anon_sym_signed] = ACTIONS(3592), - [anon_sym_mutable] = ACTIONS(3592), - [anon_sym_long] = ACTIONS(3592), - [anon_sym_COLON_COLON] = ACTIONS(3594), - [anon_sym_using] = ACTIONS(3592), - [aux_sym_preproc_else_token1] = ACTIONS(3592), - [aux_sym_preproc_if_token2] = ACTIONS(3592), - [sym_preproc_directive] = ACTIONS(3592), - [aux_sym_preproc_if_token1] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_volatile] = ACTIONS(3592), - [anon_sym_typedef] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_union] = ACTIONS(3592), - [anon_sym_typename] = ACTIONS(3592), - [anon_sym_private] = ACTIONS(3592), - [anon_sym_explicit] = ACTIONS(3592), - [anon_sym_short] = ACTIONS(3592), - [sym_identifier] = ACTIONS(3592), - [sym_operator_name] = ACTIONS(3594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), - [anon_sym_register] = ACTIONS(3592), - [anon_sym__Atomic] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_extern] = ACTIONS(3592), - [anon_sym_virtual] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_constexpr] = ACTIONS(3592), - [sym_primitive_type] = ACTIONS(3592), - [anon_sym_unsigned] = ACTIONS(3592), - [anon_sym_public] = ACTIONS(3592), - [anon_sym_protected] = ACTIONS(3592), - [anon_sym_friend] = ACTIONS(3592), - [anon_sym_template] = ACTIONS(3592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3594), - [aux_sym_preproc_elif_token1] = ACTIONS(3592), - [aux_sym_preproc_def_token1] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_inline] = ACTIONS(3592), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(3592), + [4053] = { + [anon_sym_LPAREN2] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3606), + [sym_auto] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3606), + [anon_sym_mutable] = ACTIONS(3606), + [anon_sym_long] = ACTIONS(3606), + [anon_sym_COLON_COLON] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3606), + [aux_sym_preproc_else_token1] = ACTIONS(3606), + [aux_sym_preproc_if_token2] = ACTIONS(3606), + [sym_preproc_directive] = ACTIONS(3606), + [aux_sym_preproc_if_token1] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_volatile] = ACTIONS(3606), + [anon_sym_typedef] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3606), + [anon_sym_typename] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_explicit] = ACTIONS(3606), + [anon_sym_short] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3606), + [sym_operator_name] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3606), + [anon_sym_register] = ACTIONS(3606), + [anon_sym__Atomic] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_extern] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_virtual] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_constexpr] = ACTIONS(3606), + [sym_primitive_type] = ACTIONS(3606), + [anon_sym_unsigned] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_friend] = ACTIONS(3606), + [anon_sym_template] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3608), + [aux_sym_preproc_elif_token1] = ACTIONS(3606), + [aux_sym_preproc_def_token1] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3606), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(3606), }, - [4084] = { - [sym_reference_declarator] = STATE(4081), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(4081), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(4081), - [sym_destructor_name] = STATE(4081), - [sym__declarator] = STATE(4081), - [sym_init_declarator] = STATE(4082), - [sym_array_declarator] = STATE(4081), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(4081), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(9736), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(8740), + [4054] = { + [sym_template_function] = STATE(4051), + [sym_destructor_name] = STATE(4051), + [sym_pointer_declarator] = STATE(4051), + [sym_structured_binding_declarator] = STATE(4051), + [sym__declarator] = STATE(4051), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(4051), + [sym_array_declarator] = STATE(4051), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(4052), + [sym_function_declarator] = STATE(4051), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(9702), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(8704), [sym_comment] = ACTIONS(3), }, - [4085] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3443), - [sym_preproc_function_def] = STATE(3443), - [sym_alias_declaration] = STATE(3443), + [4055] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3405), + [sym_preproc_function_def] = STATE(3405), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3443), - [sym_preproc_if_in_field_declaration_list] = STATE(3443), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3443), - [sym_type_definition] = STATE(3443), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3443), - [sym__field_declaration_list_item] = STATE(3443), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3443), - [sym_inline_method_definition] = STATE(3443), - [sym_friend_declaration] = STATE(3443), - [sym_access_specifier] = STATE(3443), - [sym_using_declaration] = STATE(3443), - [sym_preproc_else_in_field_declaration_list] = STATE(4496), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4496), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3443), - [sym_constructor_or_destructor_definition] = STATE(3443), - [sym_constructor_or_destructor_declaration] = STATE(3443), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3405), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3405), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3405), + [sym_preproc_if_in_field_declaration_list] = STATE(3405), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3405), + [sym_type_definition] = STATE(3405), + [sym_using_declaration] = STATE(3405), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3405), + [sym_inline_method_definition] = STATE(3405), + [sym_constructor_or_destructor_definition] = STATE(3405), + [sym_access_specifier] = STATE(3405), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3405), + [sym_alias_declaration] = STATE(3405), + [sym_preproc_else_in_field_declaration_list] = STATE(4467), + [sym_preproc_elif_in_field_declaration_list] = STATE(4467), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3405), + [sym_constructor_or_destructor_declaration] = STATE(3405), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(9738), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(9704), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [4086] = { - [aux_sym_preproc_if_token2] = ACTIONS(9740), + [4056] = { + [aux_sym_preproc_if_token2] = ACTIONS(9706), [sym_comment] = ACTIONS(3), }, - [4087] = { - [anon_sym_LF] = ACTIONS(9742), + [4057] = { + [anon_sym_LF] = ACTIONS(9708), [sym_comment] = ACTIONS(244), }, - [4088] = { - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_struct] = ACTIONS(3688), - [sym_auto] = ACTIONS(3688), - [anon_sym_signed] = ACTIONS(3688), - [anon_sym_mutable] = ACTIONS(3688), - [anon_sym_long] = ACTIONS(3688), - [anon_sym_COLON_COLON] = ACTIONS(3690), - [anon_sym_using] = ACTIONS(3688), - [aux_sym_preproc_else_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token2] = ACTIONS(3688), - [sym_preproc_directive] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_volatile] = ACTIONS(3688), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3690), - [anon_sym_union] = ACTIONS(3688), - [anon_sym_typename] = ACTIONS(3688), - [anon_sym_private] = ACTIONS(3688), - [anon_sym_explicit] = ACTIONS(3688), - [anon_sym_short] = ACTIONS(3688), - [sym_identifier] = ACTIONS(3688), - [sym_operator_name] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), - [anon_sym_register] = ACTIONS(3688), - [anon_sym__Atomic] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(3688), - [anon_sym_virtual] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_constexpr] = ACTIONS(3688), - [sym_primitive_type] = ACTIONS(3688), - [anon_sym_unsigned] = ACTIONS(3688), - [anon_sym_public] = ACTIONS(3688), - [anon_sym_protected] = ACTIONS(3688), - [anon_sym_friend] = ACTIONS(3688), - [anon_sym_template] = ACTIONS(3688), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), - [anon_sym_TILDE] = ACTIONS(3690), - [aux_sym_preproc_elif_token1] = ACTIONS(3688), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_inline] = ACTIONS(3688), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(3688), + [4058] = { + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3698), + [sym_auto] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3698), + [aux_sym_preproc_else_token1] = ACTIONS(3698), + [aux_sym_preproc_if_token2] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3698), + [sym_operator_name] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_friend] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3700), + [aux_sym_preproc_elif_token1] = ACTIONS(3698), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3698), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(3698), }, - [4089] = { + [4059] = { [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(9744), - [sym_preproc_arg] = ACTIONS(9746), + [anon_sym_LF] = ACTIONS(9710), + [sym_preproc_arg] = ACTIONS(9712), }, - [4090] = { - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_struct] = ACTIONS(3712), - [sym_auto] = ACTIONS(3712), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_using] = ACTIONS(3712), - [aux_sym_preproc_else_token1] = ACTIONS(3712), - [aux_sym_preproc_if_token2] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_private] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [sym_identifier] = ACTIONS(3712), - [sym_operator_name] = ACTIONS(3714), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym_virtual] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_public] = ACTIONS(3712), - [anon_sym_protected] = ACTIONS(3712), - [anon_sym_friend] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3714), - [aux_sym_preproc_elif_token1] = ACTIONS(3712), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(3712), + [4060] = { + [sym_function_field_declarator] = STATE(4471), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(4471), + [sym_pointer_field_declarator] = STATE(4471), + [sym__field_declarator] = STATE(4471), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(4457), + [sym_array_field_declarator] = STATE(4471), + [sym_initializer_list] = STATE(4457), + [sym_template_method] = STATE(4471), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(9696), + [sym_operator_name] = ACTIONS(9714), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), }, - [4091] = { - [sym_compound_statement] = STATE(4500), - [sym_delete_method_clause] = STATE(4500), - [sym_default_method_clause] = STATE(4500), - [anon_sym_EQ] = ACTIONS(7355), - [anon_sym_LBRACE] = ACTIONS(7357), + [4061] = { + [sym_compound_statement] = STATE(4473), + [sym_parameter_list] = STATE(2505), + [sym_delete_method_clause] = STATE(4473), + [sym_bitfield_clause] = STATE(4457), + [sym_initializer_list] = STATE(4457), + [aux_sym_field_declaration_repeat1] = STATE(4460), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(9716), + [anon_sym_LBRACE] = ACTIONS(8758), [sym_comment] = ACTIONS(3), }, - [4092] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(9728), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4062] = { + [anon_sym_LPAREN2] = ACTIONS(9718), + [anon_sym_struct] = ACTIONS(9720), + [sym_auto] = ACTIONS(9720), + [anon_sym_signed] = ACTIONS(9720), + [anon_sym_mutable] = ACTIONS(9720), + [anon_sym_long] = ACTIONS(9720), + [anon_sym_COLON_COLON] = ACTIONS(9718), + [anon_sym_using] = ACTIONS(9720), + [sym_preproc_directive] = ACTIONS(9720), + [aux_sym_preproc_if_token1] = ACTIONS(9720), + [anon_sym_AMP] = ACTIONS(9720), + [anon_sym_static] = ACTIONS(9720), + [anon_sym_volatile] = ACTIONS(9720), + [anon_sym_RBRACE] = ACTIONS(9718), + [anon_sym_typedef] = ACTIONS(9720), + [anon_sym_STAR] = ACTIONS(9718), + [anon_sym_union] = ACTIONS(9720), + [anon_sym_typename] = ACTIONS(9720), + [anon_sym_private] = ACTIONS(9720), + [anon_sym_explicit] = ACTIONS(9720), + [anon_sym_short] = ACTIONS(9720), + [sym_identifier] = ACTIONS(9720), + [sym_operator_name] = ACTIONS(9718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9720), + [anon_sym_register] = ACTIONS(9720), + [anon_sym__Atomic] = ACTIONS(9720), + [anon_sym_const] = ACTIONS(9720), + [anon_sym_extern] = ACTIONS(9720), + [anon_sym_LBRACK] = ACTIONS(9720), + [anon_sym_virtual] = ACTIONS(9720), + [anon_sym_enum] = ACTIONS(9720), + [anon_sym_class] = ACTIONS(9720), + [anon_sym_constexpr] = ACTIONS(9720), + [sym_primitive_type] = ACTIONS(9720), + [anon_sym_unsigned] = ACTIONS(9720), + [anon_sym_public] = ACTIONS(9720), + [anon_sym_protected] = ACTIONS(9720), + [anon_sym_friend] = ACTIONS(9720), + [anon_sym_template] = ACTIONS(9720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9720), + [anon_sym_TILDE] = ACTIONS(9718), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(9720), + [anon_sym_AMP_AMP] = ACTIONS(9718), + [anon_sym_inline] = ACTIONS(9720), + [anon_sym_restrict] = ACTIONS(9720), }, - [4093] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4485), - [sym_logical_expression] = STATE(4485), - [sym_bitwise_expression] = STATE(4485), - [sym_cast_expression] = STATE(4485), - [sym_new_expression] = STATE(4485), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4485), - [sym_char_literal] = STATE(4485), - [sym_template_function] = STATE(4485), - [sym_conditional_expression] = STATE(4485), - [sym_equality_expression] = STATE(4485), - [sym_relational_expression] = STATE(4485), - [sym_delete_expression] = STATE(4485), - [sym_sizeof_expression] = STATE(4485), - [sym_parenthesized_expression] = STATE(4485), - [sym_initializer_list] = STATE(4486), - [sym_concatenated_string] = STATE(4485), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4485), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4485), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4485), - [sym_math_expression] = STATE(4485), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9724), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(9726), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(9726), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9724), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(9726), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(9726), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(9748), + [4063] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(9694), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [4064] = { + [sym_template_function] = STATE(4456), + [sym__expression] = STATE(4456), + [sym_logical_expression] = STATE(4456), + [sym_bitwise_expression] = STATE(4456), + [sym_cast_expression] = STATE(4456), + [sym_delete_expression] = STATE(4456), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4456), + [sym_lambda_expression] = STATE(4456), + [sym_char_literal] = STATE(4456), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4456), + [sym_equality_expression] = STATE(4456), + [sym_relational_expression] = STATE(4456), + [sym_sizeof_expression] = STATE(4456), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4457), + [sym_parenthesized_expression] = STATE(4456), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4456), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4456), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4456), + [sym_math_expression] = STATE(4456), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4456), + [sym_raw_string_literal] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(9692), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(9692), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9690), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(9692), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(9722), [anon_sym_LBRACE] = ACTIONS(175), }, - [4094] = { - [sym_goto_statement] = STATE(4100), - [sym_preproc_function_def] = STATE(4100), - [sym_logical_expression] = STATE(2024), - [sym_for_range_loop] = STATE(4100), - [sym_cast_expression] = STATE(2024), - [sym_declaration] = STATE(4100), - [sym_field_expression] = STATE(2022), - [sym_field_designator] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_switch_statement] = STATE(4100), - [sym_return_statement] = STATE(4100), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(2024), - [sym_relational_expression] = STATE(2024), - [sym_delete_expression] = STATE(2024), - [sym_subscript_expression] = STATE(2022), - [sym_scoped_identifier] = STATE(50), + [4065] = { + [sym_goto_statement] = STATE(4071), + [sym_preproc_function_def] = STATE(4071), + [sym_logical_expression] = STATE(2031), + [sym_try_statement] = STATE(4071), + [sym_cast_expression] = STATE(2031), + [sym_lambda_expression] = STATE(2031), + [sym_field_expression] = STATE(2029), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(4071), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_field_designator] = STATE(452), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(4071), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(4071), + [sym_namespace_definition] = STATE(4071), + [sym_conditional_expression] = STATE(2031), + [sym_relational_expression] = STATE(2031), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(4071), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(2030), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(4071), [sym_initializer_list] = STATE(451), - [sym_type_definition] = STATE(4100), - [sym_string_literal] = STATE(2023), - [sym_function_declarator] = STATE(51), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(4100), - [sym_break_statement] = STATE(4100), - [sym_preproc_include] = STATE(4100), - [sym_assignment_expression] = STATE(2024), - [sym_preproc_ifdef] = STATE(4100), - [sym_shift_expression] = STATE(2024), - [sym_using_declaration] = STATE(4100), - [sym_call_expression] = STATE(2022), - [sym_attribute] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(4071), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(4071), + [sym_preproc_include] = STATE(4071), + [sym_assignment_expression] = STATE(2031), + [sym_preproc_ifdef] = STATE(4071), + [sym_shift_expression] = STATE(2031), + [sym_for_range_loop] = STATE(4071), + [sym_call_expression] = STATE(2029), [sym_initializer_pair] = STATE(451), - [sym_compound_statement] = STATE(4100), - [sym_template_instantiation] = STATE(4100), - [sym_constructor_or_destructor_definition] = STATE(4100), - [sym_expression_statement] = STATE(4100), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(4100), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(2024), - [sym_preproc_def] = STATE(4100), - [sym_bitwise_expression] = STATE(2024), - [sym_new_expression] = STATE(2024), - [sym_function_definition] = STATE(4100), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(2024), - [sym_char_literal] = STATE(2024), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(4100), - [sym_alias_declaration] = STATE(4100), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [aux_sym_translation_unit_repeat1] = STATE(4100), - [sym_storage_class_specifier] = STATE(48), - [sym_if_statement] = STATE(4100), - [sym_for_statement] = STATE(4100), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(4100), - [sym_equality_expression] = STATE(2024), - [sym_try_statement] = STATE(4100), - [sym_sizeof_expression] = STATE(2024), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(2024), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(2024), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(2024), - [sym_structured_binding_declaration] = STATE(4100), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(4100), - [sym_preproc_if] = STATE(4100), - [sym_pointer_expression] = STATE(2022), - [sym_namespace_definition] = STATE(4100), - [sym_math_expression] = STATE(2024), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(4100), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [sym_subscript_designator] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(4100), - [sym_while_statement] = STATE(4100), - [sym_raw_string_literal] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4043), - [sym_true] = ACTIONS(4045), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(4071), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_expression_statement] = STATE(4071), + [sym_do_statement] = STATE(4071), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(2031), + [sym_preproc_def] = STATE(4071), + [sym_bitwise_expression] = STATE(2031), + [sym_delete_expression] = STATE(2031), + [sym_function_definition] = STATE(4071), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(2031), + [sym_char_literal] = STATE(2031), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(4071), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(4071), + [sym_for_statement] = STATE(4071), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(4071), + [sym_equality_expression] = STATE(2031), + [sym_using_declaration] = STATE(4071), + [sym_sizeof_expression] = STATE(2031), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(2031), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(2031), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(4071), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(4071), + [sym_preproc_if] = STATE(4071), + [sym_pointer_expression] = STATE(2029), + [sym_new_expression] = STATE(2031), + [sym_math_expression] = STATE(2031), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(4071), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(4071), + [aux_sym_translation_unit_repeat1] = STATE(4071), + [sym_subscript_designator] = STATE(452), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(4071), + [sym_while_statement] = STATE(4071), + [sym_raw_string_literal] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4079), + [sym_true] = ACTIONS(4081), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4045), + [sym_null] = ACTIONS(4081), [anon_sym_break] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_sizeof] = ACTIONS(4049), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_sizeof] = ACTIONS(4085), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4079), [anon_sym_typedef] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(4051), - [anon_sym_delete] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4087), + [anon_sym_delete] = ACTIONS(4089), [anon_sym_continue] = ACTIONS(27), [aux_sym_preproc_ifdef_token1] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(760), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4041), + [sym_number_literal] = ACTIONS(4077), [anon_sym_extern] = ACTIONS(31), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), @@ -167139,25 +166517,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(39), [aux_sym_preproc_ifdef_token2] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [anon_sym_LPAREN2] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [anon_sym_LPAREN2] = ACTIONS(4095), [anon_sym_struct] = ACTIONS(49), [sym_auto] = ACTIONS(51), [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4097), [anon_sym_using] = ACTIONS(55), [sym_preproc_directive] = ACTIONS(57), [aux_sym_preproc_if_token1] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4099), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(9750), - [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_RBRACE] = ACTIONS(9724), + [anon_sym_STAR] = ACTIONS(4103), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), - [anon_sym_new] = ACTIONS(4069), + [anon_sym_new] = ACTIONS(4105), [anon_sym_goto] = ACTIONS(73), [sym_operator_name] = ACTIONS(75), [anon_sym_while] = ACTIONS(250), @@ -167167,227 +166545,229 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_LBRACK] = ACTIONS(4107), [anon_sym_class] = ACTIONS(89), [anon_sym_if] = ACTIONS(256), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(4045), - [sym_nullptr] = ACTIONS(4045), + [sym_false] = ACTIONS(4081), + [sym_nullptr] = ACTIONS(4081), [anon_sym_do] = ACTIONS(95), [anon_sym_template] = ACTIONS(97), [anon_sym_return] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4109), [anon_sym_SEMI] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_restrict] = ACTIONS(11), }, - [4095] = { - [anon_sym_LPAREN2] = ACTIONS(7445), - [anon_sym_struct] = ACTIONS(7447), - [sym_auto] = ACTIONS(7447), - [anon_sym_signed] = ACTIONS(7447), - [anon_sym_mutable] = ACTIONS(7447), - [anon_sym_long] = ACTIONS(7447), - [anon_sym_COLON_COLON] = ACTIONS(7445), - [anon_sym_using] = ACTIONS(7447), - [aux_sym_preproc_else_token1] = ACTIONS(7447), - [aux_sym_preproc_if_token2] = ACTIONS(7447), - [sym_preproc_directive] = ACTIONS(7447), - [aux_sym_preproc_if_token1] = ACTIONS(7447), - [anon_sym_AMP] = ACTIONS(7447), - [anon_sym_static] = ACTIONS(7447), - [anon_sym_volatile] = ACTIONS(7447), - [anon_sym_typedef] = ACTIONS(7447), - [anon_sym_STAR] = ACTIONS(7445), - [anon_sym_union] = ACTIONS(7447), - [anon_sym_typename] = ACTIONS(7447), - [anon_sym_private] = ACTIONS(7447), - [anon_sym_explicit] = ACTIONS(7447), - [anon_sym_short] = ACTIONS(7447), - [sym_identifier] = ACTIONS(7447), - [sym_operator_name] = ACTIONS(7445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7447), - [anon_sym_register] = ACTIONS(7447), - [anon_sym__Atomic] = ACTIONS(7447), - [anon_sym_const] = ACTIONS(7447), - [anon_sym_extern] = ACTIONS(7447), - [anon_sym_virtual] = ACTIONS(7447), - [anon_sym_enum] = ACTIONS(7447), - [anon_sym_class] = ACTIONS(7447), - [anon_sym_constexpr] = ACTIONS(7447), - [sym_primitive_type] = ACTIONS(7447), - [anon_sym_unsigned] = ACTIONS(7447), - [anon_sym_public] = ACTIONS(7447), - [anon_sym_protected] = ACTIONS(7447), - [anon_sym_friend] = ACTIONS(7447), - [anon_sym_template] = ACTIONS(7447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7447), - [anon_sym_TILDE] = ACTIONS(7445), - [aux_sym_preproc_elif_token1] = ACTIONS(7447), - [aux_sym_preproc_def_token1] = ACTIONS(7447), - [anon_sym_AMP_AMP] = ACTIONS(7445), - [anon_sym_inline] = ACTIONS(7447), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(7447), + [4066] = { + [anon_sym_LPAREN2] = ACTIONS(7430), + [anon_sym_struct] = ACTIONS(7432), + [sym_auto] = ACTIONS(7432), + [anon_sym_signed] = ACTIONS(7432), + [anon_sym_mutable] = ACTIONS(7432), + [anon_sym_long] = ACTIONS(7432), + [anon_sym_COLON_COLON] = ACTIONS(7430), + [anon_sym_using] = ACTIONS(7432), + [aux_sym_preproc_else_token1] = ACTIONS(7432), + [aux_sym_preproc_if_token2] = ACTIONS(7432), + [sym_preproc_directive] = ACTIONS(7432), + [aux_sym_preproc_if_token1] = ACTIONS(7432), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_static] = ACTIONS(7432), + [anon_sym_volatile] = ACTIONS(7432), + [anon_sym_typedef] = ACTIONS(7432), + [anon_sym_STAR] = ACTIONS(7430), + [anon_sym_union] = ACTIONS(7432), + [anon_sym_typename] = ACTIONS(7432), + [anon_sym_private] = ACTIONS(7432), + [anon_sym_explicit] = ACTIONS(7432), + [anon_sym_short] = ACTIONS(7432), + [sym_identifier] = ACTIONS(7432), + [sym_operator_name] = ACTIONS(7430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7432), + [anon_sym_register] = ACTIONS(7432), + [anon_sym__Atomic] = ACTIONS(7432), + [anon_sym_const] = ACTIONS(7432), + [anon_sym_extern] = ACTIONS(7432), + [anon_sym_LBRACK] = ACTIONS(7432), + [anon_sym_virtual] = ACTIONS(7432), + [anon_sym_enum] = ACTIONS(7432), + [anon_sym_class] = ACTIONS(7432), + [anon_sym_constexpr] = ACTIONS(7432), + [sym_primitive_type] = ACTIONS(7432), + [anon_sym_unsigned] = ACTIONS(7432), + [anon_sym_public] = ACTIONS(7432), + [anon_sym_protected] = ACTIONS(7432), + [anon_sym_friend] = ACTIONS(7432), + [anon_sym_template] = ACTIONS(7432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7432), + [anon_sym_TILDE] = ACTIONS(7430), + [aux_sym_preproc_elif_token1] = ACTIONS(7432), + [aux_sym_preproc_def_token1] = ACTIONS(7432), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_inline] = ACTIONS(7432), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(7432), }, - [4096] = { - [sym_bitfield_clause] = STATE(4486), - [aux_sym_field_declaration_repeat1] = STATE(3485), - [sym_initializer_list] = STATE(4486), - [anon_sym_COLON] = ACTIONS(5122), + [4067] = { + [sym_bitfield_clause] = STATE(4457), + [sym_initializer_list] = STATE(4457), + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(5213), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(9730), - [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_EQ] = ACTIONS(9696), + [anon_sym_COMMA] = ACTIONS(5211), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(9728), + [anon_sym_SEMI] = ACTIONS(9694), }, - [4097] = { + [4068] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9752), + [anon_sym_SEMI] = ACTIONS(9726), }, - [4098] = { + [4069] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9754), + [anon_sym_SEMI] = ACTIONS(9728), }, - [4099] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [aux_sym_preproc_else_token1] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_private] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_virtual] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_public] = ACTIONS(962), - [anon_sym_protected] = ACTIONS(962), - [anon_sym_friend] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [aux_sym_preproc_elif_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(962), + [4070] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [aux_sym_preproc_else_token1] = ACTIONS(966), + [aux_sym_preproc_if_token2] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_private] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_virtual] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_public] = ACTIONS(966), + [anon_sym_protected] = ACTIONS(966), + [anon_sym_friend] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [aux_sym_preproc_elif_token1] = ACTIONS(966), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(966), }, - [4100] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [4071] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -167429,7 +166809,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(9756), + [anon_sym_RBRACE] = ACTIONS(9730), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -167461,1649 +166841,1624 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [4101] = { - [sym_function_field_declarator] = STATE(4506), - [sym_reference_field_declarator] = STATE(4506), - [sym_template_method] = STATE(4506), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(4506), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(4506), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(4506), - [sym_bitfield_clause] = STATE(4486), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(4486), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(9728), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(9730), - [sym_operator_name] = ACTIONS(9758), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), + [4072] = { + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3882), + [sym_auto] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3882), + [anon_sym_mutable] = ACTIONS(3882), + [anon_sym_long] = ACTIONS(3882), + [anon_sym_COLON_COLON] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3882), + [aux_sym_preproc_else_token1] = ACTIONS(3882), + [aux_sym_preproc_if_token2] = ACTIONS(3882), + [sym_preproc_directive] = ACTIONS(3882), + [aux_sym_preproc_if_token1] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3882), + [anon_sym_static] = ACTIONS(3882), + [anon_sym_volatile] = ACTIONS(3882), + [anon_sym_typedef] = ACTIONS(3882), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3882), + [anon_sym_typename] = ACTIONS(3882), + [anon_sym_private] = ACTIONS(3882), + [anon_sym_explicit] = ACTIONS(3882), + [anon_sym_short] = ACTIONS(3882), + [sym_identifier] = ACTIONS(3882), + [sym_operator_name] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3882), + [anon_sym_register] = ACTIONS(3882), + [anon_sym__Atomic] = ACTIONS(3882), + [anon_sym_const] = ACTIONS(3882), + [anon_sym_extern] = ACTIONS(3882), + [anon_sym_LBRACK] = ACTIONS(3882), + [anon_sym_virtual] = ACTIONS(3882), + [anon_sym_enum] = ACTIONS(3882), + [anon_sym_class] = ACTIONS(3882), + [anon_sym_constexpr] = ACTIONS(3882), + [sym_primitive_type] = ACTIONS(3882), + [anon_sym_unsigned] = ACTIONS(3882), + [anon_sym_public] = ACTIONS(3882), + [anon_sym_protected] = ACTIONS(3882), + [anon_sym_friend] = ACTIONS(3882), + [anon_sym_template] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3884), + [aux_sym_preproc_elif_token1] = ACTIONS(3882), + [aux_sym_preproc_def_token1] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3882), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(3882), }, - [4102] = { - [sym_compound_statement] = STATE(4508), - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(4486), - [aux_sym_field_declaration_repeat1] = STATE(4489), - [sym_initializer_list] = STATE(4486), - [sym_delete_method_clause] = STATE(4508), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(9728), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(9760), - [anon_sym_LBRACE] = ACTIONS(8754), + [4073] = { + [sym_compound_statement] = STATE(4479), + [sym_default_method_clause] = STATE(4479), + [sym_delete_method_clause] = STATE(4479), + [anon_sym_EQ] = ACTIONS(7340), + [anon_sym_LBRACE] = ACTIONS(7342), [sym_comment] = ACTIONS(3), }, - [4103] = { - [anon_sym_LPAREN2] = ACTIONS(9762), - [anon_sym_struct] = ACTIONS(9764), - [sym_auto] = ACTIONS(9764), - [anon_sym_signed] = ACTIONS(9764), - [anon_sym_mutable] = ACTIONS(9764), - [anon_sym_long] = ACTIONS(9764), - [anon_sym_COLON_COLON] = ACTIONS(9762), - [anon_sym_using] = ACTIONS(9764), - [sym_preproc_directive] = ACTIONS(9764), - [aux_sym_preproc_if_token1] = ACTIONS(9764), - [anon_sym_AMP] = ACTIONS(9764), - [anon_sym_static] = ACTIONS(9764), - [anon_sym_volatile] = ACTIONS(9764), - [anon_sym_RBRACE] = ACTIONS(9762), - [anon_sym_typedef] = ACTIONS(9764), - [anon_sym_STAR] = ACTIONS(9762), - [anon_sym_union] = ACTIONS(9764), - [anon_sym_typename] = ACTIONS(9764), - [anon_sym_private] = ACTIONS(9764), - [anon_sym_explicit] = ACTIONS(9764), - [anon_sym_short] = ACTIONS(9764), - [sym_identifier] = ACTIONS(9764), - [sym_operator_name] = ACTIONS(9762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9764), - [anon_sym_register] = ACTIONS(9764), - [anon_sym__Atomic] = ACTIONS(9764), - [anon_sym_const] = ACTIONS(9764), - [anon_sym_extern] = ACTIONS(9764), - [anon_sym_virtual] = ACTIONS(9764), - [anon_sym_enum] = ACTIONS(9764), - [anon_sym_class] = ACTIONS(9764), - [anon_sym_constexpr] = ACTIONS(9764), - [sym_primitive_type] = ACTIONS(9764), - [anon_sym_unsigned] = ACTIONS(9764), - [anon_sym_public] = ACTIONS(9764), - [anon_sym_protected] = ACTIONS(9764), - [anon_sym_friend] = ACTIONS(9764), - [anon_sym_template] = ACTIONS(9764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9764), - [anon_sym_TILDE] = ACTIONS(9762), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(9764), - [anon_sym_AMP_AMP] = ACTIONS(9762), - [anon_sym_inline] = ACTIONS(9764), - [anon_sym_restrict] = ACTIONS(9764), - }, - [4104] = { - [anon_sym_LPAREN2] = ACTIONS(6418), - [anon_sym_struct] = ACTIONS(6416), - [sym_auto] = ACTIONS(6416), - [anon_sym_signed] = ACTIONS(6416), - [anon_sym_mutable] = ACTIONS(6416), - [anon_sym_long] = ACTIONS(6416), - [anon_sym_COLON_COLON] = ACTIONS(6418), - [anon_sym_using] = ACTIONS(6416), - [sym_preproc_directive] = ACTIONS(6416), - [aux_sym_preproc_if_token1] = ACTIONS(6416), - [anon_sym_AMP] = ACTIONS(6416), - [anon_sym_static] = ACTIONS(6416), - [anon_sym_volatile] = ACTIONS(6416), - [anon_sym_RBRACE] = ACTIONS(6418), - [anon_sym_typedef] = ACTIONS(6416), - [anon_sym_STAR] = ACTIONS(6418), - [anon_sym_union] = ACTIONS(6416), - [anon_sym_typename] = ACTIONS(6416), - [anon_sym_private] = ACTIONS(6416), - [anon_sym_explicit] = ACTIONS(6416), - [anon_sym_short] = ACTIONS(6416), - [sym_identifier] = ACTIONS(6416), - [sym_operator_name] = ACTIONS(6418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6416), - [anon_sym_register] = ACTIONS(6416), - [anon_sym__Atomic] = ACTIONS(6416), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_extern] = ACTIONS(6416), - [anon_sym_virtual] = ACTIONS(6416), - [anon_sym_enum] = ACTIONS(6416), - [anon_sym_class] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6416), - [sym_primitive_type] = ACTIONS(6416), - [anon_sym_unsigned] = ACTIONS(6416), - [anon_sym_public] = ACTIONS(6416), - [anon_sym_protected] = ACTIONS(6416), - [anon_sym_friend] = ACTIONS(6416), - [anon_sym_template] = ACTIONS(6416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6416), - [anon_sym_TILDE] = ACTIONS(6418), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(6416), - [anon_sym_AMP_AMP] = ACTIONS(6418), - [anon_sym_inline] = ACTIONS(6416), - [anon_sym_restrict] = ACTIONS(6416), + [4074] = { + [anon_sym_LPAREN2] = ACTIONS(6407), + [anon_sym_struct] = ACTIONS(6405), + [sym_auto] = ACTIONS(6405), + [anon_sym_signed] = ACTIONS(6405), + [anon_sym_mutable] = ACTIONS(6405), + [anon_sym_long] = ACTIONS(6405), + [anon_sym_COLON_COLON] = ACTIONS(6407), + [anon_sym_using] = ACTIONS(6405), + [sym_preproc_directive] = ACTIONS(6405), + [aux_sym_preproc_if_token1] = ACTIONS(6405), + [anon_sym_AMP] = ACTIONS(6405), + [anon_sym_static] = ACTIONS(6405), + [anon_sym_volatile] = ACTIONS(6405), + [anon_sym_RBRACE] = ACTIONS(6407), + [anon_sym_typedef] = ACTIONS(6405), + [anon_sym_STAR] = ACTIONS(6407), + [anon_sym_union] = ACTIONS(6405), + [anon_sym_typename] = ACTIONS(6405), + [anon_sym_private] = ACTIONS(6405), + [anon_sym_explicit] = ACTIONS(6405), + [anon_sym_short] = ACTIONS(6405), + [sym_identifier] = ACTIONS(6405), + [sym_operator_name] = ACTIONS(6407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6405), + [anon_sym_register] = ACTIONS(6405), + [anon_sym__Atomic] = ACTIONS(6405), + [anon_sym_const] = ACTIONS(6405), + [anon_sym_extern] = ACTIONS(6405), + [anon_sym_LBRACK] = ACTIONS(6405), + [anon_sym_virtual] = ACTIONS(6405), + [anon_sym_enum] = ACTIONS(6405), + [anon_sym_class] = ACTIONS(6405), + [anon_sym_constexpr] = ACTIONS(6405), + [sym_primitive_type] = ACTIONS(6405), + [anon_sym_unsigned] = ACTIONS(6405), + [anon_sym_public] = ACTIONS(6405), + [anon_sym_protected] = ACTIONS(6405), + [anon_sym_friend] = ACTIONS(6405), + [anon_sym_template] = ACTIONS(6405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6405), + [anon_sym_TILDE] = ACTIONS(6407), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(6405), + [anon_sym_AMP_AMP] = ACTIONS(6407), + [anon_sym_inline] = ACTIONS(6405), + [anon_sym_restrict] = ACTIONS(6405), }, - [4105] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [4075] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(9766), + [anon_sym_SEMI] = ACTIONS(9732), }, - [4106] = { - [anon_sym_LPAREN2] = ACTIONS(9768), - [anon_sym_struct] = ACTIONS(9770), - [sym_auto] = ACTIONS(9770), - [anon_sym_signed] = ACTIONS(9770), - [anon_sym_mutable] = ACTIONS(9770), - [anon_sym_long] = ACTIONS(9770), - [anon_sym_COLON_COLON] = ACTIONS(9768), - [anon_sym_using] = ACTIONS(9770), - [sym_preproc_directive] = ACTIONS(9770), - [aux_sym_preproc_if_token1] = ACTIONS(9770), - [anon_sym_AMP] = ACTIONS(9770), - [anon_sym_static] = ACTIONS(9770), - [anon_sym_volatile] = ACTIONS(9770), - [anon_sym_RBRACE] = ACTIONS(9768), - [anon_sym_typedef] = ACTIONS(9770), - [anon_sym_STAR] = ACTIONS(9768), - [anon_sym_union] = ACTIONS(9770), - [anon_sym_typename] = ACTIONS(9770), - [anon_sym_private] = ACTIONS(9770), - [anon_sym_explicit] = ACTIONS(9770), - [anon_sym_short] = ACTIONS(9770), - [sym_identifier] = ACTIONS(9770), - [sym_operator_name] = ACTIONS(9768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9770), - [anon_sym_register] = ACTIONS(9770), - [anon_sym__Atomic] = ACTIONS(9770), - [anon_sym_const] = ACTIONS(9770), - [anon_sym_extern] = ACTIONS(9770), - [anon_sym_virtual] = ACTIONS(9770), - [anon_sym_enum] = ACTIONS(9770), - [anon_sym_class] = ACTIONS(9770), - [anon_sym_constexpr] = ACTIONS(9770), - [sym_primitive_type] = ACTIONS(9770), - [anon_sym_unsigned] = ACTIONS(9770), - [anon_sym_public] = ACTIONS(9770), - [anon_sym_protected] = ACTIONS(9770), - [anon_sym_friend] = ACTIONS(9770), - [anon_sym_template] = ACTIONS(9770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9770), - [anon_sym_TILDE] = ACTIONS(9768), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(9770), - [anon_sym_AMP_AMP] = ACTIONS(9768), - [anon_sym_inline] = ACTIONS(9770), - [anon_sym_restrict] = ACTIONS(9770), + [4076] = { + [anon_sym_LPAREN2] = ACTIONS(9734), + [anon_sym_struct] = ACTIONS(9736), + [sym_auto] = ACTIONS(9736), + [anon_sym_signed] = ACTIONS(9736), + [anon_sym_mutable] = ACTIONS(9736), + [anon_sym_long] = ACTIONS(9736), + [anon_sym_COLON_COLON] = ACTIONS(9734), + [anon_sym_using] = ACTIONS(9736), + [sym_preproc_directive] = ACTIONS(9736), + [aux_sym_preproc_if_token1] = ACTIONS(9736), + [anon_sym_AMP] = ACTIONS(9736), + [anon_sym_static] = ACTIONS(9736), + [anon_sym_volatile] = ACTIONS(9736), + [anon_sym_RBRACE] = ACTIONS(9734), + [anon_sym_typedef] = ACTIONS(9736), + [anon_sym_STAR] = ACTIONS(9734), + [anon_sym_union] = ACTIONS(9736), + [anon_sym_typename] = ACTIONS(9736), + [anon_sym_private] = ACTIONS(9736), + [anon_sym_explicit] = ACTIONS(9736), + [anon_sym_short] = ACTIONS(9736), + [sym_identifier] = ACTIONS(9736), + [sym_operator_name] = ACTIONS(9734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9736), + [anon_sym_register] = ACTIONS(9736), + [anon_sym__Atomic] = ACTIONS(9736), + [anon_sym_const] = ACTIONS(9736), + [anon_sym_extern] = ACTIONS(9736), + [anon_sym_LBRACK] = ACTIONS(9736), + [anon_sym_virtual] = ACTIONS(9736), + [anon_sym_enum] = ACTIONS(9736), + [anon_sym_class] = ACTIONS(9736), + [anon_sym_constexpr] = ACTIONS(9736), + [sym_primitive_type] = ACTIONS(9736), + [anon_sym_unsigned] = ACTIONS(9736), + [anon_sym_public] = ACTIONS(9736), + [anon_sym_protected] = ACTIONS(9736), + [anon_sym_friend] = ACTIONS(9736), + [anon_sym_template] = ACTIONS(9736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9736), + [anon_sym_TILDE] = ACTIONS(9734), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(9736), + [anon_sym_AMP_AMP] = ACTIONS(9734), + [anon_sym_inline] = ACTIONS(9736), + [anon_sym_restrict] = ACTIONS(9736), }, - [4107] = { - [anon_sym_LPAREN2] = ACTIONS(9772), - [anon_sym_struct] = ACTIONS(9774), - [sym_auto] = ACTIONS(9774), - [anon_sym_signed] = ACTIONS(9774), - [anon_sym_mutable] = ACTIONS(9774), - [anon_sym_long] = ACTIONS(9774), - [anon_sym_COLON_COLON] = ACTIONS(9772), - [anon_sym_using] = ACTIONS(9774), - [sym_preproc_directive] = ACTIONS(9774), - [aux_sym_preproc_if_token1] = ACTIONS(9774), - [anon_sym_AMP] = ACTIONS(9774), - [anon_sym_static] = ACTIONS(9774), - [anon_sym_volatile] = ACTIONS(9774), - [anon_sym_RBRACE] = ACTIONS(9772), - [anon_sym_typedef] = ACTIONS(9774), - [anon_sym_STAR] = ACTIONS(9772), - [anon_sym_union] = ACTIONS(9774), - [anon_sym_typename] = ACTIONS(9774), - [anon_sym_private] = ACTIONS(9774), - [anon_sym_explicit] = ACTIONS(9774), - [anon_sym_short] = ACTIONS(9774), - [sym_identifier] = ACTIONS(9774), - [sym_operator_name] = ACTIONS(9772), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9774), - [anon_sym_register] = ACTIONS(9774), - [anon_sym__Atomic] = ACTIONS(9774), - [anon_sym_const] = ACTIONS(9774), - [anon_sym_extern] = ACTIONS(9774), - [anon_sym_virtual] = ACTIONS(9774), - [anon_sym_enum] = ACTIONS(9774), - [anon_sym_class] = ACTIONS(9774), - [anon_sym_constexpr] = ACTIONS(9774), - [sym_primitive_type] = ACTIONS(9774), - [anon_sym_unsigned] = ACTIONS(9774), - [anon_sym_public] = ACTIONS(9774), - [anon_sym_protected] = ACTIONS(9774), - [anon_sym_friend] = ACTIONS(9774), - [anon_sym_template] = ACTIONS(9774), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9772), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9774), - [anon_sym_TILDE] = ACTIONS(9772), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(9774), - [anon_sym_AMP_AMP] = ACTIONS(9772), - [anon_sym_inline] = ACTIONS(9774), - [anon_sym_restrict] = ACTIONS(9774), + [4077] = { + [anon_sym_LPAREN2] = ACTIONS(9738), + [anon_sym_struct] = ACTIONS(9740), + [sym_auto] = ACTIONS(9740), + [anon_sym_signed] = ACTIONS(9740), + [anon_sym_mutable] = ACTIONS(9740), + [anon_sym_long] = ACTIONS(9740), + [anon_sym_COLON_COLON] = ACTIONS(9738), + [anon_sym_using] = ACTIONS(9740), + [sym_preproc_directive] = ACTIONS(9740), + [aux_sym_preproc_if_token1] = ACTIONS(9740), + [anon_sym_AMP] = ACTIONS(9740), + [anon_sym_static] = ACTIONS(9740), + [anon_sym_volatile] = ACTIONS(9740), + [anon_sym_RBRACE] = ACTIONS(9738), + [anon_sym_typedef] = ACTIONS(9740), + [anon_sym_STAR] = ACTIONS(9738), + [anon_sym_union] = ACTIONS(9740), + [anon_sym_typename] = ACTIONS(9740), + [anon_sym_private] = ACTIONS(9740), + [anon_sym_explicit] = ACTIONS(9740), + [anon_sym_short] = ACTIONS(9740), + [sym_identifier] = ACTIONS(9740), + [sym_operator_name] = ACTIONS(9738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9740), + [anon_sym_register] = ACTIONS(9740), + [anon_sym__Atomic] = ACTIONS(9740), + [anon_sym_const] = ACTIONS(9740), + [anon_sym_extern] = ACTIONS(9740), + [anon_sym_LBRACK] = ACTIONS(9740), + [anon_sym_virtual] = ACTIONS(9740), + [anon_sym_enum] = ACTIONS(9740), + [anon_sym_class] = ACTIONS(9740), + [anon_sym_constexpr] = ACTIONS(9740), + [sym_primitive_type] = ACTIONS(9740), + [anon_sym_unsigned] = ACTIONS(9740), + [anon_sym_public] = ACTIONS(9740), + [anon_sym_protected] = ACTIONS(9740), + [anon_sym_friend] = ACTIONS(9740), + [anon_sym_template] = ACTIONS(9740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9740), + [anon_sym_TILDE] = ACTIONS(9738), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(9740), + [anon_sym_AMP_AMP] = ACTIONS(9738), + [anon_sym_inline] = ACTIONS(9740), + [anon_sym_restrict] = ACTIONS(9740), }, - [4108] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(9776), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4078] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(9742), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4109] = { + [4079] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(9776), + [anon_sym_SEMI] = ACTIONS(9742), }, - [4110] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4511), - [sym_logical_expression] = STATE(4511), - [sym_bitwise_expression] = STATE(4511), - [sym_cast_expression] = STATE(4511), - [sym_new_expression] = STATE(4511), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4511), - [sym_char_literal] = STATE(4511), - [sym_template_function] = STATE(4511), - [sym_conditional_expression] = STATE(4511), - [sym_equality_expression] = STATE(4511), - [sym_relational_expression] = STATE(4511), - [sym_delete_expression] = STATE(4511), - [sym_sizeof_expression] = STATE(4511), - [sym_parenthesized_expression] = STATE(4511), - [sym_initializer_list] = STATE(4512), - [sym_concatenated_string] = STATE(4511), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4511), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4511), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4511), - [sym_math_expression] = STATE(4511), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9778), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(9780), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(9780), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9778), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(9780), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(9780), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [4080] = { + [sym_template_function] = STATE(4482), + [sym__expression] = STATE(4482), + [sym_logical_expression] = STATE(4482), + [sym_bitwise_expression] = STATE(4482), + [sym_cast_expression] = STATE(4482), + [sym_delete_expression] = STATE(4482), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4482), + [sym_lambda_expression] = STATE(4482), + [sym_char_literal] = STATE(4482), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4482), + [sym_equality_expression] = STATE(4482), + [sym_relational_expression] = STATE(4482), + [sym_sizeof_expression] = STATE(4482), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4483), + [sym_parenthesized_expression] = STATE(4482), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4482), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4482), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4482), + [sym_math_expression] = STATE(4482), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4482), + [sym_raw_string_literal] = ACTIONS(9744), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(9746), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(9746), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9744), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(9746), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(9746), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [4111] = { - [anon_sym_LPAREN2] = ACTIONS(6356), - [anon_sym_struct] = ACTIONS(6354), - [sym_auto] = ACTIONS(6354), - [anon_sym_signed] = ACTIONS(6354), - [anon_sym_mutable] = ACTIONS(6354), - [anon_sym_long] = ACTIONS(6354), - [anon_sym_COLON_COLON] = ACTIONS(6356), - [anon_sym_using] = ACTIONS(6354), - [sym_preproc_directive] = ACTIONS(6354), - [aux_sym_preproc_if_token1] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(6354), - [anon_sym_static] = ACTIONS(6354), - [anon_sym_volatile] = ACTIONS(6354), - [anon_sym_RBRACE] = ACTIONS(6356), - [anon_sym_typedef] = ACTIONS(6354), - [anon_sym_STAR] = ACTIONS(6356), - [anon_sym_union] = ACTIONS(6354), - [anon_sym_typename] = ACTIONS(6354), - [anon_sym_private] = ACTIONS(6354), - [anon_sym_explicit] = ACTIONS(6354), - [anon_sym_short] = ACTIONS(6354), - [sym_identifier] = ACTIONS(6354), - [sym_operator_name] = ACTIONS(6356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6354), - [anon_sym_register] = ACTIONS(6354), - [anon_sym__Atomic] = ACTIONS(6354), - [anon_sym_const] = ACTIONS(6354), - [anon_sym_extern] = ACTIONS(6354), - [anon_sym_virtual] = ACTIONS(6354), - [anon_sym_enum] = ACTIONS(6354), - [anon_sym_class] = ACTIONS(6354), - [anon_sym_constexpr] = ACTIONS(6354), - [sym_primitive_type] = ACTIONS(6354), - [anon_sym_unsigned] = ACTIONS(6354), - [anon_sym_public] = ACTIONS(6354), - [anon_sym_protected] = ACTIONS(6354), - [anon_sym_friend] = ACTIONS(6354), - [anon_sym_template] = ACTIONS(6354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6354), - [anon_sym_TILDE] = ACTIONS(6356), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(6354), - [anon_sym_AMP_AMP] = ACTIONS(6356), - [anon_sym_inline] = ACTIONS(6354), - [anon_sym_restrict] = ACTIONS(6354), + [4081] = { + [anon_sym_LPAREN2] = ACTIONS(5921), + [anon_sym_struct] = ACTIONS(5919), + [sym_auto] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(5919), + [anon_sym_mutable] = ACTIONS(5919), + [anon_sym_long] = ACTIONS(5919), + [anon_sym_COLON_COLON] = ACTIONS(5921), + [anon_sym_using] = ACTIONS(5919), + [sym_preproc_directive] = ACTIONS(5919), + [aux_sym_preproc_if_token1] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_static] = ACTIONS(5919), + [anon_sym_volatile] = ACTIONS(5919), + [anon_sym_RBRACE] = ACTIONS(5921), + [anon_sym_typedef] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_union] = ACTIONS(5919), + [anon_sym_typename] = ACTIONS(5919), + [anon_sym_private] = ACTIONS(5919), + [anon_sym_explicit] = ACTIONS(5919), + [anon_sym_short] = ACTIONS(5919), + [sym_identifier] = ACTIONS(5919), + [sym_operator_name] = ACTIONS(5921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5919), + [anon_sym_register] = ACTIONS(5919), + [anon_sym__Atomic] = ACTIONS(5919), + [anon_sym_const] = ACTIONS(5919), + [anon_sym_extern] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_virtual] = ACTIONS(5919), + [anon_sym_enum] = ACTIONS(5919), + [anon_sym_class] = ACTIONS(5919), + [anon_sym_constexpr] = ACTIONS(5919), + [sym_primitive_type] = ACTIONS(5919), + [anon_sym_unsigned] = ACTIONS(5919), + [anon_sym_public] = ACTIONS(5919), + [anon_sym_protected] = ACTIONS(5919), + [anon_sym_friend] = ACTIONS(5919), + [anon_sym_template] = ACTIONS(5919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5919), + [anon_sym_TILDE] = ACTIONS(5921), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5921), + [anon_sym_inline] = ACTIONS(5919), + [anon_sym_restrict] = ACTIONS(5919), }, - [4112] = { - [anon_sym_LPAREN2] = ACTIONS(6363), - [anon_sym_struct] = ACTIONS(6361), - [sym_auto] = ACTIONS(6361), - [anon_sym_signed] = ACTIONS(6361), - [anon_sym_mutable] = ACTIONS(6361), - [anon_sym_long] = ACTIONS(6361), - [anon_sym_COLON_COLON] = ACTIONS(6363), - [anon_sym_using] = ACTIONS(6361), - [sym_preproc_directive] = ACTIONS(6361), - [aux_sym_preproc_if_token1] = ACTIONS(6361), - [anon_sym_AMP] = ACTIONS(6361), - [anon_sym_static] = ACTIONS(6361), - [anon_sym_volatile] = ACTIONS(6361), - [anon_sym_RBRACE] = ACTIONS(6363), - [anon_sym_typedef] = ACTIONS(6361), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_union] = ACTIONS(6361), - [anon_sym_typename] = ACTIONS(6361), - [anon_sym_private] = ACTIONS(6361), - [anon_sym_explicit] = ACTIONS(6361), - [anon_sym_short] = ACTIONS(6361), - [sym_identifier] = ACTIONS(6361), - [sym_operator_name] = ACTIONS(6363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6361), - [anon_sym_register] = ACTIONS(6361), - [anon_sym__Atomic] = ACTIONS(6361), - [anon_sym_const] = ACTIONS(6361), - [anon_sym_extern] = ACTIONS(6361), - [anon_sym_virtual] = ACTIONS(6361), - [anon_sym_enum] = ACTIONS(6361), - [anon_sym_class] = ACTIONS(6361), - [anon_sym_constexpr] = ACTIONS(6361), - [sym_primitive_type] = ACTIONS(6361), - [anon_sym_unsigned] = ACTIONS(6361), - [anon_sym_public] = ACTIONS(6361), - [anon_sym_protected] = ACTIONS(6361), - [anon_sym_friend] = ACTIONS(6361), - [anon_sym_template] = ACTIONS(6361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6363), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6361), - [anon_sym_TILDE] = ACTIONS(6363), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(6361), - [anon_sym_AMP_AMP] = ACTIONS(6363), - [anon_sym_inline] = ACTIONS(6361), - [anon_sym_restrict] = ACTIONS(6361), + [4082] = { + [anon_sym_LPAREN2] = ACTIONS(5925), + [anon_sym_struct] = ACTIONS(5923), + [sym_auto] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(5923), + [anon_sym_mutable] = ACTIONS(5923), + [anon_sym_long] = ACTIONS(5923), + [anon_sym_COLON_COLON] = ACTIONS(5925), + [anon_sym_using] = ACTIONS(5923), + [sym_preproc_directive] = ACTIONS(5923), + [aux_sym_preproc_if_token1] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5923), + [anon_sym_static] = ACTIONS(5923), + [anon_sym_volatile] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5925), + [anon_sym_typedef] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5925), + [anon_sym_union] = ACTIONS(5923), + [anon_sym_typename] = ACTIONS(5923), + [anon_sym_private] = ACTIONS(5923), + [anon_sym_explicit] = ACTIONS(5923), + [anon_sym_short] = ACTIONS(5923), + [sym_identifier] = ACTIONS(5923), + [sym_operator_name] = ACTIONS(5925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5923), + [anon_sym_register] = ACTIONS(5923), + [anon_sym__Atomic] = ACTIONS(5923), + [anon_sym_const] = ACTIONS(5923), + [anon_sym_extern] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_virtual] = ACTIONS(5923), + [anon_sym_enum] = ACTIONS(5923), + [anon_sym_class] = ACTIONS(5923), + [anon_sym_constexpr] = ACTIONS(5923), + [sym_primitive_type] = ACTIONS(5923), + [anon_sym_unsigned] = ACTIONS(5923), + [anon_sym_public] = ACTIONS(5923), + [anon_sym_protected] = ACTIONS(5923), + [anon_sym_friend] = ACTIONS(5923), + [anon_sym_template] = ACTIONS(5923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5923), + [anon_sym_TILDE] = ACTIONS(5925), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_inline] = ACTIONS(5923), + [anon_sym_restrict] = ACTIONS(5923), }, - [4113] = { - [aux_sym_declaration_repeat1] = STATE(2028), + [4083] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(9782), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(9748), }, - [4114] = { - [anon_sym_LPAREN2] = ACTIONS(7904), - [anon_sym_struct] = ACTIONS(7902), - [sym_auto] = ACTIONS(7902), - [anon_sym_signed] = ACTIONS(7902), - [anon_sym_mutable] = ACTIONS(7902), - [anon_sym_long] = ACTIONS(7902), - [anon_sym_COLON_COLON] = ACTIONS(7904), - [anon_sym_using] = ACTIONS(7902), - [sym_preproc_directive] = ACTIONS(7902), - [aux_sym_preproc_if_token1] = ACTIONS(7902), - [anon_sym_AMP] = ACTIONS(7902), - [anon_sym_static] = ACTIONS(7902), - [anon_sym_volatile] = ACTIONS(7902), - [anon_sym_RBRACE] = ACTIONS(7904), - [anon_sym_typedef] = ACTIONS(7902), - [anon_sym_STAR] = ACTIONS(7904), - [anon_sym_union] = ACTIONS(7902), - [anon_sym_typename] = ACTIONS(7902), - [anon_sym_private] = ACTIONS(7902), - [anon_sym_explicit] = ACTIONS(7902), - [anon_sym_short] = ACTIONS(7902), - [sym_identifier] = ACTIONS(7902), - [sym_operator_name] = ACTIONS(7904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7902), - [anon_sym_register] = ACTIONS(7902), - [anon_sym__Atomic] = ACTIONS(7902), - [anon_sym_const] = ACTIONS(7902), - [anon_sym_extern] = ACTIONS(7902), - [anon_sym_virtual] = ACTIONS(7902), - [anon_sym_enum] = ACTIONS(7902), - [anon_sym_class] = ACTIONS(7902), - [anon_sym_constexpr] = ACTIONS(7902), - [sym_primitive_type] = ACTIONS(7902), - [anon_sym_unsigned] = ACTIONS(7902), - [anon_sym_public] = ACTIONS(7902), - [anon_sym_protected] = ACTIONS(7902), - [anon_sym_friend] = ACTIONS(7902), - [anon_sym_template] = ACTIONS(7902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7902), - [anon_sym_TILDE] = ACTIONS(7904), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7902), - [anon_sym_AMP_AMP] = ACTIONS(7904), - [anon_sym_inline] = ACTIONS(7902), - [anon_sym_restrict] = ACTIONS(7902), + [4084] = { + [anon_sym_LPAREN2] = ACTIONS(7885), + [anon_sym_struct] = ACTIONS(7883), + [sym_auto] = ACTIONS(7883), + [anon_sym_signed] = ACTIONS(7883), + [anon_sym_mutable] = ACTIONS(7883), + [anon_sym_long] = ACTIONS(7883), + [anon_sym_COLON_COLON] = ACTIONS(7885), + [anon_sym_using] = ACTIONS(7883), + [sym_preproc_directive] = ACTIONS(7883), + [aux_sym_preproc_if_token1] = ACTIONS(7883), + [anon_sym_AMP] = ACTIONS(7883), + [anon_sym_static] = ACTIONS(7883), + [anon_sym_volatile] = ACTIONS(7883), + [anon_sym_RBRACE] = ACTIONS(7885), + [anon_sym_typedef] = ACTIONS(7883), + [anon_sym_STAR] = ACTIONS(7885), + [anon_sym_union] = ACTIONS(7883), + [anon_sym_typename] = ACTIONS(7883), + [anon_sym_private] = ACTIONS(7883), + [anon_sym_explicit] = ACTIONS(7883), + [anon_sym_short] = ACTIONS(7883), + [sym_identifier] = ACTIONS(7883), + [sym_operator_name] = ACTIONS(7885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7883), + [anon_sym_register] = ACTIONS(7883), + [anon_sym__Atomic] = ACTIONS(7883), + [anon_sym_const] = ACTIONS(7883), + [anon_sym_extern] = ACTIONS(7883), + [anon_sym_LBRACK] = ACTIONS(7883), + [anon_sym_virtual] = ACTIONS(7883), + [anon_sym_enum] = ACTIONS(7883), + [anon_sym_class] = ACTIONS(7883), + [anon_sym_constexpr] = ACTIONS(7883), + [sym_primitive_type] = ACTIONS(7883), + [anon_sym_unsigned] = ACTIONS(7883), + [anon_sym_public] = ACTIONS(7883), + [anon_sym_protected] = ACTIONS(7883), + [anon_sym_friend] = ACTIONS(7883), + [anon_sym_template] = ACTIONS(7883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7885), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7883), + [anon_sym_TILDE] = ACTIONS(7885), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7883), + [anon_sym_AMP_AMP] = ACTIONS(7885), + [anon_sym_inline] = ACTIONS(7883), + [anon_sym_restrict] = ACTIONS(7883), }, - [4115] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4115), - [anon_sym_LPAREN2] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(9784), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(9784), - [sym_noexcept] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(9784), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_COLON] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(9784), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), + [4085] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4085), + [anon_sym_LPAREN2] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_final] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(9750), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(9750), + [sym_noexcept] = ACTIONS(1783), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(9750), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(9750), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), }, - [4116] = { - [sym_parameter_list] = STATE(4118), - [sym_abstract_array_declarator] = STATE(4514), - [sym_abstract_pointer_declarator] = STATE(4514), - [sym_abstract_reference_declarator] = STATE(4514), - [sym_abstract_function_declarator] = STATE(4514), - [sym__abstract_declarator] = STATE(4514), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(8828), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(8830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(8832), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), + [4086] = { + [sym_abstract_reference_declarator] = STATE(4485), + [sym_abstract_array_declarator] = STATE(4485), + [sym_abstract_pointer_declarator] = STATE(4485), + [sym_parameter_list] = STATE(4088), + [sym_abstract_function_declarator] = STATE(4485), + [sym__abstract_declarator] = STATE(4485), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(8792), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(8794), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2835), }, - [4117] = { - [sym_abstract_array_declarator] = STATE(4516), - [sym_parameter_list] = STATE(4118), - [sym_abstract_reference_declarator] = STATE(4516), - [sym_abstract_function_declarator] = STATE(4516), - [aux_sym_type_definition_repeat1] = STATE(4515), - [sym_abstract_pointer_declarator] = STATE(4516), - [sym_type_qualifier] = STATE(4515), - [sym__abstract_declarator] = STATE(4516), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(8828), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(8830), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_AMP_AMP] = ACTIONS(8832), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(2832), + [4087] = { + [sym_abstract_reference_declarator] = STATE(4487), + [aux_sym_type_definition_repeat1] = STATE(4486), + [sym_abstract_array_declarator] = STATE(4487), + [sym_parameter_list] = STATE(4088), + [sym_abstract_function_declarator] = STATE(4487), + [sym_abstract_pointer_declarator] = STATE(4487), + [sym_type_qualifier] = STATE(4486), + [sym__abstract_declarator] = STATE(4487), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(8792), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(8794), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_COLON] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(2837), }, - [4118] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4517), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4517), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(9787), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_COLON] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(2059), + [4088] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4488), + [sym_type_qualifier] = STATE(4488), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(9753), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_COLON] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1740), }, - [4119] = { - [sym_parameter_list] = STATE(4518), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_SEMI] = ACTIONS(8186), - [anon_sym_COLON] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_EQ] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), - [anon_sym_LBRACE] = ACTIONS(8186), + [4089] = { + [sym_parameter_list] = STATE(4489), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_SEMI] = ACTIONS(8038), + [anon_sym_COLON] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_EQ] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), + [anon_sym_LBRACE] = ACTIONS(8038), }, - [4120] = { - [sym_parameter_list] = STATE(3473), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(8846), - [anon_sym_LBRACK] = ACTIONS(5124), + [4090] = { + [sym_bitfield_clause] = STATE(4483), + [sym_initializer_list] = STATE(4483), + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(5213), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(9755), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(9742), + }, + [4091] = { + [sym_parameter_list] = STATE(3447), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(8814), + [anon_sym_LBRACK] = ACTIONS(5215), [sym_comment] = ACTIONS(3), }, - [4121] = { - [sym_virtual_specifier] = STATE(2442), - [aux_sym_function_declarator_repeat1] = STATE(2442), - [sym_trailing_return_type] = STATE(2442), - [sym_type_qualifier] = STATE(2442), - [anon_sym_LPAREN2] = ACTIONS(8866), - [sym_noexcept] = ACTIONS(4979), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [4092] = { + [sym_virtual_specifier] = STATE(2427), + [aux_sym_function_declarator_repeat1] = STATE(2427), + [sym_type_qualifier] = STATE(2427), + [sym_trailing_return_type] = STATE(2427), + [anon_sym_LPAREN2] = ACTIONS(8834), + [sym_noexcept] = ACTIONS(4975), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(8866), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(8834), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(8866), - [anon_sym_DASH_GT] = ACTIONS(2824), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(8834), + [anon_sym_DASH_GT] = ACTIONS(2826), + [anon_sym_restrict] = ACTIONS(1070), }, - [4122] = { - [anon_sym_LPAREN2] = ACTIONS(9789), - [anon_sym_COMMA] = ACTIONS(9789), - [anon_sym_SEMI] = ACTIONS(9789), - [anon_sym_COLON] = ACTIONS(9789), - [anon_sym_LBRACK] = ACTIONS(9789), - [anon_sym_RPAREN] = ACTIONS(9789), - [anon_sym_EQ] = ACTIONS(9789), - [anon_sym_LBRACE] = ACTIONS(9789), + [4093] = { + [anon_sym_LPAREN2] = ACTIONS(9757), + [anon_sym_COMMA] = ACTIONS(9757), + [anon_sym_SEMI] = ACTIONS(9757), + [anon_sym_COLON] = ACTIONS(9757), + [anon_sym_LBRACK] = ACTIONS(9757), + [anon_sym_RPAREN] = ACTIONS(9757), + [anon_sym_EQ] = ACTIONS(9757), + [anon_sym_LBRACE] = ACTIONS(9757), [sym_comment] = ACTIONS(3), }, - [4123] = { - [sym_template_type] = STATE(754), + [4094] = { + [sym_template_function] = STATE(755), [sym__expression] = STATE(755), [sym_logical_expression] = STATE(755), [sym_bitwise_expression] = STATE(755), [sym_cast_expression] = STATE(755), - [sym_new_expression] = STATE(755), + [sym_delete_expression] = STATE(755), [sym_field_expression] = STATE(755), [sym_compound_literal_expression] = STATE(755), + [sym_lambda_expression] = STATE(755), [sym_char_literal] = STATE(755), - [sym_template_function] = STATE(755), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), [sym_conditional_expression] = STATE(755), [sym_equality_expression] = STATE(755), [sym_relational_expression] = STATE(755), - [sym_delete_expression] = STATE(755), [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_scoped_namespace_identifier] = STATE(760), [sym_parenthesized_expression] = STATE(755), - [sym_lambda_expression] = STATE(755), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), [sym_concatenated_string] = STATE(755), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(755), + [sym_template_type] = STATE(761), [sym_assignment_expression] = STATE(755), [sym_pointer_expression] = STATE(755), [sym_shift_expression] = STATE(755), [sym_math_expression] = STATE(755), [sym_call_expression] = STATE(755), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_RBRACK] = ACTIONS(9791), + [sym_new_expression] = STATE(755), + [sym_raw_string_literal] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(9759), }, - [4124] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(9791), + [4095] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9759), }, - [4125] = { - [sym_union_specifier] = STATE(1673), - [sym_macro_type_specifier] = STATE(1673), - [sym_class_specifier] = STATE(1673), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1673), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(1673), - [aux_sym_sized_type_specifier_repeat1] = STATE(4126), - [sym_struct_specifier] = STATE(1673), - [sym_enum_specifier] = STATE(1673), - [sym_scoped_type_identifier] = STATE(1989), - [sym_dependent_type] = STATE(1673), - [anon_sym_unsigned] = ACTIONS(8860), - [anon_sym_struct] = ACTIONS(3914), - [sym_auto] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(8860), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(8860), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(8864), + [4096] = { + [sym_union_specifier] = STATE(1671), + [sym_macro_type_specifier] = STATE(1671), + [sym_class_specifier] = STATE(1671), + [aux_sym_sized_type_specifier_repeat1] = STATE(4097), + [sym_sized_type_specifier] = STATE(1671), + [sym__type_specifier] = STATE(1671), + [sym_scoped_type_identifier] = STATE(2005), + [sym_enum_specifier] = STATE(1671), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(1671), + [sym_struct_specifier] = STATE(1671), + [anon_sym_unsigned] = ACTIONS(8828), + [anon_sym_struct] = ACTIONS(3992), + [sym_auto] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(8828), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(8828), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(8832), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(8860), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(3920), - [sym_primitive_type] = ACTIONS(3306), + [anon_sym_short] = ACTIONS(8828), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3316), }, - [4126] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4520), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(9793), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [sym_identifier] = ACTIONS(3328), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_long] = ACTIONS(9793), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(9793), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_short] = ACTIONS(9793), + [4097] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4492), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(9761), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [sym_identifier] = ACTIONS(3333), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_long] = ACTIONS(9761), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(3335), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(9761), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(554), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_short] = ACTIONS(9761), }, - [4127] = { - [sym_parameter_list] = STATE(4523), - [sym_abstract_array_declarator] = STATE(4524), - [sym_abstract_pointer_declarator] = STATE(4524), - [sym_abstract_reference_declarator] = STATE(4524), - [sym_abstract_function_declarator] = STATE(4524), - [sym__abstract_declarator] = STATE(4524), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym_COMMA] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9795), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(9797), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_SEMI] = ACTIONS(6210), - [anon_sym_COLON] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(9799), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_restrict] = ACTIONS(6210), - [anon_sym_LBRACE] = ACTIONS(6210), + [4098] = { + [sym_abstract_reference_declarator] = STATE(4496), + [sym_abstract_array_declarator] = STATE(4496), + [sym_abstract_pointer_declarator] = STATE(4496), + [sym_parameter_list] = STATE(4495), + [sym_abstract_function_declarator] = STATE(4496), + [sym__abstract_declarator] = STATE(4496), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym_COMMA] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9763), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(9765), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_SEMI] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(9767), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_EQ] = ACTIONS(6085), + [anon_sym_restrict] = ACTIONS(6085), + [anon_sym_LBRACE] = ACTIONS(6085), }, - [4128] = { - [sym_virtual_specifier] = STATE(4128), - [aux_sym_function_declarator_repeat1] = STATE(4128), - [sym_trailing_return_type] = STATE(4128), - [sym_type_qualifier] = STATE(4128), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(9801), - [anon_sym_mutable] = ACTIONS(6228), - [anon_sym_COMMA] = ACTIONS(6220), - [anon_sym__Atomic] = ACTIONS(6228), - [anon_sym_const] = ACTIONS(6231), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6228), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_SEMI] = ACTIONS(6220), - [anon_sym_COLON] = ACTIONS(6220), - [anon_sym_explicit] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(9804), - [anon_sym_EQ] = ACTIONS(6220), - [anon_sym_restrict] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(6220), + [4099] = { + [sym_virtual_specifier] = STATE(4099), + [aux_sym_function_declarator_repeat1] = STATE(4099), + [sym_type_qualifier] = STATE(4099), + [sym_trailing_return_type] = STATE(4099), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(9769), + [anon_sym_mutable] = ACTIONS(6294), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym__Atomic] = ACTIONS(6294), + [anon_sym_const] = ACTIONS(6297), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(6294), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6294), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_SEMI] = ACTIONS(6286), + [anon_sym_COLON] = ACTIONS(6286), + [anon_sym_explicit] = ACTIONS(6294), + [anon_sym_DASH_GT] = ACTIONS(9772), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_restrict] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6286), }, - [4129] = { - [sym_bitfield_clause] = STATE(4512), - [aux_sym_field_declaration_repeat1] = STATE(3485), - [sym_initializer_list] = STATE(4512), - [anon_sym_COLON] = ACTIONS(5122), + [4100] = { + [sym_parameter_list] = STATE(3472), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(9807), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(9776), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(7263), }, - [4130] = { - [sym_parameter_list] = STATE(3499), - [anon_sym_LPAREN2] = ACTIONS(587), + [4101] = { + [sym_parameter_list] = STATE(3472), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(7275), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(7256), }, - [4131] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(4132), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(8877), + [4102] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(4103), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(8841), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(8877), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(8841), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(8877), + [anon_sym_long] = ACTIONS(8841), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(8881), + [anon_sym_typename] = ACTIONS(8845), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(8877), + [anon_sym_short] = ACTIONS(8841), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [4132] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4526), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(9809), - [anon_sym_signed] = ACTIONS(9809), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_long] = ACTIONS(9809), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_short] = ACTIONS(9809), - [sym_identifier] = ACTIONS(1074), - [sym_primitive_type] = ACTIONS(627), + [4103] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4497), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(9775), + [anon_sym_signed] = ACTIONS(9775), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_long] = ACTIONS(9775), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_short] = ACTIONS(9775), + [sym_identifier] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(560), }, - [4133] = { - [sym_parameter_list] = STATE(2535), - [sym_abstract_array_declarator] = STATE(4527), - [sym_abstract_pointer_declarator] = STATE(4527), - [sym_abstract_reference_declarator] = STATE(4527), - [sym_abstract_function_declarator] = STATE(4527), - [sym__abstract_declarator] = STATE(4527), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SEMI] = ACTIONS(6210), + [4104] = { + [sym_abstract_reference_declarator] = STATE(4498), + [sym_abstract_array_declarator] = STATE(4498), + [sym_abstract_pointer_declarator] = STATE(4498), + [sym_parameter_list] = STATE(2523), + [sym_abstract_function_declarator] = STATE(4498), + [sym__abstract_declarator] = STATE(4498), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(5256), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(6085), }, - [4134] = { - [sym_type_qualifier] = STATE(4134), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4134), - [anon_sym_LPAREN2] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(9811), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(6399), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), - [anon_sym_constexpr] = ACTIONS(6404), + [4105] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4105), + [sym_type_qualifier] = STATE(4105), + [anon_sym_LPAREN2] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(9777), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_SEMI] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), + [anon_sym_constexpr] = ACTIONS(6092), [sym_comment] = ACTIONS(3), }, - [4135] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4134), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4134), - [anon_sym_LPAREN2] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(8883), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(6395), + [4106] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4105), + [sym_type_qualifier] = STATE(4105), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(8847), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(6098), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7473), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [4136] = { - [sym_parameter_list] = STATE(3499), - [anon_sym_LPAREN2] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7457), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(7282), }, - [4137] = { - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7297), - [anon_sym_RPAREN] = ACTIONS(7297), - [anon_sym_STAR_EQ] = ACTIONS(7297), - [anon_sym_LT_LT_EQ] = ACTIONS(7297), - [anon_sym_PERCENT_EQ] = ACTIONS(7297), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7297), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_CARET_EQ] = ACTIONS(7297), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7297), - [anon_sym_STAR] = ACTIONS(7299), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_RBRACE] = ACTIONS(7297), - [anon_sym_COLON] = ACTIONS(7297), - [anon_sym_SLASH_EQ] = ACTIONS(7297), - [anon_sym_PLUS_EQ] = ACTIONS(7297), - [anon_sym_CARET] = ACTIONS(7299), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_PIPE_EQ] = ACTIONS(7297), - [anon_sym_GT_GT_EQ] = ACTIONS(7297), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7297), - [anon_sym_LT_LT] = ACTIONS(7299), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_PERCENT] = ACTIONS(7299), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_DASH_EQ] = ACTIONS(7297), - [anon_sym_SEMI] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_AMP_EQ] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_GT_GT] = ACTIONS(7299), + [4107] = { + [anon_sym_LPAREN2] = ACTIONS(7278), + [anon_sym_DASH] = ACTIONS(7280), + [anon_sym_DASH_DASH] = ACTIONS(7278), + [anon_sym_DASH_GT] = ACTIONS(7278), + [anon_sym_RPAREN] = ACTIONS(7278), + [anon_sym_STAR_EQ] = ACTIONS(7278), + [anon_sym_LT_LT_EQ] = ACTIONS(7278), + [anon_sym_PERCENT_EQ] = ACTIONS(7278), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7278), + [anon_sym_EQ_EQ] = ACTIONS(7278), + [anon_sym_PIPE] = ACTIONS(7280), + [anon_sym_LT] = ACTIONS(7280), + [anon_sym_CARET_EQ] = ACTIONS(7278), + [anon_sym_AMP] = ACTIONS(7280), + [anon_sym_PLUS] = ACTIONS(7280), + [anon_sym_GT_EQ] = ACTIONS(7278), + [anon_sym_STAR] = ACTIONS(7280), + [anon_sym_SLASH] = ACTIONS(7280), + [anon_sym_RBRACE] = ACTIONS(7278), + [anon_sym_COLON] = ACTIONS(7278), + [anon_sym_SLASH_EQ] = ACTIONS(7278), + [anon_sym_PLUS_EQ] = ACTIONS(7278), + [anon_sym_CARET] = ACTIONS(7280), + [anon_sym_GT] = ACTIONS(7280), + [anon_sym_PIPE_EQ] = ACTIONS(7278), + [anon_sym_GT_GT_EQ] = ACTIONS(7278), + [anon_sym_COMMA] = ACTIONS(7278), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_DOT] = ACTIONS(7278), + [anon_sym_LT_LT] = ACTIONS(7280), + [anon_sym_LBRACK] = ACTIONS(7278), + [anon_sym_PERCENT] = ACTIONS(7280), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7278), + [anon_sym_DASH_EQ] = ACTIONS(7278), + [anon_sym_SEMI] = ACTIONS(7278), + [anon_sym_BANG_EQ] = ACTIONS(7278), + [anon_sym_AMP_EQ] = ACTIONS(7278), + [anon_sym_AMP_AMP] = ACTIONS(7278), + [anon_sym_LT_EQ] = ACTIONS(7278), + [anon_sym_EQ] = ACTIONS(7280), + [anon_sym_PLUS_PLUS] = ACTIONS(7278), + [anon_sym_LBRACE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7280), }, - [4138] = { - [anon_sym_LPAREN2] = ACTIONS(7465), - [anon_sym_DASH] = ACTIONS(7467), - [anon_sym_DASH_DASH] = ACTIONS(7465), - [anon_sym_DASH_GT] = ACTIONS(7465), - [anon_sym_RPAREN] = ACTIONS(7465), - [anon_sym_STAR_EQ] = ACTIONS(7465), - [anon_sym_LT_LT_EQ] = ACTIONS(7465), - [anon_sym_PERCENT_EQ] = ACTIONS(7465), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7465), - [anon_sym_EQ_EQ] = ACTIONS(7465), - [anon_sym_PIPE] = ACTIONS(7467), - [anon_sym_LT] = ACTIONS(7467), - [anon_sym_CARET_EQ] = ACTIONS(7465), - [anon_sym_AMP] = ACTIONS(7467), - [anon_sym_PLUS] = ACTIONS(7467), - [anon_sym_GT_EQ] = ACTIONS(7465), - [anon_sym_STAR] = ACTIONS(7467), - [anon_sym_SLASH] = ACTIONS(7467), - [anon_sym_RBRACE] = ACTIONS(7465), - [anon_sym_COLON] = ACTIONS(7465), - [anon_sym_SLASH_EQ] = ACTIONS(7465), - [anon_sym_PLUS_EQ] = ACTIONS(7465), - [anon_sym_CARET] = ACTIONS(7467), - [anon_sym_GT] = ACTIONS(7467), - [anon_sym_PIPE_EQ] = ACTIONS(7465), - [anon_sym_GT_GT_EQ] = ACTIONS(7465), - [anon_sym_COMMA] = ACTIONS(7465), - [anon_sym_PIPE_PIPE] = ACTIONS(7465), - [anon_sym_DOT] = ACTIONS(7465), - [anon_sym_LT_LT] = ACTIONS(7467), - [anon_sym_LBRACK] = ACTIONS(7465), - [anon_sym_PERCENT] = ACTIONS(7467), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7465), - [anon_sym_DASH_EQ] = ACTIONS(7465), - [anon_sym_SEMI] = ACTIONS(7465), - [anon_sym_BANG_EQ] = ACTIONS(7465), - [anon_sym_AMP_EQ] = ACTIONS(7465), - [anon_sym_AMP_AMP] = ACTIONS(7465), - [anon_sym_LT_EQ] = ACTIONS(7465), - [anon_sym_EQ] = ACTIONS(7467), - [anon_sym_PLUS_PLUS] = ACTIONS(7465), - [anon_sym_LBRACE] = ACTIONS(7465), - [anon_sym_GT_GT] = ACTIONS(7467), + [4108] = { + [anon_sym_LPAREN2] = ACTIONS(7446), + [anon_sym_DASH] = ACTIONS(7448), + [anon_sym_DASH_DASH] = ACTIONS(7446), + [anon_sym_DASH_GT] = ACTIONS(7446), + [anon_sym_RPAREN] = ACTIONS(7446), + [anon_sym_STAR_EQ] = ACTIONS(7446), + [anon_sym_LT_LT_EQ] = ACTIONS(7446), + [anon_sym_PERCENT_EQ] = ACTIONS(7446), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7446), + [anon_sym_EQ_EQ] = ACTIONS(7446), + [anon_sym_PIPE] = ACTIONS(7448), + [anon_sym_LT] = ACTIONS(7448), + [anon_sym_CARET_EQ] = ACTIONS(7446), + [anon_sym_AMP] = ACTIONS(7448), + [anon_sym_PLUS] = ACTIONS(7448), + [anon_sym_GT_EQ] = ACTIONS(7446), + [anon_sym_STAR] = ACTIONS(7448), + [anon_sym_SLASH] = ACTIONS(7448), + [anon_sym_RBRACE] = ACTIONS(7446), + [anon_sym_COLON] = ACTIONS(7446), + [anon_sym_SLASH_EQ] = ACTIONS(7446), + [anon_sym_PLUS_EQ] = ACTIONS(7446), + [anon_sym_CARET] = ACTIONS(7448), + [anon_sym_GT] = ACTIONS(7448), + [anon_sym_PIPE_EQ] = ACTIONS(7446), + [anon_sym_GT_GT_EQ] = ACTIONS(7446), + [anon_sym_COMMA] = ACTIONS(7446), + [anon_sym_PIPE_PIPE] = ACTIONS(7446), + [anon_sym_DOT] = ACTIONS(7446), + [anon_sym_LT_LT] = ACTIONS(7448), + [anon_sym_LBRACK] = ACTIONS(7446), + [anon_sym_PERCENT] = ACTIONS(7448), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7446), + [anon_sym_DASH_EQ] = ACTIONS(7446), + [anon_sym_SEMI] = ACTIONS(7446), + [anon_sym_BANG_EQ] = ACTIONS(7446), + [anon_sym_AMP_EQ] = ACTIONS(7446), + [anon_sym_AMP_AMP] = ACTIONS(7446), + [anon_sym_LT_EQ] = ACTIONS(7446), + [anon_sym_EQ] = ACTIONS(7448), + [anon_sym_PLUS_PLUS] = ACTIONS(7446), + [anon_sym_LBRACE] = ACTIONS(7446), + [anon_sym_GT_GT] = ACTIONS(7448), }, - [4139] = { - [anon_sym_LPAREN2] = ACTIONS(7530), - [anon_sym_DASH] = ACTIONS(7532), - [anon_sym_DASH_DASH] = ACTIONS(7530), - [anon_sym_DASH_GT] = ACTIONS(7530), - [anon_sym_RPAREN] = ACTIONS(7530), - [anon_sym_STAR_EQ] = ACTIONS(7530), - [anon_sym_LT_LT_EQ] = ACTIONS(7530), - [anon_sym_PERCENT_EQ] = ACTIONS(7530), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7530), - [anon_sym_EQ_EQ] = ACTIONS(7530), - [anon_sym_PIPE] = ACTIONS(7532), - [anon_sym_LT] = ACTIONS(7532), - [anon_sym_CARET_EQ] = ACTIONS(7530), - [anon_sym_AMP] = ACTIONS(7532), - [anon_sym_PLUS] = ACTIONS(7532), - [anon_sym_GT_EQ] = ACTIONS(7530), - [anon_sym_STAR] = ACTIONS(7532), - [anon_sym_SLASH] = ACTIONS(7532), - [anon_sym_RBRACE] = ACTIONS(7530), - [anon_sym_COLON] = ACTIONS(7530), - [anon_sym_SLASH_EQ] = ACTIONS(7530), - [anon_sym_PLUS_EQ] = ACTIONS(7530), - [anon_sym_CARET] = ACTIONS(7532), - [anon_sym_GT] = ACTIONS(7532), - [anon_sym_PIPE_EQ] = ACTIONS(7530), - [anon_sym_GT_GT_EQ] = ACTIONS(7530), - [anon_sym_COMMA] = ACTIONS(7530), - [anon_sym_PIPE_PIPE] = ACTIONS(7530), - [anon_sym_DOT] = ACTIONS(7530), - [anon_sym_LT_LT] = ACTIONS(7532), - [anon_sym_LBRACK] = ACTIONS(7530), - [anon_sym_PERCENT] = ACTIONS(7532), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7530), - [anon_sym_DASH_EQ] = ACTIONS(7530), - [anon_sym_SEMI] = ACTIONS(7530), - [anon_sym_BANG_EQ] = ACTIONS(7530), - [anon_sym_AMP_EQ] = ACTIONS(7530), - [anon_sym_AMP_AMP] = ACTIONS(7530), - [anon_sym_LT_EQ] = ACTIONS(7530), - [anon_sym_EQ] = ACTIONS(7532), - [anon_sym_PLUS_PLUS] = ACTIONS(7530), - [anon_sym_LBRACE] = ACTIONS(7530), - [anon_sym_GT_GT] = ACTIONS(7532), + [4109] = { + [anon_sym_LPAREN2] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_DASH_DASH] = ACTIONS(7511), + [anon_sym_DASH_GT] = ACTIONS(7511), + [anon_sym_RPAREN] = ACTIONS(7511), + [anon_sym_STAR_EQ] = ACTIONS(7511), + [anon_sym_LT_LT_EQ] = ACTIONS(7511), + [anon_sym_PERCENT_EQ] = ACTIONS(7511), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7511), + [anon_sym_PIPE] = ACTIONS(7513), + [anon_sym_LT] = ACTIONS(7513), + [anon_sym_CARET_EQ] = ACTIONS(7511), + [anon_sym_AMP] = ACTIONS(7513), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_GT_EQ] = ACTIONS(7511), + [anon_sym_STAR] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_RBRACE] = ACTIONS(7511), + [anon_sym_COLON] = ACTIONS(7511), + [anon_sym_SLASH_EQ] = ACTIONS(7511), + [anon_sym_PLUS_EQ] = ACTIONS(7511), + [anon_sym_CARET] = ACTIONS(7513), + [anon_sym_GT] = ACTIONS(7513), + [anon_sym_PIPE_EQ] = ACTIONS(7511), + [anon_sym_GT_GT_EQ] = ACTIONS(7511), + [anon_sym_COMMA] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7511), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7511), + [anon_sym_PERCENT] = ACTIONS(7513), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7511), + [anon_sym_DASH_EQ] = ACTIONS(7511), + [anon_sym_SEMI] = ACTIONS(7511), + [anon_sym_BANG_EQ] = ACTIONS(7511), + [anon_sym_AMP_EQ] = ACTIONS(7511), + [anon_sym_AMP_AMP] = ACTIONS(7511), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_EQ] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7511), + [anon_sym_LBRACE] = ACTIONS(7511), + [anon_sym_GT_GT] = ACTIONS(7513), }, - [4140] = { - [anon_sym_LPAREN2] = ACTIONS(7534), - [anon_sym_DASH] = ACTIONS(7536), - [anon_sym_DASH_DASH] = ACTIONS(7534), - [anon_sym_DASH_GT] = ACTIONS(7534), - [anon_sym_RPAREN] = ACTIONS(7534), - [anon_sym_STAR_EQ] = ACTIONS(7534), - [anon_sym_LT_LT_EQ] = ACTIONS(7534), - [anon_sym_PERCENT_EQ] = ACTIONS(7534), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7534), - [anon_sym_EQ_EQ] = ACTIONS(7534), - [anon_sym_PIPE] = ACTIONS(7536), - [anon_sym_LT] = ACTIONS(7536), - [anon_sym_CARET_EQ] = ACTIONS(7534), - [anon_sym_AMP] = ACTIONS(7536), - [anon_sym_PLUS] = ACTIONS(7536), - [anon_sym_GT_EQ] = ACTIONS(7534), - [anon_sym_STAR] = ACTIONS(7536), - [anon_sym_SLASH] = ACTIONS(7536), - [anon_sym_RBRACE] = ACTIONS(7534), - [anon_sym_COLON] = ACTIONS(7534), - [anon_sym_SLASH_EQ] = ACTIONS(7534), - [anon_sym_PLUS_EQ] = ACTIONS(7534), - [anon_sym_CARET] = ACTIONS(7536), - [anon_sym_GT] = ACTIONS(7536), - [anon_sym_PIPE_EQ] = ACTIONS(7534), - [anon_sym_GT_GT_EQ] = ACTIONS(7534), - [anon_sym_COMMA] = ACTIONS(7534), - [anon_sym_PIPE_PIPE] = ACTIONS(7534), - [anon_sym_DOT] = ACTIONS(7534), - [anon_sym_LT_LT] = ACTIONS(7536), - [anon_sym_LBRACK] = ACTIONS(7534), - [anon_sym_PERCENT] = ACTIONS(7536), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7534), - [anon_sym_DASH_EQ] = ACTIONS(7534), - [anon_sym_SEMI] = ACTIONS(7534), - [anon_sym_BANG_EQ] = ACTIONS(7534), - [anon_sym_AMP_EQ] = ACTIONS(7534), - [anon_sym_AMP_AMP] = ACTIONS(7534), - [anon_sym_LT_EQ] = ACTIONS(7534), - [anon_sym_EQ] = ACTIONS(7536), - [anon_sym_PLUS_PLUS] = ACTIONS(7534), - [anon_sym_LBRACE] = ACTIONS(7534), - [anon_sym_GT_GT] = ACTIONS(7536), + [4110] = { + [anon_sym_LPAREN2] = ACTIONS(7515), + [anon_sym_DASH] = ACTIONS(7517), + [anon_sym_DASH_DASH] = ACTIONS(7515), + [anon_sym_DASH_GT] = ACTIONS(7515), + [anon_sym_RPAREN] = ACTIONS(7515), + [anon_sym_STAR_EQ] = ACTIONS(7515), + [anon_sym_LT_LT_EQ] = ACTIONS(7515), + [anon_sym_PERCENT_EQ] = ACTIONS(7515), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7515), + [anon_sym_PIPE] = ACTIONS(7517), + [anon_sym_LT] = ACTIONS(7517), + [anon_sym_CARET_EQ] = ACTIONS(7515), + [anon_sym_AMP] = ACTIONS(7517), + [anon_sym_PLUS] = ACTIONS(7517), + [anon_sym_GT_EQ] = ACTIONS(7515), + [anon_sym_STAR] = ACTIONS(7517), + [anon_sym_SLASH] = ACTIONS(7517), + [anon_sym_RBRACE] = ACTIONS(7515), + [anon_sym_COLON] = ACTIONS(7515), + [anon_sym_SLASH_EQ] = ACTIONS(7515), + [anon_sym_PLUS_EQ] = ACTIONS(7515), + [anon_sym_CARET] = ACTIONS(7517), + [anon_sym_GT] = ACTIONS(7517), + [anon_sym_PIPE_EQ] = ACTIONS(7515), + [anon_sym_GT_GT_EQ] = ACTIONS(7515), + [anon_sym_COMMA] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7515), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7517), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7515), + [anon_sym_DASH_EQ] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(7515), + [anon_sym_BANG_EQ] = ACTIONS(7515), + [anon_sym_AMP_EQ] = ACTIONS(7515), + [anon_sym_AMP_AMP] = ACTIONS(7515), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_EQ] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7515), + [anon_sym_LBRACE] = ACTIONS(7515), + [anon_sym_GT_GT] = ACTIONS(7517), }, - [4141] = { - [anon_sym_LPAREN2] = ACTIONS(7154), - [anon_sym_DASH] = ACTIONS(7156), - [anon_sym_DASH_DASH] = ACTIONS(7154), - [anon_sym_DASH_GT] = ACTIONS(7154), - [anon_sym_RPAREN] = ACTIONS(7154), - [anon_sym_STAR_EQ] = ACTIONS(7154), - [anon_sym_LT_LT_EQ] = ACTIONS(7154), - [anon_sym_PERCENT_EQ] = ACTIONS(7154), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7154), - [anon_sym_EQ_EQ] = ACTIONS(7154), - [anon_sym_PIPE] = ACTIONS(7156), - [anon_sym_LT] = ACTIONS(7156), - [anon_sym_CARET_EQ] = ACTIONS(7154), - [anon_sym_AMP] = ACTIONS(7156), - [anon_sym_PLUS] = ACTIONS(7156), - [anon_sym_GT_EQ] = ACTIONS(7154), - [anon_sym_STAR] = ACTIONS(7156), - [anon_sym_SLASH] = ACTIONS(7156), - [anon_sym_RBRACE] = ACTIONS(7154), - [anon_sym_COLON] = ACTIONS(7154), - [anon_sym_SLASH_EQ] = ACTIONS(7154), - [anon_sym_PLUS_EQ] = ACTIONS(7154), - [anon_sym_CARET] = ACTIONS(7156), - [anon_sym_GT] = ACTIONS(7156), - [anon_sym_PIPE_EQ] = ACTIONS(7154), - [anon_sym_GT_GT_EQ] = ACTIONS(7154), - [anon_sym_COMMA] = ACTIONS(7154), - [anon_sym_PIPE_PIPE] = ACTIONS(7154), - [anon_sym_DOT] = ACTIONS(7154), - [anon_sym_LT_LT] = ACTIONS(7156), - [anon_sym_LBRACK] = ACTIONS(7154), - [anon_sym_PERCENT] = ACTIONS(7156), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7154), - [anon_sym_DASH_EQ] = ACTIONS(7154), - [anon_sym_SEMI] = ACTIONS(7154), - [anon_sym_BANG_EQ] = ACTIONS(7154), - [anon_sym_AMP_EQ] = ACTIONS(7154), - [anon_sym_AMP_AMP] = ACTIONS(7154), - [anon_sym_LT_EQ] = ACTIONS(7154), - [anon_sym_EQ] = ACTIONS(7156), - [anon_sym_PLUS_PLUS] = ACTIONS(7154), - [anon_sym_LBRACE] = ACTIONS(7154), - [anon_sym_GT_GT] = ACTIONS(7156), + [4111] = { + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7137), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [anon_sym_RPAREN] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7135), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7137), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_AMP] = ACTIONS(7137), + [anon_sym_PLUS] = ACTIONS(7137), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_STAR] = ACTIONS(7137), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_RBRACE] = ACTIONS(7135), + [anon_sym_COLON] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_CARET] = ACTIONS(7137), + [anon_sym_GT] = ACTIONS(7137), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7135), + [anon_sym_LT_LT] = ACTIONS(7137), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_PERCENT] = ACTIONS(7137), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7137), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_GT_GT] = ACTIONS(7137), }, - [4142] = { - [sym_enumerator] = STATE(2379), + [4112] = { + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(9814), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(9780), }, - [4143] = { - [anon_sym_LPAREN2] = ACTIONS(7659), - [anon_sym_DASH] = ACTIONS(7661), - [anon_sym_DASH_DASH] = ACTIONS(7659), - [anon_sym_DASH_GT] = ACTIONS(7659), - [anon_sym_RPAREN] = ACTIONS(7659), - [anon_sym_STAR_EQ] = ACTIONS(7659), - [anon_sym_LT_LT_EQ] = ACTIONS(7659), - [anon_sym_PERCENT_EQ] = ACTIONS(7659), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7659), - [anon_sym_PIPE] = ACTIONS(7661), - [anon_sym_LT] = ACTIONS(7661), - [anon_sym_CARET_EQ] = ACTIONS(7659), - [anon_sym_AMP] = ACTIONS(7661), - [anon_sym_PLUS] = ACTIONS(7661), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7661), - [anon_sym_SLASH] = ACTIONS(7661), - [anon_sym_RBRACE] = ACTIONS(7659), - [anon_sym_COLON] = ACTIONS(7659), - [anon_sym_SLASH_EQ] = ACTIONS(7659), - [anon_sym_PLUS_EQ] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7661), - [anon_sym_GT] = ACTIONS(7661), - [anon_sym_PIPE_EQ] = ACTIONS(7659), - [anon_sym_GT_GT_EQ] = ACTIONS(7659), - [anon_sym_COMMA] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7659), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7661), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7659), - [anon_sym_DASH_EQ] = ACTIONS(7659), - [anon_sym_SEMI] = ACTIONS(7659), - [anon_sym_BANG_EQ] = ACTIONS(7659), - [anon_sym_AMP_EQ] = ACTIONS(7659), - [anon_sym_AMP_AMP] = ACTIONS(7659), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_EQ] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7659), - [anon_sym_LBRACE] = ACTIONS(7659), - [anon_sym_GT_GT] = ACTIONS(7661), + [4113] = { + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7640), + [anon_sym_RPAREN] = ACTIONS(7640), + [anon_sym_STAR_EQ] = ACTIONS(7640), + [anon_sym_LT_LT_EQ] = ACTIONS(7640), + [anon_sym_PERCENT_EQ] = ACTIONS(7640), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7640), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_CARET_EQ] = ACTIONS(7640), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7640), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_RBRACE] = ACTIONS(7640), + [anon_sym_COLON] = ACTIONS(7640), + [anon_sym_SLASH_EQ] = ACTIONS(7640), + [anon_sym_PLUS_EQ] = ACTIONS(7640), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_PIPE_EQ] = ACTIONS(7640), + [anon_sym_GT_GT_EQ] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_LT_LT] = ACTIONS(7642), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_PERCENT] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_DASH_EQ] = ACTIONS(7640), + [anon_sym_SEMI] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_AMP_EQ] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_GT_GT] = ACTIONS(7642), }, - [4144] = { - [anon_sym_LPAREN2] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7665), - [anon_sym_DASH_DASH] = ACTIONS(7663), - [anon_sym_DASH_GT] = ACTIONS(7663), - [anon_sym_RPAREN] = ACTIONS(7663), - [anon_sym_STAR_EQ] = ACTIONS(7663), - [anon_sym_LT_LT_EQ] = ACTIONS(7663), - [anon_sym_PERCENT_EQ] = ACTIONS(7663), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7663), - [anon_sym_PIPE] = ACTIONS(7665), - [anon_sym_LT] = ACTIONS(7665), - [anon_sym_CARET_EQ] = ACTIONS(7663), - [anon_sym_AMP] = ACTIONS(7665), - [anon_sym_PLUS] = ACTIONS(7665), - [anon_sym_GT_EQ] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7665), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_RBRACE] = ACTIONS(7663), - [anon_sym_COLON] = ACTIONS(7663), - [anon_sym_SLASH_EQ] = ACTIONS(7663), - [anon_sym_PLUS_EQ] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7665), - [anon_sym_PIPE_EQ] = ACTIONS(7663), - [anon_sym_GT_GT_EQ] = ACTIONS(7663), - [anon_sym_COMMA] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7663), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7665), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7663), - [anon_sym_DASH_EQ] = ACTIONS(7663), - [anon_sym_SEMI] = ACTIONS(7663), - [anon_sym_BANG_EQ] = ACTIONS(7663), - [anon_sym_AMP_EQ] = ACTIONS(7663), - [anon_sym_AMP_AMP] = ACTIONS(7663), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_EQ] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7663), - [anon_sym_LBRACE] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7665), + [4114] = { + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7644), + [anon_sym_RPAREN] = ACTIONS(7644), + [anon_sym_STAR_EQ] = ACTIONS(7644), + [anon_sym_LT_LT_EQ] = ACTIONS(7644), + [anon_sym_PERCENT_EQ] = ACTIONS(7644), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7644), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_CARET_EQ] = ACTIONS(7644), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7644), + [anon_sym_STAR] = ACTIONS(7646), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_RBRACE] = ACTIONS(7644), + [anon_sym_COLON] = ACTIONS(7644), + [anon_sym_SLASH_EQ] = ACTIONS(7644), + [anon_sym_PLUS_EQ] = ACTIONS(7644), + [anon_sym_CARET] = ACTIONS(7646), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_PIPE_EQ] = ACTIONS(7644), + [anon_sym_GT_GT_EQ] = ACTIONS(7644), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7644), + [anon_sym_LT_LT] = ACTIONS(7646), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_PERCENT] = ACTIONS(7646), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_DASH_EQ] = ACTIONS(7644), + [anon_sym_SEMI] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_AMP_EQ] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_GT_GT] = ACTIONS(7646), }, - [4145] = { - [anon_sym_LPAREN2] = ACTIONS(8904), - [anon_sym_DASH] = ACTIONS(8906), - [anon_sym_DASH_DASH] = ACTIONS(8904), - [anon_sym_DASH_GT] = ACTIONS(8904), - [anon_sym_RPAREN] = ACTIONS(8904), - [anon_sym_STAR_EQ] = ACTIONS(8904), - [anon_sym_LT_LT_EQ] = ACTIONS(8904), - [anon_sym_PERCENT_EQ] = ACTIONS(8904), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8904), - [anon_sym_EQ_EQ] = ACTIONS(8904), - [anon_sym_PIPE] = ACTIONS(8906), - [anon_sym_LT] = ACTIONS(8906), - [anon_sym_CARET_EQ] = ACTIONS(8904), - [anon_sym_AMP] = ACTIONS(8906), - [anon_sym_PLUS] = ACTIONS(8906), - [anon_sym_GT_EQ] = ACTIONS(8904), - [anon_sym_STAR] = ACTIONS(8906), - [anon_sym_SLASH] = ACTIONS(8906), - [anon_sym_RBRACE] = ACTIONS(8904), - [anon_sym_COLON] = ACTIONS(8904), - [anon_sym_SLASH_EQ] = ACTIONS(8904), - [anon_sym_PLUS_EQ] = ACTIONS(8904), - [anon_sym_CARET] = ACTIONS(8906), - [anon_sym_GT] = ACTIONS(8906), - [anon_sym_PIPE_EQ] = ACTIONS(8904), - [anon_sym_GT_GT_EQ] = ACTIONS(8904), - [anon_sym_COMMA] = ACTIONS(8904), - [anon_sym_PIPE_PIPE] = ACTIONS(8904), - [anon_sym_DOT] = ACTIONS(8904), - [anon_sym_LT_LT] = ACTIONS(8906), - [anon_sym_LBRACK] = ACTIONS(8904), - [anon_sym_PERCENT] = ACTIONS(8906), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8904), - [anon_sym_DASH_EQ] = ACTIONS(8904), - [anon_sym_SEMI] = ACTIONS(8904), - [anon_sym_BANG_EQ] = ACTIONS(8904), - [anon_sym_AMP_EQ] = ACTIONS(8904), - [anon_sym_AMP_AMP] = ACTIONS(8904), - [anon_sym_LT_EQ] = ACTIONS(8904), - [anon_sym_EQ] = ACTIONS(8906), - [anon_sym_PLUS_PLUS] = ACTIONS(8904), - [anon_sym_LBRACE] = ACTIONS(8904), - [anon_sym_GT_GT] = ACTIONS(8906), + [4115] = { + [anon_sym_LPAREN2] = ACTIONS(8868), + [anon_sym_DASH] = ACTIONS(8870), + [anon_sym_DASH_DASH] = ACTIONS(8868), + [anon_sym_DASH_GT] = ACTIONS(8868), + [anon_sym_RPAREN] = ACTIONS(8868), + [anon_sym_STAR_EQ] = ACTIONS(8868), + [anon_sym_LT_LT_EQ] = ACTIONS(8868), + [anon_sym_PERCENT_EQ] = ACTIONS(8868), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8868), + [anon_sym_EQ_EQ] = ACTIONS(8868), + [anon_sym_PIPE] = ACTIONS(8870), + [anon_sym_LT] = ACTIONS(8870), + [anon_sym_CARET_EQ] = ACTIONS(8868), + [anon_sym_AMP] = ACTIONS(8870), + [anon_sym_PLUS] = ACTIONS(8870), + [anon_sym_GT_EQ] = ACTIONS(8868), + [anon_sym_STAR] = ACTIONS(8870), + [anon_sym_SLASH] = ACTIONS(8870), + [anon_sym_RBRACE] = ACTIONS(8868), + [anon_sym_COLON] = ACTIONS(8868), + [anon_sym_SLASH_EQ] = ACTIONS(8868), + [anon_sym_PLUS_EQ] = ACTIONS(8868), + [anon_sym_CARET] = ACTIONS(8870), + [anon_sym_GT] = ACTIONS(8870), + [anon_sym_PIPE_EQ] = ACTIONS(8868), + [anon_sym_GT_GT_EQ] = ACTIONS(8868), + [anon_sym_COMMA] = ACTIONS(8868), + [anon_sym_PIPE_PIPE] = ACTIONS(8868), + [anon_sym_DOT] = ACTIONS(8868), + [anon_sym_LT_LT] = ACTIONS(8870), + [anon_sym_LBRACK] = ACTIONS(8868), + [anon_sym_PERCENT] = ACTIONS(8870), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8868), + [anon_sym_DASH_EQ] = ACTIONS(8868), + [anon_sym_SEMI] = ACTIONS(8868), + [anon_sym_BANG_EQ] = ACTIONS(8868), + [anon_sym_AMP_EQ] = ACTIONS(8868), + [anon_sym_AMP_AMP] = ACTIONS(8868), + [anon_sym_LT_EQ] = ACTIONS(8868), + [anon_sym_EQ] = ACTIONS(8870), + [anon_sym_PLUS_PLUS] = ACTIONS(8868), + [anon_sym_LBRACE] = ACTIONS(8868), + [anon_sym_GT_GT] = ACTIONS(8870), }, - [4146] = { - [anon_sym_LPAREN2] = ACTIONS(8503), - [anon_sym_DASH] = ACTIONS(8505), - [anon_sym_DASH_GT] = ACTIONS(8503), - [anon_sym_RPAREN] = ACTIONS(8503), - [anon_sym_STAR_EQ] = ACTIONS(8503), - [anon_sym_LT_LT_EQ] = ACTIONS(8503), - [anon_sym_PERCENT_EQ] = ACTIONS(8503), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8503), - [anon_sym_EQ_EQ] = ACTIONS(8503), - [anon_sym_PIPE] = ACTIONS(8505), - [anon_sym_LT] = ACTIONS(8505), - [anon_sym_CARET_EQ] = ACTIONS(8503), - [anon_sym_AMP] = ACTIONS(8505), - [anon_sym_PLUS] = ACTIONS(8505), - [anon_sym_GT_EQ] = ACTIONS(8503), - [anon_sym_STAR] = ACTIONS(8505), - [anon_sym_SLASH] = ACTIONS(8505), - [anon_sym_RBRACE] = ACTIONS(8503), - [anon_sym_COLON] = ACTIONS(8503), - [anon_sym_SLASH_EQ] = ACTIONS(8503), - [anon_sym_PLUS_EQ] = ACTIONS(8503), - [anon_sym_CARET] = ACTIONS(8505), - [anon_sym_GT] = ACTIONS(8505), - [anon_sym_PIPE_EQ] = ACTIONS(8503), - [anon_sym_GT_GT_EQ] = ACTIONS(8503), - [anon_sym_COMMA] = ACTIONS(8503), - [anon_sym_PIPE_PIPE] = ACTIONS(8503), - [anon_sym_DOT] = ACTIONS(8503), - [anon_sym_LT_LT] = ACTIONS(8505), - [anon_sym_LBRACK] = ACTIONS(8503), - [anon_sym_PERCENT] = ACTIONS(8505), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8503), - [anon_sym_DASH_EQ] = ACTIONS(8503), - [anon_sym_SEMI] = ACTIONS(8503), - [anon_sym_BANG_EQ] = ACTIONS(8503), - [anon_sym_AMP_EQ] = ACTIONS(8503), - [anon_sym_AMP_AMP] = ACTIONS(8503), - [anon_sym_LT_EQ] = ACTIONS(8503), - [anon_sym_EQ] = ACTIONS(8505), - [anon_sym_PLUS_PLUS] = ACTIONS(8503), - [anon_sym_GT_GT] = ACTIONS(8505), - [anon_sym_DASH_DASH] = ACTIONS(8503), + [4116] = { + [anon_sym_LPAREN2] = ACTIONS(8475), + [anon_sym_DASH] = ACTIONS(8477), + [anon_sym_DASH_GT] = ACTIONS(8475), + [anon_sym_RPAREN] = ACTIONS(8475), + [anon_sym_STAR_EQ] = ACTIONS(8475), + [anon_sym_LT_LT_EQ] = ACTIONS(8475), + [anon_sym_PERCENT_EQ] = ACTIONS(8475), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8475), + [anon_sym_EQ_EQ] = ACTIONS(8475), + [anon_sym_PIPE] = ACTIONS(8477), + [anon_sym_LT] = ACTIONS(8477), + [anon_sym_CARET_EQ] = ACTIONS(8475), + [anon_sym_AMP] = ACTIONS(8477), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_GT_EQ] = ACTIONS(8475), + [anon_sym_STAR] = ACTIONS(8477), + [anon_sym_SLASH] = ACTIONS(8477), + [anon_sym_RBRACE] = ACTIONS(8475), + [anon_sym_COLON] = ACTIONS(8475), + [anon_sym_SLASH_EQ] = ACTIONS(8475), + [anon_sym_PLUS_EQ] = ACTIONS(8475), + [anon_sym_CARET] = ACTIONS(8477), + [anon_sym_GT] = ACTIONS(8477), + [anon_sym_PIPE_EQ] = ACTIONS(8475), + [anon_sym_GT_GT_EQ] = ACTIONS(8475), + [anon_sym_COMMA] = ACTIONS(8475), + [anon_sym_PIPE_PIPE] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_LT_LT] = ACTIONS(8477), + [anon_sym_LBRACK] = ACTIONS(8475), + [anon_sym_PERCENT] = ACTIONS(8477), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8475), + [anon_sym_DASH_EQ] = ACTIONS(8475), + [anon_sym_SEMI] = ACTIONS(8475), + [anon_sym_BANG_EQ] = ACTIONS(8475), + [anon_sym_AMP_EQ] = ACTIONS(8475), + [anon_sym_AMP_AMP] = ACTIONS(8475), + [anon_sym_LT_EQ] = ACTIONS(8475), + [anon_sym_EQ] = ACTIONS(8477), + [anon_sym_PLUS_PLUS] = ACTIONS(8475), + [anon_sym_GT_GT] = ACTIONS(8477), + [anon_sym_DASH_DASH] = ACTIONS(8475), }, - [4147] = { - [sym_parameter_list] = STATE(4151), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [anon_sym_volatile] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), - [anon_sym_constexpr] = ACTIONS(4989), + [4117] = { + [sym_parameter_list] = STATE(4121), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [anon_sym_volatile] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), + [anon_sym_constexpr] = ACTIONS(4985), [sym_comment] = ACTIONS(3), }, - [4148] = { - [sym_abstract_array_declarator] = STATE(4530), - [sym_parameter_list] = STATE(3528), - [sym_abstract_reference_declarator] = STATE(4530), - [sym_abstract_function_declarator] = STATE(4530), - [aux_sym_type_definition_repeat1] = STATE(4529), - [sym_abstract_pointer_declarator] = STATE(4530), - [sym_type_qualifier] = STATE(4529), - [sym__abstract_declarator] = STATE(4530), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [4118] = { + [sym_abstract_reference_declarator] = STATE(4501), + [aux_sym_type_definition_repeat1] = STATE(4500), + [sym_abstract_array_declarator] = STATE(4501), + [sym_parameter_list] = STATE(3500), + [sym_abstract_function_declarator] = STATE(4501), + [sym_abstract_pointer_declarator] = STATE(4501), + [sym_type_qualifier] = STATE(4500), + [sym__abstract_declarator] = STATE(4501), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7516), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(7518), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(7520), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7497), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(7499), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(1070), }, - [4149] = { - [sym_parameter_list] = STATE(4151), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [anon_sym_volatile] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), - [anon_sym_constexpr] = ACTIONS(4991), + [4119] = { + [sym_parameter_list] = STATE(4121), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [anon_sym_volatile] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), + [anon_sym_constexpr] = ACTIONS(4987), [sym_comment] = ACTIONS(3), }, - [4150] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4531), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4531), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(1062), - [sym_noexcept] = ACTIONS(9816), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4120] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4502), + [sym_type_qualifier] = STATE(4502), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [anon_sym_volatile] = ACTIONS(1070), + [sym_noexcept] = ACTIONS(9782), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [4151] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4532), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4532), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(1062), - [sym_noexcept] = ACTIONS(9818), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4121] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4503), + [sym_type_qualifier] = STATE(4503), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [anon_sym_volatile] = ACTIONS(1070), + [sym_noexcept] = ACTIONS(9784), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [4152] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(4845), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4122] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4153] = { - [anon_sym_DASH] = ACTIONS(9820), - [sym_raw_string_literal] = ACTIONS(9822), - [anon_sym_else] = ACTIONS(9820), - [sym_true] = ACTIONS(9820), - [anon_sym_mutable] = ACTIONS(9820), - [sym_null] = ACTIONS(9820), - [anon_sym_break] = ACTIONS(9820), - [anon_sym_BANG] = ACTIONS(9822), - [anon_sym_sizeof] = ACTIONS(9820), - [anon_sym_volatile] = ACTIONS(9820), - [anon_sym_PLUS] = ACTIONS(9820), - [anon_sym_typedef] = ACTIONS(9820), - [anon_sym_switch] = ACTIONS(9820), - [anon_sym_explicit] = ACTIONS(9820), - [sym_identifier] = ACTIONS(9820), - [anon_sym_delete] = ACTIONS(9820), - [anon_sym_continue] = ACTIONS(9820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9820), - [anon_sym__Atomic] = ACTIONS(9820), - [sym_number_literal] = ACTIONS(9822), - [anon_sym_extern] = ACTIONS(9820), - [anon_sym_enum] = ACTIONS(9820), - [anon_sym_constexpr] = ACTIONS(9820), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9822), - [anon_sym_namespace] = ACTIONS(9820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9820), - [anon_sym_SQUOTE] = ACTIONS(9822), - [anon_sym_LBRACE] = ACTIONS(9822), - [anon_sym_DASH_DASH] = ACTIONS(9822), - [anon_sym_LPAREN2] = ACTIONS(9822), - [anon_sym_struct] = ACTIONS(9820), - [sym_auto] = ACTIONS(9820), - [anon_sym_signed] = ACTIONS(9820), - [anon_sym_long] = ACTIONS(9820), - [anon_sym_COLON_COLON] = ACTIONS(9822), - [anon_sym_using] = ACTIONS(9820), - [sym_preproc_directive] = ACTIONS(9820), - [aux_sym_preproc_if_token1] = ACTIONS(9820), - [anon_sym_AMP] = ACTIONS(9820), - [anon_sym_static] = ACTIONS(9820), - [anon_sym_RBRACE] = ACTIONS(9822), - [anon_sym_STAR] = ACTIONS(9822), - [anon_sym_union] = ACTIONS(9820), - [anon_sym_typename] = ACTIONS(9820), - [anon_sym_short] = ACTIONS(9820), - [anon_sym_new] = ACTIONS(9820), - [anon_sym_goto] = ACTIONS(9820), - [sym_operator_name] = ACTIONS(9822), - [anon_sym_while] = ACTIONS(9820), - [anon_sym_try] = ACTIONS(9820), - [anon_sym_for] = ACTIONS(9820), - [aux_sym_preproc_include_token1] = ACTIONS(9820), - [anon_sym_register] = ACTIONS(9820), - [anon_sym_DQUOTE] = ACTIONS(9822), - [anon_sym_const] = ACTIONS(9820), - [anon_sym_LBRACK] = ACTIONS(9820), - [anon_sym_class] = ACTIONS(9820), - [anon_sym_if] = ACTIONS(9820), - [sym_primitive_type] = ACTIONS(9820), - [sym_false] = ACTIONS(9820), - [sym_nullptr] = ACTIONS(9820), - [anon_sym_do] = ACTIONS(9820), - [anon_sym_template] = ACTIONS(9820), - [anon_sym_return] = ACTIONS(9820), - [anon_sym_TILDE] = ACTIONS(9822), - [anon_sym_SEMI] = ACTIONS(9822), - [ts_builtin_sym_end] = ACTIONS(9822), - [aux_sym_preproc_def_token1] = ACTIONS(9820), - [anon_sym_AMP_AMP] = ACTIONS(9822), - [anon_sym_inline] = ACTIONS(9820), - [anon_sym_PLUS_PLUS] = ACTIONS(9822), - [anon_sym_restrict] = ACTIONS(9820), + [4123] = { + [anon_sym_DASH] = ACTIONS(9786), + [sym_raw_string_literal] = ACTIONS(9788), + [anon_sym_else] = ACTIONS(9786), + [sym_true] = ACTIONS(9786), + [anon_sym_mutable] = ACTIONS(9786), + [sym_null] = ACTIONS(9786), + [anon_sym_break] = ACTIONS(9786), + [anon_sym_BANG] = ACTIONS(9788), + [anon_sym_sizeof] = ACTIONS(9786), + [anon_sym_volatile] = ACTIONS(9786), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_typedef] = ACTIONS(9786), + [anon_sym_switch] = ACTIONS(9786), + [anon_sym_explicit] = ACTIONS(9786), + [sym_identifier] = ACTIONS(9786), + [anon_sym_delete] = ACTIONS(9786), + [anon_sym_continue] = ACTIONS(9786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9786), + [anon_sym__Atomic] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9788), + [anon_sym_extern] = ACTIONS(9786), + [anon_sym_enum] = ACTIONS(9786), + [anon_sym_constexpr] = ACTIONS(9786), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9788), + [anon_sym_namespace] = ACTIONS(9786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9786), + [anon_sym_SQUOTE] = ACTIONS(9788), + [anon_sym_LBRACE] = ACTIONS(9788), + [anon_sym_DASH_DASH] = ACTIONS(9788), + [anon_sym_LPAREN2] = ACTIONS(9788), + [anon_sym_struct] = ACTIONS(9786), + [sym_auto] = ACTIONS(9786), + [anon_sym_signed] = ACTIONS(9786), + [anon_sym_long] = ACTIONS(9786), + [anon_sym_COLON_COLON] = ACTIONS(9788), + [anon_sym_using] = ACTIONS(9786), + [sym_preproc_directive] = ACTIONS(9786), + [aux_sym_preproc_if_token1] = ACTIONS(9786), + [anon_sym_AMP] = ACTIONS(9786), + [anon_sym_static] = ACTIONS(9786), + [anon_sym_RBRACE] = ACTIONS(9788), + [anon_sym_STAR] = ACTIONS(9788), + [anon_sym_union] = ACTIONS(9786), + [anon_sym_typename] = ACTIONS(9786), + [anon_sym_short] = ACTIONS(9786), + [anon_sym_new] = ACTIONS(9786), + [anon_sym_goto] = ACTIONS(9786), + [sym_operator_name] = ACTIONS(9788), + [anon_sym_while] = ACTIONS(9786), + [anon_sym_try] = ACTIONS(9786), + [anon_sym_for] = ACTIONS(9786), + [aux_sym_preproc_include_token1] = ACTIONS(9786), + [anon_sym_register] = ACTIONS(9786), + [anon_sym_DQUOTE] = ACTIONS(9788), + [anon_sym_const] = ACTIONS(9786), + [anon_sym_LBRACK] = ACTIONS(9786), + [anon_sym_class] = ACTIONS(9786), + [anon_sym_if] = ACTIONS(9786), + [sym_primitive_type] = ACTIONS(9786), + [sym_false] = ACTIONS(9786), + [sym_nullptr] = ACTIONS(9786), + [anon_sym_do] = ACTIONS(9786), + [anon_sym_template] = ACTIONS(9786), + [anon_sym_return] = ACTIONS(9786), + [anon_sym_TILDE] = ACTIONS(9788), + [anon_sym_SEMI] = ACTIONS(9788), + [ts_builtin_sym_end] = ACTIONS(9788), + [aux_sym_preproc_def_token1] = ACTIONS(9786), + [anon_sym_AMP_AMP] = ACTIONS(9788), + [anon_sym_inline] = ACTIONS(9786), + [anon_sym_PLUS_PLUS] = ACTIONS(9788), + [anon_sym_restrict] = ACTIONS(9786), }, - [4154] = { - [sym_do_statement] = STATE(4533), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4124] = { + [sym_do_statement] = STATE(4504), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4533), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4533), - [sym_if_statement] = STATE(4533), - [sym_switch_statement] = STATE(4533), - [sym_for_statement] = STATE(4533), - [sym_return_statement] = STATE(4533), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4504), + [sym_try_statement] = STATE(4504), + [sym_if_statement] = STATE(4504), + [sym_switch_statement] = STATE(4504), + [sym_for_statement] = STATE(4504), + [sym_return_statement] = STATE(4504), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4533), - [sym_break_statement] = STATE(4533), - [sym_continue_statement] = STATE(4533), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4504), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4533), - [sym_labeled_statement] = STATE(4533), - [sym_expression_statement] = STATE(4533), - [sym_while_statement] = STATE(4533), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4504), + [sym_for_range_loop] = STATE(4504), + [sym_compound_statement] = STATE(4504), + [sym_labeled_statement] = STATE(4504), + [sym_expression_statement] = STATE(4504), + [sym_while_statement] = STATE(4504), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -169117,7 +168472,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -169141,2074 +168496,2074 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4155] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(9824), - [anon_sym_RPAREN] = ACTIONS(4845), + [4125] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(9790), + [anon_sym_RPAREN] = ACTIONS(4841), [sym_comment] = ACTIONS(3), }, - [4156] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(9827), + [4126] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(9793), [sym_comment] = ACTIONS(3), }, - [4157] = { - [aux_sym_for_statement_repeat1] = STATE(4535), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9827), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4127] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4506), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(9793), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4158] = { - [anon_sym_LPAREN2] = ACTIONS(8309), - [anon_sym_DASH] = ACTIONS(8307), - [sym_raw_string_literal] = ACTIONS(8309), - [sym_true] = ACTIONS(8307), - [sym_null] = ACTIONS(8307), - [anon_sym_DQUOTE] = ACTIONS(8309), - [sym_number_literal] = ACTIONS(8309), - [anon_sym_COLON_COLON] = ACTIONS(8309), - [anon_sym_LBRACK] = ACTIONS(8309), - [anon_sym_BANG] = ACTIONS(8309), - [anon_sym_AMP] = ACTIONS(8309), - [anon_sym_sizeof] = ACTIONS(8307), - [sym_false] = ACTIONS(8307), - [anon_sym_PLUS] = ACTIONS(8307), - [sym_nullptr] = ACTIONS(8307), - [anon_sym_STAR] = ACTIONS(8309), - [anon_sym_TILDE] = ACTIONS(8309), - [anon_sym_SEMI] = ACTIONS(8309), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(8307), - [anon_sym_new] = ACTIONS(8307), - [anon_sym_PLUS_PLUS] = ACTIONS(8309), - [anon_sym_SQUOTE] = ACTIONS(8309), - [anon_sym_delete] = ACTIONS(8307), - [anon_sym_DASH_DASH] = ACTIONS(8309), + [4128] = { + [anon_sym_LPAREN2] = ACTIONS(7889), + [anon_sym_DASH] = ACTIONS(7887), + [sym_raw_string_literal] = ACTIONS(7889), + [sym_true] = ACTIONS(7887), + [sym_null] = ACTIONS(7887), + [anon_sym_DQUOTE] = ACTIONS(7889), + [sym_number_literal] = ACTIONS(7889), + [anon_sym_COLON_COLON] = ACTIONS(7889), + [anon_sym_LBRACK] = ACTIONS(7889), + [anon_sym_BANG] = ACTIONS(7889), + [anon_sym_AMP] = ACTIONS(7889), + [anon_sym_sizeof] = ACTIONS(7887), + [sym_false] = ACTIONS(7887), + [anon_sym_PLUS] = ACTIONS(7887), + [sym_nullptr] = ACTIONS(7887), + [anon_sym_STAR] = ACTIONS(7889), + [anon_sym_TILDE] = ACTIONS(7889), + [anon_sym_SEMI] = ACTIONS(7889), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(7887), + [anon_sym_new] = ACTIONS(7887), + [anon_sym_PLUS_PLUS] = ACTIONS(7889), + [anon_sym_SQUOTE] = ACTIONS(7889), + [anon_sym_delete] = ACTIONS(7887), + [anon_sym_DASH_DASH] = ACTIONS(7889), }, - [4159] = { - [anon_sym_DASH] = ACTIONS(9829), - [sym_raw_string_literal] = ACTIONS(9831), - [anon_sym_else] = ACTIONS(9829), - [sym_true] = ACTIONS(9829), - [anon_sym_mutable] = ACTIONS(9829), - [sym_null] = ACTIONS(9829), - [anon_sym_break] = ACTIONS(9829), - [anon_sym_BANG] = ACTIONS(9831), - [anon_sym_sizeof] = ACTIONS(9829), - [anon_sym_volatile] = ACTIONS(9829), - [anon_sym_PLUS] = ACTIONS(9829), - [anon_sym_typedef] = ACTIONS(9829), - [anon_sym_switch] = ACTIONS(9829), - [anon_sym_explicit] = ACTIONS(9829), - [sym_identifier] = ACTIONS(9829), - [anon_sym_delete] = ACTIONS(9829), - [anon_sym_continue] = ACTIONS(9829), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9829), - [anon_sym__Atomic] = ACTIONS(9829), - [sym_number_literal] = ACTIONS(9831), - [anon_sym_extern] = ACTIONS(9829), - [anon_sym_enum] = ACTIONS(9829), - [anon_sym_constexpr] = ACTIONS(9829), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9831), - [anon_sym_namespace] = ACTIONS(9829), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9829), - [anon_sym_SQUOTE] = ACTIONS(9831), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_DASH_DASH] = ACTIONS(9831), - [anon_sym_LPAREN2] = ACTIONS(9831), - [anon_sym_struct] = ACTIONS(9829), - [sym_auto] = ACTIONS(9829), - [anon_sym_signed] = ACTIONS(9829), - [anon_sym_long] = ACTIONS(9829), - [anon_sym_COLON_COLON] = ACTIONS(9831), - [anon_sym_using] = ACTIONS(9829), - [sym_preproc_directive] = ACTIONS(9829), - [aux_sym_preproc_if_token1] = ACTIONS(9829), - [anon_sym_AMP] = ACTIONS(9829), - [anon_sym_static] = ACTIONS(9829), - [anon_sym_RBRACE] = ACTIONS(9831), - [anon_sym_STAR] = ACTIONS(9831), - [anon_sym_union] = ACTIONS(9829), - [anon_sym_typename] = ACTIONS(9829), - [anon_sym_short] = ACTIONS(9829), - [anon_sym_new] = ACTIONS(9829), - [anon_sym_goto] = ACTIONS(9829), - [sym_operator_name] = ACTIONS(9831), - [anon_sym_while] = ACTIONS(9829), - [anon_sym_try] = ACTIONS(9829), - [anon_sym_for] = ACTIONS(9829), - [aux_sym_preproc_include_token1] = ACTIONS(9829), - [anon_sym_register] = ACTIONS(9829), - [anon_sym_DQUOTE] = ACTIONS(9831), - [anon_sym_const] = ACTIONS(9829), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_class] = ACTIONS(9829), - [anon_sym_if] = ACTIONS(9829), - [sym_primitive_type] = ACTIONS(9829), - [sym_false] = ACTIONS(9829), - [sym_nullptr] = ACTIONS(9829), - [anon_sym_do] = ACTIONS(9829), - [anon_sym_template] = ACTIONS(9829), - [anon_sym_return] = ACTIONS(9829), - [anon_sym_TILDE] = ACTIONS(9831), - [anon_sym_SEMI] = ACTIONS(9831), - [ts_builtin_sym_end] = ACTIONS(9831), - [aux_sym_preproc_def_token1] = ACTIONS(9829), - [anon_sym_AMP_AMP] = ACTIONS(9831), - [anon_sym_inline] = ACTIONS(9829), - [anon_sym_PLUS_PLUS] = ACTIONS(9831), - [anon_sym_restrict] = ACTIONS(9829), + [4129] = { + [anon_sym_DASH] = ACTIONS(9795), + [sym_raw_string_literal] = ACTIONS(9797), + [anon_sym_else] = ACTIONS(9795), + [sym_true] = ACTIONS(9795), + [anon_sym_mutable] = ACTIONS(9795), + [sym_null] = ACTIONS(9795), + [anon_sym_break] = ACTIONS(9795), + [anon_sym_BANG] = ACTIONS(9797), + [anon_sym_sizeof] = ACTIONS(9795), + [anon_sym_volatile] = ACTIONS(9795), + [anon_sym_PLUS] = ACTIONS(9795), + [anon_sym_typedef] = ACTIONS(9795), + [anon_sym_switch] = ACTIONS(9795), + [anon_sym_explicit] = ACTIONS(9795), + [sym_identifier] = ACTIONS(9795), + [anon_sym_delete] = ACTIONS(9795), + [anon_sym_continue] = ACTIONS(9795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9795), + [anon_sym__Atomic] = ACTIONS(9795), + [sym_number_literal] = ACTIONS(9797), + [anon_sym_extern] = ACTIONS(9795), + [anon_sym_enum] = ACTIONS(9795), + [anon_sym_constexpr] = ACTIONS(9795), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9797), + [anon_sym_namespace] = ACTIONS(9795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9795), + [anon_sym_SQUOTE] = ACTIONS(9797), + [anon_sym_LBRACE] = ACTIONS(9797), + [anon_sym_DASH_DASH] = ACTIONS(9797), + [anon_sym_LPAREN2] = ACTIONS(9797), + [anon_sym_struct] = ACTIONS(9795), + [sym_auto] = ACTIONS(9795), + [anon_sym_signed] = ACTIONS(9795), + [anon_sym_long] = ACTIONS(9795), + [anon_sym_COLON_COLON] = ACTIONS(9797), + [anon_sym_using] = ACTIONS(9795), + [sym_preproc_directive] = ACTIONS(9795), + [aux_sym_preproc_if_token1] = ACTIONS(9795), + [anon_sym_AMP] = ACTIONS(9795), + [anon_sym_static] = ACTIONS(9795), + [anon_sym_RBRACE] = ACTIONS(9797), + [anon_sym_STAR] = ACTIONS(9797), + [anon_sym_union] = ACTIONS(9795), + [anon_sym_typename] = ACTIONS(9795), + [anon_sym_short] = ACTIONS(9795), + [anon_sym_new] = ACTIONS(9795), + [anon_sym_goto] = ACTIONS(9795), + [sym_operator_name] = ACTIONS(9797), + [anon_sym_while] = ACTIONS(9795), + [anon_sym_try] = ACTIONS(9795), + [anon_sym_for] = ACTIONS(9795), + [aux_sym_preproc_include_token1] = ACTIONS(9795), + [anon_sym_register] = ACTIONS(9795), + [anon_sym_DQUOTE] = ACTIONS(9797), + [anon_sym_const] = ACTIONS(9795), + [anon_sym_LBRACK] = ACTIONS(9795), + [anon_sym_class] = ACTIONS(9795), + [anon_sym_if] = ACTIONS(9795), + [sym_primitive_type] = ACTIONS(9795), + [sym_false] = ACTIONS(9795), + [sym_nullptr] = ACTIONS(9795), + [anon_sym_do] = ACTIONS(9795), + [anon_sym_template] = ACTIONS(9795), + [anon_sym_return] = ACTIONS(9795), + [anon_sym_TILDE] = ACTIONS(9797), + [anon_sym_SEMI] = ACTIONS(9797), + [ts_builtin_sym_end] = ACTIONS(9797), + [aux_sym_preproc_def_token1] = ACTIONS(9795), + [anon_sym_AMP_AMP] = ACTIONS(9797), + [anon_sym_inline] = ACTIONS(9795), + [anon_sym_PLUS_PLUS] = ACTIONS(9797), + [anon_sym_restrict] = ACTIONS(9795), }, - [4160] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(5490), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(7469), + [4130] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(5485), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(5487), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(5489), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(7450), }, - [4161] = { - [anon_sym_LPAREN2] = ACTIONS(6805), - [anon_sym_GT_GT] = ACTIONS(6807), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_DASH_DASH] = ACTIONS(6805), - [anon_sym_final] = ACTIONS(6805), - [anon_sym_STAR_EQ] = ACTIONS(6805), - [anon_sym_LT_LT_EQ] = ACTIONS(6805), - [anon_sym_PERCENT_EQ] = ACTIONS(6805), - [anon_sym_COLON_COLON] = ACTIONS(6805), - [anon_sym_EQ_EQ] = ACTIONS(6805), - [anon_sym_PIPE] = ACTIONS(6807), - [anon_sym_LT] = ACTIONS(6807), - [anon_sym_CARET_EQ] = ACTIONS(6805), - [anon_sym_AMP] = ACTIONS(6807), - [anon_sym_PLUS] = ACTIONS(6807), - [anon_sym_GT_EQ] = ACTIONS(6805), - [anon_sym_STAR] = ACTIONS(6807), - [anon_sym_SLASH] = ACTIONS(6807), - [anon_sym_override] = ACTIONS(6805), - [anon_sym_COLON] = ACTIONS(6807), - [anon_sym_SLASH_EQ] = ACTIONS(6805), - [anon_sym_PLUS_EQ] = ACTIONS(6805), - [anon_sym_CARET] = ACTIONS(6807), - [anon_sym_GT] = ACTIONS(6807), - [anon_sym_PIPE_EQ] = ACTIONS(6805), - [anon_sym_GT_GT_EQ] = ACTIONS(6805), - [anon_sym_COMMA] = ACTIONS(6805), - [anon_sym_PIPE_PIPE] = ACTIONS(6805), - [anon_sym_DOT] = ACTIONS(6805), - [anon_sym_LT_LT] = ACTIONS(6807), - [anon_sym_LBRACK] = ACTIONS(6805), - [anon_sym_PERCENT] = ACTIONS(6807), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6805), - [anon_sym_DASH_EQ] = ACTIONS(6805), - [anon_sym_LT_EQ] = ACTIONS(6805), - [anon_sym_BANG_EQ] = ACTIONS(6805), - [anon_sym_AMP_EQ] = ACTIONS(6805), - [anon_sym_AMP_AMP] = ACTIONS(6805), - [anon_sym_DASH_GT] = ACTIONS(6805), - [anon_sym_EQ] = ACTIONS(6807), - [anon_sym_PLUS_PLUS] = ACTIONS(6805), - [anon_sym_LBRACE] = ACTIONS(6805), - [anon_sym_RBRACK] = ACTIONS(6805), + [4131] = { + [anon_sym_LPAREN2] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6796), + [anon_sym_DASH] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6794), + [anon_sym_final] = ACTIONS(6794), + [anon_sym_STAR_EQ] = ACTIONS(6794), + [anon_sym_LT_LT_EQ] = ACTIONS(6794), + [anon_sym_PERCENT_EQ] = ACTIONS(6794), + [anon_sym_COLON_COLON] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6794), + [anon_sym_PIPE] = ACTIONS(6796), + [anon_sym_LT] = ACTIONS(6796), + [anon_sym_CARET_EQ] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6796), + [anon_sym_PLUS] = ACTIONS(6796), + [anon_sym_GT_EQ] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6796), + [anon_sym_SLASH] = ACTIONS(6796), + [anon_sym_override] = ACTIONS(6794), + [anon_sym_COLON] = ACTIONS(6796), + [anon_sym_SLASH_EQ] = ACTIONS(6794), + [anon_sym_PLUS_EQ] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6796), + [anon_sym_PIPE_EQ] = ACTIONS(6794), + [anon_sym_GT_GT_EQ] = ACTIONS(6794), + [anon_sym_COMMA] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6794), + [anon_sym_DASH_EQ] = ACTIONS(6794), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_BANG_EQ] = ACTIONS(6794), + [anon_sym_AMP_EQ] = ACTIONS(6794), + [anon_sym_AMP_AMP] = ACTIONS(6794), + [anon_sym_DASH_GT] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6794), + [anon_sym_LBRACE] = ACTIONS(6794), + [anon_sym_RBRACK] = ACTIONS(6794), }, - [4162] = { - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_final] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_COLON_COLON] = ACTIONS(6812), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6812), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6812), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_PERCENT] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_RBRACK] = ACTIONS(6812), + [4132] = { + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6801), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_PERCENT] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_RBRACK] = ACTIONS(6801), }, - [4163] = { - [anon_sym_LPAREN2] = ACTIONS(6926), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_DASH_DASH] = ACTIONS(6926), - [anon_sym_STAR_EQ] = ACTIONS(6926), - [anon_sym_LT_LT_EQ] = ACTIONS(6926), - [anon_sym_PERCENT_EQ] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_PIPE] = ACTIONS(6928), - [anon_sym_LT] = ACTIONS(6928), - [anon_sym_CARET_EQ] = ACTIONS(6926), - [anon_sym_AMP] = ACTIONS(6928), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_GT_EQ] = ACTIONS(6926), - [anon_sym_STAR] = ACTIONS(6928), - [anon_sym_SLASH] = ACTIONS(6928), - [anon_sym_SLASH_EQ] = ACTIONS(6926), - [anon_sym_PLUS_EQ] = ACTIONS(6926), - [anon_sym_CARET] = ACTIONS(6928), - [anon_sym_GT] = ACTIONS(6928), - [anon_sym_PIPE_EQ] = ACTIONS(6926), - [anon_sym_GT_GT_EQ] = ACTIONS(6926), - [anon_sym_COMMA] = ACTIONS(6926), - [anon_sym_PIPE_PIPE] = ACTIONS(6926), - [anon_sym_DOT] = ACTIONS(6926), - [anon_sym_LT_LT] = ACTIONS(6928), - [anon_sym_LBRACK] = ACTIONS(6926), - [anon_sym_PERCENT] = ACTIONS(6928), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6926), - [anon_sym_DASH_EQ] = ACTIONS(6926), - [anon_sym_LT_EQ] = ACTIONS(6926), - [anon_sym_BANG_EQ] = ACTIONS(6926), - [anon_sym_AMP_EQ] = ACTIONS(6926), - [anon_sym_AMP_AMP] = ACTIONS(6926), - [anon_sym_DASH_GT] = ACTIONS(6926), - [anon_sym_EQ] = ACTIONS(6928), - [anon_sym_PLUS_PLUS] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6928), - [anon_sym_RBRACK] = ACTIONS(6926), + [4133] = { + [anon_sym_LPAREN2] = ACTIONS(6915), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6915), + [anon_sym_STAR_EQ] = ACTIONS(6915), + [anon_sym_LT_LT_EQ] = ACTIONS(6915), + [anon_sym_PERCENT_EQ] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(6915), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_CARET_EQ] = ACTIONS(6915), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6915), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_SLASH_EQ] = ACTIONS(6915), + [anon_sym_PLUS_EQ] = ACTIONS(6915), + [anon_sym_CARET] = ACTIONS(6917), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_PIPE_EQ] = ACTIONS(6915), + [anon_sym_GT_GT_EQ] = ACTIONS(6915), + [anon_sym_COMMA] = ACTIONS(6915), + [anon_sym_PIPE_PIPE] = ACTIONS(6915), + [anon_sym_DOT] = ACTIONS(6915), + [anon_sym_LT_LT] = ACTIONS(6917), + [anon_sym_LBRACK] = ACTIONS(6915), + [anon_sym_PERCENT] = ACTIONS(6917), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6915), + [anon_sym_DASH_EQ] = ACTIONS(6915), + [anon_sym_LT_EQ] = ACTIONS(6915), + [anon_sym_BANG_EQ] = ACTIONS(6915), + [anon_sym_AMP_EQ] = ACTIONS(6915), + [anon_sym_AMP_AMP] = ACTIONS(6915), + [anon_sym_DASH_GT] = ACTIONS(6915), + [anon_sym_EQ] = ACTIONS(6917), + [anon_sym_PLUS_PLUS] = ACTIONS(6915), + [anon_sym_GT_GT] = ACTIONS(6917), + [anon_sym_RBRACK] = ACTIONS(6915), }, - [4164] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), + [4134] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(9833), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(9799), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(175), }, - [4165] = { - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_GT_GT] = ACTIONS(5020), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_LT_LT_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_CARET_EQ] = ACTIONS(5018), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_PIPE_EQ] = ACTIONS(5018), - [anon_sym_GT_GT_EQ] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5018), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_PERCENT] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_AMP_EQ] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACK] = ACTIONS(5018), + [4135] = { + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_STAR_EQ] = ACTIONS(5014), + [anon_sym_LT_LT_EQ] = ACTIONS(5014), + [anon_sym_PERCENT_EQ] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5014), + [anon_sym_PLUS_EQ] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5014), + [anon_sym_GT_GT_EQ] = ACTIONS(5014), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_DASH_EQ] = ACTIONS(5014), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_AMP_EQ] = ACTIONS(5014), + [anon_sym_AMP_AMP] = ACTIONS(5014), + [anon_sym_DASH_GT] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_RBRACK] = ACTIONS(5014), }, - [4166] = { - [sym_field_declaration_list] = STATE(4537), - [anon_sym_LBRACE] = ACTIONS(5438), + [4136] = { + [sym_field_declaration_list] = STATE(4508), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [4167] = { - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_GT_GT] = ACTIONS(5146), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_DASH_DASH] = ACTIONS(5144), - [anon_sym_STAR_EQ] = ACTIONS(5144), - [anon_sym_LT_LT_EQ] = ACTIONS(5144), - [anon_sym_PERCENT_EQ] = ACTIONS(5144), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_CARET_EQ] = ACTIONS(5144), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5144), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_SLASH_EQ] = ACTIONS(5144), - [anon_sym_PLUS_EQ] = ACTIONS(5144), - [anon_sym_CARET] = ACTIONS(5146), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_PIPE_EQ] = ACTIONS(5144), - [anon_sym_GT_GT_EQ] = ACTIONS(5144), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5144), - [anon_sym_LT_LT] = ACTIONS(5146), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5146), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_DASH_EQ] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_AMP_EQ] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5144), - [anon_sym_EQ] = ACTIONS(5146), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_LBRACE] = ACTIONS(5144), - [anon_sym_RBRACK] = ACTIONS(5144), + [4137] = { + [anon_sym_LPAREN2] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_STAR_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_EQ] = ACTIONS(5088), + [anon_sym_PERCENT_EQ] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_CARET_EQ] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_SLASH_EQ] = ACTIONS(5088), + [anon_sym_PLUS_EQ] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_PIPE_EQ] = ACTIONS(5088), + [anon_sym_GT_GT_EQ] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_DASH_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_AMP_EQ] = ACTIONS(5088), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5088), }, - [4168] = { - [anon_sym_LPAREN2] = ACTIONS(5237), - [anon_sym_GT_GT] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_DASH_DASH] = ACTIONS(5237), - [anon_sym_STAR_EQ] = ACTIONS(5237), - [anon_sym_LT_LT_EQ] = ACTIONS(5237), - [anon_sym_PERCENT_EQ] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_CARET_EQ] = ACTIONS(5237), - [anon_sym_AMP] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_GT_EQ] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_SLASH_EQ] = ACTIONS(5237), - [anon_sym_PLUS_EQ] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_PIPE_EQ] = ACTIONS(5237), - [anon_sym_GT_GT_EQ] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5237), - [anon_sym_LT_LT] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_PERCENT] = ACTIONS(5239), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5237), - [anon_sym_DASH_EQ] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5237), - [anon_sym_AMP_EQ] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_DASH_GT] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), + [4138] = { + [anon_sym_LPAREN2] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5238), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5238), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_BANG_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_DASH_GT] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5236), + [anon_sym_LBRACE] = ACTIONS(5236), + [anon_sym_RBRACK] = ACTIONS(5236), }, - [4169] = { - [sym_field_declaration_list] = STATE(4538), - [anon_sym_LBRACE] = ACTIONS(5438), + [4139] = { + [sym_field_declaration_list] = STATE(4509), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [4170] = { - [anon_sym_LPAREN2] = ACTIONS(5327), - [anon_sym_GT_GT] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_DASH_DASH] = ACTIONS(5327), - [anon_sym_STAR_EQ] = ACTIONS(5327), - [anon_sym_LT_LT_EQ] = ACTIONS(5327), - [anon_sym_PERCENT_EQ] = ACTIONS(5327), - [anon_sym_EQ_EQ] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_CARET_EQ] = ACTIONS(5327), - [anon_sym_AMP] = ACTIONS(5329), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_GT_EQ] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_SLASH_EQ] = ACTIONS(5327), - [anon_sym_PLUS_EQ] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_PIPE_EQ] = ACTIONS(5327), - [anon_sym_GT_GT_EQ] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_PIPE_PIPE] = ACTIONS(5327), - [anon_sym_DOT] = ACTIONS(5327), - [anon_sym_LT_LT] = ACTIONS(5329), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_PERCENT] = ACTIONS(5329), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5327), - [anon_sym_DASH_EQ] = ACTIONS(5327), - [anon_sym_LT_EQ] = ACTIONS(5327), - [anon_sym_BANG_EQ] = ACTIONS(5327), - [anon_sym_AMP_EQ] = ACTIONS(5327), - [anon_sym_AMP_AMP] = ACTIONS(5327), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5329), - [anon_sym_PLUS_PLUS] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), + [4140] = { + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_GT_GT] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_DASH_DASH] = ACTIONS(5326), + [anon_sym_STAR_EQ] = ACTIONS(5326), + [anon_sym_LT_LT_EQ] = ACTIONS(5326), + [anon_sym_PERCENT_EQ] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5326), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_CARET_EQ] = ACTIONS(5326), + [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_GT_EQ] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_SLASH_EQ] = ACTIONS(5326), + [anon_sym_PLUS_EQ] = ACTIONS(5326), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_PIPE_EQ] = ACTIONS(5326), + [anon_sym_GT_GT_EQ] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_PERCENT] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_DASH_EQ] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5326), + [anon_sym_BANG_EQ] = ACTIONS(5326), + [anon_sym_AMP_EQ] = ACTIONS(5326), + [anon_sym_AMP_AMP] = ACTIONS(5326), + [anon_sym_DASH_GT] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5328), + [anon_sym_PLUS_PLUS] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_RBRACK] = ACTIONS(5326), }, - [4171] = { - [sym_field_declaration_list] = STATE(4539), - [anon_sym_LBRACE] = ACTIONS(5438), + [4141] = { + [sym_field_declaration_list] = STATE(4510), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [4172] = { - [anon_sym_LPAREN2] = ACTIONS(5331), - [anon_sym_GT_GT] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_DASH_DASH] = ACTIONS(5331), - [anon_sym_STAR_EQ] = ACTIONS(5331), - [anon_sym_LT_LT_EQ] = ACTIONS(5331), - [anon_sym_PERCENT_EQ] = ACTIONS(5331), - [anon_sym_EQ_EQ] = ACTIONS(5331), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_CARET_EQ] = ACTIONS(5331), - [anon_sym_AMP] = ACTIONS(5333), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_GT_EQ] = ACTIONS(5331), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_SLASH_EQ] = ACTIONS(5331), - [anon_sym_PLUS_EQ] = ACTIONS(5331), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_PIPE_EQ] = ACTIONS(5331), - [anon_sym_GT_GT_EQ] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_PIPE_PIPE] = ACTIONS(5331), - [anon_sym_DOT] = ACTIONS(5331), - [anon_sym_LT_LT] = ACTIONS(5333), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_PERCENT] = ACTIONS(5333), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5331), - [anon_sym_DASH_EQ] = ACTIONS(5331), - [anon_sym_LT_EQ] = ACTIONS(5331), - [anon_sym_BANG_EQ] = ACTIONS(5331), - [anon_sym_AMP_EQ] = ACTIONS(5331), - [anon_sym_AMP_AMP] = ACTIONS(5331), - [anon_sym_DASH_GT] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5333), - [anon_sym_PLUS_PLUS] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), + [4142] = { + [anon_sym_LPAREN2] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_DASH_DASH] = ACTIONS(5330), + [anon_sym_STAR_EQ] = ACTIONS(5330), + [anon_sym_LT_LT_EQ] = ACTIONS(5330), + [anon_sym_PERCENT_EQ] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5330), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_CARET_EQ] = ACTIONS(5330), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_GT_EQ] = ACTIONS(5330), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_SLASH_EQ] = ACTIONS(5330), + [anon_sym_PLUS_EQ] = ACTIONS(5330), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_PIPE_EQ] = ACTIONS(5330), + [anon_sym_GT_GT_EQ] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_PIPE_PIPE] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_PERCENT] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5330), + [anon_sym_DASH_EQ] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5330), + [anon_sym_BANG_EQ] = ACTIONS(5330), + [anon_sym_AMP_EQ] = ACTIONS(5330), + [anon_sym_AMP_AMP] = ACTIONS(5330), + [anon_sym_DASH_GT] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5332), + [anon_sym_PLUS_PLUS] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(5330), }, - [4173] = { - [sym_field_declaration_list] = STATE(4540), - [anon_sym_LBRACE] = ACTIONS(5438), + [4143] = { + [sym_field_declaration_list] = STATE(4511), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [4174] = { - [anon_sym_LPAREN2] = ACTIONS(4740), - [anon_sym_GT_GT] = ACTIONS(4742), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4740), - [anon_sym_STAR_EQ] = ACTIONS(4740), - [anon_sym_LT_LT_EQ] = ACTIONS(4740), - [anon_sym_PERCENT_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_CARET_EQ] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4740), - [anon_sym_STAR] = ACTIONS(4742), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_SLASH_EQ] = ACTIONS(4740), - [anon_sym_PLUS_EQ] = ACTIONS(4740), - [anon_sym_CARET] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_PIPE_EQ] = ACTIONS(4740), - [anon_sym_GT_GT_EQ] = ACTIONS(4740), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_LT_LT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4740), - [anon_sym_DASH_EQ] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_AMP_EQ] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_RBRACK] = ACTIONS(4740), + [4144] = { + [anon_sym_LPAREN2] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4738), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4736), + [anon_sym_STAR_EQ] = ACTIONS(4736), + [anon_sym_LT_LT_EQ] = ACTIONS(4736), + [anon_sym_PERCENT_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4738), + [anon_sym_CARET_EQ] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [anon_sym_SLASH] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4736), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_PIPE_EQ] = ACTIONS(4736), + [anon_sym_GT_GT_EQ] = ACTIONS(4736), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4736), + [anon_sym_DASH_EQ] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_AMP_EQ] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_DASH_GT] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_RBRACK] = ACTIONS(4736), }, - [4175] = { - [sym_enumerator] = STATE(2379), + [4145] = { + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(9835), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(9801), }, - [4176] = { - [aux_sym_enumerator_list_repeat1] = STATE(2381), + [4146] = { + [aux_sym_enumerator_list_repeat1] = STATE(2366), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(9837), - [anon_sym_RBRACE] = ACTIONS(9835), + [anon_sym_COMMA] = ACTIONS(9803), + [anon_sym_RBRACE] = ACTIONS(9801), }, - [4177] = { - [anon_sym_LPAREN2] = ACTIONS(5604), - [anon_sym_GT_GT] = ACTIONS(5606), - [anon_sym_DASH] = ACTIONS(5606), - [anon_sym_DASH_DASH] = ACTIONS(5604), - [anon_sym_STAR_EQ] = ACTIONS(5604), - [anon_sym_LT_LT_EQ] = ACTIONS(5604), - [anon_sym_PERCENT_EQ] = ACTIONS(5604), - [anon_sym_EQ_EQ] = ACTIONS(5604), - [anon_sym_PIPE] = ACTIONS(5606), - [anon_sym_LT] = ACTIONS(5606), - [anon_sym_CARET_EQ] = ACTIONS(5604), - [anon_sym_AMP] = ACTIONS(5606), - [anon_sym_PLUS] = ACTIONS(5606), - [anon_sym_GT_EQ] = ACTIONS(5604), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_SLASH] = ACTIONS(5606), - [anon_sym_SLASH_EQ] = ACTIONS(5604), - [anon_sym_PLUS_EQ] = ACTIONS(5604), - [anon_sym_CARET] = ACTIONS(5606), - [anon_sym_GT] = ACTIONS(5606), - [anon_sym_PIPE_EQ] = ACTIONS(5604), - [anon_sym_GT_GT_EQ] = ACTIONS(5604), - [anon_sym_COMMA] = ACTIONS(5604), - [anon_sym_PIPE_PIPE] = ACTIONS(5604), - [anon_sym_DOT] = ACTIONS(5604), - [anon_sym_LT_LT] = ACTIONS(5606), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_PERCENT] = ACTIONS(5606), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5604), - [anon_sym_DASH_EQ] = ACTIONS(5604), - [anon_sym_LT_EQ] = ACTIONS(5604), - [anon_sym_BANG_EQ] = ACTIONS(5604), - [anon_sym_AMP_EQ] = ACTIONS(5604), - [anon_sym_AMP_AMP] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(5604), - [anon_sym_EQ] = ACTIONS(5606), - [anon_sym_PLUS_PLUS] = ACTIONS(5604), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_RBRACK] = ACTIONS(5604), + [4147] = { + [anon_sym_LPAREN2] = ACTIONS(5610), + [anon_sym_GT_GT] = ACTIONS(5612), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_DASH_DASH] = ACTIONS(5610), + [anon_sym_STAR_EQ] = ACTIONS(5610), + [anon_sym_LT_LT_EQ] = ACTIONS(5610), + [anon_sym_PERCENT_EQ] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5610), + [anon_sym_PIPE] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5612), + [anon_sym_CARET_EQ] = ACTIONS(5610), + [anon_sym_AMP] = ACTIONS(5612), + [anon_sym_PLUS] = ACTIONS(5612), + [anon_sym_GT_EQ] = ACTIONS(5610), + [anon_sym_STAR] = ACTIONS(5612), + [anon_sym_SLASH] = ACTIONS(5612), + [anon_sym_SLASH_EQ] = ACTIONS(5610), + [anon_sym_PLUS_EQ] = ACTIONS(5610), + [anon_sym_CARET] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_PIPE_EQ] = ACTIONS(5610), + [anon_sym_GT_GT_EQ] = ACTIONS(5610), + [anon_sym_COMMA] = ACTIONS(5610), + [anon_sym_PIPE_PIPE] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(5610), + [anon_sym_PERCENT] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5610), + [anon_sym_DASH_EQ] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5610), + [anon_sym_BANG_EQ] = ACTIONS(5610), + [anon_sym_AMP_EQ] = ACTIONS(5610), + [anon_sym_AMP_AMP] = ACTIONS(5610), + [anon_sym_DASH_GT] = ACTIONS(5610), + [anon_sym_EQ] = ACTIONS(5612), + [anon_sym_PLUS_PLUS] = ACTIONS(5610), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACK] = ACTIONS(5610), }, - [4178] = { - [sym_field_declaration_list] = STATE(4543), - [anon_sym_LBRACE] = ACTIONS(5438), + [4148] = { + [sym_field_declaration_list] = STATE(4514), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [4179] = { - [anon_sym_LPAREN2] = ACTIONS(5608), - [anon_sym_GT_GT] = ACTIONS(5610), - [anon_sym_DASH] = ACTIONS(5610), - [anon_sym_DASH_DASH] = ACTIONS(5608), - [anon_sym_STAR_EQ] = ACTIONS(5608), - [anon_sym_LT_LT_EQ] = ACTIONS(5608), - [anon_sym_PERCENT_EQ] = ACTIONS(5608), - [anon_sym_EQ_EQ] = ACTIONS(5608), - [anon_sym_PIPE] = ACTIONS(5610), - [anon_sym_LT] = ACTIONS(5610), - [anon_sym_CARET_EQ] = ACTIONS(5608), - [anon_sym_AMP] = ACTIONS(5610), - [anon_sym_PLUS] = ACTIONS(5610), - [anon_sym_GT_EQ] = ACTIONS(5608), - [anon_sym_STAR] = ACTIONS(5610), - [anon_sym_SLASH] = ACTIONS(5610), - [anon_sym_SLASH_EQ] = ACTIONS(5608), - [anon_sym_PLUS_EQ] = ACTIONS(5608), - [anon_sym_CARET] = ACTIONS(5610), - [anon_sym_GT] = ACTIONS(5610), - [anon_sym_PIPE_EQ] = ACTIONS(5608), - [anon_sym_GT_GT_EQ] = ACTIONS(5608), - [anon_sym_COMMA] = ACTIONS(5608), - [anon_sym_PIPE_PIPE] = ACTIONS(5608), - [anon_sym_DOT] = ACTIONS(5608), - [anon_sym_LT_LT] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5608), - [anon_sym_PERCENT] = ACTIONS(5610), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5608), - [anon_sym_DASH_EQ] = ACTIONS(5608), - [anon_sym_LT_EQ] = ACTIONS(5608), - [anon_sym_BANG_EQ] = ACTIONS(5608), - [anon_sym_AMP_EQ] = ACTIONS(5608), - [anon_sym_AMP_AMP] = ACTIONS(5608), - [anon_sym_DASH_GT] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_PLUS_PLUS] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(5608), - [anon_sym_RBRACK] = ACTIONS(5608), + [4149] = { + [anon_sym_LPAREN2] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5614), + [anon_sym_STAR_EQ] = ACTIONS(5614), + [anon_sym_LT_LT_EQ] = ACTIONS(5614), + [anon_sym_PERCENT_EQ] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5614), + [anon_sym_PIPE] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5616), + [anon_sym_CARET_EQ] = ACTIONS(5614), + [anon_sym_AMP] = ACTIONS(5616), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_GT_EQ] = ACTIONS(5614), + [anon_sym_STAR] = ACTIONS(5616), + [anon_sym_SLASH] = ACTIONS(5616), + [anon_sym_SLASH_EQ] = ACTIONS(5614), + [anon_sym_PLUS_EQ] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5616), + [anon_sym_PIPE_EQ] = ACTIONS(5614), + [anon_sym_GT_GT_EQ] = ACTIONS(5614), + [anon_sym_COMMA] = ACTIONS(5614), + [anon_sym_PIPE_PIPE] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5614), + [anon_sym_PERCENT] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5614), + [anon_sym_DASH_EQ] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_BANG_EQ] = ACTIONS(5614), + [anon_sym_AMP_EQ] = ACTIONS(5614), + [anon_sym_AMP_AMP] = ACTIONS(5614), + [anon_sym_DASH_GT] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(5616), + [anon_sym_PLUS_PLUS] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACK] = ACTIONS(5614), }, - [4180] = { - [sym_field_declaration_list] = STATE(4544), - [anon_sym_LBRACE] = ACTIONS(5438), + [4150] = { + [sym_field_declaration_list] = STATE(4515), + [anon_sym_LBRACE] = ACTIONS(5437), [sym_comment] = ACTIONS(3), }, - [4181] = { - [sym_new_declarator] = STATE(4545), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(5468), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_RBRACK] = ACTIONS(7549), - }, - [4182] = { - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_DASH_DASH] = ACTIONS(7553), - [anon_sym_STAR_EQ] = ACTIONS(7553), - [anon_sym_LT_LT_EQ] = ACTIONS(7553), - [anon_sym_PERCENT_EQ] = ACTIONS(7553), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_CARET_EQ] = ACTIONS(7553), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7553), - [anon_sym_STAR] = ACTIONS(7555), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_SLASH_EQ] = ACTIONS(7553), - [anon_sym_PLUS_EQ] = ACTIONS(7553), - [anon_sym_CARET] = ACTIONS(7555), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_PIPE_EQ] = ACTIONS(7553), - [anon_sym_GT_GT_EQ] = ACTIONS(7553), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7553), - [anon_sym_LT_LT] = ACTIONS(7555), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_PERCENT] = ACTIONS(7555), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_DASH_EQ] = ACTIONS(7553), - [anon_sym_LT_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_AMP_EQ] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7553), - [anon_sym_EQ] = ACTIONS(7555), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym_RBRACK] = ACTIONS(7553), - }, - [4183] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_SLASH] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(9839), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(5490), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(8131), - }, - [4184] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_STAR_EQ] = ACTIONS(2709), - [anon_sym_LT_LT_EQ] = ACTIONS(2709), - [anon_sym_PERCENT_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_CARET_EQ] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_SLASH_EQ] = ACTIONS(2709), - [anon_sym_PLUS_EQ] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_PIPE_EQ] = ACTIONS(2709), - [anon_sym_GT_GT_EQ] = ACTIONS(2709), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_PIPE_PIPE] = ACTIONS(2709), - [anon_sym_DOT] = ACTIONS(2709), - [anon_sym_LT_LT] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_DASH_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_BANG_EQ] = ACTIONS(2709), - [anon_sym_AMP_EQ] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_DASH_GT] = ACTIONS(2709), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(2709), - }, - [4185] = { - [anon_sym_LPAREN2] = ACTIONS(8503), - [anon_sym_CARET] = ACTIONS(8503), - [anon_sym_GT] = ACTIONS(8505), - [anon_sym_DASH] = ACTIONS(8505), - [anon_sym_DASH_DASH] = ACTIONS(8503), - [anon_sym_COMMA] = ACTIONS(8503), - [anon_sym_PIPE_PIPE] = ACTIONS(8503), - [anon_sym_DOT] = ACTIONS(8503), - [anon_sym_LT_LT] = ACTIONS(8503), - [anon_sym_LBRACK] = ACTIONS(8503), - [anon_sym_EQ_EQ] = ACTIONS(8503), - [anon_sym_PIPE] = ACTIONS(8505), - [anon_sym_LT] = ACTIONS(8505), - [anon_sym_PERCENT] = ACTIONS(8503), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(8505), - [anon_sym_QMARK] = ACTIONS(8503), - [anon_sym_PLUS] = ACTIONS(8505), - [anon_sym_GT_EQ] = ACTIONS(8503), - [anon_sym_STAR] = ACTIONS(8503), - [anon_sym_SLASH] = ACTIONS(8505), - [anon_sym_LT_EQ] = ACTIONS(8503), - [anon_sym_BANG_EQ] = ACTIONS(8503), - [anon_sym_AMP_AMP] = ACTIONS(8503), - [anon_sym_DASH_GT] = ACTIONS(8503), - [anon_sym_PLUS_PLUS] = ACTIONS(8503), - [anon_sym_GT_GT] = ACTIONS(8503), - [anon_sym_RBRACK] = ACTIONS(8503), - }, - [4186] = { - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_RBRACK] = ACTIONS(7297), - [anon_sym_final] = ACTIONS(7297), - [anon_sym_mutable] = ACTIONS(7297), - [anon_sym_restrict] = ACTIONS(7297), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_volatile] = ACTIONS(7297), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7297), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_override] = ACTIONS(7297), - [anon_sym_COLON] = ACTIONS(7297), - [anon_sym_explicit] = ACTIONS(7297), - [sym_noexcept] = ACTIONS(7297), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7297), - [anon_sym__Atomic] = ACTIONS(7297), - [anon_sym_LT_LT] = ACTIONS(7297), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_const] = ACTIONS(7299), - [anon_sym_constexpr] = ACTIONS(7297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_SEMI] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7297), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_GT_GT] = ACTIONS(7297), - [anon_sym_DASH_DASH] = ACTIONS(7297), - }, - [4187] = { - [anon_sym_LPAREN2] = ACTIONS(7465), - [anon_sym_DASH] = ACTIONS(7467), - [anon_sym_LBRACE] = ACTIONS(7465), - [anon_sym_RBRACK] = ACTIONS(7465), - [anon_sym_final] = ACTIONS(7465), - [anon_sym_mutable] = ACTIONS(7465), - [anon_sym_restrict] = ACTIONS(7465), - [anon_sym_EQ_EQ] = ACTIONS(7465), - [anon_sym_PIPE] = ACTIONS(7467), - [anon_sym_LT] = ACTIONS(7467), - [anon_sym_AMP] = ACTIONS(7467), - [anon_sym_volatile] = ACTIONS(7465), - [anon_sym_PLUS] = ACTIONS(7467), - [anon_sym_GT_EQ] = ACTIONS(7465), - [anon_sym_STAR] = ACTIONS(7465), - [anon_sym_SLASH] = ACTIONS(7467), - [anon_sym_override] = ACTIONS(7465), - [anon_sym_COLON] = ACTIONS(7465), - [anon_sym_explicit] = ACTIONS(7465), - [sym_noexcept] = ACTIONS(7465), - [anon_sym_CARET] = ACTIONS(7465), - [anon_sym_GT] = ACTIONS(7467), - [anon_sym_COMMA] = ACTIONS(7465), - [anon_sym_PIPE_PIPE] = ACTIONS(7465), - [anon_sym_DOT] = ACTIONS(7465), - [anon_sym__Atomic] = ACTIONS(7465), - [anon_sym_LT_LT] = ACTIONS(7465), - [anon_sym_LBRACK] = ACTIONS(7465), - [anon_sym_PERCENT] = ACTIONS(7465), - [anon_sym_const] = ACTIONS(7467), - [anon_sym_constexpr] = ACTIONS(7465), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7465), - [anon_sym_LT_EQ] = ACTIONS(7465), - [anon_sym_BANG_EQ] = ACTIONS(7465), - [anon_sym_SEMI] = ACTIONS(7465), - [anon_sym_AMP_AMP] = ACTIONS(7465), - [anon_sym_DASH_GT] = ACTIONS(7465), - [anon_sym_PLUS_PLUS] = ACTIONS(7465), - [anon_sym_EQ] = ACTIONS(7467), - [anon_sym_GT_GT] = ACTIONS(7465), - [anon_sym_DASH_DASH] = ACTIONS(7465), - }, - [4188] = { + [4151] = { + [sym_new_declarator] = STATE(4516), [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), [anon_sym_DASH] = ACTIONS(7532), - [anon_sym_LBRACE] = ACTIONS(7530), - [anon_sym_RBRACK] = ACTIONS(7530), - [anon_sym_final] = ACTIONS(7530), - [anon_sym_mutable] = ACTIONS(7530), - [anon_sym_restrict] = ACTIONS(7530), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), [anon_sym_EQ_EQ] = ACTIONS(7530), [anon_sym_PIPE] = ACTIONS(7532), [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), [anon_sym_AMP] = ACTIONS(7532), - [anon_sym_volatile] = ACTIONS(7530), [anon_sym_PLUS] = ACTIONS(7532), [anon_sym_GT_EQ] = ACTIONS(7530), - [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7532), [anon_sym_SLASH] = ACTIONS(7532), - [anon_sym_override] = ACTIONS(7530), - [anon_sym_COLON] = ACTIONS(7530), - [anon_sym_explicit] = ACTIONS(7530), - [sym_noexcept] = ACTIONS(7530), - [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7530), [anon_sym_COMMA] = ACTIONS(7530), [anon_sym_PIPE_PIPE] = ACTIONS(7530), [anon_sym_DOT] = ACTIONS(7530), - [anon_sym__Atomic] = ACTIONS(7530), - [anon_sym_LT_LT] = ACTIONS(7530), - [anon_sym_LBRACK] = ACTIONS(7530), - [anon_sym_PERCENT] = ACTIONS(7530), - [anon_sym_const] = ACTIONS(7532), - [anon_sym_constexpr] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(7532), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), [anon_sym_LT_EQ] = ACTIONS(7530), [anon_sym_BANG_EQ] = ACTIONS(7530), - [anon_sym_SEMI] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), [anon_sym_AMP_AMP] = ACTIONS(7530), [anon_sym_DASH_GT] = ACTIONS(7530), - [anon_sym_PLUS_PLUS] = ACTIONS(7530), [anon_sym_EQ] = ACTIONS(7532), - [anon_sym_GT_GT] = ACTIONS(7530), - [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_RBRACK] = ACTIONS(7530), }, - [4189] = { + [4152] = { [anon_sym_LPAREN2] = ACTIONS(7534), [anon_sym_DASH] = ACTIONS(7536), - [anon_sym_LBRACE] = ACTIONS(7534), - [anon_sym_RBRACK] = ACTIONS(7534), - [anon_sym_final] = ACTIONS(7534), - [anon_sym_mutable] = ACTIONS(7534), - [anon_sym_restrict] = ACTIONS(7534), + [anon_sym_DASH_DASH] = ACTIONS(7534), + [anon_sym_STAR_EQ] = ACTIONS(7534), + [anon_sym_LT_LT_EQ] = ACTIONS(7534), + [anon_sym_PERCENT_EQ] = ACTIONS(7534), [anon_sym_EQ_EQ] = ACTIONS(7534), [anon_sym_PIPE] = ACTIONS(7536), [anon_sym_LT] = ACTIONS(7536), + [anon_sym_CARET_EQ] = ACTIONS(7534), [anon_sym_AMP] = ACTIONS(7536), - [anon_sym_volatile] = ACTIONS(7534), [anon_sym_PLUS] = ACTIONS(7536), [anon_sym_GT_EQ] = ACTIONS(7534), - [anon_sym_STAR] = ACTIONS(7534), + [anon_sym_STAR] = ACTIONS(7536), [anon_sym_SLASH] = ACTIONS(7536), - [anon_sym_override] = ACTIONS(7534), - [anon_sym_COLON] = ACTIONS(7534), - [anon_sym_explicit] = ACTIONS(7534), - [sym_noexcept] = ACTIONS(7534), - [anon_sym_CARET] = ACTIONS(7534), + [anon_sym_SLASH_EQ] = ACTIONS(7534), + [anon_sym_PLUS_EQ] = ACTIONS(7534), + [anon_sym_CARET] = ACTIONS(7536), [anon_sym_GT] = ACTIONS(7536), + [anon_sym_PIPE_EQ] = ACTIONS(7534), + [anon_sym_GT_GT_EQ] = ACTIONS(7534), [anon_sym_COMMA] = ACTIONS(7534), [anon_sym_PIPE_PIPE] = ACTIONS(7534), [anon_sym_DOT] = ACTIONS(7534), - [anon_sym__Atomic] = ACTIONS(7534), - [anon_sym_LT_LT] = ACTIONS(7534), + [anon_sym_LT_LT] = ACTIONS(7536), [anon_sym_LBRACK] = ACTIONS(7534), - [anon_sym_PERCENT] = ACTIONS(7534), - [anon_sym_const] = ACTIONS(7536), - [anon_sym_constexpr] = ACTIONS(7534), + [anon_sym_PERCENT] = ACTIONS(7536), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(7534), + [anon_sym_DASH_EQ] = ACTIONS(7534), [anon_sym_LT_EQ] = ACTIONS(7534), [anon_sym_BANG_EQ] = ACTIONS(7534), - [anon_sym_SEMI] = ACTIONS(7534), + [anon_sym_AMP_EQ] = ACTIONS(7534), [anon_sym_AMP_AMP] = ACTIONS(7534), [anon_sym_DASH_GT] = ACTIONS(7534), - [anon_sym_PLUS_PLUS] = ACTIONS(7534), [anon_sym_EQ] = ACTIONS(7536), - [anon_sym_GT_GT] = ACTIONS(7534), - [anon_sym_DASH_DASH] = ACTIONS(7534), + [anon_sym_PLUS_PLUS] = ACTIONS(7534), + [anon_sym_GT_GT] = ACTIONS(7536), + [anon_sym_RBRACK] = ACTIONS(7534), }, - [4190] = { - [anon_sym_LPAREN2] = ACTIONS(7154), - [anon_sym_DASH] = ACTIONS(7156), - [anon_sym_LBRACE] = ACTIONS(7154), - [anon_sym_RBRACK] = ACTIONS(7154), - [anon_sym_final] = ACTIONS(7154), - [anon_sym_mutable] = ACTIONS(7154), - [anon_sym_restrict] = ACTIONS(7154), - [anon_sym_EQ_EQ] = ACTIONS(7154), - [anon_sym_PIPE] = ACTIONS(7156), - [anon_sym_LT] = ACTIONS(7156), - [anon_sym_AMP] = ACTIONS(7156), - [anon_sym_volatile] = ACTIONS(7154), - [anon_sym_PLUS] = ACTIONS(7156), - [anon_sym_GT_EQ] = ACTIONS(7154), - [anon_sym_STAR] = ACTIONS(7154), - [anon_sym_SLASH] = ACTIONS(7156), - [anon_sym_override] = ACTIONS(7154), - [anon_sym_COLON] = ACTIONS(7154), - [anon_sym_explicit] = ACTIONS(7154), - [sym_noexcept] = ACTIONS(7154), - [anon_sym_CARET] = ACTIONS(7154), - [anon_sym_GT] = ACTIONS(7156), - [anon_sym_COMMA] = ACTIONS(7154), - [anon_sym_PIPE_PIPE] = ACTIONS(7154), - [anon_sym_DOT] = ACTIONS(7154), - [anon_sym__Atomic] = ACTIONS(7154), - [anon_sym_LT_LT] = ACTIONS(7154), - [anon_sym_LBRACK] = ACTIONS(7154), - [anon_sym_PERCENT] = ACTIONS(7154), - [anon_sym_const] = ACTIONS(7156), - [anon_sym_constexpr] = ACTIONS(7154), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7154), - [anon_sym_LT_EQ] = ACTIONS(7154), - [anon_sym_BANG_EQ] = ACTIONS(7154), - [anon_sym_SEMI] = ACTIONS(7154), - [anon_sym_AMP_AMP] = ACTIONS(7154), - [anon_sym_DASH_GT] = ACTIONS(7154), - [anon_sym_PLUS_PLUS] = ACTIONS(7154), - [anon_sym_EQ] = ACTIONS(7156), - [anon_sym_GT_GT] = ACTIONS(7154), - [anon_sym_DASH_DASH] = ACTIONS(7154), + [4153] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(5475), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(5481), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(5485), + [anon_sym_GT] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(5487), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(9805), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_LT_EQ] = ACTIONS(5483), + [anon_sym_BANG_EQ] = ACTIONS(5475), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(5489), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(5415), + [anon_sym_RBRACK] = ACTIONS(8176), }, - [4191] = { - [sym_enumerator] = STATE(2379), + [4154] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_STAR_EQ] = ACTIONS(2711), + [anon_sym_LT_LT_EQ] = ACTIONS(2711), + [anon_sym_PERCENT_EQ] = ACTIONS(2711), + [anon_sym_EQ_EQ] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_CARET_EQ] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_SLASH_EQ] = ACTIONS(2711), + [anon_sym_PLUS_EQ] = ACTIONS(2711), + [anon_sym_CARET] = ACTIONS(2709), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_PIPE_EQ] = ACTIONS(2711), + [anon_sym_GT_GT_EQ] = ACTIONS(2711), + [anon_sym_COMMA] = ACTIONS(2711), + [anon_sym_PIPE_PIPE] = ACTIONS(2711), + [anon_sym_DOT] = ACTIONS(2711), + [anon_sym_LT_LT] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_PERCENT] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2711), + [anon_sym_DASH_EQ] = ACTIONS(2711), + [anon_sym_LT_EQ] = ACTIONS(2711), + [anon_sym_BANG_EQ] = ACTIONS(2711), + [anon_sym_AMP_EQ] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_DASH_GT] = ACTIONS(2711), + [anon_sym_EQ] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_RBRACK] = ACTIONS(2711), + }, + [4155] = { + [anon_sym_LPAREN2] = ACTIONS(8475), + [anon_sym_CARET] = ACTIONS(8475), + [anon_sym_GT] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8477), + [anon_sym_DASH_DASH] = ACTIONS(8475), + [anon_sym_COMMA] = ACTIONS(8475), + [anon_sym_PIPE_PIPE] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_LT_LT] = ACTIONS(8475), + [anon_sym_LBRACK] = ACTIONS(8475), + [anon_sym_EQ_EQ] = ACTIONS(8475), + [anon_sym_PIPE] = ACTIONS(8477), + [anon_sym_LT] = ACTIONS(8477), + [anon_sym_PERCENT] = ACTIONS(8475), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(8477), + [anon_sym_QMARK] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_GT_EQ] = ACTIONS(8475), + [anon_sym_STAR] = ACTIONS(8475), + [anon_sym_SLASH] = ACTIONS(8477), + [anon_sym_LT_EQ] = ACTIONS(8475), + [anon_sym_BANG_EQ] = ACTIONS(8475), + [anon_sym_AMP_AMP] = ACTIONS(8475), + [anon_sym_DASH_GT] = ACTIONS(8475), + [anon_sym_PLUS_PLUS] = ACTIONS(8475), + [anon_sym_GT_GT] = ACTIONS(8475), + [anon_sym_RBRACK] = ACTIONS(8475), + }, + [4156] = { + [anon_sym_LPAREN2] = ACTIONS(7278), + [anon_sym_DASH] = ACTIONS(7280), + [anon_sym_LBRACE] = ACTIONS(7278), + [anon_sym_RBRACK] = ACTIONS(7278), + [anon_sym_final] = ACTIONS(7278), + [anon_sym_mutable] = ACTIONS(7278), + [anon_sym_restrict] = ACTIONS(7278), + [anon_sym_EQ_EQ] = ACTIONS(7278), + [anon_sym_PIPE] = ACTIONS(7280), + [anon_sym_LT] = ACTIONS(7280), + [anon_sym_AMP] = ACTIONS(7280), + [anon_sym_volatile] = ACTIONS(7278), + [anon_sym_PLUS] = ACTIONS(7280), + [anon_sym_GT_EQ] = ACTIONS(7278), + [anon_sym_STAR] = ACTIONS(7278), + [anon_sym_SLASH] = ACTIONS(7280), + [anon_sym_override] = ACTIONS(7278), + [anon_sym_COLON] = ACTIONS(7278), + [anon_sym_explicit] = ACTIONS(7278), + [sym_noexcept] = ACTIONS(7278), + [anon_sym_CARET] = ACTIONS(7278), + [anon_sym_GT] = ACTIONS(7280), + [anon_sym_COMMA] = ACTIONS(7278), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_DOT] = ACTIONS(7278), + [anon_sym__Atomic] = ACTIONS(7278), + [anon_sym_LT_LT] = ACTIONS(7278), + [anon_sym_LBRACK] = ACTIONS(7278), + [anon_sym_PERCENT] = ACTIONS(7278), + [anon_sym_const] = ACTIONS(7280), + [anon_sym_constexpr] = ACTIONS(7278), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7278), + [anon_sym_LT_EQ] = ACTIONS(7278), + [anon_sym_BANG_EQ] = ACTIONS(7278), + [anon_sym_SEMI] = ACTIONS(7278), + [anon_sym_AMP_AMP] = ACTIONS(7278), + [anon_sym_DASH_GT] = ACTIONS(7278), + [anon_sym_PLUS_PLUS] = ACTIONS(7278), + [anon_sym_EQ] = ACTIONS(7280), + [anon_sym_GT_GT] = ACTIONS(7278), + [anon_sym_DASH_DASH] = ACTIONS(7278), + }, + [4157] = { + [anon_sym_LPAREN2] = ACTIONS(7446), + [anon_sym_DASH] = ACTIONS(7448), + [anon_sym_LBRACE] = ACTIONS(7446), + [anon_sym_RBRACK] = ACTIONS(7446), + [anon_sym_final] = ACTIONS(7446), + [anon_sym_mutable] = ACTIONS(7446), + [anon_sym_restrict] = ACTIONS(7446), + [anon_sym_EQ_EQ] = ACTIONS(7446), + [anon_sym_PIPE] = ACTIONS(7448), + [anon_sym_LT] = ACTIONS(7448), + [anon_sym_AMP] = ACTIONS(7448), + [anon_sym_volatile] = ACTIONS(7446), + [anon_sym_PLUS] = ACTIONS(7448), + [anon_sym_GT_EQ] = ACTIONS(7446), + [anon_sym_STAR] = ACTIONS(7446), + [anon_sym_SLASH] = ACTIONS(7448), + [anon_sym_override] = ACTIONS(7446), + [anon_sym_COLON] = ACTIONS(7446), + [anon_sym_explicit] = ACTIONS(7446), + [sym_noexcept] = ACTIONS(7446), + [anon_sym_CARET] = ACTIONS(7446), + [anon_sym_GT] = ACTIONS(7448), + [anon_sym_COMMA] = ACTIONS(7446), + [anon_sym_PIPE_PIPE] = ACTIONS(7446), + [anon_sym_DOT] = ACTIONS(7446), + [anon_sym__Atomic] = ACTIONS(7446), + [anon_sym_LT_LT] = ACTIONS(7446), + [anon_sym_LBRACK] = ACTIONS(7446), + [anon_sym_PERCENT] = ACTIONS(7446), + [anon_sym_const] = ACTIONS(7448), + [anon_sym_constexpr] = ACTIONS(7446), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7446), + [anon_sym_LT_EQ] = ACTIONS(7446), + [anon_sym_BANG_EQ] = ACTIONS(7446), + [anon_sym_SEMI] = ACTIONS(7446), + [anon_sym_AMP_AMP] = ACTIONS(7446), + [anon_sym_DASH_GT] = ACTIONS(7446), + [anon_sym_PLUS_PLUS] = ACTIONS(7446), + [anon_sym_EQ] = ACTIONS(7448), + [anon_sym_GT_GT] = ACTIONS(7446), + [anon_sym_DASH_DASH] = ACTIONS(7446), + }, + [4158] = { + [anon_sym_LPAREN2] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_LBRACE] = ACTIONS(7511), + [anon_sym_RBRACK] = ACTIONS(7511), + [anon_sym_final] = ACTIONS(7511), + [anon_sym_mutable] = ACTIONS(7511), + [anon_sym_restrict] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7511), + [anon_sym_PIPE] = ACTIONS(7513), + [anon_sym_LT] = ACTIONS(7513), + [anon_sym_AMP] = ACTIONS(7513), + [anon_sym_volatile] = ACTIONS(7511), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_GT_EQ] = ACTIONS(7511), + [anon_sym_STAR] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_override] = ACTIONS(7511), + [anon_sym_COLON] = ACTIONS(7511), + [anon_sym_explicit] = ACTIONS(7511), + [sym_noexcept] = ACTIONS(7511), + [anon_sym_CARET] = ACTIONS(7511), + [anon_sym_GT] = ACTIONS(7513), + [anon_sym_COMMA] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7511), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym__Atomic] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7511), + [anon_sym_LBRACK] = ACTIONS(7511), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_const] = ACTIONS(7513), + [anon_sym_constexpr] = ACTIONS(7511), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7511), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_BANG_EQ] = ACTIONS(7511), + [anon_sym_SEMI] = ACTIONS(7511), + [anon_sym_AMP_AMP] = ACTIONS(7511), + [anon_sym_DASH_GT] = ACTIONS(7511), + [anon_sym_PLUS_PLUS] = ACTIONS(7511), + [anon_sym_EQ] = ACTIONS(7513), + [anon_sym_GT_GT] = ACTIONS(7511), + [anon_sym_DASH_DASH] = ACTIONS(7511), + }, + [4159] = { + [anon_sym_LPAREN2] = ACTIONS(7515), + [anon_sym_DASH] = ACTIONS(7517), + [anon_sym_LBRACE] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(7515), + [anon_sym_final] = ACTIONS(7515), + [anon_sym_mutable] = ACTIONS(7515), + [anon_sym_restrict] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7515), + [anon_sym_PIPE] = ACTIONS(7517), + [anon_sym_LT] = ACTIONS(7517), + [anon_sym_AMP] = ACTIONS(7517), + [anon_sym_volatile] = ACTIONS(7515), + [anon_sym_PLUS] = ACTIONS(7517), + [anon_sym_GT_EQ] = ACTIONS(7515), + [anon_sym_STAR] = ACTIONS(7515), + [anon_sym_SLASH] = ACTIONS(7517), + [anon_sym_override] = ACTIONS(7515), + [anon_sym_COLON] = ACTIONS(7515), + [anon_sym_explicit] = ACTIONS(7515), + [sym_noexcept] = ACTIONS(7515), + [anon_sym_CARET] = ACTIONS(7515), + [anon_sym_GT] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7515), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym__Atomic] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7515), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7515), + [anon_sym_const] = ACTIONS(7517), + [anon_sym_constexpr] = ACTIONS(7515), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7515), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_BANG_EQ] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(7515), + [anon_sym_AMP_AMP] = ACTIONS(7515), + [anon_sym_DASH_GT] = ACTIONS(7515), + [anon_sym_PLUS_PLUS] = ACTIONS(7515), + [anon_sym_EQ] = ACTIONS(7517), + [anon_sym_GT_GT] = ACTIONS(7515), + [anon_sym_DASH_DASH] = ACTIONS(7515), + }, + [4160] = { + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7137), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_RBRACK] = ACTIONS(7135), + [anon_sym_final] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7135), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7137), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_AMP] = ACTIONS(7137), + [anon_sym_volatile] = ACTIONS(7135), + [anon_sym_PLUS] = ACTIONS(7137), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_override] = ACTIONS(7135), + [anon_sym_COLON] = ACTIONS(7135), + [anon_sym_explicit] = ACTIONS(7135), + [sym_noexcept] = ACTIONS(7135), + [anon_sym_CARET] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7137), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7135), + [anon_sym__Atomic] = ACTIONS(7135), + [anon_sym_LT_LT] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_PERCENT] = ACTIONS(7135), + [anon_sym_const] = ACTIONS(7137), + [anon_sym_constexpr] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7137), + [anon_sym_GT_GT] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + }, + [4161] = { + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(9841), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(9807), }, - [4192] = { - [anon_sym_LPAREN2] = ACTIONS(7659), - [anon_sym_DASH] = ACTIONS(7661), - [anon_sym_LBRACE] = ACTIONS(7659), - [anon_sym_RBRACK] = ACTIONS(7659), - [anon_sym_final] = ACTIONS(7659), - [anon_sym_mutable] = ACTIONS(7659), - [anon_sym_restrict] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7659), - [anon_sym_PIPE] = ACTIONS(7661), - [anon_sym_LT] = ACTIONS(7661), - [anon_sym_AMP] = ACTIONS(7661), - [anon_sym_volatile] = ACTIONS(7659), - [anon_sym_PLUS] = ACTIONS(7661), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7659), - [anon_sym_SLASH] = ACTIONS(7661), - [anon_sym_override] = ACTIONS(7659), - [anon_sym_COLON] = ACTIONS(7659), - [anon_sym_explicit] = ACTIONS(7659), - [sym_noexcept] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7659), - [anon_sym_GT] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7659), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym__Atomic] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7659), - [anon_sym_LBRACK] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7659), - [anon_sym_const] = ACTIONS(7661), - [anon_sym_constexpr] = ACTIONS(7659), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7659), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_BANG_EQ] = ACTIONS(7659), - [anon_sym_SEMI] = ACTIONS(7659), - [anon_sym_AMP_AMP] = ACTIONS(7659), - [anon_sym_DASH_GT] = ACTIONS(7659), - [anon_sym_PLUS_PLUS] = ACTIONS(7659), - [anon_sym_EQ] = ACTIONS(7661), - [anon_sym_GT_GT] = ACTIONS(7659), - [anon_sym_DASH_DASH] = ACTIONS(7659), + [4162] = { + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_RBRACK] = ACTIONS(7640), + [anon_sym_final] = ACTIONS(7640), + [anon_sym_mutable] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7640), + [anon_sym_STAR] = ACTIONS(7640), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_override] = ACTIONS(7640), + [anon_sym_COLON] = ACTIONS(7640), + [anon_sym_explicit] = ACTIONS(7640), + [sym_noexcept] = ACTIONS(7640), + [anon_sym_CARET] = ACTIONS(7640), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym_LT_LT] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_PERCENT] = ACTIONS(7640), + [anon_sym_const] = ACTIONS(7642), + [anon_sym_constexpr] = ACTIONS(7640), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_SEMI] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7640), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_GT_GT] = ACTIONS(7640), + [anon_sym_DASH_DASH] = ACTIONS(7640), }, - [4193] = { - [anon_sym_LPAREN2] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7665), - [anon_sym_LBRACE] = ACTIONS(7663), - [anon_sym_RBRACK] = ACTIONS(7663), - [anon_sym_final] = ACTIONS(7663), - [anon_sym_mutable] = ACTIONS(7663), - [anon_sym_restrict] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7663), - [anon_sym_PIPE] = ACTIONS(7665), - [anon_sym_LT] = ACTIONS(7665), - [anon_sym_AMP] = ACTIONS(7665), - [anon_sym_volatile] = ACTIONS(7663), - [anon_sym_PLUS] = ACTIONS(7665), - [anon_sym_GT_EQ] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_override] = ACTIONS(7663), - [anon_sym_COLON] = ACTIONS(7663), - [anon_sym_explicit] = ACTIONS(7663), - [sym_noexcept] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_GT] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7663), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym__Atomic] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_LBRACK] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_const] = ACTIONS(7665), - [anon_sym_constexpr] = ACTIONS(7663), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7663), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_BANG_EQ] = ACTIONS(7663), - [anon_sym_SEMI] = ACTIONS(7663), - [anon_sym_AMP_AMP] = ACTIONS(7663), - [anon_sym_DASH_GT] = ACTIONS(7663), - [anon_sym_PLUS_PLUS] = ACTIONS(7663), - [anon_sym_EQ] = ACTIONS(7665), - [anon_sym_GT_GT] = ACTIONS(7663), - [anon_sym_DASH_DASH] = ACTIONS(7663), + [4163] = { + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_RBRACK] = ACTIONS(7644), + [anon_sym_final] = ACTIONS(7644), + [anon_sym_mutable] = ACTIONS(7644), + [anon_sym_restrict] = ACTIONS(7644), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_volatile] = ACTIONS(7644), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7644), + [anon_sym_STAR] = ACTIONS(7644), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_override] = ACTIONS(7644), + [anon_sym_COLON] = ACTIONS(7644), + [anon_sym_explicit] = ACTIONS(7644), + [sym_noexcept] = ACTIONS(7644), + [anon_sym_CARET] = ACTIONS(7644), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7644), + [anon_sym__Atomic] = ACTIONS(7644), + [anon_sym_LT_LT] = ACTIONS(7644), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_PERCENT] = ACTIONS(7644), + [anon_sym_const] = ACTIONS(7646), + [anon_sym_constexpr] = ACTIONS(7644), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_SEMI] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7644), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_GT_GT] = ACTIONS(7644), + [anon_sym_DASH_DASH] = ACTIONS(7644), }, - [4194] = { - [anon_sym_LPAREN2] = ACTIONS(7540), - [anon_sym_CARET] = ACTIONS(7540), - [anon_sym_GT] = ACTIONS(7542), - [anon_sym_DASH] = ACTIONS(7542), - [anon_sym_DASH_DASH] = ACTIONS(7540), - [anon_sym_COMMA] = ACTIONS(7540), - [anon_sym_PIPE_PIPE] = ACTIONS(7540), - [anon_sym_DOT] = ACTIONS(7540), - [anon_sym_LT_LT] = ACTIONS(7540), - [anon_sym_LBRACK] = ACTIONS(7540), - [anon_sym_EQ_EQ] = ACTIONS(7540), - [anon_sym_PIPE] = ACTIONS(7542), - [anon_sym_LT] = ACTIONS(7542), - [anon_sym_PERCENT] = ACTIONS(7540), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7542), - [anon_sym_QMARK] = ACTIONS(7540), - [anon_sym_PLUS] = ACTIONS(7542), - [anon_sym_GT_EQ] = ACTIONS(7540), - [anon_sym_STAR] = ACTIONS(7540), - [anon_sym_SLASH] = ACTIONS(7542), - [anon_sym_LT_EQ] = ACTIONS(7540), - [anon_sym_BANG_EQ] = ACTIONS(7540), - [anon_sym_AMP_AMP] = ACTIONS(7540), - [anon_sym_DASH_GT] = ACTIONS(7540), - [anon_sym_PLUS_PLUS] = ACTIONS(7540), - [anon_sym_GT_GT] = ACTIONS(7540), - [anon_sym_RBRACK] = ACTIONS(7540), + [4164] = { + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7521), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_DASH_DASH] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_PERCENT] = ACTIONS(7521), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_GT_EQ] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7521), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym_RBRACK] = ACTIONS(7521), }, - [4195] = { - [anon_sym_LPAREN2] = ACTIONS(8904), - [anon_sym_DASH] = ACTIONS(8906), - [anon_sym_LBRACE] = ACTIONS(8904), - [anon_sym_RBRACK] = ACTIONS(8904), - [anon_sym_EQ_EQ] = ACTIONS(8904), - [anon_sym_PIPE] = ACTIONS(8906), - [anon_sym_LT] = ACTIONS(8906), - [anon_sym_AMP] = ACTIONS(8906), - [anon_sym_PLUS] = ACTIONS(8906), - [anon_sym_GT_EQ] = ACTIONS(8904), - [anon_sym_STAR] = ACTIONS(8904), - [anon_sym_SLASH] = ACTIONS(8906), - [anon_sym_CARET] = ACTIONS(8904), - [anon_sym_GT] = ACTIONS(8906), - [anon_sym_COMMA] = ACTIONS(8904), - [anon_sym_PIPE_PIPE] = ACTIONS(8904), - [anon_sym_DOT] = ACTIONS(8904), - [anon_sym_LT_LT] = ACTIONS(8904), - [anon_sym_LBRACK] = ACTIONS(8904), - [anon_sym_PERCENT] = ACTIONS(8904), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8904), - [anon_sym_LT_EQ] = ACTIONS(8904), - [anon_sym_BANG_EQ] = ACTIONS(8904), - [anon_sym_AMP_AMP] = ACTIONS(8904), - [anon_sym_DASH_GT] = ACTIONS(8904), - [anon_sym_PLUS_PLUS] = ACTIONS(8904), - [anon_sym_GT_GT] = ACTIONS(8904), - [anon_sym_DASH_DASH] = ACTIONS(8904), + [4165] = { + [anon_sym_LPAREN2] = ACTIONS(8868), + [anon_sym_DASH] = ACTIONS(8870), + [anon_sym_LBRACE] = ACTIONS(8868), + [anon_sym_RBRACK] = ACTIONS(8868), + [anon_sym_EQ_EQ] = ACTIONS(8868), + [anon_sym_PIPE] = ACTIONS(8870), + [anon_sym_LT] = ACTIONS(8870), + [anon_sym_AMP] = ACTIONS(8870), + [anon_sym_PLUS] = ACTIONS(8870), + [anon_sym_GT_EQ] = ACTIONS(8868), + [anon_sym_STAR] = ACTIONS(8868), + [anon_sym_SLASH] = ACTIONS(8870), + [anon_sym_CARET] = ACTIONS(8868), + [anon_sym_GT] = ACTIONS(8870), + [anon_sym_COMMA] = ACTIONS(8868), + [anon_sym_PIPE_PIPE] = ACTIONS(8868), + [anon_sym_DOT] = ACTIONS(8868), + [anon_sym_LT_LT] = ACTIONS(8868), + [anon_sym_LBRACK] = ACTIONS(8868), + [anon_sym_PERCENT] = ACTIONS(8868), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8868), + [anon_sym_LT_EQ] = ACTIONS(8868), + [anon_sym_BANG_EQ] = ACTIONS(8868), + [anon_sym_AMP_AMP] = ACTIONS(8868), + [anon_sym_DASH_GT] = ACTIONS(8868), + [anon_sym_PLUS_PLUS] = ACTIONS(8868), + [anon_sym_GT_GT] = ACTIONS(8868), + [anon_sym_DASH_DASH] = ACTIONS(8868), }, - [4196] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4166] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4197] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4547), - [sym_logical_expression] = STATE(4547), - [sym_bitwise_expression] = STATE(4547), - [sym_cast_expression] = STATE(4547), - [sym_new_expression] = STATE(4547), - [sym_field_expression] = STATE(4547), - [sym_compound_literal_expression] = STATE(4547), - [sym_char_literal] = STATE(4547), - [sym_template_function] = STATE(4547), - [sym_conditional_expression] = STATE(4547), - [sym_equality_expression] = STATE(4547), - [sym_relational_expression] = STATE(4547), - [sym_delete_expression] = STATE(4547), - [sym_sizeof_expression] = STATE(4547), - [sym_parenthesized_expression] = STATE(4547), - [sym_lambda_expression] = STATE(4547), - [sym_concatenated_string] = STATE(4547), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4547), - [sym_assignment_expression] = STATE(4547), - [sym_pointer_expression] = STATE(4547), - [sym_shift_expression] = STATE(4547), - [sym_math_expression] = STATE(4547), - [sym_call_expression] = STATE(4547), - [sym_lambda_capture_specifier] = STATE(196), + [4167] = { + [sym_template_function] = STATE(4518), + [sym__expression] = STATE(4518), + [sym_logical_expression] = STATE(4518), + [sym_bitwise_expression] = STATE(4518), + [sym_cast_expression] = STATE(4518), + [sym_delete_expression] = STATE(4518), + [sym_field_expression] = STATE(4518), + [sym_compound_literal_expression] = STATE(4518), + [sym_lambda_expression] = STATE(4518), + [sym_char_literal] = STATE(4518), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4518), + [sym_equality_expression] = STATE(4518), + [sym_relational_expression] = STATE(4518), + [sym_sizeof_expression] = STATE(4518), + [sym_subscript_expression] = STATE(4518), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9843), - [anon_sym_DASH] = ACTIONS(3424), - [sym_true] = ACTIONS(9845), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [sym_null] = ACTIONS(9845), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9843), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9845), - [sym_nullptr] = ACTIONS(9845), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), + [sym_parenthesized_expression] = STATE(4518), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(4518), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4518), + [sym_pointer_expression] = STATE(4518), + [sym_shift_expression] = STATE(4518), + [sym_math_expression] = STATE(4518), + [sym_call_expression] = STATE(4518), + [sym_new_expression] = STATE(4518), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9809), + [anon_sym_DASH] = ACTIONS(3434), + [sym_true] = ACTIONS(9811), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [sym_null] = ACTIONS(9811), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9809), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9811), + [sym_nullptr] = ACTIONS(9811), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), }, - [4198] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(1738), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [4168] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(3426), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_DASH_GT] = ACTIONS(4127), - [sym_raw_string_literal] = ACTIONS(5267), - [sym_true] = ACTIONS(5269), - [sym_null] = ACTIONS(5269), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(9847), - [anon_sym_AMP] = ACTIONS(8983), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(8983), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5267), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5269), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_RPAREN] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(1736), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_DASH_GT] = ACTIONS(4125), + [sym_raw_string_literal] = ACTIONS(5266), + [sym_true] = ACTIONS(5268), + [sym_null] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(9813), + [anon_sym_AMP] = ACTIONS(8947), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(8947), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5266), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [4199] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(9849), + [4169] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9815), }, - [4200] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_RPAREN] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4170] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(7674), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(7684), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4201] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4549), - [sym_logical_expression] = STATE(4549), - [sym_bitwise_expression] = STATE(4549), - [sym_cast_expression] = STATE(4549), - [sym_new_expression] = STATE(4549), - [sym_field_expression] = STATE(4549), - [sym_compound_literal_expression] = STATE(4549), - [sym_char_literal] = STATE(4549), - [sym_template_function] = STATE(4549), - [sym_conditional_expression] = STATE(4549), - [sym_equality_expression] = STATE(4549), - [sym_relational_expression] = STATE(4549), - [sym_delete_expression] = STATE(4549), - [sym_sizeof_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_lambda_expression] = STATE(4549), - [sym_concatenated_string] = STATE(4549), - [sym_string_literal] = STATE(1738), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4549), - [sym_assignment_expression] = STATE(4549), - [sym_pointer_expression] = STATE(4549), - [sym_shift_expression] = STATE(4549), - [sym_math_expression] = STATE(4549), - [sym_call_expression] = STATE(4549), - [sym_lambda_capture_specifier] = STATE(196), + [4171] = { + [sym_template_function] = STATE(4520), + [sym__expression] = STATE(4520), + [sym_logical_expression] = STATE(4520), + [sym_bitwise_expression] = STATE(4520), + [sym_cast_expression] = STATE(4520), + [sym_delete_expression] = STATE(4520), + [sym_field_expression] = STATE(4520), + [sym_compound_literal_expression] = STATE(4520), + [sym_lambda_expression] = STATE(4520), + [sym_char_literal] = STATE(4520), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4520), + [sym_equality_expression] = STATE(4520), + [sym_relational_expression] = STATE(4520), + [sym_sizeof_expression] = STATE(4520), + [sym_subscript_expression] = STATE(4520), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9851), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(3426), - [sym_true] = ACTIONS(9853), - [sym_null] = ACTIONS(9853), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9851), - [anon_sym_COLON_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3430), - [sym_false] = ACTIONS(9853), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(9853), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3438), + [sym_parenthesized_expression] = STATE(4520), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1736), + [sym_concatenated_string] = STATE(4520), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4520), + [sym_pointer_expression] = STATE(4520), + [sym_shift_expression] = STATE(4520), + [sym_math_expression] = STATE(4520), + [sym_call_expression] = STATE(4520), + [sym_new_expression] = STATE(4520), + [sym_raw_string_literal] = ACTIONS(9817), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [sym_true] = ACTIONS(9819), + [sym_null] = ACTIONS(9819), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9817), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3440), + [sym_false] = ACTIONS(9819), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(9819), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), }, - [4202] = { - [sym_new_declarator] = STATE(3532), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(5646), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_RPAREN] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7549), + [4172] = { + [sym_new_declarator] = STATE(3504), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(5652), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_PERCENT] = ACTIONS(7530), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_RPAREN] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7530), }, - [4203] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_PERCENT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4173] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4204] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4551), - [sym_logical_expression] = STATE(4551), - [sym_bitwise_expression] = STATE(4551), - [sym_cast_expression] = STATE(4551), - [sym_new_expression] = STATE(4551), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4551), - [sym_char_literal] = STATE(4551), - [sym_template_function] = STATE(4551), - [sym_conditional_expression] = STATE(4551), - [sym_equality_expression] = STATE(4551), - [sym_relational_expression] = STATE(4551), - [sym_delete_expression] = STATE(4551), - [sym_sizeof_expression] = STATE(4551), - [sym_parenthesized_expression] = STATE(4551), - [sym_lambda_expression] = STATE(4551), - [sym_concatenated_string] = STATE(4551), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4551), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4551), - [sym_math_expression] = STATE(4551), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9855), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(9857), - [sym_null] = ACTIONS(9857), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9855), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(9857), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(9857), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(9859), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4174] = { + [sym_template_function] = STATE(4522), + [sym__expression] = STATE(4522), + [sym_logical_expression] = STATE(4522), + [sym_bitwise_expression] = STATE(4522), + [sym_cast_expression] = STATE(4522), + [sym_delete_expression] = STATE(4522), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4522), + [sym_lambda_expression] = STATE(4522), + [sym_char_literal] = STATE(4522), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4522), + [sym_equality_expression] = STATE(4522), + [sym_relational_expression] = STATE(4522), + [sym_sizeof_expression] = STATE(4522), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4522), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4522), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4522), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4522), + [sym_math_expression] = STATE(4522), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4522), + [sym_raw_string_literal] = ACTIONS(9821), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(9823), + [sym_null] = ACTIONS(9823), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9821), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(9823), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(9823), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(9825), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4205] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(9861), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4175] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(9827), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4206] = { - [anon_sym_COLON] = ACTIONS(9863), + [4176] = { + [anon_sym_COLON] = ACTIONS(9829), [sym_comment] = ACTIONS(3), }, - [4207] = { - [aux_sym_try_statement_repeat1] = STATE(4554), - [sym_catch_clause] = STATE(4554), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [sym_operator_name] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [ts_builtin_sym_end] = ACTIONS(3154), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [4177] = { + [sym_catch_clause] = STATE(4525), + [aux_sym_try_statement_repeat1] = STATE(4525), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [sym_preproc_directive] = ACTIONS(3154), + [aux_sym_preproc_if_token1] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [sym_operator_name] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [aux_sym_preproc_include_token1] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_template] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [ts_builtin_sym_end] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, - [4208] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9865), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4178] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(9831), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4209] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4556), - [sym_logical_expression] = STATE(4556), - [sym_bitwise_expression] = STATE(4556), - [sym_cast_expression] = STATE(4556), - [sym_new_expression] = STATE(4556), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4556), - [sym_char_literal] = STATE(4556), - [sym_template_function] = STATE(4556), - [sym_conditional_expression] = STATE(4556), - [sym_equality_expression] = STATE(4556), - [sym_relational_expression] = STATE(4556), - [sym_delete_expression] = STATE(4556), - [sym_sizeof_expression] = STATE(4556), - [sym_parenthesized_expression] = STATE(4556), - [sym_lambda_expression] = STATE(4556), - [sym_concatenated_string] = STATE(4556), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4556), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4556), - [sym_math_expression] = STATE(4556), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9867), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(9869), - [sym_null] = ACTIONS(9869), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9867), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(9869), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(9869), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4179] = { + [sym_template_function] = STATE(4527), + [sym__expression] = STATE(4527), + [sym_logical_expression] = STATE(4527), + [sym_bitwise_expression] = STATE(4527), + [sym_cast_expression] = STATE(4527), + [sym_delete_expression] = STATE(4527), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4527), + [sym_lambda_expression] = STATE(4527), + [sym_char_literal] = STATE(4527), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4527), + [sym_equality_expression] = STATE(4527), + [sym_relational_expression] = STATE(4527), + [sym_sizeof_expression] = STATE(4527), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4527), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4527), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4527), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4527), + [sym_math_expression] = STATE(4527), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4527), + [sym_raw_string_literal] = ACTIONS(9833), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(9835), + [sym_null] = ACTIONS(9835), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9833), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(9835), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(9835), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4210] = { - [anon_sym_DASH] = ACTIONS(9871), - [sym_raw_string_literal] = ACTIONS(9873), - [anon_sym_else] = ACTIONS(9871), - [sym_true] = ACTIONS(9871), - [anon_sym_mutable] = ACTIONS(9871), - [sym_null] = ACTIONS(9871), - [anon_sym_break] = ACTIONS(9871), - [anon_sym_BANG] = ACTIONS(9873), - [anon_sym_sizeof] = ACTIONS(9871), - [anon_sym_volatile] = ACTIONS(9871), - [anon_sym_PLUS] = ACTIONS(9871), - [anon_sym_typedef] = ACTIONS(9871), - [anon_sym_switch] = ACTIONS(9871), - [anon_sym_explicit] = ACTIONS(9871), - [sym_identifier] = ACTIONS(9871), - [anon_sym_delete] = ACTIONS(9871), - [anon_sym_continue] = ACTIONS(9871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9871), - [anon_sym__Atomic] = ACTIONS(9871), - [sym_number_literal] = ACTIONS(9873), - [anon_sym_extern] = ACTIONS(9871), - [anon_sym_enum] = ACTIONS(9871), - [anon_sym_constexpr] = ACTIONS(9871), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9873), - [anon_sym_namespace] = ACTIONS(9871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9871), - [anon_sym_SQUOTE] = ACTIONS(9873), - [anon_sym_LBRACE] = ACTIONS(9873), - [anon_sym_DASH_DASH] = ACTIONS(9873), - [anon_sym_LPAREN2] = ACTIONS(9873), - [anon_sym_struct] = ACTIONS(9871), - [sym_auto] = ACTIONS(9871), - [anon_sym_signed] = ACTIONS(9871), - [anon_sym_long] = ACTIONS(9871), - [anon_sym_COLON_COLON] = ACTIONS(9873), - [anon_sym_using] = ACTIONS(9871), - [sym_preproc_directive] = ACTIONS(9871), - [aux_sym_preproc_if_token1] = ACTIONS(9871), - [anon_sym_AMP] = ACTIONS(9871), - [anon_sym_static] = ACTIONS(9871), - [anon_sym_RBRACE] = ACTIONS(9873), - [anon_sym_STAR] = ACTIONS(9873), - [anon_sym_union] = ACTIONS(9871), - [anon_sym_typename] = ACTIONS(9871), - [anon_sym_short] = ACTIONS(9871), - [anon_sym_new] = ACTIONS(9871), - [anon_sym_goto] = ACTIONS(9871), - [sym_operator_name] = ACTIONS(9873), - [anon_sym_while] = ACTIONS(9871), - [anon_sym_try] = ACTIONS(9871), - [anon_sym_for] = ACTIONS(9871), - [aux_sym_preproc_include_token1] = ACTIONS(9871), - [anon_sym_register] = ACTIONS(9871), - [anon_sym_DQUOTE] = ACTIONS(9873), - [anon_sym_const] = ACTIONS(9871), - [anon_sym_LBRACK] = ACTIONS(9871), - [anon_sym_class] = ACTIONS(9871), - [anon_sym_if] = ACTIONS(9871), - [sym_primitive_type] = ACTIONS(9871), - [sym_false] = ACTIONS(9871), - [sym_nullptr] = ACTIONS(9871), - [anon_sym_do] = ACTIONS(9871), - [anon_sym_template] = ACTIONS(9871), - [anon_sym_return] = ACTIONS(9871), - [anon_sym_TILDE] = ACTIONS(9873), - [anon_sym_SEMI] = ACTIONS(9873), - [ts_builtin_sym_end] = ACTIONS(9873), - [aux_sym_preproc_def_token1] = ACTIONS(9871), - [anon_sym_AMP_AMP] = ACTIONS(9873), - [anon_sym_inline] = ACTIONS(9871), - [anon_sym_PLUS_PLUS] = ACTIONS(9873), - [anon_sym_restrict] = ACTIONS(9871), + [4180] = { + [anon_sym_DASH] = ACTIONS(9837), + [sym_raw_string_literal] = ACTIONS(9839), + [anon_sym_else] = ACTIONS(9837), + [sym_true] = ACTIONS(9837), + [anon_sym_mutable] = ACTIONS(9837), + [sym_null] = ACTIONS(9837), + [anon_sym_break] = ACTIONS(9837), + [anon_sym_BANG] = ACTIONS(9839), + [anon_sym_sizeof] = ACTIONS(9837), + [anon_sym_volatile] = ACTIONS(9837), + [anon_sym_PLUS] = ACTIONS(9837), + [anon_sym_typedef] = ACTIONS(9837), + [anon_sym_switch] = ACTIONS(9837), + [anon_sym_explicit] = ACTIONS(9837), + [sym_identifier] = ACTIONS(9837), + [anon_sym_delete] = ACTIONS(9837), + [anon_sym_continue] = ACTIONS(9837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9837), + [anon_sym__Atomic] = ACTIONS(9837), + [sym_number_literal] = ACTIONS(9839), + [anon_sym_extern] = ACTIONS(9837), + [anon_sym_enum] = ACTIONS(9837), + [anon_sym_constexpr] = ACTIONS(9837), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9839), + [anon_sym_namespace] = ACTIONS(9837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9837), + [anon_sym_SQUOTE] = ACTIONS(9839), + [anon_sym_LBRACE] = ACTIONS(9839), + [anon_sym_DASH_DASH] = ACTIONS(9839), + [anon_sym_LPAREN2] = ACTIONS(9839), + [anon_sym_struct] = ACTIONS(9837), + [sym_auto] = ACTIONS(9837), + [anon_sym_signed] = ACTIONS(9837), + [anon_sym_long] = ACTIONS(9837), + [anon_sym_COLON_COLON] = ACTIONS(9839), + [anon_sym_using] = ACTIONS(9837), + [sym_preproc_directive] = ACTIONS(9837), + [aux_sym_preproc_if_token1] = ACTIONS(9837), + [anon_sym_AMP] = ACTIONS(9837), + [anon_sym_static] = ACTIONS(9837), + [anon_sym_RBRACE] = ACTIONS(9839), + [anon_sym_STAR] = ACTIONS(9839), + [anon_sym_union] = ACTIONS(9837), + [anon_sym_typename] = ACTIONS(9837), + [anon_sym_short] = ACTIONS(9837), + [anon_sym_new] = ACTIONS(9837), + [anon_sym_goto] = ACTIONS(9837), + [sym_operator_name] = ACTIONS(9839), + [anon_sym_while] = ACTIONS(9837), + [anon_sym_try] = ACTIONS(9837), + [anon_sym_for] = ACTIONS(9837), + [aux_sym_preproc_include_token1] = ACTIONS(9837), + [anon_sym_register] = ACTIONS(9837), + [anon_sym_DQUOTE] = ACTIONS(9839), + [anon_sym_const] = ACTIONS(9837), + [anon_sym_LBRACK] = ACTIONS(9837), + [anon_sym_class] = ACTIONS(9837), + [anon_sym_if] = ACTIONS(9837), + [sym_primitive_type] = ACTIONS(9837), + [sym_false] = ACTIONS(9837), + [sym_nullptr] = ACTIONS(9837), + [anon_sym_do] = ACTIONS(9837), + [anon_sym_template] = ACTIONS(9837), + [anon_sym_return] = ACTIONS(9837), + [anon_sym_TILDE] = ACTIONS(9839), + [anon_sym_SEMI] = ACTIONS(9839), + [ts_builtin_sym_end] = ACTIONS(9839), + [aux_sym_preproc_def_token1] = ACTIONS(9837), + [anon_sym_AMP_AMP] = ACTIONS(9839), + [anon_sym_inline] = ACTIONS(9837), + [anon_sym_PLUS_PLUS] = ACTIONS(9839), + [anon_sym_restrict] = ACTIONS(9837), }, - [4211] = { - [sym_do_statement] = STATE(4557), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4181] = { + [sym_do_statement] = STATE(4528), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4557), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_switch_statement] = STATE(4557), - [sym_for_statement] = STATE(4557), - [sym_return_statement] = STATE(4557), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4528), + [sym_try_statement] = STATE(4528), + [sym_if_statement] = STATE(4528), + [sym_switch_statement] = STATE(4528), + [sym_for_statement] = STATE(4528), + [sym_return_statement] = STATE(4528), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4557), - [sym_break_statement] = STATE(4557), - [sym_continue_statement] = STATE(4557), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4528), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4557), - [sym_labeled_statement] = STATE(4557), - [sym_expression_statement] = STATE(4557), - [sym_while_statement] = STATE(4557), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4528), + [sym_for_range_loop] = STATE(4528), + [sym_compound_statement] = STATE(4528), + [sym_labeled_statement] = STATE(4528), + [sym_expression_statement] = STATE(4528), + [sym_while_statement] = STATE(4528), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -171222,7 +170577,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -171246,754 +170601,754 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4212] = { - [anon_sym_else] = ACTIONS(8910), - [anon_sym_while] = ACTIONS(8910), + [4182] = { + [anon_sym_else] = ACTIONS(8874), + [anon_sym_while] = ACTIONS(8874), [sym_comment] = ACTIONS(3), }, - [4213] = { - [sym_do_statement] = STATE(4558), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4183] = { + [sym_do_statement] = STATE(4529), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4558), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4558), - [sym_if_statement] = STATE(4558), - [sym_switch_statement] = STATE(4558), - [sym_for_statement] = STATE(4558), - [sym_return_statement] = STATE(4558), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4529), + [sym_try_statement] = STATE(4529), + [sym_if_statement] = STATE(4529), + [sym_switch_statement] = STATE(4529), + [sym_for_statement] = STATE(4529), + [sym_return_statement] = STATE(4529), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4558), - [sym_break_statement] = STATE(4558), - [sym_continue_statement] = STATE(4558), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4529), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4558), - [sym_labeled_statement] = STATE(4558), - [sym_expression_statement] = STATE(4558), - [sym_while_statement] = STATE(4558), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4529), + [sym_for_range_loop] = STATE(4529), + [sym_compound_statement] = STATE(4529), + [sym_labeled_statement] = STATE(4529), + [sym_expression_statement] = STATE(4529), + [sym_while_statement] = STATE(4529), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4214] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(9875), + [4184] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(9841), [sym_comment] = ACTIONS(3), }, - [4215] = { - [aux_sym_for_statement_repeat1] = STATE(4560), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(9875), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4185] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4531), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(9841), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4216] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4561), - [sym_logical_expression] = STATE(4561), - [sym_bitwise_expression] = STATE(4561), - [sym_cast_expression] = STATE(4561), - [sym_new_expression] = STATE(4561), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4561), - [sym_char_literal] = STATE(4561), - [sym_template_function] = STATE(4561), - [sym_conditional_expression] = STATE(4561), - [sym_equality_expression] = STATE(4561), - [sym_relational_expression] = STATE(4561), - [sym_delete_expression] = STATE(4561), - [sym_sizeof_expression] = STATE(4561), - [sym_parenthesized_expression] = STATE(4561), - [sym_lambda_expression] = STATE(4561), - [sym_concatenated_string] = STATE(4561), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4561), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4561), - [sym_math_expression] = STATE(4561), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9877), + [4186] = { + [sym_template_function] = STATE(4532), + [sym__expression] = STATE(4532), + [sym_logical_expression] = STATE(4532), + [sym_bitwise_expression] = STATE(4532), + [sym_cast_expression] = STATE(4532), + [sym_delete_expression] = STATE(4532), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4532), + [sym_lambda_expression] = STATE(4532), + [sym_char_literal] = STATE(4532), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4532), + [sym_equality_expression] = STATE(4532), + [sym_relational_expression] = STATE(4532), + [sym_sizeof_expression] = STATE(4532), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4532), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4532), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4532), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4532), + [sym_math_expression] = STATE(4532), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4532), + [sym_raw_string_literal] = ACTIONS(9843), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(9879), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(9879), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(9845), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(9845), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9877), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(9843), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(9879), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(9879), + [sym_false] = ACTIONS(9845), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(9845), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(9875), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(9841), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4217] = { - [sym_do_statement] = STATE(4562), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4187] = { + [sym_do_statement] = STATE(4533), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4562), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4562), - [sym_if_statement] = STATE(4562), - [sym_switch_statement] = STATE(4562), - [sym_for_statement] = STATE(4562), - [sym_return_statement] = STATE(4562), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4533), + [sym_try_statement] = STATE(4533), + [sym_if_statement] = STATE(4533), + [sym_switch_statement] = STATE(4533), + [sym_for_statement] = STATE(4533), + [sym_return_statement] = STATE(4533), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4562), - [sym_break_statement] = STATE(4562), - [sym_continue_statement] = STATE(4562), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4533), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4562), - [sym_labeled_statement] = STATE(4562), - [sym_expression_statement] = STATE(4562), - [sym_while_statement] = STATE(4562), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4533), + [sym_for_range_loop] = STATE(4533), + [sym_compound_statement] = STATE(4533), + [sym_labeled_statement] = STATE(4533), + [sym_expression_statement] = STATE(4533), + [sym_while_statement] = STATE(4533), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4218] = { - [sym_do_statement] = STATE(1764), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4188] = { + [sym_do_statement] = STATE(1762), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(1764), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(1764), - [sym_if_statement] = STATE(1764), - [sym_switch_statement] = STATE(1764), - [sym_for_statement] = STATE(1764), - [sym_return_statement] = STATE(1764), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(1762), + [sym_try_statement] = STATE(1762), + [sym_if_statement] = STATE(1762), + [sym_switch_statement] = STATE(1762), + [sym_for_statement] = STATE(1762), + [sym_return_statement] = STATE(1762), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(1764), - [sym_break_statement] = STATE(1764), - [sym_continue_statement] = STATE(1764), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(1762), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(1764), - [sym_labeled_statement] = STATE(1764), - [sym_expression_statement] = STATE(1764), - [sym_while_statement] = STATE(1764), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(1762), + [sym_for_range_loop] = STATE(1762), + [sym_compound_statement] = STATE(1762), + [sym_labeled_statement] = STATE(1762), + [sym_expression_statement] = STATE(1762), + [sym_while_statement] = STATE(1762), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4219] = { - [sym_do_statement] = STATE(1766), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4189] = { + [sym_do_statement] = STATE(1764), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(1766), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(1766), - [sym_if_statement] = STATE(1766), - [sym_switch_statement] = STATE(1766), - [sym_for_statement] = STATE(1766), - [sym_return_statement] = STATE(1766), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(1764), + [sym_try_statement] = STATE(1764), + [sym_if_statement] = STATE(1764), + [sym_switch_statement] = STATE(1764), + [sym_for_statement] = STATE(1764), + [sym_return_statement] = STATE(1764), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(1766), - [sym_break_statement] = STATE(1766), - [sym_continue_statement] = STATE(1766), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(1764), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(1766), - [sym_labeled_statement] = STATE(1766), - [sym_expression_statement] = STATE(1766), - [sym_while_statement] = STATE(1766), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(1764), + [sym_for_range_loop] = STATE(1764), + [sym_compound_statement] = STATE(1764), + [sym_labeled_statement] = STATE(1764), + [sym_expression_statement] = STATE(1764), + [sym_while_statement] = STATE(1764), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4220] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(4564), - [sym_logical_expression] = STATE(4564), - [sym_bitwise_expression] = STATE(4564), - [sym_cast_expression] = STATE(4564), - [sym_new_expression] = STATE(4564), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4564), - [sym_declaration] = STATE(4563), - [sym_char_literal] = STATE(4564), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(4564), - [sym_conditional_expression] = STATE(4564), - [sym_equality_expression] = STATE(4564), - [sym_relational_expression] = STATE(4564), - [sym_sizeof_expression] = STATE(4564), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(4564), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(4564), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(4564), - [sym_lambda_expression] = STATE(4564), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(4565), - [sym_assignment_expression] = STATE(4564), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4564), - [sym_math_expression] = STATE(4564), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [4190] = { + [sym_template_function] = STATE(4535), + [sym__expression] = STATE(4535), + [sym_logical_expression] = STATE(4535), + [sym_bitwise_expression] = STATE(4535), + [sym_cast_expression] = STATE(4535), + [sym_delete_expression] = STATE(4535), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(4535), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(4535), + [sym_lambda_expression] = STATE(4535), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(4534), + [sym_for_range_declaration] = STATE(4536), + [sym_conditional_expression] = STATE(4535), + [sym_equality_expression] = STATE(4535), + [sym_relational_expression] = STATE(4535), + [sym_sizeof_expression] = STATE(4535), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(4535), + [sym_concatenated_string] = STATE(4535), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(9881), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(4535), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4535), + [sym_math_expression] = STATE(4535), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4535), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(9847), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(9883), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(9849), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(9883), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(9849), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(9881), + [sym_number_literal] = ACTIONS(9847), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(9883), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(9849), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(9883), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(9849), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(9885), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(9851), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4221] = { - [aux_sym_try_statement_repeat1] = STATE(4566), - [sym_catch_clause] = STATE(4566), - [anon_sym_catch] = ACTIONS(3506), + [4191] = { + [sym_catch_clause] = STATE(4537), + [aux_sym_try_statement_repeat1] = STATE(4537), + [anon_sym_catch] = ACTIONS(3516), [sym_comment] = ACTIONS(3), }, - [4222] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4567), - [sym_logical_expression] = STATE(4567), - [sym_bitwise_expression] = STATE(4567), - [sym_cast_expression] = STATE(4567), - [sym_new_expression] = STATE(4567), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4567), - [sym_char_literal] = STATE(4567), - [sym_template_function] = STATE(4567), - [sym_conditional_expression] = STATE(4567), - [sym_equality_expression] = STATE(4567), - [sym_relational_expression] = STATE(4567), - [sym_delete_expression] = STATE(4567), - [sym_sizeof_expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(4567), - [sym_lambda_expression] = STATE(4567), - [sym_concatenated_string] = STATE(4567), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4567), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4567), - [sym_math_expression] = STATE(4567), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(9887), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(9889), - [sym_null] = ACTIONS(9889), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(9887), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(9889), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(9889), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4192] = { + [sym_template_function] = STATE(4538), + [sym__expression] = STATE(4538), + [sym_logical_expression] = STATE(4538), + [sym_bitwise_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_delete_expression] = STATE(4538), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4538), + [sym_lambda_expression] = STATE(4538), + [sym_char_literal] = STATE(4538), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4538), + [sym_equality_expression] = STATE(4538), + [sym_relational_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4538), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4538), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4538), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4538), + [sym_math_expression] = STATE(4538), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4538), + [sym_raw_string_literal] = ACTIONS(9853), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(9855), + [sym_null] = ACTIONS(9855), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9853), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(9855), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(9855), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4223] = { - [anon_sym_LPAREN2] = ACTIONS(9891), + [4193] = { + [anon_sym_LPAREN2] = ACTIONS(9857), [sym_comment] = ACTIONS(3), }, - [4224] = { - [sym_do_statement] = STATE(4569), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4194] = { + [sym_do_statement] = STATE(4540), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4569), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4569), - [sym_if_statement] = STATE(4569), - [sym_switch_statement] = STATE(4569), - [sym_for_statement] = STATE(4569), - [sym_return_statement] = STATE(4569), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4540), + [sym_try_statement] = STATE(4540), + [sym_if_statement] = STATE(4540), + [sym_switch_statement] = STATE(4540), + [sym_for_statement] = STATE(4540), + [sym_return_statement] = STATE(4540), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4569), - [sym_break_statement] = STATE(4569), - [sym_continue_statement] = STATE(4569), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4540), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4569), - [sym_labeled_statement] = STATE(4569), - [sym_expression_statement] = STATE(4569), - [sym_while_statement] = STATE(4569), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4540), + [sym_for_range_loop] = STATE(4540), + [sym_compound_statement] = STATE(4540), + [sym_labeled_statement] = STATE(4540), + [sym_expression_statement] = STATE(4540), + [sym_while_statement] = STATE(4540), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4225] = { + [4195] = { [sym_comment] = ACTIONS(3), - [anon_sym_while] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(9893), + [anon_sym_while] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(9859), }, - [4226] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4226), - [anon_sym_unsigned] = ACTIONS(9895), + [4196] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4196), + [anon_sym_unsigned] = ACTIONS(9861), [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(9895), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(9895), - [anon_sym_GT2] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(9895), - [sym_identifier] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), + [anon_sym_signed] = ACTIONS(9861), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(9861), + [anon_sym_GT2] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(9861), + [sym_identifier] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), }, - [4227] = { - [sym_parameter_list] = STATE(3672), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_GT2] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(4958), + [4197] = { + [sym_parameter_list] = STATE(3644), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_GT2] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(4954), [sym_comment] = ACTIONS(3), }, - [4228] = { - [sym_union_specifier] = STATE(4573), - [sym_macro_type_specifier] = STATE(4573), - [sym_class_specifier] = STATE(4573), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(4573), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(4573), - [aux_sym_sized_type_specifier_repeat1] = STATE(4572), - [sym_struct_specifier] = STATE(4573), - [sym_enum_specifier] = STATE(4573), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(4573), - [anon_sym_unsigned] = ACTIONS(9898), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(9900), - [anon_sym_signed] = ACTIONS(9898), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(9898), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(9902), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(9898), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(9900), + [4198] = { + [sym_union_specifier] = STATE(4544), + [sym_macro_type_specifier] = STATE(4544), + [sym_class_specifier] = STATE(4544), + [aux_sym_sized_type_specifier_repeat1] = STATE(4543), + [sym_sized_type_specifier] = STATE(4544), + [sym__type_specifier] = STATE(4544), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(4544), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(4544), + [sym_struct_specifier] = STATE(4544), + [anon_sym_unsigned] = ACTIONS(9864), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(9866), + [anon_sym_signed] = ACTIONS(9864), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(9864), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(9868), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(9864), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(9866), }, - [4229] = { - [sym_virtual_specifier] = STATE(4574), - [aux_sym_function_declarator_repeat1] = STATE(4574), - [sym_trailing_return_type] = STATE(4574), - [sym_type_qualifier] = STATE(4574), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(9904), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4011), - [anon_sym__Atomic] = ACTIONS(1062), + [4199] = { + [sym_virtual_specifier] = STATE(4545), + [aux_sym_function_declarator_repeat1] = STATE(4545), + [sym_type_qualifier] = STATE(4545), + [sym_trailing_return_type] = STATE(4545), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(9870), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4059), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4011), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(4059), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(9037), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(9001), + [anon_sym_restrict] = ACTIONS(1070), }, - [4230] = { - [sym_type_qualifier] = STATE(4230), - [aux_sym_type_definition_repeat1] = STATE(4230), + [4200] = { + [aux_sym_type_definition_repeat1] = STATE(4200), + [sym_type_qualifier] = STATE(4200), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_mutable] = ACTIONS(2103), [anon_sym__Atomic] = ACTIONS(2103), @@ -172013,3064 +171368,3110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(2103), [sym_operator_name] = ACTIONS(2106), }, - [4231] = { - [sym_union_specifier] = STATE(1117), - [sym_macro_type_specifier] = STATE(1117), - [sym_class_specifier] = STATE(1117), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1117), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1117), - [aux_sym_sized_type_specifier_repeat1] = STATE(4232), - [sym_struct_specifier] = STATE(1117), - [sym_enum_specifier] = STATE(1117), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(1117), - [anon_sym_unsigned] = ACTIONS(9041), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(2246), - [anon_sym_signed] = ACTIONS(9041), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(9041), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(9045), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(9041), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(2246), - }, - [4232] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4575), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(9906), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_long] = ACTIONS(9906), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_GT2] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(9906), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_short] = ACTIONS(9906), - [sym_identifier] = ACTIONS(2351), + [4201] = { + [sym_union_specifier] = STATE(1113), + [sym_macro_type_specifier] = STATE(1113), + [sym_class_specifier] = STATE(1113), + [aux_sym_sized_type_specifier_repeat1] = STATE(4202), + [sym_sized_type_specifier] = STATE(1113), + [sym__type_specifier] = STATE(1113), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(1113), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1113), + [sym_struct_specifier] = STATE(1113), + [anon_sym_unsigned] = ACTIONS(9005), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(9005), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(9005), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(9009), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(9005), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(2248), }, - [4233] = { - [sym_parameter_list] = STATE(4578), - [sym_abstract_array_declarator] = STATE(4579), - [sym_abstract_pointer_declarator] = STATE(4579), - [sym_abstract_reference_declarator] = STATE(4579), - [sym_abstract_function_declarator] = STATE(4579), - [sym__abstract_declarator] = STATE(4579), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym_COMMA] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_GT2] = ACTIONS(6210), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9908), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(9910), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(9912), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_restrict] = ACTIONS(6210), + [4202] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4546), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(9872), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_long] = ACTIONS(9872), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_GT2] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(9872), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_short] = ACTIONS(9872), + [sym_identifier] = ACTIONS(2343), }, - [4234] = { - [sym_virtual_specifier] = STATE(4234), - [aux_sym_function_declarator_repeat1] = STATE(4234), - [sym_trailing_return_type] = STATE(4234), - [sym_type_qualifier] = STATE(4234), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(9914), - [anon_sym_mutable] = ACTIONS(7266), - [anon_sym_COMMA] = ACTIONS(6220), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_const] = ACTIONS(7269), - [anon_sym_GT2] = ACTIONS(6220), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(7266), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7266), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_explicit] = ACTIONS(7266), - [anon_sym_DASH_GT] = ACTIONS(9917), - [anon_sym_EQ] = ACTIONS(6220), - [anon_sym_restrict] = ACTIONS(7266), + [4203] = { + [sym_abstract_reference_declarator] = STATE(4550), + [sym_abstract_array_declarator] = STATE(4550), + [sym_abstract_pointer_declarator] = STATE(4550), + [sym_parameter_list] = STATE(4549), + [sym_abstract_function_declarator] = STATE(4550), + [sym__abstract_declarator] = STATE(4550), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym_COMMA] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_GT2] = ACTIONS(6085), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9874), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(9876), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(9878), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_EQ] = ACTIONS(6085), + [anon_sym_restrict] = ACTIONS(6085), }, - [4235] = { - [sym_parameter_list] = STATE(4239), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), + [4204] = { + [sym_virtual_specifier] = STATE(4204), + [aux_sym_function_declarator_repeat1] = STATE(4204), + [sym_type_qualifier] = STATE(4204), + [sym_trailing_return_type] = STATE(4204), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(9880), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym_const] = ACTIONS(7250), + [anon_sym_GT2] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(7247), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_explicit] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(9883), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_restrict] = ACTIONS(7247), }, - [4236] = { - [sym_abstract_array_declarator] = STATE(4581), - [sym_parameter_list] = STATE(3682), - [sym_abstract_reference_declarator] = STATE(4581), - [sym_abstract_function_declarator] = STATE(4581), - [aux_sym_type_definition_repeat1] = STATE(4580), - [sym_abstract_pointer_declarator] = STATE(4581), - [sym_type_qualifier] = STATE(4580), - [sym__abstract_declarator] = STATE(4581), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [4205] = { + [sym_parameter_list] = STATE(4209), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_SEMI] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), + }, + [4206] = { + [sym_abstract_reference_declarator] = STATE(4552), + [aux_sym_type_definition_repeat1] = STATE(4551), + [sym_abstract_array_declarator] = STATE(4552), + [sym_parameter_list] = STATE(3654), + [sym_abstract_function_declarator] = STATE(4552), + [sym_abstract_pointer_declarator] = STATE(4552), + [sym_type_qualifier] = STATE(4551), + [sym__abstract_declarator] = STATE(4552), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7851), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(7853), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(7855), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7832), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(1070), }, - [4237] = { - [sym_parameter_list] = STATE(4239), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), + [4207] = { + [sym_parameter_list] = STATE(4209), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), }, - [4238] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4582), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4582), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(9920), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [4208] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4553), + [sym_type_qualifier] = STATE(4553), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(9886), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(3587), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(3602), + [anon_sym_restrict] = ACTIONS(1070), }, - [4239] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4583), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4583), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(9922), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [4209] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4554), + [sym_type_qualifier] = STATE(4554), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(9888), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(3587), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(3602), + [anon_sym_restrict] = ACTIONS(1070), }, - [4240] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(5829), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_SEMI] = ACTIONS(7469), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(5841), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4210] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(5836), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(5846), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_SEMI] = ACTIONS(7450), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4241] = { - [sym_new_declarator] = STATE(4145), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(5821), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_SEMI] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), + [4211] = { + [sym_new_declarator] = STATE(4115), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(5828), + [anon_sym_PERCENT] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), + [anon_sym_SEMI] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_EQ] = ACTIONS(7532), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), }, - [4242] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(5829), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5813), - [anon_sym_GT_EQ] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5815), - [anon_sym_SLASH] = ACTIONS(5815), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(9924), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_SEMI] = ACTIONS(8131), - [anon_sym_BANG_EQ] = ACTIONS(5827), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(5841), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4212] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(5836), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(5846), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(9890), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_SEMI] = ACTIONS(8176), + [anon_sym_BANG_EQ] = ACTIONS(5834), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(5824), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4243] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), + [4213] = { + [sym_parameter_list] = STATE(3672), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(4954), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(7469), - }, - [4244] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(4584), - [sym_logical_expression] = STATE(4584), - [sym_bitwise_expression] = STATE(4584), - [sym_cast_expression] = STATE(4584), - [sym_new_expression] = STATE(4584), - [sym_field_expression] = STATE(4584), - [sym_compound_literal_expression] = STATE(4584), - [sym_char_literal] = STATE(4584), - [sym_template_function] = STATE(4584), - [sym_conditional_expression] = STATE(4584), - [sym_equality_expression] = STATE(4584), - [sym_relational_expression] = STATE(4584), - [sym_delete_expression] = STATE(4584), - [sym_sizeof_expression] = STATE(4584), - [sym_parenthesized_expression] = STATE(4584), - [sym_lambda_expression] = STATE(4584), - [sym_concatenated_string] = STATE(4584), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(4584), - [sym_assignment_expression] = STATE(4584), - [sym_pointer_expression] = STATE(4584), - [sym_shift_expression] = STATE(4584), - [sym_math_expression] = STATE(4584), - [sym_call_expression] = STATE(4584), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9926), - [anon_sym_DASH] = ACTIONS(3800), - [sym_true] = ACTIONS(9928), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_null] = ACTIONS(9928), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(9926), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(3806), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9928), - [sym_nullptr] = ACTIONS(9928), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), }, - [4245] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(3545), - [sym_logical_expression] = STATE(3545), - [sym_bitwise_expression] = STATE(3545), - [sym_cast_expression] = STATE(3545), - [sym_new_expression] = STATE(3545), - [sym_field_expression] = STATE(3545), - [sym_compound_literal_expression] = STATE(3545), - [sym_char_literal] = STATE(3545), - [sym_template_function] = STATE(3545), - [sym_conditional_expression] = STATE(3545), - [sym_equality_expression] = STATE(3545), - [sym_relational_expression] = STATE(3545), - [sym_delete_expression] = STATE(3545), - [sym_sizeof_expression] = STATE(3545), - [sym_parenthesized_expression] = STATE(3545), - [sym_initializer_list] = STATE(3546), - [sym_concatenated_string] = STATE(3545), - [sym_string_literal] = STATE(1899), - [sym_lambda_expression] = STATE(3545), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(3545), - [sym_assignment_expression] = STATE(3545), - [sym_pointer_expression] = STATE(3545), - [sym_shift_expression] = STATE(3545), - [sym_math_expression] = STATE(3545), - [sym_call_expression] = STATE(3545), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [anon_sym_LPAREN2] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_DASH_DASH] = ACTIONS(3814), - [sym_raw_string_literal] = ACTIONS(7583), - [sym_true] = ACTIONS(7585), - [sym_null] = ACTIONS(7585), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(9930), - [anon_sym_AMP] = ACTIONS(9098), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(9098), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(1375), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(7583), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(7585), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(7585), - [anon_sym_TILDE] = ACTIONS(3810), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_RBRACK] = ACTIONS(4127), + [4214] = { + [sym_union_specifier] = STATE(4557), + [sym_macro_type_specifier] = STATE(4557), + [sym_class_specifier] = STATE(4557), + [aux_sym_sized_type_specifier_repeat1] = STATE(4556), + [sym_sized_type_specifier] = STATE(4557), + [sym__type_specifier] = STATE(4557), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(4557), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(4557), + [sym_struct_specifier] = STATE(4557), + [anon_sym_unsigned] = ACTIONS(9892), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(9894), + [anon_sym_signed] = ACTIONS(9892), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(9892), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(9896), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(9892), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(9894), }, - [4246] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(9932), + [4215] = { + [sym_virtual_specifier] = STATE(4558), + [aux_sym_function_declarator_repeat1] = STATE(4558), + [sym_type_qualifier] = STATE(4558), + [sym_trailing_return_type] = STATE(4558), + [anon_sym_LPAREN2] = ACTIONS(4059), + [sym_noexcept] = ACTIONS(9898), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4059), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(4059), + [anon_sym_DASH_GT] = ACTIONS(9043), + [anon_sym_restrict] = ACTIONS(1070), }, - [4247] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(7951), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(7959), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(7961), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(7963), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(4529), + [4216] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(4217), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(9045), + [anon_sym_struct] = ACTIONS(141), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(9045), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(9045), + [anon_sym_union] = ACTIONS(151), + [anon_sym_typename] = ACTIONS(9049), + [anon_sym_COLON_COLON] = ACTIONS(147), + [sym_identifier] = ACTIONS(155), + [anon_sym_short] = ACTIONS(9045), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_class] = ACTIONS(149), + [sym_primitive_type] = ACTIONS(358), }, - [4248] = { - [sym_template_type] = STATE(754), - [sym__expression] = STATE(4586), - [sym_logical_expression] = STATE(4586), - [sym_bitwise_expression] = STATE(4586), - [sym_cast_expression] = STATE(4586), - [sym_new_expression] = STATE(4586), - [sym_field_expression] = STATE(4586), - [sym_compound_literal_expression] = STATE(4586), - [sym_char_literal] = STATE(4586), - [sym_template_function] = STATE(4586), - [sym_conditional_expression] = STATE(4586), - [sym_equality_expression] = STATE(4586), - [sym_relational_expression] = STATE(4586), - [sym_delete_expression] = STATE(4586), - [sym_sizeof_expression] = STATE(4586), - [sym_parenthesized_expression] = STATE(4586), - [sym_lambda_expression] = STATE(4586), - [sym_concatenated_string] = STATE(4586), - [sym_string_literal] = STATE(1899), - [sym_scoped_identifier] = STATE(756), - [sym_scoped_type_identifier] = STATE(757), - [sym_subscript_expression] = STATE(4586), - [sym_assignment_expression] = STATE(4586), - [sym_pointer_expression] = STATE(4586), - [sym_shift_expression] = STATE(4586), - [sym_math_expression] = STATE(4586), - [sym_call_expression] = STATE(4586), - [sym_lambda_capture_specifier] = STATE(759), - [sym_scoped_namespace_identifier] = STATE(760), - [sym_raw_string_literal] = ACTIONS(9934), - [anon_sym_DASH] = ACTIONS(3800), - [anon_sym_LPAREN2] = ACTIONS(3802), - [sym_true] = ACTIONS(9936), - [sym_null] = ACTIONS(9936), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(9934), - [anon_sym_COLON_COLON] = ACTIONS(3804), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3806), - [sym_false] = ACTIONS(9936), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(9936), - [anon_sym_PLUS] = ACTIONS(3800), - [anon_sym_sizeof] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(3810), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(3812), - [anon_sym_PLUS_PLUS] = ACTIONS(3814), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_delete] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3814), + [4217] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4559), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(9900), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [sym_identifier] = ACTIONS(1066), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_long] = ACTIONS(9900), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(9900), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_short] = ACTIONS(9900), }, - [4249] = { - [sym_new_declarator] = STATE(4195), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(5991), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_RBRACK] = ACTIONS(7549), + [4218] = { + [sym_abstract_reference_declarator] = STATE(4563), + [sym_abstract_array_declarator] = STATE(4563), + [sym_abstract_pointer_declarator] = STATE(4563), + [sym_parameter_list] = STATE(4562), + [sym_abstract_function_declarator] = STATE(4563), + [sym__abstract_declarator] = STATE(4563), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym_COMMA] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9902), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(9904), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_RPAREN] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_EQ] = ACTIONS(6085), + [anon_sym_restrict] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(9906), }, - [4250] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3850), + [4219] = { + [sym_virtual_specifier] = STATE(4219), + [aux_sym_function_declarator_repeat1] = STATE(4219), + [sym_type_qualifier] = STATE(4219), + [sym_trailing_return_type] = STATE(4219), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(9908), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym_const] = ACTIONS(7250), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(7247), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(8131), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_explicit] = ACTIONS(7247), + [anon_sym_RPAREN] = ACTIONS(6286), + [anon_sym_DASH_GT] = ACTIONS(9911), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_restrict] = ACTIONS(7247), }, - [4251] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(7469), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4220] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4220), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_unsigned] = ACTIONS(9914), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(9914), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(9914), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(9914), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), }, - [4252] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_STAR_EQ] = ACTIONS(4983), - [anon_sym_LT_LT_EQ] = ACTIONS(4983), - [anon_sym_PERCENT_EQ] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_CARET_EQ] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SLASH_EQ] = ACTIONS(4983), - [anon_sym_PLUS_EQ] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_PIPE_EQ] = ACTIONS(4983), - [anon_sym_GT_GT_EQ] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(4981), + [4221] = { + [sym_abstract_reference_declarator] = STATE(2864), + [sym_abstract_array_declarator] = STATE(2864), + [sym_abstract_pointer_declarator] = STATE(2864), + [sym_parameter_list] = STATE(1886), + [sym_abstract_function_declarator] = STATE(2864), + [sym__abstract_declarator] = STATE(2864), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(9055), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(9057), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(9059), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_DASH_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_AMP_EQ] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(2959), }, - [4253] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4587), - [sym_logical_expression] = STATE(4587), - [sym_bitwise_expression] = STATE(4587), - [sym_cast_expression] = STATE(4587), - [sym_new_expression] = STATE(4587), - [sym_field_expression] = STATE(4587), - [sym_compound_literal_expression] = STATE(4587), - [sym_char_literal] = STATE(4587), - [sym_template_function] = STATE(4587), - [sym_conditional_expression] = STATE(4587), - [sym_equality_expression] = STATE(4587), - [sym_relational_expression] = STATE(4587), - [sym_delete_expression] = STATE(4587), - [sym_sizeof_expression] = STATE(4587), - [sym_parenthesized_expression] = STATE(4587), - [sym_lambda_expression] = STATE(4587), - [sym_concatenated_string] = STATE(4587), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4587), - [sym_assignment_expression] = STATE(4587), - [sym_pointer_expression] = STATE(4587), - [sym_shift_expression] = STATE(4587), - [sym_math_expression] = STATE(4587), - [sym_call_expression] = STATE(4587), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(9938), - [anon_sym_DASH] = ACTIONS(3880), - [sym_true] = ACTIONS(9940), - [anon_sym_DASH_DASH] = ACTIONS(3896), - [sym_null] = ACTIONS(9940), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9938), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(9940), - [sym_nullptr] = ACTIONS(9940), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), + [4222] = { + [sym_abstract_reference_declarator] = STATE(2867), + [aux_sym_type_definition_repeat1] = STATE(4564), + [sym_abstract_array_declarator] = STATE(2867), + [sym_parameter_list] = STATE(1886), + [sym_abstract_function_declarator] = STATE(2867), + [sym_abstract_pointer_declarator] = STATE(2867), + [sym_type_qualifier] = STATE(4564), + [sym__abstract_declarator] = STATE(2867), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9055), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(9057), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(9059), + [anon_sym_restrict] = ACTIONS(1070), }, - [4254] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4252), - [sym_logical_expression] = STATE(4252), - [sym_bitwise_expression] = STATE(4252), - [sym_cast_expression] = STATE(4252), - [sym_new_expression] = STATE(4252), - [sym_field_expression] = STATE(4252), - [sym_compound_literal_expression] = STATE(4252), - [sym_char_literal] = STATE(4252), - [sym_template_function] = STATE(4252), - [sym_conditional_expression] = STATE(4252), - [sym_equality_expression] = STATE(4252), - [sym_relational_expression] = STATE(4252), - [sym_delete_expression] = STATE(4252), - [sym_sizeof_expression] = STATE(4252), - [sym_parenthesized_expression] = STATE(4252), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(4252), - [sym_string_literal] = STATE(1936), - [sym_lambda_expression] = STATE(4252), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4252), - [sym_assignment_expression] = STATE(4252), - [sym_pointer_expression] = STATE(4252), - [sym_shift_expression] = STATE(4252), - [sym_math_expression] = STATE(4252), - [sym_call_expression] = STATE(4252), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3880), - [sym_raw_string_literal] = ACTIONS(9110), - [sym_true] = ACTIONS(9112), - [anon_sym_SQUOTE] = ACTIONS(332), - [sym_null] = ACTIONS(9112), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(9942), - [anon_sym_AMP] = ACTIONS(9137), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(9137), - [anon_sym_SLASH] = ACTIONS(4129), - [anon_sym_COLON] = ACTIONS(4129), - [sym_identifier] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9110), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(9112), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(9112), - [anon_sym_TILDE] = ACTIONS(3892), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [4223] = { + [sym_parameter_list] = STATE(2873), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(8038), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), }, - [4255] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(9944), + [4224] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(7450), }, - [4256] = { - [sym_argument_list] = STATE(3518), + [4225] = { + [sym_template_function] = STATE(4565), + [sym__expression] = STATE(4565), + [sym_logical_expression] = STATE(4565), + [sym_bitwise_expression] = STATE(4565), + [sym_cast_expression] = STATE(4565), + [sym_delete_expression] = STATE(4565), + [sym_field_expression] = STATE(4565), + [sym_compound_literal_expression] = STATE(4565), + [sym_lambda_expression] = STATE(4565), + [sym_char_literal] = STATE(4565), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), + [sym_conditional_expression] = STATE(4565), + [sym_equality_expression] = STATE(4565), + [sym_relational_expression] = STATE(4565), + [sym_sizeof_expression] = STATE(4565), + [sym_subscript_expression] = STATE(4565), + [sym_scoped_namespace_identifier] = STATE(760), + [sym_parenthesized_expression] = STATE(4565), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(4565), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(4565), + [sym_pointer_expression] = STATE(4565), + [sym_shift_expression] = STATE(4565), + [sym_math_expression] = STATE(4565), + [sym_call_expression] = STATE(4565), + [sym_new_expression] = STATE(4565), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9917), + [anon_sym_DASH] = ACTIONS(3758), + [sym_true] = ACTIONS(9919), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_null] = ACTIONS(9919), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(9917), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9919), + [sym_nullptr] = ACTIONS(9919), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + }, + [4226] = { + [sym_template_function] = STATE(3517), + [sym__expression] = STATE(3517), + [sym_logical_expression] = STATE(3517), + [sym_bitwise_expression] = STATE(3517), + [sym_cast_expression] = STATE(3517), + [sym_delete_expression] = STATE(3517), + [sym_field_expression] = STATE(3517), + [sym_compound_literal_expression] = STATE(3517), + [sym_lambda_expression] = STATE(3517), + [sym_char_literal] = STATE(3517), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), + [sym_conditional_expression] = STATE(3517), + [sym_equality_expression] = STATE(3517), + [sym_relational_expression] = STATE(3517), + [sym_sizeof_expression] = STATE(3517), + [sym_subscript_expression] = STATE(3517), + [sym_scoped_namespace_identifier] = STATE(760), [sym_initializer_list] = STATE(3518), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(5349), - [anon_sym_LT_LT_EQ] = ACTIONS(5349), - [anon_sym_PERCENT_EQ] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5351), - [anon_sym_LT] = ACTIONS(5351), - [anon_sym_CARET_EQ] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5351), - [anon_sym_GT_EQ] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5351), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SLASH_EQ] = ACTIONS(5349), - [anon_sym_PLUS_EQ] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5351), - [anon_sym_PIPE_EQ] = ACTIONS(5349), - [anon_sym_GT_GT_EQ] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5349), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_DASH_EQ] = ACTIONS(5349), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_BANG_EQ] = ACTIONS(5349), - [anon_sym_AMP_EQ] = ACTIONS(5349), - [anon_sym_AMP_AMP] = ACTIONS(5349), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5351), - [anon_sym_DASH_DASH] = ACTIONS(5349), + [sym_parenthesized_expression] = STATE(3517), + [sym_string_literal] = STATE(1903), + [sym_lambda_capture_specifier] = STATE(758), + [sym_concatenated_string] = STATE(3517), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(3517), + [sym_pointer_expression] = STATE(3517), + [sym_shift_expression] = STATE(3517), + [sym_math_expression] = STATE(3517), + [sym_call_expression] = STATE(3517), + [sym_new_expression] = STATE(3517), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [sym_raw_string_literal] = ACTIONS(7564), + [sym_true] = ACTIONS(7566), + [sym_null] = ACTIONS(7566), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(9921), + [anon_sym_AMP] = ACTIONS(9090), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(9090), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(1383), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(7564), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(7566), + [anon_sym_TILDE] = ACTIONS(3768), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_RBRACK] = ACTIONS(4125), }, - [4257] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(4529), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(8058), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(8060), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(8062), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4227] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9923), }, - [4258] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4589), - [sym_logical_expression] = STATE(4589), - [sym_bitwise_expression] = STATE(4589), - [sym_cast_expression] = STATE(4589), - [sym_new_expression] = STATE(4589), - [sym_field_expression] = STATE(4589), - [sym_compound_literal_expression] = STATE(4589), - [sym_char_literal] = STATE(4589), - [sym_template_function] = STATE(4589), - [sym_conditional_expression] = STATE(4589), - [sym_equality_expression] = STATE(4589), - [sym_relational_expression] = STATE(4589), - [sym_delete_expression] = STATE(4589), - [sym_sizeof_expression] = STATE(4589), - [sym_parenthesized_expression] = STATE(4589), - [sym_lambda_expression] = STATE(4589), - [sym_concatenated_string] = STATE(4589), - [sym_string_literal] = STATE(1936), - [sym_scoped_identifier] = STATE(1935), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4589), - [sym_assignment_expression] = STATE(4589), - [sym_pointer_expression] = STATE(4589), - [sym_shift_expression] = STATE(4589), - [sym_math_expression] = STATE(4589), - [sym_call_expression] = STATE(4589), - [sym_lambda_capture_specifier] = STATE(196), - [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(9946), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [sym_true] = ACTIONS(9948), - [sym_null] = ACTIONS(9948), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(9946), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(3888), - [sym_false] = ACTIONS(9948), - [anon_sym_AMP] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(9948), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3896), + [4228] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(7972), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(7974), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(4527), }, - [4259] = { - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_STAR_EQ] = ACTIONS(4384), - [anon_sym_LT_LT_EQ] = ACTIONS(4384), - [anon_sym_PERCENT_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_PIPE] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4386), - [anon_sym_CARET_EQ] = ACTIONS(4384), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [anon_sym_SLASH] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(4384), - [anon_sym_SLASH_EQ] = ACTIONS(4384), - [anon_sym_PLUS_EQ] = ACTIONS(4384), - [anon_sym_CARET] = ACTIONS(4386), - [anon_sym_GT] = ACTIONS(4386), - [anon_sym_PIPE_EQ] = ACTIONS(4384), - [anon_sym_GT_GT_EQ] = ACTIONS(4384), - [anon_sym_PIPE_PIPE] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_LT_LT] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_DASH_EQ] = ACTIONS(4384), - [anon_sym_LT_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_AMP_EQ] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_DASH_GT] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_GT_GT] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4384), + [4229] = { + [sym_template_function] = STATE(4567), + [sym__expression] = STATE(4567), + [sym_logical_expression] = STATE(4567), + [sym_bitwise_expression] = STATE(4567), + [sym_cast_expression] = STATE(4567), + [sym_delete_expression] = STATE(4567), + [sym_field_expression] = STATE(4567), + [sym_compound_literal_expression] = STATE(4567), + [sym_lambda_expression] = STATE(4567), + [sym_char_literal] = STATE(4567), + [sym_scoped_identifier] = STATE(756), + [sym_scoped_type_identifier] = STATE(757), + [sym_conditional_expression] = STATE(4567), + [sym_equality_expression] = STATE(4567), + [sym_relational_expression] = STATE(4567), + [sym_sizeof_expression] = STATE(4567), + [sym_subscript_expression] = STATE(4567), + [sym_scoped_namespace_identifier] = STATE(760), + [sym_parenthesized_expression] = STATE(4567), + [sym_lambda_capture_specifier] = STATE(758), + [sym_string_literal] = STATE(1903), + [sym_concatenated_string] = STATE(4567), + [sym_template_type] = STATE(761), + [sym_assignment_expression] = STATE(4567), + [sym_pointer_expression] = STATE(4567), + [sym_shift_expression] = STATE(4567), + [sym_math_expression] = STATE(4567), + [sym_call_expression] = STATE(4567), + [sym_new_expression] = STATE(4567), + [sym_raw_string_literal] = ACTIONS(9925), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [sym_true] = ACTIONS(9927), + [sym_null] = ACTIONS(9927), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(9925), + [anon_sym_COLON_COLON] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3764), + [sym_false] = ACTIONS(9927), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(9927), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(3768), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3772), }, - [4260] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(9950), + [4230] = { + [sym_new_declarator] = STATE(4165), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_GT_GT] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_PERCENT] = ACTIONS(7530), [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_RBRACK] = ACTIONS(7530), }, - [4261] = { - [anon_sym_LPAREN2] = ACTIONS(4402), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_LT_LT_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4402), - [anon_sym_PIPE] = ACTIONS(4404), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_CARET_EQ] = ACTIONS(4402), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_COLON] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_CARET] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_PIPE_EQ] = ACTIONS(4402), - [anon_sym_GT_GT_EQ] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_DOT] = ACTIONS(4402), - [anon_sym_LT_LT] = ACTIONS(4404), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_PERCENT] = ACTIONS(4404), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4402), - [anon_sym_AMP_EQ] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_GT_GT] = ACTIONS(4404), - [anon_sym_DASH_DASH] = ACTIONS(4402), + [4231] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3810), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(8176), }, - [4262] = { - [aux_sym_template_argument_list_repeat1] = STATE(2208), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_GT2] = ACTIONS(9952), + [4232] = { + [aux_sym_type_definition_repeat1] = STATE(4232), + [sym_type_qualifier] = STATE(4232), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_volatile] = ACTIONS(4989), [sym_comment] = ACTIONS(3), + [anon_sym_mutable] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym__Atomic] = ACTIONS(4989), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_explicit] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_restrict] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_constexpr] = ACTIONS(4989), }, - [4263] = { - [sym_new_declarator] = STATE(3532), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(6096), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_COLON] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7549), + [4233] = { + [sym_parameter_list] = STATE(959), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), }, - [4264] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3944), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(8131), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4234] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(7450), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4265] = { - [anon_sym_LPAREN2] = ACTIONS(6805), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_LBRACE] = ACTIONS(6805), - [anon_sym_EQ_EQ] = ACTIONS(6805), - [anon_sym_PIPE] = ACTIONS(6807), - [anon_sym_LT] = ACTIONS(6807), - [anon_sym_AMP] = ACTIONS(6807), - [anon_sym_PLUS] = ACTIONS(6807), - [anon_sym_GT_EQ] = ACTIONS(6805), - [anon_sym_STAR] = ACTIONS(6805), - [anon_sym_SLASH] = ACTIONS(6807), - [anon_sym_COLON] = ACTIONS(6805), - [anon_sym_CARET] = ACTIONS(6805), - [anon_sym_GT] = ACTIONS(6807), - [anon_sym_PIPE_PIPE] = ACTIONS(6805), - [anon_sym_DOT] = ACTIONS(6805), - [anon_sym_COMMA] = ACTIONS(6805), - [anon_sym_LT_LT] = ACTIONS(6805), - [anon_sym_LBRACK] = ACTIONS(6805), - [anon_sym_PERCENT] = ACTIONS(6805), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6805), - [anon_sym_LT_EQ] = ACTIONS(6805), - [anon_sym_BANG_EQ] = ACTIONS(6805), - [anon_sym_SEMI] = ACTIONS(6805), - [anon_sym_AMP_AMP] = ACTIONS(6805), - [anon_sym_DASH_GT] = ACTIONS(6805), - [anon_sym_PLUS_PLUS] = ACTIONS(6805), - [anon_sym_EQ] = ACTIONS(6807), - [anon_sym_GT_GT] = ACTIONS(6805), - [anon_sym_DASH_DASH] = ACTIONS(6805), + [4235] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_STAR_EQ] = ACTIONS(4979), + [anon_sym_LT_LT_EQ] = ACTIONS(4979), + [anon_sym_PERCENT_EQ] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_CARET_EQ] = ACTIONS(4979), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_COLON] = ACTIONS(4979), + [anon_sym_SLASH_EQ] = ACTIONS(4979), + [anon_sym_PLUS_EQ] = ACTIONS(4979), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_PIPE_EQ] = ACTIONS(4979), + [anon_sym_GT_GT_EQ] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(4977), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_DASH_EQ] = ACTIONS(4979), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_AMP_EQ] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4266] = { - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6812), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_PERCENT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_SEMI] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6812), - [anon_sym_DASH_DASH] = ACTIONS(6812), + [4236] = { + [sym_template_function] = STATE(4568), + [sym__expression] = STATE(4568), + [sym_logical_expression] = STATE(4568), + [sym_bitwise_expression] = STATE(4568), + [sym_cast_expression] = STATE(4568), + [sym_delete_expression] = STATE(4568), + [sym_field_expression] = STATE(4568), + [sym_compound_literal_expression] = STATE(4568), + [sym_lambda_expression] = STATE(4568), + [sym_char_literal] = STATE(4568), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4568), + [sym_equality_expression] = STATE(4568), + [sym_relational_expression] = STATE(4568), + [sym_sizeof_expression] = STATE(4568), + [sym_subscript_expression] = STATE(4568), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(4568), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(4568), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4568), + [sym_pointer_expression] = STATE(4568), + [sym_shift_expression] = STATE(4568), + [sym_math_expression] = STATE(4568), + [sym_call_expression] = STATE(4568), + [sym_new_expression] = STATE(4568), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9929), + [anon_sym_DASH] = ACTIONS(3958), + [sym_true] = ACTIONS(9931), + [anon_sym_DASH_DASH] = ACTIONS(3974), + [sym_null] = ACTIONS(9931), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9929), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(3966), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9931), + [sym_nullptr] = ACTIONS(9931), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), }, - [4267] = { - [sym_parameter_list] = STATE(3760), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(4958), + [4237] = { + [sym_template_function] = STATE(4235), + [sym__expression] = STATE(4235), + [sym_logical_expression] = STATE(4235), + [sym_bitwise_expression] = STATE(4235), + [sym_cast_expression] = STATE(4235), + [sym_delete_expression] = STATE(4235), + [sym_field_expression] = STATE(4235), + [sym_compound_literal_expression] = STATE(4235), + [sym_lambda_expression] = STATE(4235), + [sym_char_literal] = STATE(4235), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4235), + [sym_equality_expression] = STATE(4235), + [sym_relational_expression] = STATE(4235), + [sym_sizeof_expression] = STATE(4235), + [sym_subscript_expression] = STATE(4235), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(4235), + [sym_string_literal] = STATE(1970), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(4235), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4235), + [sym_pointer_expression] = STATE(4235), + [sym_shift_expression] = STATE(4235), + [sym_math_expression] = STATE(4235), + [sym_call_expression] = STATE(4235), + [sym_new_expression] = STATE(4235), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [sym_raw_string_literal] = ACTIONS(9106), + [sym_true] = ACTIONS(9108), + [anon_sym_SQUOTE] = ACTIONS(334), + [sym_null] = ACTIONS(9108), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(9933), + [anon_sym_AMP] = ACTIONS(9133), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(9133), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_COLON] = ACTIONS(4127), + [sym_identifier] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9106), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(9108), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(9108), + [anon_sym_TILDE] = ACTIONS(3970), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [4268] = { - [sym_union_specifier] = STATE(4594), - [sym_macro_type_specifier] = STATE(4594), - [sym_class_specifier] = STATE(4594), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(4594), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(4594), - [aux_sym_sized_type_specifier_repeat1] = STATE(4593), - [sym_struct_specifier] = STATE(4594), - [sym_enum_specifier] = STATE(4594), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(4594), - [anon_sym_unsigned] = ACTIONS(9954), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(9956), - [anon_sym_signed] = ACTIONS(9954), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(9954), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(9958), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(9954), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(9956), + [4238] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9935), }, - [4269] = { - [sym_virtual_specifier] = STATE(4595), - [aux_sym_function_declarator_repeat1] = STATE(4595), - [sym_trailing_return_type] = STATE(4595), - [sym_type_qualifier] = STATE(4595), - [anon_sym_LPAREN2] = ACTIONS(4011), - [sym_noexcept] = ACTIONS(9960), - [anon_sym_final] = ACTIONS(1845), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4011), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4011), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(9153), - [anon_sym_restrict] = ACTIONS(1062), + [4239] = { + [sym_argument_list] = STATE(3490), + [sym_initializer_list] = STATE(3490), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(5348), + [anon_sym_LT_LT_EQ] = ACTIONS(5348), + [anon_sym_PERCENT_EQ] = ACTIONS(5348), + [anon_sym_EQ_EQ] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_CARET_EQ] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SLASH_EQ] = ACTIONS(5348), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_PIPE_EQ] = ACTIONS(5348), + [anon_sym_GT_GT_EQ] = ACTIONS(5348), + [anon_sym_PIPE_PIPE] = ACTIONS(5348), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5350), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_DASH_EQ] = ACTIONS(5348), + [anon_sym_LT_EQ] = ACTIONS(5348), + [anon_sym_BANG_EQ] = ACTIONS(5348), + [anon_sym_AMP_EQ] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_DASH_GT] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_PLUS_PLUS] = ACTIONS(5348), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5348), }, - [4270] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(4271), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(9155), - [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(9155), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(9155), - [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(9159), - [anon_sym_COLON_COLON] = ACTIONS(147), - [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(9155), - [anon_sym_enum] = ACTIONS(33), - [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [4240] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(8095), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(8103), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(8105), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(8107), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4271] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4596), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(9962), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [sym_identifier] = ACTIONS(1074), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_long] = ACTIONS(9962), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(9962), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_short] = ACTIONS(9962), + [4241] = { + [sym_template_function] = STATE(4570), + [sym__expression] = STATE(4570), + [sym_logical_expression] = STATE(4570), + [sym_bitwise_expression] = STATE(4570), + [sym_cast_expression] = STATE(4570), + [sym_delete_expression] = STATE(4570), + [sym_field_expression] = STATE(4570), + [sym_compound_literal_expression] = STATE(4570), + [sym_lambda_expression] = STATE(4570), + [sym_char_literal] = STATE(4570), + [sym_scoped_identifier] = STATE(1969), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4570), + [sym_equality_expression] = STATE(4570), + [sym_relational_expression] = STATE(4570), + [sym_sizeof_expression] = STATE(4570), + [sym_subscript_expression] = STATE(4570), + [sym_scoped_namespace_identifier] = STATE(197), + [sym_parenthesized_expression] = STATE(4570), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(1970), + [sym_concatenated_string] = STATE(4570), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4570), + [sym_pointer_expression] = STATE(4570), + [sym_shift_expression] = STATE(4570), + [sym_math_expression] = STATE(4570), + [sym_call_expression] = STATE(4570), + [sym_new_expression] = STATE(4570), + [sym_raw_string_literal] = ACTIONS(9937), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [sym_true] = ACTIONS(9939), + [sym_null] = ACTIONS(9939), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9937), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(3966), + [sym_false] = ACTIONS(9939), + [anon_sym_AMP] = ACTIONS(1865), + [sym_nullptr] = ACTIONS(9939), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3974), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3974), }, - [4272] = { - [sym_parameter_list] = STATE(4599), - [sym_abstract_array_declarator] = STATE(4600), - [sym_abstract_pointer_declarator] = STATE(4600), - [sym_abstract_reference_declarator] = STATE(4600), - [sym_abstract_function_declarator] = STATE(4600), - [sym__abstract_declarator] = STATE(4600), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym_COMMA] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9964), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(9966), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_RPAREN] = ACTIONS(6210), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_restrict] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(9968), + [4242] = { + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_STAR_EQ] = ACTIONS(4378), + [anon_sym_LT_LT_EQ] = ACTIONS(4378), + [anon_sym_PERCENT_EQ] = ACTIONS(4378), + [anon_sym_EQ_EQ] = ACTIONS(4378), + [anon_sym_PIPE] = ACTIONS(4380), + [anon_sym_LT] = ACTIONS(4380), + [anon_sym_CARET_EQ] = ACTIONS(4378), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_GT_EQ] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4380), + [anon_sym_COLON] = ACTIONS(4378), + [anon_sym_SLASH_EQ] = ACTIONS(4378), + [anon_sym_PLUS_EQ] = ACTIONS(4378), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_GT] = ACTIONS(4380), + [anon_sym_PIPE_EQ] = ACTIONS(4378), + [anon_sym_GT_GT_EQ] = ACTIONS(4378), + [anon_sym_PIPE_PIPE] = ACTIONS(4378), + [anon_sym_DOT] = ACTIONS(4378), + [anon_sym_LT_LT] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4378), + [anon_sym_PERCENT] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4378), + [anon_sym_DASH_EQ] = ACTIONS(4378), + [anon_sym_LT_EQ] = ACTIONS(4378), + [anon_sym_BANG_EQ] = ACTIONS(4378), + [anon_sym_AMP_EQ] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_DASH_GT] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4378), + [anon_sym_GT_GT] = ACTIONS(4380), + [anon_sym_DASH_DASH] = ACTIONS(4378), }, - [4273] = { - [sym_virtual_specifier] = STATE(4273), - [aux_sym_function_declarator_repeat1] = STATE(4273), - [sym_trailing_return_type] = STATE(4273), - [sym_type_qualifier] = STATE(4273), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(9970), - [anon_sym_mutable] = ACTIONS(7266), - [anon_sym_COMMA] = ACTIONS(6220), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_const] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(7266), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7266), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_explicit] = ACTIONS(7266), - [anon_sym_RPAREN] = ACTIONS(6220), - [anon_sym_DASH_GT] = ACTIONS(9973), - [anon_sym_EQ] = ACTIONS(6220), - [anon_sym_restrict] = ACTIONS(7266), + [4243] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_GT2] = ACTIONS(9941), + [sym_comment] = ACTIONS(3), }, - [4274] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4274), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_unsigned] = ACTIONS(9976), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(9976), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(9976), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(9976), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), + [4244] = { + [anon_sym_LPAREN2] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_LT_LT_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_PIPE] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_CARET_EQ] = ACTIONS(4396), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4398), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_COLON] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_CARET] = ACTIONS(4398), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_PIPE_EQ] = ACTIONS(4396), + [anon_sym_GT_GT_EQ] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_LT_LT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4398), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_AMP_EQ] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_GT_GT] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4396), }, - [4275] = { - [sym_parameter_list] = STATE(1982), - [sym_abstract_array_declarator] = STATE(2990), - [sym_abstract_pointer_declarator] = STATE(2990), - [sym_abstract_reference_declarator] = STATE(2990), - [sym_abstract_function_declarator] = STATE(2990), - [sym__abstract_declarator] = STATE(2990), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(9165), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(9167), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(9169), + [4245] = { + [aux_sym_template_argument_list_repeat1] = STATE(2195), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_GT2] = ACTIONS(9943), [sym_comment] = ACTIONS(3), }, - [4276] = { - [sym_abstract_array_declarator] = STATE(2993), - [sym_parameter_list] = STATE(1982), - [sym_abstract_reference_declarator] = STATE(2993), - [sym_abstract_function_declarator] = STATE(2993), - [aux_sym_type_definition_repeat1] = STATE(4601), - [sym_abstract_pointer_declarator] = STATE(2993), - [sym_type_qualifier] = STATE(4601), - [sym__abstract_declarator] = STATE(2993), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), + [4246] = { + [sym_new_declarator] = STATE(3504), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_PERCENT] = ACTIONS(7530), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9165), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(9167), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(9169), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_COLON] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7530), }, - [4277] = { - [sym_parameter_list] = STATE(2999), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(8186), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), + [4247] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(8176), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4278] = { - [sym_type_qualifier] = STATE(4278), - [aux_sym_type_definition_repeat1] = STATE(4278), + [4248] = { + [anon_sym_LPAREN2] = ACTIONS(6794), + [anon_sym_DASH] = ACTIONS(6796), + [anon_sym_LBRACE] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6794), + [anon_sym_PIPE] = ACTIONS(6796), + [anon_sym_LT] = ACTIONS(6796), + [anon_sym_AMP] = ACTIONS(6796), + [anon_sym_PLUS] = ACTIONS(6796), + [anon_sym_GT_EQ] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_SLASH] = ACTIONS(6796), + [anon_sym_COLON] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6794), + [anon_sym_GT] = ACTIONS(6796), + [anon_sym_PIPE_PIPE] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_COMMA] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6794), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6794), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6794), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_BANG_EQ] = ACTIONS(6794), + [anon_sym_SEMI] = ACTIONS(6794), + [anon_sym_AMP_AMP] = ACTIONS(6794), + [anon_sym_DASH_GT] = ACTIONS(6794), + [anon_sym_PLUS_PLUS] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6796), + [anon_sym_GT_GT] = ACTIONS(6794), + [anon_sym_DASH_DASH] = ACTIONS(6794), + }, + [4249] = { + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6801), + [anon_sym_CARET] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_LT_LT] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_PERCENT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_SEMI] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6801), + [anon_sym_DASH_DASH] = ACTIONS(6801), + }, + [4250] = { + [aux_sym_type_definition_repeat1] = STATE(4250), + [sym_type_qualifier] = STATE(4250), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(9979), - [anon_sym__Atomic] = ACTIONS(9979), - [anon_sym_const] = ACTIONS(9982), + [anon_sym_mutable] = ACTIONS(9945), + [anon_sym__Atomic] = ACTIONS(9945), + [anon_sym_const] = ACTIONS(9948), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(9979), + [anon_sym_constexpr] = ACTIONS(9945), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(9979), + [anon_sym_volatile] = ACTIONS(9945), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), [anon_sym_COLON] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(9979), + [anon_sym_explicit] = ACTIONS(9945), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_DASH_GT] = ACTIONS(2106), [anon_sym_EQ] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(9979), + [anon_sym_restrict] = ACTIONS(9945), [anon_sym_LBRACE] = ACTIONS(2106), }, - [4279] = { - [sym_parameter_list] = STATE(3776), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_COLON] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), - [anon_sym_LBRACE] = ACTIONS(7275), + [4251] = { + [sym_parameter_list] = STATE(3753), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_COLON] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym_LBRACE] = ACTIONS(7256), }, - [4280] = { - [sym_type_qualifier] = STATE(4280), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4280), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(9987), - [anon_sym_mutable] = ACTIONS(9990), - [anon_sym__Atomic] = ACTIONS(9990), - [anon_sym_const] = ACTIONS(9993), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(9990), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(9990), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_COLON] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(9990), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(9990), - [anon_sym_LBRACE] = ACTIONS(6399), + [4252] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4252), + [sym_type_qualifier] = STATE(4252), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(9953), + [anon_sym_mutable] = ACTIONS(9956), + [anon_sym__Atomic] = ACTIONS(9956), + [anon_sym_const] = ACTIONS(9959), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(9956), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(9956), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_COLON] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(9956), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(9956), + [anon_sym_LBRACE] = ACTIONS(6087), }, - [4281] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4280), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4280), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(9178), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_COLON] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(6395), + [4253] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4252), + [sym_type_qualifier] = STATE(4252), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(9149), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_COLON] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(6098), }, - [4282] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_new_expression] = STATE(1405), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_template_function] = STATE(1405), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_delete_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_parenthesized_expression] = STATE(1405), - [sym_initializer_list] = STATE(1406), - [sym_concatenated_string] = STATE(1405), - [sym_string_literal] = STATE(2023), - [sym_lambda_expression] = STATE(1405), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(6262), - [anon_sym_DASH] = ACTIONS(4043), - [sym_raw_string_literal] = ACTIONS(2826), - [sym_true] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_null] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(9996), - [anon_sym_AMP] = ACTIONS(9998), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4127), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4127), - [sym_number_literal] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(6268), - [anon_sym_SEMI] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_GT_GT] = ACTIONS(4127), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [4254] = { + [sym_template_function] = STATE(1400), + [sym__expression] = STATE(1400), + [sym_logical_expression] = STATE(1400), + [sym_bitwise_expression] = STATE(1400), + [sym_cast_expression] = STATE(1400), + [sym_delete_expression] = STATE(1400), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(1400), + [sym_lambda_expression] = STATE(1400), + [sym_char_literal] = STATE(1400), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(1400), + [sym_equality_expression] = STATE(1400), + [sym_relational_expression] = STATE(1400), + [sym_sizeof_expression] = STATE(1400), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(1401), + [sym_parenthesized_expression] = STATE(1400), + [sym_string_literal] = STATE(2030), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1400), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(1400), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(1400), + [sym_math_expression] = STATE(1400), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(1400), + [anon_sym_LPAREN2] = ACTIONS(6310), + [anon_sym_DASH] = ACTIONS(4079), + [sym_raw_string_literal] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_null] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(9962), + [anon_sym_AMP] = ACTIONS(9964), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4125), + [sym_number_literal] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(6316), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_GT_GT] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [4283] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(6338), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4529), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4255] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(6386), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4284] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4602), - [sym_logical_expression] = STATE(4602), - [sym_bitwise_expression] = STATE(4602), - [sym_cast_expression] = STATE(4602), - [sym_new_expression] = STATE(4602), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(4602), - [sym_char_literal] = STATE(4602), - [sym_template_function] = STATE(4602), - [sym_conditional_expression] = STATE(4602), - [sym_equality_expression] = STATE(4602), - [sym_relational_expression] = STATE(4602), - [sym_delete_expression] = STATE(4602), - [sym_sizeof_expression] = STATE(4602), - [sym_parenthesized_expression] = STATE(4602), - [sym_lambda_expression] = STATE(4602), - [sym_concatenated_string] = STATE(4602), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(4602), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(4602), - [sym_math_expression] = STATE(4602), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(10000), - [anon_sym_DASH] = ACTIONS(4043), - [sym_true] = ACTIONS(10002), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [sym_null] = ACTIONS(10002), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10000), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(10002), - [sym_nullptr] = ACTIONS(10002), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), + [4256] = { + [sym_template_function] = STATE(4573), + [sym__expression] = STATE(4573), + [sym_logical_expression] = STATE(4573), + [sym_bitwise_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_delete_expression] = STATE(4573), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(4573), + [sym_lambda_expression] = STATE(4573), + [sym_char_literal] = STATE(4573), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4573), + [sym_equality_expression] = STATE(4573), + [sym_relational_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4573), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(4573), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4573), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(4573), + [sym_math_expression] = STATE(4573), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(4573), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9966), + [anon_sym_DASH] = ACTIONS(4079), + [sym_true] = ACTIONS(9968), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [sym_null] = ACTIONS(9968), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9966), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9968), + [sym_nullptr] = ACTIONS(9968), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), }, - [4285] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(3035), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [4257] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(5269), - [anon_sym_DASH_DASH] = ACTIONS(6296), - [sym_null] = ACTIONS(5269), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(5267), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(5269), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_LBRACE] = ACTIONS(1234), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(3025), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [sym_raw_string_literal] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(5268), + [anon_sym_DASH_DASH] = ACTIONS(6344), + [sym_null] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(5266), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_LBRACE] = ACTIONS(1240), }, - [4286] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4286), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_signed] = ACTIONS(10004), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(10004), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(10004), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(10004), - [anon_sym_QMARK] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2082), + [4258] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4258), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_signed] = ACTIONS(9970), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(9970), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(9970), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(9970), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1783), }, - [4287] = { - [sym_template_type] = STATE(239), - [sym__expression] = STATE(4603), - [sym_logical_expression] = STATE(4603), - [sym_bitwise_expression] = STATE(4603), - [sym_cast_expression] = STATE(4603), - [sym_new_expression] = STATE(4603), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(4603), - [sym_char_literal] = STATE(4603), - [sym_template_function] = STATE(4603), - [sym_conditional_expression] = STATE(4603), - [sym_equality_expression] = STATE(4603), - [sym_relational_expression] = STATE(4603), - [sym_delete_expression] = STATE(4603), - [sym_sizeof_expression] = STATE(4603), - [sym_parenthesized_expression] = STATE(4603), - [sym_lambda_expression] = STATE(4603), - [sym_concatenated_string] = STATE(4603), - [sym_string_literal] = STATE(967), + [4259] = { + [sym_template_function] = STATE(4574), + [sym__expression] = STATE(4574), + [sym_logical_expression] = STATE(4574), + [sym_bitwise_expression] = STATE(4574), + [sym_cast_expression] = STATE(4574), + [sym_delete_expression] = STATE(4574), + [sym_field_expression] = STATE(950), + [sym_compound_literal_expression] = STATE(4574), + [sym_lambda_expression] = STATE(4574), + [sym_char_literal] = STATE(4574), [sym_scoped_identifier] = STATE(242), [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(966), - [sym_assignment_expression] = STATE(4603), - [sym_pointer_expression] = STATE(966), - [sym_shift_expression] = STATE(4603), - [sym_math_expression] = STATE(4603), - [sym_call_expression] = STATE(966), - [sym_lambda_capture_specifier] = STATE(245), + [sym_conditional_expression] = STATE(4574), + [sym_equality_expression] = STATE(4574), + [sym_relational_expression] = STATE(4574), + [sym_sizeof_expression] = STATE(4574), + [sym_subscript_expression] = STATE(950), [sym_scoped_namespace_identifier] = STATE(246), - [sym_raw_string_literal] = ACTIONS(10007), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [sym_true] = ACTIONS(10009), - [sym_null] = ACTIONS(10009), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(10007), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1763), - [sym_false] = ACTIONS(10009), - [anon_sym_AMP] = ACTIONS(1765), - [sym_nullptr] = ACTIONS(10009), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_delete] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_parenthesized_expression] = STATE(4574), + [sym_lambda_capture_specifier] = STATE(244), + [sym_string_literal] = STATE(951), + [sym_concatenated_string] = STATE(4574), + [sym_template_type] = STATE(248), + [sym_assignment_expression] = STATE(4574), + [sym_pointer_expression] = STATE(950), + [sym_shift_expression] = STATE(4574), + [sym_math_expression] = STATE(4574), + [sym_call_expression] = STATE(950), + [sym_new_expression] = STATE(4574), + [sym_raw_string_literal] = ACTIONS(9973), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_LPAREN2] = ACTIONS(1712), + [sym_true] = ACTIONS(9975), + [sym_null] = ACTIONS(9975), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(9973), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1722), + [sym_false] = ACTIONS(9975), + [anon_sym_AMP] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(9975), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1718), }, - [4288] = { - [sym_initializer_list] = STATE(2571), - [sym_new_declarator] = STATE(2572), - [sym_argument_list] = STATE(2571), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(3138), - [anon_sym_LT_LT_EQ] = ACTIONS(3138), - [anon_sym_PERCENT_EQ] = ACTIONS(3138), - [anon_sym_EQ_EQ] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_CARET_EQ] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_GT_EQ] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_SLASH_EQ] = ACTIONS(3138), - [anon_sym_PLUS_EQ] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_PIPE_EQ] = ACTIONS(3138), - [anon_sym_GT_GT_EQ] = ACTIONS(3138), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_PIPE_PIPE] = ACTIONS(3138), - [anon_sym_DOT] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(9194), - [anon_sym_PERCENT] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3138), - [anon_sym_DASH_EQ] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_BANG_EQ] = ACTIONS(3138), - [anon_sym_AMP_EQ] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3138), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [4260] = { + [sym_new_declarator] = STATE(2556), + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_DASH_GT] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(9165), + [anon_sym_PERCENT] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), }, - [4289] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4604), - [sym_logical_expression] = STATE(4604), - [sym_bitwise_expression] = STATE(4604), - [sym_cast_expression] = STATE(4604), - [sym_new_expression] = STATE(4604), - [sym_field_expression] = STATE(4604), - [sym_compound_literal_expression] = STATE(4604), - [sym_char_literal] = STATE(4604), - [sym_template_function] = STATE(4604), - [sym_conditional_expression] = STATE(4604), - [sym_equality_expression] = STATE(4604), - [sym_relational_expression] = STATE(4604), - [sym_delete_expression] = STATE(4604), - [sym_sizeof_expression] = STATE(4604), - [sym_parenthesized_expression] = STATE(4604), - [sym_lambda_expression] = STATE(4604), - [sym_concatenated_string] = STATE(4604), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4604), - [sym_assignment_expression] = STATE(4604), - [sym_pointer_expression] = STATE(4604), - [sym_shift_expression] = STATE(4604), - [sym_math_expression] = STATE(4604), - [sym_call_expression] = STATE(4604), - [sym_lambda_capture_specifier] = STATE(196), + [4261] = { + [sym_template_function] = STATE(4575), + [sym__expression] = STATE(4575), + [sym_logical_expression] = STATE(4575), + [sym_bitwise_expression] = STATE(4575), + [sym_cast_expression] = STATE(4575), + [sym_delete_expression] = STATE(4575), + [sym_field_expression] = STATE(4575), + [sym_compound_literal_expression] = STATE(4575), + [sym_lambda_expression] = STATE(4575), + [sym_char_literal] = STATE(4575), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4575), + [sym_equality_expression] = STATE(4575), + [sym_relational_expression] = STATE(4575), + [sym_sizeof_expression] = STATE(4575), + [sym_subscript_expression] = STATE(4575), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(10011), - [anon_sym_DASH] = ACTIONS(6294), - [sym_true] = ACTIONS(10013), - [anon_sym_DASH_DASH] = ACTIONS(6296), - [sym_null] = ACTIONS(10013), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(10011), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(6300), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(10013), - [sym_nullptr] = ACTIONS(10013), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), + [sym_parenthesized_expression] = STATE(4575), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4575), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4575), + [sym_pointer_expression] = STATE(4575), + [sym_shift_expression] = STATE(4575), + [sym_math_expression] = STATE(4575), + [sym_call_expression] = STATE(4575), + [sym_new_expression] = STATE(4575), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(9977), + [anon_sym_DASH] = ACTIONS(6342), + [sym_true] = ACTIONS(9979), + [anon_sym_DASH_DASH] = ACTIONS(6344), + [sym_null] = ACTIONS(9979), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(9977), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(6348), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(9979), + [sym_nullptr] = ACTIONS(9979), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), }, - [4290] = { - [sym_template_type] = STATE(239), + [4262] = { + [sym_template_function] = STATE(240), [sym__expression] = STATE(240), [sym_logical_expression] = STATE(240), [sym_bitwise_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_new_expression] = STATE(240), + [sym_delete_expression] = STATE(240), [sym_field_expression] = STATE(241), [sym_compound_literal_expression] = STATE(240), + [sym_lambda_expression] = STATE(240), [sym_char_literal] = STATE(240), - [sym_template_function] = STATE(240), + [sym_scoped_identifier] = STATE(242), + [sym_scoped_type_identifier] = STATE(243), [sym_conditional_expression] = STATE(240), [sym_equality_expression] = STATE(240), [sym_relational_expression] = STATE(240), - [sym_delete_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), + [sym_lambda_default_capture] = STATE(247), + [sym_scoped_namespace_identifier] = STATE(246), + [sym_subscript_expression] = STATE(241), [sym_parenthesized_expression] = STATE(240), - [sym_lambda_expression] = STATE(240), + [sym_string_literal] = STATE(245), + [sym_lambda_capture_specifier] = STATE(244), [sym_concatenated_string] = STATE(240), - [sym_string_literal] = STATE(244), - [sym_scoped_identifier] = STATE(242), - [sym_scoped_type_identifier] = STATE(243), - [sym_subscript_expression] = STATE(241), + [sym_template_type] = STATE(248), [sym_assignment_expression] = STATE(240), [sym_pointer_expression] = STATE(241), [sym_shift_expression] = STATE(240), [sym_math_expression] = STATE(240), [sym_call_expression] = STATE(241), - [sym_lambda_capture_specifier] = STATE(245), - [sym_scoped_namespace_identifier] = STATE(246), - [sym_lambda_default_capture] = STATE(247), - [sym_raw_string_literal] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(390), - [sym_true] = ACTIONS(392), - [anon_sym_delete] = ACTIONS(394), - [sym_null] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_number_literal] = ACTIONS(386), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(402), - [sym_false] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(404), - [sym_nullptr] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_TILDE] = ACTIONS(410), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(10015), + [sym_new_expression] = STATE(240), + [sym_raw_string_literal] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_LPAREN2] = ACTIONS(392), + [sym_true] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(396), + [sym_null] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [sym_number_literal] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(404), + [sym_false] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(406), + [sym_nullptr] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_sizeof] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(644), + [anon_sym_new] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(9981), }, - [4291] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(9204), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(9214), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(9216), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(9220), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(5296), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4263] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(9175), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(9185), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(9187), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(9191), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4292] = { - [anon_sym_RPAREN] = ACTIONS(10017), + [4264] = { + [anon_sym_RPAREN] = ACTIONS(9983), [sym_comment] = ACTIONS(3), }, - [4293] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(2160), - [anon_sym_LT_LT_EQ] = ACTIONS(2160), - [anon_sym_PERCENT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(9204), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(2160), - [anon_sym_PLUS_EQ] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(9214), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(2160), - [anon_sym_GT_GT_EQ] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(9216), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_DASH_EQ] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(9220), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(5300), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4265] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(9175), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(9185), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(9187), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(9191), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4294] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4266] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4295] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3759), - [anon_sym_LT_LT_EQ] = ACTIONS(3759), - [anon_sym_PERCENT_EQ] = ACTIONS(3759), - [anon_sym_EQ_EQ] = ACTIONS(3759), - [anon_sym_PIPE] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3761), - [anon_sym_CARET_EQ] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_RBRACE] = ACTIONS(3759), - [anon_sym_GT_EQ] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(3759), - [anon_sym_PLUS_EQ] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_GT] = ACTIONS(3761), - [anon_sym_PIPE_EQ] = ACTIONS(3759), - [anon_sym_GT_GT_EQ] = ACTIONS(3759), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3759), - [anon_sym_DASH_EQ] = ACTIONS(3759), - [anon_sym_SEMI] = ACTIONS(3759), - [anon_sym_BANG_EQ] = ACTIONS(3759), - [anon_sym_AMP_EQ] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3759), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4267] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3905), + [anon_sym_LT_LT_EQ] = ACTIONS(3905), + [anon_sym_PERCENT_EQ] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_CARET_EQ] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + [anon_sym_RBRACE] = ACTIONS(3905), + [anon_sym_GT_EQ] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(3905), + [anon_sym_PLUS_EQ] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_PIPE_EQ] = ACTIONS(3905), + [anon_sym_GT_GT_EQ] = ACTIONS(3905), + [anon_sym_COMMA] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_DASH_EQ] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [anon_sym_AMP_EQ] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_LT_EQ] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4296] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3763), - [anon_sym_LT_LT_EQ] = ACTIONS(3763), - [anon_sym_PERCENT_EQ] = ACTIONS(3763), - [anon_sym_EQ_EQ] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(3765), - [anon_sym_CARET_EQ] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_RBRACE] = ACTIONS(3763), - [anon_sym_GT_EQ] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(3763), - [anon_sym_PLUS_EQ] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3765), - [anon_sym_GT] = ACTIONS(3765), - [anon_sym_PIPE_EQ] = ACTIONS(3763), - [anon_sym_GT_GT_EQ] = ACTIONS(3763), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_PIPE_PIPE] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3763), - [anon_sym_DASH_EQ] = ACTIONS(3763), - [anon_sym_SEMI] = ACTIONS(3763), - [anon_sym_BANG_EQ] = ACTIONS(3763), - [anon_sym_AMP_EQ] = ACTIONS(3763), - [anon_sym_AMP_AMP] = ACTIONS(3763), - [anon_sym_LT_EQ] = ACTIONS(3763), - [anon_sym_EQ] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3765), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4268] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4297] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(9204), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(9214), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(9220), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4269] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(9175), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(9185), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(9191), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4298] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3790), - [anon_sym_LT_LT_EQ] = ACTIONS(3790), - [anon_sym_PERCENT_EQ] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(3792), - [anon_sym_CARET_EQ] = ACTIONS(3790), - [anon_sym_AMP] = ACTIONS(3792), - [anon_sym_RBRACE] = ACTIONS(3790), - [anon_sym_GT_EQ] = ACTIONS(3790), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(3790), - [anon_sym_PLUS_EQ] = ACTIONS(3790), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_GT] = ACTIONS(3792), - [anon_sym_PIPE_EQ] = ACTIONS(3790), - [anon_sym_GT_GT_EQ] = ACTIONS(3790), - [anon_sym_COMMA] = ACTIONS(3790), - [anon_sym_PIPE_PIPE] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3790), - [anon_sym_DASH_EQ] = ACTIONS(3790), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_BANG_EQ] = ACTIONS(3790), - [anon_sym_AMP_EQ] = ACTIONS(3790), - [anon_sym_AMP_AMP] = ACTIONS(3790), - [anon_sym_LT_EQ] = ACTIONS(3790), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(3792), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4270] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3936), + [anon_sym_LT_LT_EQ] = ACTIONS(3936), + [anon_sym_PERCENT_EQ] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_CARET_EQ] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_RBRACE] = ACTIONS(3936), + [anon_sym_GT_EQ] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3936), + [anon_sym_CARET] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_PIPE_EQ] = ACTIONS(3936), + [anon_sym_GT_GT_EQ] = ACTIONS(3936), + [anon_sym_COMMA] = ACTIONS(3936), + [anon_sym_PIPE_PIPE] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3936), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3936), + [anon_sym_AMP_EQ] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_LT_EQ] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4299] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3794), - [anon_sym_LT_LT_EQ] = ACTIONS(3794), - [anon_sym_PERCENT_EQ] = ACTIONS(3794), - [anon_sym_EQ_EQ] = ACTIONS(3794), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3796), - [anon_sym_RBRACE] = ACTIONS(3794), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(3794), - [anon_sym_PLUS_EQ] = ACTIONS(3794), - [anon_sym_CARET] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(3794), - [anon_sym_GT_GT_EQ] = ACTIONS(3794), - [anon_sym_COMMA] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_DASH_EQ] = ACTIONS(3794), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_BANG_EQ] = ACTIONS(3794), - [anon_sym_AMP_EQ] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(3796), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4271] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3940), + [anon_sym_LT_LT_EQ] = ACTIONS(3940), + [anon_sym_PERCENT_EQ] = ACTIONS(3940), + [anon_sym_EQ_EQ] = ACTIONS(3940), + [anon_sym_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_RBRACE] = ACTIONS(3940), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(3940), + [anon_sym_PLUS_EQ] = ACTIONS(3940), + [anon_sym_CARET] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(3940), + [anon_sym_GT_GT_EQ] = ACTIONS(3940), + [anon_sym_COMMA] = ACTIONS(3940), + [anon_sym_PIPE_PIPE] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DASH_EQ] = ACTIONS(3940), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_BANG_EQ] = ACTIONS(3940), + [anon_sym_AMP_EQ] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4300] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(9214), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4272] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(9185), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4301] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3755), - [anon_sym_LT_LT_EQ] = ACTIONS(3755), - [anon_sym_PERCENT_EQ] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(3755), - [anon_sym_PLUS_EQ] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3757), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(3755), - [anon_sym_GT_GT_EQ] = ACTIONS(3755), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3755), - [anon_sym_DASH_EQ] = ACTIONS(3755), - [anon_sym_SEMI] = ACTIONS(3755), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(3755), - [anon_sym_AMP_AMP] = ACTIONS(3755), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4273] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3901), + [anon_sym_LT_LT_EQ] = ACTIONS(3901), + [anon_sym_PERCENT_EQ] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(3901), + [anon_sym_PLUS_EQ] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(3901), + [anon_sym_GT_GT_EQ] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_DASH_EQ] = ACTIONS(3901), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4302] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_SLASH] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(10019), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4274] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(9985), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4303] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(3769), - [anon_sym_LT_LT_EQ] = ACTIONS(3769), - [anon_sym_PERCENT_EQ] = ACTIONS(3769), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(9204), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(3769), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(3769), - [anon_sym_PLUS_EQ] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(9214), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(3769), - [anon_sym_GT_GT_EQ] = ACTIONS(3769), - [anon_sym_COMMA] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3769), - [anon_sym_DASH_EQ] = ACTIONS(3769), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4275] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(9175), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_CARET] = ACTIONS(9185), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4304] = { - [sym_string_literal] = STATE(4304), - [aux_sym_concatenated_string_repeat1] = STATE(4304), - [anon_sym_LPAREN2] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3734), - [anon_sym_DASH_GT] = ACTIONS(3732), - [anon_sym_STAR_EQ] = ACTIONS(3732), - [anon_sym_LT_LT_EQ] = ACTIONS(3732), - [anon_sym_PERCENT_EQ] = ACTIONS(3732), - [anon_sym_EQ_EQ] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_CARET_EQ] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_RBRACE] = ACTIONS(3732), - [anon_sym_GT_EQ] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3734), - [anon_sym_SLASH] = ACTIONS(3734), - [anon_sym_SLASH_EQ] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_PIPE_EQ] = ACTIONS(3732), - [anon_sym_GT_GT_EQ] = ACTIONS(3732), - [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_PIPE_PIPE] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(3734), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_PERCENT] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3732), - [anon_sym_DASH_EQ] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_BANG_EQ] = ACTIONS(3732), - [anon_sym_AMP_EQ] = ACTIONS(3732), - [anon_sym_AMP_AMP] = ACTIONS(3732), - [anon_sym_LT_EQ] = ACTIONS(3732), - [anon_sym_EQ] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3732), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3732), + [4276] = { + [sym_string_literal] = STATE(4276), + [aux_sym_concatenated_string_repeat1] = STATE(4276), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_STAR_EQ] = ACTIONS(3886), + [anon_sym_LT_LT_EQ] = ACTIONS(3886), + [anon_sym_PERCENT_EQ] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3888), + [anon_sym_LT] = ACTIONS(3888), + [anon_sym_CARET_EQ] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_GT_EQ] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_SLASH_EQ] = ACTIONS(3886), + [anon_sym_PLUS_EQ] = ACTIONS(3886), + [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_PIPE_EQ] = ACTIONS(3886), + [anon_sym_GT_GT_EQ] = ACTIONS(3886), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(5323), + [anon_sym_LT_LT] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_DASH_EQ] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), + [anon_sym_AMP_EQ] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_LT_EQ] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3888), + [anon_sym_DASH_DASH] = ACTIONS(3886), }, - [4305] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(10021), + [4277] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(9987), }, - [4306] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4609), - [sym_logical_expression] = STATE(4609), - [sym_bitwise_expression] = STATE(4609), - [sym_cast_expression] = STATE(4609), - [sym_new_expression] = STATE(4609), - [sym_field_expression] = STATE(2022), - [sym_compound_literal_expression] = STATE(4609), - [sym_char_literal] = STATE(4609), - [sym_template_function] = STATE(4609), - [sym_conditional_expression] = STATE(4609), - [sym_equality_expression] = STATE(4609), - [sym_relational_expression] = STATE(4609), - [sym_delete_expression] = STATE(4609), - [sym_sizeof_expression] = STATE(4609), - [sym_parenthesized_expression] = STATE(4609), - [sym_lambda_expression] = STATE(4609), - [sym_concatenated_string] = STATE(4609), - [sym_string_literal] = STATE(2023), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(2022), - [sym_assignment_expression] = STATE(4609), - [sym_pointer_expression] = STATE(2022), - [sym_shift_expression] = STATE(4609), - [sym_math_expression] = STATE(4609), - [sym_call_expression] = STATE(2022), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10023), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_LPAREN2] = ACTIONS(6262), - [sym_true] = ACTIONS(10025), - [sym_null] = ACTIONS(10025), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10023), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(4047), - [sym_false] = ACTIONS(10025), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(10025), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_sizeof] = ACTIONS(4049), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(6268), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(6270), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(4053), - [anon_sym_DASH_DASH] = ACTIONS(4057), + [4278] = { + [sym_template_function] = STATE(4580), + [sym__expression] = STATE(4580), + [sym_logical_expression] = STATE(4580), + [sym_bitwise_expression] = STATE(4580), + [sym_cast_expression] = STATE(4580), + [sym_delete_expression] = STATE(4580), + [sym_field_expression] = STATE(2029), + [sym_compound_literal_expression] = STATE(4580), + [sym_lambda_expression] = STATE(4580), + [sym_char_literal] = STATE(4580), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4580), + [sym_equality_expression] = STATE(4580), + [sym_relational_expression] = STATE(4580), + [sym_sizeof_expression] = STATE(4580), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4580), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(2030), + [sym_concatenated_string] = STATE(4580), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4580), + [sym_pointer_expression] = STATE(2029), + [sym_shift_expression] = STATE(4580), + [sym_math_expression] = STATE(4580), + [sym_call_expression] = STATE(2029), + [sym_new_expression] = STATE(4580), + [sym_raw_string_literal] = ACTIONS(9989), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_LPAREN2] = ACTIONS(6310), + [sym_true] = ACTIONS(9991), + [sym_null] = ACTIONS(9991), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(9989), + [anon_sym_COLON_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(4083), + [sym_false] = ACTIONS(9991), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(9991), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_sizeof] = ACTIONS(4085), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6318), + [anon_sym_new] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4093), }, - [4307] = { - [sym_parameter_list] = STATE(4311), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), + [4279] = { + [sym_parameter_list] = STATE(4283), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_SEMI] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), }, - [4308] = { - [sym_abstract_array_declarator] = STATE(4611), - [sym_parameter_list] = STATE(3827), - [sym_abstract_reference_declarator] = STATE(4611), - [sym_abstract_function_declarator] = STATE(4611), - [aux_sym_type_definition_repeat1] = STATE(4610), - [sym_abstract_pointer_declarator] = STATE(4611), - [sym_type_qualifier] = STATE(4610), - [sym__abstract_declarator] = STATE(4611), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(1062), + [4280] = { + [sym_abstract_reference_declarator] = STATE(4582), + [aux_sym_type_definition_repeat1] = STATE(4581), + [sym_abstract_array_declarator] = STATE(4582), + [sym_parameter_list] = STATE(3802), + [sym_abstract_function_declarator] = STATE(4582), + [sym_abstract_pointer_declarator] = STATE(4582), + [sym_type_qualifier] = STATE(4581), + [sym__abstract_declarator] = STATE(4582), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(8295), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(8297), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(8299), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(8283), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(4987), }, - [4309] = { - [sym_parameter_list] = STATE(4311), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), + [4281] = { + [sym_parameter_list] = STATE(4283), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), + [anon_sym_LBRACE] = ACTIONS(4987), }, - [4310] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4612), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4612), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10027), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4282] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4583), + [sym_type_qualifier] = STATE(4583), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(9993), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(3838), }, - [4311] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4613), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4613), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10029), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4283] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4584), + [sym_type_qualifier] = STATE(4584), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(9995), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(4115), - }, - [4312] = { - [sym_type_qualifier] = STATE(4312), - [aux_sym_type_definition_repeat1] = STATE(4312), - [anon_sym_LPAREN2] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), - [sym_comment] = ACTIONS(3), - [anon_sym_mutable] = ACTIONS(5001), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_explicit] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), - }, - [4313] = { - [sym_parameter_list] = STATE(1033), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(7275), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(3838), }, - [4314] = { - [sym_pointer_type_declarator] = STATE(4614), - [sym_array_type_declarator] = STATE(4614), - [sym_function_type_declarator] = STATE(4614), - [sym__type_declarator] = STATE(4614), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [4284] = { + [sym_pointer_type_declarator] = STATE(4585), + [sym_array_type_declarator] = STATE(4585), + [sym_function_type_declarator] = STATE(4585), + [sym__type_declarator] = STATE(4585), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [4315] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(4616), - [anon_sym_LPAREN2] = ACTIONS(587), + [4285] = { + [aux_sym_type_definition_repeat2] = STATE(4587), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10031), + [anon_sym_SEMI] = ACTIONS(9997), }, - [4316] = { - [sym_do_statement] = STATE(4618), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4286] = { + [sym_do_statement] = STATE(4589), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4618), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4618), - [sym_if_statement] = STATE(4618), - [sym_switch_statement] = STATE(4618), - [sym_for_statement] = STATE(4618), - [sym_return_statement] = STATE(4618), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4589), + [sym_try_statement] = STATE(4589), + [aux_sym_switch_body_repeat1] = STATE(4589), + [sym_if_statement] = STATE(4589), + [sym_switch_statement] = STATE(4589), + [sym_for_statement] = STATE(4589), + [sym_return_statement] = STATE(4589), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4618), - [aux_sym_switch_body_repeat1] = STATE(4618), - [sym_case_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(4589), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4589), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4618), - [sym_labeled_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_while_statement] = STATE(4618), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4589), + [sym_for_range_loop] = STATE(4589), + [sym_compound_statement] = STATE(4589), + [sym_labeled_statement] = STATE(4589), + [sym_expression_statement] = STATE(4589), + [sym_while_statement] = STATE(4589), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(10033), + [anon_sym_RBRACE] = ACTIONS(9999), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4317] = { - [anon_sym_DASH] = ACTIONS(2156), - [sym_raw_string_literal] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [anon_sym_mutable] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_sizeof] = ACTIONS(2156), - [anon_sym_volatile] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_typedef] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_explicit] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym__Atomic] = ACTIONS(2156), - [sym_number_literal] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_constexpr] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2158), - [anon_sym_struct] = ACTIONS(2156), - [sym_auto] = ACTIONS(2156), - [anon_sym_signed] = ACTIONS(2156), - [anon_sym_long] = ACTIONS(2156), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_typename] = ACTIONS(2156), - [anon_sym_short] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_goto] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [sym_primitive_type] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_nullptr] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_restrict] = ACTIONS(2156), + [4287] = { + [anon_sym_DASH] = ACTIONS(2158), + [sym_raw_string_literal] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2158), + [sym_true] = ACTIONS(2158), + [anon_sym_mutable] = ACTIONS(2158), + [sym_null] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym_volatile] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2158), + [anon_sym_typedef] = ACTIONS(2158), + [anon_sym_switch] = ACTIONS(2158), + [anon_sym_explicit] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2158), + [anon_sym_delete] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym__Atomic] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_constexpr] = ACTIONS(2158), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2158), + [sym_auto] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2158), + [anon_sym_long] = ACTIONS(2158), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_typename] = ACTIONS(2158), + [anon_sym_short] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2158), + [anon_sym_goto] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_register] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_LBRACK] = ACTIONS(2158), + [anon_sym_class] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [sym_primitive_type] = ACTIONS(2158), + [sym_false] = ACTIONS(2158), + [sym_nullptr] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2158), }, - [4318] = { - [sym_template_argument_list] = STATE(377), + [4288] = { + [anon_sym_LPAREN2] = ACTIONS(2168), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_restrict] = ACTIONS(2173), + [anon_sym_mutable] = ACTIONS(2173), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_volatile] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_explicit] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2173), + [sym_operator_name] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym__Atomic] = ACTIONS(2173), + [anon_sym_constexpr] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2168), + [anon_sym_DASH_GT] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_inline] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + }, + [4289] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -175078,7 +174479,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -175088,7 +174489,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(8341), + [anon_sym_COLON] = ACTIONS(8309), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -175114,998 +174515,1044 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [4319] = { - [anon_sym_DASH] = ACTIONS(2353), - [sym_raw_string_literal] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [anon_sym_mutable] = ACTIONS(2353), - [sym_null] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_sizeof] = ACTIONS(2353), - [anon_sym_volatile] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_explicit] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2353), - [anon_sym_delete] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym__Atomic] = ACTIONS(2353), - [sym_number_literal] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_constexpr] = ACTIONS(2353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2353), - [sym_auto] = ACTIONS(2353), - [anon_sym_signed] = ACTIONS(2353), - [anon_sym_long] = ACTIONS(2353), - [anon_sym_COLON_COLON] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_typename] = ACTIONS(2353), - [anon_sym_short] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_goto] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_register] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [sym_primitive_type] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_nullptr] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2353), + [4290] = { + [anon_sym_DASH] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2355), + [sym_true] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym_case] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2355), + [sym_auto] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [sym_primitive_type] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2355), }, - [4320] = { - [anon_sym_DASH] = ACTIONS(2707), - [sym_raw_string_literal] = ACTIONS(2709), - [anon_sym_else] = ACTIONS(2707), - [sym_true] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [sym_null] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2707), - [anon_sym_catch] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2707), - [sym_auto] = ACTIONS(2707), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [sym_nullptr] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2707), + [4291] = { + [anon_sym_DASH] = ACTIONS(2709), + [sym_raw_string_literal] = ACTIONS(2711), + [anon_sym_else] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2709), + [sym_auto] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2711), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2711), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_restrict] = ACTIONS(2709), }, - [4321] = { - [anon_sym_DASH] = ACTIONS(3140), - [sym_raw_string_literal] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [sym_identifier] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_struct] = ACTIONS(3140), - [sym_auto] = ACTIONS(3140), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_AMP] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_restrict] = ACTIONS(3140), + [4292] = { + [anon_sym_DASH] = ACTIONS(3142), + [sym_raw_string_literal] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [anon_sym_mutable] = ACTIONS(3142), + [sym_null] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_sizeof] = ACTIONS(3142), + [anon_sym_volatile] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_typedef] = ACTIONS(3142), + [anon_sym_switch] = ACTIONS(3142), + [anon_sym_explicit] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3142), + [anon_sym_delete] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym__Atomic] = ACTIONS(3142), + [sym_number_literal] = ACTIONS(3144), + [anon_sym_extern] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), + [anon_sym_constexpr] = ACTIONS(3142), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3144), + [anon_sym_case] = ACTIONS(3142), + [anon_sym_SQUOTE] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_LPAREN2] = ACTIONS(3144), + [anon_sym_struct] = ACTIONS(3142), + [sym_auto] = ACTIONS(3142), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_COLON_COLON] = ACTIONS(3144), + [anon_sym_default] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_union] = ACTIONS(3142), + [anon_sym_typename] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_goto] = ACTIONS(3142), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_register] = ACTIONS(3142), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_class] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [sym_primitive_type] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_nullptr] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_restrict] = ACTIONS(3142), }, - [4322] = { - [anon_sym_DASH] = ACTIONS(3146), - [sym_raw_string_literal] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [anon_sym_mutable] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_sizeof] = ACTIONS(3146), - [anon_sym_volatile] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_typedef] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_explicit] = ACTIONS(3146), - [sym_identifier] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym__Atomic] = ACTIONS(3146), - [sym_number_literal] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [anon_sym_constexpr] = ACTIONS(3146), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3146), - [sym_auto] = ACTIONS(3146), - [anon_sym_signed] = ACTIONS(3146), - [anon_sym_long] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3146), - [anon_sym_typename] = ACTIONS(3146), - [anon_sym_short] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_goto] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_register] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [sym_primitive_type] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_nullptr] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3146), + [4293] = { + [anon_sym_DASH] = ACTIONS(3148), + [sym_raw_string_literal] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_sizeof] = ACTIONS(3148), + [anon_sym_volatile] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_explicit] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym__Atomic] = ACTIONS(3148), + [sym_number_literal] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [anon_sym_constexpr] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), + [anon_sym_case] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), + [anon_sym_LPAREN2] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3148), + [sym_auto] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3148), + [anon_sym_long] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3148), + [anon_sym_typename] = ACTIONS(3148), + [anon_sym_short] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_goto] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_register] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [sym_primitive_type] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_nullptr] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_restrict] = ACTIONS(3148), }, - [4323] = { - [sym_parameter_list] = STATE(4619), - [anon_sym_LPAREN2] = ACTIONS(587), + [4294] = { + [sym_parameter_list] = STATE(4590), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), }, - [4324] = { - [aux_sym_try_statement_repeat1] = STATE(4620), - [sym_catch_clause] = STATE(4620), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(10035), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [4295] = { + [sym_catch_clause] = STATE(4591), + [aux_sym_try_statement_repeat1] = STATE(4591), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(10001), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, - [4325] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4622), - [sym_logical_expression] = STATE(4622), - [sym_bitwise_expression] = STATE(4622), - [sym_cast_expression] = STATE(4622), - [sym_new_expression] = STATE(4622), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4622), - [sym_char_literal] = STATE(4622), - [sym_template_function] = STATE(4622), - [sym_conditional_expression] = STATE(4622), - [sym_equality_expression] = STATE(4622), - [sym_relational_expression] = STATE(4622), - [sym_delete_expression] = STATE(4622), - [sym_sizeof_expression] = STATE(4622), - [sym_parenthesized_expression] = STATE(4622), - [sym_lambda_expression] = STATE(4622), - [sym_concatenated_string] = STATE(4622), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4622), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4622), - [sym_math_expression] = STATE(4622), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10037), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10039), - [sym_null] = ACTIONS(10039), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10037), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10039), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10039), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10041), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4296] = { + [sym_template_function] = STATE(4593), + [sym__expression] = STATE(4593), + [sym_logical_expression] = STATE(4593), + [sym_bitwise_expression] = STATE(4593), + [sym_cast_expression] = STATE(4593), + [sym_delete_expression] = STATE(4593), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4593), + [sym_lambda_expression] = STATE(4593), + [sym_char_literal] = STATE(4593), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4593), + [sym_equality_expression] = STATE(4593), + [sym_relational_expression] = STATE(4593), + [sym_sizeof_expression] = STATE(4593), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4593), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4593), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4593), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4593), + [sym_math_expression] = STATE(4593), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4593), + [sym_raw_string_literal] = ACTIONS(10003), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10005), + [sym_null] = ACTIONS(10005), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10003), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10005), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10005), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10007), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4326] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10043), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4297] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10009), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4327] = { - [anon_sym_COLON] = ACTIONS(10045), + [4298] = { + [anon_sym_COLON] = ACTIONS(10011), [sym_comment] = ACTIONS(3), }, - [4328] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10047), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4299] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10013), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4329] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4626), - [sym_logical_expression] = STATE(4626), - [sym_bitwise_expression] = STATE(4626), - [sym_cast_expression] = STATE(4626), - [sym_new_expression] = STATE(4626), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4626), - [sym_char_literal] = STATE(4626), - [sym_template_function] = STATE(4626), - [sym_conditional_expression] = STATE(4626), - [sym_equality_expression] = STATE(4626), - [sym_relational_expression] = STATE(4626), - [sym_delete_expression] = STATE(4626), - [sym_sizeof_expression] = STATE(4626), - [sym_parenthesized_expression] = STATE(4626), - [sym_lambda_expression] = STATE(4626), - [sym_concatenated_string] = STATE(4626), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4626), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4626), - [sym_math_expression] = STATE(4626), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10049), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10051), - [sym_null] = ACTIONS(10051), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10049), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10051), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10051), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4300] = { + [sym_template_function] = STATE(4597), + [sym__expression] = STATE(4597), + [sym_logical_expression] = STATE(4597), + [sym_bitwise_expression] = STATE(4597), + [sym_cast_expression] = STATE(4597), + [sym_delete_expression] = STATE(4597), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4597), + [sym_lambda_expression] = STATE(4597), + [sym_char_literal] = STATE(4597), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4597), + [sym_equality_expression] = STATE(4597), + [sym_relational_expression] = STATE(4597), + [sym_sizeof_expression] = STATE(4597), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4597), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4597), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4597), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4597), + [sym_math_expression] = STATE(4597), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4597), + [sym_raw_string_literal] = ACTIONS(10015), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10017), + [sym_null] = ACTIONS(10017), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10015), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10017), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10017), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4330] = { - [sym_parenthesized_expression] = STATE(4628), - [anon_sym_LPAREN2] = ACTIONS(10053), + [4301] = { + [sym_parenthesized_expression] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(10019), [sym_comment] = ACTIONS(3), }, - [4331] = { - [anon_sym_DASH] = ACTIONS(3678), - [sym_raw_string_literal] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3678), - [sym_true] = ACTIONS(3678), - [anon_sym_mutable] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_sizeof] = ACTIONS(3678), - [anon_sym_volatile] = ACTIONS(3678), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_typedef] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3678), - [anon_sym_explicit] = ACTIONS(3678), - [sym_identifier] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [anon_sym__Atomic] = ACTIONS(3678), - [sym_number_literal] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), - [anon_sym_constexpr] = ACTIONS(3678), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), - [anon_sym_case] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3678), - [sym_auto] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3678), - [anon_sym_long] = ACTIONS(3678), - [anon_sym_COLON_COLON] = ACTIONS(3680), - [anon_sym_default] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3678), - [anon_sym_typename] = ACTIONS(3678), - [anon_sym_short] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_goto] = ACTIONS(3678), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [anon_sym_register] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_if] = ACTIONS(3678), - [sym_primitive_type] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_nullptr] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3678), + [4302] = { + [anon_sym_DASH] = ACTIONS(3688), + [sym_raw_string_literal] = ACTIONS(3690), + [anon_sym_else] = ACTIONS(3688), + [sym_true] = ACTIONS(3688), + [anon_sym_mutable] = ACTIONS(3688), + [sym_null] = ACTIONS(3688), + [anon_sym_break] = ACTIONS(3688), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_sizeof] = ACTIONS(3688), + [anon_sym_volatile] = ACTIONS(3688), + [anon_sym_PLUS] = ACTIONS(3688), + [anon_sym_typedef] = ACTIONS(3688), + [anon_sym_switch] = ACTIONS(3688), + [anon_sym_explicit] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3688), + [anon_sym_delete] = ACTIONS(3688), + [anon_sym_continue] = ACTIONS(3688), + [anon_sym__Atomic] = ACTIONS(3688), + [sym_number_literal] = ACTIONS(3690), + [anon_sym_extern] = ACTIONS(3688), + [anon_sym_enum] = ACTIONS(3688), + [anon_sym_constexpr] = ACTIONS(3688), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), + [anon_sym_case] = ACTIONS(3688), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_struct] = ACTIONS(3688), + [sym_auto] = ACTIONS(3688), + [anon_sym_signed] = ACTIONS(3688), + [anon_sym_long] = ACTIONS(3688), + [anon_sym_COLON_COLON] = ACTIONS(3690), + [anon_sym_default] = ACTIONS(3688), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3688), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_union] = ACTIONS(3688), + [anon_sym_typename] = ACTIONS(3688), + [anon_sym_short] = ACTIONS(3688), + [anon_sym_new] = ACTIONS(3688), + [anon_sym_goto] = ACTIONS(3688), + [anon_sym_while] = ACTIONS(3688), + [anon_sym_try] = ACTIONS(3688), + [anon_sym_for] = ACTIONS(3688), + [anon_sym_register] = ACTIONS(3688), + [anon_sym_DQUOTE] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_class] = ACTIONS(3688), + [anon_sym_if] = ACTIONS(3688), + [sym_primitive_type] = ACTIONS(3688), + [sym_false] = ACTIONS(3688), + [sym_nullptr] = ACTIONS(3688), + [anon_sym_do] = ACTIONS(3688), + [anon_sym_return] = ACTIONS(3688), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym_inline] = ACTIONS(3688), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_restrict] = ACTIONS(3688), }, - [4332] = { - [anon_sym_DASH] = ACTIONS(4075), - [sym_raw_string_literal] = ACTIONS(4077), - [sym_true] = ACTIONS(4075), - [anon_sym_mutable] = ACTIONS(4075), - [sym_null] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [anon_sym_BANG] = ACTIONS(4077), - [anon_sym_sizeof] = ACTIONS(4075), - [anon_sym_volatile] = ACTIONS(4075), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_typedef] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(4075), - [anon_sym_explicit] = ACTIONS(4075), - [sym_identifier] = ACTIONS(4075), - [anon_sym_delete] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [anon_sym__Atomic] = ACTIONS(4075), - [sym_number_literal] = ACTIONS(4077), - [anon_sym_extern] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_constexpr] = ACTIONS(4075), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4077), - [anon_sym_case] = ACTIONS(4075), - [anon_sym_SQUOTE] = ACTIONS(4077), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_LPAREN2] = ACTIONS(4077), - [anon_sym_struct] = ACTIONS(4075), - [sym_auto] = ACTIONS(4075), - [anon_sym_signed] = ACTIONS(4075), - [anon_sym_long] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_default] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4077), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_STAR] = ACTIONS(4077), - [anon_sym_union] = ACTIONS(4075), - [anon_sym_typename] = ACTIONS(4075), - [anon_sym_short] = ACTIONS(4075), - [anon_sym_new] = ACTIONS(4075), - [anon_sym_goto] = ACTIONS(4075), - [anon_sym_while] = ACTIONS(4075), - [anon_sym_try] = ACTIONS(4075), - [anon_sym_for] = ACTIONS(4075), - [anon_sym_register] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(4077), - [anon_sym_const] = ACTIONS(4075), - [anon_sym_LBRACK] = ACTIONS(4075), - [anon_sym_class] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [sym_primitive_type] = ACTIONS(4075), - [sym_false] = ACTIONS(4075), - [sym_nullptr] = ACTIONS(4075), - [anon_sym_do] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_TILDE] = ACTIONS(4077), - [anon_sym_SEMI] = ACTIONS(4077), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_restrict] = ACTIONS(4075), + [4303] = { + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(4601), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(10021), }, - [4333] = { - [aux_sym_declaration_repeat1] = STATE(2028), + [4304] = { + [aux_sym_declaration_repeat1] = STATE(4601), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10055), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10021), }, - [4334] = { - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(4630), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(10055), + [4305] = { + [anon_sym_LPAREN2] = ACTIONS(3854), + [anon_sym_DASH] = ACTIONS(3852), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_restrict] = ACTIONS(3859), + [anon_sym_mutable] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_static] = ACTIONS(3859), + [anon_sym_volatile] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3850), + [anon_sym_STAR] = ACTIONS(3854), + [anon_sym_SLASH] = ACTIONS(3852), + [anon_sym_explicit] = ACTIONS(3859), + [sym_identifier] = ACTIONS(3859), + [sym_operator_name] = ACTIONS(3857), + [anon_sym_CARET] = ACTIONS(3850), + [anon_sym_GT] = ACTIONS(3852), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_PIPE_PIPE] = ACTIONS(3850), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_register] = ACTIONS(3859), + [anon_sym_LT_LT] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_PERCENT] = ACTIONS(3850), + [anon_sym_extern] = ACTIONS(3859), + [anon_sym_const] = ACTIONS(3859), + [anon_sym__Atomic] = ACTIONS(3859), + [anon_sym_constexpr] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3850), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_BANG_EQ] = ACTIONS(3850), + [anon_sym_LT_EQ] = ACTIONS(3850), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_DASH_GT] = ACTIONS(3850), + [anon_sym_PLUS_PLUS] = ACTIONS(3850), + [anon_sym_inline] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3850), + [anon_sym_DASH_DASH] = ACTIONS(3850), }, - [4335] = { - [aux_sym_declaration_repeat1] = STATE(4630), + [4306] = { + [anon_sym_DASH] = ACTIONS(4111), + [sym_raw_string_literal] = ACTIONS(4113), + [sym_true] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [sym_null] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_switch] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [sym_identifier] = ACTIONS(4111), + [anon_sym_delete] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [sym_number_literal] = ACTIONS(4113), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym_case] = ACTIONS(4111), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_DASH_DASH] = ACTIONS(4113), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_struct] = ACTIONS(4111), + [sym_auto] = ACTIONS(4111), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_default] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4113), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_RBRACE] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_goto] = ACTIONS(4111), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_DQUOTE] = ACTIONS(4113), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [sym_nullptr] = ACTIONS(4111), + [anon_sym_do] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym_PLUS_PLUS] = ACTIONS(4113), + [anon_sym_restrict] = ACTIONS(4111), + }, + [4307] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10055), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10021), }, - [4336] = { - [anon_sym_LPAREN2] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6505), - [sym_raw_string_literal] = ACTIONS(6507), - [sym_true] = ACTIONS(6505), - [anon_sym_else] = ACTIONS(6505), - [sym_null] = ACTIONS(6505), - [anon_sym_COLON_COLON] = ACTIONS(6507), - [anon_sym_default] = ACTIONS(6505), - [anon_sym_break] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6507), - [anon_sym_AMP] = ACTIONS(6507), - [anon_sym_sizeof] = ACTIONS(6505), - [anon_sym_RBRACE] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6505), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_switch] = ACTIONS(6505), - [sym_identifier] = ACTIONS(6505), - [anon_sym_new] = ACTIONS(6505), - [anon_sym_goto] = ACTIONS(6505), - [anon_sym_while] = ACTIONS(6505), - [anon_sym_continue] = ACTIONS(6505), - [anon_sym_for] = ACTIONS(6505), - [anon_sym_delete] = ACTIONS(6505), - [anon_sym_try] = ACTIONS(6505), - [anon_sym_DQUOTE] = ACTIONS(6507), - [sym_number_literal] = ACTIONS(6507), - [anon_sym_LBRACK] = ACTIONS(6507), - [anon_sym_if] = ACTIONS(6505), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6505), - [sym_nullptr] = ACTIONS(6505), - [anon_sym_do] = ACTIONS(6505), - [anon_sym_case] = ACTIONS(6505), - [anon_sym_return] = ACTIONS(6505), - [anon_sym_TILDE] = ACTIONS(6507), - [anon_sym_SEMI] = ACTIONS(6507), - [anon_sym_PLUS_PLUS] = ACTIONS(6507), - [anon_sym_SQUOTE] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [anon_sym_DASH_DASH] = ACTIONS(6507), + [4308] = { + [anon_sym_LPAREN2] = ACTIONS(6496), + [anon_sym_DASH] = ACTIONS(6494), + [sym_raw_string_literal] = ACTIONS(6496), + [sym_true] = ACTIONS(6494), + [anon_sym_else] = ACTIONS(6494), + [sym_null] = ACTIONS(6494), + [anon_sym_COLON_COLON] = ACTIONS(6496), + [anon_sym_default] = ACTIONS(6494), + [anon_sym_break] = ACTIONS(6494), + [anon_sym_BANG] = ACTIONS(6496), + [anon_sym_AMP] = ACTIONS(6496), + [anon_sym_sizeof] = ACTIONS(6494), + [anon_sym_RBRACE] = ACTIONS(6496), + [anon_sym_PLUS] = ACTIONS(6494), + [anon_sym_STAR] = ACTIONS(6496), + [anon_sym_switch] = ACTIONS(6494), + [sym_identifier] = ACTIONS(6494), + [anon_sym_new] = ACTIONS(6494), + [anon_sym_goto] = ACTIONS(6494), + [anon_sym_while] = ACTIONS(6494), + [anon_sym_continue] = ACTIONS(6494), + [anon_sym_for] = ACTIONS(6494), + [anon_sym_delete] = ACTIONS(6494), + [anon_sym_try] = ACTIONS(6494), + [anon_sym_DQUOTE] = ACTIONS(6496), + [sym_number_literal] = ACTIONS(6496), + [anon_sym_LBRACK] = ACTIONS(6496), + [anon_sym_if] = ACTIONS(6494), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(6494), + [sym_nullptr] = ACTIONS(6494), + [anon_sym_do] = ACTIONS(6494), + [anon_sym_case] = ACTIONS(6494), + [anon_sym_return] = ACTIONS(6494), + [anon_sym_TILDE] = ACTIONS(6496), + [anon_sym_SEMI] = ACTIONS(6496), + [anon_sym_PLUS_PLUS] = ACTIONS(6496), + [anon_sym_SQUOTE] = ACTIONS(6496), + [anon_sym_LBRACE] = ACTIONS(6496), + [anon_sym_DASH_DASH] = ACTIONS(6496), }, - [4337] = { - [sym_do_statement] = STATE(4631), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4309] = { + [sym_do_statement] = STATE(4602), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4631), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4631), - [sym_if_statement] = STATE(4631), - [sym_switch_statement] = STATE(4631), - [sym_for_statement] = STATE(4631), - [sym_return_statement] = STATE(4631), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4602), + [sym_try_statement] = STATE(4602), + [sym_if_statement] = STATE(4602), + [sym_switch_statement] = STATE(4602), + [sym_for_statement] = STATE(4602), + [sym_return_statement] = STATE(4602), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4631), - [sym_break_statement] = STATE(4631), - [sym_continue_statement] = STATE(4631), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4602), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4631), - [sym_labeled_statement] = STATE(4631), - [sym_expression_statement] = STATE(4631), - [sym_while_statement] = STATE(4631), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4602), + [sym_for_range_loop] = STATE(4602), + [sym_compound_statement] = STATE(4602), + [sym_labeled_statement] = STATE(4602), + [sym_expression_statement] = STATE(4602), + [sym_while_statement] = STATE(4602), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4338] = { - [aux_sym_for_statement_repeat1] = STATE(4633), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10057), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4310] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4604), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10023), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4339] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4634), - [sym_logical_expression] = STATE(4634), - [sym_bitwise_expression] = STATE(4634), - [sym_cast_expression] = STATE(4634), - [sym_new_expression] = STATE(4634), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4634), - [sym_char_literal] = STATE(4634), - [sym_template_function] = STATE(4634), - [sym_conditional_expression] = STATE(4634), - [sym_equality_expression] = STATE(4634), - [sym_relational_expression] = STATE(4634), - [sym_delete_expression] = STATE(4634), - [sym_sizeof_expression] = STATE(4634), - [sym_parenthesized_expression] = STATE(4634), - [sym_lambda_expression] = STATE(4634), - [sym_concatenated_string] = STATE(4634), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4634), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4634), - [sym_math_expression] = STATE(4634), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10059), + [4311] = { + [sym_template_function] = STATE(4605), + [sym__expression] = STATE(4605), + [sym_logical_expression] = STATE(4605), + [sym_bitwise_expression] = STATE(4605), + [sym_cast_expression] = STATE(4605), + [sym_delete_expression] = STATE(4605), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4605), + [sym_lambda_expression] = STATE(4605), + [sym_char_literal] = STATE(4605), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4605), + [sym_equality_expression] = STATE(4605), + [sym_relational_expression] = STATE(4605), + [sym_sizeof_expression] = STATE(4605), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4605), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4605), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4605), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4605), + [sym_math_expression] = STATE(4605), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4605), + [sym_raw_string_literal] = ACTIONS(10025), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10061), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10061), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10027), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10027), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10059), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10025), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10061), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10061), + [sym_false] = ACTIONS(10027), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10027), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10057), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10023), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4340] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10063), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4312] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10029), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4341] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10065), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4313] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10031), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4342] = { - [anon_sym_LPAREN2] = ACTIONS(7559), - [anon_sym_DASH] = ACTIONS(7557), - [sym_raw_string_literal] = ACTIONS(7559), - [sym_true] = ACTIONS(7557), - [anon_sym_else] = ACTIONS(7557), - [sym_null] = ACTIONS(7557), - [anon_sym_COLON_COLON] = ACTIONS(7559), - [anon_sym_default] = ACTIONS(7557), - [anon_sym_break] = ACTIONS(7557), - [anon_sym_BANG] = ACTIONS(7559), - [anon_sym_AMP] = ACTIONS(7559), - [anon_sym_sizeof] = ACTIONS(7557), - [anon_sym_RBRACE] = ACTIONS(7559), - [anon_sym_PLUS] = ACTIONS(7557), - [anon_sym_STAR] = ACTIONS(7559), - [anon_sym_switch] = ACTIONS(7557), - [sym_identifier] = ACTIONS(7557), - [anon_sym_new] = ACTIONS(7557), - [anon_sym_goto] = ACTIONS(7557), - [anon_sym_catch] = ACTIONS(7557), - [anon_sym_while] = ACTIONS(7557), - [anon_sym_continue] = ACTIONS(7557), - [anon_sym_for] = ACTIONS(7557), - [anon_sym_delete] = ACTIONS(7557), - [anon_sym_try] = ACTIONS(7557), - [anon_sym_DQUOTE] = ACTIONS(7559), - [sym_number_literal] = ACTIONS(7559), - [anon_sym_LBRACK] = ACTIONS(7559), - [anon_sym_if] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(7557), - [sym_nullptr] = ACTIONS(7557), - [anon_sym_do] = ACTIONS(7557), - [anon_sym_case] = ACTIONS(7557), - [anon_sym_return] = ACTIONS(7557), - [anon_sym_TILDE] = ACTIONS(7559), - [anon_sym_SEMI] = ACTIONS(7559), - [anon_sym_PLUS_PLUS] = ACTIONS(7559), - [anon_sym_SQUOTE] = ACTIONS(7559), - [anon_sym_LBRACE] = ACTIONS(7559), - [anon_sym_DASH_DASH] = ACTIONS(7559), + [4314] = { + [anon_sym_LPAREN2] = ACTIONS(7540), + [anon_sym_DASH] = ACTIONS(7538), + [sym_raw_string_literal] = ACTIONS(7540), + [sym_true] = ACTIONS(7538), + [anon_sym_else] = ACTIONS(7538), + [sym_null] = ACTIONS(7538), + [anon_sym_COLON_COLON] = ACTIONS(7540), + [anon_sym_default] = ACTIONS(7538), + [anon_sym_break] = ACTIONS(7538), + [anon_sym_BANG] = ACTIONS(7540), + [anon_sym_AMP] = ACTIONS(7540), + [anon_sym_sizeof] = ACTIONS(7538), + [anon_sym_RBRACE] = ACTIONS(7540), + [anon_sym_PLUS] = ACTIONS(7538), + [anon_sym_STAR] = ACTIONS(7540), + [anon_sym_switch] = ACTIONS(7538), + [sym_identifier] = ACTIONS(7538), + [anon_sym_new] = ACTIONS(7538), + [anon_sym_goto] = ACTIONS(7538), + [anon_sym_catch] = ACTIONS(7538), + [anon_sym_while] = ACTIONS(7538), + [anon_sym_continue] = ACTIONS(7538), + [anon_sym_for] = ACTIONS(7538), + [anon_sym_delete] = ACTIONS(7538), + [anon_sym_try] = ACTIONS(7538), + [anon_sym_DQUOTE] = ACTIONS(7540), + [sym_number_literal] = ACTIONS(7540), + [anon_sym_LBRACK] = ACTIONS(7540), + [anon_sym_if] = ACTIONS(7538), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(7538), + [sym_nullptr] = ACTIONS(7538), + [anon_sym_do] = ACTIONS(7538), + [anon_sym_case] = ACTIONS(7538), + [anon_sym_return] = ACTIONS(7538), + [anon_sym_TILDE] = ACTIONS(7540), + [anon_sym_SEMI] = ACTIONS(7540), + [anon_sym_PLUS_PLUS] = ACTIONS(7540), + [anon_sym_SQUOTE] = ACTIONS(7540), + [anon_sym_LBRACE] = ACTIONS(7540), + [anon_sym_DASH_DASH] = ACTIONS(7540), }, - [4343] = { - [sym_template_argument_list] = STATE(377), + [4315] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -176113,7 +175560,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -176123,7 +175570,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(10067), + [anon_sym_COLON] = ACTIONS(10033), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -176149,1962 +175596,1962 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [4344] = { - [sym_parenthesized_expression] = STATE(4638), - [anon_sym_LPAREN2] = ACTIONS(372), + [4316] = { + [sym_parenthesized_expression] = STATE(4609), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [4345] = { - [anon_sym_LPAREN2] = ACTIONS(10069), + [4317] = { + [anon_sym_LPAREN2] = ACTIONS(10035), [sym_comment] = ACTIONS(3), }, - [4346] = { - [sym_compound_statement] = STATE(4640), - [anon_sym_LBRACE] = ACTIONS(374), + [4318] = { + [sym_compound_statement] = STATE(4611), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [4347] = { - [anon_sym_LPAREN2] = ACTIONS(10071), - [anon_sym_constexpr] = ACTIONS(10073), + [4319] = { + [anon_sym_LPAREN2] = ACTIONS(10037), + [anon_sym_constexpr] = ACTIONS(10039), [sym_comment] = ACTIONS(3), }, - [4348] = { - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [sym_true] = ACTIONS(7770), - [anon_sym_else] = ACTIONS(10075), - [sym_null] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_default] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_AMP] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_RBRACE] = ACTIONS(7772), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_switch] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_LBRACK] = ACTIONS(7772), - [anon_sym_if] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_case] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), + [4320] = { + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [sym_true] = ACTIONS(7751), + [anon_sym_else] = ACTIONS(10041), + [sym_null] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_default] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_AMP] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_switch] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_if] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_case] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), }, - [4349] = { - [sym_do_statement] = STATE(4644), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4321] = { + [sym_do_statement] = STATE(4615), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4644), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4644), - [sym_if_statement] = STATE(4644), - [sym_switch_statement] = STATE(4644), - [sym_for_statement] = STATE(4644), - [sym_return_statement] = STATE(4644), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4615), + [sym_try_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_switch_statement] = STATE(4615), + [sym_for_statement] = STATE(4615), + [sym_return_statement] = STATE(4615), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4644), - [sym_break_statement] = STATE(4644), - [sym_continue_statement] = STATE(4644), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4615), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4644), - [sym_labeled_statement] = STATE(4644), - [sym_expression_statement] = STATE(4644), - [sym_while_statement] = STATE(4644), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4615), + [sym_for_range_loop] = STATE(4615), + [sym_compound_statement] = STATE(4615), + [sym_labeled_statement] = STATE(4615), + [sym_expression_statement] = STATE(4615), + [sym_while_statement] = STATE(4615), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4350] = { - [sym_argument_list] = STATE(1165), + [4322] = { + [sym_argument_list] = STATE(1160), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_GT2] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(6684), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(6690), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(8855), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(6692), + [anon_sym_DOT] = ACTIONS(2307), + [anon_sym_LT_LT] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(6696), + [anon_sym_DASH_GT] = ACTIONS(2307), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), + }, + [4323] = { + [anon_sym_LPAREN2] = ACTIONS(6794), + [anon_sym_DASH] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6794), + [anon_sym_final] = ACTIONS(6794), + [anon_sym_STAR_EQ] = ACTIONS(6794), + [anon_sym_LT_LT_EQ] = ACTIONS(6794), + [anon_sym_PERCENT_EQ] = ACTIONS(6794), + [anon_sym_GT2] = ACTIONS(6794), + [anon_sym_COLON_COLON] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6794), + [anon_sym_PIPE] = ACTIONS(6796), + [anon_sym_LT] = ACTIONS(6796), + [anon_sym_CARET_EQ] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6796), + [anon_sym_PLUS] = ACTIONS(6796), + [anon_sym_GT_EQ] = ACTIONS(6796), + [anon_sym_STAR] = ACTIONS(6796), + [anon_sym_SLASH] = ACTIONS(6796), + [anon_sym_override] = ACTIONS(6794), + [anon_sym_COLON] = ACTIONS(6796), + [anon_sym_SLASH_EQ] = ACTIONS(6794), + [anon_sym_PLUS_EQ] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6796), + [anon_sym_PIPE_EQ] = ACTIONS(6794), + [anon_sym_GT_GT_EQ] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6794), + [anon_sym_DASH_EQ] = ACTIONS(6794), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_BANG_EQ] = ACTIONS(6794), + [anon_sym_AMP_EQ] = ACTIONS(6794), + [anon_sym_AMP_AMP] = ACTIONS(6794), + [anon_sym_DASH_GT] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6794), + [anon_sym_LBRACE] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6796), + }, + [4324] = { + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_GT2] = ACTIONS(6801), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6803), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6801), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_PERCENT] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6803), + }, + [4325] = { + [anon_sym_LPAREN2] = ACTIONS(6915), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_STAR_EQ] = ACTIONS(6915), + [anon_sym_LT_LT_EQ] = ACTIONS(6915), + [anon_sym_PERCENT_EQ] = ACTIONS(6915), + [anon_sym_GT2] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(6915), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_CARET_EQ] = ACTIONS(6915), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_SLASH_EQ] = ACTIONS(6915), + [anon_sym_PLUS_EQ] = ACTIONS(6915), + [anon_sym_CARET] = ACTIONS(6917), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_PIPE_EQ] = ACTIONS(6915), + [anon_sym_GT_GT_EQ] = ACTIONS(6917), + [anon_sym_COMMA] = ACTIONS(6915), + [anon_sym_PIPE_PIPE] = ACTIONS(6915), + [anon_sym_DOT] = ACTIONS(6915), + [anon_sym_LT_LT] = ACTIONS(6917), + [anon_sym_LBRACK] = ACTIONS(6915), + [anon_sym_PERCENT] = ACTIONS(6917), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6915), + [anon_sym_DASH_EQ] = ACTIONS(6915), + [anon_sym_LT_EQ] = ACTIONS(6915), + [anon_sym_BANG_EQ] = ACTIONS(6915), + [anon_sym_AMP_EQ] = ACTIONS(6915), + [anon_sym_AMP_AMP] = ACTIONS(6915), + [anon_sym_DASH_GT] = ACTIONS(6915), + [anon_sym_EQ] = ACTIONS(6917), + [anon_sym_PLUS_PLUS] = ACTIONS(6915), + [anon_sym_GT_GT] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6915), + }, + [4326] = { + [sym_template_function] = STATE(2247), + [sym__expression] = STATE(2247), + [sym_logical_expression] = STATE(2247), + [sym_bitwise_expression] = STATE(2247), + [sym_cast_expression] = STATE(2247), + [sym_delete_expression] = STATE(2247), + [sym_field_expression] = STATE(449), + [sym_compound_literal_expression] = STATE(2247), + [sym_lambda_expression] = STATE(2247), + [sym_char_literal] = STATE(2247), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_field_designator] = STATE(452), + [sym_conditional_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_relational_expression] = STATE(2247), + [sym_sizeof_expression] = STATE(2247), + [sym_subscript_expression] = STATE(449), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(2248), + [sym_parenthesized_expression] = STATE(2247), + [sym_string_literal] = STATE(450), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(2247), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(2247), + [sym_pointer_expression] = STATE(449), + [sym_shift_expression] = STATE(2247), + [sym_math_expression] = STATE(2247), + [sym_call_expression] = STATE(449), + [sym_new_expression] = STATE(2247), + [sym_initializer_pair] = STATE(2248), + [sym_subscript_designator] = STATE(452), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_raw_string_literal] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_LPAREN2] = ACTIONS(754), + [sym_true] = ACTIONS(4477), + [anon_sym_DASH_DASH] = ACTIONS(758), + [sym_null] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(4475), + [anon_sym_COLON_COLON] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(768), + [sym_false] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(770), + [sym_nullptr] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_sizeof] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(10043), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [4327] = { + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_STAR_EQ] = ACTIONS(5014), + [anon_sym_LT_LT_EQ] = ACTIONS(5014), + [anon_sym_PERCENT_EQ] = ACTIONS(5014), + [anon_sym_GT2] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5014), + [anon_sym_PLUS_EQ] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5014), + [anon_sym_GT_GT_EQ] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_DASH_EQ] = ACTIONS(5014), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_AMP_EQ] = ACTIONS(5014), + [anon_sym_AMP_AMP] = ACTIONS(5014), + [anon_sym_DASH_GT] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5016), + }, + [4328] = { + [sym_field_declaration_list] = STATE(4617), + [anon_sym_LBRACE] = ACTIONS(6644), + [sym_comment] = ACTIONS(3), + }, + [4329] = { + [anon_sym_LPAREN2] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_STAR_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_EQ] = ACTIONS(5088), + [anon_sym_PERCENT_EQ] = ACTIONS(5088), + [anon_sym_GT2] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_CARET_EQ] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_GT_EQ] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_SLASH_EQ] = ACTIONS(5088), + [anon_sym_PLUS_EQ] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_PIPE_EQ] = ACTIONS(5088), + [anon_sym_GT_GT_EQ] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5088), + [anon_sym_DASH_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_AMP_EQ] = ACTIONS(5088), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5090), + }, + [4330] = { + [anon_sym_LPAREN2] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_GT2] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5238), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_BANG_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_DASH_GT] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5236), + [anon_sym_LBRACE] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5238), + }, + [4331] = { + [sym_field_declaration_list] = STATE(4618), + [anon_sym_LBRACE] = ACTIONS(6644), + [sym_comment] = ACTIONS(3), + }, + [4332] = { + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_DASH_DASH] = ACTIONS(5326), + [anon_sym_STAR_EQ] = ACTIONS(5326), + [anon_sym_LT_LT_EQ] = ACTIONS(5326), + [anon_sym_PERCENT_EQ] = ACTIONS(5326), + [anon_sym_GT2] = ACTIONS(5326), + [anon_sym_EQ_EQ] = ACTIONS(5326), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_CARET_EQ] = ACTIONS(5326), + [anon_sym_AMP] = ACTIONS(5328), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_GT_EQ] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_SLASH_EQ] = ACTIONS(5326), + [anon_sym_PLUS_EQ] = ACTIONS(5326), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_PIPE_EQ] = ACTIONS(5326), + [anon_sym_GT_GT_EQ] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_PIPE_PIPE] = ACTIONS(5326), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_LT_LT] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_PERCENT] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_DASH_EQ] = ACTIONS(5326), + [anon_sym_LT_EQ] = ACTIONS(5326), + [anon_sym_BANG_EQ] = ACTIONS(5326), + [anon_sym_AMP_EQ] = ACTIONS(5326), + [anon_sym_AMP_AMP] = ACTIONS(5326), + [anon_sym_DASH_GT] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5328), + [anon_sym_PLUS_PLUS] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_GT_GT] = ACTIONS(5328), + }, + [4333] = { + [sym_field_declaration_list] = STATE(4619), + [anon_sym_LBRACE] = ACTIONS(6644), + [sym_comment] = ACTIONS(3), + }, + [4334] = { + [anon_sym_LPAREN2] = ACTIONS(5330), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_DASH_DASH] = ACTIONS(5330), + [anon_sym_STAR_EQ] = ACTIONS(5330), + [anon_sym_LT_LT_EQ] = ACTIONS(5330), + [anon_sym_PERCENT_EQ] = ACTIONS(5330), + [anon_sym_GT2] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5330), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_CARET_EQ] = ACTIONS(5330), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_GT_EQ] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_SLASH_EQ] = ACTIONS(5330), + [anon_sym_PLUS_EQ] = ACTIONS(5330), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_PIPE_EQ] = ACTIONS(5330), + [anon_sym_GT_GT_EQ] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_PIPE_PIPE] = ACTIONS(5330), + [anon_sym_DOT] = ACTIONS(5330), + [anon_sym_LT_LT] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_PERCENT] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5330), + [anon_sym_DASH_EQ] = ACTIONS(5330), + [anon_sym_LT_EQ] = ACTIONS(5330), + [anon_sym_BANG_EQ] = ACTIONS(5330), + [anon_sym_AMP_EQ] = ACTIONS(5330), + [anon_sym_AMP_AMP] = ACTIONS(5330), + [anon_sym_DASH_GT] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5332), + [anon_sym_PLUS_PLUS] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + }, + [4335] = { + [sym_field_declaration_list] = STATE(4620), + [anon_sym_LBRACE] = ACTIONS(6644), + [sym_comment] = ACTIONS(3), + }, + [4336] = { + [anon_sym_LPAREN2] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4736), + [anon_sym_STAR_EQ] = ACTIONS(4736), + [anon_sym_LT_LT_EQ] = ACTIONS(4736), + [anon_sym_PERCENT_EQ] = ACTIONS(4736), + [anon_sym_GT2] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4738), + [anon_sym_CARET_EQ] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4738), + [anon_sym_SLASH] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4736), + [anon_sym_CARET] = ACTIONS(4738), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_PIPE_EQ] = ACTIONS(4736), + [anon_sym_GT_GT_EQ] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4736), + [anon_sym_DASH_EQ] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_AMP_EQ] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_DASH_GT] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4738), + }, + [4337] = { + [sym_enumerator] = STATE(2364), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(10045), + }, + [4338] = { + [aux_sym_enumerator_list_repeat1] = STATE(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(10047), + [anon_sym_RBRACE] = ACTIONS(10045), + }, + [4339] = { + [anon_sym_LPAREN2] = ACTIONS(5610), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_DASH_DASH] = ACTIONS(5610), + [anon_sym_STAR_EQ] = ACTIONS(5610), + [anon_sym_LT_LT_EQ] = ACTIONS(5610), + [anon_sym_PERCENT_EQ] = ACTIONS(5610), + [anon_sym_GT2] = ACTIONS(5610), + [anon_sym_EQ_EQ] = ACTIONS(5610), + [anon_sym_PIPE] = ACTIONS(5612), + [anon_sym_LT] = ACTIONS(5612), + [anon_sym_CARET_EQ] = ACTIONS(5610), + [anon_sym_AMP] = ACTIONS(5612), + [anon_sym_PLUS] = ACTIONS(5612), + [anon_sym_GT_EQ] = ACTIONS(5612), + [anon_sym_STAR] = ACTIONS(5612), + [anon_sym_SLASH] = ACTIONS(5612), + [anon_sym_SLASH_EQ] = ACTIONS(5610), + [anon_sym_PLUS_EQ] = ACTIONS(5610), + [anon_sym_CARET] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_PIPE_EQ] = ACTIONS(5610), + [anon_sym_GT_GT_EQ] = ACTIONS(5612), + [anon_sym_COMMA] = ACTIONS(5610), + [anon_sym_PIPE_PIPE] = ACTIONS(5610), + [anon_sym_DOT] = ACTIONS(5610), + [anon_sym_LT_LT] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(5610), + [anon_sym_PERCENT] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5610), + [anon_sym_DASH_EQ] = ACTIONS(5610), + [anon_sym_LT_EQ] = ACTIONS(5610), + [anon_sym_BANG_EQ] = ACTIONS(5610), + [anon_sym_AMP_EQ] = ACTIONS(5610), + [anon_sym_AMP_AMP] = ACTIONS(5610), + [anon_sym_DASH_GT] = ACTIONS(5610), + [anon_sym_EQ] = ACTIONS(5612), + [anon_sym_PLUS_PLUS] = ACTIONS(5610), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_GT_GT] = ACTIONS(5612), + }, + [4340] = { + [sym_field_declaration_list] = STATE(4623), + [anon_sym_LBRACE] = ACTIONS(6644), + [sym_comment] = ACTIONS(3), + }, + [4341] = { + [anon_sym_LPAREN2] = ACTIONS(5614), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5614), + [anon_sym_STAR_EQ] = ACTIONS(5614), + [anon_sym_LT_LT_EQ] = ACTIONS(5614), + [anon_sym_PERCENT_EQ] = ACTIONS(5614), + [anon_sym_GT2] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5614), + [anon_sym_PIPE] = ACTIONS(5616), + [anon_sym_LT] = ACTIONS(5616), + [anon_sym_CARET_EQ] = ACTIONS(5614), + [anon_sym_AMP] = ACTIONS(5616), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5616), + [anon_sym_SLASH] = ACTIONS(5616), + [anon_sym_SLASH_EQ] = ACTIONS(5614), + [anon_sym_PLUS_EQ] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5616), + [anon_sym_PIPE_EQ] = ACTIONS(5614), + [anon_sym_GT_GT_EQ] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5614), + [anon_sym_PIPE_PIPE] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5614), + [anon_sym_PERCENT] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5614), + [anon_sym_DASH_EQ] = ACTIONS(5614), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_BANG_EQ] = ACTIONS(5614), + [anon_sym_AMP_EQ] = ACTIONS(5614), + [anon_sym_AMP_AMP] = ACTIONS(5614), + [anon_sym_DASH_GT] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(5616), + [anon_sym_PLUS_PLUS] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5616), + }, + [4342] = { + [sym_field_declaration_list] = STATE(4624), + [anon_sym_LBRACE] = ACTIONS(6644), + [sym_comment] = ACTIONS(3), + }, + [4343] = { + [sym_new_declarator] = STATE(4625), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), + [anon_sym_GT2] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7532), + [anon_sym_STAR] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7532), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(6669), + [anon_sym_PERCENT] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_EQ] = ACTIONS(7532), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), + }, + [4344] = { + [anon_sym_LPAREN2] = ACTIONS(7534), + [anon_sym_DASH] = ACTIONS(7536), + [anon_sym_STAR_EQ] = ACTIONS(7534), + [anon_sym_LT_LT_EQ] = ACTIONS(7534), + [anon_sym_PERCENT_EQ] = ACTIONS(7534), + [anon_sym_GT2] = ACTIONS(7534), + [anon_sym_EQ_EQ] = ACTIONS(7534), + [anon_sym_PIPE] = ACTIONS(7536), + [anon_sym_LT] = ACTIONS(7536), + [anon_sym_CARET_EQ] = ACTIONS(7534), + [anon_sym_AMP] = ACTIONS(7536), + [anon_sym_PLUS] = ACTIONS(7536), + [anon_sym_GT_EQ] = ACTIONS(7536), + [anon_sym_STAR] = ACTIONS(7536), + [anon_sym_SLASH] = ACTIONS(7536), + [anon_sym_SLASH_EQ] = ACTIONS(7534), + [anon_sym_PLUS_EQ] = ACTIONS(7534), + [anon_sym_CARET] = ACTIONS(7536), + [anon_sym_GT] = ACTIONS(7536), + [anon_sym_PIPE_EQ] = ACTIONS(7534), + [anon_sym_GT_GT_EQ] = ACTIONS(7536), + [anon_sym_COMMA] = ACTIONS(7534), + [anon_sym_PIPE_PIPE] = ACTIONS(7534), + [anon_sym_DOT] = ACTIONS(7534), + [anon_sym_LT_LT] = ACTIONS(7536), + [anon_sym_LBRACK] = ACTIONS(7534), + [anon_sym_PERCENT] = ACTIONS(7536), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7534), + [anon_sym_DASH_EQ] = ACTIONS(7534), + [anon_sym_LT_EQ] = ACTIONS(7534), + [anon_sym_BANG_EQ] = ACTIONS(7534), + [anon_sym_AMP_EQ] = ACTIONS(7534), + [anon_sym_AMP_AMP] = ACTIONS(7534), + [anon_sym_DASH_GT] = ACTIONS(7534), + [anon_sym_EQ] = ACTIONS(7536), + [anon_sym_PLUS_PLUS] = ACTIONS(7534), + [anon_sym_GT_GT] = ACTIONS(7536), + [anon_sym_DASH_DASH] = ACTIONS(7534), + }, + [4345] = { + [sym_argument_list] = STATE(1160), [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_GT2] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(6695), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(6701), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(8891), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(6703), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_GT2] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(6682), + [anon_sym_PIPE] = ACTIONS(6684), + [anon_sym_LT] = ACTIONS(6686), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(6688), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6686), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(6690), + [anon_sym_GT] = ACTIONS(6686), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8861), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(6692), [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6622), [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(6707), + [anon_sym_PERCENT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(10049), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_LT_EQ] = ACTIONS(6694), + [anon_sym_BANG_EQ] = ACTIONS(6682), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(6696), [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6602), + }, + [4346] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_STAR_EQ] = ACTIONS(2711), + [anon_sym_LT_LT_EQ] = ACTIONS(2711), + [anon_sym_PERCENT_EQ] = ACTIONS(2711), + [anon_sym_GT2] = ACTIONS(2711), + [anon_sym_EQ_EQ] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_CARET_EQ] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_SLASH_EQ] = ACTIONS(2711), + [anon_sym_PLUS_EQ] = ACTIONS(2711), + [anon_sym_CARET] = ACTIONS(2709), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_PIPE_EQ] = ACTIONS(2711), + [anon_sym_GT_GT_EQ] = ACTIONS(2709), + [anon_sym_COMMA] = ACTIONS(2711), + [anon_sym_PIPE_PIPE] = ACTIONS(2711), + [anon_sym_DOT] = ACTIONS(2711), + [anon_sym_LT_LT] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_PERCENT] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2711), + [anon_sym_DASH_EQ] = ACTIONS(2711), + [anon_sym_LT_EQ] = ACTIONS(2711), + [anon_sym_BANG_EQ] = ACTIONS(2711), + [anon_sym_AMP_EQ] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_DASH_GT] = ACTIONS(2711), + [anon_sym_EQ] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + }, + [4347] = { + [anon_sym_LPAREN2] = ACTIONS(8475), + [anon_sym_CARET] = ACTIONS(8475), + [anon_sym_GT] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8477), + [anon_sym_COMMA] = ACTIONS(8475), + [anon_sym_PIPE_PIPE] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_LT_LT] = ACTIONS(8475), + [anon_sym_LBRACK] = ACTIONS(8475), + [anon_sym_EQ_EQ] = ACTIONS(8475), + [anon_sym_PIPE] = ACTIONS(8477), + [anon_sym_LT] = ACTIONS(8477), + [anon_sym_PERCENT] = ACTIONS(8475), + [anon_sym_GT2] = ACTIONS(8475), + [anon_sym_AMP] = ACTIONS(8477), + [anon_sym_QMARK] = ACTIONS(8475), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_GT_EQ] = ACTIONS(8477), + [anon_sym_STAR] = ACTIONS(8475), + [anon_sym_SLASH] = ACTIONS(8477), + [anon_sym_LT_EQ] = ACTIONS(8475), + [anon_sym_BANG_EQ] = ACTIONS(8475), + [anon_sym_AMP_AMP] = ACTIONS(8475), + [anon_sym_DASH_GT] = ACTIONS(8475), + [anon_sym_PLUS_PLUS] = ACTIONS(8475), + [anon_sym_GT_GT] = ACTIONS(8477), + [anon_sym_DASH_DASH] = ACTIONS(8475), + }, + [4348] = { + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7521), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_GT2] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_QMARK] = ACTIONS(7521), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_GT_EQ] = ACTIONS(7523), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7521), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7523), + [anon_sym_DASH_DASH] = ACTIONS(7521), + }, + [4349] = { + [anon_sym_LPAREN2] = ACTIONS(8868), + [anon_sym_DASH] = ACTIONS(8870), + [anon_sym_GT_GT] = ACTIONS(8870), + [anon_sym_GT2] = ACTIONS(8868), + [anon_sym_EQ_EQ] = ACTIONS(8868), + [anon_sym_PIPE] = ACTIONS(8870), + [anon_sym_LT] = ACTIONS(8870), + [anon_sym_AMP] = ACTIONS(8870), + [anon_sym_PLUS] = ACTIONS(8870), + [anon_sym_GT_EQ] = ACTIONS(8870), + [anon_sym_STAR] = ACTIONS(8868), + [anon_sym_SLASH] = ACTIONS(8870), + [anon_sym_CARET] = ACTIONS(8868), + [anon_sym_GT] = ACTIONS(8870), + [anon_sym_COMMA] = ACTIONS(8868), + [anon_sym_PIPE_PIPE] = ACTIONS(8868), + [anon_sym_DOT] = ACTIONS(8868), + [anon_sym_LT_LT] = ACTIONS(8868), + [anon_sym_LBRACK] = ACTIONS(8868), + [anon_sym_PERCENT] = ACTIONS(8868), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8868), + [anon_sym_LT_EQ] = ACTIONS(8868), + [anon_sym_BANG_EQ] = ACTIONS(8868), + [anon_sym_AMP_AMP] = ACTIONS(8868), + [anon_sym_DASH_GT] = ACTIONS(8868), + [anon_sym_PLUS_PLUS] = ACTIONS(8868), + [anon_sym_LBRACE] = ACTIONS(8868), + [anon_sym_DASH_DASH] = ACTIONS(8868), + }, + [4350] = { + [anon_sym_LPAREN2] = ACTIONS(8584), + [anon_sym_DASH] = ACTIONS(8586), + [anon_sym_PLUS_PLUS] = ACTIONS(8584), + [anon_sym_LBRACE] = ACTIONS(8584), + [anon_sym_mutable] = ACTIONS(8586), + [anon_sym_DASH_DASH] = ACTIONS(8584), + [anon_sym_final] = ACTIONS(8586), + [anon_sym_COLON_COLON] = ACTIONS(8584), + [anon_sym_GT2] = ACTIONS(8584), + [anon_sym_EQ_EQ] = ACTIONS(8584), + [anon_sym_PIPE] = ACTIONS(8586), + [anon_sym_LT] = ACTIONS(8586), + [anon_sym_AMP] = ACTIONS(8586), + [anon_sym_static] = ACTIONS(8586), + [anon_sym_volatile] = ACTIONS(8586), + [anon_sym_PLUS] = ACTIONS(8586), + [anon_sym_GT_EQ] = ACTIONS(8586), + [anon_sym_STAR] = ACTIONS(8584), + [anon_sym_SLASH] = ACTIONS(8586), + [anon_sym_override] = ACTIONS(8586), + [anon_sym_explicit] = ACTIONS(8586), + [sym_identifier] = ACTIONS(8586), + [sym_operator_name] = ACTIONS(8584), + [sym_noexcept] = ACTIONS(8586), + [anon_sym_CARET] = ACTIONS(8584), + [anon_sym_GT] = ACTIONS(8586), + [anon_sym_COMMA] = ACTIONS(8584), + [anon_sym_register] = ACTIONS(8586), + [anon_sym__Atomic] = ACTIONS(8586), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_extern] = ACTIONS(8586), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_PIPE_PIPE] = ACTIONS(8584), + [anon_sym_DOT] = ACTIONS(8584), + [anon_sym_LT_LT] = ACTIONS(8584), + [anon_sym_constexpr] = ACTIONS(8586), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(8584), + [anon_sym_QMARK] = ACTIONS(8584), + [anon_sym_TILDE] = ACTIONS(8584), + [anon_sym_LT_EQ] = ACTIONS(8584), + [anon_sym_BANG_EQ] = ACTIONS(8584), + [anon_sym_AMP_AMP] = ACTIONS(8584), + [anon_sym_inline] = ACTIONS(8586), + [anon_sym_EQ] = ACTIONS(8586), + [anon_sym_restrict] = ACTIONS(8586), + [anon_sym_GT_GT] = ACTIONS(8586), + [anon_sym_DASH_GT] = ACTIONS(8584), }, [4351] = { - [anon_sym_LPAREN2] = ACTIONS(6805), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_DASH_DASH] = ACTIONS(6805), - [anon_sym_final] = ACTIONS(6805), - [anon_sym_STAR_EQ] = ACTIONS(6805), - [anon_sym_LT_LT_EQ] = ACTIONS(6805), - [anon_sym_PERCENT_EQ] = ACTIONS(6805), - [anon_sym_GT2] = ACTIONS(6805), - [anon_sym_COLON_COLON] = ACTIONS(6805), - [anon_sym_EQ_EQ] = ACTIONS(6805), - [anon_sym_PIPE] = ACTIONS(6807), - [anon_sym_LT] = ACTIONS(6807), - [anon_sym_CARET_EQ] = ACTIONS(6805), - [anon_sym_AMP] = ACTIONS(6807), - [anon_sym_PLUS] = ACTIONS(6807), - [anon_sym_GT_EQ] = ACTIONS(6807), - [anon_sym_STAR] = ACTIONS(6807), - [anon_sym_SLASH] = ACTIONS(6807), - [anon_sym_override] = ACTIONS(6805), - [anon_sym_COLON] = ACTIONS(6807), - [anon_sym_SLASH_EQ] = ACTIONS(6805), - [anon_sym_PLUS_EQ] = ACTIONS(6805), - [anon_sym_CARET] = ACTIONS(6807), - [anon_sym_GT] = ACTIONS(6807), - [anon_sym_PIPE_EQ] = ACTIONS(6805), - [anon_sym_GT_GT_EQ] = ACTIONS(6807), - [anon_sym_COMMA] = ACTIONS(6805), - [anon_sym_PIPE_PIPE] = ACTIONS(6805), - [anon_sym_DOT] = ACTIONS(6805), - [anon_sym_LT_LT] = ACTIONS(6807), - [anon_sym_LBRACK] = ACTIONS(6805), - [anon_sym_PERCENT] = ACTIONS(6807), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6805), - [anon_sym_DASH_EQ] = ACTIONS(6805), - [anon_sym_LT_EQ] = ACTIONS(6805), - [anon_sym_BANG_EQ] = ACTIONS(6805), - [anon_sym_AMP_EQ] = ACTIONS(6805), - [anon_sym_AMP_AMP] = ACTIONS(6805), - [anon_sym_DASH_GT] = ACTIONS(6805), - [anon_sym_EQ] = ACTIONS(6807), - [anon_sym_PLUS_PLUS] = ACTIONS(6805), - [anon_sym_LBRACE] = ACTIONS(6805), - [anon_sym_GT_GT] = ACTIONS(6807), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(7450), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(6862), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(6864), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [4352] = { - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_final] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_GT2] = ACTIONS(6812), - [anon_sym_COLON_COLON] = ACTIONS(6812), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6812), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6814), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6812), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_PERCENT] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6814), + [sym_new_declarator] = STATE(4115), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_RBRACE] = ACTIONS(7530), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7530), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_EQ] = ACTIONS(7532), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), }, [4353] = { - [anon_sym_LPAREN2] = ACTIONS(6926), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_STAR_EQ] = ACTIONS(6926), - [anon_sym_LT_LT_EQ] = ACTIONS(6926), - [anon_sym_PERCENT_EQ] = ACTIONS(6926), - [anon_sym_GT2] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_PIPE] = ACTIONS(6928), - [anon_sym_LT] = ACTIONS(6928), - [anon_sym_CARET_EQ] = ACTIONS(6926), - [anon_sym_AMP] = ACTIONS(6928), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_GT_EQ] = ACTIONS(6928), - [anon_sym_STAR] = ACTIONS(6928), - [anon_sym_SLASH] = ACTIONS(6928), - [anon_sym_SLASH_EQ] = ACTIONS(6926), - [anon_sym_PLUS_EQ] = ACTIONS(6926), - [anon_sym_CARET] = ACTIONS(6928), - [anon_sym_GT] = ACTIONS(6928), - [anon_sym_PIPE_EQ] = ACTIONS(6926), - [anon_sym_GT_GT_EQ] = ACTIONS(6928), - [anon_sym_COMMA] = ACTIONS(6926), - [anon_sym_PIPE_PIPE] = ACTIONS(6926), - [anon_sym_DOT] = ACTIONS(6926), - [anon_sym_LT_LT] = ACTIONS(6928), - [anon_sym_LBRACK] = ACTIONS(6926), - [anon_sym_PERCENT] = ACTIONS(6928), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6926), - [anon_sym_DASH_EQ] = ACTIONS(6926), - [anon_sym_LT_EQ] = ACTIONS(6926), - [anon_sym_BANG_EQ] = ACTIONS(6926), - [anon_sym_AMP_EQ] = ACTIONS(6926), - [anon_sym_AMP_AMP] = ACTIONS(6926), - [anon_sym_DASH_GT] = ACTIONS(6926), - [anon_sym_EQ] = ACTIONS(6928), - [anon_sym_PLUS_PLUS] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6928), - [anon_sym_DASH_DASH] = ACTIONS(6926), + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6836), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(6850), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(6856), + [anon_sym_RBRACE] = ACTIONS(8176), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6836), + [anon_sym_SLASH] = ACTIONS(6838), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(6862), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6838), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(10051), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_BANG_EQ] = ACTIONS(6850), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(6864), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, [4354] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(2258), - [sym_logical_expression] = STATE(2258), - [sym_bitwise_expression] = STATE(2258), - [sym_cast_expression] = STATE(2258), - [sym_new_expression] = STATE(2258), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(2258), - [sym_field_designator] = STATE(449), - [sym_char_literal] = STATE(2258), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_template_function] = STATE(2258), - [sym_conditional_expression] = STATE(2258), - [sym_equality_expression] = STATE(2258), - [sym_relational_expression] = STATE(2258), - [sym_delete_expression] = STATE(2258), - [sym_sizeof_expression] = STATE(2258), - [sym_parenthesized_expression] = STATE(2258), - [sym_initializer_list] = STATE(2259), - [sym_concatenated_string] = STATE(2258), - [sym_string_literal] = STATE(450), - [sym_lambda_expression] = STATE(2258), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(448), - [sym_assignment_expression] = STATE(2258), - [sym_pointer_expression] = STATE(448), - [sym_shift_expression] = STATE(2258), - [sym_math_expression] = STATE(2258), - [sym_call_expression] = STATE(448), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_subscript_designator] = STATE(449), - [sym_initializer_pair] = STATE(2259), - [sym_raw_string_literal] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LPAREN2] = ACTIONS(750), - [sym_true] = ACTIONS(4479), - [anon_sym_DASH_DASH] = ACTIONS(754), - [sym_null] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(4477), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(764), - [sym_false] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(766), - [sym_nullptr] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(10077), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(774), - [anon_sym_new] = ACTIONS(776), - [anon_sym_PLUS_PLUS] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(8295), + [sym_raw_string_literal] = ACTIONS(8297), + [sym_true] = ACTIONS(8295), + [anon_sym_mutable] = ACTIONS(8295), + [sym_null] = ACTIONS(8295), + [anon_sym_break] = ACTIONS(8295), + [aux_sym_preproc_if_token2] = ACTIONS(8295), + [anon_sym_BANG] = ACTIONS(8297), + [anon_sym_sizeof] = ACTIONS(8295), + [anon_sym_volatile] = ACTIONS(8295), + [anon_sym_PLUS] = ACTIONS(8295), + [anon_sym_typedef] = ACTIONS(8295), + [anon_sym_switch] = ACTIONS(8295), + [anon_sym_explicit] = ACTIONS(8295), + [sym_identifier] = ACTIONS(8295), + [anon_sym_delete] = ACTIONS(8295), + [anon_sym_continue] = ACTIONS(8295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8295), + [anon_sym__Atomic] = ACTIONS(8295), + [sym_number_literal] = ACTIONS(8297), + [anon_sym_extern] = ACTIONS(8295), + [anon_sym_enum] = ACTIONS(8295), + [anon_sym_constexpr] = ACTIONS(8295), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8297), + [anon_sym_namespace] = ACTIONS(8295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8295), + [aux_sym_preproc_elif_token1] = ACTIONS(8295), + [anon_sym_SQUOTE] = ACTIONS(8297), + [anon_sym_LBRACE] = ACTIONS(8297), + [anon_sym_DASH_DASH] = ACTIONS(8297), + [anon_sym_LPAREN2] = ACTIONS(8297), + [anon_sym_struct] = ACTIONS(8295), + [sym_auto] = ACTIONS(8295), + [anon_sym_signed] = ACTIONS(8295), + [anon_sym_long] = ACTIONS(8295), + [anon_sym_COLON_COLON] = ACTIONS(8297), + [anon_sym_using] = ACTIONS(8295), + [aux_sym_preproc_else_token1] = ACTIONS(8295), + [sym_preproc_directive] = ACTIONS(8295), + [aux_sym_preproc_if_token1] = ACTIONS(8295), + [anon_sym_AMP] = ACTIONS(8295), + [anon_sym_static] = ACTIONS(8295), + [anon_sym_STAR] = ACTIONS(8297), + [anon_sym_union] = ACTIONS(8295), + [anon_sym_typename] = ACTIONS(8295), + [anon_sym_short] = ACTIONS(8295), + [anon_sym_new] = ACTIONS(8295), + [anon_sym_goto] = ACTIONS(8295), + [sym_operator_name] = ACTIONS(8297), + [anon_sym_while] = ACTIONS(8295), + [anon_sym_try] = ACTIONS(8295), + [anon_sym_for] = ACTIONS(8295), + [aux_sym_preproc_include_token1] = ACTIONS(8295), + [anon_sym_register] = ACTIONS(8295), + [anon_sym_DQUOTE] = ACTIONS(8297), + [anon_sym_const] = ACTIONS(8295), + [anon_sym_LBRACK] = ACTIONS(8295), + [anon_sym_class] = ACTIONS(8295), + [anon_sym_if] = ACTIONS(8295), + [sym_primitive_type] = ACTIONS(8295), + [sym_false] = ACTIONS(8295), + [sym_nullptr] = ACTIONS(8295), + [anon_sym_do] = ACTIONS(8295), + [anon_sym_template] = ACTIONS(8295), + [anon_sym_return] = ACTIONS(8295), + [anon_sym_TILDE] = ACTIONS(8297), + [anon_sym_SEMI] = ACTIONS(8297), + [aux_sym_preproc_def_token1] = ACTIONS(8295), + [anon_sym_AMP_AMP] = ACTIONS(8297), + [anon_sym_inline] = ACTIONS(8295), + [anon_sym_PLUS_PLUS] = ACTIONS(8297), + [anon_sym_restrict] = ACTIONS(8295), }, [4355] = { - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_LT_LT_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_GT2] = ACTIONS(5018), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_CARET_EQ] = ACTIONS(5018), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_PIPE_EQ] = ACTIONS(5018), - [anon_sym_GT_GT_EQ] = ACTIONS(5020), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5018), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_PERCENT] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_AMP_EQ] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_GT_GT] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(6405), + [sym_raw_string_literal] = ACTIONS(6407), + [sym_true] = ACTIONS(6405), + [anon_sym_mutable] = ACTIONS(6405), + [sym_null] = ACTIONS(6405), + [anon_sym_break] = ACTIONS(6405), + [aux_sym_preproc_if_token2] = ACTIONS(6405), + [anon_sym_BANG] = ACTIONS(6407), + [anon_sym_sizeof] = ACTIONS(6405), + [anon_sym_volatile] = ACTIONS(6405), + [anon_sym_PLUS] = ACTIONS(6405), + [anon_sym_typedef] = ACTIONS(6405), + [anon_sym_switch] = ACTIONS(6405), + [anon_sym_explicit] = ACTIONS(6405), + [sym_identifier] = ACTIONS(6405), + [anon_sym_delete] = ACTIONS(6405), + [anon_sym_continue] = ACTIONS(6405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6405), + [anon_sym__Atomic] = ACTIONS(6405), + [sym_number_literal] = ACTIONS(6407), + [anon_sym_extern] = ACTIONS(6405), + [anon_sym_enum] = ACTIONS(6405), + [anon_sym_constexpr] = ACTIONS(6405), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6407), + [anon_sym_namespace] = ACTIONS(6405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6405), + [anon_sym_SQUOTE] = ACTIONS(6407), + [anon_sym_LBRACE] = ACTIONS(6407), + [anon_sym_DASH_DASH] = ACTIONS(6407), + [anon_sym_LPAREN2] = ACTIONS(6407), + [anon_sym_struct] = ACTIONS(6405), + [sym_auto] = ACTIONS(6405), + [anon_sym_signed] = ACTIONS(6405), + [anon_sym_long] = ACTIONS(6405), + [anon_sym_COLON_COLON] = ACTIONS(6407), + [anon_sym_using] = ACTIONS(6405), + [sym_preproc_directive] = ACTIONS(6405), + [aux_sym_preproc_if_token1] = ACTIONS(6405), + [anon_sym_AMP] = ACTIONS(6405), + [anon_sym_static] = ACTIONS(6405), + [anon_sym_STAR] = ACTIONS(6407), + [anon_sym_union] = ACTIONS(6405), + [anon_sym_typename] = ACTIONS(6405), + [anon_sym_short] = ACTIONS(6405), + [anon_sym_new] = ACTIONS(6405), + [anon_sym_goto] = ACTIONS(6405), + [sym_operator_name] = ACTIONS(6407), + [anon_sym_while] = ACTIONS(6405), + [anon_sym_try] = ACTIONS(6405), + [anon_sym_for] = ACTIONS(6405), + [aux_sym_preproc_include_token1] = ACTIONS(6405), + [anon_sym_register] = ACTIONS(6405), + [anon_sym_DQUOTE] = ACTIONS(6407), + [anon_sym_const] = ACTIONS(6405), + [anon_sym_LBRACK] = ACTIONS(6405), + [anon_sym_class] = ACTIONS(6405), + [anon_sym_if] = ACTIONS(6405), + [sym_primitive_type] = ACTIONS(6405), + [sym_false] = ACTIONS(6405), + [sym_nullptr] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(6405), + [anon_sym_template] = ACTIONS(6405), + [anon_sym_return] = ACTIONS(6405), + [anon_sym_TILDE] = ACTIONS(6407), + [anon_sym_SEMI] = ACTIONS(6407), + [aux_sym_preproc_def_token1] = ACTIONS(6405), + [anon_sym_AMP_AMP] = ACTIONS(6407), + [anon_sym_inline] = ACTIONS(6405), + [anon_sym_PLUS_PLUS] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6405), }, [4356] = { - [sym_field_declaration_list] = STATE(4646), - [anon_sym_LBRACE] = ACTIONS(6655), + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(10053), }, [4357] = { - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_DASH_DASH] = ACTIONS(5144), - [anon_sym_STAR_EQ] = ACTIONS(5144), - [anon_sym_LT_LT_EQ] = ACTIONS(5144), - [anon_sym_PERCENT_EQ] = ACTIONS(5144), - [anon_sym_GT2] = ACTIONS(5144), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_CARET_EQ] = ACTIONS(5144), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5146), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_SLASH_EQ] = ACTIONS(5144), - [anon_sym_PLUS_EQ] = ACTIONS(5144), - [anon_sym_CARET] = ACTIONS(5146), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_PIPE_EQ] = ACTIONS(5144), - [anon_sym_GT_GT_EQ] = ACTIONS(5146), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5144), - [anon_sym_LT_LT] = ACTIONS(5146), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5146), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_DASH_EQ] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_AMP_EQ] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5144), - [anon_sym_EQ] = ACTIONS(5146), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_LBRACE] = ACTIONS(5144), - [anon_sym_GT_GT] = ACTIONS(5146), + [anon_sym_DASH] = ACTIONS(6494), + [sym_raw_string_literal] = ACTIONS(6496), + [anon_sym_else] = ACTIONS(6494), + [sym_true] = ACTIONS(6494), + [anon_sym_mutable] = ACTIONS(6494), + [sym_null] = ACTIONS(6494), + [anon_sym_break] = ACTIONS(6494), + [aux_sym_preproc_if_token2] = ACTIONS(6494), + [anon_sym_BANG] = ACTIONS(6496), + [anon_sym_sizeof] = ACTIONS(6494), + [anon_sym_volatile] = ACTIONS(6494), + [anon_sym_PLUS] = ACTIONS(6494), + [anon_sym_typedef] = ACTIONS(6494), + [anon_sym_switch] = ACTIONS(6494), + [anon_sym_explicit] = ACTIONS(6494), + [sym_identifier] = ACTIONS(6494), + [anon_sym_delete] = ACTIONS(6494), + [anon_sym_continue] = ACTIONS(6494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6494), + [anon_sym__Atomic] = ACTIONS(6494), + [sym_number_literal] = ACTIONS(6496), + [anon_sym_extern] = ACTIONS(6494), + [anon_sym_enum] = ACTIONS(6494), + [anon_sym_constexpr] = ACTIONS(6494), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6496), + [anon_sym_namespace] = ACTIONS(6494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6494), + [anon_sym_SQUOTE] = ACTIONS(6496), + [anon_sym_LBRACE] = ACTIONS(6496), + [anon_sym_DASH_DASH] = ACTIONS(6496), + [anon_sym_LPAREN2] = ACTIONS(6496), + [anon_sym_struct] = ACTIONS(6494), + [sym_auto] = ACTIONS(6494), + [anon_sym_signed] = ACTIONS(6494), + [anon_sym_long] = ACTIONS(6494), + [anon_sym_COLON_COLON] = ACTIONS(6496), + [anon_sym_using] = ACTIONS(6494), + [sym_preproc_directive] = ACTIONS(6494), + [aux_sym_preproc_if_token1] = ACTIONS(6494), + [anon_sym_AMP] = ACTIONS(6494), + [anon_sym_static] = ACTIONS(6494), + [anon_sym_STAR] = ACTIONS(6496), + [anon_sym_union] = ACTIONS(6494), + [anon_sym_typename] = ACTIONS(6494), + [anon_sym_short] = ACTIONS(6494), + [anon_sym_new] = ACTIONS(6494), + [anon_sym_goto] = ACTIONS(6494), + [sym_operator_name] = ACTIONS(6496), + [anon_sym_while] = ACTIONS(6494), + [anon_sym_try] = ACTIONS(6494), + [anon_sym_for] = ACTIONS(6494), + [aux_sym_preproc_include_token1] = ACTIONS(6494), + [anon_sym_register] = ACTIONS(6494), + [anon_sym_DQUOTE] = ACTIONS(6496), + [anon_sym_const] = ACTIONS(6494), + [anon_sym_LBRACK] = ACTIONS(6494), + [anon_sym_class] = ACTIONS(6494), + [anon_sym_if] = ACTIONS(6494), + [sym_primitive_type] = ACTIONS(6494), + [sym_false] = ACTIONS(6494), + [sym_nullptr] = ACTIONS(6494), + [anon_sym_do] = ACTIONS(6494), + [anon_sym_template] = ACTIONS(6494), + [anon_sym_return] = ACTIONS(6494), + [anon_sym_TILDE] = ACTIONS(6496), + [anon_sym_SEMI] = ACTIONS(6496), + [aux_sym_preproc_def_token1] = ACTIONS(6494), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_inline] = ACTIONS(6494), + [anon_sym_PLUS_PLUS] = ACTIONS(6496), + [anon_sym_restrict] = ACTIONS(6494), }, [4358] = { - [anon_sym_LPAREN2] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_DASH_DASH] = ACTIONS(5237), - [anon_sym_STAR_EQ] = ACTIONS(5237), - [anon_sym_LT_LT_EQ] = ACTIONS(5237), - [anon_sym_PERCENT_EQ] = ACTIONS(5237), - [anon_sym_GT2] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_CARET_EQ] = ACTIONS(5237), - [anon_sym_AMP] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_GT_EQ] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_SLASH_EQ] = ACTIONS(5237), - [anon_sym_PLUS_EQ] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_PIPE_EQ] = ACTIONS(5237), - [anon_sym_GT_GT_EQ] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5237), - [anon_sym_LT_LT] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_PERCENT] = ACTIONS(5239), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5237), - [anon_sym_DASH_EQ] = ACTIONS(5237), - [anon_sym_LT_EQ] = ACTIONS(5237), - [anon_sym_BANG_EQ] = ACTIONS(5237), - [anon_sym_AMP_EQ] = ACTIONS(5237), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_DASH_GT] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_PLUS_PLUS] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_GT_GT] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(7129), + [sym_raw_string_literal] = ACTIONS(7131), + [sym_true] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [sym_null] = ACTIONS(7129), + [anon_sym_break] = ACTIONS(7129), + [aux_sym_preproc_if_token2] = ACTIONS(7129), + [anon_sym_BANG] = ACTIONS(7131), + [anon_sym_sizeof] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_typedef] = ACTIONS(7129), + [anon_sym_switch] = ACTIONS(7129), + [anon_sym_explicit] = ACTIONS(7129), + [sym_identifier] = ACTIONS(7129), + [anon_sym_delete] = ACTIONS(7129), + [anon_sym_continue] = ACTIONS(7129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [sym_number_literal] = ACTIONS(7131), + [anon_sym_extern] = ACTIONS(7129), + [anon_sym_enum] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7131), + [anon_sym_namespace] = ACTIONS(7129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7129), + [anon_sym_SQUOTE] = ACTIONS(7131), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_struct] = ACTIONS(7129), + [sym_auto] = ACTIONS(7129), + [anon_sym_signed] = ACTIONS(7129), + [anon_sym_long] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(7131), + [anon_sym_using] = ACTIONS(7129), + [sym_preproc_directive] = ACTIONS(7129), + [aux_sym_preproc_if_token1] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_static] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7131), + [anon_sym_union] = ACTIONS(7129), + [anon_sym_typename] = ACTIONS(7129), + [anon_sym_short] = ACTIONS(7129), + [anon_sym_new] = ACTIONS(7129), + [anon_sym_goto] = ACTIONS(7129), + [sym_operator_name] = ACTIONS(7131), + [anon_sym_while] = ACTIONS(7129), + [anon_sym_try] = ACTIONS(7129), + [anon_sym_for] = ACTIONS(7129), + [aux_sym_preproc_include_token1] = ACTIONS(7129), + [anon_sym_register] = ACTIONS(7129), + [anon_sym_DQUOTE] = ACTIONS(7131), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_class] = ACTIONS(7129), + [anon_sym_if] = ACTIONS(7129), + [sym_primitive_type] = ACTIONS(7129), + [sym_false] = ACTIONS(7129), + [sym_nullptr] = ACTIONS(7129), + [anon_sym_do] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_return] = ACTIONS(7129), + [anon_sym_TILDE] = ACTIONS(7131), + [anon_sym_SEMI] = ACTIONS(7131), + [aux_sym_preproc_def_token1] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_inline] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_restrict] = ACTIONS(7129), }, [4359] = { - [sym_field_declaration_list] = STATE(4647), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(7459), + [sym_raw_string_literal] = ACTIONS(7461), + [sym_true] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [sym_null] = ACTIONS(7459), + [anon_sym_break] = ACTIONS(7459), + [aux_sym_preproc_if_token2] = ACTIONS(7459), + [anon_sym_BANG] = ACTIONS(7461), + [anon_sym_sizeof] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_typedef] = ACTIONS(7459), + [anon_sym_switch] = ACTIONS(7459), + [anon_sym_explicit] = ACTIONS(7459), + [sym_identifier] = ACTIONS(7459), + [anon_sym_delete] = ACTIONS(7459), + [anon_sym_continue] = ACTIONS(7459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [sym_number_literal] = ACTIONS(7461), + [anon_sym_extern] = ACTIONS(7459), + [anon_sym_enum] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7461), + [anon_sym_namespace] = ACTIONS(7459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7459), + [anon_sym_SQUOTE] = ACTIONS(7461), + [anon_sym_LBRACE] = ACTIONS(7461), + [anon_sym_DASH_DASH] = ACTIONS(7461), + [anon_sym_LPAREN2] = ACTIONS(7461), + [anon_sym_struct] = ACTIONS(7459), + [sym_auto] = ACTIONS(7459), + [anon_sym_signed] = ACTIONS(7459), + [anon_sym_long] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7461), + [anon_sym_using] = ACTIONS(7459), + [sym_preproc_directive] = ACTIONS(7459), + [aux_sym_preproc_if_token1] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_static] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7461), + [anon_sym_union] = ACTIONS(7459), + [anon_sym_typename] = ACTIONS(7459), + [anon_sym_short] = ACTIONS(7459), + [anon_sym_new] = ACTIONS(7459), + [anon_sym_goto] = ACTIONS(7459), + [sym_operator_name] = ACTIONS(7461), + [anon_sym_while] = ACTIONS(7459), + [anon_sym_try] = ACTIONS(7459), + [anon_sym_for] = ACTIONS(7459), + [aux_sym_preproc_include_token1] = ACTIONS(7459), + [anon_sym_register] = ACTIONS(7459), + [anon_sym_DQUOTE] = ACTIONS(7461), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_LBRACK] = ACTIONS(7459), + [anon_sym_class] = ACTIONS(7459), + [anon_sym_if] = ACTIONS(7459), + [sym_primitive_type] = ACTIONS(7459), + [sym_false] = ACTIONS(7459), + [sym_nullptr] = ACTIONS(7459), + [anon_sym_do] = ACTIONS(7459), + [anon_sym_template] = ACTIONS(7459), + [anon_sym_return] = ACTIONS(7459), + [anon_sym_TILDE] = ACTIONS(7461), + [anon_sym_SEMI] = ACTIONS(7461), + [aux_sym_preproc_def_token1] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_inline] = ACTIONS(7459), + [anon_sym_PLUS_PLUS] = ACTIONS(7461), + [anon_sym_restrict] = ACTIONS(7459), }, [4360] = { - [anon_sym_LPAREN2] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_DASH_DASH] = ACTIONS(5327), - [anon_sym_STAR_EQ] = ACTIONS(5327), - [anon_sym_LT_LT_EQ] = ACTIONS(5327), - [anon_sym_PERCENT_EQ] = ACTIONS(5327), - [anon_sym_GT2] = ACTIONS(5327), - [anon_sym_EQ_EQ] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_CARET_EQ] = ACTIONS(5327), - [anon_sym_AMP] = ACTIONS(5329), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_GT_EQ] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_SLASH_EQ] = ACTIONS(5327), - [anon_sym_PLUS_EQ] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_PIPE_EQ] = ACTIONS(5327), - [anon_sym_GT_GT_EQ] = ACTIONS(5329), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_PIPE_PIPE] = ACTIONS(5327), - [anon_sym_DOT] = ACTIONS(5327), - [anon_sym_LT_LT] = ACTIONS(5329), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_PERCENT] = ACTIONS(5329), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5327), - [anon_sym_DASH_EQ] = ACTIONS(5327), - [anon_sym_LT_EQ] = ACTIONS(5327), - [anon_sym_BANG_EQ] = ACTIONS(5327), - [anon_sym_AMP_EQ] = ACTIONS(5327), - [anon_sym_AMP_AMP] = ACTIONS(5327), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5329), - [anon_sym_PLUS_PLUS] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [anon_sym_GT_GT] = ACTIONS(5329), + [anon_sym_DASH] = ACTIONS(7463), + [sym_raw_string_literal] = ACTIONS(7465), + [sym_true] = ACTIONS(7463), + [anon_sym_mutable] = ACTIONS(7463), + [sym_null] = ACTIONS(7463), + [anon_sym_break] = ACTIONS(7463), + [aux_sym_preproc_if_token2] = ACTIONS(7463), + [anon_sym_BANG] = ACTIONS(7465), + [anon_sym_sizeof] = ACTIONS(7463), + [anon_sym_volatile] = ACTIONS(7463), + [anon_sym_PLUS] = ACTIONS(7463), + [anon_sym_typedef] = ACTIONS(7463), + [anon_sym_switch] = ACTIONS(7463), + [anon_sym_explicit] = ACTIONS(7463), + [sym_identifier] = ACTIONS(7463), + [anon_sym_delete] = ACTIONS(7463), + [anon_sym_continue] = ACTIONS(7463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7463), + [anon_sym__Atomic] = ACTIONS(7463), + [sym_number_literal] = ACTIONS(7465), + [anon_sym_extern] = ACTIONS(7463), + [anon_sym_enum] = ACTIONS(7463), + [anon_sym_constexpr] = ACTIONS(7463), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7465), + [anon_sym_namespace] = ACTIONS(7463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7463), + [anon_sym_SQUOTE] = ACTIONS(7465), + [anon_sym_LBRACE] = ACTIONS(7465), + [anon_sym_DASH_DASH] = ACTIONS(7465), + [anon_sym_LPAREN2] = ACTIONS(7465), + [anon_sym_struct] = ACTIONS(7463), + [sym_auto] = ACTIONS(7463), + [anon_sym_signed] = ACTIONS(7463), + [anon_sym_long] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(7465), + [anon_sym_using] = ACTIONS(7463), + [sym_preproc_directive] = ACTIONS(7463), + [aux_sym_preproc_if_token1] = ACTIONS(7463), + [anon_sym_AMP] = ACTIONS(7463), + [anon_sym_static] = ACTIONS(7463), + [anon_sym_STAR] = ACTIONS(7465), + [anon_sym_union] = ACTIONS(7463), + [anon_sym_typename] = ACTIONS(7463), + [anon_sym_short] = ACTIONS(7463), + [anon_sym_new] = ACTIONS(7463), + [anon_sym_goto] = ACTIONS(7463), + [sym_operator_name] = ACTIONS(7465), + [anon_sym_while] = ACTIONS(7463), + [anon_sym_try] = ACTIONS(7463), + [anon_sym_for] = ACTIONS(7463), + [aux_sym_preproc_include_token1] = ACTIONS(7463), + [anon_sym_register] = ACTIONS(7463), + [anon_sym_DQUOTE] = ACTIONS(7465), + [anon_sym_const] = ACTIONS(7463), + [anon_sym_LBRACK] = ACTIONS(7463), + [anon_sym_class] = ACTIONS(7463), + [anon_sym_if] = ACTIONS(7463), + [sym_primitive_type] = ACTIONS(7463), + [sym_false] = ACTIONS(7463), + [sym_nullptr] = ACTIONS(7463), + [anon_sym_do] = ACTIONS(7463), + [anon_sym_template] = ACTIONS(7463), + [anon_sym_return] = ACTIONS(7463), + [anon_sym_TILDE] = ACTIONS(7465), + [anon_sym_SEMI] = ACTIONS(7465), + [aux_sym_preproc_def_token1] = ACTIONS(7463), + [anon_sym_AMP_AMP] = ACTIONS(7465), + [anon_sym_inline] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(7465), + [anon_sym_restrict] = ACTIONS(7463), }, [4361] = { - [sym_field_declaration_list] = STATE(4648), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), - }, - [4362] = { - [anon_sym_LPAREN2] = ACTIONS(5331), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_DASH_DASH] = ACTIONS(5331), - [anon_sym_STAR_EQ] = ACTIONS(5331), - [anon_sym_LT_LT_EQ] = ACTIONS(5331), - [anon_sym_PERCENT_EQ] = ACTIONS(5331), - [anon_sym_GT2] = ACTIONS(5331), - [anon_sym_EQ_EQ] = ACTIONS(5331), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_CARET_EQ] = ACTIONS(5331), - [anon_sym_AMP] = ACTIONS(5333), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_GT_EQ] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_SLASH_EQ] = ACTIONS(5331), - [anon_sym_PLUS_EQ] = ACTIONS(5331), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_PIPE_EQ] = ACTIONS(5331), - [anon_sym_GT_GT_EQ] = ACTIONS(5333), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_PIPE_PIPE] = ACTIONS(5331), - [anon_sym_DOT] = ACTIONS(5331), - [anon_sym_LT_LT] = ACTIONS(5333), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_PERCENT] = ACTIONS(5333), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5331), - [anon_sym_DASH_EQ] = ACTIONS(5331), - [anon_sym_LT_EQ] = ACTIONS(5331), - [anon_sym_BANG_EQ] = ACTIONS(5331), - [anon_sym_AMP_EQ] = ACTIONS(5331), - [anon_sym_AMP_AMP] = ACTIONS(5331), - [anon_sym_DASH_GT] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5333), - [anon_sym_PLUS_PLUS] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_GT_GT] = ACTIONS(5333), - }, - [4363] = { - [sym_field_declaration_list] = STATE(4649), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), - }, - [4364] = { - [anon_sym_LPAREN2] = ACTIONS(4740), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_DASH_DASH] = ACTIONS(4740), - [anon_sym_STAR_EQ] = ACTIONS(4740), - [anon_sym_LT_LT_EQ] = ACTIONS(4740), - [anon_sym_PERCENT_EQ] = ACTIONS(4740), - [anon_sym_GT2] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_CARET_EQ] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_GT_EQ] = ACTIONS(4742), - [anon_sym_STAR] = ACTIONS(4742), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_SLASH_EQ] = ACTIONS(4740), - [anon_sym_PLUS_EQ] = ACTIONS(4740), - [anon_sym_CARET] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_PIPE_EQ] = ACTIONS(4740), - [anon_sym_GT_GT_EQ] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_LT_LT] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_PERCENT] = ACTIONS(4742), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4740), - [anon_sym_DASH_EQ] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [anon_sym_AMP_EQ] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_GT_GT] = ACTIONS(4742), - }, - [4365] = { - [sym_enumerator] = STATE(2379), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(10079), - }, - [4366] = { - [aux_sym_enumerator_list_repeat1] = STATE(2381), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(10081), - [anon_sym_RBRACE] = ACTIONS(10079), - }, - [4367] = { - [anon_sym_LPAREN2] = ACTIONS(5604), - [anon_sym_DASH] = ACTIONS(5606), - [anon_sym_DASH_DASH] = ACTIONS(5604), - [anon_sym_STAR_EQ] = ACTIONS(5604), - [anon_sym_LT_LT_EQ] = ACTIONS(5604), - [anon_sym_PERCENT_EQ] = ACTIONS(5604), - [anon_sym_GT2] = ACTIONS(5604), - [anon_sym_EQ_EQ] = ACTIONS(5604), - [anon_sym_PIPE] = ACTIONS(5606), - [anon_sym_LT] = ACTIONS(5606), - [anon_sym_CARET_EQ] = ACTIONS(5604), - [anon_sym_AMP] = ACTIONS(5606), - [anon_sym_PLUS] = ACTIONS(5606), - [anon_sym_GT_EQ] = ACTIONS(5606), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_SLASH] = ACTIONS(5606), - [anon_sym_SLASH_EQ] = ACTIONS(5604), - [anon_sym_PLUS_EQ] = ACTIONS(5604), - [anon_sym_CARET] = ACTIONS(5606), - [anon_sym_GT] = ACTIONS(5606), - [anon_sym_PIPE_EQ] = ACTIONS(5604), - [anon_sym_GT_GT_EQ] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(5604), - [anon_sym_PIPE_PIPE] = ACTIONS(5604), - [anon_sym_DOT] = ACTIONS(5604), - [anon_sym_LT_LT] = ACTIONS(5606), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_PERCENT] = ACTIONS(5606), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5604), - [anon_sym_DASH_EQ] = ACTIONS(5604), - [anon_sym_LT_EQ] = ACTIONS(5604), - [anon_sym_BANG_EQ] = ACTIONS(5604), - [anon_sym_AMP_EQ] = ACTIONS(5604), - [anon_sym_AMP_AMP] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(5604), - [anon_sym_EQ] = ACTIONS(5606), - [anon_sym_PLUS_PLUS] = ACTIONS(5604), - [anon_sym_LBRACE] = ACTIONS(5604), - [anon_sym_GT_GT] = ACTIONS(5606), - }, - [4368] = { - [sym_field_declaration_list] = STATE(4652), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), - }, - [4369] = { - [anon_sym_LPAREN2] = ACTIONS(5608), - [anon_sym_DASH] = ACTIONS(5610), - [anon_sym_DASH_DASH] = ACTIONS(5608), - [anon_sym_STAR_EQ] = ACTIONS(5608), - [anon_sym_LT_LT_EQ] = ACTIONS(5608), - [anon_sym_PERCENT_EQ] = ACTIONS(5608), - [anon_sym_GT2] = ACTIONS(5608), - [anon_sym_EQ_EQ] = ACTIONS(5608), - [anon_sym_PIPE] = ACTIONS(5610), - [anon_sym_LT] = ACTIONS(5610), - [anon_sym_CARET_EQ] = ACTIONS(5608), - [anon_sym_AMP] = ACTIONS(5610), - [anon_sym_PLUS] = ACTIONS(5610), - [anon_sym_GT_EQ] = ACTIONS(5610), - [anon_sym_STAR] = ACTIONS(5610), - [anon_sym_SLASH] = ACTIONS(5610), - [anon_sym_SLASH_EQ] = ACTIONS(5608), - [anon_sym_PLUS_EQ] = ACTIONS(5608), - [anon_sym_CARET] = ACTIONS(5610), - [anon_sym_GT] = ACTIONS(5610), - [anon_sym_PIPE_EQ] = ACTIONS(5608), - [anon_sym_GT_GT_EQ] = ACTIONS(5610), - [anon_sym_COMMA] = ACTIONS(5608), - [anon_sym_PIPE_PIPE] = ACTIONS(5608), - [anon_sym_DOT] = ACTIONS(5608), - [anon_sym_LT_LT] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5608), - [anon_sym_PERCENT] = ACTIONS(5610), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5608), - [anon_sym_DASH_EQ] = ACTIONS(5608), - [anon_sym_LT_EQ] = ACTIONS(5608), - [anon_sym_BANG_EQ] = ACTIONS(5608), - [anon_sym_AMP_EQ] = ACTIONS(5608), - [anon_sym_AMP_AMP] = ACTIONS(5608), - [anon_sym_DASH_GT] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_PLUS_PLUS] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(5608), - [anon_sym_GT_GT] = ACTIONS(5610), - }, - [4370] = { - [sym_field_declaration_list] = STATE(4653), - [anon_sym_LBRACE] = ACTIONS(6655), - [sym_comment] = ACTIONS(3), - }, - [4371] = { - [sym_new_declarator] = STATE(4654), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_GT2] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7551), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7551), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(6685), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), - }, - [4372] = { - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_STAR_EQ] = ACTIONS(7553), - [anon_sym_LT_LT_EQ] = ACTIONS(7553), - [anon_sym_PERCENT_EQ] = ACTIONS(7553), - [anon_sym_GT2] = ACTIONS(7553), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_CARET_EQ] = ACTIONS(7553), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7555), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_SLASH_EQ] = ACTIONS(7553), - [anon_sym_PLUS_EQ] = ACTIONS(7553), - [anon_sym_CARET] = ACTIONS(7555), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_PIPE_EQ] = ACTIONS(7553), - [anon_sym_GT_GT_EQ] = ACTIONS(7555), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7553), - [anon_sym_LT_LT] = ACTIONS(7555), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_PERCENT] = ACTIONS(7555), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_DASH_EQ] = ACTIONS(7553), - [anon_sym_LT_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_AMP_EQ] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7553), - [anon_sym_EQ] = ACTIONS(7555), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym_DASH_DASH] = ACTIONS(7553), - }, - [4373] = { - [sym_argument_list] = STATE(1165), - [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_GT2] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(6693), - [anon_sym_PIPE] = ACTIONS(6695), - [anon_sym_LT] = ACTIONS(6697), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(6699), - [anon_sym_PLUS] = ACTIONS(6629), - [anon_sym_GT_EQ] = ACTIONS(6697), - [anon_sym_STAR] = ACTIONS(6631), - [anon_sym_SLASH] = ACTIONS(6631), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(6701), - [anon_sym_GT] = ACTIONS(6697), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8897), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(6633), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(6631), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(10083), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_LT_EQ] = ACTIONS(6705), - [anon_sym_BANG_EQ] = ACTIONS(6693), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(6707), - [anon_sym_DASH_GT] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(6613), - [anon_sym_GT_GT] = ACTIONS(6633), - [anon_sym_DASH_DASH] = ACTIONS(6613), - }, - [4374] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR_EQ] = ACTIONS(2709), - [anon_sym_LT_LT_EQ] = ACTIONS(2709), - [anon_sym_PERCENT_EQ] = ACTIONS(2709), - [anon_sym_GT2] = ACTIONS(2709), - [anon_sym_EQ_EQ] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_CARET_EQ] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_SLASH_EQ] = ACTIONS(2709), - [anon_sym_PLUS_EQ] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_PIPE_EQ] = ACTIONS(2709), - [anon_sym_GT_GT_EQ] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_PIPE_PIPE] = ACTIONS(2709), - [anon_sym_DOT] = ACTIONS(2709), - [anon_sym_LT_LT] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_DASH_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_BANG_EQ] = ACTIONS(2709), - [anon_sym_AMP_EQ] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_DASH_GT] = ACTIONS(2709), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - }, - [4375] = { - [anon_sym_LPAREN2] = ACTIONS(8503), - [anon_sym_CARET] = ACTIONS(8503), - [anon_sym_GT] = ACTIONS(8505), - [anon_sym_DASH] = ACTIONS(8505), - [anon_sym_COMMA] = ACTIONS(8503), - [anon_sym_PIPE_PIPE] = ACTIONS(8503), - [anon_sym_DOT] = ACTIONS(8503), - [anon_sym_LT_LT] = ACTIONS(8503), - [anon_sym_LBRACK] = ACTIONS(8503), - [anon_sym_EQ_EQ] = ACTIONS(8503), - [anon_sym_PIPE] = ACTIONS(8505), - [anon_sym_LT] = ACTIONS(8505), - [anon_sym_PERCENT] = ACTIONS(8503), - [anon_sym_GT2] = ACTIONS(8503), - [anon_sym_AMP] = ACTIONS(8505), - [anon_sym_QMARK] = ACTIONS(8503), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(8505), - [anon_sym_GT_EQ] = ACTIONS(8505), - [anon_sym_STAR] = ACTIONS(8503), - [anon_sym_SLASH] = ACTIONS(8505), - [anon_sym_LT_EQ] = ACTIONS(8503), - [anon_sym_BANG_EQ] = ACTIONS(8503), - [anon_sym_AMP_AMP] = ACTIONS(8503), - [anon_sym_DASH_GT] = ACTIONS(8503), - [anon_sym_PLUS_PLUS] = ACTIONS(8503), - [anon_sym_GT_GT] = ACTIONS(8505), - [anon_sym_DASH_DASH] = ACTIONS(8503), - }, - [4376] = { + [anon_sym_DASH] = ACTIONS(7538), + [sym_raw_string_literal] = ACTIONS(7540), + [anon_sym_else] = ACTIONS(7538), + [sym_true] = ACTIONS(7538), + [anon_sym_mutable] = ACTIONS(7538), + [sym_null] = ACTIONS(7538), + [anon_sym_break] = ACTIONS(7538), + [aux_sym_preproc_if_token2] = ACTIONS(7538), + [anon_sym_BANG] = ACTIONS(7540), + [anon_sym_sizeof] = ACTIONS(7538), + [anon_sym_volatile] = ACTIONS(7538), + [anon_sym_PLUS] = ACTIONS(7538), + [anon_sym_typedef] = ACTIONS(7538), + [anon_sym_switch] = ACTIONS(7538), + [anon_sym_explicit] = ACTIONS(7538), + [sym_identifier] = ACTIONS(7538), + [anon_sym_catch] = ACTIONS(7538), + [anon_sym_delete] = ACTIONS(7538), + [anon_sym_continue] = ACTIONS(7538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7538), + [anon_sym__Atomic] = ACTIONS(7538), + [sym_number_literal] = ACTIONS(7540), + [anon_sym_extern] = ACTIONS(7538), + [anon_sym_enum] = ACTIONS(7538), + [anon_sym_constexpr] = ACTIONS(7538), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7540), + [anon_sym_namespace] = ACTIONS(7538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7538), + [anon_sym_SQUOTE] = ACTIONS(7540), + [anon_sym_LBRACE] = ACTIONS(7540), + [anon_sym_DASH_DASH] = ACTIONS(7540), [anon_sym_LPAREN2] = ACTIONS(7540), - [anon_sym_CARET] = ACTIONS(7540), - [anon_sym_GT] = ACTIONS(7542), - [anon_sym_DASH] = ACTIONS(7542), - [anon_sym_COMMA] = ACTIONS(7540), - [anon_sym_PIPE_PIPE] = ACTIONS(7540), - [anon_sym_DOT] = ACTIONS(7540), - [anon_sym_LT_LT] = ACTIONS(7540), - [anon_sym_LBRACK] = ACTIONS(7540), - [anon_sym_EQ_EQ] = ACTIONS(7540), - [anon_sym_PIPE] = ACTIONS(7542), - [anon_sym_LT] = ACTIONS(7542), - [anon_sym_PERCENT] = ACTIONS(7540), - [anon_sym_GT2] = ACTIONS(7540), - [anon_sym_AMP] = ACTIONS(7542), - [anon_sym_QMARK] = ACTIONS(7540), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(7542), - [anon_sym_GT_EQ] = ACTIONS(7542), + [anon_sym_struct] = ACTIONS(7538), + [sym_auto] = ACTIONS(7538), + [anon_sym_signed] = ACTIONS(7538), + [anon_sym_long] = ACTIONS(7538), + [anon_sym_COLON_COLON] = ACTIONS(7540), + [anon_sym_using] = ACTIONS(7538), + [sym_preproc_directive] = ACTIONS(7538), + [aux_sym_preproc_if_token1] = ACTIONS(7538), + [anon_sym_AMP] = ACTIONS(7538), + [anon_sym_static] = ACTIONS(7538), [anon_sym_STAR] = ACTIONS(7540), - [anon_sym_SLASH] = ACTIONS(7542), - [anon_sym_LT_EQ] = ACTIONS(7540), - [anon_sym_BANG_EQ] = ACTIONS(7540), + [anon_sym_union] = ACTIONS(7538), + [anon_sym_typename] = ACTIONS(7538), + [anon_sym_short] = ACTIONS(7538), + [anon_sym_new] = ACTIONS(7538), + [anon_sym_goto] = ACTIONS(7538), + [sym_operator_name] = ACTIONS(7540), + [anon_sym_while] = ACTIONS(7538), + [anon_sym_try] = ACTIONS(7538), + [anon_sym_for] = ACTIONS(7538), + [aux_sym_preproc_include_token1] = ACTIONS(7538), + [anon_sym_register] = ACTIONS(7538), + [anon_sym_DQUOTE] = ACTIONS(7540), + [anon_sym_const] = ACTIONS(7538), + [anon_sym_LBRACK] = ACTIONS(7538), + [anon_sym_class] = ACTIONS(7538), + [anon_sym_if] = ACTIONS(7538), + [sym_primitive_type] = ACTIONS(7538), + [sym_false] = ACTIONS(7538), + [sym_nullptr] = ACTIONS(7538), + [anon_sym_do] = ACTIONS(7538), + [anon_sym_template] = ACTIONS(7538), + [anon_sym_return] = ACTIONS(7538), + [anon_sym_TILDE] = ACTIONS(7540), + [anon_sym_SEMI] = ACTIONS(7540), + [aux_sym_preproc_def_token1] = ACTIONS(7538), [anon_sym_AMP_AMP] = ACTIONS(7540), - [anon_sym_DASH_GT] = ACTIONS(7540), + [anon_sym_inline] = ACTIONS(7538), [anon_sym_PLUS_PLUS] = ACTIONS(7540), - [anon_sym_GT_GT] = ACTIONS(7542), - [anon_sym_DASH_DASH] = ACTIONS(7540), - }, - [4377] = { - [anon_sym_LPAREN2] = ACTIONS(8904), - [anon_sym_DASH] = ACTIONS(8906), - [anon_sym_GT_GT] = ACTIONS(8906), - [anon_sym_GT2] = ACTIONS(8904), - [anon_sym_EQ_EQ] = ACTIONS(8904), - [anon_sym_PIPE] = ACTIONS(8906), - [anon_sym_LT] = ACTIONS(8906), - [anon_sym_AMP] = ACTIONS(8906), - [anon_sym_PLUS] = ACTIONS(8906), - [anon_sym_GT_EQ] = ACTIONS(8906), - [anon_sym_STAR] = ACTIONS(8904), - [anon_sym_SLASH] = ACTIONS(8906), - [anon_sym_CARET] = ACTIONS(8904), - [anon_sym_GT] = ACTIONS(8906), - [anon_sym_COMMA] = ACTIONS(8904), - [anon_sym_PIPE_PIPE] = ACTIONS(8904), - [anon_sym_DOT] = ACTIONS(8904), - [anon_sym_LT_LT] = ACTIONS(8904), - [anon_sym_LBRACK] = ACTIONS(8904), - [anon_sym_PERCENT] = ACTIONS(8904), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8904), - [anon_sym_LT_EQ] = ACTIONS(8904), - [anon_sym_BANG_EQ] = ACTIONS(8904), - [anon_sym_AMP_AMP] = ACTIONS(8904), - [anon_sym_DASH_GT] = ACTIONS(8904), - [anon_sym_PLUS_PLUS] = ACTIONS(8904), - [anon_sym_LBRACE] = ACTIONS(8904), - [anon_sym_DASH_DASH] = ACTIONS(8904), - }, - [4378] = { - [anon_sym_LPAREN2] = ACTIONS(8620), - [anon_sym_DASH] = ACTIONS(8622), - [anon_sym_PLUS_PLUS] = ACTIONS(8620), - [anon_sym_LBRACE] = ACTIONS(8620), - [anon_sym_mutable] = ACTIONS(8622), - [anon_sym_DASH_DASH] = ACTIONS(8620), - [anon_sym_final] = ACTIONS(8622), - [anon_sym_COLON_COLON] = ACTIONS(8620), - [anon_sym_GT2] = ACTIONS(8620), - [anon_sym_EQ_EQ] = ACTIONS(8620), - [anon_sym_PIPE] = ACTIONS(8622), - [anon_sym_LT] = ACTIONS(8622), - [anon_sym_AMP] = ACTIONS(8622), - [anon_sym_static] = ACTIONS(8622), - [anon_sym_volatile] = ACTIONS(8622), - [anon_sym_PLUS] = ACTIONS(8622), - [anon_sym_GT_EQ] = ACTIONS(8622), - [anon_sym_STAR] = ACTIONS(8620), - [anon_sym_SLASH] = ACTIONS(8622), - [anon_sym_override] = ACTIONS(8622), - [anon_sym_explicit] = ACTIONS(8622), - [sym_identifier] = ACTIONS(8622), - [sym_operator_name] = ACTIONS(8620), - [sym_noexcept] = ACTIONS(8622), - [anon_sym_CARET] = ACTIONS(8620), - [anon_sym_GT] = ACTIONS(8622), - [anon_sym_COMMA] = ACTIONS(8620), - [anon_sym_register] = ACTIONS(8622), - [anon_sym__Atomic] = ACTIONS(8622), - [anon_sym_const] = ACTIONS(8622), - [anon_sym_extern] = ACTIONS(8622), - [anon_sym_LBRACK] = ACTIONS(8620), - [anon_sym_PIPE_PIPE] = ACTIONS(8620), - [anon_sym_DOT] = ACTIONS(8620), - [anon_sym_LT_LT] = ACTIONS(8620), - [anon_sym_constexpr] = ACTIONS(8622), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(8620), - [anon_sym_TILDE] = ACTIONS(8620), - [anon_sym_LT_EQ] = ACTIONS(8620), - [anon_sym_BANG_EQ] = ACTIONS(8620), - [anon_sym_AMP_AMP] = ACTIONS(8620), - [anon_sym_inline] = ACTIONS(8622), - [anon_sym_EQ] = ACTIONS(8622), - [anon_sym_restrict] = ACTIONS(8622), - [anon_sym_GT_GT] = ACTIONS(8622), - [anon_sym_DASH_GT] = ACTIONS(8620), - }, - [4379] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(6863), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(7469), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(6871), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(6873), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(6875), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [4380] = { - [sym_new_declarator] = STATE(4145), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_RBRACE] = ACTIONS(7549), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(6855), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), - }, - [4381] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6847), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(6861), - [anon_sym_PIPE] = ACTIONS(6863), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(6867), - [anon_sym_RBRACE] = ACTIONS(8131), - [anon_sym_GT_EQ] = ACTIONS(6869), - [anon_sym_STAR] = ACTIONS(6849), - [anon_sym_PLUS] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6849), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(6871), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(6873), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6849), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(10085), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_LT_EQ] = ACTIONS(6869), - [anon_sym_BANG_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(6875), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(6851), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [4382] = { - [anon_sym_DASH] = ACTIONS(8329), - [sym_raw_string_literal] = ACTIONS(8331), - [sym_true] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [sym_null] = ACTIONS(8329), - [anon_sym_break] = ACTIONS(8329), - [aux_sym_preproc_if_token2] = ACTIONS(8329), - [anon_sym_BANG] = ACTIONS(8331), - [anon_sym_sizeof] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_PLUS] = ACTIONS(8329), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_switch] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [sym_identifier] = ACTIONS(8329), - [anon_sym_delete] = ACTIONS(8329), - [anon_sym_continue] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [sym_number_literal] = ACTIONS(8331), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [anon_sym_namespace] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), - [aux_sym_preproc_elif_token1] = ACTIONS(8329), - [anon_sym_SQUOTE] = ACTIONS(8331), - [anon_sym_LBRACE] = ACTIONS(8331), - [anon_sym_DASH_DASH] = ACTIONS(8331), - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_struct] = ACTIONS(8329), - [sym_auto] = ACTIONS(8329), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_using] = ACTIONS(8329), - [aux_sym_preproc_else_token1] = ACTIONS(8329), - [sym_preproc_directive] = ACTIONS(8329), - [aux_sym_preproc_if_token1] = ACTIONS(8329), - [anon_sym_AMP] = ACTIONS(8329), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [anon_sym_new] = ACTIONS(8329), - [anon_sym_goto] = ACTIONS(8329), - [sym_operator_name] = ACTIONS(8331), - [anon_sym_while] = ACTIONS(8329), - [anon_sym_try] = ACTIONS(8329), - [anon_sym_for] = ACTIONS(8329), - [aux_sym_preproc_include_token1] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym_DQUOTE] = ACTIONS(8331), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_LBRACK] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_if] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [sym_false] = ACTIONS(8329), - [sym_nullptr] = ACTIONS(8329), - [anon_sym_do] = ACTIONS(8329), - [anon_sym_template] = ACTIONS(8329), - [anon_sym_return] = ACTIONS(8329), - [anon_sym_TILDE] = ACTIONS(8331), - [anon_sym_SEMI] = ACTIONS(8331), - [aux_sym_preproc_def_token1] = ACTIONS(8329), - [anon_sym_AMP_AMP] = ACTIONS(8331), - [anon_sym_inline] = ACTIONS(8329), - [anon_sym_PLUS_PLUS] = ACTIONS(8331), - [anon_sym_restrict] = ACTIONS(8329), - }, - [4383] = { - [anon_sym_DASH] = ACTIONS(6416), - [sym_raw_string_literal] = ACTIONS(6418), - [sym_true] = ACTIONS(6416), - [anon_sym_mutable] = ACTIONS(6416), - [sym_null] = ACTIONS(6416), - [anon_sym_break] = ACTIONS(6416), - [aux_sym_preproc_if_token2] = ACTIONS(6416), - [anon_sym_BANG] = ACTIONS(6418), - [anon_sym_sizeof] = ACTIONS(6416), - [anon_sym_volatile] = ACTIONS(6416), - [anon_sym_PLUS] = ACTIONS(6416), - [anon_sym_typedef] = ACTIONS(6416), - [anon_sym_switch] = ACTIONS(6416), - [anon_sym_explicit] = ACTIONS(6416), - [sym_identifier] = ACTIONS(6416), - [anon_sym_delete] = ACTIONS(6416), - [anon_sym_continue] = ACTIONS(6416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6416), - [anon_sym__Atomic] = ACTIONS(6416), - [sym_number_literal] = ACTIONS(6418), - [anon_sym_extern] = ACTIONS(6416), - [anon_sym_enum] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6416), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6418), - [anon_sym_namespace] = ACTIONS(6416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6416), - [anon_sym_SQUOTE] = ACTIONS(6418), - [anon_sym_LBRACE] = ACTIONS(6418), - [anon_sym_DASH_DASH] = ACTIONS(6418), - [anon_sym_LPAREN2] = ACTIONS(6418), - [anon_sym_struct] = ACTIONS(6416), - [sym_auto] = ACTIONS(6416), - [anon_sym_signed] = ACTIONS(6416), - [anon_sym_long] = ACTIONS(6416), - [anon_sym_COLON_COLON] = ACTIONS(6418), - [anon_sym_using] = ACTIONS(6416), - [sym_preproc_directive] = ACTIONS(6416), - [aux_sym_preproc_if_token1] = ACTIONS(6416), - [anon_sym_AMP] = ACTIONS(6416), - [anon_sym_static] = ACTIONS(6416), - [anon_sym_STAR] = ACTIONS(6418), - [anon_sym_union] = ACTIONS(6416), - [anon_sym_typename] = ACTIONS(6416), - [anon_sym_short] = ACTIONS(6416), - [anon_sym_new] = ACTIONS(6416), - [anon_sym_goto] = ACTIONS(6416), - [sym_operator_name] = ACTIONS(6418), - [anon_sym_while] = ACTIONS(6416), - [anon_sym_try] = ACTIONS(6416), - [anon_sym_for] = ACTIONS(6416), - [aux_sym_preproc_include_token1] = ACTIONS(6416), - [anon_sym_register] = ACTIONS(6416), - [anon_sym_DQUOTE] = ACTIONS(6418), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_LBRACK] = ACTIONS(6416), - [anon_sym_class] = ACTIONS(6416), - [anon_sym_if] = ACTIONS(6416), - [sym_primitive_type] = ACTIONS(6416), - [sym_false] = ACTIONS(6416), - [sym_nullptr] = ACTIONS(6416), - [anon_sym_do] = ACTIONS(6416), - [anon_sym_template] = ACTIONS(6416), - [anon_sym_return] = ACTIONS(6416), - [anon_sym_TILDE] = ACTIONS(6418), - [anon_sym_SEMI] = ACTIONS(6418), - [aux_sym_preproc_def_token1] = ACTIONS(6416), - [anon_sym_AMP_AMP] = ACTIONS(6418), - [anon_sym_inline] = ACTIONS(6416), - [anon_sym_PLUS_PLUS] = ACTIONS(6418), - [anon_sym_restrict] = ACTIONS(6416), - }, - [4384] = { - [aux_sym_type_definition_repeat2] = STATE(2057), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10087), - }, - [4385] = { - [anon_sym_DASH] = ACTIONS(6505), - [sym_raw_string_literal] = ACTIONS(6507), - [anon_sym_else] = ACTIONS(6505), - [sym_true] = ACTIONS(6505), - [anon_sym_mutable] = ACTIONS(6505), - [sym_null] = ACTIONS(6505), - [anon_sym_break] = ACTIONS(6505), - [aux_sym_preproc_if_token2] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6507), - [anon_sym_sizeof] = ACTIONS(6505), - [anon_sym_volatile] = ACTIONS(6505), - [anon_sym_PLUS] = ACTIONS(6505), - [anon_sym_typedef] = ACTIONS(6505), - [anon_sym_switch] = ACTIONS(6505), - [anon_sym_explicit] = ACTIONS(6505), - [sym_identifier] = ACTIONS(6505), - [anon_sym_delete] = ACTIONS(6505), - [anon_sym_continue] = ACTIONS(6505), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6505), - [anon_sym__Atomic] = ACTIONS(6505), - [sym_number_literal] = ACTIONS(6507), - [anon_sym_extern] = ACTIONS(6505), - [anon_sym_enum] = ACTIONS(6505), - [anon_sym_constexpr] = ACTIONS(6505), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6507), - [anon_sym_namespace] = ACTIONS(6505), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [anon_sym_DASH_DASH] = ACTIONS(6507), - [anon_sym_LPAREN2] = ACTIONS(6507), - [anon_sym_struct] = ACTIONS(6505), - [sym_auto] = ACTIONS(6505), - [anon_sym_signed] = ACTIONS(6505), - [anon_sym_long] = ACTIONS(6505), - [anon_sym_COLON_COLON] = ACTIONS(6507), - [anon_sym_using] = ACTIONS(6505), - [sym_preproc_directive] = ACTIONS(6505), - [aux_sym_preproc_if_token1] = ACTIONS(6505), - [anon_sym_AMP] = ACTIONS(6505), - [anon_sym_static] = ACTIONS(6505), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_union] = ACTIONS(6505), - [anon_sym_typename] = ACTIONS(6505), - [anon_sym_short] = ACTIONS(6505), - [anon_sym_new] = ACTIONS(6505), - [anon_sym_goto] = ACTIONS(6505), - [sym_operator_name] = ACTIONS(6507), - [anon_sym_while] = ACTIONS(6505), - [anon_sym_try] = ACTIONS(6505), - [anon_sym_for] = ACTIONS(6505), - [aux_sym_preproc_include_token1] = ACTIONS(6505), - [anon_sym_register] = ACTIONS(6505), - [anon_sym_DQUOTE] = ACTIONS(6507), - [anon_sym_const] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6505), - [anon_sym_class] = ACTIONS(6505), - [anon_sym_if] = ACTIONS(6505), - [sym_primitive_type] = ACTIONS(6505), - [sym_false] = ACTIONS(6505), - [sym_nullptr] = ACTIONS(6505), - [anon_sym_do] = ACTIONS(6505), - [anon_sym_template] = ACTIONS(6505), - [anon_sym_return] = ACTIONS(6505), - [anon_sym_TILDE] = ACTIONS(6507), - [anon_sym_SEMI] = ACTIONS(6507), - [aux_sym_preproc_def_token1] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(6507), - [anon_sym_inline] = ACTIONS(6505), - [anon_sym_PLUS_PLUS] = ACTIONS(6507), - [anon_sym_restrict] = ACTIONS(6505), - }, - [4386] = { - [anon_sym_DASH] = ACTIONS(7138), - [sym_raw_string_literal] = ACTIONS(7140), - [sym_true] = ACTIONS(7138), - [anon_sym_mutable] = ACTIONS(7138), - [sym_null] = ACTIONS(7138), - [anon_sym_break] = ACTIONS(7138), - [aux_sym_preproc_if_token2] = ACTIONS(7138), - [anon_sym_BANG] = ACTIONS(7140), - [anon_sym_sizeof] = ACTIONS(7138), - [anon_sym_volatile] = ACTIONS(7138), - [anon_sym_PLUS] = ACTIONS(7138), - [anon_sym_typedef] = ACTIONS(7138), - [anon_sym_switch] = ACTIONS(7138), - [anon_sym_explicit] = ACTIONS(7138), - [sym_identifier] = ACTIONS(7138), - [anon_sym_delete] = ACTIONS(7138), - [anon_sym_continue] = ACTIONS(7138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7138), - [anon_sym__Atomic] = ACTIONS(7138), - [sym_number_literal] = ACTIONS(7140), - [anon_sym_extern] = ACTIONS(7138), - [anon_sym_enum] = ACTIONS(7138), - [anon_sym_constexpr] = ACTIONS(7138), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7140), - [anon_sym_namespace] = ACTIONS(7138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7138), - [anon_sym_SQUOTE] = ACTIONS(7140), - [anon_sym_LBRACE] = ACTIONS(7140), - [anon_sym_DASH_DASH] = ACTIONS(7140), - [anon_sym_LPAREN2] = ACTIONS(7140), - [anon_sym_struct] = ACTIONS(7138), - [sym_auto] = ACTIONS(7138), - [anon_sym_signed] = ACTIONS(7138), - [anon_sym_long] = ACTIONS(7138), - [anon_sym_COLON_COLON] = ACTIONS(7140), - [anon_sym_using] = ACTIONS(7138), - [sym_preproc_directive] = ACTIONS(7138), - [aux_sym_preproc_if_token1] = ACTIONS(7138), - [anon_sym_AMP] = ACTIONS(7138), - [anon_sym_static] = ACTIONS(7138), - [anon_sym_STAR] = ACTIONS(7140), - [anon_sym_union] = ACTIONS(7138), - [anon_sym_typename] = ACTIONS(7138), - [anon_sym_short] = ACTIONS(7138), - [anon_sym_new] = ACTIONS(7138), - [anon_sym_goto] = ACTIONS(7138), - [sym_operator_name] = ACTIONS(7140), - [anon_sym_while] = ACTIONS(7138), - [anon_sym_try] = ACTIONS(7138), - [anon_sym_for] = ACTIONS(7138), - [aux_sym_preproc_include_token1] = ACTIONS(7138), - [anon_sym_register] = ACTIONS(7138), - [anon_sym_DQUOTE] = ACTIONS(7140), - [anon_sym_const] = ACTIONS(7138), - [anon_sym_LBRACK] = ACTIONS(7138), - [anon_sym_class] = ACTIONS(7138), - [anon_sym_if] = ACTIONS(7138), - [sym_primitive_type] = ACTIONS(7138), - [sym_false] = ACTIONS(7138), - [sym_nullptr] = ACTIONS(7138), - [anon_sym_do] = ACTIONS(7138), - [anon_sym_template] = ACTIONS(7138), - [anon_sym_return] = ACTIONS(7138), - [anon_sym_TILDE] = ACTIONS(7140), - [anon_sym_SEMI] = ACTIONS(7140), - [aux_sym_preproc_def_token1] = ACTIONS(7138), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_inline] = ACTIONS(7138), - [anon_sym_PLUS_PLUS] = ACTIONS(7140), - [anon_sym_restrict] = ACTIONS(7138), - }, - [4387] = { - [anon_sym_DASH] = ACTIONS(7475), - [sym_raw_string_literal] = ACTIONS(7477), - [sym_true] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [sym_null] = ACTIONS(7475), - [anon_sym_break] = ACTIONS(7475), - [aux_sym_preproc_if_token2] = ACTIONS(7475), - [anon_sym_BANG] = ACTIONS(7477), - [anon_sym_sizeof] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_PLUS] = ACTIONS(7475), - [anon_sym_typedef] = ACTIONS(7475), - [anon_sym_switch] = ACTIONS(7475), - [anon_sym_explicit] = ACTIONS(7475), - [sym_identifier] = ACTIONS(7475), - [anon_sym_delete] = ACTIONS(7475), - [anon_sym_continue] = ACTIONS(7475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [sym_number_literal] = ACTIONS(7477), - [anon_sym_extern] = ACTIONS(7475), - [anon_sym_enum] = ACTIONS(7475), - [anon_sym_constexpr] = ACTIONS(7475), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7477), - [anon_sym_namespace] = ACTIONS(7475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7475), - [anon_sym_SQUOTE] = ACTIONS(7477), - [anon_sym_LBRACE] = ACTIONS(7477), - [anon_sym_DASH_DASH] = ACTIONS(7477), - [anon_sym_LPAREN2] = ACTIONS(7477), - [anon_sym_struct] = ACTIONS(7475), - [sym_auto] = ACTIONS(7475), - [anon_sym_signed] = ACTIONS(7475), - [anon_sym_long] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7477), - [anon_sym_using] = ACTIONS(7475), - [sym_preproc_directive] = ACTIONS(7475), - [aux_sym_preproc_if_token1] = ACTIONS(7475), - [anon_sym_AMP] = ACTIONS(7475), - [anon_sym_static] = ACTIONS(7475), - [anon_sym_STAR] = ACTIONS(7477), - [anon_sym_union] = ACTIONS(7475), - [anon_sym_typename] = ACTIONS(7475), - [anon_sym_short] = ACTIONS(7475), - [anon_sym_new] = ACTIONS(7475), - [anon_sym_goto] = ACTIONS(7475), - [sym_operator_name] = ACTIONS(7477), - [anon_sym_while] = ACTIONS(7475), - [anon_sym_try] = ACTIONS(7475), - [anon_sym_for] = ACTIONS(7475), - [aux_sym_preproc_include_token1] = ACTIONS(7475), - [anon_sym_register] = ACTIONS(7475), - [anon_sym_DQUOTE] = ACTIONS(7477), - [anon_sym_const] = ACTIONS(7475), - [anon_sym_LBRACK] = ACTIONS(7475), - [anon_sym_class] = ACTIONS(7475), - [anon_sym_if] = ACTIONS(7475), - [sym_primitive_type] = ACTIONS(7475), - [sym_false] = ACTIONS(7475), - [sym_nullptr] = ACTIONS(7475), - [anon_sym_do] = ACTIONS(7475), - [anon_sym_template] = ACTIONS(7475), - [anon_sym_return] = ACTIONS(7475), - [anon_sym_TILDE] = ACTIONS(7477), - [anon_sym_SEMI] = ACTIONS(7477), - [aux_sym_preproc_def_token1] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7477), - [anon_sym_inline] = ACTIONS(7475), - [anon_sym_PLUS_PLUS] = ACTIONS(7477), - [anon_sym_restrict] = ACTIONS(7475), - }, - [4388] = { - [anon_sym_DASH] = ACTIONS(7482), - [sym_raw_string_literal] = ACTIONS(7484), - [sym_true] = ACTIONS(7482), - [anon_sym_mutable] = ACTIONS(7482), - [sym_null] = ACTIONS(7482), - [anon_sym_break] = ACTIONS(7482), - [aux_sym_preproc_if_token2] = ACTIONS(7482), - [anon_sym_BANG] = ACTIONS(7484), - [anon_sym_sizeof] = ACTIONS(7482), - [anon_sym_volatile] = ACTIONS(7482), - [anon_sym_PLUS] = ACTIONS(7482), - [anon_sym_typedef] = ACTIONS(7482), - [anon_sym_switch] = ACTIONS(7482), - [anon_sym_explicit] = ACTIONS(7482), - [sym_identifier] = ACTIONS(7482), - [anon_sym_delete] = ACTIONS(7482), - [anon_sym_continue] = ACTIONS(7482), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7482), - [anon_sym__Atomic] = ACTIONS(7482), - [sym_number_literal] = ACTIONS(7484), - [anon_sym_extern] = ACTIONS(7482), - [anon_sym_enum] = ACTIONS(7482), - [anon_sym_constexpr] = ACTIONS(7482), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7482), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7484), - [anon_sym_namespace] = ACTIONS(7482), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7482), - [anon_sym_SQUOTE] = ACTIONS(7484), - [anon_sym_LBRACE] = ACTIONS(7484), - [anon_sym_DASH_DASH] = ACTIONS(7484), - [anon_sym_LPAREN2] = ACTIONS(7484), - [anon_sym_struct] = ACTIONS(7482), - [sym_auto] = ACTIONS(7482), - [anon_sym_signed] = ACTIONS(7482), - [anon_sym_long] = ACTIONS(7482), - [anon_sym_COLON_COLON] = ACTIONS(7484), - [anon_sym_using] = ACTIONS(7482), - [sym_preproc_directive] = ACTIONS(7482), - [aux_sym_preproc_if_token1] = ACTIONS(7482), - [anon_sym_AMP] = ACTIONS(7482), - [anon_sym_static] = ACTIONS(7482), - [anon_sym_STAR] = ACTIONS(7484), - [anon_sym_union] = ACTIONS(7482), - [anon_sym_typename] = ACTIONS(7482), - [anon_sym_short] = ACTIONS(7482), - [anon_sym_new] = ACTIONS(7482), - [anon_sym_goto] = ACTIONS(7482), - [sym_operator_name] = ACTIONS(7484), - [anon_sym_while] = ACTIONS(7482), - [anon_sym_try] = ACTIONS(7482), - [anon_sym_for] = ACTIONS(7482), - [aux_sym_preproc_include_token1] = ACTIONS(7482), - [anon_sym_register] = ACTIONS(7482), - [anon_sym_DQUOTE] = ACTIONS(7484), - [anon_sym_const] = ACTIONS(7482), - [anon_sym_LBRACK] = ACTIONS(7482), - [anon_sym_class] = ACTIONS(7482), - [anon_sym_if] = ACTIONS(7482), - [sym_primitive_type] = ACTIONS(7482), - [sym_false] = ACTIONS(7482), - [sym_nullptr] = ACTIONS(7482), - [anon_sym_do] = ACTIONS(7482), - [anon_sym_template] = ACTIONS(7482), - [anon_sym_return] = ACTIONS(7482), - [anon_sym_TILDE] = ACTIONS(7484), - [anon_sym_SEMI] = ACTIONS(7484), - [aux_sym_preproc_def_token1] = ACTIONS(7482), - [anon_sym_AMP_AMP] = ACTIONS(7484), - [anon_sym_inline] = ACTIONS(7482), - [anon_sym_PLUS_PLUS] = ACTIONS(7484), - [anon_sym_restrict] = ACTIONS(7482), + [anon_sym_restrict] = ACTIONS(7538), }, - [4389] = { - [anon_sym_DASH] = ACTIONS(7557), - [sym_raw_string_literal] = ACTIONS(7559), - [anon_sym_else] = ACTIONS(7557), - [sym_true] = ACTIONS(7557), - [anon_sym_mutable] = ACTIONS(7557), - [sym_null] = ACTIONS(7557), - [anon_sym_break] = ACTIONS(7557), - [aux_sym_preproc_if_token2] = ACTIONS(7557), - [anon_sym_BANG] = ACTIONS(7559), - [anon_sym_sizeof] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [anon_sym_PLUS] = ACTIONS(7557), - [anon_sym_typedef] = ACTIONS(7557), - [anon_sym_switch] = ACTIONS(7557), - [anon_sym_explicit] = ACTIONS(7557), - [sym_identifier] = ACTIONS(7557), - [anon_sym_catch] = ACTIONS(7557), - [anon_sym_delete] = ACTIONS(7557), - [anon_sym_continue] = ACTIONS(7557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7557), - [anon_sym__Atomic] = ACTIONS(7557), - [sym_number_literal] = ACTIONS(7559), - [anon_sym_extern] = ACTIONS(7557), - [anon_sym_enum] = ACTIONS(7557), - [anon_sym_constexpr] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7559), - [anon_sym_namespace] = ACTIONS(7557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7557), - [anon_sym_SQUOTE] = ACTIONS(7559), - [anon_sym_LBRACE] = ACTIONS(7559), - [anon_sym_DASH_DASH] = ACTIONS(7559), - [anon_sym_LPAREN2] = ACTIONS(7559), - [anon_sym_struct] = ACTIONS(7557), - [sym_auto] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(7557), - [anon_sym_long] = ACTIONS(7557), - [anon_sym_COLON_COLON] = ACTIONS(7559), - [anon_sym_using] = ACTIONS(7557), - [sym_preproc_directive] = ACTIONS(7557), - [aux_sym_preproc_if_token1] = ACTIONS(7557), - [anon_sym_AMP] = ACTIONS(7557), - [anon_sym_static] = ACTIONS(7557), - [anon_sym_STAR] = ACTIONS(7559), - [anon_sym_union] = ACTIONS(7557), - [anon_sym_typename] = ACTIONS(7557), - [anon_sym_short] = ACTIONS(7557), - [anon_sym_new] = ACTIONS(7557), - [anon_sym_goto] = ACTIONS(7557), - [sym_operator_name] = ACTIONS(7559), - [anon_sym_while] = ACTIONS(7557), - [anon_sym_try] = ACTIONS(7557), - [anon_sym_for] = ACTIONS(7557), - [aux_sym_preproc_include_token1] = ACTIONS(7557), - [anon_sym_register] = ACTIONS(7557), - [anon_sym_DQUOTE] = ACTIONS(7559), - [anon_sym_const] = ACTIONS(7557), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_class] = ACTIONS(7557), - [anon_sym_if] = ACTIONS(7557), - [sym_primitive_type] = ACTIONS(7557), - [sym_false] = ACTIONS(7557), - [sym_nullptr] = ACTIONS(7557), - [anon_sym_do] = ACTIONS(7557), - [anon_sym_template] = ACTIONS(7557), - [anon_sym_return] = ACTIONS(7557), - [anon_sym_TILDE] = ACTIONS(7559), - [anon_sym_SEMI] = ACTIONS(7559), - [aux_sym_preproc_def_token1] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_inline] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7559), - [anon_sym_restrict] = ACTIONS(7557), - }, - [4390] = { - [sym_do_statement] = STATE(4656), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4362] = { + [sym_do_statement] = STATE(4627), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4656), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4656), - [sym_if_statement] = STATE(4656), - [sym_switch_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_return_statement] = STATE(4656), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4627), + [sym_try_statement] = STATE(4627), + [sym_if_statement] = STATE(4627), + [sym_switch_statement] = STATE(4627), + [sym_for_statement] = STATE(4627), + [sym_return_statement] = STATE(4627), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4656), - [sym_break_statement] = STATE(4656), - [sym_continue_statement] = STATE(4656), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4627), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4656), - [sym_labeled_statement] = STATE(4656), - [sym_expression_statement] = STATE(4656), - [sym_while_statement] = STATE(4656), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4627), + [sym_for_range_loop] = STATE(4627), + [sym_compound_statement] = STATE(4627), + [sym_labeled_statement] = STATE(4627), + [sym_expression_statement] = STATE(4627), + [sym_while_statement] = STATE(4627), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4391] = { - [aux_sym_for_statement_repeat1] = STATE(4658), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10089), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4363] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4629), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10055), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4392] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4659), - [sym_logical_expression] = STATE(4659), - [sym_bitwise_expression] = STATE(4659), - [sym_cast_expression] = STATE(4659), - [sym_new_expression] = STATE(4659), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4659), - [sym_char_literal] = STATE(4659), - [sym_template_function] = STATE(4659), - [sym_conditional_expression] = STATE(4659), - [sym_equality_expression] = STATE(4659), - [sym_relational_expression] = STATE(4659), - [sym_delete_expression] = STATE(4659), - [sym_sizeof_expression] = STATE(4659), - [sym_parenthesized_expression] = STATE(4659), - [sym_lambda_expression] = STATE(4659), - [sym_concatenated_string] = STATE(4659), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4659), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4659), - [sym_math_expression] = STATE(4659), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10091), + [4364] = { + [sym_template_function] = STATE(4630), + [sym__expression] = STATE(4630), + [sym_logical_expression] = STATE(4630), + [sym_bitwise_expression] = STATE(4630), + [sym_cast_expression] = STATE(4630), + [sym_delete_expression] = STATE(4630), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4630), + [sym_lambda_expression] = STATE(4630), + [sym_char_literal] = STATE(4630), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4630), + [sym_equality_expression] = STATE(4630), + [sym_relational_expression] = STATE(4630), + [sym_sizeof_expression] = STATE(4630), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4630), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4630), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4630), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4630), + [sym_math_expression] = STATE(4630), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4630), + [sym_raw_string_literal] = ACTIONS(10057), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10093), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10093), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10059), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10059), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10091), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10057), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10093), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10093), + [sym_false] = ACTIONS(10059), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10059), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10089), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10055), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4393] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10095), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4365] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10061), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4394] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10097), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4366] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10063), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4395] = { - [sym_template_argument_list] = STATE(377), + [4367] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -178112,7 +177559,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -178122,7 +177569,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(10099), + [anon_sym_COLON] = ACTIONS(10065), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -178148,1380 +177595,1306 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [4396] = { - [sym_parenthesized_expression] = STATE(4663), - [anon_sym_LPAREN2] = ACTIONS(372), + [4368] = { + [sym_parenthesized_expression] = STATE(4634), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [4397] = { - [anon_sym_LPAREN2] = ACTIONS(10101), + [4369] = { + [anon_sym_LPAREN2] = ACTIONS(10067), [sym_comment] = ACTIONS(3), }, - [4398] = { - [sym_compound_statement] = STATE(4665), - [anon_sym_LBRACE] = ACTIONS(374), + [4370] = { + [sym_compound_statement] = STATE(4636), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [4399] = { - [anon_sym_LPAREN2] = ACTIONS(10103), - [anon_sym_constexpr] = ACTIONS(10105), + [4371] = { + [anon_sym_LPAREN2] = ACTIONS(10069), + [anon_sym_constexpr] = ACTIONS(10071), [sym_comment] = ACTIONS(3), }, - [4400] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(10107), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [aux_sym_preproc_if_token2] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_namespace] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_using] = ACTIONS(7770), - [sym_preproc_directive] = ACTIONS(7770), - [aux_sym_preproc_if_token1] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7770), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [sym_operator_name] = ACTIONS(7772), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [aux_sym_preproc_include_token1] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_template] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7770), - [anon_sym_AMP_AMP] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [4372] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(10073), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [aux_sym_preproc_if_token2] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_namespace] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_using] = ACTIONS(7751), + [sym_preproc_directive] = ACTIONS(7751), + [aux_sym_preproc_if_token1] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [sym_operator_name] = ACTIONS(7753), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [aux_sym_preproc_include_token1] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [aux_sym_preproc_def_token1] = ACTIONS(7751), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [4401] = { - [sym_do_statement] = STATE(4669), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4373] = { + [sym_do_statement] = STATE(4640), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4669), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4669), - [sym_if_statement] = STATE(4669), - [sym_switch_statement] = STATE(4669), - [sym_for_statement] = STATE(4669), - [sym_return_statement] = STATE(4669), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4640), + [sym_try_statement] = STATE(4640), + [sym_if_statement] = STATE(4640), + [sym_switch_statement] = STATE(4640), + [sym_for_statement] = STATE(4640), + [sym_return_statement] = STATE(4640), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4669), - [sym_break_statement] = STATE(4669), - [sym_continue_statement] = STATE(4669), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4640), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4669), - [sym_labeled_statement] = STATE(4669), - [sym_expression_statement] = STATE(4669), - [sym_while_statement] = STATE(4669), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4640), + [sym_for_range_loop] = STATE(4640), + [sym_compound_statement] = STATE(4640), + [sym_labeled_statement] = STATE(4640), + [sym_expression_statement] = STATE(4640), + [sym_while_statement] = STATE(4640), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4402] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10109), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4374] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10075), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4403] = { - [anon_sym_RPAREN] = ACTIONS(10109), + [4375] = { + [anon_sym_RPAREN] = ACTIONS(10075), [sym_comment] = ACTIONS(3), }, - [4404] = { - [anon_sym_DASH] = ACTIONS(7902), - [sym_raw_string_literal] = ACTIONS(7904), - [sym_true] = ACTIONS(7902), - [anon_sym_mutable] = ACTIONS(7902), - [sym_null] = ACTIONS(7902), - [anon_sym_break] = ACTIONS(7902), - [aux_sym_preproc_if_token2] = ACTIONS(7902), - [anon_sym_BANG] = ACTIONS(7904), - [anon_sym_sizeof] = ACTIONS(7902), - [anon_sym_volatile] = ACTIONS(7902), - [anon_sym_PLUS] = ACTIONS(7902), - [anon_sym_typedef] = ACTIONS(7902), - [anon_sym_switch] = ACTIONS(7902), - [anon_sym_explicit] = ACTIONS(7902), - [sym_identifier] = ACTIONS(7902), - [anon_sym_delete] = ACTIONS(7902), - [anon_sym_continue] = ACTIONS(7902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7902), - [anon_sym__Atomic] = ACTIONS(7902), - [sym_number_literal] = ACTIONS(7904), - [anon_sym_extern] = ACTIONS(7902), - [anon_sym_enum] = ACTIONS(7902), - [anon_sym_constexpr] = ACTIONS(7902), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7904), - [anon_sym_namespace] = ACTIONS(7902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7902), - [anon_sym_SQUOTE] = ACTIONS(7904), - [anon_sym_LBRACE] = ACTIONS(7904), - [anon_sym_DASH_DASH] = ACTIONS(7904), - [anon_sym_LPAREN2] = ACTIONS(7904), - [anon_sym_struct] = ACTIONS(7902), - [sym_auto] = ACTIONS(7902), - [anon_sym_signed] = ACTIONS(7902), - [anon_sym_long] = ACTIONS(7902), - [anon_sym_COLON_COLON] = ACTIONS(7904), - [anon_sym_using] = ACTIONS(7902), - [sym_preproc_directive] = ACTIONS(7902), - [aux_sym_preproc_if_token1] = ACTIONS(7902), - [anon_sym_AMP] = ACTIONS(7902), - [anon_sym_static] = ACTIONS(7902), - [anon_sym_STAR] = ACTIONS(7904), - [anon_sym_union] = ACTIONS(7902), - [anon_sym_typename] = ACTIONS(7902), - [anon_sym_short] = ACTIONS(7902), - [anon_sym_new] = ACTIONS(7902), - [anon_sym_goto] = ACTIONS(7902), - [sym_operator_name] = ACTIONS(7904), - [anon_sym_while] = ACTIONS(7902), - [anon_sym_try] = ACTIONS(7902), - [anon_sym_for] = ACTIONS(7902), - [aux_sym_preproc_include_token1] = ACTIONS(7902), - [anon_sym_register] = ACTIONS(7902), - [anon_sym_DQUOTE] = ACTIONS(7904), - [anon_sym_const] = ACTIONS(7902), - [anon_sym_LBRACK] = ACTIONS(7902), - [anon_sym_class] = ACTIONS(7902), - [anon_sym_if] = ACTIONS(7902), - [sym_primitive_type] = ACTIONS(7902), - [sym_false] = ACTIONS(7902), - [sym_nullptr] = ACTIONS(7902), - [anon_sym_do] = ACTIONS(7902), - [anon_sym_template] = ACTIONS(7902), - [anon_sym_return] = ACTIONS(7902), - [anon_sym_TILDE] = ACTIONS(7904), - [anon_sym_SEMI] = ACTIONS(7904), - [aux_sym_preproc_def_token1] = ACTIONS(7902), - [anon_sym_AMP_AMP] = ACTIONS(7904), - [anon_sym_inline] = ACTIONS(7902), - [anon_sym_PLUS_PLUS] = ACTIONS(7904), - [anon_sym_restrict] = ACTIONS(7902), - }, - [4405] = { - [anon_sym_DASH] = ACTIONS(8197), - [sym_raw_string_literal] = ACTIONS(8199), - [sym_true] = ACTIONS(8197), - [anon_sym_mutable] = ACTIONS(8197), - [sym_null] = ACTIONS(8197), - [anon_sym_break] = ACTIONS(8197), - [aux_sym_preproc_if_token2] = ACTIONS(8197), - [anon_sym_BANG] = ACTIONS(8199), - [anon_sym_sizeof] = ACTIONS(8197), - [anon_sym_volatile] = ACTIONS(8197), - [anon_sym_PLUS] = ACTIONS(8197), - [anon_sym_typedef] = ACTIONS(8197), - [anon_sym_switch] = ACTIONS(8197), - [anon_sym_explicit] = ACTIONS(8197), - [sym_identifier] = ACTIONS(8197), - [anon_sym_delete] = ACTIONS(8197), - [anon_sym_continue] = ACTIONS(8197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8197), - [anon_sym__Atomic] = ACTIONS(8197), - [sym_number_literal] = ACTIONS(8199), - [anon_sym_extern] = ACTIONS(8197), - [anon_sym_enum] = ACTIONS(8197), - [anon_sym_constexpr] = ACTIONS(8197), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8199), - [anon_sym_namespace] = ACTIONS(8197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8197), - [anon_sym_SQUOTE] = ACTIONS(8199), - [anon_sym_LBRACE] = ACTIONS(8199), - [anon_sym_DASH_DASH] = ACTIONS(8199), - [anon_sym_LPAREN2] = ACTIONS(8199), - [anon_sym_struct] = ACTIONS(8197), - [sym_auto] = ACTIONS(8197), - [anon_sym_signed] = ACTIONS(8197), - [anon_sym_long] = ACTIONS(8197), - [anon_sym_COLON_COLON] = ACTIONS(8199), - [anon_sym_using] = ACTIONS(8197), - [sym_preproc_directive] = ACTIONS(8197), - [aux_sym_preproc_if_token1] = ACTIONS(8197), - [anon_sym_AMP] = ACTIONS(8197), - [anon_sym_static] = ACTIONS(8197), - [anon_sym_STAR] = ACTIONS(8199), - [anon_sym_union] = ACTIONS(8197), - [anon_sym_typename] = ACTIONS(8197), - [anon_sym_short] = ACTIONS(8197), - [anon_sym_new] = ACTIONS(8197), - [anon_sym_goto] = ACTIONS(8197), - [sym_operator_name] = ACTIONS(8199), - [anon_sym_while] = ACTIONS(8197), - [anon_sym_try] = ACTIONS(8197), - [anon_sym_for] = ACTIONS(8197), - [aux_sym_preproc_include_token1] = ACTIONS(8197), - [anon_sym_register] = ACTIONS(8197), - [anon_sym_DQUOTE] = ACTIONS(8199), - [anon_sym_const] = ACTIONS(8197), - [anon_sym_LBRACK] = ACTIONS(8197), - [anon_sym_class] = ACTIONS(8197), - [anon_sym_if] = ACTIONS(8197), - [sym_primitive_type] = ACTIONS(8197), - [sym_false] = ACTIONS(8197), - [sym_nullptr] = ACTIONS(8197), - [anon_sym_do] = ACTIONS(8197), - [anon_sym_template] = ACTIONS(8197), - [anon_sym_return] = ACTIONS(8197), - [anon_sym_TILDE] = ACTIONS(8199), - [anon_sym_SEMI] = ACTIONS(8199), - [aux_sym_preproc_def_token1] = ACTIONS(8197), - [anon_sym_AMP_AMP] = ACTIONS(8199), - [anon_sym_inline] = ACTIONS(8197), - [anon_sym_PLUS_PLUS] = ACTIONS(8199), - [anon_sym_restrict] = ACTIONS(8197), + [4376] = { + [anon_sym_DASH] = ACTIONS(7883), + [sym_raw_string_literal] = ACTIONS(7885), + [sym_true] = ACTIONS(7883), + [anon_sym_mutable] = ACTIONS(7883), + [sym_null] = ACTIONS(7883), + [anon_sym_break] = ACTIONS(7883), + [aux_sym_preproc_if_token2] = ACTIONS(7883), + [anon_sym_BANG] = ACTIONS(7885), + [anon_sym_sizeof] = ACTIONS(7883), + [anon_sym_volatile] = ACTIONS(7883), + [anon_sym_PLUS] = ACTIONS(7883), + [anon_sym_typedef] = ACTIONS(7883), + [anon_sym_switch] = ACTIONS(7883), + [anon_sym_explicit] = ACTIONS(7883), + [sym_identifier] = ACTIONS(7883), + [anon_sym_delete] = ACTIONS(7883), + [anon_sym_continue] = ACTIONS(7883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7883), + [anon_sym__Atomic] = ACTIONS(7883), + [sym_number_literal] = ACTIONS(7885), + [anon_sym_extern] = ACTIONS(7883), + [anon_sym_enum] = ACTIONS(7883), + [anon_sym_constexpr] = ACTIONS(7883), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7885), + [anon_sym_namespace] = ACTIONS(7883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7883), + [anon_sym_SQUOTE] = ACTIONS(7885), + [anon_sym_LBRACE] = ACTIONS(7885), + [anon_sym_DASH_DASH] = ACTIONS(7885), + [anon_sym_LPAREN2] = ACTIONS(7885), + [anon_sym_struct] = ACTIONS(7883), + [sym_auto] = ACTIONS(7883), + [anon_sym_signed] = ACTIONS(7883), + [anon_sym_long] = ACTIONS(7883), + [anon_sym_COLON_COLON] = ACTIONS(7885), + [anon_sym_using] = ACTIONS(7883), + [sym_preproc_directive] = ACTIONS(7883), + [aux_sym_preproc_if_token1] = ACTIONS(7883), + [anon_sym_AMP] = ACTIONS(7883), + [anon_sym_static] = ACTIONS(7883), + [anon_sym_STAR] = ACTIONS(7885), + [anon_sym_union] = ACTIONS(7883), + [anon_sym_typename] = ACTIONS(7883), + [anon_sym_short] = ACTIONS(7883), + [anon_sym_new] = ACTIONS(7883), + [anon_sym_goto] = ACTIONS(7883), + [sym_operator_name] = ACTIONS(7885), + [anon_sym_while] = ACTIONS(7883), + [anon_sym_try] = ACTIONS(7883), + [anon_sym_for] = ACTIONS(7883), + [aux_sym_preproc_include_token1] = ACTIONS(7883), + [anon_sym_register] = ACTIONS(7883), + [anon_sym_DQUOTE] = ACTIONS(7885), + [anon_sym_const] = ACTIONS(7883), + [anon_sym_LBRACK] = ACTIONS(7883), + [anon_sym_class] = ACTIONS(7883), + [anon_sym_if] = ACTIONS(7883), + [sym_primitive_type] = ACTIONS(7883), + [sym_false] = ACTIONS(7883), + [sym_nullptr] = ACTIONS(7883), + [anon_sym_do] = ACTIONS(7883), + [anon_sym_template] = ACTIONS(7883), + [anon_sym_return] = ACTIONS(7883), + [anon_sym_TILDE] = ACTIONS(7885), + [anon_sym_SEMI] = ACTIONS(7885), + [aux_sym_preproc_def_token1] = ACTIONS(7883), + [anon_sym_AMP_AMP] = ACTIONS(7885), + [anon_sym_inline] = ACTIONS(7883), + [anon_sym_PLUS_PLUS] = ACTIONS(7885), + [anon_sym_restrict] = ACTIONS(7883), }, - [4406] = { - [anon_sym_DASH] = ACTIONS(8307), - [sym_raw_string_literal] = ACTIONS(8309), - [sym_true] = ACTIONS(8307), - [anon_sym_mutable] = ACTIONS(8307), - [sym_null] = ACTIONS(8307), - [anon_sym_break] = ACTIONS(8307), - [aux_sym_preproc_if_token2] = ACTIONS(8307), - [anon_sym_BANG] = ACTIONS(8309), - [anon_sym_sizeof] = ACTIONS(8307), - [anon_sym_volatile] = ACTIONS(8307), - [anon_sym_PLUS] = ACTIONS(8307), - [anon_sym_typedef] = ACTIONS(8307), - [anon_sym_switch] = ACTIONS(8307), - [anon_sym_explicit] = ACTIONS(8307), - [sym_identifier] = ACTIONS(8307), - [anon_sym_delete] = ACTIONS(8307), - [anon_sym_continue] = ACTIONS(8307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8307), - [anon_sym__Atomic] = ACTIONS(8307), - [sym_number_literal] = ACTIONS(8309), - [anon_sym_extern] = ACTIONS(8307), - [anon_sym_enum] = ACTIONS(8307), - [anon_sym_constexpr] = ACTIONS(8307), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8309), - [anon_sym_namespace] = ACTIONS(8307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8307), - [anon_sym_SQUOTE] = ACTIONS(8309), - [anon_sym_LBRACE] = ACTIONS(8309), - [anon_sym_DASH_DASH] = ACTIONS(8309), - [anon_sym_LPAREN2] = ACTIONS(8309), - [anon_sym_struct] = ACTIONS(8307), - [sym_auto] = ACTIONS(8307), - [anon_sym_signed] = ACTIONS(8307), - [anon_sym_long] = ACTIONS(8307), - [anon_sym_COLON_COLON] = ACTIONS(8309), - [anon_sym_using] = ACTIONS(8307), - [sym_preproc_directive] = ACTIONS(8307), - [aux_sym_preproc_if_token1] = ACTIONS(8307), - [anon_sym_AMP] = ACTIONS(8307), - [anon_sym_static] = ACTIONS(8307), - [anon_sym_STAR] = ACTIONS(8309), - [anon_sym_union] = ACTIONS(8307), - [anon_sym_typename] = ACTIONS(8307), - [anon_sym_short] = ACTIONS(8307), - [anon_sym_new] = ACTIONS(8307), - [anon_sym_goto] = ACTIONS(8307), - [sym_operator_name] = ACTIONS(8309), - [anon_sym_while] = ACTIONS(8307), - [anon_sym_try] = ACTIONS(8307), - [anon_sym_for] = ACTIONS(8307), - [aux_sym_preproc_include_token1] = ACTIONS(8307), - [anon_sym_register] = ACTIONS(8307), - [anon_sym_DQUOTE] = ACTIONS(8309), - [anon_sym_const] = ACTIONS(8307), - [anon_sym_LBRACK] = ACTIONS(8307), - [anon_sym_class] = ACTIONS(8307), - [anon_sym_if] = ACTIONS(8307), - [sym_primitive_type] = ACTIONS(8307), - [sym_false] = ACTIONS(8307), - [sym_nullptr] = ACTIONS(8307), - [anon_sym_do] = ACTIONS(8307), - [anon_sym_template] = ACTIONS(8307), - [anon_sym_return] = ACTIONS(8307), - [anon_sym_TILDE] = ACTIONS(8309), - [anon_sym_SEMI] = ACTIONS(8309), - [aux_sym_preproc_def_token1] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_inline] = ACTIONS(8307), - [anon_sym_PLUS_PLUS] = ACTIONS(8309), - [anon_sym_restrict] = ACTIONS(8307), + [4377] = { + [anon_sym_DASH] = ACTIONS(7887), + [sym_raw_string_literal] = ACTIONS(7889), + [sym_true] = ACTIONS(7887), + [anon_sym_mutable] = ACTIONS(7887), + [sym_null] = ACTIONS(7887), + [anon_sym_break] = ACTIONS(7887), + [aux_sym_preproc_if_token2] = ACTIONS(7887), + [anon_sym_BANG] = ACTIONS(7889), + [anon_sym_sizeof] = ACTIONS(7887), + [anon_sym_volatile] = ACTIONS(7887), + [anon_sym_PLUS] = ACTIONS(7887), + [anon_sym_typedef] = ACTIONS(7887), + [anon_sym_switch] = ACTIONS(7887), + [anon_sym_explicit] = ACTIONS(7887), + [sym_identifier] = ACTIONS(7887), + [anon_sym_delete] = ACTIONS(7887), + [anon_sym_continue] = ACTIONS(7887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7887), + [anon_sym__Atomic] = ACTIONS(7887), + [sym_number_literal] = ACTIONS(7889), + [anon_sym_extern] = ACTIONS(7887), + [anon_sym_enum] = ACTIONS(7887), + [anon_sym_constexpr] = ACTIONS(7887), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7887), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7889), + [anon_sym_namespace] = ACTIONS(7887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7887), + [anon_sym_SQUOTE] = ACTIONS(7889), + [anon_sym_LBRACE] = ACTIONS(7889), + [anon_sym_DASH_DASH] = ACTIONS(7889), + [anon_sym_LPAREN2] = ACTIONS(7889), + [anon_sym_struct] = ACTIONS(7887), + [sym_auto] = ACTIONS(7887), + [anon_sym_signed] = ACTIONS(7887), + [anon_sym_long] = ACTIONS(7887), + [anon_sym_COLON_COLON] = ACTIONS(7889), + [anon_sym_using] = ACTIONS(7887), + [sym_preproc_directive] = ACTIONS(7887), + [aux_sym_preproc_if_token1] = ACTIONS(7887), + [anon_sym_AMP] = ACTIONS(7887), + [anon_sym_static] = ACTIONS(7887), + [anon_sym_STAR] = ACTIONS(7889), + [anon_sym_union] = ACTIONS(7887), + [anon_sym_typename] = ACTIONS(7887), + [anon_sym_short] = ACTIONS(7887), + [anon_sym_new] = ACTIONS(7887), + [anon_sym_goto] = ACTIONS(7887), + [sym_operator_name] = ACTIONS(7889), + [anon_sym_while] = ACTIONS(7887), + [anon_sym_try] = ACTIONS(7887), + [anon_sym_for] = ACTIONS(7887), + [aux_sym_preproc_include_token1] = ACTIONS(7887), + [anon_sym_register] = ACTIONS(7887), + [anon_sym_DQUOTE] = ACTIONS(7889), + [anon_sym_const] = ACTIONS(7887), + [anon_sym_LBRACK] = ACTIONS(7887), + [anon_sym_class] = ACTIONS(7887), + [anon_sym_if] = ACTIONS(7887), + [sym_primitive_type] = ACTIONS(7887), + [sym_false] = ACTIONS(7887), + [sym_nullptr] = ACTIONS(7887), + [anon_sym_do] = ACTIONS(7887), + [anon_sym_template] = ACTIONS(7887), + [anon_sym_return] = ACTIONS(7887), + [anon_sym_TILDE] = ACTIONS(7889), + [anon_sym_SEMI] = ACTIONS(7889), + [aux_sym_preproc_def_token1] = ACTIONS(7887), + [anon_sym_AMP_AMP] = ACTIONS(7889), + [anon_sym_inline] = ACTIONS(7887), + [anon_sym_PLUS_PLUS] = ACTIONS(7889), + [anon_sym_restrict] = ACTIONS(7887), }, - [4407] = { - [anon_sym_DASH] = ACTIONS(8908), - [sym_raw_string_literal] = ACTIONS(8910), - [anon_sym_else] = ACTIONS(8908), - [sym_true] = ACTIONS(8908), - [anon_sym_mutable] = ACTIONS(8908), - [sym_null] = ACTIONS(8908), - [anon_sym_break] = ACTIONS(8908), - [aux_sym_preproc_if_token2] = ACTIONS(8908), - [anon_sym_BANG] = ACTIONS(8910), - [anon_sym_sizeof] = ACTIONS(8908), - [anon_sym_volatile] = ACTIONS(8908), - [anon_sym_PLUS] = ACTIONS(8908), - [anon_sym_typedef] = ACTIONS(8908), - [anon_sym_switch] = ACTIONS(8908), - [anon_sym_explicit] = ACTIONS(8908), - [sym_identifier] = ACTIONS(8908), - [anon_sym_delete] = ACTIONS(8908), - [anon_sym_continue] = ACTIONS(8908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8908), - [anon_sym__Atomic] = ACTIONS(8908), - [sym_number_literal] = ACTIONS(8910), - [anon_sym_extern] = ACTIONS(8908), - [anon_sym_enum] = ACTIONS(8908), - [anon_sym_constexpr] = ACTIONS(8908), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8910), - [anon_sym_namespace] = ACTIONS(8908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8908), - [aux_sym_preproc_elif_token1] = ACTIONS(8908), - [anon_sym_SQUOTE] = ACTIONS(8910), - [anon_sym_LBRACE] = ACTIONS(8910), - [anon_sym_DASH_DASH] = ACTIONS(8910), - [anon_sym_LPAREN2] = ACTIONS(8910), - [anon_sym_struct] = ACTIONS(8908), - [sym_auto] = ACTIONS(8908), - [anon_sym_signed] = ACTIONS(8908), - [anon_sym_long] = ACTIONS(8908), - [anon_sym_COLON_COLON] = ACTIONS(8910), - [anon_sym_using] = ACTIONS(8908), - [aux_sym_preproc_else_token1] = ACTIONS(8908), - [sym_preproc_directive] = ACTIONS(8908), - [aux_sym_preproc_if_token1] = ACTIONS(8908), - [anon_sym_AMP] = ACTIONS(8908), - [anon_sym_static] = ACTIONS(8908), - [anon_sym_STAR] = ACTIONS(8910), - [anon_sym_union] = ACTIONS(8908), - [anon_sym_typename] = ACTIONS(8908), - [anon_sym_short] = ACTIONS(8908), - [anon_sym_new] = ACTIONS(8908), - [anon_sym_goto] = ACTIONS(8908), - [sym_operator_name] = ACTIONS(8910), - [anon_sym_while] = ACTIONS(8908), - [anon_sym_try] = ACTIONS(8908), - [anon_sym_for] = ACTIONS(8908), - [aux_sym_preproc_include_token1] = ACTIONS(8908), - [anon_sym_register] = ACTIONS(8908), - [anon_sym_DQUOTE] = ACTIONS(8910), - [anon_sym_const] = ACTIONS(8908), - [anon_sym_LBRACK] = ACTIONS(8908), - [anon_sym_class] = ACTIONS(8908), - [anon_sym_if] = ACTIONS(8908), - [sym_primitive_type] = ACTIONS(8908), - [sym_false] = ACTIONS(8908), - [sym_nullptr] = ACTIONS(8908), - [anon_sym_do] = ACTIONS(8908), - [anon_sym_template] = ACTIONS(8908), - [anon_sym_return] = ACTIONS(8908), - [anon_sym_TILDE] = ACTIONS(8910), - [anon_sym_SEMI] = ACTIONS(8910), - [aux_sym_preproc_def_token1] = ACTIONS(8908), - [anon_sym_AMP_AMP] = ACTIONS(8910), - [anon_sym_inline] = ACTIONS(8908), - [anon_sym_PLUS_PLUS] = ACTIONS(8910), - [anon_sym_restrict] = ACTIONS(8908), + [4378] = { + [anon_sym_DASH] = ACTIONS(8872), + [sym_raw_string_literal] = ACTIONS(8874), + [anon_sym_else] = ACTIONS(8872), + [sym_true] = ACTIONS(8872), + [anon_sym_mutable] = ACTIONS(8872), + [sym_null] = ACTIONS(8872), + [anon_sym_break] = ACTIONS(8872), + [aux_sym_preproc_if_token2] = ACTIONS(8872), + [anon_sym_BANG] = ACTIONS(8874), + [anon_sym_sizeof] = ACTIONS(8872), + [anon_sym_volatile] = ACTIONS(8872), + [anon_sym_PLUS] = ACTIONS(8872), + [anon_sym_typedef] = ACTIONS(8872), + [anon_sym_switch] = ACTIONS(8872), + [anon_sym_explicit] = ACTIONS(8872), + [sym_identifier] = ACTIONS(8872), + [anon_sym_delete] = ACTIONS(8872), + [anon_sym_continue] = ACTIONS(8872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8872), + [anon_sym__Atomic] = ACTIONS(8872), + [sym_number_literal] = ACTIONS(8874), + [anon_sym_extern] = ACTIONS(8872), + [anon_sym_enum] = ACTIONS(8872), + [anon_sym_constexpr] = ACTIONS(8872), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8872), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8874), + [anon_sym_namespace] = ACTIONS(8872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8872), + [aux_sym_preproc_elif_token1] = ACTIONS(8872), + [anon_sym_SQUOTE] = ACTIONS(8874), + [anon_sym_LBRACE] = ACTIONS(8874), + [anon_sym_DASH_DASH] = ACTIONS(8874), + [anon_sym_LPAREN2] = ACTIONS(8874), + [anon_sym_struct] = ACTIONS(8872), + [sym_auto] = ACTIONS(8872), + [anon_sym_signed] = ACTIONS(8872), + [anon_sym_long] = ACTIONS(8872), + [anon_sym_COLON_COLON] = ACTIONS(8874), + [anon_sym_using] = ACTIONS(8872), + [aux_sym_preproc_else_token1] = ACTIONS(8872), + [sym_preproc_directive] = ACTIONS(8872), + [aux_sym_preproc_if_token1] = ACTIONS(8872), + [anon_sym_AMP] = ACTIONS(8872), + [anon_sym_static] = ACTIONS(8872), + [anon_sym_STAR] = ACTIONS(8874), + [anon_sym_union] = ACTIONS(8872), + [anon_sym_typename] = ACTIONS(8872), + [anon_sym_short] = ACTIONS(8872), + [anon_sym_new] = ACTIONS(8872), + [anon_sym_goto] = ACTIONS(8872), + [sym_operator_name] = ACTIONS(8874), + [anon_sym_while] = ACTIONS(8872), + [anon_sym_try] = ACTIONS(8872), + [anon_sym_for] = ACTIONS(8872), + [aux_sym_preproc_include_token1] = ACTIONS(8872), + [anon_sym_register] = ACTIONS(8872), + [anon_sym_DQUOTE] = ACTIONS(8874), + [anon_sym_const] = ACTIONS(8872), + [anon_sym_LBRACK] = ACTIONS(8872), + [anon_sym_class] = ACTIONS(8872), + [anon_sym_if] = ACTIONS(8872), + [sym_primitive_type] = ACTIONS(8872), + [sym_false] = ACTIONS(8872), + [sym_nullptr] = ACTIONS(8872), + [anon_sym_do] = ACTIONS(8872), + [anon_sym_template] = ACTIONS(8872), + [anon_sym_return] = ACTIONS(8872), + [anon_sym_TILDE] = ACTIONS(8874), + [anon_sym_SEMI] = ACTIONS(8874), + [aux_sym_preproc_def_token1] = ACTIONS(8872), + [anon_sym_AMP_AMP] = ACTIONS(8874), + [anon_sym_inline] = ACTIONS(8872), + [anon_sym_PLUS_PLUS] = ACTIONS(8874), + [anon_sym_restrict] = ACTIONS(8872), }, - [4408] = { - [sym_do_statement] = STATE(4671), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4379] = { + [sym_do_statement] = STATE(4642), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4671), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4671), - [sym_if_statement] = STATE(4671), - [sym_switch_statement] = STATE(4671), - [sym_for_statement] = STATE(4671), - [sym_return_statement] = STATE(4671), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4642), + [sym_try_statement] = STATE(4642), + [sym_if_statement] = STATE(4642), + [sym_switch_statement] = STATE(4642), + [sym_for_statement] = STATE(4642), + [sym_return_statement] = STATE(4642), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4671), - [sym_break_statement] = STATE(4671), - [sym_continue_statement] = STATE(4671), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4642), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4671), - [sym_labeled_statement] = STATE(4671), - [sym_expression_statement] = STATE(4671), - [sym_while_statement] = STATE(4671), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4642), + [sym_for_range_loop] = STATE(4642), + [sym_compound_statement] = STATE(4642), + [sym_labeled_statement] = STATE(4642), + [sym_expression_statement] = STATE(4642), + [sym_while_statement] = STATE(4642), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4409] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10111), + [4380] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10077), [sym_comment] = ACTIONS(3), }, - [4410] = { - [aux_sym_for_statement_repeat1] = STATE(4673), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10111), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4381] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4644), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10077), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4411] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4674), - [sym_logical_expression] = STATE(4674), - [sym_bitwise_expression] = STATE(4674), - [sym_cast_expression] = STATE(4674), - [sym_new_expression] = STATE(4674), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4674), - [sym_char_literal] = STATE(4674), - [sym_template_function] = STATE(4674), - [sym_conditional_expression] = STATE(4674), - [sym_equality_expression] = STATE(4674), - [sym_relational_expression] = STATE(4674), - [sym_delete_expression] = STATE(4674), - [sym_sizeof_expression] = STATE(4674), - [sym_parenthesized_expression] = STATE(4674), - [sym_lambda_expression] = STATE(4674), - [sym_concatenated_string] = STATE(4674), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4674), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4674), - [sym_math_expression] = STATE(4674), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10113), + [4382] = { + [sym_template_function] = STATE(4645), + [sym__expression] = STATE(4645), + [sym_logical_expression] = STATE(4645), + [sym_bitwise_expression] = STATE(4645), + [sym_cast_expression] = STATE(4645), + [sym_delete_expression] = STATE(4645), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4645), + [sym_lambda_expression] = STATE(4645), + [sym_char_literal] = STATE(4645), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4645), + [sym_equality_expression] = STATE(4645), + [sym_relational_expression] = STATE(4645), + [sym_sizeof_expression] = STATE(4645), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4645), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4645), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4645), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4645), + [sym_math_expression] = STATE(4645), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4645), + [sym_raw_string_literal] = ACTIONS(10079), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10115), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10115), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10081), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10081), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10113), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10079), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10115), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10115), + [sym_false] = ACTIONS(10081), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10081), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10111), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10077), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4412] = { - [sym_do_statement] = STATE(4675), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4383] = { + [sym_do_statement] = STATE(4646), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4675), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4675), - [sym_if_statement] = STATE(4675), - [sym_switch_statement] = STATE(4675), - [sym_for_statement] = STATE(4675), - [sym_return_statement] = STATE(4675), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4646), + [sym_try_statement] = STATE(4646), + [sym_if_statement] = STATE(4646), + [sym_switch_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_return_statement] = STATE(4646), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4675), - [sym_break_statement] = STATE(4675), - [sym_continue_statement] = STATE(4675), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4646), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4675), - [sym_labeled_statement] = STATE(4675), - [sym_expression_statement] = STATE(4675), - [sym_while_statement] = STATE(4675), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4646), + [sym_for_range_loop] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_labeled_statement] = STATE(4646), + [sym_expression_statement] = STATE(4646), + [sym_while_statement] = STATE(4646), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4413] = { - [sym_do_statement] = STATE(2278), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4384] = { + [sym_do_statement] = STATE(2267), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(2278), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(2278), - [sym_if_statement] = STATE(2278), - [sym_switch_statement] = STATE(2278), - [sym_for_statement] = STATE(2278), - [sym_return_statement] = STATE(2278), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2267), + [sym_try_statement] = STATE(2267), + [sym_if_statement] = STATE(2267), + [sym_switch_statement] = STATE(2267), + [sym_for_statement] = STATE(2267), + [sym_return_statement] = STATE(2267), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(2278), - [sym_break_statement] = STATE(2278), - [sym_continue_statement] = STATE(2278), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2267), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2278), - [sym_labeled_statement] = STATE(2278), - [sym_expression_statement] = STATE(2278), - [sym_while_statement] = STATE(2278), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(2267), + [sym_for_range_loop] = STATE(2267), + [sym_compound_statement] = STATE(2267), + [sym_labeled_statement] = STATE(2267), + [sym_expression_statement] = STATE(2267), + [sym_while_statement] = STATE(2267), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4414] = { - [sym_do_statement] = STATE(2345), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4385] = { + [sym_do_statement] = STATE(2333), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(2345), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(2345), - [sym_if_statement] = STATE(2345), - [sym_switch_statement] = STATE(2345), - [sym_for_statement] = STATE(2345), - [sym_return_statement] = STATE(2345), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2333), + [sym_try_statement] = STATE(2333), + [sym_if_statement] = STATE(2333), + [sym_switch_statement] = STATE(2333), + [sym_for_statement] = STATE(2333), + [sym_return_statement] = STATE(2333), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(2345), - [sym_break_statement] = STATE(2345), - [sym_continue_statement] = STATE(2345), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2333), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2345), - [sym_labeled_statement] = STATE(2345), - [sym_expression_statement] = STATE(2345), - [sym_while_statement] = STATE(2345), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(2333), + [sym_for_range_loop] = STATE(2333), + [sym_compound_statement] = STATE(2333), + [sym_labeled_statement] = STATE(2333), + [sym_expression_statement] = STATE(2333), + [sym_while_statement] = STATE(2333), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4415] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(4677), - [sym_logical_expression] = STATE(4677), - [sym_bitwise_expression] = STATE(4677), - [sym_cast_expression] = STATE(4677), - [sym_new_expression] = STATE(4677), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4677), - [sym_declaration] = STATE(4676), - [sym_char_literal] = STATE(4677), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(4677), - [sym_conditional_expression] = STATE(4677), - [sym_equality_expression] = STATE(4677), - [sym_relational_expression] = STATE(4677), - [sym_sizeof_expression] = STATE(4677), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(4677), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(4677), - [sym_lambda_expression] = STATE(4677), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(4678), - [sym_assignment_expression] = STATE(4677), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4677), - [sym_math_expression] = STATE(4677), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [4386] = { + [sym_template_function] = STATE(4648), + [sym__expression] = STATE(4648), + [sym_logical_expression] = STATE(4648), + [sym_bitwise_expression] = STATE(4648), + [sym_cast_expression] = STATE(4648), + [sym_delete_expression] = STATE(4648), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(4648), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(4648), + [sym_lambda_expression] = STATE(4648), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(4647), + [sym_for_range_declaration] = STATE(4649), + [sym_conditional_expression] = STATE(4648), + [sym_equality_expression] = STATE(4648), + [sym_relational_expression] = STATE(4648), + [sym_sizeof_expression] = STATE(4648), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(4648), + [sym_concatenated_string] = STATE(4648), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(10117), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(4648), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4648), + [sym_math_expression] = STATE(4648), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4648), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(10083), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(10119), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(10085), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(10119), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(10085), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(10117), + [sym_number_literal] = ACTIONS(10083), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(10119), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(10085), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(10119), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(10085), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10121), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10087), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4416] = { - [aux_sym_try_statement_repeat1] = STATE(4679), - [sym_catch_clause] = STATE(4679), - [anon_sym_catch] = ACTIONS(4615), + [4387] = { + [sym_catch_clause] = STATE(4650), + [aux_sym_try_statement_repeat1] = STATE(4650), + [anon_sym_catch] = ACTIONS(4613), [sym_comment] = ACTIONS(3), }, - [4417] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4680), - [sym_logical_expression] = STATE(4680), - [sym_bitwise_expression] = STATE(4680), - [sym_cast_expression] = STATE(4680), - [sym_new_expression] = STATE(4680), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4680), - [sym_char_literal] = STATE(4680), - [sym_template_function] = STATE(4680), - [sym_conditional_expression] = STATE(4680), - [sym_equality_expression] = STATE(4680), - [sym_relational_expression] = STATE(4680), - [sym_delete_expression] = STATE(4680), - [sym_sizeof_expression] = STATE(4680), - [sym_parenthesized_expression] = STATE(4680), - [sym_lambda_expression] = STATE(4680), - [sym_concatenated_string] = STATE(4680), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4680), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4680), - [sym_math_expression] = STATE(4680), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10123), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10125), - [sym_null] = ACTIONS(10125), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10123), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10125), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10125), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4388] = { + [sym_template_function] = STATE(4651), + [sym__expression] = STATE(4651), + [sym_logical_expression] = STATE(4651), + [sym_bitwise_expression] = STATE(4651), + [sym_cast_expression] = STATE(4651), + [sym_delete_expression] = STATE(4651), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4651), + [sym_lambda_expression] = STATE(4651), + [sym_char_literal] = STATE(4651), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4651), + [sym_equality_expression] = STATE(4651), + [sym_relational_expression] = STATE(4651), + [sym_sizeof_expression] = STATE(4651), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4651), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4651), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4651), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4651), + [sym_math_expression] = STATE(4651), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4651), + [sym_raw_string_literal] = ACTIONS(10089), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10091), + [sym_null] = ACTIONS(10091), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10089), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10091), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10091), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4418] = { - [anon_sym_LPAREN2] = ACTIONS(10127), + [4389] = { + [anon_sym_LPAREN2] = ACTIONS(10093), [sym_comment] = ACTIONS(3), }, - [4419] = { - [sym_do_statement] = STATE(4682), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4390] = { + [sym_do_statement] = STATE(4653), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4682), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4682), - [sym_if_statement] = STATE(4682), - [sym_switch_statement] = STATE(4682), - [sym_for_statement] = STATE(4682), - [sym_return_statement] = STATE(4682), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4653), + [sym_try_statement] = STATE(4653), + [sym_if_statement] = STATE(4653), + [sym_switch_statement] = STATE(4653), + [sym_for_statement] = STATE(4653), + [sym_return_statement] = STATE(4653), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4682), - [sym_break_statement] = STATE(4682), - [sym_continue_statement] = STATE(4682), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4653), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4682), - [sym_labeled_statement] = STATE(4682), - [sym_expression_statement] = STATE(4682), - [sym_while_statement] = STATE(4682), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4653), + [sym_for_range_loop] = STATE(4653), + [sym_compound_statement] = STATE(4653), + [sym_labeled_statement] = STATE(4653), + [sym_expression_statement] = STATE(4653), + [sym_while_statement] = STATE(4653), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4420] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(10129), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [aux_sym_preproc_if_token2] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_namespace] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9003), - [aux_sym_preproc_elif_token1] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_using] = ACTIONS(9003), - [aux_sym_preproc_else_token1] = ACTIONS(9003), - [sym_preproc_directive] = ACTIONS(9003), - [aux_sym_preproc_if_token1] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9003), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [sym_operator_name] = ACTIONS(9005), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [aux_sym_preproc_include_token1] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_template] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [aux_sym_preproc_def_token1] = ACTIONS(9003), - [anon_sym_AMP_AMP] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), + [4391] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(10095), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [aux_sym_preproc_if_token2] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_namespace] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8967), + [aux_sym_preproc_elif_token1] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_using] = ACTIONS(8967), + [aux_sym_preproc_else_token1] = ACTIONS(8967), + [sym_preproc_directive] = ACTIONS(8967), + [aux_sym_preproc_if_token1] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8967), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [sym_operator_name] = ACTIONS(8969), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [aux_sym_preproc_include_token1] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_template] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [aux_sym_preproc_def_token1] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), }, - [4421] = { - [anon_sym_DASH] = ACTIONS(2818), - [sym_raw_string_literal] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [aux_sym_preproc_if_token2] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2816), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2816), - [anon_sym_namespace] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [aux_sym_preproc_elif_token1] = ACTIONS(2818), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2818), - [sym_auto] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_using] = ACTIONS(2818), - [aux_sym_preproc_else_token1] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [sym_operator_name] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_nullptr] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_restrict] = ACTIONS(2818), + [4392] = { + [anon_sym_DASH] = ACTIONS(2820), + [sym_raw_string_literal] = ACTIONS(2818), + [anon_sym_else] = ACTIONS(2820), + [sym_true] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [sym_null] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_explicit] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym_namespace] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [aux_sym_preproc_elif_token1] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_struct] = ACTIONS(2820), + [sym_auto] = ACTIONS(2820), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_using] = ACTIONS(2820), + [aux_sym_preproc_else_token1] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [sym_operator_name] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [sym_nullptr] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_template] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_restrict] = ACTIONS(2820), }, - [4422] = { - [sym_do_statement] = STATE(4533), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4393] = { + [sym_do_statement] = STATE(4504), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4533), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4533), - [sym_if_statement] = STATE(4533), - [sym_switch_statement] = STATE(4533), - [sym_for_statement] = STATE(4533), - [sym_return_statement] = STATE(4533), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4504), + [sym_try_statement] = STATE(4504), + [sym_if_statement] = STATE(4504), + [sym_switch_statement] = STATE(4504), + [sym_for_statement] = STATE(4504), + [sym_return_statement] = STATE(4504), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4533), - [sym_break_statement] = STATE(4533), - [sym_continue_statement] = STATE(4533), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4504), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4533), - [sym_labeled_statement] = STATE(4533), - [sym_expression_statement] = STATE(4533), - [sym_while_statement] = STATE(4533), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4504), + [sym_for_range_loop] = STATE(4504), + [sym_compound_statement] = STATE(4504), + [sym_labeled_statement] = STATE(4504), + [sym_expression_statement] = STATE(4504), + [sym_while_statement] = STATE(4504), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -179535,7 +178908,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -179559,342 +178932,342 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4423] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10131), + [4394] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10097), [sym_comment] = ACTIONS(3), }, - [4424] = { - [aux_sym_for_statement_repeat1] = STATE(4685), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10131), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4395] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4656), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10097), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4425] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4687), - [sym_logical_expression] = STATE(4687), - [sym_bitwise_expression] = STATE(4687), - [sym_cast_expression] = STATE(4687), - [sym_new_expression] = STATE(4687), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4687), - [sym_char_literal] = STATE(4687), - [sym_template_function] = STATE(4687), - [sym_conditional_expression] = STATE(4687), - [sym_equality_expression] = STATE(4687), - [sym_relational_expression] = STATE(4687), - [sym_delete_expression] = STATE(4687), - [sym_sizeof_expression] = STATE(4687), - [sym_parenthesized_expression] = STATE(4687), - [sym_lambda_expression] = STATE(4687), - [sym_concatenated_string] = STATE(4687), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4687), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4687), - [sym_math_expression] = STATE(4687), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10133), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10135), - [sym_null] = ACTIONS(10135), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10133), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10135), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10135), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10137), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4396] = { + [sym_template_function] = STATE(4658), + [sym__expression] = STATE(4658), + [sym_logical_expression] = STATE(4658), + [sym_bitwise_expression] = STATE(4658), + [sym_cast_expression] = STATE(4658), + [sym_delete_expression] = STATE(4658), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4658), + [sym_lambda_expression] = STATE(4658), + [sym_char_literal] = STATE(4658), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4658), + [sym_equality_expression] = STATE(4658), + [sym_relational_expression] = STATE(4658), + [sym_sizeof_expression] = STATE(4658), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4658), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4658), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4658), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4658), + [sym_math_expression] = STATE(4658), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4658), + [sym_raw_string_literal] = ACTIONS(10099), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10101), + [sym_null] = ACTIONS(10101), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10099), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10101), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10101), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10103), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4426] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10139), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4397] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10105), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4427] = { - [anon_sym_COLON] = ACTIONS(10141), + [4398] = { + [anon_sym_COLON] = ACTIONS(10107), [sym_comment] = ACTIONS(3), }, - [4428] = { - [aux_sym_try_statement_repeat1] = STATE(4690), - [sym_catch_clause] = STATE(4690), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [sym_operator_name] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [4399] = { + [sym_catch_clause] = STATE(4661), + [aux_sym_try_statement_repeat1] = STATE(4661), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [sym_preproc_directive] = ACTIONS(3154), + [aux_sym_preproc_if_token1] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [sym_operator_name] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [aux_sym_preproc_include_token1] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_template] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, - [4429] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10143), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4400] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10109), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4430] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4692), - [sym_logical_expression] = STATE(4692), - [sym_bitwise_expression] = STATE(4692), - [sym_cast_expression] = STATE(4692), - [sym_new_expression] = STATE(4692), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4692), - [sym_char_literal] = STATE(4692), - [sym_template_function] = STATE(4692), - [sym_conditional_expression] = STATE(4692), - [sym_equality_expression] = STATE(4692), - [sym_relational_expression] = STATE(4692), - [sym_delete_expression] = STATE(4692), - [sym_sizeof_expression] = STATE(4692), - [sym_parenthesized_expression] = STATE(4692), - [sym_lambda_expression] = STATE(4692), - [sym_concatenated_string] = STATE(4692), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4692), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4692), - [sym_math_expression] = STATE(4692), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10145), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10147), - [sym_null] = ACTIONS(10147), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10145), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10147), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10147), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4401] = { + [sym_template_function] = STATE(4663), + [sym__expression] = STATE(4663), + [sym_logical_expression] = STATE(4663), + [sym_bitwise_expression] = STATE(4663), + [sym_cast_expression] = STATE(4663), + [sym_delete_expression] = STATE(4663), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4663), + [sym_lambda_expression] = STATE(4663), + [sym_char_literal] = STATE(4663), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4663), + [sym_equality_expression] = STATE(4663), + [sym_relational_expression] = STATE(4663), + [sym_sizeof_expression] = STATE(4663), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4663), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4663), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4663), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4663), + [sym_math_expression] = STATE(4663), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4663), + [sym_raw_string_literal] = ACTIONS(10111), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10113), + [sym_null] = ACTIONS(10113), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10111), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10113), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10113), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4431] = { - [sym_do_statement] = STATE(4557), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4402] = { + [sym_do_statement] = STATE(4528), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4557), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_switch_statement] = STATE(4557), - [sym_for_statement] = STATE(4557), - [sym_return_statement] = STATE(4557), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4528), + [sym_try_statement] = STATE(4528), + [sym_if_statement] = STATE(4528), + [sym_switch_statement] = STATE(4528), + [sym_for_statement] = STATE(4528), + [sym_return_statement] = STATE(4528), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4557), - [sym_break_statement] = STATE(4557), - [sym_continue_statement] = STATE(4557), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4528), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4557), - [sym_labeled_statement] = STATE(4557), - [sym_expression_statement] = STATE(4557), - [sym_while_statement] = STATE(4557), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4528), + [sym_for_range_loop] = STATE(4528), + [sym_compound_statement] = STATE(4528), + [sym_labeled_statement] = STATE(4528), + [sym_expression_statement] = STATE(4528), + [sym_while_statement] = STATE(4528), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -179908,7 +179281,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -179932,1242 +179305,1246 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4432] = { - [sym_type_qualifier] = STATE(4432), - [aux_sym_type_definition_repeat1] = STATE(4432), + [4403] = { + [aux_sym_type_definition_repeat1] = STATE(4403), + [sym_type_qualifier] = STATE(4403), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(4989), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_const] = ACTIONS(2103), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(4989), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), + [anon_sym_explicit] = ACTIONS(4989), [anon_sym_RPAREN] = ACTIONS(2106), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_DASH_GT] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(4989), }, - [4433] = { - [sym_parameter_list] = STATE(4028), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_RPAREN] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), + [4404] = { + [sym_parameter_list] = STATE(3998), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), }, - [4434] = { - [sym_type_qualifier] = STATE(4434), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4434), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(10149), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), + [4405] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4405), + [sym_type_qualifier] = STATE(4405), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(10115), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), }, - [4435] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4434), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4434), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(9632), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), + [4406] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4405), + [sym_type_qualifier] = STATE(4405), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(9598), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_DASH_GT] = ACTIONS(2824), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(2826), + [anon_sym_restrict] = ACTIONS(1070), }, - [4436] = { - [anon_sym_LPAREN2] = ACTIONS(5247), - [anon_sym_struct] = ACTIONS(5245), - [sym_auto] = ACTIONS(5245), - [anon_sym_signed] = ACTIONS(5245), - [anon_sym_mutable] = ACTIONS(5245), - [anon_sym_long] = ACTIONS(5245), - [anon_sym_COLON_COLON] = ACTIONS(5247), - [anon_sym_using] = ACTIONS(5245), - [aux_sym_preproc_else_token1] = ACTIONS(5245), - [aux_sym_preproc_if_token2] = ACTIONS(5245), - [sym_preproc_directive] = ACTIONS(5245), - [aux_sym_preproc_if_token1] = ACTIONS(5245), - [anon_sym_AMP] = ACTIONS(5245), - [anon_sym_static] = ACTIONS(5245), - [anon_sym_volatile] = ACTIONS(5245), - [anon_sym_typedef] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_union] = ACTIONS(5245), - [anon_sym_typename] = ACTIONS(5245), - [anon_sym_private] = ACTIONS(5245), - [anon_sym_explicit] = ACTIONS(5245), - [anon_sym_short] = ACTIONS(5245), - [sym_identifier] = ACTIONS(5245), - [sym_operator_name] = ACTIONS(5247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5245), - [anon_sym_register] = ACTIONS(5245), - [anon_sym__Atomic] = ACTIONS(5245), - [anon_sym_const] = ACTIONS(5245), - [anon_sym_extern] = ACTIONS(5245), - [anon_sym_virtual] = ACTIONS(5245), - [anon_sym_enum] = ACTIONS(5245), - [anon_sym_class] = ACTIONS(5245), - [anon_sym_constexpr] = ACTIONS(5245), - [sym_primitive_type] = ACTIONS(5245), - [anon_sym_unsigned] = ACTIONS(5245), - [anon_sym_public] = ACTIONS(5245), - [anon_sym_protected] = ACTIONS(5245), - [anon_sym_friend] = ACTIONS(5245), - [anon_sym_template] = ACTIONS(5245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5245), - [anon_sym_TILDE] = ACTIONS(5247), - [aux_sym_preproc_elif_token1] = ACTIONS(5245), - [aux_sym_preproc_def_token1] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5247), - [anon_sym_inline] = ACTIONS(5245), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5245), + [4407] = { + [anon_sym_LPAREN2] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(5244), + [sym_auto] = ACTIONS(5244), + [anon_sym_signed] = ACTIONS(5244), + [anon_sym_mutable] = ACTIONS(5244), + [anon_sym_long] = ACTIONS(5244), + [anon_sym_COLON_COLON] = ACTIONS(5246), + [anon_sym_using] = ACTIONS(5244), + [aux_sym_preproc_else_token1] = ACTIONS(5244), + [aux_sym_preproc_if_token2] = ACTIONS(5244), + [sym_preproc_directive] = ACTIONS(5244), + [aux_sym_preproc_if_token1] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_static] = ACTIONS(5244), + [anon_sym_volatile] = ACTIONS(5244), + [anon_sym_typedef] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_union] = ACTIONS(5244), + [anon_sym_typename] = ACTIONS(5244), + [anon_sym_private] = ACTIONS(5244), + [anon_sym_explicit] = ACTIONS(5244), + [anon_sym_short] = ACTIONS(5244), + [sym_identifier] = ACTIONS(5244), + [sym_operator_name] = ACTIONS(5246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5244), + [anon_sym_register] = ACTIONS(5244), + [anon_sym__Atomic] = ACTIONS(5244), + [anon_sym_const] = ACTIONS(5244), + [anon_sym_extern] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5244), + [anon_sym_virtual] = ACTIONS(5244), + [anon_sym_enum] = ACTIONS(5244), + [anon_sym_class] = ACTIONS(5244), + [anon_sym_constexpr] = ACTIONS(5244), + [sym_primitive_type] = ACTIONS(5244), + [anon_sym_unsigned] = ACTIONS(5244), + [anon_sym_public] = ACTIONS(5244), + [anon_sym_protected] = ACTIONS(5244), + [anon_sym_friend] = ACTIONS(5244), + [anon_sym_template] = ACTIONS(5244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5246), + [aux_sym_preproc_elif_token1] = ACTIONS(5244), + [aux_sym_preproc_def_token1] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_inline] = ACTIONS(5244), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5244), }, - [4437] = { + [4408] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10152), + [anon_sym_SEMI] = ACTIONS(10118), }, - [4438] = { - [sym_template_argument_list] = STATE(385), - [anon_sym_COLON_COLON] = ACTIONS(1158), + [4409] = { + [sym_template_argument_list] = STATE(386), + [anon_sym_COLON_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(10154), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(10120), }, - [4439] = { + [4410] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10154), + [anon_sym_SEMI] = ACTIONS(10120), }, - [4440] = { - [sym_macro_type_specifier] = STATE(1480), - [sym_class_specifier] = STATE(1480), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(1480), - [sym__type_specifier] = STATE(1480), - [sym_type_descriptor] = STATE(4695), - [sym_type_qualifier] = STATE(1482), - [sym_struct_specifier] = STATE(1480), - [sym_union_specifier] = STATE(1480), - [sym_dependent_type] = STATE(1480), - [sym_scoped_namespace_identifier] = STATE(88), - [aux_sym_type_definition_repeat1] = STATE(1482), - [aux_sym_sized_type_specifier_repeat1] = STATE(1483), - [sym_enum_specifier] = STATE(1480), - [sym_scoped_type_identifier] = STATE(87), + [4411] = { + [aux_sym_type_definition_repeat1] = STATE(1475), + [sym_macro_type_specifier] = STATE(1477), + [sym_class_specifier] = STATE(1477), + [aux_sym_sized_type_specifier_repeat1] = STATE(1476), + [sym_sized_type_specifier] = STATE(1477), + [sym__type_specifier] = STATE(1477), + [sym_type_descriptor] = STATE(4666), + [sym_scoped_type_identifier] = STATE(90), + [sym_template_type] = STATE(91), + [sym_type_qualifier] = STATE(1475), + [sym_struct_specifier] = STATE(1477), + [sym_union_specifier] = STATE(1477), + [sym_dependent_type] = STATE(1477), + [sym_enum_specifier] = STATE(1477), + [sym_scoped_namespace_identifier] = STATE(92), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2933), + [sym_auto] = ACTIONS(2933), + [anon_sym_signed] = ACTIONS(2935), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2935), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_COLON_COLON] = ACTIONS(147), [anon_sym_class] = ACTIONS(149), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2935), [sym_comment] = ACTIONS(3), [anon_sym_volatile] = ACTIONS(11), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2937), [anon_sym_explicit] = ACTIONS(11), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2935), [anon_sym_restrict] = ACTIONS(11), }, - [4441] = { - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2937), - [sym_auto] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_private] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2937), - [sym_operator_name] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_public] = ACTIONS(2937), - [anon_sym_protected] = ACTIONS(2937), - [anon_sym_friend] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), + [4412] = { + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2939), + [sym_auto] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2939), + [aux_sym_preproc_if_token2] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_private] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2939), + [sym_operator_name] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_virtual] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_public] = ACTIONS(2939), + [anon_sym_protected] = ACTIONS(2939), + [anon_sym_friend] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2939), + [anon_sym_restrict] = ACTIONS(2939), }, - [4442] = { - [anon_sym_LPAREN2] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2943), - [sym_auto] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2943), - [anon_sym_mutable] = ACTIONS(2943), - [anon_sym_long] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2943), - [aux_sym_preproc_if_token2] = ACTIONS(2943), - [sym_preproc_directive] = ACTIONS(2943), - [aux_sym_preproc_if_token1] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_volatile] = ACTIONS(2943), - [anon_sym_typedef] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_typename] = ACTIONS(2943), - [anon_sym_private] = ACTIONS(2943), - [anon_sym_explicit] = ACTIONS(2943), - [anon_sym_short] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2943), - [sym_operator_name] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), - [anon_sym_register] = ACTIONS(2943), - [anon_sym__Atomic] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym_virtual] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_constexpr] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(2943), - [anon_sym_unsigned] = ACTIONS(2943), - [anon_sym_public] = ACTIONS(2943), - [anon_sym_protected] = ACTIONS(2943), - [anon_sym_friend] = ACTIONS(2943), - [anon_sym_template] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2943), - [anon_sym_restrict] = ACTIONS(2943), + [4413] = { + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2945), + [sym_auto] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2945), + [aux_sym_preproc_if_token2] = ACTIONS(2945), + [sym_preproc_directive] = ACTIONS(2945), + [aux_sym_preproc_if_token1] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_private] = ACTIONS(2945), + [anon_sym_explicit] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2945), + [sym_operator_name] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_virtual] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2945), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_public] = ACTIONS(2945), + [anon_sym_protected] = ACTIONS(2945), + [anon_sym_friend] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2947), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym_restrict] = ACTIONS(2945), }, - [4443] = { - [anon_sym_LPAREN2] = ACTIONS(7329), - [anon_sym_struct] = ACTIONS(7331), - [sym_auto] = ACTIONS(7331), - [anon_sym_signed] = ACTIONS(7331), - [anon_sym_mutable] = ACTIONS(7331), - [anon_sym_long] = ACTIONS(7331), - [anon_sym_COLON_COLON] = ACTIONS(7329), - [anon_sym_using] = ACTIONS(7331), - [aux_sym_preproc_if_token2] = ACTIONS(7331), - [sym_preproc_directive] = ACTIONS(7331), - [aux_sym_preproc_if_token1] = ACTIONS(7331), - [anon_sym_AMP] = ACTIONS(7331), - [anon_sym_static] = ACTIONS(7331), - [anon_sym_volatile] = ACTIONS(7331), - [anon_sym_typedef] = ACTIONS(7331), - [anon_sym_STAR] = ACTIONS(7329), - [anon_sym_union] = ACTIONS(7331), - [anon_sym_typename] = ACTIONS(7331), - [anon_sym_private] = ACTIONS(7331), - [anon_sym_explicit] = ACTIONS(7331), - [anon_sym_short] = ACTIONS(7331), - [sym_identifier] = ACTIONS(7331), - [sym_operator_name] = ACTIONS(7329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7331), - [anon_sym_register] = ACTIONS(7331), - [anon_sym__Atomic] = ACTIONS(7331), - [anon_sym_const] = ACTIONS(7331), - [anon_sym_extern] = ACTIONS(7331), - [anon_sym_virtual] = ACTIONS(7331), - [anon_sym_enum] = ACTIONS(7331), - [anon_sym_class] = ACTIONS(7331), - [anon_sym_constexpr] = ACTIONS(7331), - [sym_primitive_type] = ACTIONS(7331), - [anon_sym_unsigned] = ACTIONS(7331), - [anon_sym_public] = ACTIONS(7331), - [anon_sym_protected] = ACTIONS(7331), - [anon_sym_friend] = ACTIONS(7331), - [anon_sym_template] = ACTIONS(7331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7331), - [anon_sym_TILDE] = ACTIONS(7329), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7331), - [anon_sym_AMP_AMP] = ACTIONS(7329), - [anon_sym_inline] = ACTIONS(7331), - [anon_sym_restrict] = ACTIONS(7331), + [4414] = { + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_struct] = ACTIONS(7312), + [sym_auto] = ACTIONS(7312), + [anon_sym_signed] = ACTIONS(7312), + [anon_sym_mutable] = ACTIONS(7312), + [anon_sym_long] = ACTIONS(7312), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_using] = ACTIONS(7312), + [aux_sym_preproc_if_token2] = ACTIONS(7312), + [sym_preproc_directive] = ACTIONS(7312), + [aux_sym_preproc_if_token1] = ACTIONS(7312), + [anon_sym_AMP] = ACTIONS(7312), + [anon_sym_static] = ACTIONS(7312), + [anon_sym_volatile] = ACTIONS(7312), + [anon_sym_typedef] = ACTIONS(7312), + [anon_sym_STAR] = ACTIONS(7310), + [anon_sym_union] = ACTIONS(7312), + [anon_sym_typename] = ACTIONS(7312), + [anon_sym_private] = ACTIONS(7312), + [anon_sym_explicit] = ACTIONS(7312), + [anon_sym_short] = ACTIONS(7312), + [sym_identifier] = ACTIONS(7312), + [sym_operator_name] = ACTIONS(7310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7312), + [anon_sym_register] = ACTIONS(7312), + [anon_sym__Atomic] = ACTIONS(7312), + [anon_sym_const] = ACTIONS(7312), + [anon_sym_extern] = ACTIONS(7312), + [anon_sym_LBRACK] = ACTIONS(7312), + [anon_sym_virtual] = ACTIONS(7312), + [anon_sym_enum] = ACTIONS(7312), + [anon_sym_class] = ACTIONS(7312), + [anon_sym_constexpr] = ACTIONS(7312), + [sym_primitive_type] = ACTIONS(7312), + [anon_sym_unsigned] = ACTIONS(7312), + [anon_sym_public] = ACTIONS(7312), + [anon_sym_protected] = ACTIONS(7312), + [anon_sym_friend] = ACTIONS(7312), + [anon_sym_template] = ACTIONS(7312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7312), + [anon_sym_TILDE] = ACTIONS(7310), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7312), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_inline] = ACTIONS(7312), + [anon_sym_restrict] = ACTIONS(7312), }, - [4444] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3443), - [sym_preproc_function_def] = STATE(3443), - [sym_alias_declaration] = STATE(3443), + [4415] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3405), + [sym_preproc_function_def] = STATE(3405), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3443), - [sym_preproc_if_in_field_declaration_list] = STATE(3443), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3443), - [sym_type_definition] = STATE(3443), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3443), - [sym__field_declaration_list_item] = STATE(3443), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3443), - [sym_inline_method_definition] = STATE(3443), - [sym_friend_declaration] = STATE(3443), - [sym_access_specifier] = STATE(3443), - [sym_using_declaration] = STATE(3443), - [sym_preproc_else_in_field_declaration_list] = STATE(4697), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4697), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3443), - [sym_constructor_or_destructor_definition] = STATE(3443), - [sym_constructor_or_destructor_declaration] = STATE(3443), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3405), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3405), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3405), + [sym_preproc_if_in_field_declaration_list] = STATE(3405), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3405), + [sym_type_definition] = STATE(3405), + [sym_using_declaration] = STATE(3405), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3405), + [sym_inline_method_definition] = STATE(3405), + [sym_constructor_or_destructor_definition] = STATE(3405), + [sym_access_specifier] = STATE(3405), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3405), + [sym_alias_declaration] = STATE(3405), + [sym_preproc_else_in_field_declaration_list] = STATE(4668), + [sym_preproc_elif_in_field_declaration_list] = STATE(4668), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3405), + [sym_constructor_or_destructor_declaration] = STATE(3405), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(10156), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(10122), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [4445] = { - [aux_sym_preproc_if_token2] = ACTIONS(10158), + [4416] = { + [aux_sym_preproc_if_token2] = ACTIONS(10124), [sym_comment] = ACTIONS(3), }, - [4446] = { - [sym_pointer_type_declarator] = STATE(4698), - [sym_array_type_declarator] = STATE(4698), - [sym_function_type_declarator] = STATE(4698), - [sym__type_declarator] = STATE(4698), - [anon_sym_LPAREN2] = ACTIONS(678), - [sym_identifier] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(682), + [4417] = { + [sym_pointer_type_declarator] = STATE(4669), + [sym_array_type_declarator] = STATE(4669), + [sym_function_type_declarator] = STATE(4669), + [sym__type_declarator] = STATE(4669), + [anon_sym_LPAREN2] = ACTIONS(680), + [sym_identifier] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(684), [sym_comment] = ACTIONS(3), }, - [4447] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(4700), - [anon_sym_LPAREN2] = ACTIONS(587), + [4418] = { + [aux_sym_type_definition_repeat2] = STATE(4671), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10160), + [anon_sym_SEMI] = ACTIONS(10126), }, - [4448] = { - [anon_sym_LPAREN2] = ACTIONS(7369), - [anon_sym_struct] = ACTIONS(7371), - [sym_auto] = ACTIONS(7371), - [anon_sym_signed] = ACTIONS(7371), - [anon_sym_mutable] = ACTIONS(7371), - [anon_sym_long] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(7369), - [anon_sym_using] = ACTIONS(7371), - [aux_sym_preproc_if_token2] = ACTIONS(7371), - [sym_preproc_directive] = ACTIONS(7371), - [aux_sym_preproc_if_token1] = ACTIONS(7371), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_static] = ACTIONS(7371), - [anon_sym_volatile] = ACTIONS(7371), - [anon_sym_typedef] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(7369), - [anon_sym_union] = ACTIONS(7371), - [anon_sym_typename] = ACTIONS(7371), - [anon_sym_private] = ACTIONS(7371), - [anon_sym_explicit] = ACTIONS(7371), - [anon_sym_short] = ACTIONS(7371), - [sym_identifier] = ACTIONS(7371), - [sym_operator_name] = ACTIONS(7369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7371), - [anon_sym_register] = ACTIONS(7371), - [anon_sym__Atomic] = ACTIONS(7371), - [anon_sym_const] = ACTIONS(7371), - [anon_sym_extern] = ACTIONS(7371), - [anon_sym_virtual] = ACTIONS(7371), - [anon_sym_enum] = ACTIONS(7371), - [anon_sym_class] = ACTIONS(7371), - [anon_sym_constexpr] = ACTIONS(7371), - [sym_primitive_type] = ACTIONS(7371), - [anon_sym_unsigned] = ACTIONS(7371), - [anon_sym_public] = ACTIONS(7371), - [anon_sym_protected] = ACTIONS(7371), - [anon_sym_friend] = ACTIONS(7371), - [anon_sym_template] = ACTIONS(7371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7371), - [anon_sym_TILDE] = ACTIONS(7369), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7371), - [anon_sym_AMP_AMP] = ACTIONS(7369), - [anon_sym_inline] = ACTIONS(7371), - [anon_sym_restrict] = ACTIONS(7371), + [4419] = { + [anon_sym_LPAREN2] = ACTIONS(7350), + [anon_sym_struct] = ACTIONS(7352), + [sym_auto] = ACTIONS(7352), + [anon_sym_signed] = ACTIONS(7352), + [anon_sym_mutable] = ACTIONS(7352), + [anon_sym_long] = ACTIONS(7352), + [anon_sym_COLON_COLON] = ACTIONS(7350), + [anon_sym_using] = ACTIONS(7352), + [aux_sym_preproc_if_token2] = ACTIONS(7352), + [sym_preproc_directive] = ACTIONS(7352), + [aux_sym_preproc_if_token1] = ACTIONS(7352), + [anon_sym_AMP] = ACTIONS(7352), + [anon_sym_static] = ACTIONS(7352), + [anon_sym_volatile] = ACTIONS(7352), + [anon_sym_typedef] = ACTIONS(7352), + [anon_sym_STAR] = ACTIONS(7350), + [anon_sym_union] = ACTIONS(7352), + [anon_sym_typename] = ACTIONS(7352), + [anon_sym_private] = ACTIONS(7352), + [anon_sym_explicit] = ACTIONS(7352), + [anon_sym_short] = ACTIONS(7352), + [sym_identifier] = ACTIONS(7352), + [sym_operator_name] = ACTIONS(7350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7352), + [anon_sym_register] = ACTIONS(7352), + [anon_sym__Atomic] = ACTIONS(7352), + [anon_sym_const] = ACTIONS(7352), + [anon_sym_extern] = ACTIONS(7352), + [anon_sym_LBRACK] = ACTIONS(7352), + [anon_sym_virtual] = ACTIONS(7352), + [anon_sym_enum] = ACTIONS(7352), + [anon_sym_class] = ACTIONS(7352), + [anon_sym_constexpr] = ACTIONS(7352), + [sym_primitive_type] = ACTIONS(7352), + [anon_sym_unsigned] = ACTIONS(7352), + [anon_sym_public] = ACTIONS(7352), + [anon_sym_protected] = ACTIONS(7352), + [anon_sym_friend] = ACTIONS(7352), + [anon_sym_template] = ACTIONS(7352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7352), + [anon_sym_TILDE] = ACTIONS(7350), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7352), + [anon_sym_AMP_AMP] = ACTIONS(7350), + [anon_sym_inline] = ACTIONS(7352), + [anon_sym_restrict] = ACTIONS(7352), }, - [4449] = { - [sym_template_type] = STATE(613), - [sym_preproc_def] = STATE(3443), - [sym_preproc_function_def] = STATE(3443), - [sym_alias_declaration] = STATE(3443), + [4420] = { + [sym_template_function] = STATE(614), + [sym_preproc_def] = STATE(3405), + [sym_preproc_function_def] = STATE(3405), [sym__declarator] = STATE(614), - [sym_destructor_name] = STATE(614), + [sym_scoped_type_identifier] = STATE(90), + [sym_scoped_identifier] = STATE(282), + [aux_sym_function_definition_repeat1] = STATE(2461), [sym_array_declarator] = STATE(614), - [aux_sym__declaration_specifiers_repeat1] = STATE(2476), - [sym_storage_class_specifier] = STATE(2476), - [sym_type_qualifier] = STATE(2476), - [sym_dependent_type] = STATE(619), - [sym_union_specifier] = STATE(619), - [sym_struct_specifier] = STATE(619), - [sym_template_function] = STATE(614), - [sym_preproc_call] = STATE(3443), - [sym_preproc_if_in_field_declaration_list] = STATE(3443), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(3443), - [sym_type_definition] = STATE(3443), - [sym__declaration_specifiers] = STATE(2477), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(87), - [sym_function_declarator] = STATE(2478), - [aux_sym_function_definition_repeat1] = STATE(2479), - [sym_macro_type_specifier] = STATE(619), - [sym_class_specifier] = STATE(619), - [sym__type_specifier] = STATE(619), - [sym_sized_type_specifier] = STATE(619), - [sym_template_declaration] = STATE(3443), - [sym__field_declaration_list_item] = STATE(3443), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3443), - [sym_inline_method_definition] = STATE(3443), - [sym_friend_declaration] = STATE(3443), - [sym_access_specifier] = STATE(3443), - [sym_using_declaration] = STATE(3443), - [sym_preproc_else_in_field_declaration_list] = STATE(4702), - [sym_attribute] = STATE(2479), - [sym_preproc_elif_in_field_declaration_list] = STATE(4702), - [sym_pointer_declarator] = STATE(614), - [sym_scoped_namespace_identifier] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(622), - [sym_enum_specifier] = STATE(619), - [sym_field_declaration] = STATE(3443), - [sym_constructor_or_destructor_definition] = STATE(3443), - [sym_constructor_or_destructor_declaration] = STATE(3443), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(3405), + [sym_storage_class_specifier] = STATE(2466), + [sym_type_qualifier] = STATE(2466), + [sym_dependent_type] = STATE(620), + [sym_union_specifier] = STATE(620), + [sym_struct_specifier] = STATE(620), + [sym_friend_declaration] = STATE(3405), + [sym_structured_binding_declarator] = STATE(614), + [sym_preproc_call] = STATE(3405), + [sym_preproc_if_in_field_declaration_list] = STATE(3405), + [sym_attribute] = STATE(2461), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(3405), + [sym_type_definition] = STATE(3405), + [sym_using_declaration] = STATE(3405), + [sym__declaration_specifiers] = STATE(2463), + [sym_scoped_namespace_identifier] = STATE(618), + [sym_function_declarator] = STATE(2464), + [sym_macro_type_specifier] = STATE(620), + [sym_class_specifier] = STATE(620), + [sym__type_specifier] = STATE(620), + [sym_sized_type_specifier] = STATE(620), + [aux_sym_sized_type_specifier_repeat1] = STATE(621), + [sym_template_declaration] = STATE(3405), + [sym_inline_method_definition] = STATE(3405), + [sym_constructor_or_destructor_definition] = STATE(3405), + [sym_access_specifier] = STATE(3405), [sym_reference_declarator] = STATE(614), - [anon_sym_LPAREN2] = ACTIONS(456), + [sym_template_type] = STATE(622), + [sym__field_declaration_list_item] = STATE(3405), + [sym_alias_declaration] = STATE(3405), + [sym_preproc_else_in_field_declaration_list] = STATE(4673), + [sym_preproc_elif_in_field_declaration_list] = STATE(4673), + [sym_destructor_name] = STATE(614), + [sym_pointer_declarator] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(2466), + [sym_enum_specifier] = STATE(620), + [sym_field_declaration] = STATE(3405), + [sym_constructor_or_destructor_declaration] = STATE(3405), + [anon_sym_LPAREN2] = ACTIONS(458), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1092), + [sym_auto] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1096), [anon_sym_mutable] = ACTIONS(11), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5032), - [aux_sym_preproc_if_token2] = ACTIONS(10162), - [sym_preproc_directive] = ACTIONS(5036), - [aux_sym_preproc_if_token1] = ACTIONS(5038), - [anon_sym_AMP] = ACTIONS(518), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(10128), + [sym_preproc_directive] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(522), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_typedef] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(524), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(5042), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(5038), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1092), - [sym_operator_name] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5044), + [sym_identifier] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1096), + [sym_operator_name] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5040), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_enum] = ACTIONS(366), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(5038), + [anon_sym_protected] = ACTIONS(5038), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym_friend] = ACTIONS(5048), - [anon_sym_template] = ACTIONS(5050), - [anon_sym_unsigned] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5044), - [anon_sym_TILDE] = ACTIONS(308), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), - [aux_sym_preproc_def_token1] = ACTIONS(5054), + [anon_sym_friend] = ACTIONS(5044), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(310), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [aux_sym_preproc_def_token1] = ACTIONS(5050), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(11), }, - [4450] = { - [aux_sym_preproc_if_token2] = ACTIONS(10164), + [4421] = { + [aux_sym_preproc_if_token2] = ACTIONS(10130), [sym_comment] = ACTIONS(3), }, - [4451] = { - [anon_sym_LPAREN2] = ACTIONS(7377), - [anon_sym_struct] = ACTIONS(7379), - [sym_auto] = ACTIONS(7379), - [anon_sym_signed] = ACTIONS(7379), - [anon_sym_mutable] = ACTIONS(7379), - [anon_sym_long] = ACTIONS(7379), - [anon_sym_COLON_COLON] = ACTIONS(7377), - [anon_sym_using] = ACTIONS(7379), - [aux_sym_preproc_if_token2] = ACTIONS(7379), - [sym_preproc_directive] = ACTIONS(7379), - [aux_sym_preproc_if_token1] = ACTIONS(7379), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_static] = ACTIONS(7379), - [anon_sym_volatile] = ACTIONS(7379), - [anon_sym_typedef] = ACTIONS(7379), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_union] = ACTIONS(7379), - [anon_sym_typename] = ACTIONS(7379), - [anon_sym_private] = ACTIONS(7379), - [anon_sym_explicit] = ACTIONS(7379), - [anon_sym_short] = ACTIONS(7379), - [sym_identifier] = ACTIONS(7379), - [sym_operator_name] = ACTIONS(7377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7379), - [anon_sym_register] = ACTIONS(7379), - [anon_sym__Atomic] = ACTIONS(7379), - [anon_sym_const] = ACTIONS(7379), - [anon_sym_extern] = ACTIONS(7379), - [anon_sym_virtual] = ACTIONS(7379), - [anon_sym_enum] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7379), - [anon_sym_constexpr] = ACTIONS(7379), - [sym_primitive_type] = ACTIONS(7379), - [anon_sym_unsigned] = ACTIONS(7379), - [anon_sym_public] = ACTIONS(7379), - [anon_sym_protected] = ACTIONS(7379), - [anon_sym_friend] = ACTIONS(7379), - [anon_sym_template] = ACTIONS(7379), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7379), - [anon_sym_TILDE] = ACTIONS(7377), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7379), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_inline] = ACTIONS(7379), - [anon_sym_restrict] = ACTIONS(7379), + [4422] = { + [anon_sym_LPAREN2] = ACTIONS(7358), + [anon_sym_struct] = ACTIONS(7360), + [sym_auto] = ACTIONS(7360), + [anon_sym_signed] = ACTIONS(7360), + [anon_sym_mutable] = ACTIONS(7360), + [anon_sym_long] = ACTIONS(7360), + [anon_sym_COLON_COLON] = ACTIONS(7358), + [anon_sym_using] = ACTIONS(7360), + [aux_sym_preproc_if_token2] = ACTIONS(7360), + [sym_preproc_directive] = ACTIONS(7360), + [aux_sym_preproc_if_token1] = ACTIONS(7360), + [anon_sym_AMP] = ACTIONS(7360), + [anon_sym_static] = ACTIONS(7360), + [anon_sym_volatile] = ACTIONS(7360), + [anon_sym_typedef] = ACTIONS(7360), + [anon_sym_STAR] = ACTIONS(7358), + [anon_sym_union] = ACTIONS(7360), + [anon_sym_typename] = ACTIONS(7360), + [anon_sym_private] = ACTIONS(7360), + [anon_sym_explicit] = ACTIONS(7360), + [anon_sym_short] = ACTIONS(7360), + [sym_identifier] = ACTIONS(7360), + [sym_operator_name] = ACTIONS(7358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7360), + [anon_sym_register] = ACTIONS(7360), + [anon_sym__Atomic] = ACTIONS(7360), + [anon_sym_const] = ACTIONS(7360), + [anon_sym_extern] = ACTIONS(7360), + [anon_sym_LBRACK] = ACTIONS(7360), + [anon_sym_virtual] = ACTIONS(7360), + [anon_sym_enum] = ACTIONS(7360), + [anon_sym_class] = ACTIONS(7360), + [anon_sym_constexpr] = ACTIONS(7360), + [sym_primitive_type] = ACTIONS(7360), + [anon_sym_unsigned] = ACTIONS(7360), + [anon_sym_public] = ACTIONS(7360), + [anon_sym_protected] = ACTIONS(7360), + [anon_sym_friend] = ACTIONS(7360), + [anon_sym_template] = ACTIONS(7360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7360), + [anon_sym_TILDE] = ACTIONS(7358), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7360), + [anon_sym_AMP_AMP] = ACTIONS(7358), + [anon_sym_inline] = ACTIONS(7360), + [anon_sym_restrict] = ACTIONS(7360), }, - [4452] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4703), - [sym_logical_expression] = STATE(4703), - [sym_bitwise_expression] = STATE(4703), - [sym_cast_expression] = STATE(4703), - [sym_new_expression] = STATE(4703), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4703), - [sym_char_literal] = STATE(4703), - [sym_template_function] = STATE(4703), - [sym_conditional_expression] = STATE(4703), - [sym_equality_expression] = STATE(4703), - [sym_relational_expression] = STATE(4703), - [sym_delete_expression] = STATE(4703), - [sym_sizeof_expression] = STATE(4703), - [sym_parenthesized_expression] = STATE(4703), - [sym_initializer_list] = STATE(4704), - [sym_concatenated_string] = STATE(4703), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4703), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4703), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4703), - [sym_math_expression] = STATE(4703), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10166), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10168), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10168), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10166), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10168), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10168), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [4423] = { + [sym_template_function] = STATE(4674), + [sym__expression] = STATE(4674), + [sym_logical_expression] = STATE(4674), + [sym_bitwise_expression] = STATE(4674), + [sym_cast_expression] = STATE(4674), + [sym_delete_expression] = STATE(4674), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4674), + [sym_lambda_expression] = STATE(4674), + [sym_char_literal] = STATE(4674), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4674), + [sym_equality_expression] = STATE(4674), + [sym_relational_expression] = STATE(4674), + [sym_sizeof_expression] = STATE(4674), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4675), + [sym_parenthesized_expression] = STATE(4674), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4674), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4674), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4674), + [sym_math_expression] = STATE(4674), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4674), + [sym_raw_string_literal] = ACTIONS(10132), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10134), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10134), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10132), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10134), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10134), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [4453] = { - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(4704), - [aux_sym_field_declaration_repeat1] = STATE(4707), - [sym_initializer_list] = STATE(4704), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(10170), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(10172), - [anon_sym_LBRACE] = ACTIONS(175), + [4424] = { [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(10136), }, - [4454] = { + [4425] = { + [sym_parameter_list] = STATE(2505), + [sym_bitfield_clause] = STATE(4675), + [sym_initializer_list] = STATE(4675), + [aux_sym_field_declaration_repeat1] = STATE(4678), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(10136), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(10138), + [anon_sym_LBRACE] = ACTIONS(175), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10170), }, - [4455] = { - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_struct] = ACTIONS(7391), - [sym_auto] = ACTIONS(7391), - [anon_sym_signed] = ACTIONS(7391), - [anon_sym_mutable] = ACTIONS(7391), - [anon_sym_long] = ACTIONS(7391), - [anon_sym_COLON_COLON] = ACTIONS(7389), - [anon_sym_using] = ACTIONS(7391), - [aux_sym_preproc_if_token2] = ACTIONS(7391), - [sym_preproc_directive] = ACTIONS(7391), - [aux_sym_preproc_if_token1] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_static] = ACTIONS(7391), - [anon_sym_volatile] = ACTIONS(7391), - [anon_sym_typedef] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7389), - [anon_sym_union] = ACTIONS(7391), - [anon_sym_typename] = ACTIONS(7391), - [anon_sym_private] = ACTIONS(7391), - [anon_sym_explicit] = ACTIONS(7391), - [anon_sym_short] = ACTIONS(7391), - [sym_identifier] = ACTIONS(7391), - [sym_operator_name] = ACTIONS(7389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7391), - [anon_sym_register] = ACTIONS(7391), - [anon_sym__Atomic] = ACTIONS(7391), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_extern] = ACTIONS(7391), - [anon_sym_virtual] = ACTIONS(7391), - [anon_sym_enum] = ACTIONS(7391), - [anon_sym_class] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7391), - [sym_primitive_type] = ACTIONS(7391), - [anon_sym_unsigned] = ACTIONS(7391), - [anon_sym_public] = ACTIONS(7391), - [anon_sym_protected] = ACTIONS(7391), - [anon_sym_friend] = ACTIONS(7391), - [anon_sym_template] = ACTIONS(7391), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7391), - [anon_sym_TILDE] = ACTIONS(7389), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_inline] = ACTIONS(7391), - [anon_sym_restrict] = ACTIONS(7391), + [4426] = { + [anon_sym_LPAREN2] = ACTIONS(7370), + [anon_sym_struct] = ACTIONS(7372), + [sym_auto] = ACTIONS(7372), + [anon_sym_signed] = ACTIONS(7372), + [anon_sym_mutable] = ACTIONS(7372), + [anon_sym_long] = ACTIONS(7372), + [anon_sym_COLON_COLON] = ACTIONS(7370), + [anon_sym_using] = ACTIONS(7372), + [aux_sym_preproc_if_token2] = ACTIONS(7372), + [sym_preproc_directive] = ACTIONS(7372), + [aux_sym_preproc_if_token1] = ACTIONS(7372), + [anon_sym_AMP] = ACTIONS(7372), + [anon_sym_static] = ACTIONS(7372), + [anon_sym_volatile] = ACTIONS(7372), + [anon_sym_typedef] = ACTIONS(7372), + [anon_sym_STAR] = ACTIONS(7370), + [anon_sym_union] = ACTIONS(7372), + [anon_sym_typename] = ACTIONS(7372), + [anon_sym_private] = ACTIONS(7372), + [anon_sym_explicit] = ACTIONS(7372), + [anon_sym_short] = ACTIONS(7372), + [sym_identifier] = ACTIONS(7372), + [sym_operator_name] = ACTIONS(7370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7372), + [anon_sym_register] = ACTIONS(7372), + [anon_sym__Atomic] = ACTIONS(7372), + [anon_sym_const] = ACTIONS(7372), + [anon_sym_extern] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(7372), + [anon_sym_virtual] = ACTIONS(7372), + [anon_sym_enum] = ACTIONS(7372), + [anon_sym_class] = ACTIONS(7372), + [anon_sym_constexpr] = ACTIONS(7372), + [sym_primitive_type] = ACTIONS(7372), + [anon_sym_unsigned] = ACTIONS(7372), + [anon_sym_public] = ACTIONS(7372), + [anon_sym_protected] = ACTIONS(7372), + [anon_sym_friend] = ACTIONS(7372), + [anon_sym_template] = ACTIONS(7372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7372), + [anon_sym_TILDE] = ACTIONS(7370), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7370), + [anon_sym_inline] = ACTIONS(7372), + [anon_sym_restrict] = ACTIONS(7372), }, - [4456] = { - [sym_reference_declarator] = STATE(4708), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(4708), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(4708), - [sym_destructor_name] = STATE(4708), - [sym__declarator] = STATE(4708), - [sym_init_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4708), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(4708), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(10174), - [sym_comment] = ACTIONS(3), + [4427] = { + [anon_sym_LPAREN2] = ACTIONS(7374), + [anon_sym_struct] = ACTIONS(7376), + [sym_auto] = ACTIONS(7376), + [anon_sym_signed] = ACTIONS(7376), + [anon_sym_mutable] = ACTIONS(7376), + [anon_sym_long] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7374), + [anon_sym_using] = ACTIONS(7376), + [aux_sym_preproc_if_token2] = ACTIONS(7376), + [sym_preproc_directive] = ACTIONS(7376), + [aux_sym_preproc_if_token1] = ACTIONS(7376), + [anon_sym_AMP] = ACTIONS(7376), + [anon_sym_static] = ACTIONS(7376), + [anon_sym_volatile] = ACTIONS(7376), + [anon_sym_typedef] = ACTIONS(7376), + [anon_sym_STAR] = ACTIONS(7374), + [anon_sym_union] = ACTIONS(7376), + [anon_sym_typename] = ACTIONS(7376), + [anon_sym_private] = ACTIONS(7376), + [anon_sym_explicit] = ACTIONS(7376), + [anon_sym_short] = ACTIONS(7376), + [sym_identifier] = ACTIONS(7376), + [sym_operator_name] = ACTIONS(7374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7376), + [anon_sym_register] = ACTIONS(7376), + [anon_sym__Atomic] = ACTIONS(7376), + [anon_sym_const] = ACTIONS(7376), + [anon_sym_extern] = ACTIONS(7376), + [anon_sym_LBRACK] = ACTIONS(7376), + [anon_sym_virtual] = ACTIONS(7376), + [anon_sym_enum] = ACTIONS(7376), + [anon_sym_class] = ACTIONS(7376), + [anon_sym_constexpr] = ACTIONS(7376), + [sym_primitive_type] = ACTIONS(7376), + [anon_sym_unsigned] = ACTIONS(7376), + [anon_sym_public] = ACTIONS(7376), + [anon_sym_protected] = ACTIONS(7376), + [anon_sym_friend] = ACTIONS(7376), + [anon_sym_template] = ACTIONS(7376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7376), + [anon_sym_TILDE] = ACTIONS(7374), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7376), + [anon_sym_AMP_AMP] = ACTIONS(7374), + [anon_sym_inline] = ACTIONS(7376), + [anon_sym_restrict] = ACTIONS(7376), }, - [4457] = { - [anon_sym_LPAREN2] = ACTIONS(7395), - [anon_sym_struct] = ACTIONS(7397), - [sym_auto] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(7397), - [anon_sym_mutable] = ACTIONS(7397), - [anon_sym_long] = ACTIONS(7397), - [anon_sym_COLON_COLON] = ACTIONS(7395), - [anon_sym_using] = ACTIONS(7397), - [aux_sym_preproc_if_token2] = ACTIONS(7397), - [sym_preproc_directive] = ACTIONS(7397), - [aux_sym_preproc_if_token1] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7397), - [anon_sym_static] = ACTIONS(7397), - [anon_sym_volatile] = ACTIONS(7397), - [anon_sym_typedef] = ACTIONS(7397), - [anon_sym_STAR] = ACTIONS(7395), - [anon_sym_union] = ACTIONS(7397), - [anon_sym_typename] = ACTIONS(7397), - [anon_sym_private] = ACTIONS(7397), - [anon_sym_explicit] = ACTIONS(7397), - [anon_sym_short] = ACTIONS(7397), - [sym_identifier] = ACTIONS(7397), - [sym_operator_name] = ACTIONS(7395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7397), - [anon_sym_register] = ACTIONS(7397), - [anon_sym__Atomic] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7397), - [anon_sym_extern] = ACTIONS(7397), - [anon_sym_virtual] = ACTIONS(7397), - [anon_sym_enum] = ACTIONS(7397), - [anon_sym_class] = ACTIONS(7397), - [anon_sym_constexpr] = ACTIONS(7397), - [sym_primitive_type] = ACTIONS(7397), - [anon_sym_unsigned] = ACTIONS(7397), - [anon_sym_public] = ACTIONS(7397), - [anon_sym_protected] = ACTIONS(7397), - [anon_sym_friend] = ACTIONS(7397), - [anon_sym_template] = ACTIONS(7397), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7397), - [anon_sym_TILDE] = ACTIONS(7395), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7395), - [anon_sym_inline] = ACTIONS(7397), - [anon_sym_restrict] = ACTIONS(7397), + [4428] = { + [sym_template_function] = STATE(4679), + [sym_destructor_name] = STATE(4679), + [sym_pointer_declarator] = STATE(4679), + [sym_structured_binding_declarator] = STATE(4679), + [sym__declarator] = STATE(4679), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(4679), + [sym_array_declarator] = STATE(4679), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(4680), + [sym_function_declarator] = STATE(4679), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(10140), + [sym_comment] = ACTIONS(3), }, - [4458] = { - [sym_compound_statement] = STATE(4711), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(4712), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(9674), - [anon_sym_SEMI] = ACTIONS(10176), + [4429] = { + [sym_compound_statement] = STATE(4682), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(4683), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(9672), + [anon_sym_SEMI] = ACTIONS(10142), }, - [4459] = { - [aux_sym_declaration_repeat1] = STATE(4712), + [4430] = { + [aux_sym_declaration_repeat1] = STATE(4683), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10176), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10142), }, - [4460] = { - [anon_sym_LPAREN2] = ACTIONS(3594), - [anon_sym_struct] = ACTIONS(3592), - [sym_auto] = ACTIONS(3592), - [anon_sym_signed] = ACTIONS(3592), - [anon_sym_mutable] = ACTIONS(3592), - [anon_sym_long] = ACTIONS(3592), - [anon_sym_COLON_COLON] = ACTIONS(3594), - [anon_sym_using] = ACTIONS(3592), - [aux_sym_preproc_if_token2] = ACTIONS(3592), - [sym_preproc_directive] = ACTIONS(3592), - [aux_sym_preproc_if_token1] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_volatile] = ACTIONS(3592), - [anon_sym_typedef] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_union] = ACTIONS(3592), - [anon_sym_typename] = ACTIONS(3592), - [anon_sym_private] = ACTIONS(3592), - [anon_sym_explicit] = ACTIONS(3592), - [anon_sym_short] = ACTIONS(3592), - [sym_identifier] = ACTIONS(3592), - [sym_operator_name] = ACTIONS(3594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), - [anon_sym_register] = ACTIONS(3592), - [anon_sym__Atomic] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_extern] = ACTIONS(3592), - [anon_sym_virtual] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_constexpr] = ACTIONS(3592), - [sym_primitive_type] = ACTIONS(3592), - [anon_sym_unsigned] = ACTIONS(3592), - [anon_sym_public] = ACTIONS(3592), - [anon_sym_protected] = ACTIONS(3592), - [anon_sym_friend] = ACTIONS(3592), - [anon_sym_template] = ACTIONS(3592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3594), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_inline] = ACTIONS(3592), - [anon_sym_restrict] = ACTIONS(3592), + [4431] = { + [anon_sym_LPAREN2] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3606), + [sym_auto] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3606), + [anon_sym_mutable] = ACTIONS(3606), + [anon_sym_long] = ACTIONS(3606), + [anon_sym_COLON_COLON] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3606), + [aux_sym_preproc_if_token2] = ACTIONS(3606), + [sym_preproc_directive] = ACTIONS(3606), + [aux_sym_preproc_if_token1] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_volatile] = ACTIONS(3606), + [anon_sym_typedef] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3606), + [anon_sym_typename] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_explicit] = ACTIONS(3606), + [anon_sym_short] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3606), + [sym_operator_name] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3606), + [anon_sym_register] = ACTIONS(3606), + [anon_sym__Atomic] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_extern] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_virtual] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_constexpr] = ACTIONS(3606), + [sym_primitive_type] = ACTIONS(3606), + [anon_sym_unsigned] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_friend] = ACTIONS(3606), + [anon_sym_template] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3606), + [anon_sym_restrict] = ACTIONS(3606), }, - [4461] = { - [sym_reference_declarator] = STATE(4458), - [sym_template_type] = STATE(308), - [sym_pointer_declarator] = STATE(4458), - [sym_scoped_namespace_identifier] = STATE(308), - [sym_template_function] = STATE(4458), - [sym_destructor_name] = STATE(4458), - [sym__declarator] = STATE(4458), - [sym_init_declarator] = STATE(4459), - [sym_array_declarator] = STATE(4458), - [sym_scoped_identifier] = STATE(286), - [sym_scoped_type_identifier] = STATE(174), - [sym_function_declarator] = STATE(4458), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(10178), - [anon_sym_COLON_COLON] = ACTIONS(522), - [sym_identifier] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [sym_operator_name] = ACTIONS(9662), + [4432] = { + [sym_template_function] = STATE(4429), + [sym_destructor_name] = STATE(4429), + [sym_pointer_declarator] = STATE(4429), + [sym_structured_binding_declarator] = STATE(4429), + [sym__declarator] = STATE(4429), + [sym_scoped_type_identifier] = STATE(173), + [sym_scoped_identifier] = STATE(282), + [sym_reference_declarator] = STATE(4429), + [sym_array_declarator] = STATE(4429), + [sym_template_type] = STATE(310), + [sym_scoped_namespace_identifier] = STATE(310), + [sym_init_declarator] = STATE(4430), + [sym_function_declarator] = STATE(4429), + [anon_sym_LPAREN2] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(10144), + [anon_sym_COLON_COLON] = ACTIONS(526), + [sym_identifier] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(478), + [sym_operator_name] = ACTIONS(9628), [sym_comment] = ACTIONS(3), }, - [4462] = { - [anon_sym_LF] = ACTIONS(10180), + [4433] = { + [anon_sym_LF] = ACTIONS(10146), [sym_comment] = ACTIONS(244), }, - [4463] = { - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_struct] = ACTIONS(3688), - [sym_auto] = ACTIONS(3688), - [anon_sym_signed] = ACTIONS(3688), - [anon_sym_mutable] = ACTIONS(3688), - [anon_sym_long] = ACTIONS(3688), - [anon_sym_COLON_COLON] = ACTIONS(3690), - [anon_sym_using] = ACTIONS(3688), - [aux_sym_preproc_if_token2] = ACTIONS(3688), - [sym_preproc_directive] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3688), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_volatile] = ACTIONS(3688), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3690), - [anon_sym_union] = ACTIONS(3688), - [anon_sym_typename] = ACTIONS(3688), - [anon_sym_private] = ACTIONS(3688), - [anon_sym_explicit] = ACTIONS(3688), - [anon_sym_short] = ACTIONS(3688), - [sym_identifier] = ACTIONS(3688), - [sym_operator_name] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), - [anon_sym_register] = ACTIONS(3688), - [anon_sym__Atomic] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(3688), - [anon_sym_virtual] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_constexpr] = ACTIONS(3688), - [sym_primitive_type] = ACTIONS(3688), - [anon_sym_unsigned] = ACTIONS(3688), - [anon_sym_public] = ACTIONS(3688), - [anon_sym_protected] = ACTIONS(3688), - [anon_sym_friend] = ACTIONS(3688), - [anon_sym_template] = ACTIONS(3688), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), - [anon_sym_TILDE] = ACTIONS(3690), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_inline] = ACTIONS(3688), - [anon_sym_restrict] = ACTIONS(3688), + [4434] = { + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3698), + [sym_auto] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3698), + [aux_sym_preproc_if_token2] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3698), + [sym_operator_name] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_friend] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), }, - [4464] = { + [4435] = { [sym_comment] = ACTIONS(244), - [anon_sym_LF] = ACTIONS(10182), - [sym_preproc_arg] = ACTIONS(10184), + [anon_sym_LF] = ACTIONS(10148), + [sym_preproc_arg] = ACTIONS(10150), }, - [4465] = { - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_struct] = ACTIONS(3712), - [sym_auto] = ACTIONS(3712), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_using] = ACTIONS(3712), - [aux_sym_preproc_if_token2] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_private] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [sym_identifier] = ACTIONS(3712), - [sym_operator_name] = ACTIONS(3714), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym_virtual] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_public] = ACTIONS(3712), - [anon_sym_protected] = ACTIONS(3712), - [anon_sym_friend] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3714), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym_restrict] = ACTIONS(3712), + [4436] = { + [sym_function_field_declarator] = STATE(4688), + [sym_scoped_namespace_identifier] = STATE(988), + [sym_scoped_field_identifier] = STATE(1457), + [sym_reference_field_declarator] = STATE(4688), + [sym_pointer_field_declarator] = STATE(4688), + [sym__field_declarator] = STATE(4688), + [sym_scoped_type_identifier] = STATE(173), + [sym_template_type] = STATE(988), + [sym_bitfield_clause] = STATE(4675), + [sym_array_field_declarator] = STATE(4688), + [sym_initializer_list] = STATE(4675), + [sym_template_method] = STATE(4688), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(10136), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [sym_identifier] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(10138), + [sym_operator_name] = ACTIONS(10152), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), }, - [4466] = { - [sym_compound_statement] = STATE(4717), - [sym_delete_method_clause] = STATE(4717), - [sym_default_method_clause] = STATE(4717), - [anon_sym_EQ] = ACTIONS(8712), - [anon_sym_LBRACE] = ACTIONS(8714), + [4437] = { + [sym_compound_statement] = STATE(4690), + [sym_parameter_list] = STATE(2505), + [sym_delete_method_clause] = STATE(4690), + [sym_bitfield_clause] = STATE(4675), + [sym_initializer_list] = STATE(4675), + [aux_sym_field_declaration_repeat1] = STATE(4678), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(10136), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(10154), + [anon_sym_LBRACE] = ACTIONS(9672), [sym_comment] = ACTIONS(3), }, - [4467] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10170), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4438] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10136), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4468] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4703), - [sym_logical_expression] = STATE(4703), - [sym_bitwise_expression] = STATE(4703), - [sym_cast_expression] = STATE(4703), - [sym_new_expression] = STATE(4703), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4703), - [sym_char_literal] = STATE(4703), - [sym_template_function] = STATE(4703), - [sym_conditional_expression] = STATE(4703), - [sym_equality_expression] = STATE(4703), - [sym_relational_expression] = STATE(4703), - [sym_delete_expression] = STATE(4703), - [sym_sizeof_expression] = STATE(4703), - [sym_parenthesized_expression] = STATE(4703), - [sym_initializer_list] = STATE(4704), - [sym_concatenated_string] = STATE(4703), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4703), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4703), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4703), - [sym_math_expression] = STATE(4703), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10166), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10168), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10168), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10166), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10168), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10168), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(10186), + [4439] = { + [sym_template_function] = STATE(4674), + [sym__expression] = STATE(4674), + [sym_logical_expression] = STATE(4674), + [sym_bitwise_expression] = STATE(4674), + [sym_cast_expression] = STATE(4674), + [sym_delete_expression] = STATE(4674), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4674), + [sym_lambda_expression] = STATE(4674), + [sym_char_literal] = STATE(4674), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4674), + [sym_equality_expression] = STATE(4674), + [sym_relational_expression] = STATE(4674), + [sym_sizeof_expression] = STATE(4674), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4675), + [sym_parenthesized_expression] = STATE(4674), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4674), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4674), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4674), + [sym_math_expression] = STATE(4674), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4674), + [sym_raw_string_literal] = ACTIONS(10132), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10134), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10134), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10132), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10134), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10134), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(10156), [anon_sym_LBRACE] = ACTIONS(175), }, - [4469] = { - [sym_goto_statement] = STATE(4475), - [sym_preproc_function_def] = STATE(4475), - [sym_logical_expression] = STATE(2024), - [sym_for_range_loop] = STATE(4475), - [sym_cast_expression] = STATE(2024), - [sym_declaration] = STATE(4475), - [sym_field_expression] = STATE(2022), - [sym_field_designator] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [aux_sym_initializer_pair_repeat1] = STATE(449), - [sym_switch_statement] = STATE(4475), - [sym_return_statement] = STATE(4475), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(2024), - [sym_relational_expression] = STATE(2024), - [sym_delete_expression] = STATE(2024), - [sym_subscript_expression] = STATE(2022), - [sym_scoped_identifier] = STATE(50), + [4440] = { + [sym_goto_statement] = STATE(4446), + [sym_preproc_function_def] = STATE(4446), + [sym_logical_expression] = STATE(2031), + [sym_try_statement] = STATE(4446), + [sym_cast_expression] = STATE(2031), + [sym_lambda_expression] = STATE(2031), + [sym_field_expression] = STATE(2029), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(4446), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_field_designator] = STATE(452), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(4446), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(4446), + [sym_namespace_definition] = STATE(4446), + [sym_conditional_expression] = STATE(2031), + [sym_relational_expression] = STATE(2031), + [sym_lambda_capture_specifier] = STATE(50), + [sym_subscript_expression] = STATE(2029), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(4446), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(2030), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(4446), [sym_initializer_list] = STATE(451), - [sym_type_definition] = STATE(4475), - [sym_string_literal] = STATE(2023), - [sym_function_declarator] = STATE(51), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(4475), - [sym_break_statement] = STATE(4475), - [sym_preproc_include] = STATE(4475), - [sym_assignment_expression] = STATE(2024), - [sym_preproc_ifdef] = STATE(4475), - [sym_shift_expression] = STATE(2024), - [sym_using_declaration] = STATE(4475), - [sym_call_expression] = STATE(2022), - [sym_attribute] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(4446), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(4446), + [sym_preproc_include] = STATE(4446), + [sym_assignment_expression] = STATE(2031), + [sym_preproc_ifdef] = STATE(4446), + [sym_shift_expression] = STATE(2031), + [sym_for_range_loop] = STATE(4446), + [sym_call_expression] = STATE(2029), [sym_initializer_pair] = STATE(451), - [sym_compound_statement] = STATE(4475), - [sym_template_instantiation] = STATE(4475), - [sym_constructor_or_destructor_definition] = STATE(4475), - [sym_expression_statement] = STATE(4475), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(4475), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(2024), - [sym_preproc_def] = STATE(4475), - [sym_bitwise_expression] = STATE(2024), - [sym_new_expression] = STATE(2024), - [sym_function_definition] = STATE(4475), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(2024), - [sym_char_literal] = STATE(2024), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(4475), - [sym_alias_declaration] = STATE(4475), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [aux_sym_translation_unit_repeat1] = STATE(4475), - [sym_storage_class_specifier] = STATE(48), - [sym_if_statement] = STATE(4475), - [sym_for_statement] = STATE(4475), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(4475), - [sym_equality_expression] = STATE(2024), - [sym_try_statement] = STATE(4475), - [sym_sizeof_expression] = STATE(2024), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(2024), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(2024), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(2024), - [sym_structured_binding_declaration] = STATE(4475), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(4475), - [sym_preproc_if] = STATE(4475), - [sym_pointer_expression] = STATE(2022), - [sym_namespace_definition] = STATE(4475), - [sym_math_expression] = STATE(2024), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(4475), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [sym_subscript_designator] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(4475), - [sym_while_statement] = STATE(4475), - [sym_raw_string_literal] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4043), - [sym_true] = ACTIONS(4045), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(4446), + [aux_sym_initializer_pair_repeat1] = STATE(452), + [sym_expression_statement] = STATE(4446), + [sym_do_statement] = STATE(4446), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(2031), + [sym_preproc_def] = STATE(4446), + [sym_bitwise_expression] = STATE(2031), + [sym_delete_expression] = STATE(2031), + [sym_function_definition] = STATE(4446), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(2031), + [sym_char_literal] = STATE(2031), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(4446), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(4446), + [sym_for_statement] = STATE(4446), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(4446), + [sym_equality_expression] = STATE(2031), + [sym_using_declaration] = STATE(4446), + [sym_sizeof_expression] = STATE(2031), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(2031), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(2031), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(4446), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(4446), + [sym_preproc_if] = STATE(4446), + [sym_pointer_expression] = STATE(2029), + [sym_new_expression] = STATE(2031), + [sym_math_expression] = STATE(2031), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(4446), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(4446), + [aux_sym_translation_unit_repeat1] = STATE(4446), + [sym_subscript_designator] = STATE(452), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(4446), + [sym_while_statement] = STATE(4446), + [sym_raw_string_literal] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4079), + [sym_true] = ACTIONS(4081), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(4045), + [sym_null] = ACTIONS(4081), [anon_sym_break] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_sizeof] = ACTIONS(4049), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_sizeof] = ACTIONS(4085), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4079), [anon_sym_typedef] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(4051), - [anon_sym_delete] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4087), + [anon_sym_delete] = ACTIONS(4089), [anon_sym_continue] = ACTIONS(27), [aux_sym_preproc_ifdef_token1] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(760), [anon_sym__Atomic] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4041), + [sym_number_literal] = ACTIONS(4077), [anon_sym_extern] = ACTIONS(31), [anon_sym_enum] = ACTIONS(33), [anon_sym_constexpr] = ACTIONS(11), @@ -181177,25 +180554,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(39), [aux_sym_preproc_ifdef_token2] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(4057), - [anon_sym_LPAREN2] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_DASH_DASH] = ACTIONS(4093), + [anon_sym_LPAREN2] = ACTIONS(4095), [anon_sym_struct] = ACTIONS(49), [sym_auto] = ACTIONS(51), [anon_sym_signed] = ACTIONS(35), [anon_sym_long] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4097), [anon_sym_using] = ACTIONS(55), [sym_preproc_directive] = ACTIONS(57), [aux_sym_preproc_if_token1] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4099), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(10188), - [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_RBRACE] = ACTIONS(10158), + [anon_sym_STAR] = ACTIONS(4103), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), [anon_sym_short] = ACTIONS(35), - [anon_sym_new] = ACTIONS(4069), + [anon_sym_new] = ACTIONS(4105), [anon_sym_goto] = ACTIONS(73), [sym_operator_name] = ACTIONS(75), [anon_sym_while] = ACTIONS(250), @@ -181205,223 +180582,225 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(63), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4071), + [anon_sym_LBRACK] = ACTIONS(4107), [anon_sym_class] = ACTIONS(89), [anon_sym_if] = ACTIONS(256), [sym_primitive_type] = ACTIONS(51), - [sym_false] = ACTIONS(4045), - [sym_nullptr] = ACTIONS(4045), + [sym_false] = ACTIONS(4081), + [sym_nullptr] = ACTIONS(4081), [anon_sym_do] = ACTIONS(95), [anon_sym_template] = ACTIONS(97), [anon_sym_return] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4109), [anon_sym_SEMI] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(107), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(4057), + [anon_sym_PLUS_PLUS] = ACTIONS(4093), [anon_sym_restrict] = ACTIONS(11), }, - [4470] = { - [anon_sym_LPAREN2] = ACTIONS(7445), - [anon_sym_struct] = ACTIONS(7447), - [sym_auto] = ACTIONS(7447), - [anon_sym_signed] = ACTIONS(7447), - [anon_sym_mutable] = ACTIONS(7447), - [anon_sym_long] = ACTIONS(7447), - [anon_sym_COLON_COLON] = ACTIONS(7445), - [anon_sym_using] = ACTIONS(7447), - [aux_sym_preproc_if_token2] = ACTIONS(7447), - [sym_preproc_directive] = ACTIONS(7447), - [aux_sym_preproc_if_token1] = ACTIONS(7447), - [anon_sym_AMP] = ACTIONS(7447), - [anon_sym_static] = ACTIONS(7447), - [anon_sym_volatile] = ACTIONS(7447), - [anon_sym_typedef] = ACTIONS(7447), - [anon_sym_STAR] = ACTIONS(7445), - [anon_sym_union] = ACTIONS(7447), - [anon_sym_typename] = ACTIONS(7447), - [anon_sym_private] = ACTIONS(7447), - [anon_sym_explicit] = ACTIONS(7447), - [anon_sym_short] = ACTIONS(7447), - [sym_identifier] = ACTIONS(7447), - [sym_operator_name] = ACTIONS(7445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7447), - [anon_sym_register] = ACTIONS(7447), - [anon_sym__Atomic] = ACTIONS(7447), - [anon_sym_const] = ACTIONS(7447), - [anon_sym_extern] = ACTIONS(7447), - [anon_sym_virtual] = ACTIONS(7447), - [anon_sym_enum] = ACTIONS(7447), - [anon_sym_class] = ACTIONS(7447), - [anon_sym_constexpr] = ACTIONS(7447), - [sym_primitive_type] = ACTIONS(7447), - [anon_sym_unsigned] = ACTIONS(7447), - [anon_sym_public] = ACTIONS(7447), - [anon_sym_protected] = ACTIONS(7447), - [anon_sym_friend] = ACTIONS(7447), - [anon_sym_template] = ACTIONS(7447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7447), - [anon_sym_TILDE] = ACTIONS(7445), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7447), - [anon_sym_AMP_AMP] = ACTIONS(7445), - [anon_sym_inline] = ACTIONS(7447), - [anon_sym_restrict] = ACTIONS(7447), + [4441] = { + [anon_sym_LPAREN2] = ACTIONS(7430), + [anon_sym_struct] = ACTIONS(7432), + [sym_auto] = ACTIONS(7432), + [anon_sym_signed] = ACTIONS(7432), + [anon_sym_mutable] = ACTIONS(7432), + [anon_sym_long] = ACTIONS(7432), + [anon_sym_COLON_COLON] = ACTIONS(7430), + [anon_sym_using] = ACTIONS(7432), + [aux_sym_preproc_if_token2] = ACTIONS(7432), + [sym_preproc_directive] = ACTIONS(7432), + [aux_sym_preproc_if_token1] = ACTIONS(7432), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_static] = ACTIONS(7432), + [anon_sym_volatile] = ACTIONS(7432), + [anon_sym_typedef] = ACTIONS(7432), + [anon_sym_STAR] = ACTIONS(7430), + [anon_sym_union] = ACTIONS(7432), + [anon_sym_typename] = ACTIONS(7432), + [anon_sym_private] = ACTIONS(7432), + [anon_sym_explicit] = ACTIONS(7432), + [anon_sym_short] = ACTIONS(7432), + [sym_identifier] = ACTIONS(7432), + [sym_operator_name] = ACTIONS(7430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7432), + [anon_sym_register] = ACTIONS(7432), + [anon_sym__Atomic] = ACTIONS(7432), + [anon_sym_const] = ACTIONS(7432), + [anon_sym_extern] = ACTIONS(7432), + [anon_sym_LBRACK] = ACTIONS(7432), + [anon_sym_virtual] = ACTIONS(7432), + [anon_sym_enum] = ACTIONS(7432), + [anon_sym_class] = ACTIONS(7432), + [anon_sym_constexpr] = ACTIONS(7432), + [sym_primitive_type] = ACTIONS(7432), + [anon_sym_unsigned] = ACTIONS(7432), + [anon_sym_public] = ACTIONS(7432), + [anon_sym_protected] = ACTIONS(7432), + [anon_sym_friend] = ACTIONS(7432), + [anon_sym_template] = ACTIONS(7432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7432), + [anon_sym_TILDE] = ACTIONS(7430), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7432), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_inline] = ACTIONS(7432), + [anon_sym_restrict] = ACTIONS(7432), }, - [4471] = { - [sym_bitfield_clause] = STATE(4704), - [aux_sym_field_declaration_repeat1] = STATE(3485), - [sym_initializer_list] = STATE(4704), - [anon_sym_COLON] = ACTIONS(5122), + [4442] = { + [sym_bitfield_clause] = STATE(4675), + [sym_initializer_list] = STATE(4675), + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(5213), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(10172), - [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_EQ] = ACTIONS(10138), + [anon_sym_COMMA] = ACTIONS(5211), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(10170), + [anon_sym_SEMI] = ACTIONS(10136), }, - [4472] = { + [4443] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10190), + [anon_sym_SEMI] = ACTIONS(10160), }, - [4473] = { + [4444] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10192), + [anon_sym_SEMI] = ACTIONS(10162), }, - [4474] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_private] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_virtual] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_public] = ACTIONS(962), - [anon_sym_protected] = ACTIONS(962), - [anon_sym_friend] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), + [4445] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [aux_sym_preproc_if_token2] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_private] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_virtual] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_public] = ACTIONS(966), + [anon_sym_protected] = ACTIONS(966), + [anon_sym_friend] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_restrict] = ACTIONS(966), }, - [4475] = { - [sym_goto_statement] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_logical_expression] = STATE(55), - [sym_for_range_loop] = STATE(542), - [sym_cast_expression] = STATE(55), - [sym_declaration] = STATE(542), + [4446] = { + [sym_goto_statement] = STATE(543), + [sym_preproc_function_def] = STATE(543), + [sym_logical_expression] = STATE(58), + [sym_try_statement] = STATE(543), + [sym_cast_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), [sym_field_expression] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [sym_type_qualifier] = STATE(48), - [sym_union_specifier] = STATE(53), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_template_function] = STATE(49), - [sym_conditional_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_scoped_type_identifier] = STATE(48), + [sym_declaration] = STATE(543), + [aux_sym_function_definition_repeat1] = STATE(49), + [sym_type_qualifier] = STATE(56), + [sym_union_specifier] = STATE(55), + [sym_switch_statement] = STATE(543), + [sym_structured_binding_declarator] = STATE(60), + [sym_return_statement] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_conditional_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), [sym_subscript_expression] = STATE(47), - [sym_scoped_identifier] = STATE(50), - [sym_type_definition] = STATE(542), - [sym_function_declarator] = STATE(51), - [sym_string_literal] = STATE(52), - [sym_class_specifier] = STATE(53), - [sym__type_specifier] = STATE(53), - [sym_template_declaration] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_preproc_include] = STATE(542), - [sym_assignment_expression] = STATE(55), - [sym_preproc_ifdef] = STATE(542), - [sym_shift_expression] = STATE(55), - [sym_using_declaration] = STATE(542), + [sym_scoped_namespace_identifier] = STATE(51), + [sym_type_definition] = STATE(543), + [sym_function_declarator] = STATE(52), + [sym_string_literal] = STATE(53), + [aux_sym_sized_type_specifier_repeat1] = STATE(54), + [sym_class_specifier] = STATE(55), + [sym__type_specifier] = STATE(55), + [sym_template_instantiation] = STATE(543), + [sym_constructor_or_destructor_definition] = STATE(543), + [sym_reference_declarator] = STATE(60), + [sym_break_statement] = STATE(543), + [sym_preproc_include] = STATE(543), + [sym_assignment_expression] = STATE(58), + [sym_preproc_ifdef] = STATE(543), + [sym_shift_expression] = STATE(58), + [sym_for_range_loop] = STATE(543), [sym_call_expression] = STATE(47), - [sym_attribute] = STATE(62), - [sym_compound_statement] = STATE(542), - [sym_template_instantiation] = STATE(542), - [sym_constructor_or_destructor_definition] = STATE(542), - [sym_expression_statement] = STATE(542), - [sym_reference_declarator] = STATE(56), - [sym_do_statement] = STATE(542), - [sym_template_type] = STATE(54), - [sym__expression] = STATE(55), - [sym_preproc_def] = STATE(542), - [sym_bitwise_expression] = STATE(55), - [sym_new_expression] = STATE(55), - [sym_function_definition] = STATE(542), - [sym_destructor_name] = STATE(56), - [sym__declarator] = STATE(56), - [sym_compound_literal_expression] = STATE(55), - [sym_char_literal] = STATE(55), - [sym_array_declarator] = STATE(56), - [sym__empty_declaration] = STATE(542), - [aux_sym_translation_unit_repeat1] = STATE(542), - [sym_dependent_type] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_storage_class_specifier] = STATE(48), - [sym_alias_declaration] = STATE(542), - [sym_if_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym_comma_expression] = STATE(59), - [sym_preproc_call] = STATE(542), - [sym_equality_expression] = STATE(55), - [sym_try_statement] = STATE(542), - [sym_sizeof_expression] = STATE(55), - [sym__declaration_specifiers] = STATE(60), - [sym_parenthesized_expression] = STATE(55), - [sym_scoped_type_identifier] = STATE(61), - [sym_concatenated_string] = STATE(55), - [aux_sym_function_definition_repeat1] = STATE(62), - [sym_macro_type_specifier] = STATE(53), - [sym_lambda_expression] = STATE(55), - [sym_structured_binding_declaration] = STATE(542), - [sym_sized_type_specifier] = STATE(53), - [sym_continue_statement] = STATE(542), - [sym_preproc_if] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(56), + [sym_compound_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_template_function] = STATE(57), + [sym__expression] = STATE(58), + [sym_preproc_def] = STATE(543), + [sym_bitwise_expression] = STATE(58), + [sym_delete_expression] = STATE(58), + [sym_function_definition] = STATE(543), + [sym_scoped_identifier] = STATE(59), + [sym__declarator] = STATE(60), + [sym_compound_literal_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_array_declarator] = STATE(60), + [sym__empty_declaration] = STATE(543), + [sym_storage_class_specifier] = STATE(56), + [sym_dependent_type] = STATE(55), + [sym_struct_specifier] = STATE(55), + [sym_if_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_comma_expression] = STATE(62), + [sym_preproc_call] = STATE(543), + [sym_equality_expression] = STATE(58), + [sym_using_declaration] = STATE(543), + [sym_sizeof_expression] = STATE(58), + [sym__declaration_specifiers] = STATE(63), + [sym_parenthesized_expression] = STATE(58), + [sym_attribute] = STATE(49), + [sym_concatenated_string] = STATE(58), + [sym_macro_type_specifier] = STATE(55), + [sym_template_declaration] = STATE(543), + [sym_sized_type_specifier] = STATE(55), + [sym_template_type] = STATE(64), + [sym_continue_statement] = STATE(543), + [sym_preproc_if] = STATE(543), [sym_pointer_expression] = STATE(47), - [sym_namespace_definition] = STATE(542), - [sym_math_expression] = STATE(55), - [sym_lambda_capture_specifier] = STATE(63), - [sym_linkage_specification] = STATE(542), - [sym_pointer_declarator] = STATE(56), - [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(65), - [sym_enum_specifier] = STATE(53), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), + [sym_new_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_destructor_name] = STATE(60), + [sym_linkage_specification] = STATE(543), + [sym_pointer_declarator] = STATE(60), + [sym_alias_declaration] = STATE(543), + [aux_sym_translation_unit_repeat1] = STATE(543), + [sym_enum_specifier] = STATE(55), + [sym_labeled_statement] = STATE(543), + [sym_while_statement] = STATE(543), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [sym_true] = ACTIONS(9), @@ -181463,7 +180842,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), - [anon_sym_RBRACE] = ACTIONS(10194), + [anon_sym_RBRACE] = ACTIONS(10164), [anon_sym_STAR] = ACTIONS(65), [anon_sym_union] = ACTIONS(67), [anon_sym_typename] = ACTIONS(69), @@ -181495,168 +180874,753 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(11), }, - [4476] = { - [sym_function_field_declarator] = STATE(4723), - [sym_reference_field_declarator] = STATE(4723), - [sym_template_method] = STATE(4723), - [sym_template_type] = STATE(949), - [sym_pointer_field_declarator] = STATE(4723), - [sym_scoped_namespace_identifier] = STATE(949), - [sym__field_declarator] = STATE(4723), - [sym_scoped_field_identifier] = STATE(1460), - [sym_array_field_declarator] = STATE(4723), - [sym_bitfield_clause] = STATE(4704), - [sym_scoped_type_identifier] = STATE(174), - [sym_initializer_list] = STATE(4704), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(10170), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [sym_identifier] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(10172), - [sym_operator_name] = ACTIONS(10196), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), + [4447] = { + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3882), + [sym_auto] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3882), + [anon_sym_mutable] = ACTIONS(3882), + [anon_sym_long] = ACTIONS(3882), + [anon_sym_COLON_COLON] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3882), + [aux_sym_preproc_if_token2] = ACTIONS(3882), + [sym_preproc_directive] = ACTIONS(3882), + [aux_sym_preproc_if_token1] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3882), + [anon_sym_static] = ACTIONS(3882), + [anon_sym_volatile] = ACTIONS(3882), + [anon_sym_typedef] = ACTIONS(3882), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3882), + [anon_sym_typename] = ACTIONS(3882), + [anon_sym_private] = ACTIONS(3882), + [anon_sym_explicit] = ACTIONS(3882), + [anon_sym_short] = ACTIONS(3882), + [sym_identifier] = ACTIONS(3882), + [sym_operator_name] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3882), + [anon_sym_register] = ACTIONS(3882), + [anon_sym__Atomic] = ACTIONS(3882), + [anon_sym_const] = ACTIONS(3882), + [anon_sym_extern] = ACTIONS(3882), + [anon_sym_LBRACK] = ACTIONS(3882), + [anon_sym_virtual] = ACTIONS(3882), + [anon_sym_enum] = ACTIONS(3882), + [anon_sym_class] = ACTIONS(3882), + [anon_sym_constexpr] = ACTIONS(3882), + [sym_primitive_type] = ACTIONS(3882), + [anon_sym_unsigned] = ACTIONS(3882), + [anon_sym_public] = ACTIONS(3882), + [anon_sym_protected] = ACTIONS(3882), + [anon_sym_friend] = ACTIONS(3882), + [anon_sym_template] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3882), + [anon_sym_restrict] = ACTIONS(3882), }, - [4477] = { - [sym_compound_statement] = STATE(4725), - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(4704), - [aux_sym_field_declaration_repeat1] = STATE(4707), - [sym_initializer_list] = STATE(4704), - [sym_delete_method_clause] = STATE(4725), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(10170), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(10198), - [anon_sym_LBRACE] = ACTIONS(9674), + [4448] = { + [sym_compound_statement] = STATE(4696), + [sym_default_method_clause] = STATE(4696), + [sym_delete_method_clause] = STATE(4696), + [anon_sym_EQ] = ACTIONS(8680), + [anon_sym_LBRACE] = ACTIONS(8682), [sym_comment] = ACTIONS(3), }, - [4478] = { - [anon_sym_LPAREN2] = ACTIONS(8764), - [anon_sym_struct] = ACTIONS(8766), - [sym_auto] = ACTIONS(8766), - [anon_sym_signed] = ACTIONS(8766), - [anon_sym_mutable] = ACTIONS(8766), - [anon_sym_long] = ACTIONS(8766), - [anon_sym_COLON_COLON] = ACTIONS(8764), - [anon_sym_using] = ACTIONS(8766), - [aux_sym_preproc_else_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token2] = ACTIONS(8766), - [sym_preproc_directive] = ACTIONS(8766), - [aux_sym_preproc_if_token1] = ACTIONS(8766), - [anon_sym_AMP] = ACTIONS(8766), - [anon_sym_static] = ACTIONS(8766), - [anon_sym_volatile] = ACTIONS(8766), - [anon_sym_typedef] = ACTIONS(8766), - [anon_sym_STAR] = ACTIONS(8764), - [anon_sym_union] = ACTIONS(8766), - [anon_sym_typename] = ACTIONS(8766), - [anon_sym_private] = ACTIONS(8766), - [anon_sym_explicit] = ACTIONS(8766), - [anon_sym_short] = ACTIONS(8766), - [sym_identifier] = ACTIONS(8766), - [sym_operator_name] = ACTIONS(8764), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), - [anon_sym_register] = ACTIONS(8766), - [anon_sym__Atomic] = ACTIONS(8766), - [anon_sym_const] = ACTIONS(8766), - [anon_sym_extern] = ACTIONS(8766), - [anon_sym_virtual] = ACTIONS(8766), - [anon_sym_enum] = ACTIONS(8766), - [anon_sym_class] = ACTIONS(8766), - [anon_sym_constexpr] = ACTIONS(8766), - [sym_primitive_type] = ACTIONS(8766), - [anon_sym_unsigned] = ACTIONS(8766), - [anon_sym_public] = ACTIONS(8766), - [anon_sym_protected] = ACTIONS(8766), - [anon_sym_friend] = ACTIONS(8766), - [anon_sym_template] = ACTIONS(8766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8764), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), - [anon_sym_TILDE] = ACTIONS(8764), - [aux_sym_preproc_elif_token1] = ACTIONS(8766), - [aux_sym_preproc_def_token1] = ACTIONS(8766), - [anon_sym_AMP_AMP] = ACTIONS(8764), - [anon_sym_inline] = ACTIONS(8766), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(8766), + [4449] = { + [anon_sym_LPAREN2] = ACTIONS(8714), + [anon_sym_struct] = ACTIONS(8716), + [sym_auto] = ACTIONS(8716), + [anon_sym_signed] = ACTIONS(8716), + [anon_sym_mutable] = ACTIONS(8716), + [anon_sym_long] = ACTIONS(8716), + [anon_sym_COLON_COLON] = ACTIONS(8714), + [anon_sym_using] = ACTIONS(8716), + [aux_sym_preproc_else_token1] = ACTIONS(8716), + [aux_sym_preproc_if_token2] = ACTIONS(8716), + [sym_preproc_directive] = ACTIONS(8716), + [aux_sym_preproc_if_token1] = ACTIONS(8716), + [anon_sym_AMP] = ACTIONS(8716), + [anon_sym_static] = ACTIONS(8716), + [anon_sym_volatile] = ACTIONS(8716), + [anon_sym_typedef] = ACTIONS(8716), + [anon_sym_STAR] = ACTIONS(8714), + [anon_sym_union] = ACTIONS(8716), + [anon_sym_typename] = ACTIONS(8716), + [anon_sym_private] = ACTIONS(8716), + [anon_sym_explicit] = ACTIONS(8716), + [anon_sym_short] = ACTIONS(8716), + [sym_identifier] = ACTIONS(8716), + [sym_operator_name] = ACTIONS(8714), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8716), + [anon_sym_register] = ACTIONS(8716), + [anon_sym__Atomic] = ACTIONS(8716), + [anon_sym_const] = ACTIONS(8716), + [anon_sym_extern] = ACTIONS(8716), + [anon_sym_LBRACK] = ACTIONS(8716), + [anon_sym_virtual] = ACTIONS(8716), + [anon_sym_enum] = ACTIONS(8716), + [anon_sym_class] = ACTIONS(8716), + [anon_sym_constexpr] = ACTIONS(8716), + [sym_primitive_type] = ACTIONS(8716), + [anon_sym_unsigned] = ACTIONS(8716), + [anon_sym_public] = ACTIONS(8716), + [anon_sym_protected] = ACTIONS(8716), + [anon_sym_friend] = ACTIONS(8716), + [anon_sym_template] = ACTIONS(8716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8714), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8716), + [anon_sym_TILDE] = ACTIONS(8714), + [aux_sym_preproc_elif_token1] = ACTIONS(8716), + [aux_sym_preproc_def_token1] = ACTIONS(8716), + [anon_sym_AMP_AMP] = ACTIONS(8714), + [anon_sym_inline] = ACTIONS(8716), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(8716), }, - [4479] = { - [aux_sym_preproc_if_token2] = ACTIONS(10200), + [4450] = { + [aux_sym_preproc_if_token2] = ACTIONS(10166), [sym_comment] = ACTIONS(3), }, - [4480] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(4728), - [anon_sym_LPAREN2] = ACTIONS(587), + [4451] = { + [aux_sym_type_definition_repeat2] = STATE(4699), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10202), + [anon_sym_SEMI] = ACTIONS(10168), }, - [4481] = { - [anon_sym_LPAREN2] = ACTIONS(4151), - [anon_sym_struct] = ACTIONS(4149), - [sym_auto] = ACTIONS(4149), - [anon_sym_signed] = ACTIONS(4149), - [anon_sym_mutable] = ACTIONS(4149), - [anon_sym_long] = ACTIONS(4149), - [anon_sym_COLON_COLON] = ACTIONS(4151), - [anon_sym_using] = ACTIONS(4149), - [aux_sym_preproc_else_token1] = ACTIONS(4149), - [aux_sym_preproc_if_token2] = ACTIONS(4149), - [sym_preproc_directive] = ACTIONS(4149), - [aux_sym_preproc_if_token1] = ACTIONS(4149), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_volatile] = ACTIONS(4149), - [anon_sym_typedef] = ACTIONS(4149), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_union] = ACTIONS(4149), - [anon_sym_typename] = ACTIONS(4149), - [anon_sym_private] = ACTIONS(4149), - [anon_sym_explicit] = ACTIONS(4149), - [anon_sym_short] = ACTIONS(4149), - [sym_identifier] = ACTIONS(4149), - [sym_operator_name] = ACTIONS(4151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4149), - [anon_sym_register] = ACTIONS(4149), - [anon_sym__Atomic] = ACTIONS(4149), - [anon_sym_const] = ACTIONS(4149), - [anon_sym_extern] = ACTIONS(4149), - [anon_sym_virtual] = ACTIONS(4149), - [anon_sym_enum] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_constexpr] = ACTIONS(4149), - [sym_primitive_type] = ACTIONS(4149), - [anon_sym_unsigned] = ACTIONS(4149), - [anon_sym_public] = ACTIONS(4149), - [anon_sym_protected] = ACTIONS(4149), - [anon_sym_friend] = ACTIONS(4149), - [anon_sym_template] = ACTIONS(4149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4149), - [anon_sym_TILDE] = ACTIONS(4151), - [aux_sym_preproc_elif_token1] = ACTIONS(4149), - [aux_sym_preproc_def_token1] = ACTIONS(4149), - [anon_sym_AMP_AMP] = ACTIONS(4151), - [anon_sym_inline] = ACTIONS(4149), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(4149), + [4452] = { + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_struct] = ACTIONS(4147), + [sym_auto] = ACTIONS(4147), + [anon_sym_signed] = ACTIONS(4147), + [anon_sym_mutable] = ACTIONS(4147), + [anon_sym_long] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_using] = ACTIONS(4147), + [aux_sym_preproc_else_token1] = ACTIONS(4147), + [aux_sym_preproc_if_token2] = ACTIONS(4147), + [sym_preproc_directive] = ACTIONS(4147), + [aux_sym_preproc_if_token1] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_static] = ACTIONS(4147), + [anon_sym_volatile] = ACTIONS(4147), + [anon_sym_typedef] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_union] = ACTIONS(4147), + [anon_sym_typename] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_explicit] = ACTIONS(4147), + [anon_sym_short] = ACTIONS(4147), + [sym_identifier] = ACTIONS(4147), + [sym_operator_name] = ACTIONS(4149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4147), + [anon_sym_register] = ACTIONS(4147), + [anon_sym__Atomic] = ACTIONS(4147), + [anon_sym_const] = ACTIONS(4147), + [anon_sym_extern] = ACTIONS(4147), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_virtual] = ACTIONS(4147), + [anon_sym_enum] = ACTIONS(4147), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_constexpr] = ACTIONS(4147), + [sym_primitive_type] = ACTIONS(4147), + [anon_sym_unsigned] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_friend] = ACTIONS(4147), + [anon_sym_template] = ACTIONS(4147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4147), + [anon_sym_TILDE] = ACTIONS(4149), + [aux_sym_preproc_elif_token1] = ACTIONS(4147), + [aux_sym_preproc_def_token1] = ACTIONS(4147), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_inline] = ACTIONS(4147), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(4147), }, - [4482] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [4453] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10202), + [anon_sym_SEMI] = ACTIONS(10168), }, - [4483] = { + [4454] = { + [anon_sym_LPAREN2] = ACTIONS(8768), + [anon_sym_struct] = ACTIONS(8770), + [sym_auto] = ACTIONS(8770), + [anon_sym_signed] = ACTIONS(8770), + [anon_sym_mutable] = ACTIONS(8770), + [anon_sym_long] = ACTIONS(8770), + [anon_sym_COLON_COLON] = ACTIONS(8768), + [anon_sym_using] = ACTIONS(8770), + [aux_sym_preproc_else_token1] = ACTIONS(8770), + [aux_sym_preproc_if_token2] = ACTIONS(8770), + [sym_preproc_directive] = ACTIONS(8770), + [aux_sym_preproc_if_token1] = ACTIONS(8770), + [anon_sym_AMP] = ACTIONS(8770), + [anon_sym_static] = ACTIONS(8770), + [anon_sym_volatile] = ACTIONS(8770), + [anon_sym_typedef] = ACTIONS(8770), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_union] = ACTIONS(8770), + [anon_sym_typename] = ACTIONS(8770), + [anon_sym_private] = ACTIONS(8770), + [anon_sym_explicit] = ACTIONS(8770), + [anon_sym_short] = ACTIONS(8770), + [sym_identifier] = ACTIONS(8770), + [sym_operator_name] = ACTIONS(8768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8770), + [anon_sym_register] = ACTIONS(8770), + [anon_sym__Atomic] = ACTIONS(8770), + [anon_sym_const] = ACTIONS(8770), + [anon_sym_extern] = ACTIONS(8770), + [anon_sym_LBRACK] = ACTIONS(8770), + [anon_sym_virtual] = ACTIONS(8770), + [anon_sym_enum] = ACTIONS(8770), + [anon_sym_class] = ACTIONS(8770), + [anon_sym_constexpr] = ACTIONS(8770), + [sym_primitive_type] = ACTIONS(8770), + [anon_sym_unsigned] = ACTIONS(8770), + [anon_sym_public] = ACTIONS(8770), + [anon_sym_protected] = ACTIONS(8770), + [anon_sym_friend] = ACTIONS(8770), + [anon_sym_template] = ACTIONS(8770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8770), + [anon_sym_TILDE] = ACTIONS(8768), + [aux_sym_preproc_elif_token1] = ACTIONS(8770), + [aux_sym_preproc_def_token1] = ACTIONS(8770), + [anon_sym_AMP_AMP] = ACTIONS(8768), + [anon_sym_inline] = ACTIONS(8770), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(8770), + }, + [4455] = { + [aux_sym_preproc_if_token2] = ACTIONS(10170), + [sym_comment] = ACTIONS(3), + }, + [4456] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10172), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [4457] = { + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(10172), + }, + [4458] = { + [anon_sym_LPAREN2] = ACTIONS(8776), + [anon_sym_struct] = ACTIONS(8778), + [sym_auto] = ACTIONS(8778), + [anon_sym_signed] = ACTIONS(8778), + [anon_sym_mutable] = ACTIONS(8778), + [anon_sym_long] = ACTIONS(8778), + [anon_sym_COLON_COLON] = ACTIONS(8776), + [anon_sym_using] = ACTIONS(8778), + [aux_sym_preproc_else_token1] = ACTIONS(8778), + [aux_sym_preproc_if_token2] = ACTIONS(8778), + [sym_preproc_directive] = ACTIONS(8778), + [aux_sym_preproc_if_token1] = ACTIONS(8778), + [anon_sym_AMP] = ACTIONS(8778), + [anon_sym_static] = ACTIONS(8778), + [anon_sym_volatile] = ACTIONS(8778), + [anon_sym_typedef] = ACTIONS(8778), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_union] = ACTIONS(8778), + [anon_sym_typename] = ACTIONS(8778), + [anon_sym_private] = ACTIONS(8778), + [anon_sym_explicit] = ACTIONS(8778), + [anon_sym_short] = ACTIONS(8778), + [sym_identifier] = ACTIONS(8778), + [sym_operator_name] = ACTIONS(8776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8778), + [anon_sym_register] = ACTIONS(8778), + [anon_sym__Atomic] = ACTIONS(8778), + [anon_sym_const] = ACTIONS(8778), + [anon_sym_extern] = ACTIONS(8778), + [anon_sym_LBRACK] = ACTIONS(8778), + [anon_sym_virtual] = ACTIONS(8778), + [anon_sym_enum] = ACTIONS(8778), + [anon_sym_class] = ACTIONS(8778), + [anon_sym_constexpr] = ACTIONS(8778), + [sym_primitive_type] = ACTIONS(8778), + [anon_sym_unsigned] = ACTIONS(8778), + [anon_sym_public] = ACTIONS(8778), + [anon_sym_protected] = ACTIONS(8778), + [anon_sym_friend] = ACTIONS(8778), + [anon_sym_template] = ACTIONS(8778), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8778), + [anon_sym_TILDE] = ACTIONS(8776), + [aux_sym_preproc_elif_token1] = ACTIONS(8778), + [aux_sym_preproc_def_token1] = ACTIONS(8778), + [anon_sym_AMP_AMP] = ACTIONS(8776), + [anon_sym_inline] = ACTIONS(8778), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(8778), + }, + [4459] = { + [sym_template_function] = STATE(4702), + [sym__expression] = STATE(4702), + [sym_logical_expression] = STATE(4702), + [sym_bitwise_expression] = STATE(4702), + [sym_cast_expression] = STATE(4702), + [sym_delete_expression] = STATE(4702), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4702), + [sym_lambda_expression] = STATE(4702), + [sym_char_literal] = STATE(4702), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4702), + [sym_equality_expression] = STATE(4702), + [sym_relational_expression] = STATE(4702), + [sym_sizeof_expression] = STATE(4702), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4703), + [sym_parenthesized_expression] = STATE(4702), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4702), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4702), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4702), + [sym_math_expression] = STATE(4702), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4702), + [sym_raw_string_literal] = ACTIONS(10174), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10176), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10176), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10174), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10176), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10176), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [4460] = { + [sym_bitfield_clause] = STATE(4703), + [sym_initializer_list] = STATE(4703), + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(5213), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(10178), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(10172), + }, + [4461] = { + [sym_compound_statement] = STATE(4706), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(4707), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(8758), + [anon_sym_SEMI] = ACTIONS(10180), + }, + [4462] = { + [aux_sym_declaration_repeat1] = STATE(4707), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10180), + }, + [4463] = { + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_struct] = ACTIONS(4111), + [sym_auto] = ACTIONS(4111), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_using] = ACTIONS(4111), + [aux_sym_preproc_else_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token2] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_private] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [sym_identifier] = ACTIONS(4111), + [sym_operator_name] = ACTIONS(4113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_public] = ACTIONS(4111), + [anon_sym_protected] = ACTIONS(4111), + [anon_sym_friend] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4113), + [aux_sym_preproc_elif_token1] = ACTIONS(4111), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(4111), + }, + [4464] = { + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_struct] = ACTIONS(4115), + [sym_auto] = ACTIONS(4115), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_using] = ACTIONS(4115), + [aux_sym_preproc_else_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token2] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_private] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [sym_identifier] = ACTIONS(4115), + [sym_operator_name] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_public] = ACTIONS(4115), + [anon_sym_protected] = ACTIONS(4115), + [anon_sym_friend] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [anon_sym_TILDE] = ACTIONS(4117), + [aux_sym_preproc_elif_token1] = ACTIONS(4115), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(4115), + }, + [4465] = { + [aux_sym_declaration_repeat1] = STATE(2034), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10180), + }, + [4466] = { + [anon_sym_LPAREN2] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1915), + [sym_auto] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_mutable] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1915), + [aux_sym_preproc_else_token1] = ACTIONS(1915), + [aux_sym_preproc_if_token2] = ACTIONS(1915), + [sym_preproc_directive] = ACTIONS(1915), + [aux_sym_preproc_if_token1] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_volatile] = ACTIONS(1915), + [anon_sym_typedef] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_typename] = ACTIONS(1915), + [anon_sym_private] = ACTIONS(1915), + [anon_sym_explicit] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1915), + [sym_operator_name] = ACTIONS(1917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym__Atomic] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_virtual] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_constexpr] = ACTIONS(1915), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_public] = ACTIONS(1915), + [anon_sym_protected] = ACTIONS(1915), + [anon_sym_friend] = ACTIONS(1915), + [anon_sym_template] = ACTIONS(1915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1917), + [aux_sym_preproc_elif_token1] = ACTIONS(1915), + [aux_sym_preproc_def_token1] = ACTIONS(1915), + [anon_sym_AMP_AMP] = ACTIONS(1917), + [anon_sym_inline] = ACTIONS(1915), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(1915), + }, + [4467] = { + [aux_sym_preproc_if_token2] = ACTIONS(10182), + [sym_comment] = ACTIONS(3), + }, + [4468] = { + [anon_sym_LPAREN2] = ACTIONS(5903), + [anon_sym_struct] = ACTIONS(5901), + [sym_auto] = ACTIONS(5901), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_mutable] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_COLON_COLON] = ACTIONS(5903), + [anon_sym_using] = ACTIONS(5901), + [aux_sym_preproc_else_token1] = ACTIONS(5901), + [aux_sym_preproc_if_token2] = ACTIONS(5901), + [sym_preproc_directive] = ACTIONS(5901), + [aux_sym_preproc_if_token1] = ACTIONS(5901), + [anon_sym_AMP] = ACTIONS(5901), + [anon_sym_static] = ACTIONS(5901), + [anon_sym_volatile] = ACTIONS(5901), + [anon_sym_typedef] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_union] = ACTIONS(5901), + [anon_sym_typename] = ACTIONS(5901), + [anon_sym_private] = ACTIONS(5901), + [anon_sym_explicit] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [sym_identifier] = ACTIONS(5901), + [sym_operator_name] = ACTIONS(5903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5901), + [anon_sym_register] = ACTIONS(5901), + [anon_sym__Atomic] = ACTIONS(5901), + [anon_sym_const] = ACTIONS(5901), + [anon_sym_extern] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5901), + [anon_sym_virtual] = ACTIONS(5901), + [anon_sym_enum] = ACTIONS(5901), + [anon_sym_class] = ACTIONS(5901), + [anon_sym_constexpr] = ACTIONS(5901), + [sym_primitive_type] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_public] = ACTIONS(5901), + [anon_sym_protected] = ACTIONS(5901), + [anon_sym_friend] = ACTIONS(5901), + [anon_sym_template] = ACTIONS(5901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5901), + [anon_sym_TILDE] = ACTIONS(5903), + [aux_sym_preproc_elif_token1] = ACTIONS(5901), + [aux_sym_preproc_def_token1] = ACTIONS(5901), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_inline] = ACTIONS(5901), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5901), + }, + [4469] = { + [anon_sym_LPAREN2] = ACTIONS(5915), + [anon_sym_struct] = ACTIONS(5913), + [sym_auto] = ACTIONS(5913), + [anon_sym_signed] = ACTIONS(5913), + [anon_sym_mutable] = ACTIONS(5913), + [anon_sym_long] = ACTIONS(5913), + [anon_sym_COLON_COLON] = ACTIONS(5915), + [anon_sym_using] = ACTIONS(5913), + [aux_sym_preproc_else_token1] = ACTIONS(5913), + [aux_sym_preproc_if_token2] = ACTIONS(5913), + [sym_preproc_directive] = ACTIONS(5913), + [aux_sym_preproc_if_token1] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_static] = ACTIONS(5913), + [anon_sym_volatile] = ACTIONS(5913), + [anon_sym_typedef] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_union] = ACTIONS(5913), + [anon_sym_typename] = ACTIONS(5913), + [anon_sym_private] = ACTIONS(5913), + [anon_sym_explicit] = ACTIONS(5913), + [anon_sym_short] = ACTIONS(5913), + [sym_identifier] = ACTIONS(5913), + [sym_operator_name] = ACTIONS(5915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5913), + [anon_sym_register] = ACTIONS(5913), + [anon_sym__Atomic] = ACTIONS(5913), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_extern] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_virtual] = ACTIONS(5913), + [anon_sym_enum] = ACTIONS(5913), + [anon_sym_class] = ACTIONS(5913), + [anon_sym_constexpr] = ACTIONS(5913), + [sym_primitive_type] = ACTIONS(5913), + [anon_sym_unsigned] = ACTIONS(5913), + [anon_sym_public] = ACTIONS(5913), + [anon_sym_protected] = ACTIONS(5913), + [anon_sym_friend] = ACTIONS(5913), + [anon_sym_template] = ACTIONS(5913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5913), + [anon_sym_TILDE] = ACTIONS(5915), + [aux_sym_preproc_elif_token1] = ACTIONS(5913), + [aux_sym_preproc_def_token1] = ACTIONS(5913), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_inline] = ACTIONS(5913), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5913), + }, + [4470] = { + [anon_sym_LF] = ACTIONS(10184), + [sym_comment] = ACTIONS(244), + }, + [4471] = { + [sym_parameter_list] = STATE(2505), + [sym_bitfield_clause] = STATE(4703), + [sym_initializer_list] = STATE(4703), + [aux_sym_field_declaration_repeat1] = STATE(4709), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(10172), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(10178), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + }, + [4472] = { + [sym_template_function] = STATE(4702), + [sym__expression] = STATE(4702), + [sym_logical_expression] = STATE(4702), + [sym_bitwise_expression] = STATE(4702), + [sym_cast_expression] = STATE(4702), + [sym_delete_expression] = STATE(4702), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4702), + [sym_lambda_expression] = STATE(4702), + [sym_char_literal] = STATE(4702), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4702), + [sym_equality_expression] = STATE(4702), + [sym_relational_expression] = STATE(4702), + [sym_sizeof_expression] = STATE(4702), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4703), + [sym_parenthesized_expression] = STATE(4702), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4702), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4702), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4702), + [sym_math_expression] = STATE(4702), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4702), + [sym_raw_string_literal] = ACTIONS(10174), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10176), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10176), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10174), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10176), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10176), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(9722), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [4473] = { [anon_sym_LPAREN2] = ACTIONS(8804), [anon_sym_struct] = ACTIONS(8806), [sym_auto] = ACTIONS(8806), @@ -181686,6 +181650,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(8806), [anon_sym_const] = ACTIONS(8806), [anon_sym_extern] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8806), [anon_sym_virtual] = ACTIONS(8806), [anon_sym_enum] = ACTIONS(8806), [anon_sym_class] = ACTIONS(8806), @@ -181706,1644 +181671,1091 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_restrict] = ACTIONS(8806), }, - [4484] = { - [aux_sym_preproc_if_token2] = ACTIONS(10204), + [4474] = { + [sym_template_function] = STATE(885), + [sym__expression] = STATE(885), + [sym_logical_expression] = STATE(885), + [sym_bitwise_expression] = STATE(885), + [sym_cast_expression] = STATE(885), + [sym_delete_expression] = STATE(885), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(885), + [sym_lambda_expression] = STATE(885), + [sym_char_literal] = STATE(885), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(885), + [sym_equality_expression] = STATE(885), + [sym_relational_expression] = STATE(885), + [sym_sizeof_expression] = STATE(885), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(885), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(885), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(885), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(885), + [sym_math_expression] = STATE(885), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(885), + [sym_raw_string_literal] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1587), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(9728), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), + }, + [4475] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [aux_sym_preproc_else_token1] = ACTIONS(966), + [aux_sym_preproc_if_token2] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_private] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_virtual] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_public] = ACTIONS(966), + [anon_sym_protected] = ACTIONS(966), + [anon_sym_friend] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [aux_sym_preproc_elif_token1] = ACTIONS(966), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_restrict] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + }, + [4476] = { + [anon_sym_LPAREN2] = ACTIONS(6128), + [anon_sym_struct] = ACTIONS(6126), + [sym_auto] = ACTIONS(6126), + [anon_sym_signed] = ACTIONS(6126), + [anon_sym_mutable] = ACTIONS(6126), + [anon_sym_long] = ACTIONS(6126), + [anon_sym_COLON_COLON] = ACTIONS(6128), + [anon_sym_using] = ACTIONS(6126), + [aux_sym_preproc_else_token1] = ACTIONS(6126), + [aux_sym_preproc_if_token2] = ACTIONS(6126), + [sym_preproc_directive] = ACTIONS(6126), + [aux_sym_preproc_if_token1] = ACTIONS(6126), + [anon_sym_AMP] = ACTIONS(6126), + [anon_sym_static] = ACTIONS(6126), + [anon_sym_volatile] = ACTIONS(6126), + [anon_sym_typedef] = ACTIONS(6126), + [anon_sym_STAR] = ACTIONS(6128), + [anon_sym_union] = ACTIONS(6126), + [anon_sym_typename] = ACTIONS(6126), + [anon_sym_private] = ACTIONS(6126), + [anon_sym_explicit] = ACTIONS(6126), + [anon_sym_short] = ACTIONS(6126), + [sym_identifier] = ACTIONS(6126), + [sym_operator_name] = ACTIONS(6128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6126), + [anon_sym_register] = ACTIONS(6126), + [anon_sym__Atomic] = ACTIONS(6126), + [anon_sym_const] = ACTIONS(6126), + [anon_sym_extern] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(6126), + [anon_sym_virtual] = ACTIONS(6126), + [anon_sym_enum] = ACTIONS(6126), + [anon_sym_class] = ACTIONS(6126), + [anon_sym_constexpr] = ACTIONS(6126), + [sym_primitive_type] = ACTIONS(6126), + [anon_sym_unsigned] = ACTIONS(6126), + [anon_sym_public] = ACTIONS(6126), + [anon_sym_protected] = ACTIONS(6126), + [anon_sym_friend] = ACTIONS(6126), + [anon_sym_template] = ACTIONS(6126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6126), + [anon_sym_TILDE] = ACTIONS(6128), + [aux_sym_preproc_elif_token1] = ACTIONS(6126), + [aux_sym_preproc_def_token1] = ACTIONS(6126), + [anon_sym_AMP_AMP] = ACTIONS(6128), + [anon_sym_inline] = ACTIONS(6126), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(6126), + }, + [4477] = { + [anon_sym_LPAREN2] = ACTIONS(6132), + [anon_sym_struct] = ACTIONS(6130), + [sym_auto] = ACTIONS(6130), + [anon_sym_signed] = ACTIONS(6130), + [anon_sym_mutable] = ACTIONS(6130), + [anon_sym_long] = ACTIONS(6130), + [anon_sym_COLON_COLON] = ACTIONS(6132), + [anon_sym_using] = ACTIONS(6130), + [aux_sym_preproc_else_token1] = ACTIONS(6130), + [aux_sym_preproc_if_token2] = ACTIONS(6130), + [sym_preproc_directive] = ACTIONS(6130), + [aux_sym_preproc_if_token1] = ACTIONS(6130), + [anon_sym_AMP] = ACTIONS(6130), + [anon_sym_static] = ACTIONS(6130), + [anon_sym_volatile] = ACTIONS(6130), + [anon_sym_typedef] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(6132), + [anon_sym_union] = ACTIONS(6130), + [anon_sym_typename] = ACTIONS(6130), + [anon_sym_private] = ACTIONS(6130), + [anon_sym_explicit] = ACTIONS(6130), + [anon_sym_short] = ACTIONS(6130), + [sym_identifier] = ACTIONS(6130), + [sym_operator_name] = ACTIONS(6132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6130), + [anon_sym_register] = ACTIONS(6130), + [anon_sym__Atomic] = ACTIONS(6130), + [anon_sym_const] = ACTIONS(6130), + [anon_sym_extern] = ACTIONS(6130), + [anon_sym_LBRACK] = ACTIONS(6130), + [anon_sym_virtual] = ACTIONS(6130), + [anon_sym_enum] = ACTIONS(6130), + [anon_sym_class] = ACTIONS(6130), + [anon_sym_constexpr] = ACTIONS(6130), + [sym_primitive_type] = ACTIONS(6130), + [anon_sym_unsigned] = ACTIONS(6130), + [anon_sym_public] = ACTIONS(6130), + [anon_sym_protected] = ACTIONS(6130), + [anon_sym_friend] = ACTIONS(6130), + [anon_sym_template] = ACTIONS(6130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6130), + [anon_sym_TILDE] = ACTIONS(6132), + [aux_sym_preproc_elif_token1] = ACTIONS(6130), + [aux_sym_preproc_def_token1] = ACTIONS(6130), + [anon_sym_AMP_AMP] = ACTIONS(6132), + [anon_sym_inline] = ACTIONS(6130), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(6130), + }, + [4478] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2709), + [sym_auto] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_using] = ACTIONS(2709), + [aux_sym_preproc_else_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_private] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2709), + [sym_operator_name] = ACTIONS(2711), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_public] = ACTIONS(2709), + [anon_sym_protected] = ACTIONS(2709), + [anon_sym_friend] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [aux_sym_preproc_elif_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_inline] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(2709), + }, + [4479] = { + [anon_sym_LPAREN2] = ACTIONS(6136), + [anon_sym_struct] = ACTIONS(6134), + [sym_auto] = ACTIONS(6134), + [anon_sym_signed] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [anon_sym_long] = ACTIONS(6134), + [anon_sym_COLON_COLON] = ACTIONS(6136), + [anon_sym_using] = ACTIONS(6134), + [aux_sym_preproc_else_token1] = ACTIONS(6134), + [aux_sym_preproc_if_token2] = ACTIONS(6134), + [sym_preproc_directive] = ACTIONS(6134), + [aux_sym_preproc_if_token1] = ACTIONS(6134), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_static] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_typedef] = ACTIONS(6134), + [anon_sym_STAR] = ACTIONS(6136), + [anon_sym_union] = ACTIONS(6134), + [anon_sym_typename] = ACTIONS(6134), + [anon_sym_private] = ACTIONS(6134), + [anon_sym_explicit] = ACTIONS(6134), + [anon_sym_short] = ACTIONS(6134), + [sym_identifier] = ACTIONS(6134), + [sym_operator_name] = ACTIONS(6136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6134), + [anon_sym_register] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [anon_sym_const] = ACTIONS(6134), + [anon_sym_extern] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_virtual] = ACTIONS(6134), + [anon_sym_enum] = ACTIONS(6134), + [anon_sym_class] = ACTIONS(6134), + [anon_sym_constexpr] = ACTIONS(6134), + [sym_primitive_type] = ACTIONS(6134), + [anon_sym_unsigned] = ACTIONS(6134), + [anon_sym_public] = ACTIONS(6134), + [anon_sym_protected] = ACTIONS(6134), + [anon_sym_friend] = ACTIONS(6134), + [anon_sym_template] = ACTIONS(6134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6136), + [aux_sym_preproc_elif_token1] = ACTIONS(6134), + [aux_sym_preproc_def_token1] = ACTIONS(6134), + [anon_sym_AMP_AMP] = ACTIONS(6136), + [anon_sym_inline] = ACTIONS(6134), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(6134), + }, + [4480] = { + [anon_sym_LPAREN2] = ACTIONS(8297), + [anon_sym_struct] = ACTIONS(8295), + [sym_auto] = ACTIONS(8295), + [anon_sym_signed] = ACTIONS(8295), + [anon_sym_mutable] = ACTIONS(8295), + [anon_sym_long] = ACTIONS(8295), + [anon_sym_COLON_COLON] = ACTIONS(8297), + [anon_sym_using] = ACTIONS(8295), + [sym_preproc_directive] = ACTIONS(8295), + [aux_sym_preproc_if_token1] = ACTIONS(8295), + [anon_sym_AMP] = ACTIONS(8295), + [anon_sym_static] = ACTIONS(8295), + [anon_sym_volatile] = ACTIONS(8295), + [anon_sym_RBRACE] = ACTIONS(8297), + [anon_sym_typedef] = ACTIONS(8295), + [anon_sym_STAR] = ACTIONS(8297), + [anon_sym_union] = ACTIONS(8295), + [anon_sym_typename] = ACTIONS(8295), + [anon_sym_private] = ACTIONS(8295), + [anon_sym_explicit] = ACTIONS(8295), + [anon_sym_short] = ACTIONS(8295), + [sym_identifier] = ACTIONS(8295), + [sym_operator_name] = ACTIONS(8297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8295), + [anon_sym_register] = ACTIONS(8295), + [anon_sym__Atomic] = ACTIONS(8295), + [anon_sym_const] = ACTIONS(8295), + [anon_sym_extern] = ACTIONS(8295), + [anon_sym_LBRACK] = ACTIONS(8295), + [anon_sym_virtual] = ACTIONS(8295), + [anon_sym_enum] = ACTIONS(8295), + [anon_sym_class] = ACTIONS(8295), + [anon_sym_constexpr] = ACTIONS(8295), + [sym_primitive_type] = ACTIONS(8295), + [anon_sym_unsigned] = ACTIONS(8295), + [anon_sym_public] = ACTIONS(8295), + [anon_sym_protected] = ACTIONS(8295), + [anon_sym_friend] = ACTIONS(8295), + [anon_sym_template] = ACTIONS(8295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8295), + [anon_sym_TILDE] = ACTIONS(8297), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(8295), + [anon_sym_AMP_AMP] = ACTIONS(8297), + [anon_sym_inline] = ACTIONS(8295), + [anon_sym_restrict] = ACTIONS(8295), + }, + [4481] = { + [anon_sym_LPAREN2] = ACTIONS(10186), + [anon_sym_struct] = ACTIONS(10188), + [sym_auto] = ACTIONS(10188), + [anon_sym_signed] = ACTIONS(10188), + [anon_sym_mutable] = ACTIONS(10188), + [anon_sym_long] = ACTIONS(10188), + [anon_sym_COLON_COLON] = ACTIONS(10186), + [anon_sym_using] = ACTIONS(10188), + [sym_preproc_directive] = ACTIONS(10188), + [aux_sym_preproc_if_token1] = ACTIONS(10188), + [anon_sym_AMP] = ACTIONS(10188), + [anon_sym_static] = ACTIONS(10188), + [anon_sym_volatile] = ACTIONS(10188), + [anon_sym_RBRACE] = ACTIONS(10186), + [anon_sym_typedef] = ACTIONS(10188), + [anon_sym_STAR] = ACTIONS(10186), + [anon_sym_union] = ACTIONS(10188), + [anon_sym_typename] = ACTIONS(10188), + [anon_sym_private] = ACTIONS(10188), + [anon_sym_explicit] = ACTIONS(10188), + [anon_sym_short] = ACTIONS(10188), + [sym_identifier] = ACTIONS(10188), + [sym_operator_name] = ACTIONS(10186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10188), + [anon_sym_register] = ACTIONS(10188), + [anon_sym__Atomic] = ACTIONS(10188), + [anon_sym_const] = ACTIONS(10188), + [anon_sym_extern] = ACTIONS(10188), + [anon_sym_LBRACK] = ACTIONS(10188), + [anon_sym_virtual] = ACTIONS(10188), + [anon_sym_enum] = ACTIONS(10188), + [anon_sym_class] = ACTIONS(10188), + [anon_sym_constexpr] = ACTIONS(10188), + [sym_primitive_type] = ACTIONS(10188), + [anon_sym_unsigned] = ACTIONS(10188), + [anon_sym_public] = ACTIONS(10188), + [anon_sym_protected] = ACTIONS(10188), + [anon_sym_friend] = ACTIONS(10188), + [anon_sym_template] = ACTIONS(10188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10188), + [anon_sym_TILDE] = ACTIONS(10186), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(10188), + [anon_sym_AMP_AMP] = ACTIONS(10186), + [anon_sym_inline] = ACTIONS(10188), + [anon_sym_restrict] = ACTIONS(10188), + }, + [4482] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10190), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [4483] = { [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(10190), + }, + [4484] = { + [anon_sym_LPAREN2] = ACTIONS(7889), + [anon_sym_struct] = ACTIONS(7887), + [sym_auto] = ACTIONS(7887), + [anon_sym_signed] = ACTIONS(7887), + [anon_sym_mutable] = ACTIONS(7887), + [anon_sym_long] = ACTIONS(7887), + [anon_sym_COLON_COLON] = ACTIONS(7889), + [anon_sym_using] = ACTIONS(7887), + [sym_preproc_directive] = ACTIONS(7887), + [aux_sym_preproc_if_token1] = ACTIONS(7887), + [anon_sym_AMP] = ACTIONS(7887), + [anon_sym_static] = ACTIONS(7887), + [anon_sym_volatile] = ACTIONS(7887), + [anon_sym_RBRACE] = ACTIONS(7889), + [anon_sym_typedef] = ACTIONS(7887), + [anon_sym_STAR] = ACTIONS(7889), + [anon_sym_union] = ACTIONS(7887), + [anon_sym_typename] = ACTIONS(7887), + [anon_sym_private] = ACTIONS(7887), + [anon_sym_explicit] = ACTIONS(7887), + [anon_sym_short] = ACTIONS(7887), + [sym_identifier] = ACTIONS(7887), + [sym_operator_name] = ACTIONS(7889), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7887), + [anon_sym_register] = ACTIONS(7887), + [anon_sym__Atomic] = ACTIONS(7887), + [anon_sym_const] = ACTIONS(7887), + [anon_sym_extern] = ACTIONS(7887), + [anon_sym_LBRACK] = ACTIONS(7887), + [anon_sym_virtual] = ACTIONS(7887), + [anon_sym_enum] = ACTIONS(7887), + [anon_sym_class] = ACTIONS(7887), + [anon_sym_constexpr] = ACTIONS(7887), + [sym_primitive_type] = ACTIONS(7887), + [anon_sym_unsigned] = ACTIONS(7887), + [anon_sym_public] = ACTIONS(7887), + [anon_sym_protected] = ACTIONS(7887), + [anon_sym_friend] = ACTIONS(7887), + [anon_sym_template] = ACTIONS(7887), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7889), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7887), + [anon_sym_TILDE] = ACTIONS(7889), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7887), + [anon_sym_AMP_AMP] = ACTIONS(7889), + [anon_sym_inline] = ACTIONS(7887), + [anon_sym_restrict] = ACTIONS(7887), }, [4485] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10206), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_parameter_list] = STATE(4489), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_SEMI] = ACTIONS(4985), + [anon_sym_COLON] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), }, [4486] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10206), + [sym_abstract_reference_declarator] = STATE(4712), + [aux_sym_type_definition_repeat1] = STATE(4711), + [sym_abstract_array_declarator] = STATE(4712), + [sym_parameter_list] = STATE(4088), + [sym_abstract_function_declarator] = STATE(4712), + [sym_abstract_pointer_declarator] = STATE(4712), + [sym_type_qualifier] = STATE(4711), + [sym__abstract_declarator] = STATE(4712), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(8792), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(8794), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(4987), }, [4487] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4731), - [sym_logical_expression] = STATE(4731), - [sym_bitwise_expression] = STATE(4731), - [sym_cast_expression] = STATE(4731), - [sym_new_expression] = STATE(4731), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4731), - [sym_char_literal] = STATE(4731), - [sym_template_function] = STATE(4731), - [sym_conditional_expression] = STATE(4731), - [sym_equality_expression] = STATE(4731), - [sym_relational_expression] = STATE(4731), - [sym_delete_expression] = STATE(4731), - [sym_sizeof_expression] = STATE(4731), - [sym_parenthesized_expression] = STATE(4731), - [sym_initializer_list] = STATE(4732), - [sym_concatenated_string] = STATE(4731), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4731), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4731), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4731), - [sym_math_expression] = STATE(4731), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10208), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10210), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10210), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10208), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10210), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10210), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), + [sym_parameter_list] = STATE(4489), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), + [anon_sym_LBRACE] = ACTIONS(4987), }, [4488] = { - [anon_sym_LPAREN2] = ACTIONS(8816), - [anon_sym_struct] = ACTIONS(8818), - [sym_auto] = ACTIONS(8818), - [anon_sym_signed] = ACTIONS(8818), - [anon_sym_mutable] = ACTIONS(8818), - [anon_sym_long] = ACTIONS(8818), - [anon_sym_COLON_COLON] = ACTIONS(8816), - [anon_sym_using] = ACTIONS(8818), - [aux_sym_preproc_else_token1] = ACTIONS(8818), - [aux_sym_preproc_if_token2] = ACTIONS(8818), - [sym_preproc_directive] = ACTIONS(8818), - [aux_sym_preproc_if_token1] = ACTIONS(8818), - [anon_sym_AMP] = ACTIONS(8818), - [anon_sym_static] = ACTIONS(8818), - [anon_sym_volatile] = ACTIONS(8818), - [anon_sym_typedef] = ACTIONS(8818), - [anon_sym_STAR] = ACTIONS(8816), - [anon_sym_union] = ACTIONS(8818), - [anon_sym_typename] = ACTIONS(8818), - [anon_sym_private] = ACTIONS(8818), - [anon_sym_explicit] = ACTIONS(8818), - [anon_sym_short] = ACTIONS(8818), - [sym_identifier] = ACTIONS(8818), - [sym_operator_name] = ACTIONS(8816), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8818), - [anon_sym_register] = ACTIONS(8818), - [anon_sym__Atomic] = ACTIONS(8818), - [anon_sym_const] = ACTIONS(8818), - [anon_sym_extern] = ACTIONS(8818), - [anon_sym_virtual] = ACTIONS(8818), - [anon_sym_enum] = ACTIONS(8818), - [anon_sym_class] = ACTIONS(8818), - [anon_sym_constexpr] = ACTIONS(8818), - [sym_primitive_type] = ACTIONS(8818), - [anon_sym_unsigned] = ACTIONS(8818), - [anon_sym_public] = ACTIONS(8818), - [anon_sym_protected] = ACTIONS(8818), - [anon_sym_friend] = ACTIONS(8818), - [anon_sym_template] = ACTIONS(8818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8816), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8818), - [anon_sym_TILDE] = ACTIONS(8816), - [aux_sym_preproc_elif_token1] = ACTIONS(8818), - [aux_sym_preproc_def_token1] = ACTIONS(8818), - [anon_sym_AMP_AMP] = ACTIONS(8816), - [anon_sym_inline] = ACTIONS(8818), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(8818), + [aux_sym_abstract_function_declarator_repeat1] = STATE(4713), + [sym_type_qualifier] = STATE(4713), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10192), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(3838), }, [4489] = { - [sym_bitfield_clause] = STATE(4732), - [aux_sym_field_declaration_repeat1] = STATE(3485), - [sym_initializer_list] = STATE(4732), - [anon_sym_COLON] = ACTIONS(5122), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(10212), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(10206), + [aux_sym_abstract_function_declarator_repeat1] = STATE(4714), + [sym_type_qualifier] = STATE(4714), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10194), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(3838), }, [4490] = { - [sym_compound_statement] = STATE(4735), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(4736), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(8754), - [anon_sym_SEMI] = ACTIONS(10214), + [sym_template_function] = STATE(4715), + [sym__expression] = STATE(4715), + [sym_logical_expression] = STATE(4715), + [sym_bitwise_expression] = STATE(4715), + [sym_cast_expression] = STATE(4715), + [sym_delete_expression] = STATE(4715), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4715), + [sym_lambda_expression] = STATE(4715), + [sym_char_literal] = STATE(4715), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4715), + [sym_equality_expression] = STATE(4715), + [sym_relational_expression] = STATE(4715), + [sym_sizeof_expression] = STATE(4715), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4716), + [sym_parenthesized_expression] = STATE(4715), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4715), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4715), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4715), + [sym_math_expression] = STATE(4715), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4715), + [sym_raw_string_literal] = ACTIONS(10196), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10198), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10198), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10196), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10198), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10198), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(175), }, [4491] = { - [aux_sym_declaration_repeat1] = STATE(4736), + [anon_sym_LPAREN2] = ACTIONS(10200), + [anon_sym_COMMA] = ACTIONS(10200), + [anon_sym_SEMI] = ACTIONS(10200), + [anon_sym_COLON] = ACTIONS(10200), + [anon_sym_LBRACK] = ACTIONS(10200), + [anon_sym_RPAREN] = ACTIONS(10200), + [anon_sym_EQ] = ACTIONS(10200), + [anon_sym_LBRACE] = ACTIONS(10200), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10214), }, [4492] = { - [anon_sym_LPAREN2] = ACTIONS(4077), - [anon_sym_struct] = ACTIONS(4075), - [sym_auto] = ACTIONS(4075), - [anon_sym_signed] = ACTIONS(4075), - [anon_sym_mutable] = ACTIONS(4075), - [anon_sym_long] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_using] = ACTIONS(4075), - [aux_sym_preproc_else_token1] = ACTIONS(4075), - [aux_sym_preproc_if_token2] = ACTIONS(4075), - [sym_preproc_directive] = ACTIONS(4075), - [aux_sym_preproc_if_token1] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_volatile] = ACTIONS(4075), - [anon_sym_typedef] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4077), - [anon_sym_union] = ACTIONS(4075), - [anon_sym_typename] = ACTIONS(4075), - [anon_sym_private] = ACTIONS(4075), - [anon_sym_explicit] = ACTIONS(4075), - [anon_sym_short] = ACTIONS(4075), - [sym_identifier] = ACTIONS(4075), - [sym_operator_name] = ACTIONS(4077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4075), - [anon_sym_register] = ACTIONS(4075), - [anon_sym__Atomic] = ACTIONS(4075), - [anon_sym_const] = ACTIONS(4075), - [anon_sym_extern] = ACTIONS(4075), - [anon_sym_virtual] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_class] = ACTIONS(4075), - [anon_sym_constexpr] = ACTIONS(4075), - [sym_primitive_type] = ACTIONS(4075), - [anon_sym_unsigned] = ACTIONS(4075), - [anon_sym_public] = ACTIONS(4075), - [anon_sym_protected] = ACTIONS(4075), - [anon_sym_friend] = ACTIONS(4075), - [anon_sym_template] = ACTIONS(4075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4075), - [anon_sym_TILDE] = ACTIONS(4077), - [aux_sym_preproc_elif_token1] = ACTIONS(4075), - [aux_sym_preproc_def_token1] = ACTIONS(4075), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_inline] = ACTIONS(4075), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(4075), + [aux_sym_sized_type_specifier_repeat1] = STATE(4492), + [anon_sym_LPAREN2] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_final] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(10202), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(10202), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [sym_noexcept] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(10202), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(10202), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), }, [4493] = { - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_struct] = ACTIONS(4079), - [sym_auto] = ACTIONS(4079), - [anon_sym_signed] = ACTIONS(4079), - [anon_sym_mutable] = ACTIONS(4079), - [anon_sym_long] = ACTIONS(4079), - [anon_sym_COLON_COLON] = ACTIONS(4081), - [anon_sym_using] = ACTIONS(4079), - [aux_sym_preproc_else_token1] = ACTIONS(4079), - [aux_sym_preproc_if_token2] = ACTIONS(4079), - [sym_preproc_directive] = ACTIONS(4079), - [aux_sym_preproc_if_token1] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(4079), - [anon_sym_static] = ACTIONS(4079), - [anon_sym_volatile] = ACTIONS(4079), - [anon_sym_typedef] = ACTIONS(4079), - [anon_sym_STAR] = ACTIONS(4081), - [anon_sym_union] = ACTIONS(4079), - [anon_sym_typename] = ACTIONS(4079), - [anon_sym_private] = ACTIONS(4079), - [anon_sym_explicit] = ACTIONS(4079), - [anon_sym_short] = ACTIONS(4079), - [sym_identifier] = ACTIONS(4079), - [sym_operator_name] = ACTIONS(4081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4079), - [anon_sym_register] = ACTIONS(4079), - [anon_sym__Atomic] = ACTIONS(4079), - [anon_sym_const] = ACTIONS(4079), - [anon_sym_extern] = ACTIONS(4079), - [anon_sym_virtual] = ACTIONS(4079), - [anon_sym_enum] = ACTIONS(4079), - [anon_sym_class] = ACTIONS(4079), - [anon_sym_constexpr] = ACTIONS(4079), - [sym_primitive_type] = ACTIONS(4079), - [anon_sym_unsigned] = ACTIONS(4079), - [anon_sym_public] = ACTIONS(4079), - [anon_sym_protected] = ACTIONS(4079), - [anon_sym_friend] = ACTIONS(4079), - [anon_sym_template] = ACTIONS(4079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4081), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4079), - [anon_sym_TILDE] = ACTIONS(4081), - [aux_sym_preproc_elif_token1] = ACTIONS(4079), - [aux_sym_preproc_def_token1] = ACTIONS(4079), - [anon_sym_AMP_AMP] = ACTIONS(4081), - [anon_sym_inline] = ACTIONS(4079), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(4079), + [sym_abstract_reference_declarator] = STATE(4717), + [sym_abstract_array_declarator] = STATE(4717), + [sym_abstract_pointer_declarator] = STATE(4717), + [sym_parameter_list] = STATE(4495), + [sym_abstract_function_declarator] = STATE(4717), + [sym__abstract_declarator] = STATE(4717), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9763), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(9765), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(9767), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2835), }, [4494] = { - [aux_sym_declaration_repeat1] = STATE(2028), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10214), + [sym_abstract_reference_declarator] = STATE(4719), + [aux_sym_type_definition_repeat1] = STATE(4718), + [sym_abstract_array_declarator] = STATE(4719), + [sym_parameter_list] = STATE(4495), + [sym_abstract_function_declarator] = STATE(4719), + [sym_abstract_pointer_declarator] = STATE(4719), + [sym_type_qualifier] = STATE(4718), + [sym__abstract_declarator] = STATE(4719), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9763), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(9765), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_COLON] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(9767), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(2837), }, [4495] = { - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2016), - [sym_auto] = ACTIONS(2016), - [anon_sym_signed] = ACTIONS(2016), - [anon_sym_mutable] = ACTIONS(2016), - [anon_sym_long] = ACTIONS(2016), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_using] = ACTIONS(2016), - [aux_sym_preproc_else_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token2] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2016), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_typename] = ACTIONS(2016), - [anon_sym_private] = ACTIONS(2016), - [anon_sym_explicit] = ACTIONS(2016), - [anon_sym_short] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2016), - [sym_operator_name] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), - [anon_sym_register] = ACTIONS(2016), - [anon_sym__Atomic] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_virtual] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_class] = ACTIONS(2016), - [anon_sym_constexpr] = ACTIONS(2016), - [sym_primitive_type] = ACTIONS(2016), - [anon_sym_unsigned] = ACTIONS(2016), - [anon_sym_public] = ACTIONS(2016), - [anon_sym_protected] = ACTIONS(2016), - [anon_sym_friend] = ACTIONS(2016), - [anon_sym_template] = ACTIONS(2016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2018), - [aux_sym_preproc_elif_token1] = ACTIONS(2016), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2016), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(2016), + [aux_sym_abstract_function_declarator_repeat1] = STATE(4720), + [sym_type_qualifier] = STATE(4720), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(10205), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_COLON] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(7438), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1740), }, [4496] = { - [aux_sym_preproc_if_token2] = ACTIONS(10216), - [sym_comment] = ACTIONS(3), + [sym_parameter_list] = STATE(4721), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym_COMMA] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_SEMI] = ACTIONS(8038), + [anon_sym_COLON] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_EQ] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), + [anon_sym_LBRACE] = ACTIONS(8038), }, [4497] = { - [anon_sym_LPAREN2] = ACTIONS(5896), - [anon_sym_struct] = ACTIONS(5894), - [sym_auto] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(5894), - [anon_sym_mutable] = ACTIONS(5894), - [anon_sym_long] = ACTIONS(5894), - [anon_sym_COLON_COLON] = ACTIONS(5896), - [anon_sym_using] = ACTIONS(5894), - [aux_sym_preproc_else_token1] = ACTIONS(5894), - [aux_sym_preproc_if_token2] = ACTIONS(5894), - [sym_preproc_directive] = ACTIONS(5894), - [aux_sym_preproc_if_token1] = ACTIONS(5894), - [anon_sym_AMP] = ACTIONS(5894), - [anon_sym_static] = ACTIONS(5894), - [anon_sym_volatile] = ACTIONS(5894), - [anon_sym_typedef] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5896), - [anon_sym_union] = ACTIONS(5894), - [anon_sym_typename] = ACTIONS(5894), - [anon_sym_private] = ACTIONS(5894), - [anon_sym_explicit] = ACTIONS(5894), - [anon_sym_short] = ACTIONS(5894), - [sym_identifier] = ACTIONS(5894), - [sym_operator_name] = ACTIONS(5896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5894), - [anon_sym_register] = ACTIONS(5894), - [anon_sym__Atomic] = ACTIONS(5894), - [anon_sym_const] = ACTIONS(5894), - [anon_sym_extern] = ACTIONS(5894), - [anon_sym_virtual] = ACTIONS(5894), - [anon_sym_enum] = ACTIONS(5894), - [anon_sym_class] = ACTIONS(5894), - [anon_sym_constexpr] = ACTIONS(5894), - [sym_primitive_type] = ACTIONS(5894), - [anon_sym_unsigned] = ACTIONS(5894), - [anon_sym_public] = ACTIONS(5894), - [anon_sym_protected] = ACTIONS(5894), - [anon_sym_friend] = ACTIONS(5894), - [anon_sym_template] = ACTIONS(5894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5894), - [anon_sym_TILDE] = ACTIONS(5896), - [aux_sym_preproc_elif_token1] = ACTIONS(5894), - [aux_sym_preproc_def_token1] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5896), - [anon_sym_inline] = ACTIONS(5894), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5894), + [aux_sym_sized_type_specifier_repeat1] = STATE(4497), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_unsigned] = ACTIONS(10207), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(10207), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(10207), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(10207), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), }, [4498] = { - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_struct] = ACTIONS(5906), - [sym_auto] = ACTIONS(5906), - [anon_sym_signed] = ACTIONS(5906), - [anon_sym_mutable] = ACTIONS(5906), - [anon_sym_long] = ACTIONS(5906), - [anon_sym_COLON_COLON] = ACTIONS(5908), - [anon_sym_using] = ACTIONS(5906), - [aux_sym_preproc_else_token1] = ACTIONS(5906), - [aux_sym_preproc_if_token2] = ACTIONS(5906), - [sym_preproc_directive] = ACTIONS(5906), - [aux_sym_preproc_if_token1] = ACTIONS(5906), - [anon_sym_AMP] = ACTIONS(5906), - [anon_sym_static] = ACTIONS(5906), - [anon_sym_volatile] = ACTIONS(5906), - [anon_sym_typedef] = ACTIONS(5906), - [anon_sym_STAR] = ACTIONS(5908), - [anon_sym_union] = ACTIONS(5906), - [anon_sym_typename] = ACTIONS(5906), - [anon_sym_private] = ACTIONS(5906), - [anon_sym_explicit] = ACTIONS(5906), - [anon_sym_short] = ACTIONS(5906), - [sym_identifier] = ACTIONS(5906), - [sym_operator_name] = ACTIONS(5908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), - [anon_sym_register] = ACTIONS(5906), - [anon_sym__Atomic] = ACTIONS(5906), - [anon_sym_const] = ACTIONS(5906), - [anon_sym_extern] = ACTIONS(5906), - [anon_sym_virtual] = ACTIONS(5906), - [anon_sym_enum] = ACTIONS(5906), - [anon_sym_class] = ACTIONS(5906), - [anon_sym_constexpr] = ACTIONS(5906), - [sym_primitive_type] = ACTIONS(5906), - [anon_sym_unsigned] = ACTIONS(5906), - [anon_sym_public] = ACTIONS(5906), - [anon_sym_protected] = ACTIONS(5906), - [anon_sym_friend] = ACTIONS(5906), - [anon_sym_template] = ACTIONS(5906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), - [anon_sym_TILDE] = ACTIONS(5908), - [aux_sym_preproc_elif_token1] = ACTIONS(5906), - [aux_sym_preproc_def_token1] = ACTIONS(5906), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_inline] = ACTIONS(5906), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5906), + [sym_parameter_list] = STATE(3472), + [anon_sym_LPAREN2] = ACTIONS(614), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(8038), }, [4499] = { - [anon_sym_LF] = ACTIONS(10218), - [sym_comment] = ACTIONS(244), + [anon_sym_LPAREN2] = ACTIONS(8584), + [anon_sym_DASH] = ACTIONS(8586), + [anon_sym_DASH_DASH] = ACTIONS(8584), + [anon_sym_DASH_GT] = ACTIONS(8584), + [anon_sym_RPAREN] = ACTIONS(8584), + [anon_sym_STAR_EQ] = ACTIONS(8584), + [anon_sym_LT_LT_EQ] = ACTIONS(8584), + [anon_sym_PERCENT_EQ] = ACTIONS(8584), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8584), + [anon_sym_EQ_EQ] = ACTIONS(8584), + [anon_sym_PIPE] = ACTIONS(8586), + [anon_sym_LT] = ACTIONS(8586), + [anon_sym_CARET_EQ] = ACTIONS(8584), + [anon_sym_AMP] = ACTIONS(8586), + [anon_sym_PLUS] = ACTIONS(8586), + [anon_sym_GT_EQ] = ACTIONS(8584), + [anon_sym_STAR] = ACTIONS(8586), + [anon_sym_SLASH] = ACTIONS(8586), + [anon_sym_RBRACE] = ACTIONS(8584), + [anon_sym_COLON] = ACTIONS(8584), + [anon_sym_SLASH_EQ] = ACTIONS(8584), + [anon_sym_PLUS_EQ] = ACTIONS(8584), + [anon_sym_CARET] = ACTIONS(8586), + [anon_sym_GT] = ACTIONS(8586), + [anon_sym_PIPE_EQ] = ACTIONS(8584), + [anon_sym_GT_GT_EQ] = ACTIONS(8584), + [anon_sym_COMMA] = ACTIONS(8584), + [anon_sym_PIPE_PIPE] = ACTIONS(8584), + [anon_sym_DOT] = ACTIONS(8584), + [anon_sym_LT_LT] = ACTIONS(8586), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_PERCENT] = ACTIONS(8586), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8584), + [anon_sym_DASH_EQ] = ACTIONS(8584), + [anon_sym_SEMI] = ACTIONS(8584), + [anon_sym_BANG_EQ] = ACTIONS(8584), + [anon_sym_AMP_EQ] = ACTIONS(8584), + [anon_sym_AMP_AMP] = ACTIONS(8584), + [anon_sym_LT_EQ] = ACTIONS(8584), + [anon_sym_EQ] = ACTIONS(8586), + [anon_sym_PLUS_PLUS] = ACTIONS(8584), + [anon_sym_LBRACE] = ACTIONS(8584), + [anon_sym_GT_GT] = ACTIONS(8586), }, [4500] = { - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_struct] = ACTIONS(5912), - [sym_auto] = ACTIONS(5912), - [anon_sym_signed] = ACTIONS(5912), - [anon_sym_mutable] = ACTIONS(5912), - [anon_sym_long] = ACTIONS(5912), - [anon_sym_COLON_COLON] = ACTIONS(5914), - [anon_sym_using] = ACTIONS(5912), - [aux_sym_preproc_else_token1] = ACTIONS(5912), - [aux_sym_preproc_if_token2] = ACTIONS(5912), - [sym_preproc_directive] = ACTIONS(5912), - [aux_sym_preproc_if_token1] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_static] = ACTIONS(5912), - [anon_sym_volatile] = ACTIONS(5912), - [anon_sym_typedef] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_union] = ACTIONS(5912), - [anon_sym_typename] = ACTIONS(5912), - [anon_sym_private] = ACTIONS(5912), - [anon_sym_explicit] = ACTIONS(5912), - [anon_sym_short] = ACTIONS(5912), - [sym_identifier] = ACTIONS(5912), - [sym_operator_name] = ACTIONS(5914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5912), - [anon_sym_register] = ACTIONS(5912), - [anon_sym__Atomic] = ACTIONS(5912), - [anon_sym_const] = ACTIONS(5912), - [anon_sym_extern] = ACTIONS(5912), - [anon_sym_virtual] = ACTIONS(5912), - [anon_sym_enum] = ACTIONS(5912), - [anon_sym_class] = ACTIONS(5912), - [anon_sym_constexpr] = ACTIONS(5912), - [sym_primitive_type] = ACTIONS(5912), - [anon_sym_unsigned] = ACTIONS(5912), - [anon_sym_public] = ACTIONS(5912), - [anon_sym_protected] = ACTIONS(5912), - [anon_sym_friend] = ACTIONS(5912), - [anon_sym_template] = ACTIONS(5912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5912), - [anon_sym_TILDE] = ACTIONS(5914), - [aux_sym_preproc_elif_token1] = ACTIONS(5912), - [aux_sym_preproc_def_token1] = ACTIONS(5912), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_inline] = ACTIONS(5912), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5912), - }, - [4501] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(884), - [sym_logical_expression] = STATE(884), - [sym_bitwise_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_new_expression] = STATE(884), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(884), - [sym_char_literal] = STATE(884), - [sym_template_function] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_equality_expression] = STATE(884), - [sym_relational_expression] = STATE(884), - [sym_delete_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(884), - [sym_lambda_expression] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(884), - [sym_math_expression] = STATE(884), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(9754), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [4502] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [aux_sym_preproc_else_token1] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_private] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_virtual] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_public] = ACTIONS(962), - [anon_sym_protected] = ACTIONS(962), - [anon_sym_friend] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [aux_sym_preproc_elif_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - }, - [4503] = { - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_struct] = ACTIONS(5934), - [sym_auto] = ACTIONS(5934), - [anon_sym_signed] = ACTIONS(5934), - [anon_sym_mutable] = ACTIONS(5934), - [anon_sym_long] = ACTIONS(5934), - [anon_sym_COLON_COLON] = ACTIONS(5936), - [anon_sym_using] = ACTIONS(5934), - [aux_sym_preproc_else_token1] = ACTIONS(5934), - [aux_sym_preproc_if_token2] = ACTIONS(5934), - [sym_preproc_directive] = ACTIONS(5934), - [aux_sym_preproc_if_token1] = ACTIONS(5934), - [anon_sym_AMP] = ACTIONS(5934), - [anon_sym_static] = ACTIONS(5934), - [anon_sym_volatile] = ACTIONS(5934), - [anon_sym_typedef] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_union] = ACTIONS(5934), - [anon_sym_typename] = ACTIONS(5934), - [anon_sym_private] = ACTIONS(5934), - [anon_sym_explicit] = ACTIONS(5934), - [anon_sym_short] = ACTIONS(5934), - [sym_identifier] = ACTIONS(5934), - [sym_operator_name] = ACTIONS(5936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5934), - [anon_sym_register] = ACTIONS(5934), - [anon_sym__Atomic] = ACTIONS(5934), - [anon_sym_const] = ACTIONS(5934), - [anon_sym_extern] = ACTIONS(5934), - [anon_sym_virtual] = ACTIONS(5934), - [anon_sym_enum] = ACTIONS(5934), - [anon_sym_class] = ACTIONS(5934), - [anon_sym_constexpr] = ACTIONS(5934), - [sym_primitive_type] = ACTIONS(5934), - [anon_sym_unsigned] = ACTIONS(5934), - [anon_sym_public] = ACTIONS(5934), - [anon_sym_protected] = ACTIONS(5934), - [anon_sym_friend] = ACTIONS(5934), - [anon_sym_template] = ACTIONS(5934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5934), - [anon_sym_TILDE] = ACTIONS(5936), - [aux_sym_preproc_elif_token1] = ACTIONS(5934), - [aux_sym_preproc_def_token1] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_inline] = ACTIONS(5934), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5934), - }, - [4504] = { - [anon_sym_LPAREN2] = ACTIONS(5940), - [anon_sym_struct] = ACTIONS(5938), - [sym_auto] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(5938), - [anon_sym_mutable] = ACTIONS(5938), - [anon_sym_long] = ACTIONS(5938), - [anon_sym_COLON_COLON] = ACTIONS(5940), - [anon_sym_using] = ACTIONS(5938), - [aux_sym_preproc_else_token1] = ACTIONS(5938), - [aux_sym_preproc_if_token2] = ACTIONS(5938), - [sym_preproc_directive] = ACTIONS(5938), - [aux_sym_preproc_if_token1] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_static] = ACTIONS(5938), - [anon_sym_volatile] = ACTIONS(5938), - [anon_sym_typedef] = ACTIONS(5938), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_union] = ACTIONS(5938), - [anon_sym_typename] = ACTIONS(5938), - [anon_sym_private] = ACTIONS(5938), - [anon_sym_explicit] = ACTIONS(5938), - [anon_sym_short] = ACTIONS(5938), - [sym_identifier] = ACTIONS(5938), - [sym_operator_name] = ACTIONS(5940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), - [anon_sym_register] = ACTIONS(5938), - [anon_sym__Atomic] = ACTIONS(5938), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_extern] = ACTIONS(5938), - [anon_sym_virtual] = ACTIONS(5938), - [anon_sym_enum] = ACTIONS(5938), - [anon_sym_class] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5938), - [sym_primitive_type] = ACTIONS(5938), - [anon_sym_unsigned] = ACTIONS(5938), - [anon_sym_public] = ACTIONS(5938), - [anon_sym_protected] = ACTIONS(5938), - [anon_sym_friend] = ACTIONS(5938), - [anon_sym_template] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), - [anon_sym_TILDE] = ACTIONS(5940), - [aux_sym_preproc_elif_token1] = ACTIONS(5938), - [aux_sym_preproc_def_token1] = ACTIONS(5938), - [anon_sym_AMP_AMP] = ACTIONS(5940), - [anon_sym_inline] = ACTIONS(5938), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(5938), - }, - [4505] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2707), - [sym_auto] = ACTIONS(2707), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2707), - [aux_sym_preproc_else_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token2] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_private] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2707), - [sym_operator_name] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_public] = ACTIONS(2707), - [anon_sym_protected] = ACTIONS(2707), - [anon_sym_friend] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2709), - [aux_sym_preproc_elif_token1] = ACTIONS(2707), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(2707), - }, - [4506] = { - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(4732), - [aux_sym_field_declaration_repeat1] = STATE(4738), - [sym_initializer_list] = STATE(4732), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(10206), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(10212), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - }, - [4507] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4731), - [sym_logical_expression] = STATE(4731), - [sym_bitwise_expression] = STATE(4731), - [sym_cast_expression] = STATE(4731), - [sym_new_expression] = STATE(4731), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4731), - [sym_char_literal] = STATE(4731), - [sym_template_function] = STATE(4731), - [sym_conditional_expression] = STATE(4731), - [sym_equality_expression] = STATE(4731), - [sym_relational_expression] = STATE(4731), - [sym_delete_expression] = STATE(4731), - [sym_sizeof_expression] = STATE(4731), - [sym_parenthesized_expression] = STATE(4731), - [sym_initializer_list] = STATE(4732), - [sym_concatenated_string] = STATE(4731), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4731), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4731), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4731), - [sym_math_expression] = STATE(4731), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10208), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10210), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10210), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10208), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10210), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10210), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(9748), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [4508] = { - [anon_sym_LPAREN2] = ACTIONS(8873), - [anon_sym_struct] = ACTIONS(8875), - [sym_auto] = ACTIONS(8875), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_mutable] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_COLON_COLON] = ACTIONS(8873), - [anon_sym_using] = ACTIONS(8875), - [aux_sym_preproc_else_token1] = ACTIONS(8875), - [aux_sym_preproc_if_token2] = ACTIONS(8875), - [sym_preproc_directive] = ACTIONS(8875), - [aux_sym_preproc_if_token1] = ACTIONS(8875), - [anon_sym_AMP] = ACTIONS(8875), - [anon_sym_static] = ACTIONS(8875), - [anon_sym_volatile] = ACTIONS(8875), - [anon_sym_typedef] = ACTIONS(8875), - [anon_sym_STAR] = ACTIONS(8873), - [anon_sym_union] = ACTIONS(8875), - [anon_sym_typename] = ACTIONS(8875), - [anon_sym_private] = ACTIONS(8875), - [anon_sym_explicit] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [sym_identifier] = ACTIONS(8875), - [sym_operator_name] = ACTIONS(8873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8875), - [anon_sym_register] = ACTIONS(8875), - [anon_sym__Atomic] = ACTIONS(8875), - [anon_sym_const] = ACTIONS(8875), - [anon_sym_extern] = ACTIONS(8875), - [anon_sym_virtual] = ACTIONS(8875), - [anon_sym_enum] = ACTIONS(8875), - [anon_sym_class] = ACTIONS(8875), - [anon_sym_constexpr] = ACTIONS(8875), - [sym_primitive_type] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_public] = ACTIONS(8875), - [anon_sym_protected] = ACTIONS(8875), - [anon_sym_friend] = ACTIONS(8875), - [anon_sym_template] = ACTIONS(8875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8875), - [anon_sym_TILDE] = ACTIONS(8873), - [aux_sym_preproc_elif_token1] = ACTIONS(8875), - [aux_sym_preproc_def_token1] = ACTIONS(8875), - [anon_sym_AMP_AMP] = ACTIONS(8873), - [anon_sym_inline] = ACTIONS(8875), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(8875), - }, - [4509] = { - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_struct] = ACTIONS(8329), - [sym_auto] = ACTIONS(8329), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_using] = ACTIONS(8329), - [sym_preproc_directive] = ACTIONS(8329), - [aux_sym_preproc_if_token1] = ACTIONS(8329), - [anon_sym_AMP] = ACTIONS(8329), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_RBRACE] = ACTIONS(8331), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [anon_sym_private] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [sym_identifier] = ACTIONS(8329), - [sym_operator_name] = ACTIONS(8331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym_virtual] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_public] = ACTIONS(8329), - [anon_sym_protected] = ACTIONS(8329), - [anon_sym_friend] = ACTIONS(8329), - [anon_sym_template] = ACTIONS(8329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), - [anon_sym_TILDE] = ACTIONS(8331), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8329), - [anon_sym_AMP_AMP] = ACTIONS(8331), - [anon_sym_inline] = ACTIONS(8329), - [anon_sym_restrict] = ACTIONS(8329), - }, - [4510] = { - [anon_sym_LPAREN2] = ACTIONS(10220), - [anon_sym_struct] = ACTIONS(10222), - [sym_auto] = ACTIONS(10222), - [anon_sym_signed] = ACTIONS(10222), - [anon_sym_mutable] = ACTIONS(10222), - [anon_sym_long] = ACTIONS(10222), - [anon_sym_COLON_COLON] = ACTIONS(10220), - [anon_sym_using] = ACTIONS(10222), - [sym_preproc_directive] = ACTIONS(10222), - [aux_sym_preproc_if_token1] = ACTIONS(10222), - [anon_sym_AMP] = ACTIONS(10222), - [anon_sym_static] = ACTIONS(10222), - [anon_sym_volatile] = ACTIONS(10222), - [anon_sym_RBRACE] = ACTIONS(10220), - [anon_sym_typedef] = ACTIONS(10222), - [anon_sym_STAR] = ACTIONS(10220), - [anon_sym_union] = ACTIONS(10222), - [anon_sym_typename] = ACTIONS(10222), - [anon_sym_private] = ACTIONS(10222), - [anon_sym_explicit] = ACTIONS(10222), - [anon_sym_short] = ACTIONS(10222), - [sym_identifier] = ACTIONS(10222), - [sym_operator_name] = ACTIONS(10220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10222), - [anon_sym_register] = ACTIONS(10222), - [anon_sym__Atomic] = ACTIONS(10222), - [anon_sym_const] = ACTIONS(10222), - [anon_sym_extern] = ACTIONS(10222), - [anon_sym_virtual] = ACTIONS(10222), - [anon_sym_enum] = ACTIONS(10222), - [anon_sym_class] = ACTIONS(10222), - [anon_sym_constexpr] = ACTIONS(10222), - [sym_primitive_type] = ACTIONS(10222), - [anon_sym_unsigned] = ACTIONS(10222), - [anon_sym_public] = ACTIONS(10222), - [anon_sym_protected] = ACTIONS(10222), - [anon_sym_friend] = ACTIONS(10222), - [anon_sym_template] = ACTIONS(10222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10222), - [anon_sym_TILDE] = ACTIONS(10220), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(10222), - [anon_sym_AMP_AMP] = ACTIONS(10220), - [anon_sym_inline] = ACTIONS(10222), - [anon_sym_restrict] = ACTIONS(10222), - }, - [4511] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10224), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [4512] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10224), - }, - [4513] = { - [anon_sym_LPAREN2] = ACTIONS(8309), - [anon_sym_struct] = ACTIONS(8307), - [sym_auto] = ACTIONS(8307), - [anon_sym_signed] = ACTIONS(8307), - [anon_sym_mutable] = ACTIONS(8307), - [anon_sym_long] = ACTIONS(8307), - [anon_sym_COLON_COLON] = ACTIONS(8309), - [anon_sym_using] = ACTIONS(8307), - [sym_preproc_directive] = ACTIONS(8307), - [aux_sym_preproc_if_token1] = ACTIONS(8307), - [anon_sym_AMP] = ACTIONS(8307), - [anon_sym_static] = ACTIONS(8307), - [anon_sym_volatile] = ACTIONS(8307), - [anon_sym_RBRACE] = ACTIONS(8309), - [anon_sym_typedef] = ACTIONS(8307), - [anon_sym_STAR] = ACTIONS(8309), - [anon_sym_union] = ACTIONS(8307), - [anon_sym_typename] = ACTIONS(8307), - [anon_sym_private] = ACTIONS(8307), - [anon_sym_explicit] = ACTIONS(8307), - [anon_sym_short] = ACTIONS(8307), - [sym_identifier] = ACTIONS(8307), - [sym_operator_name] = ACTIONS(8309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8307), - [anon_sym_register] = ACTIONS(8307), - [anon_sym__Atomic] = ACTIONS(8307), - [anon_sym_const] = ACTIONS(8307), - [anon_sym_extern] = ACTIONS(8307), - [anon_sym_virtual] = ACTIONS(8307), - [anon_sym_enum] = ACTIONS(8307), - [anon_sym_class] = ACTIONS(8307), - [anon_sym_constexpr] = ACTIONS(8307), - [sym_primitive_type] = ACTIONS(8307), - [anon_sym_unsigned] = ACTIONS(8307), - [anon_sym_public] = ACTIONS(8307), - [anon_sym_protected] = ACTIONS(8307), - [anon_sym_friend] = ACTIONS(8307), - [anon_sym_template] = ACTIONS(8307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8307), - [anon_sym_TILDE] = ACTIONS(8309), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_inline] = ACTIONS(8307), - [anon_sym_restrict] = ACTIONS(8307), - }, - [4514] = { - [sym_parameter_list] = STATE(4518), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_COLON] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), - }, - [4515] = { - [sym_abstract_array_declarator] = STATE(4741), - [sym_parameter_list] = STATE(4118), - [sym_abstract_reference_declarator] = STATE(4741), - [sym_abstract_function_declarator] = STATE(4741), - [aux_sym_type_definition_repeat1] = STATE(4740), - [sym_abstract_pointer_declarator] = STATE(4741), - [sym_type_qualifier] = STATE(4740), - [sym__abstract_declarator] = STATE(4741), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(8828), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(8830), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_AMP_AMP] = ACTIONS(8832), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4991), - }, - [4516] = { - [sym_parameter_list] = STATE(4518), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - }, - [4517] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4742), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4742), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10226), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_COLON] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4115), - }, - [4518] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4743), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4743), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10228), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_COLON] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4115), - }, - [4519] = { - [anon_sym_LPAREN2] = ACTIONS(10230), - [anon_sym_COMMA] = ACTIONS(10230), - [anon_sym_SEMI] = ACTIONS(10230), - [anon_sym_COLON] = ACTIONS(10230), - [anon_sym_LBRACK] = ACTIONS(10230), - [anon_sym_RPAREN] = ACTIONS(10230), - [anon_sym_EQ] = ACTIONS(10230), - [anon_sym_LBRACE] = ACTIONS(10230), - [sym_comment] = ACTIONS(3), - }, - [4520] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4520), - [anon_sym_LPAREN2] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(10232), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(10232), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [sym_noexcept] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(10232), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_COLON] = ACTIONS(2077), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(10232), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - }, - [4521] = { - [sym_parameter_list] = STATE(4523), - [sym_abstract_array_declarator] = STATE(4744), - [sym_abstract_pointer_declarator] = STATE(4744), - [sym_abstract_reference_declarator] = STATE(4744), - [sym_abstract_function_declarator] = STATE(4744), - [sym__abstract_declarator] = STATE(4744), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9795), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(9797), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(9799), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), - }, - [4522] = { - [sym_abstract_array_declarator] = STATE(4746), - [sym_parameter_list] = STATE(4523), - [sym_abstract_reference_declarator] = STATE(4746), - [sym_abstract_function_declarator] = STATE(4746), - [aux_sym_type_definition_repeat1] = STATE(4745), - [sym_abstract_pointer_declarator] = STATE(4746), - [sym_type_qualifier] = STATE(4745), - [sym__abstract_declarator] = STATE(4746), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9795), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(9797), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_AMP_AMP] = ACTIONS(9799), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(2832), - }, - [4523] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4747), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4747), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(10235), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_COLON] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(7453), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(2059), - }, - [4524] = { - [sym_parameter_list] = STATE(4748), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym_COMMA] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_SEMI] = ACTIONS(8186), - [anon_sym_COLON] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_EQ] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), - [anon_sym_LBRACE] = ACTIONS(8186), - }, - [4525] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4749), - [sym_logical_expression] = STATE(4749), - [sym_bitwise_expression] = STATE(4749), - [sym_cast_expression] = STATE(4749), - [sym_new_expression] = STATE(4749), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4749), - [sym_char_literal] = STATE(4749), - [sym_template_function] = STATE(4749), - [sym_conditional_expression] = STATE(4749), - [sym_equality_expression] = STATE(4749), - [sym_relational_expression] = STATE(4749), - [sym_delete_expression] = STATE(4749), - [sym_sizeof_expression] = STATE(4749), - [sym_parenthesized_expression] = STATE(4749), - [sym_initializer_list] = STATE(4750), - [sym_concatenated_string] = STATE(4749), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4749), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4749), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4749), - [sym_math_expression] = STATE(4749), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10237), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10239), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10239), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10237), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10239), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10239), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [4526] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4526), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_unsigned] = ACTIONS(10241), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(10241), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(10241), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(10241), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - }, - [4527] = { - [sym_parameter_list] = STATE(3499), - [anon_sym_LPAREN2] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(8186), - }, - [4528] = { - [anon_sym_LPAREN2] = ACTIONS(8620), - [anon_sym_DASH] = ACTIONS(8622), - [anon_sym_DASH_DASH] = ACTIONS(8620), - [anon_sym_DASH_GT] = ACTIONS(8620), - [anon_sym_RPAREN] = ACTIONS(8620), - [anon_sym_STAR_EQ] = ACTIONS(8620), - [anon_sym_LT_LT_EQ] = ACTIONS(8620), - [anon_sym_PERCENT_EQ] = ACTIONS(8620), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8620), - [anon_sym_EQ_EQ] = ACTIONS(8620), - [anon_sym_PIPE] = ACTIONS(8622), - [anon_sym_LT] = ACTIONS(8622), - [anon_sym_CARET_EQ] = ACTIONS(8620), - [anon_sym_AMP] = ACTIONS(8622), - [anon_sym_PLUS] = ACTIONS(8622), - [anon_sym_GT_EQ] = ACTIONS(8620), - [anon_sym_STAR] = ACTIONS(8622), - [anon_sym_SLASH] = ACTIONS(8622), - [anon_sym_RBRACE] = ACTIONS(8620), - [anon_sym_COLON] = ACTIONS(8620), - [anon_sym_SLASH_EQ] = ACTIONS(8620), - [anon_sym_PLUS_EQ] = ACTIONS(8620), - [anon_sym_CARET] = ACTIONS(8622), - [anon_sym_GT] = ACTIONS(8622), - [anon_sym_PIPE_EQ] = ACTIONS(8620), - [anon_sym_GT_GT_EQ] = ACTIONS(8620), - [anon_sym_COMMA] = ACTIONS(8620), - [anon_sym_PIPE_PIPE] = ACTIONS(8620), - [anon_sym_DOT] = ACTIONS(8620), - [anon_sym_LT_LT] = ACTIONS(8622), - [anon_sym_LBRACK] = ACTIONS(8620), - [anon_sym_PERCENT] = ACTIONS(8622), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8620), - [anon_sym_DASH_EQ] = ACTIONS(8620), - [anon_sym_SEMI] = ACTIONS(8620), - [anon_sym_BANG_EQ] = ACTIONS(8620), - [anon_sym_AMP_EQ] = ACTIONS(8620), - [anon_sym_AMP_AMP] = ACTIONS(8620), - [anon_sym_LT_EQ] = ACTIONS(8620), - [anon_sym_EQ] = ACTIONS(8622), - [anon_sym_PLUS_PLUS] = ACTIONS(8620), - [anon_sym_LBRACE] = ACTIONS(8620), - [anon_sym_GT_GT] = ACTIONS(8622), - }, - [4529] = { - [sym_type_qualifier] = STATE(4529), - [aux_sym_type_definition_repeat1] = STATE(4529), + [aux_sym_type_definition_repeat1] = STATE(4500), + [sym_type_qualifier] = STATE(4500), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(4989), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_const] = ACTIONS(2103), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(4989), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), + [anon_sym_explicit] = ACTIONS(4989), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_DASH_GT] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(4989), }, - [4530] = { - [sym_parameter_list] = STATE(4151), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [anon_sym_volatile] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), - [anon_sym_constexpr] = ACTIONS(7275), + [4501] = { + [sym_parameter_list] = STATE(4121), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym_constexpr] = ACTIONS(7256), [sym_comment] = ACTIONS(3), }, - [4531] = { - [sym_type_qualifier] = STATE(4531), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4531), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [anon_sym_volatile] = ACTIONS(6404), - [sym_noexcept] = ACTIONS(10244), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym_override] = ACTIONS(6399), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), - [anon_sym_constexpr] = ACTIONS(6404), + [4502] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4502), + [sym_type_qualifier] = STATE(4502), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [anon_sym_volatile] = ACTIONS(6092), + [sym_noexcept] = ACTIONS(10210), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym_override] = ACTIONS(6087), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), + [anon_sym_constexpr] = ACTIONS(6092), [sym_comment] = ACTIONS(3), }, - [4532] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4531), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4531), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [anon_sym_volatile] = ACTIONS(1062), - [sym_noexcept] = ACTIONS(9816), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(1062), + [4503] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4502), + [sym_type_qualifier] = STATE(4502), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [anon_sym_volatile] = ACTIONS(1070), + [sym_noexcept] = ACTIONS(9782), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_DASH_GT] = ACTIONS(3103), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [4533] = { - [anon_sym_DASH] = ACTIONS(10247), - [sym_raw_string_literal] = ACTIONS(10249), - [anon_sym_else] = ACTIONS(10247), - [sym_true] = ACTIONS(10247), - [anon_sym_mutable] = ACTIONS(10247), - [sym_null] = ACTIONS(10247), - [anon_sym_break] = ACTIONS(10247), - [anon_sym_BANG] = ACTIONS(10249), - [anon_sym_sizeof] = ACTIONS(10247), - [anon_sym_volatile] = ACTIONS(10247), - [anon_sym_PLUS] = ACTIONS(10247), - [anon_sym_typedef] = ACTIONS(10247), - [anon_sym_switch] = ACTIONS(10247), - [anon_sym_explicit] = ACTIONS(10247), - [sym_identifier] = ACTIONS(10247), - [anon_sym_delete] = ACTIONS(10247), - [anon_sym_continue] = ACTIONS(10247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10247), - [anon_sym__Atomic] = ACTIONS(10247), - [sym_number_literal] = ACTIONS(10249), - [anon_sym_extern] = ACTIONS(10247), - [anon_sym_enum] = ACTIONS(10247), - [anon_sym_constexpr] = ACTIONS(10247), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10249), - [anon_sym_namespace] = ACTIONS(10247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10247), - [anon_sym_SQUOTE] = ACTIONS(10249), - [anon_sym_LBRACE] = ACTIONS(10249), - [anon_sym_DASH_DASH] = ACTIONS(10249), - [anon_sym_LPAREN2] = ACTIONS(10249), - [anon_sym_struct] = ACTIONS(10247), - [sym_auto] = ACTIONS(10247), - [anon_sym_signed] = ACTIONS(10247), - [anon_sym_long] = ACTIONS(10247), - [anon_sym_COLON_COLON] = ACTIONS(10249), - [anon_sym_using] = ACTIONS(10247), - [sym_preproc_directive] = ACTIONS(10247), - [aux_sym_preproc_if_token1] = ACTIONS(10247), - [anon_sym_AMP] = ACTIONS(10247), - [anon_sym_static] = ACTIONS(10247), - [anon_sym_RBRACE] = ACTIONS(10249), - [anon_sym_STAR] = ACTIONS(10249), - [anon_sym_union] = ACTIONS(10247), - [anon_sym_typename] = ACTIONS(10247), - [anon_sym_short] = ACTIONS(10247), - [anon_sym_new] = ACTIONS(10247), - [anon_sym_goto] = ACTIONS(10247), - [sym_operator_name] = ACTIONS(10249), - [anon_sym_while] = ACTIONS(10247), - [anon_sym_try] = ACTIONS(10247), - [anon_sym_for] = ACTIONS(10247), - [aux_sym_preproc_include_token1] = ACTIONS(10247), - [anon_sym_register] = ACTIONS(10247), - [anon_sym_DQUOTE] = ACTIONS(10249), - [anon_sym_const] = ACTIONS(10247), - [anon_sym_LBRACK] = ACTIONS(10247), - [anon_sym_class] = ACTIONS(10247), - [anon_sym_if] = ACTIONS(10247), - [sym_primitive_type] = ACTIONS(10247), - [sym_false] = ACTIONS(10247), - [sym_nullptr] = ACTIONS(10247), - [anon_sym_do] = ACTIONS(10247), - [anon_sym_template] = ACTIONS(10247), - [anon_sym_return] = ACTIONS(10247), - [anon_sym_TILDE] = ACTIONS(10249), - [anon_sym_SEMI] = ACTIONS(10249), - [ts_builtin_sym_end] = ACTIONS(10249), - [aux_sym_preproc_def_token1] = ACTIONS(10247), - [anon_sym_AMP_AMP] = ACTIONS(10249), - [anon_sym_inline] = ACTIONS(10247), - [anon_sym_PLUS_PLUS] = ACTIONS(10249), - [anon_sym_restrict] = ACTIONS(10247), + [4504] = { + [anon_sym_DASH] = ACTIONS(10213), + [sym_raw_string_literal] = ACTIONS(10215), + [anon_sym_else] = ACTIONS(10213), + [sym_true] = ACTIONS(10213), + [anon_sym_mutable] = ACTIONS(10213), + [sym_null] = ACTIONS(10213), + [anon_sym_break] = ACTIONS(10213), + [anon_sym_BANG] = ACTIONS(10215), + [anon_sym_sizeof] = ACTIONS(10213), + [anon_sym_volatile] = ACTIONS(10213), + [anon_sym_PLUS] = ACTIONS(10213), + [anon_sym_typedef] = ACTIONS(10213), + [anon_sym_switch] = ACTIONS(10213), + [anon_sym_explicit] = ACTIONS(10213), + [sym_identifier] = ACTIONS(10213), + [anon_sym_delete] = ACTIONS(10213), + [anon_sym_continue] = ACTIONS(10213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10213), + [anon_sym__Atomic] = ACTIONS(10213), + [sym_number_literal] = ACTIONS(10215), + [anon_sym_extern] = ACTIONS(10213), + [anon_sym_enum] = ACTIONS(10213), + [anon_sym_constexpr] = ACTIONS(10213), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10215), + [anon_sym_namespace] = ACTIONS(10213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10213), + [anon_sym_SQUOTE] = ACTIONS(10215), + [anon_sym_LBRACE] = ACTIONS(10215), + [anon_sym_DASH_DASH] = ACTIONS(10215), + [anon_sym_LPAREN2] = ACTIONS(10215), + [anon_sym_struct] = ACTIONS(10213), + [sym_auto] = ACTIONS(10213), + [anon_sym_signed] = ACTIONS(10213), + [anon_sym_long] = ACTIONS(10213), + [anon_sym_COLON_COLON] = ACTIONS(10215), + [anon_sym_using] = ACTIONS(10213), + [sym_preproc_directive] = ACTIONS(10213), + [aux_sym_preproc_if_token1] = ACTIONS(10213), + [anon_sym_AMP] = ACTIONS(10213), + [anon_sym_static] = ACTIONS(10213), + [anon_sym_RBRACE] = ACTIONS(10215), + [anon_sym_STAR] = ACTIONS(10215), + [anon_sym_union] = ACTIONS(10213), + [anon_sym_typename] = ACTIONS(10213), + [anon_sym_short] = ACTIONS(10213), + [anon_sym_new] = ACTIONS(10213), + [anon_sym_goto] = ACTIONS(10213), + [sym_operator_name] = ACTIONS(10215), + [anon_sym_while] = ACTIONS(10213), + [anon_sym_try] = ACTIONS(10213), + [anon_sym_for] = ACTIONS(10213), + [aux_sym_preproc_include_token1] = ACTIONS(10213), + [anon_sym_register] = ACTIONS(10213), + [anon_sym_DQUOTE] = ACTIONS(10215), + [anon_sym_const] = ACTIONS(10213), + [anon_sym_LBRACK] = ACTIONS(10213), + [anon_sym_class] = ACTIONS(10213), + [anon_sym_if] = ACTIONS(10213), + [sym_primitive_type] = ACTIONS(10213), + [sym_false] = ACTIONS(10213), + [sym_nullptr] = ACTIONS(10213), + [anon_sym_do] = ACTIONS(10213), + [anon_sym_template] = ACTIONS(10213), + [anon_sym_return] = ACTIONS(10213), + [anon_sym_TILDE] = ACTIONS(10215), + [anon_sym_SEMI] = ACTIONS(10215), + [ts_builtin_sym_end] = ACTIONS(10215), + [aux_sym_preproc_def_token1] = ACTIONS(10213), + [anon_sym_AMP_AMP] = ACTIONS(10215), + [anon_sym_inline] = ACTIONS(10213), + [anon_sym_PLUS_PLUS] = ACTIONS(10215), + [anon_sym_restrict] = ACTIONS(10213), }, - [4534] = { - [sym_do_statement] = STATE(4751), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4505] = { + [sym_do_statement] = STATE(4722), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4751), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4751), - [sym_if_statement] = STATE(4751), - [sym_switch_statement] = STATE(4751), - [sym_for_statement] = STATE(4751), - [sym_return_statement] = STATE(4751), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4722), + [sym_try_statement] = STATE(4722), + [sym_if_statement] = STATE(4722), + [sym_switch_statement] = STATE(4722), + [sym_for_statement] = STATE(4722), + [sym_return_statement] = STATE(4722), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4751), - [sym_break_statement] = STATE(4751), - [sym_continue_statement] = STATE(4751), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4722), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4751), - [sym_labeled_statement] = STATE(4751), - [sym_expression_statement] = STATE(4751), - [sym_while_statement] = STATE(4751), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4722), + [sym_for_range_loop] = STATE(4722), + [sym_compound_statement] = STATE(4722), + [sym_labeled_statement] = STATE(4722), + [sym_expression_statement] = STATE(4722), + [sym_while_statement] = STATE(4722), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -183357,7 +182769,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -183381,142 +182793,486 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4535] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10251), + [4506] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10217), [sym_comment] = ACTIONS(3), }, - [4536] = { - [anon_sym_LPAREN2] = ACTIONS(8503), - [anon_sym_DASH] = ACTIONS(8505), - [anon_sym_DASH_DASH] = ACTIONS(8503), - [anon_sym_STAR_EQ] = ACTIONS(8503), - [anon_sym_LT_LT_EQ] = ACTIONS(8503), - [anon_sym_PERCENT_EQ] = ACTIONS(8503), - [anon_sym_EQ_EQ] = ACTIONS(8503), - [anon_sym_PIPE] = ACTIONS(8505), - [anon_sym_LT] = ACTIONS(8505), - [anon_sym_CARET_EQ] = ACTIONS(8503), - [anon_sym_AMP] = ACTIONS(8505), - [anon_sym_PLUS] = ACTIONS(8505), - [anon_sym_GT_EQ] = ACTIONS(8503), - [anon_sym_STAR] = ACTIONS(8505), - [anon_sym_SLASH] = ACTIONS(8505), - [anon_sym_SLASH_EQ] = ACTIONS(8503), - [anon_sym_PLUS_EQ] = ACTIONS(8503), - [anon_sym_CARET] = ACTIONS(8505), - [anon_sym_GT] = ACTIONS(8505), - [anon_sym_PIPE_EQ] = ACTIONS(8503), - [anon_sym_GT_GT_EQ] = ACTIONS(8503), - [anon_sym_COMMA] = ACTIONS(8503), - [anon_sym_PIPE_PIPE] = ACTIONS(8503), - [anon_sym_DOT] = ACTIONS(8503), - [anon_sym_LT_LT] = ACTIONS(8505), - [anon_sym_LBRACK] = ACTIONS(8503), - [anon_sym_PERCENT] = ACTIONS(8505), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8503), - [anon_sym_DASH_EQ] = ACTIONS(8503), - [anon_sym_LT_EQ] = ACTIONS(8503), - [anon_sym_BANG_EQ] = ACTIONS(8503), - [anon_sym_AMP_EQ] = ACTIONS(8503), - [anon_sym_AMP_AMP] = ACTIONS(8503), - [anon_sym_DASH_GT] = ACTIONS(8503), - [anon_sym_EQ] = ACTIONS(8505), - [anon_sym_PLUS_PLUS] = ACTIONS(8503), - [anon_sym_GT_GT] = ACTIONS(8505), - [anon_sym_RBRACK] = ACTIONS(8503), + [4507] = { + [anon_sym_LPAREN2] = ACTIONS(8475), + [anon_sym_DASH] = ACTIONS(8477), + [anon_sym_DASH_DASH] = ACTIONS(8475), + [anon_sym_STAR_EQ] = ACTIONS(8475), + [anon_sym_LT_LT_EQ] = ACTIONS(8475), + [anon_sym_PERCENT_EQ] = ACTIONS(8475), + [anon_sym_EQ_EQ] = ACTIONS(8475), + [anon_sym_PIPE] = ACTIONS(8477), + [anon_sym_LT] = ACTIONS(8477), + [anon_sym_CARET_EQ] = ACTIONS(8475), + [anon_sym_AMP] = ACTIONS(8477), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_GT_EQ] = ACTIONS(8475), + [anon_sym_STAR] = ACTIONS(8477), + [anon_sym_SLASH] = ACTIONS(8477), + [anon_sym_SLASH_EQ] = ACTIONS(8475), + [anon_sym_PLUS_EQ] = ACTIONS(8475), + [anon_sym_CARET] = ACTIONS(8477), + [anon_sym_GT] = ACTIONS(8477), + [anon_sym_PIPE_EQ] = ACTIONS(8475), + [anon_sym_GT_GT_EQ] = ACTIONS(8475), + [anon_sym_COMMA] = ACTIONS(8475), + [anon_sym_PIPE_PIPE] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_LT_LT] = ACTIONS(8477), + [anon_sym_LBRACK] = ACTIONS(8475), + [anon_sym_PERCENT] = ACTIONS(8477), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8475), + [anon_sym_DASH_EQ] = ACTIONS(8475), + [anon_sym_LT_EQ] = ACTIONS(8475), + [anon_sym_BANG_EQ] = ACTIONS(8475), + [anon_sym_AMP_EQ] = ACTIONS(8475), + [anon_sym_AMP_AMP] = ACTIONS(8475), + [anon_sym_DASH_GT] = ACTIONS(8475), + [anon_sym_EQ] = ACTIONS(8477), + [anon_sym_PLUS_PLUS] = ACTIONS(8475), + [anon_sym_GT_GT] = ACTIONS(8477), + [anon_sym_RBRACK] = ACTIONS(8475), }, - [4537] = { - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_GT_GT] = ACTIONS(7299), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_STAR_EQ] = ACTIONS(7297), - [anon_sym_LT_LT_EQ] = ACTIONS(7297), - [anon_sym_PERCENT_EQ] = ACTIONS(7297), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_CARET_EQ] = ACTIONS(7297), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7297), - [anon_sym_STAR] = ACTIONS(7299), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_SLASH_EQ] = ACTIONS(7297), - [anon_sym_PLUS_EQ] = ACTIONS(7297), - [anon_sym_CARET] = ACTIONS(7299), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_PIPE_EQ] = ACTIONS(7297), - [anon_sym_GT_GT_EQ] = ACTIONS(7297), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7297), - [anon_sym_LT_LT] = ACTIONS(7299), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_PERCENT] = ACTIONS(7299), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_DASH_EQ] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_AMP_EQ] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_RBRACK] = ACTIONS(7297), + [4508] = { + [anon_sym_LPAREN2] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7280), + [anon_sym_DASH] = ACTIONS(7280), + [anon_sym_DASH_DASH] = ACTIONS(7278), + [anon_sym_STAR_EQ] = ACTIONS(7278), + [anon_sym_LT_LT_EQ] = ACTIONS(7278), + [anon_sym_PERCENT_EQ] = ACTIONS(7278), + [anon_sym_EQ_EQ] = ACTIONS(7278), + [anon_sym_PIPE] = ACTIONS(7280), + [anon_sym_LT] = ACTIONS(7280), + [anon_sym_CARET_EQ] = ACTIONS(7278), + [anon_sym_AMP] = ACTIONS(7280), + [anon_sym_PLUS] = ACTIONS(7280), + [anon_sym_GT_EQ] = ACTIONS(7278), + [anon_sym_STAR] = ACTIONS(7280), + [anon_sym_SLASH] = ACTIONS(7280), + [anon_sym_SLASH_EQ] = ACTIONS(7278), + [anon_sym_PLUS_EQ] = ACTIONS(7278), + [anon_sym_CARET] = ACTIONS(7280), + [anon_sym_GT] = ACTIONS(7280), + [anon_sym_PIPE_EQ] = ACTIONS(7278), + [anon_sym_GT_GT_EQ] = ACTIONS(7278), + [anon_sym_COMMA] = ACTIONS(7278), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_DOT] = ACTIONS(7278), + [anon_sym_LT_LT] = ACTIONS(7280), + [anon_sym_LBRACK] = ACTIONS(7278), + [anon_sym_PERCENT] = ACTIONS(7280), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7278), + [anon_sym_DASH_EQ] = ACTIONS(7278), + [anon_sym_LT_EQ] = ACTIONS(7278), + [anon_sym_BANG_EQ] = ACTIONS(7278), + [anon_sym_AMP_EQ] = ACTIONS(7278), + [anon_sym_AMP_AMP] = ACTIONS(7278), + [anon_sym_DASH_GT] = ACTIONS(7278), + [anon_sym_EQ] = ACTIONS(7280), + [anon_sym_PLUS_PLUS] = ACTIONS(7278), + [anon_sym_LBRACE] = ACTIONS(7278), + [anon_sym_RBRACK] = ACTIONS(7278), }, - [4538] = { - [anon_sym_LPAREN2] = ACTIONS(7465), - [anon_sym_GT_GT] = ACTIONS(7467), - [anon_sym_DASH] = ACTIONS(7467), - [anon_sym_DASH_DASH] = ACTIONS(7465), - [anon_sym_STAR_EQ] = ACTIONS(7465), - [anon_sym_LT_LT_EQ] = ACTIONS(7465), - [anon_sym_PERCENT_EQ] = ACTIONS(7465), - [anon_sym_EQ_EQ] = ACTIONS(7465), - [anon_sym_PIPE] = ACTIONS(7467), - [anon_sym_LT] = ACTIONS(7467), - [anon_sym_CARET_EQ] = ACTIONS(7465), - [anon_sym_AMP] = ACTIONS(7467), - [anon_sym_PLUS] = ACTIONS(7467), - [anon_sym_GT_EQ] = ACTIONS(7465), - [anon_sym_STAR] = ACTIONS(7467), - [anon_sym_SLASH] = ACTIONS(7467), - [anon_sym_SLASH_EQ] = ACTIONS(7465), - [anon_sym_PLUS_EQ] = ACTIONS(7465), - [anon_sym_CARET] = ACTIONS(7467), - [anon_sym_GT] = ACTIONS(7467), - [anon_sym_PIPE_EQ] = ACTIONS(7465), - [anon_sym_GT_GT_EQ] = ACTIONS(7465), - [anon_sym_COMMA] = ACTIONS(7465), - [anon_sym_PIPE_PIPE] = ACTIONS(7465), - [anon_sym_DOT] = ACTIONS(7465), - [anon_sym_LT_LT] = ACTIONS(7467), - [anon_sym_LBRACK] = ACTIONS(7465), - [anon_sym_PERCENT] = ACTIONS(7467), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7465), - [anon_sym_DASH_EQ] = ACTIONS(7465), - [anon_sym_LT_EQ] = ACTIONS(7465), - [anon_sym_BANG_EQ] = ACTIONS(7465), - [anon_sym_AMP_EQ] = ACTIONS(7465), - [anon_sym_AMP_AMP] = ACTIONS(7465), - [anon_sym_DASH_GT] = ACTIONS(7465), - [anon_sym_EQ] = ACTIONS(7467), - [anon_sym_PLUS_PLUS] = ACTIONS(7465), - [anon_sym_LBRACE] = ACTIONS(7465), - [anon_sym_RBRACK] = ACTIONS(7465), + [4509] = { + [anon_sym_LPAREN2] = ACTIONS(7446), + [anon_sym_GT_GT] = ACTIONS(7448), + [anon_sym_DASH] = ACTIONS(7448), + [anon_sym_DASH_DASH] = ACTIONS(7446), + [anon_sym_STAR_EQ] = ACTIONS(7446), + [anon_sym_LT_LT_EQ] = ACTIONS(7446), + [anon_sym_PERCENT_EQ] = ACTIONS(7446), + [anon_sym_EQ_EQ] = ACTIONS(7446), + [anon_sym_PIPE] = ACTIONS(7448), + [anon_sym_LT] = ACTIONS(7448), + [anon_sym_CARET_EQ] = ACTIONS(7446), + [anon_sym_AMP] = ACTIONS(7448), + [anon_sym_PLUS] = ACTIONS(7448), + [anon_sym_GT_EQ] = ACTIONS(7446), + [anon_sym_STAR] = ACTIONS(7448), + [anon_sym_SLASH] = ACTIONS(7448), + [anon_sym_SLASH_EQ] = ACTIONS(7446), + [anon_sym_PLUS_EQ] = ACTIONS(7446), + [anon_sym_CARET] = ACTIONS(7448), + [anon_sym_GT] = ACTIONS(7448), + [anon_sym_PIPE_EQ] = ACTIONS(7446), + [anon_sym_GT_GT_EQ] = ACTIONS(7446), + [anon_sym_COMMA] = ACTIONS(7446), + [anon_sym_PIPE_PIPE] = ACTIONS(7446), + [anon_sym_DOT] = ACTIONS(7446), + [anon_sym_LT_LT] = ACTIONS(7448), + [anon_sym_LBRACK] = ACTIONS(7446), + [anon_sym_PERCENT] = ACTIONS(7448), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7446), + [anon_sym_DASH_EQ] = ACTIONS(7446), + [anon_sym_LT_EQ] = ACTIONS(7446), + [anon_sym_BANG_EQ] = ACTIONS(7446), + [anon_sym_AMP_EQ] = ACTIONS(7446), + [anon_sym_AMP_AMP] = ACTIONS(7446), + [anon_sym_DASH_GT] = ACTIONS(7446), + [anon_sym_EQ] = ACTIONS(7448), + [anon_sym_PLUS_PLUS] = ACTIONS(7446), + [anon_sym_LBRACE] = ACTIONS(7446), + [anon_sym_RBRACK] = ACTIONS(7446), }, - [4539] = { + [4510] = { + [anon_sym_LPAREN2] = ACTIONS(7511), + [anon_sym_GT_GT] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_DASH_DASH] = ACTIONS(7511), + [anon_sym_STAR_EQ] = ACTIONS(7511), + [anon_sym_LT_LT_EQ] = ACTIONS(7511), + [anon_sym_PERCENT_EQ] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7511), + [anon_sym_PIPE] = ACTIONS(7513), + [anon_sym_LT] = ACTIONS(7513), + [anon_sym_CARET_EQ] = ACTIONS(7511), + [anon_sym_AMP] = ACTIONS(7513), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_GT_EQ] = ACTIONS(7511), + [anon_sym_STAR] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_SLASH_EQ] = ACTIONS(7511), + [anon_sym_PLUS_EQ] = ACTIONS(7511), + [anon_sym_CARET] = ACTIONS(7513), + [anon_sym_GT] = ACTIONS(7513), + [anon_sym_PIPE_EQ] = ACTIONS(7511), + [anon_sym_GT_GT_EQ] = ACTIONS(7511), + [anon_sym_COMMA] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7511), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7511), + [anon_sym_PERCENT] = ACTIONS(7513), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7511), + [anon_sym_DASH_EQ] = ACTIONS(7511), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_BANG_EQ] = ACTIONS(7511), + [anon_sym_AMP_EQ] = ACTIONS(7511), + [anon_sym_AMP_AMP] = ACTIONS(7511), + [anon_sym_DASH_GT] = ACTIONS(7511), + [anon_sym_EQ] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7511), + [anon_sym_LBRACE] = ACTIONS(7511), + [anon_sym_RBRACK] = ACTIONS(7511), + }, + [4511] = { + [anon_sym_LPAREN2] = ACTIONS(7515), + [anon_sym_GT_GT] = ACTIONS(7517), + [anon_sym_DASH] = ACTIONS(7517), + [anon_sym_DASH_DASH] = ACTIONS(7515), + [anon_sym_STAR_EQ] = ACTIONS(7515), + [anon_sym_LT_LT_EQ] = ACTIONS(7515), + [anon_sym_PERCENT_EQ] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7515), + [anon_sym_PIPE] = ACTIONS(7517), + [anon_sym_LT] = ACTIONS(7517), + [anon_sym_CARET_EQ] = ACTIONS(7515), + [anon_sym_AMP] = ACTIONS(7517), + [anon_sym_PLUS] = ACTIONS(7517), + [anon_sym_GT_EQ] = ACTIONS(7515), + [anon_sym_STAR] = ACTIONS(7517), + [anon_sym_SLASH] = ACTIONS(7517), + [anon_sym_SLASH_EQ] = ACTIONS(7515), + [anon_sym_PLUS_EQ] = ACTIONS(7515), + [anon_sym_CARET] = ACTIONS(7517), + [anon_sym_GT] = ACTIONS(7517), + [anon_sym_PIPE_EQ] = ACTIONS(7515), + [anon_sym_GT_GT_EQ] = ACTIONS(7515), + [anon_sym_COMMA] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7515), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7517), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7515), + [anon_sym_DASH_EQ] = ACTIONS(7515), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_BANG_EQ] = ACTIONS(7515), + [anon_sym_AMP_EQ] = ACTIONS(7515), + [anon_sym_AMP_AMP] = ACTIONS(7515), + [anon_sym_DASH_GT] = ACTIONS(7515), + [anon_sym_EQ] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7515), + [anon_sym_LBRACE] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(7515), + }, + [4512] = { + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_GT_GT] = ACTIONS(7137), + [anon_sym_DASH] = ACTIONS(7137), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7137), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_AMP] = ACTIONS(7137), + [anon_sym_PLUS] = ACTIONS(7137), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_STAR] = ACTIONS(7137), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_CARET] = ACTIONS(7137), + [anon_sym_GT] = ACTIONS(7137), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7135), + [anon_sym_LT_LT] = ACTIONS(7137), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_PERCENT] = ACTIONS(7137), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7137), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_RBRACK] = ACTIONS(7135), + }, + [4513] = { + [sym_enumerator] = STATE(2364), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(10219), + }, + [4514] = { + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_GT_GT] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_STAR_EQ] = ACTIONS(7640), + [anon_sym_LT_LT_EQ] = ACTIONS(7640), + [anon_sym_PERCENT_EQ] = ACTIONS(7640), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_CARET_EQ] = ACTIONS(7640), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7640), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_SLASH_EQ] = ACTIONS(7640), + [anon_sym_PLUS_EQ] = ACTIONS(7640), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_PIPE_EQ] = ACTIONS(7640), + [anon_sym_GT_GT_EQ] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_LT_LT] = ACTIONS(7642), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_PERCENT] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_DASH_EQ] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_AMP_EQ] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_RBRACK] = ACTIONS(7640), + }, + [4515] = { + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_GT_GT] = ACTIONS(7646), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_STAR_EQ] = ACTIONS(7644), + [anon_sym_LT_LT_EQ] = ACTIONS(7644), + [anon_sym_PERCENT_EQ] = ACTIONS(7644), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_CARET_EQ] = ACTIONS(7644), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7644), + [anon_sym_STAR] = ACTIONS(7646), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_SLASH_EQ] = ACTIONS(7644), + [anon_sym_PLUS_EQ] = ACTIONS(7644), + [anon_sym_CARET] = ACTIONS(7646), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_PIPE_EQ] = ACTIONS(7644), + [anon_sym_GT_GT_EQ] = ACTIONS(7644), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7644), + [anon_sym_LT_LT] = ACTIONS(7646), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_PERCENT] = ACTIONS(7646), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_DASH_EQ] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_AMP_EQ] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_RBRACK] = ACTIONS(7644), + }, + [4516] = { + [anon_sym_LPAREN2] = ACTIONS(8868), + [anon_sym_GT_GT] = ACTIONS(8870), + [anon_sym_DASH] = ACTIONS(8870), + [anon_sym_DASH_DASH] = ACTIONS(8868), + [anon_sym_STAR_EQ] = ACTIONS(8868), + [anon_sym_LT_LT_EQ] = ACTIONS(8868), + [anon_sym_PERCENT_EQ] = ACTIONS(8868), + [anon_sym_EQ_EQ] = ACTIONS(8868), + [anon_sym_PIPE] = ACTIONS(8870), + [anon_sym_LT] = ACTIONS(8870), + [anon_sym_CARET_EQ] = ACTIONS(8868), + [anon_sym_AMP] = ACTIONS(8870), + [anon_sym_PLUS] = ACTIONS(8870), + [anon_sym_GT_EQ] = ACTIONS(8868), + [anon_sym_STAR] = ACTIONS(8870), + [anon_sym_SLASH] = ACTIONS(8870), + [anon_sym_SLASH_EQ] = ACTIONS(8868), + [anon_sym_PLUS_EQ] = ACTIONS(8868), + [anon_sym_CARET] = ACTIONS(8870), + [anon_sym_GT] = ACTIONS(8870), + [anon_sym_PIPE_EQ] = ACTIONS(8868), + [anon_sym_GT_GT_EQ] = ACTIONS(8868), + [anon_sym_COMMA] = ACTIONS(8868), + [anon_sym_PIPE_PIPE] = ACTIONS(8868), + [anon_sym_DOT] = ACTIONS(8868), + [anon_sym_LT_LT] = ACTIONS(8870), + [anon_sym_LBRACK] = ACTIONS(8868), + [anon_sym_PERCENT] = ACTIONS(8870), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8868), + [anon_sym_DASH_EQ] = ACTIONS(8868), + [anon_sym_LT_EQ] = ACTIONS(8868), + [anon_sym_BANG_EQ] = ACTIONS(8868), + [anon_sym_AMP_EQ] = ACTIONS(8868), + [anon_sym_AMP_AMP] = ACTIONS(8868), + [anon_sym_DASH_GT] = ACTIONS(8868), + [anon_sym_EQ] = ACTIONS(8870), + [anon_sym_PLUS_PLUS] = ACTIONS(8868), + [anon_sym_LBRACE] = ACTIONS(8868), + [anon_sym_RBRACK] = ACTIONS(8868), + }, + [4517] = { + [anon_sym_LPAREN2] = ACTIONS(8584), + [anon_sym_DASH] = ACTIONS(8586), + [anon_sym_LBRACE] = ACTIONS(8584), + [anon_sym_RBRACK] = ACTIONS(8584), + [anon_sym_final] = ACTIONS(8584), + [anon_sym_mutable] = ACTIONS(8584), + [anon_sym_restrict] = ACTIONS(8584), + [anon_sym_EQ_EQ] = ACTIONS(8584), + [anon_sym_PIPE] = ACTIONS(8586), + [anon_sym_LT] = ACTIONS(8586), + [anon_sym_AMP] = ACTIONS(8586), + [anon_sym_volatile] = ACTIONS(8584), + [anon_sym_PLUS] = ACTIONS(8586), + [anon_sym_GT_EQ] = ACTIONS(8584), + [anon_sym_STAR] = ACTIONS(8584), + [anon_sym_SLASH] = ACTIONS(8586), + [anon_sym_override] = ACTIONS(8584), + [anon_sym_COLON] = ACTIONS(8584), + [anon_sym_explicit] = ACTIONS(8584), + [sym_noexcept] = ACTIONS(8584), + [anon_sym_CARET] = ACTIONS(8584), + [anon_sym_GT] = ACTIONS(8586), + [anon_sym_COMMA] = ACTIONS(8584), + [anon_sym_PIPE_PIPE] = ACTIONS(8584), + [anon_sym_DOT] = ACTIONS(8584), + [anon_sym__Atomic] = ACTIONS(8584), + [anon_sym_LT_LT] = ACTIONS(8584), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_PERCENT] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8584), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8584), + [anon_sym_LT_EQ] = ACTIONS(8584), + [anon_sym_BANG_EQ] = ACTIONS(8584), + [anon_sym_SEMI] = ACTIONS(8584), + [anon_sym_AMP_AMP] = ACTIONS(8584), + [anon_sym_DASH_GT] = ACTIONS(8584), + [anon_sym_PLUS_PLUS] = ACTIONS(8584), + [anon_sym_EQ] = ACTIONS(8586), + [anon_sym_GT_GT] = ACTIONS(8584), + [anon_sym_DASH_DASH] = ACTIONS(8584), + }, + [4518] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(7674), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(7684), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_RPAREN] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [4519] = { + [sym_new_declarator] = STATE(4115), [anon_sym_LPAREN2] = ACTIONS(7530), - [anon_sym_GT_GT] = ACTIONS(7532), [anon_sym_DASH] = ACTIONS(7532), [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), [anon_sym_STAR_EQ] = ACTIONS(7530), [anon_sym_LT_LT_EQ] = ACTIONS(7530), [anon_sym_PERCENT_EQ] = ACTIONS(7530), @@ -183535,11 +183291,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7532), [anon_sym_PIPE_EQ] = ACTIONS(7530), [anon_sym_GT_GT_EQ] = ACTIONS(7530), - [anon_sym_COMMA] = ACTIONS(7530), [anon_sym_PIPE_PIPE] = ACTIONS(7530), [anon_sym_DOT] = ACTIONS(7530), [anon_sym_LT_LT] = ACTIONS(7532), - [anon_sym_LBRACK] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(7666), [anon_sym_PERCENT] = ACTIONS(7532), [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(7530), @@ -183547,717 +183302,374 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(7530), [anon_sym_BANG_EQ] = ACTIONS(7530), [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_RPAREN] = ACTIONS(7530), [anon_sym_AMP_AMP] = ACTIONS(7530), - [anon_sym_DASH_GT] = ACTIONS(7530), [anon_sym_EQ] = ACTIONS(7532), [anon_sym_PLUS_PLUS] = ACTIONS(7530), [anon_sym_LBRACE] = ACTIONS(7530), - [anon_sym_RBRACK] = ACTIONS(7530), - }, - [4540] = { - [anon_sym_LPAREN2] = ACTIONS(7534), - [anon_sym_GT_GT] = ACTIONS(7536), - [anon_sym_DASH] = ACTIONS(7536), - [anon_sym_DASH_DASH] = ACTIONS(7534), - [anon_sym_STAR_EQ] = ACTIONS(7534), - [anon_sym_LT_LT_EQ] = ACTIONS(7534), - [anon_sym_PERCENT_EQ] = ACTIONS(7534), - [anon_sym_EQ_EQ] = ACTIONS(7534), - [anon_sym_PIPE] = ACTIONS(7536), - [anon_sym_LT] = ACTIONS(7536), - [anon_sym_CARET_EQ] = ACTIONS(7534), - [anon_sym_AMP] = ACTIONS(7536), - [anon_sym_PLUS] = ACTIONS(7536), - [anon_sym_GT_EQ] = ACTIONS(7534), - [anon_sym_STAR] = ACTIONS(7536), - [anon_sym_SLASH] = ACTIONS(7536), - [anon_sym_SLASH_EQ] = ACTIONS(7534), - [anon_sym_PLUS_EQ] = ACTIONS(7534), - [anon_sym_CARET] = ACTIONS(7536), - [anon_sym_GT] = ACTIONS(7536), - [anon_sym_PIPE_EQ] = ACTIONS(7534), - [anon_sym_GT_GT_EQ] = ACTIONS(7534), - [anon_sym_COMMA] = ACTIONS(7534), - [anon_sym_PIPE_PIPE] = ACTIONS(7534), - [anon_sym_DOT] = ACTIONS(7534), - [anon_sym_LT_LT] = ACTIONS(7536), - [anon_sym_LBRACK] = ACTIONS(7534), - [anon_sym_PERCENT] = ACTIONS(7536), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7534), - [anon_sym_DASH_EQ] = ACTIONS(7534), - [anon_sym_LT_EQ] = ACTIONS(7534), - [anon_sym_BANG_EQ] = ACTIONS(7534), - [anon_sym_AMP_EQ] = ACTIONS(7534), - [anon_sym_AMP_AMP] = ACTIONS(7534), - [anon_sym_DASH_GT] = ACTIONS(7534), - [anon_sym_EQ] = ACTIONS(7536), - [anon_sym_PLUS_PLUS] = ACTIONS(7534), - [anon_sym_LBRACE] = ACTIONS(7534), - [anon_sym_RBRACK] = ACTIONS(7534), - }, - [4541] = { - [anon_sym_LPAREN2] = ACTIONS(7154), - [anon_sym_GT_GT] = ACTIONS(7156), - [anon_sym_DASH] = ACTIONS(7156), - [anon_sym_DASH_DASH] = ACTIONS(7154), - [anon_sym_STAR_EQ] = ACTIONS(7154), - [anon_sym_LT_LT_EQ] = ACTIONS(7154), - [anon_sym_PERCENT_EQ] = ACTIONS(7154), - [anon_sym_EQ_EQ] = ACTIONS(7154), - [anon_sym_PIPE] = ACTIONS(7156), - [anon_sym_LT] = ACTIONS(7156), - [anon_sym_CARET_EQ] = ACTIONS(7154), - [anon_sym_AMP] = ACTIONS(7156), - [anon_sym_PLUS] = ACTIONS(7156), - [anon_sym_GT_EQ] = ACTIONS(7154), - [anon_sym_STAR] = ACTIONS(7156), - [anon_sym_SLASH] = ACTIONS(7156), - [anon_sym_SLASH_EQ] = ACTIONS(7154), - [anon_sym_PLUS_EQ] = ACTIONS(7154), - [anon_sym_CARET] = ACTIONS(7156), - [anon_sym_GT] = ACTIONS(7156), - [anon_sym_PIPE_EQ] = ACTIONS(7154), - [anon_sym_GT_GT_EQ] = ACTIONS(7154), - [anon_sym_COMMA] = ACTIONS(7154), - [anon_sym_PIPE_PIPE] = ACTIONS(7154), - [anon_sym_DOT] = ACTIONS(7154), - [anon_sym_LT_LT] = ACTIONS(7156), - [anon_sym_LBRACK] = ACTIONS(7154), - [anon_sym_PERCENT] = ACTIONS(7156), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7154), - [anon_sym_DASH_EQ] = ACTIONS(7154), - [anon_sym_LT_EQ] = ACTIONS(7154), - [anon_sym_BANG_EQ] = ACTIONS(7154), - [anon_sym_AMP_EQ] = ACTIONS(7154), - [anon_sym_AMP_AMP] = ACTIONS(7154), - [anon_sym_DASH_GT] = ACTIONS(7154), - [anon_sym_EQ] = ACTIONS(7156), - [anon_sym_PLUS_PLUS] = ACTIONS(7154), - [anon_sym_LBRACE] = ACTIONS(7154), - [anon_sym_RBRACK] = ACTIONS(7154), - }, - [4542] = { - [sym_enumerator] = STATE(2379), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(10253), - }, - [4543] = { - [anon_sym_LPAREN2] = ACTIONS(7659), - [anon_sym_GT_GT] = ACTIONS(7661), - [anon_sym_DASH] = ACTIONS(7661), - [anon_sym_DASH_DASH] = ACTIONS(7659), - [anon_sym_STAR_EQ] = ACTIONS(7659), - [anon_sym_LT_LT_EQ] = ACTIONS(7659), - [anon_sym_PERCENT_EQ] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7659), - [anon_sym_PIPE] = ACTIONS(7661), - [anon_sym_LT] = ACTIONS(7661), - [anon_sym_CARET_EQ] = ACTIONS(7659), - [anon_sym_AMP] = ACTIONS(7661), - [anon_sym_PLUS] = ACTIONS(7661), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7661), - [anon_sym_SLASH] = ACTIONS(7661), - [anon_sym_SLASH_EQ] = ACTIONS(7659), - [anon_sym_PLUS_EQ] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7661), - [anon_sym_GT] = ACTIONS(7661), - [anon_sym_PIPE_EQ] = ACTIONS(7659), - [anon_sym_GT_GT_EQ] = ACTIONS(7659), - [anon_sym_COMMA] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7659), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7661), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7659), - [anon_sym_DASH_EQ] = ACTIONS(7659), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_BANG_EQ] = ACTIONS(7659), - [anon_sym_AMP_EQ] = ACTIONS(7659), - [anon_sym_AMP_AMP] = ACTIONS(7659), - [anon_sym_DASH_GT] = ACTIONS(7659), - [anon_sym_EQ] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7659), - [anon_sym_LBRACE] = ACTIONS(7659), - [anon_sym_RBRACK] = ACTIONS(7659), - }, - [4544] = { - [anon_sym_LPAREN2] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7665), - [anon_sym_DASH] = ACTIONS(7665), - [anon_sym_DASH_DASH] = ACTIONS(7663), - [anon_sym_STAR_EQ] = ACTIONS(7663), - [anon_sym_LT_LT_EQ] = ACTIONS(7663), - [anon_sym_PERCENT_EQ] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7663), - [anon_sym_PIPE] = ACTIONS(7665), - [anon_sym_LT] = ACTIONS(7665), - [anon_sym_CARET_EQ] = ACTIONS(7663), - [anon_sym_AMP] = ACTIONS(7665), - [anon_sym_PLUS] = ACTIONS(7665), - [anon_sym_GT_EQ] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7665), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_SLASH_EQ] = ACTIONS(7663), - [anon_sym_PLUS_EQ] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7665), - [anon_sym_PIPE_EQ] = ACTIONS(7663), - [anon_sym_GT_GT_EQ] = ACTIONS(7663), - [anon_sym_COMMA] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7663), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7665), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7663), - [anon_sym_DASH_EQ] = ACTIONS(7663), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_BANG_EQ] = ACTIONS(7663), - [anon_sym_AMP_EQ] = ACTIONS(7663), - [anon_sym_AMP_AMP] = ACTIONS(7663), - [anon_sym_DASH_GT] = ACTIONS(7663), - [anon_sym_EQ] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7663), - [anon_sym_LBRACE] = ACTIONS(7663), - [anon_sym_RBRACK] = ACTIONS(7663), - }, - [4545] = { - [anon_sym_LPAREN2] = ACTIONS(8904), - [anon_sym_GT_GT] = ACTIONS(8906), - [anon_sym_DASH] = ACTIONS(8906), - [anon_sym_DASH_DASH] = ACTIONS(8904), - [anon_sym_STAR_EQ] = ACTIONS(8904), - [anon_sym_LT_LT_EQ] = ACTIONS(8904), - [anon_sym_PERCENT_EQ] = ACTIONS(8904), - [anon_sym_EQ_EQ] = ACTIONS(8904), - [anon_sym_PIPE] = ACTIONS(8906), - [anon_sym_LT] = ACTIONS(8906), - [anon_sym_CARET_EQ] = ACTIONS(8904), - [anon_sym_AMP] = ACTIONS(8906), - [anon_sym_PLUS] = ACTIONS(8906), - [anon_sym_GT_EQ] = ACTIONS(8904), - [anon_sym_STAR] = ACTIONS(8906), - [anon_sym_SLASH] = ACTIONS(8906), - [anon_sym_SLASH_EQ] = ACTIONS(8904), - [anon_sym_PLUS_EQ] = ACTIONS(8904), - [anon_sym_CARET] = ACTIONS(8906), - [anon_sym_GT] = ACTIONS(8906), - [anon_sym_PIPE_EQ] = ACTIONS(8904), - [anon_sym_GT_GT_EQ] = ACTIONS(8904), - [anon_sym_COMMA] = ACTIONS(8904), - [anon_sym_PIPE_PIPE] = ACTIONS(8904), - [anon_sym_DOT] = ACTIONS(8904), - [anon_sym_LT_LT] = ACTIONS(8906), - [anon_sym_LBRACK] = ACTIONS(8904), - [anon_sym_PERCENT] = ACTIONS(8906), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8904), - [anon_sym_DASH_EQ] = ACTIONS(8904), - [anon_sym_LT_EQ] = ACTIONS(8904), - [anon_sym_BANG_EQ] = ACTIONS(8904), - [anon_sym_AMP_EQ] = ACTIONS(8904), - [anon_sym_AMP_AMP] = ACTIONS(8904), - [anon_sym_DASH_GT] = ACTIONS(8904), - [anon_sym_EQ] = ACTIONS(8906), - [anon_sym_PLUS_PLUS] = ACTIONS(8904), - [anon_sym_LBRACE] = ACTIONS(8904), - [anon_sym_RBRACK] = ACTIONS(8904), - }, - [4546] = { - [anon_sym_LPAREN2] = ACTIONS(8620), - [anon_sym_DASH] = ACTIONS(8622), - [anon_sym_LBRACE] = ACTIONS(8620), - [anon_sym_RBRACK] = ACTIONS(8620), - [anon_sym_final] = ACTIONS(8620), - [anon_sym_mutable] = ACTIONS(8620), - [anon_sym_restrict] = ACTIONS(8620), - [anon_sym_EQ_EQ] = ACTIONS(8620), - [anon_sym_PIPE] = ACTIONS(8622), - [anon_sym_LT] = ACTIONS(8622), - [anon_sym_AMP] = ACTIONS(8622), - [anon_sym_volatile] = ACTIONS(8620), - [anon_sym_PLUS] = ACTIONS(8622), - [anon_sym_GT_EQ] = ACTIONS(8620), - [anon_sym_STAR] = ACTIONS(8620), - [anon_sym_SLASH] = ACTIONS(8622), - [anon_sym_override] = ACTIONS(8620), - [anon_sym_COLON] = ACTIONS(8620), - [anon_sym_explicit] = ACTIONS(8620), - [sym_noexcept] = ACTIONS(8620), - [anon_sym_CARET] = ACTIONS(8620), - [anon_sym_GT] = ACTIONS(8622), - [anon_sym_COMMA] = ACTIONS(8620), - [anon_sym_PIPE_PIPE] = ACTIONS(8620), - [anon_sym_DOT] = ACTIONS(8620), - [anon_sym__Atomic] = ACTIONS(8620), - [anon_sym_LT_LT] = ACTIONS(8620), - [anon_sym_LBRACK] = ACTIONS(8620), - [anon_sym_PERCENT] = ACTIONS(8620), - [anon_sym_const] = ACTIONS(8622), - [anon_sym_constexpr] = ACTIONS(8620), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8620), - [anon_sym_LT_EQ] = ACTIONS(8620), - [anon_sym_BANG_EQ] = ACTIONS(8620), - [anon_sym_SEMI] = ACTIONS(8620), - [anon_sym_AMP_AMP] = ACTIONS(8620), - [anon_sym_DASH_GT] = ACTIONS(8620), - [anon_sym_PLUS_PLUS] = ACTIONS(8620), - [anon_sym_EQ] = ACTIONS(8622), - [anon_sym_GT_GT] = ACTIONS(8620), - [anon_sym_DASH_DASH] = ACTIONS(8620), - }, - [4547] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_RPAREN] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [4548] = { - [sym_new_declarator] = STATE(4145), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(7685), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_RPAREN] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), + [anon_sym_GT_GT] = ACTIONS(7532), }, - [4549] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(7691), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7677), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7679), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_GT] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(7679), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(10255), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_LT_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7691), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_RPAREN] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(7705), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4520] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(7672), + [anon_sym_PIPE] = ACTIONS(7674), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(7678), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(7684), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(10221), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_BANG_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_RPAREN] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4550] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4755), - [sym_logical_expression] = STATE(4755), - [sym_bitwise_expression] = STATE(4755), - [sym_cast_expression] = STATE(4755), - [sym_new_expression] = STATE(4755), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4755), - [sym_char_literal] = STATE(4755), - [sym_template_function] = STATE(4755), - [sym_conditional_expression] = STATE(4755), - [sym_equality_expression] = STATE(4755), - [sym_relational_expression] = STATE(4755), - [sym_delete_expression] = STATE(4755), - [sym_sizeof_expression] = STATE(4755), - [sym_parenthesized_expression] = STATE(4755), - [sym_lambda_expression] = STATE(4755), - [sym_concatenated_string] = STATE(4755), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4755), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4755), - [sym_math_expression] = STATE(4755), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10257), + [4521] = { + [sym_template_function] = STATE(4726), + [sym__expression] = STATE(4726), + [sym_logical_expression] = STATE(4726), + [sym_bitwise_expression] = STATE(4726), + [sym_cast_expression] = STATE(4726), + [sym_delete_expression] = STATE(4726), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4726), + [sym_lambda_expression] = STATE(4726), + [sym_char_literal] = STATE(4726), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4726), + [sym_equality_expression] = STATE(4726), + [sym_relational_expression] = STATE(4726), + [sym_sizeof_expression] = STATE(4726), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4726), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4726), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4726), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4726), + [sym_math_expression] = STATE(4726), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4726), + [sym_raw_string_literal] = ACTIONS(10223), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10259), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10259), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10225), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10225), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10257), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10223), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10259), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10259), + [sym_false] = ACTIONS(10225), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10225), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10261), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10227), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4551] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10263), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4522] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10229), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4552] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4757), - [sym_logical_expression] = STATE(4757), - [sym_bitwise_expression] = STATE(4757), - [sym_cast_expression] = STATE(4757), - [sym_new_expression] = STATE(4757), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4757), - [sym_char_literal] = STATE(4757), - [sym_template_function] = STATE(4757), - [sym_conditional_expression] = STATE(4757), - [sym_equality_expression] = STATE(4757), - [sym_relational_expression] = STATE(4757), - [sym_delete_expression] = STATE(4757), - [sym_sizeof_expression] = STATE(4757), - [sym_parenthesized_expression] = STATE(4757), - [sym_lambda_expression] = STATE(4757), - [sym_concatenated_string] = STATE(4757), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4757), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4757), - [sym_math_expression] = STATE(4757), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10265), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10267), - [sym_null] = ACTIONS(10267), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10265), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10267), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10267), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10263), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4523] = { + [sym_template_function] = STATE(4728), + [sym__expression] = STATE(4728), + [sym_logical_expression] = STATE(4728), + [sym_bitwise_expression] = STATE(4728), + [sym_cast_expression] = STATE(4728), + [sym_delete_expression] = STATE(4728), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4728), + [sym_lambda_expression] = STATE(4728), + [sym_char_literal] = STATE(4728), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4728), + [sym_equality_expression] = STATE(4728), + [sym_relational_expression] = STATE(4728), + [sym_sizeof_expression] = STATE(4728), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4728), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4728), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4728), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4728), + [sym_math_expression] = STATE(4728), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4728), + [sym_raw_string_literal] = ACTIONS(10231), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10233), + [sym_null] = ACTIONS(10233), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10231), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10233), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10233), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10229), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4553] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4758), - [sym_logical_expression] = STATE(4758), - [sym_bitwise_expression] = STATE(4758), - [sym_cast_expression] = STATE(4758), - [sym_new_expression] = STATE(4758), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4758), - [sym_char_literal] = STATE(4758), - [sym_template_function] = STATE(4758), - [sym_conditional_expression] = STATE(4758), - [sym_equality_expression] = STATE(4758), - [sym_relational_expression] = STATE(4758), - [sym_delete_expression] = STATE(4758), - [sym_sizeof_expression] = STATE(4758), - [sym_parenthesized_expression] = STATE(4758), - [sym_lambda_expression] = STATE(4758), - [sym_concatenated_string] = STATE(4758), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4758), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4758), - [sym_math_expression] = STATE(4758), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10269), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10271), - [sym_null] = ACTIONS(10271), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10269), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10271), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10271), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4524] = { + [sym_template_function] = STATE(4729), + [sym__expression] = STATE(4729), + [sym_logical_expression] = STATE(4729), + [sym_bitwise_expression] = STATE(4729), + [sym_cast_expression] = STATE(4729), + [sym_delete_expression] = STATE(4729), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4729), + [sym_lambda_expression] = STATE(4729), + [sym_char_literal] = STATE(4729), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4729), + [sym_equality_expression] = STATE(4729), + [sym_relational_expression] = STATE(4729), + [sym_sizeof_expression] = STATE(4729), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4729), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4729), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4729), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4729), + [sym_math_expression] = STATE(4729), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4729), + [sym_raw_string_literal] = ACTIONS(10235), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10237), + [sym_null] = ACTIONS(10237), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10235), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10237), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10237), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4554] = { - [aux_sym_try_statement_repeat1] = STATE(4554), - [sym_catch_clause] = STATE(4554), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [anon_sym_else] = ACTIONS(5353), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(5357), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_namespace] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_using] = ACTIONS(5353), - [sym_preproc_directive] = ACTIONS(5353), - [aux_sym_preproc_if_token1] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [sym_operator_name] = ACTIONS(5355), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [aux_sym_preproc_include_token1] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_template] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [ts_builtin_sym_end] = ACTIONS(5355), - [aux_sym_preproc_def_token1] = ACTIONS(5353), - [anon_sym_AMP_AMP] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [4525] = { + [sym_catch_clause] = STATE(4525), + [aux_sym_try_statement_repeat1] = STATE(4525), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5352), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(5356), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_namespace] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_using] = ACTIONS(5352), + [sym_preproc_directive] = ACTIONS(5352), + [aux_sym_preproc_if_token1] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [sym_operator_name] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [aux_sym_preproc_include_token1] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_template] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [ts_builtin_sym_end] = ACTIONS(5354), + [aux_sym_preproc_def_token1] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [4555] = { - [sym_do_statement] = STATE(4759), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4526] = { + [sym_do_statement] = STATE(4730), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4759), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4759), - [sym_if_statement] = STATE(4759), - [sym_switch_statement] = STATE(4759), - [sym_for_statement] = STATE(4759), - [sym_return_statement] = STATE(4759), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4730), + [sym_try_statement] = STATE(4730), + [sym_if_statement] = STATE(4730), + [sym_switch_statement] = STATE(4730), + [sym_for_statement] = STATE(4730), + [sym_return_statement] = STATE(4730), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4759), - [sym_break_statement] = STATE(4759), - [sym_continue_statement] = STATE(4759), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4730), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4759), - [sym_labeled_statement] = STATE(4759), - [sym_expression_statement] = STATE(4759), - [sym_while_statement] = STATE(4759), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4730), + [sym_for_range_loop] = STATE(4730), + [sym_compound_statement] = STATE(4730), + [sym_labeled_statement] = STATE(4730), + [sym_expression_statement] = STATE(4730), + [sym_while_statement] = STATE(4730), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -184271,18 +183683,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -184295,5509 +183707,5509 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4556] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10273), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4527] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10239), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4557] = { - [anon_sym_DASH] = ACTIONS(10275), - [sym_raw_string_literal] = ACTIONS(10277), - [anon_sym_else] = ACTIONS(10275), - [sym_true] = ACTIONS(10275), - [anon_sym_mutable] = ACTIONS(10275), - [sym_null] = ACTIONS(10275), - [anon_sym_break] = ACTIONS(10275), - [anon_sym_BANG] = ACTIONS(10277), - [anon_sym_sizeof] = ACTIONS(10275), - [anon_sym_volatile] = ACTIONS(10275), - [anon_sym_PLUS] = ACTIONS(10275), - [anon_sym_typedef] = ACTIONS(10275), - [anon_sym_switch] = ACTIONS(10275), - [anon_sym_explicit] = ACTIONS(10275), - [sym_identifier] = ACTIONS(10275), - [anon_sym_delete] = ACTIONS(10275), - [anon_sym_continue] = ACTIONS(10275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10275), - [anon_sym__Atomic] = ACTIONS(10275), - [sym_number_literal] = ACTIONS(10277), - [anon_sym_extern] = ACTIONS(10275), - [anon_sym_enum] = ACTIONS(10275), - [anon_sym_constexpr] = ACTIONS(10275), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10277), - [anon_sym_namespace] = ACTIONS(10275), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10275), - [anon_sym_SQUOTE] = ACTIONS(10277), - [anon_sym_LBRACE] = ACTIONS(10277), - [anon_sym_DASH_DASH] = ACTIONS(10277), - [anon_sym_LPAREN2] = ACTIONS(10277), - [anon_sym_struct] = ACTIONS(10275), - [sym_auto] = ACTIONS(10275), - [anon_sym_signed] = ACTIONS(10275), - [anon_sym_long] = ACTIONS(10275), - [anon_sym_COLON_COLON] = ACTIONS(10277), - [anon_sym_using] = ACTIONS(10275), - [sym_preproc_directive] = ACTIONS(10275), - [aux_sym_preproc_if_token1] = ACTIONS(10275), - [anon_sym_AMP] = ACTIONS(10275), - [anon_sym_static] = ACTIONS(10275), - [anon_sym_RBRACE] = ACTIONS(10277), - [anon_sym_STAR] = ACTIONS(10277), - [anon_sym_union] = ACTIONS(10275), - [anon_sym_typename] = ACTIONS(10275), - [anon_sym_short] = ACTIONS(10275), - [anon_sym_new] = ACTIONS(10275), - [anon_sym_goto] = ACTIONS(10275), - [sym_operator_name] = ACTIONS(10277), - [anon_sym_while] = ACTIONS(10275), - [anon_sym_try] = ACTIONS(10275), - [anon_sym_for] = ACTIONS(10275), - [aux_sym_preproc_include_token1] = ACTIONS(10275), - [anon_sym_register] = ACTIONS(10275), - [anon_sym_DQUOTE] = ACTIONS(10277), - [anon_sym_const] = ACTIONS(10275), - [anon_sym_LBRACK] = ACTIONS(10275), - [anon_sym_class] = ACTIONS(10275), - [anon_sym_if] = ACTIONS(10275), - [sym_primitive_type] = ACTIONS(10275), - [sym_false] = ACTIONS(10275), - [sym_nullptr] = ACTIONS(10275), - [anon_sym_do] = ACTIONS(10275), - [anon_sym_template] = ACTIONS(10275), - [anon_sym_return] = ACTIONS(10275), - [anon_sym_TILDE] = ACTIONS(10277), - [anon_sym_SEMI] = ACTIONS(10277), - [ts_builtin_sym_end] = ACTIONS(10277), - [aux_sym_preproc_def_token1] = ACTIONS(10275), - [anon_sym_AMP_AMP] = ACTIONS(10277), - [anon_sym_inline] = ACTIONS(10275), - [anon_sym_PLUS_PLUS] = ACTIONS(10277), - [anon_sym_restrict] = ACTIONS(10275), + [4528] = { + [anon_sym_DASH] = ACTIONS(10241), + [sym_raw_string_literal] = ACTIONS(10243), + [anon_sym_else] = ACTIONS(10241), + [sym_true] = ACTIONS(10241), + [anon_sym_mutable] = ACTIONS(10241), + [sym_null] = ACTIONS(10241), + [anon_sym_break] = ACTIONS(10241), + [anon_sym_BANG] = ACTIONS(10243), + [anon_sym_sizeof] = ACTIONS(10241), + [anon_sym_volatile] = ACTIONS(10241), + [anon_sym_PLUS] = ACTIONS(10241), + [anon_sym_typedef] = ACTIONS(10241), + [anon_sym_switch] = ACTIONS(10241), + [anon_sym_explicit] = ACTIONS(10241), + [sym_identifier] = ACTIONS(10241), + [anon_sym_delete] = ACTIONS(10241), + [anon_sym_continue] = ACTIONS(10241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10241), + [anon_sym__Atomic] = ACTIONS(10241), + [sym_number_literal] = ACTIONS(10243), + [anon_sym_extern] = ACTIONS(10241), + [anon_sym_enum] = ACTIONS(10241), + [anon_sym_constexpr] = ACTIONS(10241), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10243), + [anon_sym_namespace] = ACTIONS(10241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10241), + [anon_sym_SQUOTE] = ACTIONS(10243), + [anon_sym_LBRACE] = ACTIONS(10243), + [anon_sym_DASH_DASH] = ACTIONS(10243), + [anon_sym_LPAREN2] = ACTIONS(10243), + [anon_sym_struct] = ACTIONS(10241), + [sym_auto] = ACTIONS(10241), + [anon_sym_signed] = ACTIONS(10241), + [anon_sym_long] = ACTIONS(10241), + [anon_sym_COLON_COLON] = ACTIONS(10243), + [anon_sym_using] = ACTIONS(10241), + [sym_preproc_directive] = ACTIONS(10241), + [aux_sym_preproc_if_token1] = ACTIONS(10241), + [anon_sym_AMP] = ACTIONS(10241), + [anon_sym_static] = ACTIONS(10241), + [anon_sym_RBRACE] = ACTIONS(10243), + [anon_sym_STAR] = ACTIONS(10243), + [anon_sym_union] = ACTIONS(10241), + [anon_sym_typename] = ACTIONS(10241), + [anon_sym_short] = ACTIONS(10241), + [anon_sym_new] = ACTIONS(10241), + [anon_sym_goto] = ACTIONS(10241), + [sym_operator_name] = ACTIONS(10243), + [anon_sym_while] = ACTIONS(10241), + [anon_sym_try] = ACTIONS(10241), + [anon_sym_for] = ACTIONS(10241), + [aux_sym_preproc_include_token1] = ACTIONS(10241), + [anon_sym_register] = ACTIONS(10241), + [anon_sym_DQUOTE] = ACTIONS(10243), + [anon_sym_const] = ACTIONS(10241), + [anon_sym_LBRACK] = ACTIONS(10241), + [anon_sym_class] = ACTIONS(10241), + [anon_sym_if] = ACTIONS(10241), + [sym_primitive_type] = ACTIONS(10241), + [sym_false] = ACTIONS(10241), + [sym_nullptr] = ACTIONS(10241), + [anon_sym_do] = ACTIONS(10241), + [anon_sym_template] = ACTIONS(10241), + [anon_sym_return] = ACTIONS(10241), + [anon_sym_TILDE] = ACTIONS(10243), + [anon_sym_SEMI] = ACTIONS(10243), + [ts_builtin_sym_end] = ACTIONS(10243), + [aux_sym_preproc_def_token1] = ACTIONS(10241), + [anon_sym_AMP_AMP] = ACTIONS(10243), + [anon_sym_inline] = ACTIONS(10241), + [anon_sym_PLUS_PLUS] = ACTIONS(10243), + [anon_sym_restrict] = ACTIONS(10241), }, - [4558] = { - [anon_sym_else] = ACTIONS(9822), - [anon_sym_while] = ACTIONS(9822), + [4529] = { + [anon_sym_else] = ACTIONS(9788), + [anon_sym_while] = ACTIONS(9788), [sym_comment] = ACTIONS(3), }, - [4559] = { - [sym_do_statement] = STATE(4761), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4530] = { + [sym_do_statement] = STATE(4732), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4761), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4761), - [sym_if_statement] = STATE(4761), - [sym_switch_statement] = STATE(4761), - [sym_for_statement] = STATE(4761), - [sym_return_statement] = STATE(4761), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4732), + [sym_try_statement] = STATE(4732), + [sym_if_statement] = STATE(4732), + [sym_switch_statement] = STATE(4732), + [sym_for_statement] = STATE(4732), + [sym_return_statement] = STATE(4732), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4761), - [sym_break_statement] = STATE(4761), - [sym_continue_statement] = STATE(4761), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4732), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4761), - [sym_labeled_statement] = STATE(4761), - [sym_expression_statement] = STATE(4761), - [sym_while_statement] = STATE(4761), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4732), + [sym_for_range_loop] = STATE(4732), + [sym_compound_statement] = STATE(4732), + [sym_labeled_statement] = STATE(4732), + [sym_expression_statement] = STATE(4732), + [sym_while_statement] = STATE(4732), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4560] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10279), + [4531] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10245), [sym_comment] = ACTIONS(3), }, - [4561] = { - [aux_sym_for_statement_repeat1] = STATE(4763), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10279), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4532] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4734), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10245), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4562] = { - [anon_sym_else] = ACTIONS(9831), - [anon_sym_while] = ACTIONS(9831), + [4533] = { + [anon_sym_else] = ACTIONS(9797), + [anon_sym_while] = ACTIONS(9797), [sym_comment] = ACTIONS(3), }, - [4563] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4765), - [sym_logical_expression] = STATE(4765), - [sym_bitwise_expression] = STATE(4765), - [sym_cast_expression] = STATE(4765), - [sym_new_expression] = STATE(4765), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4765), - [sym_char_literal] = STATE(4765), - [sym_template_function] = STATE(4765), - [sym_conditional_expression] = STATE(4765), - [sym_equality_expression] = STATE(4765), - [sym_relational_expression] = STATE(4765), - [sym_delete_expression] = STATE(4765), - [sym_sizeof_expression] = STATE(4765), - [sym_parenthesized_expression] = STATE(4765), - [sym_lambda_expression] = STATE(4765), - [sym_concatenated_string] = STATE(4765), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4765), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4765), - [sym_math_expression] = STATE(4765), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10281), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10283), - [sym_null] = ACTIONS(10283), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10281), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10283), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10283), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10285), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4534] = { + [sym_template_function] = STATE(4736), + [sym__expression] = STATE(4736), + [sym_logical_expression] = STATE(4736), + [sym_bitwise_expression] = STATE(4736), + [sym_cast_expression] = STATE(4736), + [sym_delete_expression] = STATE(4736), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4736), + [sym_lambda_expression] = STATE(4736), + [sym_char_literal] = STATE(4736), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4736), + [sym_equality_expression] = STATE(4736), + [sym_relational_expression] = STATE(4736), + [sym_sizeof_expression] = STATE(4736), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4736), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4736), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4736), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4736), + [sym_math_expression] = STATE(4736), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4736), + [sym_raw_string_literal] = ACTIONS(10247), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10249), + [sym_null] = ACTIONS(10249), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10247), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10249), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10249), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10251), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4564] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10287), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4535] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10253), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4565] = { - [anon_sym_COLON] = ACTIONS(10289), + [4536] = { + [anon_sym_COLON] = ACTIONS(10255), [sym_comment] = ACTIONS(3), }, - [4566] = { - [aux_sym_try_statement_repeat1] = STATE(4768), - [sym_catch_clause] = STATE(4768), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_catch] = ACTIONS(3506), - [anon_sym_while] = ACTIONS(3154), + [4537] = { + [sym_catch_clause] = STATE(4739), + [aux_sym_try_statement_repeat1] = STATE(4739), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_catch] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3156), [sym_comment] = ACTIONS(3), }, - [4567] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10291), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4538] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10257), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4568] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4770), - [sym_logical_expression] = STATE(4770), - [sym_bitwise_expression] = STATE(4770), - [sym_cast_expression] = STATE(4770), - [sym_new_expression] = STATE(4770), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4770), - [sym_char_literal] = STATE(4770), - [sym_template_function] = STATE(4770), - [sym_conditional_expression] = STATE(4770), - [sym_equality_expression] = STATE(4770), - [sym_relational_expression] = STATE(4770), - [sym_delete_expression] = STATE(4770), - [sym_sizeof_expression] = STATE(4770), - [sym_parenthesized_expression] = STATE(4770), - [sym_lambda_expression] = STATE(4770), - [sym_concatenated_string] = STATE(4770), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4770), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4770), - [sym_math_expression] = STATE(4770), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10293), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10295), - [sym_null] = ACTIONS(10295), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10293), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10295), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10295), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4539] = { + [sym_template_function] = STATE(4741), + [sym__expression] = STATE(4741), + [sym_logical_expression] = STATE(4741), + [sym_bitwise_expression] = STATE(4741), + [sym_cast_expression] = STATE(4741), + [sym_delete_expression] = STATE(4741), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4741), + [sym_lambda_expression] = STATE(4741), + [sym_char_literal] = STATE(4741), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4741), + [sym_equality_expression] = STATE(4741), + [sym_relational_expression] = STATE(4741), + [sym_sizeof_expression] = STATE(4741), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4741), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4741), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4741), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4741), + [sym_math_expression] = STATE(4741), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4741), + [sym_raw_string_literal] = ACTIONS(10259), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10261), + [sym_null] = ACTIONS(10261), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10259), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10261), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10261), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4569] = { - [anon_sym_else] = ACTIONS(9873), - [anon_sym_while] = ACTIONS(9873), + [4540] = { + [anon_sym_else] = ACTIONS(9839), + [anon_sym_while] = ACTIONS(9839), [sym_comment] = ACTIONS(3), }, - [4570] = { - [sym_do_statement] = STATE(4771), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4541] = { + [sym_do_statement] = STATE(4742), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4771), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4771), - [sym_if_statement] = STATE(4771), - [sym_switch_statement] = STATE(4771), - [sym_for_statement] = STATE(4771), - [sym_return_statement] = STATE(4771), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4742), + [sym_try_statement] = STATE(4742), + [sym_if_statement] = STATE(4742), + [sym_switch_statement] = STATE(4742), + [sym_for_statement] = STATE(4742), + [sym_return_statement] = STATE(4742), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4771), - [sym_break_statement] = STATE(4771), - [sym_continue_statement] = STATE(4771), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4742), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4771), - [sym_labeled_statement] = STATE(4771), - [sym_expression_statement] = STATE(4771), - [sym_while_statement] = STATE(4771), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4742), + [sym_for_range_loop] = STATE(4742), + [sym_compound_statement] = STATE(4742), + [sym_labeled_statement] = STATE(4742), + [sym_expression_statement] = STATE(4742), + [sym_while_statement] = STATE(4742), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4571] = { - [sym_union_specifier] = STATE(1117), - [sym_macro_type_specifier] = STATE(1117), - [sym_class_specifier] = STATE(1117), - [sym_template_type] = STATE(856), - [sym_sized_type_specifier] = STATE(1117), - [sym_scoped_namespace_identifier] = STATE(859), - [sym__type_specifier] = STATE(1117), - [aux_sym_sized_type_specifier_repeat1] = STATE(4572), - [sym_struct_specifier] = STATE(1117), - [sym_enum_specifier] = STATE(1117), - [sym_scoped_type_identifier] = STATE(862), - [sym_dependent_type] = STATE(1117), - [anon_sym_unsigned] = ACTIONS(9898), - [anon_sym_struct] = ACTIONS(700), - [sym_auto] = ACTIONS(2246), - [anon_sym_signed] = ACTIONS(9898), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(9898), - [anon_sym_union] = ACTIONS(722), - [anon_sym_typename] = ACTIONS(9902), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(9898), - [anon_sym_enum] = ACTIONS(734), - [anon_sym_class] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(2246), + [4542] = { + [sym_union_specifier] = STATE(1113), + [sym_macro_type_specifier] = STATE(1113), + [sym_class_specifier] = STATE(1113), + [aux_sym_sized_type_specifier_repeat1] = STATE(4543), + [sym_sized_type_specifier] = STATE(1113), + [sym__type_specifier] = STATE(1113), + [sym_scoped_type_identifier] = STATE(861), + [sym_enum_specifier] = STATE(1113), + [sym_template_type] = STATE(863), + [sym_scoped_namespace_identifier] = STATE(866), + [sym_dependent_type] = STATE(1113), + [sym_struct_specifier] = STATE(1113), + [anon_sym_unsigned] = ACTIONS(9864), + [anon_sym_struct] = ACTIONS(704), + [sym_auto] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(9864), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(9864), + [anon_sym_union] = ACTIONS(726), + [anon_sym_typename] = ACTIONS(9868), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(9864), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_class] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(2248), }, - [4572] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4772), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(10297), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_long] = ACTIONS(10297), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_GT2] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(10297), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_short] = ACTIONS(10297), - [anon_sym_restrict] = ACTIONS(625), - [sym_identifier] = ACTIONS(2351), + [4543] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4743), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(10263), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_long] = ACTIONS(10263), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_GT2] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(10263), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_short] = ACTIONS(10263), + [anon_sym_restrict] = ACTIONS(558), + [sym_identifier] = ACTIONS(2343), }, - [4573] = { - [sym_parameter_list] = STATE(4775), - [sym_abstract_array_declarator] = STATE(4776), - [sym_abstract_pointer_declarator] = STATE(4776), - [sym_abstract_reference_declarator] = STATE(4776), - [sym_abstract_function_declarator] = STATE(4776), - [sym__abstract_declarator] = STATE(4776), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym_COMMA] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_GT2] = ACTIONS(6210), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(10299), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(10301), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(10303), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_restrict] = ACTIONS(6210), + [4544] = { + [sym_abstract_reference_declarator] = STATE(4747), + [sym_abstract_array_declarator] = STATE(4747), + [sym_abstract_pointer_declarator] = STATE(4747), + [sym_parameter_list] = STATE(4746), + [sym_abstract_function_declarator] = STATE(4747), + [sym__abstract_declarator] = STATE(4747), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym_COMMA] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_GT2] = ACTIONS(6085), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(10265), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(10267), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(10269), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_restrict] = ACTIONS(6085), }, - [4574] = { - [sym_virtual_specifier] = STATE(4574), - [aux_sym_function_declarator_repeat1] = STATE(4574), - [sym_trailing_return_type] = STATE(4574), - [sym_type_qualifier] = STATE(4574), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(10305), - [anon_sym_mutable] = ACTIONS(7266), - [anon_sym_COMMA] = ACTIONS(6220), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_const] = ACTIONS(7269), - [anon_sym_GT2] = ACTIONS(6220), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(7266), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7266), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_explicit] = ACTIONS(7266), - [anon_sym_DASH_GT] = ACTIONS(10308), - [anon_sym_restrict] = ACTIONS(7266), + [4545] = { + [sym_virtual_specifier] = STATE(4545), + [aux_sym_function_declarator_repeat1] = STATE(4545), + [sym_type_qualifier] = STATE(4545), + [sym_trailing_return_type] = STATE(4545), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(10271), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym_const] = ACTIONS(7250), + [anon_sym_GT2] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(7247), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_explicit] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(10274), + [anon_sym_restrict] = ACTIONS(7247), }, - [4575] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4575), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_final] = ACTIONS(2082), - [sym_noexcept] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(10311), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(10311), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(10311), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(10311), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_DASH_GT] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), + [4546] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4546), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_final] = ACTIONS(1783), + [sym_noexcept] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(10277), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(10277), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_GT2] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(10277), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(10277), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_DASH_GT] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), }, - [4576] = { - [sym_parameter_list] = STATE(4578), - [sym_abstract_array_declarator] = STATE(4777), - [sym_abstract_pointer_declarator] = STATE(4777), - [sym_abstract_reference_declarator] = STATE(4777), - [sym_abstract_function_declarator] = STATE(4777), - [sym__abstract_declarator] = STATE(4777), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_GT2] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9908), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(9910), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(9912), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), + [4547] = { + [sym_abstract_reference_declarator] = STATE(4748), + [sym_abstract_array_declarator] = STATE(4748), + [sym_abstract_pointer_declarator] = STATE(4748), + [sym_parameter_list] = STATE(4549), + [sym_abstract_function_declarator] = STATE(4748), + [sym__abstract_declarator] = STATE(4748), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9874), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(9876), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(9878), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), }, - [4577] = { - [sym_abstract_array_declarator] = STATE(4779), - [sym_parameter_list] = STATE(4578), - [sym_abstract_reference_declarator] = STATE(4779), - [sym_abstract_function_declarator] = STATE(4779), - [aux_sym_type_definition_repeat1] = STATE(4778), - [sym_abstract_pointer_declarator] = STATE(4779), - [sym_type_qualifier] = STATE(4778), - [sym__abstract_declarator] = STATE(4779), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(1062), + [4548] = { + [sym_abstract_reference_declarator] = STATE(4750), + [aux_sym_type_definition_repeat1] = STATE(4749), + [sym_abstract_array_declarator] = STATE(4750), + [sym_parameter_list] = STATE(4549), + [sym_abstract_function_declarator] = STATE(4750), + [sym_abstract_pointer_declarator] = STATE(4750), + [sym_type_qualifier] = STATE(4749), + [sym__abstract_declarator] = STATE(4750), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9908), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(9910), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(9912), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9874), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(9876), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(9878), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(1070), }, - [4578] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4780), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4780), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(10314), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(1062), + [4549] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4751), + [sym_type_qualifier] = STATE(4751), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(10280), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7847), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7828), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1070), }, - [4579] = { - [sym_parameter_list] = STATE(4781), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym_COMMA] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_GT2] = ACTIONS(8186), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_EQ] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), + [4550] = { + [sym_parameter_list] = STATE(4752), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym_COMMA] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_GT2] = ACTIONS(8038), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_EQ] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), }, - [4580] = { - [sym_type_qualifier] = STATE(4580), - [aux_sym_type_definition_repeat1] = STATE(4580), + [4551] = { + [aux_sym_type_definition_repeat1] = STATE(4551), + [sym_type_qualifier] = STATE(4551), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(4989), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_const] = ACTIONS(2103), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_override] = ACTIONS(2106), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_DASH_GT] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), - }, - [4581] = { - [sym_parameter_list] = STATE(4239), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_SEMI] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), - }, - [4582] = { - [sym_type_qualifier] = STATE(4582), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4582), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(10316), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_SEMI] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), - }, - [4583] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4582), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4582), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(9920), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_SEMI] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(3587), - [anon_sym_restrict] = ACTIONS(1062), - }, - [4584] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(7951), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(7959), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(7961), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(7963), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(7469), - }, - [4585] = { - [sym_new_declarator] = STATE(4545), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(7943), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_RBRACK] = ACTIONS(7549), - }, - [4586] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(7935), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(7949), - [anon_sym_PIPE] = ACTIONS(7951), - [anon_sym_LT] = ACTIONS(7953), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(7955), - [anon_sym_PLUS] = ACTIONS(7935), - [anon_sym_GT_EQ] = ACTIONS(7957), - [anon_sym_STAR] = ACTIONS(7937), - [anon_sym_SLASH] = ACTIONS(7937), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(7959), - [anon_sym_GT] = ACTIONS(7953), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(7961), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(7939), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(10319), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_LT_EQ] = ACTIONS(7957), - [anon_sym_BANG_EQ] = ACTIONS(7949), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(7963), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(7939), - [anon_sym_RBRACK] = ACTIONS(8131), - }, - [4587] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(7469), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(8058), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(8060), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(8062), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), - }, - [4588] = { - [sym_new_declarator] = STATE(4145), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_COLON] = ACTIONS(7549), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(8042), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_volatile] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_override] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_explicit] = ACTIONS(4989), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_DASH_GT] = ACTIONS(2106), + [anon_sym_restrict] = ACTIONS(4989), }, - [4589] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(8034), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(8048), - [anon_sym_PIPE] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(8052), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(8054), - [anon_sym_PLUS] = ACTIONS(8034), - [anon_sym_GT_EQ] = ACTIONS(8056), - [anon_sym_STAR] = ACTIONS(8036), - [anon_sym_SLASH] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(8131), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(8058), - [anon_sym_GT] = ACTIONS(8052), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(8060), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(8038), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(10321), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_LT_EQ] = ACTIONS(8056), - [anon_sym_BANG_EQ] = ACTIONS(8048), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(8062), - [anon_sym_DASH_GT] = ACTIONS(3940), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(8038), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4552] = { + [sym_parameter_list] = STATE(4209), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_SEMI] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), }, - [4590] = { - [anon_sym_LPAREN2] = ACTIONS(6805), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_STAR_EQ] = ACTIONS(6805), - [anon_sym_LT_LT_EQ] = ACTIONS(6805), - [anon_sym_PERCENT_EQ] = ACTIONS(6805), - [anon_sym_EQ_EQ] = ACTIONS(6805), - [anon_sym_PIPE] = ACTIONS(6807), - [anon_sym_LT] = ACTIONS(6807), - [anon_sym_CARET_EQ] = ACTIONS(6805), - [anon_sym_AMP] = ACTIONS(6807), - [anon_sym_PLUS] = ACTIONS(6807), - [anon_sym_GT_EQ] = ACTIONS(6805), - [anon_sym_STAR] = ACTIONS(6807), - [anon_sym_SLASH] = ACTIONS(6807), - [anon_sym_COLON] = ACTIONS(6805), - [anon_sym_SLASH_EQ] = ACTIONS(6805), - [anon_sym_PLUS_EQ] = ACTIONS(6805), - [anon_sym_CARET] = ACTIONS(6807), - [anon_sym_GT] = ACTIONS(6807), - [anon_sym_PIPE_EQ] = ACTIONS(6805), - [anon_sym_GT_GT_EQ] = ACTIONS(6805), - [anon_sym_PIPE_PIPE] = ACTIONS(6805), - [anon_sym_DOT] = ACTIONS(6805), - [anon_sym_LT_LT] = ACTIONS(6807), - [anon_sym_LBRACK] = ACTIONS(6805), - [anon_sym_PERCENT] = ACTIONS(6807), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6805), - [anon_sym_DASH_EQ] = ACTIONS(6805), - [anon_sym_LT_EQ] = ACTIONS(6805), - [anon_sym_BANG_EQ] = ACTIONS(6805), - [anon_sym_AMP_EQ] = ACTIONS(6805), - [anon_sym_AMP_AMP] = ACTIONS(6805), - [anon_sym_DASH_GT] = ACTIONS(6805), - [anon_sym_EQ] = ACTIONS(6807), - [anon_sym_PLUS_PLUS] = ACTIONS(6805), - [anon_sym_GT_GT] = ACTIONS(6807), - [anon_sym_DASH_DASH] = ACTIONS(6805), + [4553] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4553), + [sym_type_qualifier] = STATE(4553), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(10282), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), }, - [4591] = { - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6812), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_PERCENT] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), + [4554] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4553), + [sym_type_qualifier] = STATE(4553), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(9886), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(3602), + [anon_sym_restrict] = ACTIONS(1070), }, - [4592] = { - [sym_union_specifier] = STATE(205), - [sym_macro_type_specifier] = STATE(205), - [sym_class_specifier] = STATE(205), - [sym_template_type] = STATE(86), - [sym_sized_type_specifier] = STATE(205), - [sym_scoped_namespace_identifier] = STATE(88), - [sym__type_specifier] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(4593), - [sym_struct_specifier] = STATE(205), - [sym_enum_specifier] = STATE(205), - [sym_scoped_type_identifier] = STATE(87), - [sym_dependent_type] = STATE(205), - [anon_sym_unsigned] = ACTIONS(9954), + [4555] = { + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), + [sym_class_specifier] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(4556), + [sym_sized_type_specifier] = STATE(206), + [sym__type_specifier] = STATE(206), + [sym_scoped_type_identifier] = STATE(90), + [sym_enum_specifier] = STATE(206), + [sym_template_type] = STATE(91), + [sym_scoped_namespace_identifier] = STATE(92), + [sym_dependent_type] = STATE(206), + [sym_struct_specifier] = STATE(206), + [anon_sym_unsigned] = ACTIONS(9892), [anon_sym_struct] = ACTIONS(141), - [sym_auto] = ACTIONS(356), - [anon_sym_signed] = ACTIONS(9954), + [sym_auto] = ACTIONS(358), + [anon_sym_signed] = ACTIONS(9892), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(9954), + [anon_sym_long] = ACTIONS(9892), [anon_sym_union] = ACTIONS(151), - [anon_sym_typename] = ACTIONS(9958), + [anon_sym_typename] = ACTIONS(9896), [anon_sym_COLON_COLON] = ACTIONS(147), [sym_identifier] = ACTIONS(155), - [anon_sym_short] = ACTIONS(9954), + [anon_sym_short] = ACTIONS(9892), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(149), - [sym_primitive_type] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(358), }, - [4593] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4782), - [anon_sym_LPAREN2] = ACTIONS(621), - [anon_sym_final] = ACTIONS(625), - [sym_noexcept] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(10323), - [anon_sym_mutable] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_long] = ACTIONS(10323), - [anon_sym__Atomic] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_constexpr] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(10323), - [anon_sym_volatile] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_override] = ACTIONS(625), - [anon_sym_explicit] = ACTIONS(625), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_GT] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(625), - [anon_sym_short] = ACTIONS(10323), - [sym_identifier] = ACTIONS(1074), + [4556] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4753), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_final] = ACTIONS(558), + [sym_noexcept] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(10285), + [anon_sym_mutable] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_long] = ACTIONS(10285), + [anon_sym__Atomic] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_constexpr] = ACTIONS(558), + [sym_primitive_type] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_unsigned] = ACTIONS(10285), + [anon_sym_volatile] = ACTIONS(558), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_override] = ACTIONS(558), + [anon_sym_explicit] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_restrict] = ACTIONS(558), + [anon_sym_short] = ACTIONS(10285), + [sym_identifier] = ACTIONS(1066), }, - [4594] = { - [sym_parameter_list] = STATE(4785), - [sym_abstract_array_declarator] = STATE(4786), - [sym_abstract_pointer_declarator] = STATE(4786), - [sym_abstract_reference_declarator] = STATE(4786), - [sym_abstract_function_declarator] = STATE(4786), - [sym__abstract_declarator] = STATE(4786), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(6210), - [sym_noexcept] = ACTIONS(6210), - [anon_sym_mutable] = ACTIONS(6210), - [anon_sym_COMMA] = ACTIONS(6210), - [anon_sym__Atomic] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(10325), - [anon_sym_volatile] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(10327), - [anon_sym_override] = ACTIONS(6210), - [anon_sym_explicit] = ACTIONS(6210), - [anon_sym_RPAREN] = ACTIONS(6210), - [anon_sym_DASH_GT] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(10329), - [anon_sym_restrict] = ACTIONS(6210), + [4557] = { + [sym_abstract_reference_declarator] = STATE(4757), + [sym_abstract_array_declarator] = STATE(4757), + [sym_abstract_pointer_declarator] = STATE(4757), + [sym_parameter_list] = STATE(4756), + [sym_abstract_function_declarator] = STATE(4757), + [sym__abstract_declarator] = STATE(4757), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(6085), + [sym_noexcept] = ACTIONS(6085), + [anon_sym_mutable] = ACTIONS(6085), + [anon_sym_COMMA] = ACTIONS(6085), + [anon_sym__Atomic] = ACTIONS(6085), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(6085), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(10287), + [anon_sym_volatile] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(10289), + [anon_sym_override] = ACTIONS(6085), + [anon_sym_explicit] = ACTIONS(6085), + [anon_sym_RPAREN] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(6085), + [anon_sym_AMP_AMP] = ACTIONS(10291), + [anon_sym_restrict] = ACTIONS(6085), }, - [4595] = { - [sym_virtual_specifier] = STATE(4595), - [aux_sym_function_declarator_repeat1] = STATE(4595), - [sym_trailing_return_type] = STATE(4595), - [sym_type_qualifier] = STATE(4595), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_final] = ACTIONS(6222), - [sym_noexcept] = ACTIONS(10331), - [anon_sym_mutable] = ACTIONS(7266), - [anon_sym_COMMA] = ACTIONS(6220), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_const] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_constexpr] = ACTIONS(7266), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7266), - [anon_sym_override] = ACTIONS(6222), - [anon_sym_explicit] = ACTIONS(7266), - [anon_sym_RPAREN] = ACTIONS(6220), - [anon_sym_DASH_GT] = ACTIONS(10334), - [anon_sym_restrict] = ACTIONS(7266), + [4558] = { + [sym_virtual_specifier] = STATE(4558), + [aux_sym_function_declarator_repeat1] = STATE(4558), + [sym_type_qualifier] = STATE(4558), + [sym_trailing_return_type] = STATE(4558), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_final] = ACTIONS(6288), + [sym_noexcept] = ACTIONS(10293), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym_const] = ACTIONS(7250), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_constexpr] = ACTIONS(7247), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(6288), + [anon_sym_explicit] = ACTIONS(7247), + [anon_sym_RPAREN] = ACTIONS(6286), + [anon_sym_DASH_GT] = ACTIONS(10296), + [anon_sym_restrict] = ACTIONS(7247), }, - [4596] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4596), - [anon_sym_LPAREN2] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(10337), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(10337), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [sym_noexcept] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(10337), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(10337), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), + [4559] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4559), + [anon_sym_LPAREN2] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), + [anon_sym_final] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(10299), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(10299), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [sym_noexcept] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(10299), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(10299), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), }, - [4597] = { - [sym_parameter_list] = STATE(4599), - [sym_abstract_array_declarator] = STATE(4787), - [sym_abstract_pointer_declarator] = STATE(4787), - [sym_abstract_reference_declarator] = STATE(4787), - [sym_abstract_function_declarator] = STATE(4787), - [sym__abstract_declarator] = STATE(4787), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9964), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(9966), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(9968), + [4560] = { + [sym_abstract_reference_declarator] = STATE(4758), + [sym_abstract_array_declarator] = STATE(4758), + [sym_abstract_pointer_declarator] = STATE(4758), + [sym_parameter_list] = STATE(4562), + [sym_abstract_function_declarator] = STATE(4758), + [sym__abstract_declarator] = STATE(4758), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9902), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(9904), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(9906), }, - [4598] = { - [sym_abstract_array_declarator] = STATE(4789), - [sym_parameter_list] = STATE(4599), - [sym_abstract_reference_declarator] = STATE(4789), - [sym_abstract_function_declarator] = STATE(4789), - [aux_sym_type_definition_repeat1] = STATE(4788), - [sym_abstract_pointer_declarator] = STATE(4789), - [sym_type_qualifier] = STATE(4788), - [sym__abstract_declarator] = STATE(4789), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(1062), + [4561] = { + [sym_abstract_reference_declarator] = STATE(4760), + [aux_sym_type_definition_repeat1] = STATE(4759), + [sym_abstract_array_declarator] = STATE(4760), + [sym_parameter_list] = STATE(4562), + [sym_abstract_function_declarator] = STATE(4760), + [sym_abstract_pointer_declarator] = STATE(4760), + [sym_type_qualifier] = STATE(4759), + [sym__abstract_declarator] = STATE(4760), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9964), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(9966), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(9968), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9902), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(9904), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(9906), }, - [4599] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4790), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4790), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(10340), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(1062), + [4562] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4761), + [sym_type_qualifier] = STATE(4761), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(10302), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_DASH_GT] = ACTIONS(8165), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(7919), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1070), }, - [4600] = { - [sym_parameter_list] = STATE(4791), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym_COMMA] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_RPAREN] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_EQ] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), + [4563] = { + [sym_parameter_list] = STATE(4762), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym_COMMA] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_RPAREN] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_EQ] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), }, - [4601] = { - [sym_abstract_array_declarator] = STATE(3763), - [sym_parameter_list] = STATE(1982), - [sym_abstract_reference_declarator] = STATE(3763), - [sym_abstract_function_declarator] = STATE(3763), - [aux_sym_type_definition_repeat1] = STATE(4792), - [sym_abstract_pointer_declarator] = STATE(3763), - [sym_type_qualifier] = STATE(4792), - [sym__abstract_declarator] = STATE(3763), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(1062), + [4564] = { + [sym_abstract_reference_declarator] = STATE(3675), + [aux_sym_type_definition_repeat1] = STATE(4763), + [sym_abstract_array_declarator] = STATE(3675), + [sym_parameter_list] = STATE(1886), + [sym_abstract_function_declarator] = STATE(3675), + [sym_abstract_pointer_declarator] = STATE(3675), + [sym_type_qualifier] = STATE(4763), + [sym__abstract_declarator] = STATE(3675), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9165), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(9167), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(9169), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(9055), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(9057), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_AMP_AMP] = ACTIONS(9059), + [anon_sym_restrict] = ACTIONS(1070), }, - [4602] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(7469), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(6338), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_SEMI] = ACTIONS(7469), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4565] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(7972), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(7974), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(7450), }, - [4603] = { - [sym_argument_list] = STATE(806), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(3846), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(3848), - [anon_sym_RBRACK] = ACTIONS(10342), + [4566] = { + [sym_new_declarator] = STATE(4516), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(7954), + [anon_sym_PERCENT] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_EQ] = ACTIONS(7532), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_RBRACK] = ACTIONS(7530), }, - [4604] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(4529), - [anon_sym_LT_LT_EQ] = ACTIONS(4529), - [anon_sym_PERCENT_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(9204), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(4529), - [anon_sym_PLUS_EQ] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(9214), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(4529), - [anon_sym_GT_GT_EQ] = ACTIONS(4529), - [anon_sym_COMMA] = ACTIONS(4529), - [anon_sym_PIPE_PIPE] = ACTIONS(9216), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_DASH_EQ] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4529), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(4529), - [anon_sym_AMP_AMP] = ACTIONS(9220), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(7494), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4567] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(7946), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(7966), + [anon_sym_PLUS] = ACTIONS(7946), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7948), + [anon_sym_SLASH] = ACTIONS(7948), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7964), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(7972), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(7950), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(7948), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(10304), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_BANG_EQ] = ACTIONS(7960), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(7974), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_GT_GT] = ACTIONS(7950), + [anon_sym_RBRACK] = ACTIONS(8176), }, - [4605] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4794), - [sym_logical_expression] = STATE(4794), - [sym_bitwise_expression] = STATE(4794), - [sym_cast_expression] = STATE(4794), - [sym_new_expression] = STATE(4794), - [sym_field_expression] = STATE(4794), - [sym_compound_literal_expression] = STATE(4794), - [sym_char_literal] = STATE(4794), - [sym_template_function] = STATE(4794), - [sym_conditional_expression] = STATE(4794), - [sym_equality_expression] = STATE(4794), - [sym_relational_expression] = STATE(4794), - [sym_delete_expression] = STATE(4794), - [sym_sizeof_expression] = STATE(4794), - [sym_parenthesized_expression] = STATE(4794), - [sym_lambda_expression] = STATE(4794), - [sym_concatenated_string] = STATE(4794), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4794), - [sym_assignment_expression] = STATE(4794), - [sym_pointer_expression] = STATE(4794), - [sym_shift_expression] = STATE(4794), - [sym_math_expression] = STATE(4794), - [sym_call_expression] = STATE(4794), - [sym_lambda_capture_specifier] = STATE(196), + [4568] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(8095), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(7450), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(8103), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(8105), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(8107), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [4569] = { + [sym_new_declarator] = STATE(4115), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_COLON] = ACTIONS(7530), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_EQ] = ACTIONS(7532), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), + }, + [4570] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(8079), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(8093), + [anon_sym_PIPE] = ACTIONS(8095), + [anon_sym_LT] = ACTIONS(8097), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(8099), + [anon_sym_PLUS] = ACTIONS(8079), + [anon_sym_GT_EQ] = ACTIONS(8101), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(8081), + [anon_sym_COLON] = ACTIONS(8176), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(8103), + [anon_sym_GT] = ACTIONS(8097), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(8105), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(8083), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(8081), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(10306), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_LT_EQ] = ACTIONS(8101), + [anon_sym_BANG_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(8107), + [anon_sym_DASH_GT] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(8083), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [4571] = { + [anon_sym_LPAREN2] = ACTIONS(6794), + [anon_sym_DASH] = ACTIONS(6796), + [anon_sym_STAR_EQ] = ACTIONS(6794), + [anon_sym_LT_LT_EQ] = ACTIONS(6794), + [anon_sym_PERCENT_EQ] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6794), + [anon_sym_PIPE] = ACTIONS(6796), + [anon_sym_LT] = ACTIONS(6796), + [anon_sym_CARET_EQ] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6796), + [anon_sym_PLUS] = ACTIONS(6796), + [anon_sym_GT_EQ] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6796), + [anon_sym_SLASH] = ACTIONS(6796), + [anon_sym_COLON] = ACTIONS(6794), + [anon_sym_SLASH_EQ] = ACTIONS(6794), + [anon_sym_PLUS_EQ] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6796), + [anon_sym_PIPE_EQ] = ACTIONS(6794), + [anon_sym_GT_GT_EQ] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6794), + [anon_sym_DASH_EQ] = ACTIONS(6794), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_BANG_EQ] = ACTIONS(6794), + [anon_sym_AMP_EQ] = ACTIONS(6794), + [anon_sym_AMP_AMP] = ACTIONS(6794), + [anon_sym_DASH_GT] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6794), + }, + [4572] = { + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6801), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_PERCENT] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6801), + }, + [4573] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(7450), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(6386), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_SEMI] = ACTIONS(7450), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [4574] = { + [sym_argument_list] = STATE(807), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3814), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3810), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_BANG_EQ] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_DASH_GT] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_RBRACK] = ACTIONS(10308), + }, + [4575] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_LT_LT_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(9175), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(9185), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(4527), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(9187), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(9191), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), + }, + [4576] = { + [sym_template_function] = STATE(4765), + [sym__expression] = STATE(4765), + [sym_logical_expression] = STATE(4765), + [sym_bitwise_expression] = STATE(4765), + [sym_cast_expression] = STATE(4765), + [sym_delete_expression] = STATE(4765), + [sym_field_expression] = STATE(4765), + [sym_compound_literal_expression] = STATE(4765), + [sym_lambda_expression] = STATE(4765), + [sym_char_literal] = STATE(4765), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4765), + [sym_equality_expression] = STATE(4765), + [sym_relational_expression] = STATE(4765), + [sym_sizeof_expression] = STATE(4765), + [sym_subscript_expression] = STATE(4765), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(10344), - [anon_sym_DASH] = ACTIONS(6294), - [sym_true] = ACTIONS(10346), - [anon_sym_DASH_DASH] = ACTIONS(6296), - [sym_null] = ACTIONS(10346), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(10344), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(6300), - [anon_sym_AMP] = ACTIONS(1337), - [sym_false] = ACTIONS(10346), - [sym_nullptr] = ACTIONS(10346), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), + [sym_parenthesized_expression] = STATE(4765), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4765), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4765), + [sym_pointer_expression] = STATE(4765), + [sym_shift_expression] = STATE(4765), + [sym_math_expression] = STATE(4765), + [sym_call_expression] = STATE(4765), + [sym_new_expression] = STATE(4765), + [anon_sym_LPAREN2] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(10310), + [anon_sym_DASH] = ACTIONS(6342), + [sym_true] = ACTIONS(10312), + [anon_sym_DASH_DASH] = ACTIONS(6344), + [sym_null] = ACTIONS(10312), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(10310), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(6348), + [anon_sym_AMP] = ACTIONS(1345), + [sym_false] = ACTIONS(10312), + [sym_nullptr] = ACTIONS(10312), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), }, - [4606] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(2542), - [sym_logical_expression] = STATE(2542), - [sym_bitwise_expression] = STATE(2542), - [sym_cast_expression] = STATE(2542), - [sym_new_expression] = STATE(2542), - [sym_field_expression] = STATE(2542), - [sym_compound_literal_expression] = STATE(2542), - [sym_char_literal] = STATE(2542), - [sym_template_function] = STATE(2542), - [sym_conditional_expression] = STATE(2542), - [sym_equality_expression] = STATE(2542), - [sym_relational_expression] = STATE(2542), - [sym_delete_expression] = STATE(2542), - [sym_sizeof_expression] = STATE(2542), - [sym_parenthesized_expression] = STATE(2542), - [sym_initializer_list] = STATE(2543), - [sym_concatenated_string] = STATE(2542), - [sym_string_literal] = STATE(3035), - [sym_lambda_expression] = STATE(2542), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(2542), - [sym_assignment_expression] = STATE(2542), - [sym_pointer_expression] = STATE(2542), - [sym_shift_expression] = STATE(2542), - [sym_math_expression] = STATE(2542), - [sym_call_expression] = STATE(2542), - [sym_lambda_capture_specifier] = STATE(196), + [4577] = { + [sym_template_function] = STATE(2527), + [sym__expression] = STATE(2527), + [sym_logical_expression] = STATE(2527), + [sym_bitwise_expression] = STATE(2527), + [sym_cast_expression] = STATE(2527), + [sym_delete_expression] = STATE(2527), + [sym_field_expression] = STATE(2527), + [sym_compound_literal_expression] = STATE(2527), + [sym_lambda_expression] = STATE(2527), + [sym_char_literal] = STATE(2527), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(2527), + [sym_equality_expression] = STATE(2527), + [sym_relational_expression] = STATE(2527), + [sym_sizeof_expression] = STATE(2527), + [sym_subscript_expression] = STATE(2527), [sym_scoped_namespace_identifier] = STATE(197), - [anon_sym_LPAREN2] = ACTIONS(8205), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_DASH_GT] = ACTIONS(4127), - [sym_raw_string_literal] = ACTIONS(5267), - [sym_true] = ACTIONS(5269), - [sym_null] = ACTIONS(5269), - [anon_sym_STAR_EQ] = ACTIONS(4127), - [anon_sym_LT_LT_EQ] = ACTIONS(4127), - [anon_sym_PERCENT_EQ] = ACTIONS(4127), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(4127), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(4129), - [anon_sym_CARET_EQ] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(10348), - [anon_sym_AMP] = ACTIONS(9998), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(4127), - [anon_sym_GT_EQ] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(9998), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_SLASH] = ACTIONS(4129), - [sym_identifier] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(4127), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_EQ] = ACTIONS(4127), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_CARET] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(4129), - [anon_sym_PIPE_EQ] = ACTIONS(4127), - [anon_sym_GT_GT_EQ] = ACTIONS(4127), - [anon_sym_COMMA] = ACTIONS(4127), - [anon_sym_PIPE_PIPE] = ACTIONS(4127), - [anon_sym_DOT] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_number_literal] = ACTIONS(5267), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5269), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_DASH_EQ] = ACTIONS(4127), - [sym_nullptr] = ACTIONS(5269), - [anon_sym_TILDE] = ACTIONS(8207), - [anon_sym_SEMI] = ACTIONS(4127), - [anon_sym_BANG_EQ] = ACTIONS(4127), - [anon_sym_AMP_EQ] = ACTIONS(4127), - [anon_sym_AMP_AMP] = ACTIONS(4127), - [anon_sym_LT_EQ] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_GT_GT] = ACTIONS(4129), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_initializer_list] = STATE(2528), + [sym_parenthesized_expression] = STATE(2527), + [sym_string_literal] = STATE(3025), + [sym_lambda_capture_specifier] = STATE(195), + [sym_concatenated_string] = STATE(2527), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(2527), + [sym_pointer_expression] = STATE(2527), + [sym_shift_expression] = STATE(2527), + [sym_math_expression] = STATE(2527), + [sym_call_expression] = STATE(2527), + [sym_new_expression] = STATE(2527), + [anon_sym_LPAREN2] = ACTIONS(8193), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_DASH_GT] = ACTIONS(4125), + [sym_raw_string_literal] = ACTIONS(5266), + [sym_true] = ACTIONS(5268), + [sym_null] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_LT_LT_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_CARET_EQ] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(10314), + [anon_sym_AMP] = ACTIONS(9964), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(9964), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_SLASH] = ACTIONS(4127), + [sym_identifier] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_CARET] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_PIPE_EQ] = ACTIONS(4125), + [anon_sym_GT_GT_EQ] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(4127), + [sym_number_literal] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [sym_nullptr] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(8195), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_AMP_EQ] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [4607] = { - [sym_template_type] = STATE(189), - [sym__expression] = STATE(4795), - [sym_logical_expression] = STATE(4795), - [sym_bitwise_expression] = STATE(4795), - [sym_cast_expression] = STATE(4795), - [sym_new_expression] = STATE(4795), - [sym_field_expression] = STATE(4795), - [sym_compound_literal_expression] = STATE(4795), - [sym_char_literal] = STATE(4795), - [sym_template_function] = STATE(4795), - [sym_conditional_expression] = STATE(4795), - [sym_equality_expression] = STATE(4795), - [sym_relational_expression] = STATE(4795), - [sym_delete_expression] = STATE(4795), - [sym_sizeof_expression] = STATE(4795), - [sym_parenthesized_expression] = STATE(4795), - [sym_lambda_expression] = STATE(4795), - [sym_concatenated_string] = STATE(4795), - [sym_string_literal] = STATE(3035), - [sym_scoped_identifier] = STATE(375), - [sym_scoped_type_identifier] = STATE(195), - [sym_subscript_expression] = STATE(4795), - [sym_assignment_expression] = STATE(4795), - [sym_pointer_expression] = STATE(4795), - [sym_shift_expression] = STATE(4795), - [sym_math_expression] = STATE(4795), - [sym_call_expression] = STATE(4795), - [sym_lambda_capture_specifier] = STATE(196), + [4578] = { + [sym_template_function] = STATE(4766), + [sym__expression] = STATE(4766), + [sym_logical_expression] = STATE(4766), + [sym_bitwise_expression] = STATE(4766), + [sym_cast_expression] = STATE(4766), + [sym_delete_expression] = STATE(4766), + [sym_field_expression] = STATE(4766), + [sym_compound_literal_expression] = STATE(4766), + [sym_lambda_expression] = STATE(4766), + [sym_char_literal] = STATE(4766), + [sym_scoped_identifier] = STATE(376), + [sym_scoped_type_identifier] = STATE(194), + [sym_conditional_expression] = STATE(4766), + [sym_equality_expression] = STATE(4766), + [sym_relational_expression] = STATE(4766), + [sym_sizeof_expression] = STATE(4766), + [sym_subscript_expression] = STATE(4766), [sym_scoped_namespace_identifier] = STATE(197), - [sym_raw_string_literal] = ACTIONS(10350), - [anon_sym_DASH] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(8205), - [sym_true] = ACTIONS(10352), - [sym_null] = ACTIONS(10352), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_number_literal] = ACTIONS(10350), - [anon_sym_COLON_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(6300), - [sym_false] = ACTIONS(10352), - [anon_sym_AMP] = ACTIONS(6266), - [sym_nullptr] = ACTIONS(10352), - [anon_sym_PLUS] = ACTIONS(6294), - [anon_sym_sizeof] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(6266), - [anon_sym_TILDE] = ACTIONS(8207), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(646), - [anon_sym_new] = ACTIONS(6306), - [anon_sym_PLUS_PLUS] = ACTIONS(6296), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_delete] = ACTIONS(6308), - [anon_sym_DASH_DASH] = ACTIONS(6296), + [sym_parenthesized_expression] = STATE(4766), + [sym_lambda_capture_specifier] = STATE(195), + [sym_string_literal] = STATE(3025), + [sym_concatenated_string] = STATE(4766), + [sym_template_type] = STATE(198), + [sym_assignment_expression] = STATE(4766), + [sym_pointer_expression] = STATE(4766), + [sym_shift_expression] = STATE(4766), + [sym_math_expression] = STATE(4766), + [sym_call_expression] = STATE(4766), + [sym_new_expression] = STATE(4766), + [sym_raw_string_literal] = ACTIONS(10316), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_LPAREN2] = ACTIONS(8193), + [sym_true] = ACTIONS(10318), + [sym_null] = ACTIONS(10318), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_number_literal] = ACTIONS(10316), + [anon_sym_COLON_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(6348), + [sym_false] = ACTIONS(10318), + [anon_sym_AMP] = ACTIONS(6314), + [sym_nullptr] = ACTIONS(10318), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_sizeof] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_TILDE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(650), + [anon_sym_new] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(6356), + [anon_sym_DASH_DASH] = ACTIONS(6344), }, - [4608] = { - [sym_new_declarator] = STATE(3532), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_RBRACE] = ACTIONS(7549), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7549), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(8245), - [anon_sym_PERCENT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_SEMI] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), + [4579] = { + [sym_new_declarator] = STATE(3504), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_GT_GT] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_RBRACE] = ACTIONS(7530), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7530), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_CARET] = ACTIONS(7530), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7530), + [anon_sym_LBRACK] = ACTIONS(8233), + [anon_sym_PERCENT] = ACTIONS(7530), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_SEMI] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_DASH_DASH] = ACTIONS(7530), }, - [4609] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(6318), - [anon_sym_EQ_EQ] = ACTIONS(6320), - [anon_sym_PIPE] = ACTIONS(6322), - [anon_sym_LT] = ACTIONS(6324), - [anon_sym_AMP] = ACTIONS(6326), - [anon_sym_RBRACE] = ACTIONS(8131), - [anon_sym_GT_EQ] = ACTIONS(6328), - [anon_sym_STAR] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(6318), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6324), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(6338), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(6342), - [anon_sym_SEMI] = ACTIONS(8131), - [anon_sym_BANG_EQ] = ACTIONS(6320), - [anon_sym_LT_EQ] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4580] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6368), + [anon_sym_PIPE] = ACTIONS(6370), + [anon_sym_LT] = ACTIONS(6372), + [anon_sym_AMP] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(8176), + [anon_sym_GT_EQ] = ACTIONS(6376), + [anon_sym_STAR] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(6366), + [anon_sym_SLASH] = ACTIONS(6380), + [anon_sym_CARET] = ACTIONS(6382), + [anon_sym_GT] = ACTIONS(6372), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(6386), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_SEMI] = ACTIONS(8176), + [anon_sym_BANG_EQ] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6376), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4610] = { - [sym_type_qualifier] = STATE(4610), - [aux_sym_type_definition_repeat1] = STATE(4610), + [4581] = { + [aux_sym_type_definition_repeat1] = STATE(4581), + [sym_type_qualifier] = STATE(4581), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(4989), [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_const] = ACTIONS(2103), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(4989), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), + [anon_sym_explicit] = ACTIONS(4989), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_DASH_GT] = ACTIONS(2106), [anon_sym_EQ] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(4989), [anon_sym_LBRACE] = ACTIONS(2106), }, - [4611] = { - [sym_parameter_list] = STATE(4311), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym_COMMA] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_SEMI] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), - [anon_sym_LBRACE] = ACTIONS(7275), + [4582] = { + [sym_parameter_list] = STATE(4283), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_SEMI] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym_LBRACE] = ACTIONS(7256), }, - [4612] = { - [sym_type_qualifier] = STATE(4612), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4612), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(10354), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_SEMI] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), - [anon_sym_LBRACE] = ACTIONS(6399), + [4583] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4583), + [sym_type_qualifier] = STATE(4583), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(10320), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), + [anon_sym_LBRACE] = ACTIONS(6087), }, - [4613] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4612), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4612), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(10027), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(1062), + [4584] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4583), + [sym_type_qualifier] = STATE(4583), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(9993), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_SEMI] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(6395), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(6098), }, - [4614] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(4797), - [anon_sym_LPAREN2] = ACTIONS(587), + [4585] = { + [aux_sym_type_definition_repeat2] = STATE(4768), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10357), + [anon_sym_SEMI] = ACTIONS(10323), }, - [4615] = { - [anon_sym_DASH] = ACTIONS(4149), - [sym_raw_string_literal] = ACTIONS(4151), - [sym_true] = ACTIONS(4149), - [anon_sym_mutable] = ACTIONS(4149), - [sym_null] = ACTIONS(4149), - [anon_sym_break] = ACTIONS(4149), - [anon_sym_BANG] = ACTIONS(4151), - [anon_sym_sizeof] = ACTIONS(4149), - [anon_sym_volatile] = ACTIONS(4149), - [anon_sym_PLUS] = ACTIONS(4149), - [anon_sym_typedef] = ACTIONS(4149), - [anon_sym_switch] = ACTIONS(4149), - [anon_sym_explicit] = ACTIONS(4149), - [sym_identifier] = ACTIONS(4149), - [anon_sym_delete] = ACTIONS(4149), - [anon_sym_continue] = ACTIONS(4149), - [anon_sym__Atomic] = ACTIONS(4149), - [sym_number_literal] = ACTIONS(4151), - [anon_sym_extern] = ACTIONS(4149), - [anon_sym_enum] = ACTIONS(4149), - [anon_sym_constexpr] = ACTIONS(4149), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4151), - [anon_sym_case] = ACTIONS(4149), - [anon_sym_SQUOTE] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4151), - [anon_sym_DASH_DASH] = ACTIONS(4151), - [anon_sym_LPAREN2] = ACTIONS(4151), - [anon_sym_struct] = ACTIONS(4149), - [sym_auto] = ACTIONS(4149), - [anon_sym_signed] = ACTIONS(4149), - [anon_sym_long] = ACTIONS(4149), - [anon_sym_COLON_COLON] = ACTIONS(4151), - [anon_sym_default] = ACTIONS(4149), - [anon_sym_AMP] = ACTIONS(4151), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_RBRACE] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_union] = ACTIONS(4149), - [anon_sym_typename] = ACTIONS(4149), - [anon_sym_short] = ACTIONS(4149), - [anon_sym_new] = ACTIONS(4149), - [anon_sym_goto] = ACTIONS(4149), - [anon_sym_while] = ACTIONS(4149), - [anon_sym_try] = ACTIONS(4149), - [anon_sym_for] = ACTIONS(4149), - [anon_sym_register] = ACTIONS(4149), - [anon_sym_DQUOTE] = ACTIONS(4151), - [anon_sym_const] = ACTIONS(4149), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_if] = ACTIONS(4149), - [sym_primitive_type] = ACTIONS(4149), - [sym_false] = ACTIONS(4149), - [sym_nullptr] = ACTIONS(4149), - [anon_sym_do] = ACTIONS(4149), - [anon_sym_return] = ACTIONS(4149), - [anon_sym_TILDE] = ACTIONS(4151), - [anon_sym_SEMI] = ACTIONS(4151), - [anon_sym_inline] = ACTIONS(4149), - [anon_sym_PLUS_PLUS] = ACTIONS(4151), - [anon_sym_restrict] = ACTIONS(4149), + [4586] = { + [anon_sym_DASH] = ACTIONS(4147), + [sym_raw_string_literal] = ACTIONS(4149), + [sym_true] = ACTIONS(4147), + [anon_sym_mutable] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_BANG] = ACTIONS(4149), + [anon_sym_sizeof] = ACTIONS(4147), + [anon_sym_volatile] = ACTIONS(4147), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_typedef] = ACTIONS(4147), + [anon_sym_switch] = ACTIONS(4147), + [anon_sym_explicit] = ACTIONS(4147), + [sym_identifier] = ACTIONS(4147), + [anon_sym_delete] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym__Atomic] = ACTIONS(4147), + [sym_number_literal] = ACTIONS(4149), + [anon_sym_extern] = ACTIONS(4147), + [anon_sym_enum] = ACTIONS(4147), + [anon_sym_constexpr] = ACTIONS(4147), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4149), + [anon_sym_case] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_struct] = ACTIONS(4147), + [sym_auto] = ACTIONS(4147), + [anon_sym_signed] = ACTIONS(4147), + [anon_sym_long] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_default] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(4149), + [anon_sym_static] = ACTIONS(4147), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_union] = ACTIONS(4147), + [anon_sym_typename] = ACTIONS(4147), + [anon_sym_short] = ACTIONS(4147), + [anon_sym_new] = ACTIONS(4147), + [anon_sym_goto] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_for] = ACTIONS(4147), + [anon_sym_register] = ACTIONS(4147), + [anon_sym_DQUOTE] = ACTIONS(4149), + [anon_sym_const] = ACTIONS(4147), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [sym_primitive_type] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_nullptr] = ACTIONS(4147), + [anon_sym_do] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_TILDE] = ACTIONS(4149), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_restrict] = ACTIONS(4147), }, - [4616] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [4587] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10357), + [anon_sym_SEMI] = ACTIONS(10323), }, - [4617] = { - [anon_sym_DASH] = ACTIONS(4159), - [sym_raw_string_literal] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [sym_true] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [sym_null] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_BANG] = ACTIONS(4161), - [anon_sym_sizeof] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_typedef] = ACTIONS(4159), - [anon_sym_switch] = ACTIONS(4159), - [anon_sym_explicit] = ACTIONS(4159), - [sym_identifier] = ACTIONS(4159), - [anon_sym_delete] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [sym_number_literal] = ACTIONS(4161), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym_enum] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(4159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4161), - [anon_sym_case] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [anon_sym_LBRACE] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_struct] = ACTIONS(4159), - [sym_auto] = ACTIONS(4159), - [anon_sym_signed] = ACTIONS(4159), - [anon_sym_long] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_default] = ACTIONS(4159), - [anon_sym_AMP] = ACTIONS(4161), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_STAR] = ACTIONS(4161), - [anon_sym_union] = ACTIONS(4159), - [anon_sym_typename] = ACTIONS(4159), - [anon_sym_short] = ACTIONS(4159), - [anon_sym_new] = ACTIONS(4159), - [anon_sym_goto] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_for] = ACTIONS(4159), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_DQUOTE] = ACTIONS(4161), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_LBRACK] = ACTIONS(4159), - [anon_sym_class] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [sym_primitive_type] = ACTIONS(4159), - [sym_false] = ACTIONS(4159), - [sym_nullptr] = ACTIONS(4159), - [anon_sym_do] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4161), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_restrict] = ACTIONS(4159), + [4588] = { + [anon_sym_DASH] = ACTIONS(4157), + [sym_raw_string_literal] = ACTIONS(4159), + [anon_sym_else] = ACTIONS(4157), + [sym_true] = ACTIONS(4157), + [anon_sym_mutable] = ACTIONS(4157), + [sym_null] = ACTIONS(4157), + [anon_sym_break] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(4159), + [anon_sym_sizeof] = ACTIONS(4157), + [anon_sym_volatile] = ACTIONS(4157), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_typedef] = ACTIONS(4157), + [anon_sym_switch] = ACTIONS(4157), + [anon_sym_explicit] = ACTIONS(4157), + [sym_identifier] = ACTIONS(4157), + [anon_sym_delete] = ACTIONS(4157), + [anon_sym_continue] = ACTIONS(4157), + [anon_sym__Atomic] = ACTIONS(4157), + [sym_number_literal] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4157), + [anon_sym_enum] = ACTIONS(4157), + [anon_sym_constexpr] = ACTIONS(4157), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(4157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4159), + [anon_sym_case] = ACTIONS(4157), + [anon_sym_SQUOTE] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4159), + [anon_sym_DASH_DASH] = ACTIONS(4159), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_struct] = ACTIONS(4157), + [sym_auto] = ACTIONS(4157), + [anon_sym_signed] = ACTIONS(4157), + [anon_sym_long] = ACTIONS(4157), + [anon_sym_COLON_COLON] = ACTIONS(4159), + [anon_sym_default] = ACTIONS(4157), + [anon_sym_AMP] = ACTIONS(4159), + [anon_sym_static] = ACTIONS(4157), + [anon_sym_RBRACE] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_union] = ACTIONS(4157), + [anon_sym_typename] = ACTIONS(4157), + [anon_sym_short] = ACTIONS(4157), + [anon_sym_new] = ACTIONS(4157), + [anon_sym_goto] = ACTIONS(4157), + [anon_sym_while] = ACTIONS(4157), + [anon_sym_try] = ACTIONS(4157), + [anon_sym_for] = ACTIONS(4157), + [anon_sym_register] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4157), + [anon_sym_LBRACK] = ACTIONS(4157), + [anon_sym_class] = ACTIONS(4157), + [anon_sym_if] = ACTIONS(4157), + [sym_primitive_type] = ACTIONS(4157), + [sym_false] = ACTIONS(4157), + [sym_nullptr] = ACTIONS(4157), + [anon_sym_do] = ACTIONS(4157), + [anon_sym_return] = ACTIONS(4157), + [anon_sym_TILDE] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4157), + [anon_sym_PLUS_PLUS] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4157), }, - [4618] = { - [sym_do_statement] = STATE(2078), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4589] = { + [sym_do_statement] = STATE(2067), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(2078), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(2078), - [sym_if_statement] = STATE(2078), - [sym_switch_statement] = STATE(2078), - [sym_for_statement] = STATE(2078), - [sym_return_statement] = STATE(2078), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(2067), + [sym_try_statement] = STATE(2067), + [aux_sym_switch_body_repeat1] = STATE(2067), + [sym_if_statement] = STATE(2067), + [sym_switch_statement] = STATE(2067), + [sym_for_statement] = STATE(2067), + [sym_return_statement] = STATE(2067), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(2078), - [aux_sym_switch_body_repeat1] = STATE(2078), - [sym_case_statement] = STATE(2078), - [sym_break_statement] = STATE(2078), - [sym_continue_statement] = STATE(2078), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_case_statement] = STATE(2067), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(2067), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(2078), - [sym_labeled_statement] = STATE(2078), - [sym_expression_statement] = STATE(2078), - [sym_while_statement] = STATE(2078), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(2067), + [sym_for_range_loop] = STATE(2067), + [sym_compound_statement] = STATE(2067), + [sym_labeled_statement] = STATE(2067), + [sym_expression_statement] = STATE(2067), + [sym_while_statement] = STATE(2067), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(10359), + [anon_sym_RBRACE] = ACTIONS(10325), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4619] = { - [sym_compound_statement] = STATE(4799), - [anon_sym_LBRACE] = ACTIONS(6457), + [4590] = { + [sym_compound_statement] = STATE(4770), + [anon_sym_LBRACE] = ACTIONS(6446), [sym_comment] = ACTIONS(3), }, - [4620] = { - [aux_sym_try_statement_repeat1] = STATE(4620), - [sym_catch_clause] = STATE(4620), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(10361), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_case] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_default] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5355), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_RBRACE] = ACTIONS(5355), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [4591] = { + [sym_catch_clause] = STATE(4591), + [aux_sym_try_statement_repeat1] = STATE(4591), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(10327), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_case] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_default] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [4621] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4801), - [sym_logical_expression] = STATE(4801), - [sym_bitwise_expression] = STATE(4801), - [sym_cast_expression] = STATE(4801), - [sym_new_expression] = STATE(4801), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4801), - [sym_char_literal] = STATE(4801), - [sym_template_function] = STATE(4801), - [sym_conditional_expression] = STATE(4801), - [sym_equality_expression] = STATE(4801), - [sym_relational_expression] = STATE(4801), - [sym_delete_expression] = STATE(4801), - [sym_sizeof_expression] = STATE(4801), - [sym_parenthesized_expression] = STATE(4801), - [sym_lambda_expression] = STATE(4801), - [sym_concatenated_string] = STATE(4801), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4801), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4801), - [sym_math_expression] = STATE(4801), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10364), + [4592] = { + [sym_template_function] = STATE(4772), + [sym__expression] = STATE(4772), + [sym_logical_expression] = STATE(4772), + [sym_bitwise_expression] = STATE(4772), + [sym_cast_expression] = STATE(4772), + [sym_delete_expression] = STATE(4772), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4772), + [sym_lambda_expression] = STATE(4772), + [sym_char_literal] = STATE(4772), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_relational_expression] = STATE(4772), + [sym_sizeof_expression] = STATE(4772), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4772), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4772), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4772), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4772), + [sym_math_expression] = STATE(4772), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4772), + [sym_raw_string_literal] = ACTIONS(10330), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10366), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10366), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10332), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10332), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10364), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10330), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10366), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10366), + [sym_false] = ACTIONS(10332), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10332), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10368), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10334), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4622] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10370), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4593] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10336), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4623] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4803), - [sym_logical_expression] = STATE(4803), - [sym_bitwise_expression] = STATE(4803), - [sym_cast_expression] = STATE(4803), - [sym_new_expression] = STATE(4803), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4803), - [sym_char_literal] = STATE(4803), - [sym_template_function] = STATE(4803), - [sym_conditional_expression] = STATE(4803), - [sym_equality_expression] = STATE(4803), - [sym_relational_expression] = STATE(4803), - [sym_delete_expression] = STATE(4803), - [sym_sizeof_expression] = STATE(4803), - [sym_parenthesized_expression] = STATE(4803), - [sym_lambda_expression] = STATE(4803), - [sym_concatenated_string] = STATE(4803), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4803), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4803), - [sym_math_expression] = STATE(4803), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10372), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10374), - [sym_null] = ACTIONS(10374), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10372), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10374), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10374), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10370), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4594] = { + [sym_template_function] = STATE(4774), + [sym__expression] = STATE(4774), + [sym_logical_expression] = STATE(4774), + [sym_bitwise_expression] = STATE(4774), + [sym_cast_expression] = STATE(4774), + [sym_delete_expression] = STATE(4774), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4774), + [sym_lambda_expression] = STATE(4774), + [sym_char_literal] = STATE(4774), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4774), + [sym_equality_expression] = STATE(4774), + [sym_relational_expression] = STATE(4774), + [sym_sizeof_expression] = STATE(4774), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4774), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4774), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4774), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4774), + [sym_math_expression] = STATE(4774), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4774), + [sym_raw_string_literal] = ACTIONS(10338), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10340), + [sym_null] = ACTIONS(10340), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10338), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10340), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10340), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10336), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4624] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4804), - [sym_logical_expression] = STATE(4804), - [sym_bitwise_expression] = STATE(4804), - [sym_cast_expression] = STATE(4804), - [sym_new_expression] = STATE(4804), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4804), - [sym_char_literal] = STATE(4804), - [sym_template_function] = STATE(4804), - [sym_conditional_expression] = STATE(4804), - [sym_equality_expression] = STATE(4804), - [sym_relational_expression] = STATE(4804), - [sym_delete_expression] = STATE(4804), - [sym_sizeof_expression] = STATE(4804), - [sym_parenthesized_expression] = STATE(4804), - [sym_lambda_expression] = STATE(4804), - [sym_concatenated_string] = STATE(4804), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4804), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4804), - [sym_math_expression] = STATE(4804), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10376), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10378), - [sym_null] = ACTIONS(10378), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10376), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10378), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10378), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4595] = { + [sym_template_function] = STATE(4775), + [sym__expression] = STATE(4775), + [sym_logical_expression] = STATE(4775), + [sym_bitwise_expression] = STATE(4775), + [sym_cast_expression] = STATE(4775), + [sym_delete_expression] = STATE(4775), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4775), + [sym_lambda_expression] = STATE(4775), + [sym_char_literal] = STATE(4775), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4775), + [sym_equality_expression] = STATE(4775), + [sym_relational_expression] = STATE(4775), + [sym_sizeof_expression] = STATE(4775), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4775), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4775), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4775), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4775), + [sym_math_expression] = STATE(4775), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4775), + [sym_raw_string_literal] = ACTIONS(10342), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10344), + [sym_null] = ACTIONS(10344), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10342), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10344), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10344), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4625] = { - [sym_do_statement] = STATE(4810), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4596] = { + [sym_do_statement] = STATE(4781), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(4810), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(4810), - [sym_if_statement] = STATE(4810), - [sym_switch_statement] = STATE(4810), - [sym_for_statement] = STATE(4810), - [sym_return_statement] = STATE(4810), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4781), + [sym_try_statement] = STATE(4781), + [sym_if_statement] = STATE(4781), + [sym_switch_statement] = STATE(4781), + [sym_for_statement] = STATE(4781), + [sym_return_statement] = STATE(4781), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(4810), - [sym_break_statement] = STATE(4810), - [sym_continue_statement] = STATE(4810), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4781), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4810), - [sym_labeled_statement] = STATE(4810), - [sym_expression_statement] = STATE(4810), - [sym_while_statement] = STATE(4810), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4781), + [sym_for_range_loop] = STATE(4781), + [sym_compound_statement] = STATE(4781), + [sym_labeled_statement] = STATE(4781), + [sym_expression_statement] = STATE(4781), + [sym_while_statement] = STATE(4781), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4626] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10390), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4597] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10356), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4627] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4812), - [sym_logical_expression] = STATE(4812), - [sym_bitwise_expression] = STATE(4812), - [sym_cast_expression] = STATE(4812), - [sym_new_expression] = STATE(4812), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4812), - [sym_char_literal] = STATE(4812), - [sym_comma_expression] = STATE(4813), - [sym_template_function] = STATE(4812), - [sym_conditional_expression] = STATE(4812), - [sym_equality_expression] = STATE(4812), - [sym_delete_expression] = STATE(4812), - [sym_relational_expression] = STATE(4812), - [sym_parenthesized_expression] = STATE(4812), - [sym_sizeof_expression] = STATE(4812), - [sym_concatenated_string] = STATE(4812), - [sym_string_literal] = STATE(151), - [sym_lambda_expression] = STATE(4812), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4812), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4812), - [sym_math_expression] = STATE(4812), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10392), + [4598] = { + [sym_template_function] = STATE(4783), + [sym__expression] = STATE(4783), + [sym_logical_expression] = STATE(4783), + [sym_bitwise_expression] = STATE(4783), + [sym_cast_expression] = STATE(4783), + [sym_delete_expression] = STATE(4783), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4783), + [sym_lambda_expression] = STATE(4783), + [sym_char_literal] = STATE(4783), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_comma_expression] = STATE(4784), + [sym_conditional_expression] = STATE(4783), + [sym_equality_expression] = STATE(4783), + [sym_relational_expression] = STATE(4783), + [sym_sizeof_expression] = STATE(4783), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4783), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4783), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4783), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4783), + [sym_math_expression] = STATE(4783), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4783), + [sym_raw_string_literal] = ACTIONS(10358), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10394), - [sym_null] = ACTIONS(10394), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10360), + [sym_null] = ACTIONS(10360), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10392), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10358), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10394), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10394), + [sym_false] = ACTIONS(10360), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10360), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(686), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), }, - [4628] = { - [anon_sym_DASH] = ACTIONS(5726), - [sym_raw_string_literal] = ACTIONS(5728), - [anon_sym_else] = ACTIONS(5726), - [sym_true] = ACTIONS(5726), - [anon_sym_mutable] = ACTIONS(5726), - [sym_null] = ACTIONS(5726), - [anon_sym_break] = ACTIONS(5726), - [anon_sym_BANG] = ACTIONS(5728), - [anon_sym_sizeof] = ACTIONS(5726), - [anon_sym_volatile] = ACTIONS(5726), - [anon_sym_PLUS] = ACTIONS(5726), - [anon_sym_typedef] = ACTIONS(5726), - [anon_sym_switch] = ACTIONS(5726), - [anon_sym_explicit] = ACTIONS(5726), - [sym_identifier] = ACTIONS(5726), - [anon_sym_delete] = ACTIONS(5726), - [anon_sym_continue] = ACTIONS(5726), - [anon_sym__Atomic] = ACTIONS(5726), - [sym_number_literal] = ACTIONS(5728), - [anon_sym_extern] = ACTIONS(5726), - [anon_sym_enum] = ACTIONS(5726), - [anon_sym_constexpr] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5728), - [anon_sym_case] = ACTIONS(5726), - [anon_sym_SQUOTE] = ACTIONS(5728), - [anon_sym_LBRACE] = ACTIONS(5728), - [anon_sym_DASH_DASH] = ACTIONS(5728), - [anon_sym_LPAREN2] = ACTIONS(5728), - [anon_sym_struct] = ACTIONS(5726), - [sym_auto] = ACTIONS(5726), - [anon_sym_signed] = ACTIONS(5726), - [anon_sym_long] = ACTIONS(5726), - [anon_sym_COLON_COLON] = ACTIONS(5728), - [anon_sym_default] = ACTIONS(5726), - [anon_sym_AMP] = ACTIONS(5728), - [anon_sym_static] = ACTIONS(5726), - [anon_sym_RBRACE] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(5728), - [anon_sym_union] = ACTIONS(5726), - [anon_sym_typename] = ACTIONS(5726), - [anon_sym_short] = ACTIONS(5726), - [anon_sym_new] = ACTIONS(5726), - [anon_sym_goto] = ACTIONS(5726), - [anon_sym_while] = ACTIONS(5726), - [anon_sym_try] = ACTIONS(5726), - [anon_sym_for] = ACTIONS(5726), - [anon_sym_register] = ACTIONS(5726), - [anon_sym_DQUOTE] = ACTIONS(5728), - [anon_sym_const] = ACTIONS(5726), - [anon_sym_LBRACK] = ACTIONS(5726), - [anon_sym_class] = ACTIONS(5726), - [anon_sym_if] = ACTIONS(5726), - [sym_primitive_type] = ACTIONS(5726), - [sym_false] = ACTIONS(5726), - [sym_nullptr] = ACTIONS(5726), - [anon_sym_do] = ACTIONS(5726), - [anon_sym_return] = ACTIONS(5726), - [anon_sym_TILDE] = ACTIONS(5728), - [anon_sym_SEMI] = ACTIONS(5728), - [anon_sym_inline] = ACTIONS(5726), - [anon_sym_PLUS_PLUS] = ACTIONS(5728), - [anon_sym_restrict] = ACTIONS(5726), + [4599] = { + [anon_sym_DASH] = ACTIONS(5732), + [sym_raw_string_literal] = ACTIONS(5734), + [anon_sym_else] = ACTIONS(5732), + [sym_true] = ACTIONS(5732), + [anon_sym_mutable] = ACTIONS(5732), + [sym_null] = ACTIONS(5732), + [anon_sym_break] = ACTIONS(5732), + [anon_sym_BANG] = ACTIONS(5734), + [anon_sym_sizeof] = ACTIONS(5732), + [anon_sym_volatile] = ACTIONS(5732), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_typedef] = ACTIONS(5732), + [anon_sym_switch] = ACTIONS(5732), + [anon_sym_explicit] = ACTIONS(5732), + [sym_identifier] = ACTIONS(5732), + [anon_sym_delete] = ACTIONS(5732), + [anon_sym_continue] = ACTIONS(5732), + [anon_sym__Atomic] = ACTIONS(5732), + [sym_number_literal] = ACTIONS(5734), + [anon_sym_extern] = ACTIONS(5732), + [anon_sym_enum] = ACTIONS(5732), + [anon_sym_constexpr] = ACTIONS(5732), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5734), + [anon_sym_case] = ACTIONS(5732), + [anon_sym_SQUOTE] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5734), + [anon_sym_DASH_DASH] = ACTIONS(5734), + [anon_sym_LPAREN2] = ACTIONS(5734), + [anon_sym_struct] = ACTIONS(5732), + [sym_auto] = ACTIONS(5732), + [anon_sym_signed] = ACTIONS(5732), + [anon_sym_long] = ACTIONS(5732), + [anon_sym_COLON_COLON] = ACTIONS(5734), + [anon_sym_default] = ACTIONS(5732), + [anon_sym_AMP] = ACTIONS(5734), + [anon_sym_static] = ACTIONS(5732), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_STAR] = ACTIONS(5734), + [anon_sym_union] = ACTIONS(5732), + [anon_sym_typename] = ACTIONS(5732), + [anon_sym_short] = ACTIONS(5732), + [anon_sym_new] = ACTIONS(5732), + [anon_sym_goto] = ACTIONS(5732), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [anon_sym_register] = ACTIONS(5732), + [anon_sym_DQUOTE] = ACTIONS(5734), + [anon_sym_const] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5732), + [anon_sym_class] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [sym_primitive_type] = ACTIONS(5732), + [sym_false] = ACTIONS(5732), + [sym_nullptr] = ACTIONS(5732), + [anon_sym_do] = ACTIONS(5732), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_TILDE] = ACTIONS(5734), + [anon_sym_SEMI] = ACTIONS(5734), + [anon_sym_inline] = ACTIONS(5732), + [anon_sym_PLUS_PLUS] = ACTIONS(5734), + [anon_sym_restrict] = ACTIONS(5732), }, - [4629] = { - [anon_sym_DASH] = ACTIONS(6354), - [sym_raw_string_literal] = ACTIONS(6356), - [sym_true] = ACTIONS(6354), - [anon_sym_mutable] = ACTIONS(6354), - [sym_null] = ACTIONS(6354), - [anon_sym_break] = ACTIONS(6354), - [anon_sym_BANG] = ACTIONS(6356), - [anon_sym_sizeof] = ACTIONS(6354), - [anon_sym_volatile] = ACTIONS(6354), - [anon_sym_PLUS] = ACTIONS(6354), - [anon_sym_typedef] = ACTIONS(6354), - [anon_sym_switch] = ACTIONS(6354), - [anon_sym_explicit] = ACTIONS(6354), - [sym_identifier] = ACTIONS(6354), - [anon_sym_delete] = ACTIONS(6354), - [anon_sym_continue] = ACTIONS(6354), - [anon_sym__Atomic] = ACTIONS(6354), - [sym_number_literal] = ACTIONS(6356), - [anon_sym_extern] = ACTIONS(6354), - [anon_sym_enum] = ACTIONS(6354), - [anon_sym_constexpr] = ACTIONS(6354), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6356), - [anon_sym_case] = ACTIONS(6354), - [anon_sym_SQUOTE] = ACTIONS(6356), - [anon_sym_LBRACE] = ACTIONS(6356), - [anon_sym_DASH_DASH] = ACTIONS(6356), - [anon_sym_LPAREN2] = ACTIONS(6356), - [anon_sym_struct] = ACTIONS(6354), - [sym_auto] = ACTIONS(6354), - [anon_sym_signed] = ACTIONS(6354), - [anon_sym_long] = ACTIONS(6354), - [anon_sym_COLON_COLON] = ACTIONS(6356), - [anon_sym_default] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(6356), - [anon_sym_static] = ACTIONS(6354), - [anon_sym_RBRACE] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(6356), - [anon_sym_union] = ACTIONS(6354), - [anon_sym_typename] = ACTIONS(6354), - [anon_sym_short] = ACTIONS(6354), - [anon_sym_new] = ACTIONS(6354), - [anon_sym_goto] = ACTIONS(6354), - [anon_sym_while] = ACTIONS(6354), - [anon_sym_try] = ACTIONS(6354), - [anon_sym_for] = ACTIONS(6354), - [anon_sym_register] = ACTIONS(6354), - [anon_sym_DQUOTE] = ACTIONS(6356), - [anon_sym_const] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(6354), - [anon_sym_class] = ACTIONS(6354), - [anon_sym_if] = ACTIONS(6354), - [sym_primitive_type] = ACTIONS(6354), - [sym_false] = ACTIONS(6354), - [sym_nullptr] = ACTIONS(6354), - [anon_sym_do] = ACTIONS(6354), - [anon_sym_return] = ACTIONS(6354), - [anon_sym_TILDE] = ACTIONS(6356), - [anon_sym_SEMI] = ACTIONS(6356), - [anon_sym_inline] = ACTIONS(6354), - [anon_sym_PLUS_PLUS] = ACTIONS(6356), - [anon_sym_restrict] = ACTIONS(6354), + [4600] = { + [anon_sym_DASH] = ACTIONS(5919), + [sym_raw_string_literal] = ACTIONS(5921), + [sym_true] = ACTIONS(5919), + [anon_sym_mutable] = ACTIONS(5919), + [sym_null] = ACTIONS(5919), + [anon_sym_break] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_sizeof] = ACTIONS(5919), + [anon_sym_volatile] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_typedef] = ACTIONS(5919), + [anon_sym_switch] = ACTIONS(5919), + [anon_sym_explicit] = ACTIONS(5919), + [sym_identifier] = ACTIONS(5919), + [anon_sym_delete] = ACTIONS(5919), + [anon_sym_continue] = ACTIONS(5919), + [anon_sym__Atomic] = ACTIONS(5919), + [sym_number_literal] = ACTIONS(5921), + [anon_sym_extern] = ACTIONS(5919), + [anon_sym_enum] = ACTIONS(5919), + [anon_sym_constexpr] = ACTIONS(5919), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5921), + [anon_sym_case] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [anon_sym_DASH_DASH] = ACTIONS(5921), + [anon_sym_LPAREN2] = ACTIONS(5921), + [anon_sym_struct] = ACTIONS(5919), + [sym_auto] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(5919), + [anon_sym_long] = ACTIONS(5919), + [anon_sym_COLON_COLON] = ACTIONS(5921), + [anon_sym_default] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5921), + [anon_sym_static] = ACTIONS(5919), + [anon_sym_RBRACE] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_union] = ACTIONS(5919), + [anon_sym_typename] = ACTIONS(5919), + [anon_sym_short] = ACTIONS(5919), + [anon_sym_new] = ACTIONS(5919), + [anon_sym_goto] = ACTIONS(5919), + [anon_sym_while] = ACTIONS(5919), + [anon_sym_try] = ACTIONS(5919), + [anon_sym_for] = ACTIONS(5919), + [anon_sym_register] = ACTIONS(5919), + [anon_sym_DQUOTE] = ACTIONS(5921), + [anon_sym_const] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_class] = ACTIONS(5919), + [anon_sym_if] = ACTIONS(5919), + [sym_primitive_type] = ACTIONS(5919), + [sym_false] = ACTIONS(5919), + [sym_nullptr] = ACTIONS(5919), + [anon_sym_do] = ACTIONS(5919), + [anon_sym_return] = ACTIONS(5919), + [anon_sym_TILDE] = ACTIONS(5921), + [anon_sym_SEMI] = ACTIONS(5921), + [anon_sym_inline] = ACTIONS(5919), + [anon_sym_PLUS_PLUS] = ACTIONS(5921), + [anon_sym_restrict] = ACTIONS(5919), }, - [4630] = { - [aux_sym_declaration_repeat1] = STATE(2028), + [4601] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10396), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10362), }, - [4631] = { - [anon_sym_LPAREN2] = ACTIONS(8910), - [anon_sym_DASH] = ACTIONS(8908), - [sym_raw_string_literal] = ACTIONS(8910), - [sym_true] = ACTIONS(8908), - [anon_sym_else] = ACTIONS(8908), - [sym_null] = ACTIONS(8908), - [anon_sym_COLON_COLON] = ACTIONS(8910), - [anon_sym_default] = ACTIONS(8908), - [anon_sym_break] = ACTIONS(8908), - [anon_sym_BANG] = ACTIONS(8910), - [anon_sym_AMP] = ACTIONS(8910), - [anon_sym_sizeof] = ACTIONS(8908), - [anon_sym_RBRACE] = ACTIONS(8910), - [anon_sym_PLUS] = ACTIONS(8908), - [anon_sym_STAR] = ACTIONS(8910), - [anon_sym_switch] = ACTIONS(8908), - [sym_identifier] = ACTIONS(8908), - [anon_sym_new] = ACTIONS(8908), - [anon_sym_goto] = ACTIONS(8908), - [anon_sym_while] = ACTIONS(8908), - [anon_sym_continue] = ACTIONS(8908), - [anon_sym_for] = ACTIONS(8908), - [anon_sym_delete] = ACTIONS(8908), - [anon_sym_try] = ACTIONS(8908), - [anon_sym_DQUOTE] = ACTIONS(8910), - [sym_number_literal] = ACTIONS(8910), - [anon_sym_LBRACK] = ACTIONS(8910), - [anon_sym_if] = ACTIONS(8908), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(8908), - [sym_nullptr] = ACTIONS(8908), - [anon_sym_do] = ACTIONS(8908), - [anon_sym_case] = ACTIONS(8908), - [anon_sym_return] = ACTIONS(8908), - [anon_sym_TILDE] = ACTIONS(8910), - [anon_sym_SEMI] = ACTIONS(8910), - [anon_sym_PLUS_PLUS] = ACTIONS(8910), - [anon_sym_SQUOTE] = ACTIONS(8910), - [anon_sym_LBRACE] = ACTIONS(8910), - [anon_sym_DASH_DASH] = ACTIONS(8910), + [4602] = { + [anon_sym_LPAREN2] = ACTIONS(8874), + [anon_sym_DASH] = ACTIONS(8872), + [sym_raw_string_literal] = ACTIONS(8874), + [sym_true] = ACTIONS(8872), + [anon_sym_else] = ACTIONS(8872), + [sym_null] = ACTIONS(8872), + [anon_sym_COLON_COLON] = ACTIONS(8874), + [anon_sym_default] = ACTIONS(8872), + [anon_sym_break] = ACTIONS(8872), + [anon_sym_BANG] = ACTIONS(8874), + [anon_sym_AMP] = ACTIONS(8874), + [anon_sym_sizeof] = ACTIONS(8872), + [anon_sym_RBRACE] = ACTIONS(8874), + [anon_sym_PLUS] = ACTIONS(8872), + [anon_sym_STAR] = ACTIONS(8874), + [anon_sym_switch] = ACTIONS(8872), + [sym_identifier] = ACTIONS(8872), + [anon_sym_new] = ACTIONS(8872), + [anon_sym_goto] = ACTIONS(8872), + [anon_sym_while] = ACTIONS(8872), + [anon_sym_continue] = ACTIONS(8872), + [anon_sym_for] = ACTIONS(8872), + [anon_sym_delete] = ACTIONS(8872), + [anon_sym_try] = ACTIONS(8872), + [anon_sym_DQUOTE] = ACTIONS(8874), + [sym_number_literal] = ACTIONS(8874), + [anon_sym_LBRACK] = ACTIONS(8874), + [anon_sym_if] = ACTIONS(8872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(8872), + [sym_nullptr] = ACTIONS(8872), + [anon_sym_do] = ACTIONS(8872), + [anon_sym_case] = ACTIONS(8872), + [anon_sym_return] = ACTIONS(8872), + [anon_sym_TILDE] = ACTIONS(8874), + [anon_sym_SEMI] = ACTIONS(8874), + [anon_sym_PLUS_PLUS] = ACTIONS(8874), + [anon_sym_SQUOTE] = ACTIONS(8874), + [anon_sym_LBRACE] = ACTIONS(8874), + [anon_sym_DASH_DASH] = ACTIONS(8874), }, - [4632] = { - [sym_do_statement] = STATE(4815), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4603] = { + [sym_do_statement] = STATE(4786), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4815), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4815), - [sym_if_statement] = STATE(4815), - [sym_switch_statement] = STATE(4815), - [sym_for_statement] = STATE(4815), - [sym_return_statement] = STATE(4815), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4786), + [sym_try_statement] = STATE(4786), + [sym_if_statement] = STATE(4786), + [sym_switch_statement] = STATE(4786), + [sym_for_statement] = STATE(4786), + [sym_return_statement] = STATE(4786), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4815), - [sym_break_statement] = STATE(4815), - [sym_continue_statement] = STATE(4815), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4786), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4815), - [sym_labeled_statement] = STATE(4815), - [sym_expression_statement] = STATE(4815), - [sym_while_statement] = STATE(4815), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4786), + [sym_for_range_loop] = STATE(4786), + [sym_compound_statement] = STATE(4786), + [sym_labeled_statement] = STATE(4786), + [sym_expression_statement] = STATE(4786), + [sym_while_statement] = STATE(4786), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4633] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10398), + [4604] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10364), [sym_comment] = ACTIONS(3), }, - [4634] = { - [aux_sym_for_statement_repeat1] = STATE(4817), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10398), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4605] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4788), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10364), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4635] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4818), - [sym_logical_expression] = STATE(4818), - [sym_bitwise_expression] = STATE(4818), - [sym_cast_expression] = STATE(4818), - [sym_new_expression] = STATE(4818), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4818), - [sym_char_literal] = STATE(4818), - [sym_template_function] = STATE(4818), - [sym_conditional_expression] = STATE(4818), - [sym_equality_expression] = STATE(4818), - [sym_relational_expression] = STATE(4818), - [sym_delete_expression] = STATE(4818), - [sym_sizeof_expression] = STATE(4818), - [sym_parenthesized_expression] = STATE(4818), - [sym_lambda_expression] = STATE(4818), - [sym_concatenated_string] = STATE(4818), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4818), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4818), - [sym_math_expression] = STATE(4818), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10400), + [4606] = { + [sym_template_function] = STATE(4789), + [sym__expression] = STATE(4789), + [sym_logical_expression] = STATE(4789), + [sym_bitwise_expression] = STATE(4789), + [sym_cast_expression] = STATE(4789), + [sym_delete_expression] = STATE(4789), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4789), + [sym_lambda_expression] = STATE(4789), + [sym_char_literal] = STATE(4789), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4789), + [sym_equality_expression] = STATE(4789), + [sym_relational_expression] = STATE(4789), + [sym_sizeof_expression] = STATE(4789), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4789), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4789), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4789), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4789), + [sym_math_expression] = STATE(4789), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4789), + [sym_raw_string_literal] = ACTIONS(10366), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10402), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10402), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10368), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10368), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10400), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10366), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10402), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10402), + [sym_false] = ACTIONS(10368), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10368), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10398), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10364), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4636] = { - [sym_do_statement] = STATE(4819), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4607] = { + [sym_do_statement] = STATE(4790), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4819), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4819), - [sym_if_statement] = STATE(4819), - [sym_switch_statement] = STATE(4819), - [sym_for_statement] = STATE(4819), - [sym_return_statement] = STATE(4819), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4790), + [sym_try_statement] = STATE(4790), + [sym_if_statement] = STATE(4790), + [sym_switch_statement] = STATE(4790), + [sym_for_statement] = STATE(4790), + [sym_return_statement] = STATE(4790), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4819), - [sym_break_statement] = STATE(4819), - [sym_continue_statement] = STATE(4819), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4790), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4819), - [sym_labeled_statement] = STATE(4819), - [sym_expression_statement] = STATE(4819), - [sym_while_statement] = STATE(4819), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4790), + [sym_for_range_loop] = STATE(4790), + [sym_compound_statement] = STATE(4790), + [sym_labeled_statement] = STATE(4790), + [sym_expression_statement] = STATE(4790), + [sym_while_statement] = STATE(4790), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4637] = { - [sym_do_statement] = STATE(3098), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4608] = { + [sym_do_statement] = STATE(3076), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(3098), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(3098), - [sym_if_statement] = STATE(3098), - [sym_switch_statement] = STATE(3098), - [sym_for_statement] = STATE(3098), - [sym_return_statement] = STATE(3098), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3076), + [sym_try_statement] = STATE(3076), + [sym_if_statement] = STATE(3076), + [sym_switch_statement] = STATE(3076), + [sym_for_statement] = STATE(3076), + [sym_return_statement] = STATE(3076), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(3098), - [sym_break_statement] = STATE(3098), - [sym_continue_statement] = STATE(3098), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3076), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3098), - [sym_labeled_statement] = STATE(3098), - [sym_expression_statement] = STATE(3098), - [sym_while_statement] = STATE(3098), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(3076), + [sym_for_range_loop] = STATE(3076), + [sym_compound_statement] = STATE(3076), + [sym_labeled_statement] = STATE(3076), + [sym_expression_statement] = STATE(3076), + [sym_while_statement] = STATE(3076), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4638] = { - [sym_do_statement] = STATE(3100), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4609] = { + [sym_do_statement] = STATE(3078), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(3100), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(3100), - [sym_if_statement] = STATE(3100), - [sym_switch_statement] = STATE(3100), - [sym_for_statement] = STATE(3100), - [sym_return_statement] = STATE(3100), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3078), + [sym_try_statement] = STATE(3078), + [sym_if_statement] = STATE(3078), + [sym_switch_statement] = STATE(3078), + [sym_for_statement] = STATE(3078), + [sym_return_statement] = STATE(3078), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(3100), - [sym_break_statement] = STATE(3100), - [sym_continue_statement] = STATE(3100), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3078), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3100), - [sym_labeled_statement] = STATE(3100), - [sym_expression_statement] = STATE(3100), - [sym_while_statement] = STATE(3100), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(3078), + [sym_for_range_loop] = STATE(3078), + [sym_compound_statement] = STATE(3078), + [sym_labeled_statement] = STATE(3078), + [sym_expression_statement] = STATE(3078), + [sym_while_statement] = STATE(3078), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4639] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(4821), - [sym_logical_expression] = STATE(4821), - [sym_bitwise_expression] = STATE(4821), - [sym_cast_expression] = STATE(4821), - [sym_new_expression] = STATE(4821), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4821), - [sym_declaration] = STATE(4820), - [sym_char_literal] = STATE(4821), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(4821), - [sym_conditional_expression] = STATE(4821), - [sym_equality_expression] = STATE(4821), - [sym_relational_expression] = STATE(4821), - [sym_sizeof_expression] = STATE(4821), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(4821), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(4821), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(4821), - [sym_lambda_expression] = STATE(4821), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(4822), - [sym_assignment_expression] = STATE(4821), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4821), - [sym_math_expression] = STATE(4821), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [4610] = { + [sym_template_function] = STATE(4792), + [sym__expression] = STATE(4792), + [sym_logical_expression] = STATE(4792), + [sym_bitwise_expression] = STATE(4792), + [sym_cast_expression] = STATE(4792), + [sym_delete_expression] = STATE(4792), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(4792), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(4792), + [sym_lambda_expression] = STATE(4792), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(4791), + [sym_for_range_declaration] = STATE(4793), + [sym_conditional_expression] = STATE(4792), + [sym_equality_expression] = STATE(4792), + [sym_relational_expression] = STATE(4792), + [sym_sizeof_expression] = STATE(4792), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(4792), + [sym_concatenated_string] = STATE(4792), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(10404), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(4792), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4792), + [sym_math_expression] = STATE(4792), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4792), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(10370), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(10406), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(10372), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(10406), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(10372), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(10404), + [sym_number_literal] = ACTIONS(10370), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(10406), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(10372), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(10406), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(10372), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10408), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10374), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4640] = { - [aux_sym_try_statement_repeat1] = STATE(4823), - [sym_catch_clause] = STATE(4823), - [anon_sym_catch] = ACTIONS(6489), - [sym_comment] = ACTIONS(3), - }, - [4641] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4824), - [sym_logical_expression] = STATE(4824), - [sym_bitwise_expression] = STATE(4824), - [sym_cast_expression] = STATE(4824), - [sym_new_expression] = STATE(4824), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4824), - [sym_char_literal] = STATE(4824), - [sym_template_function] = STATE(4824), - [sym_conditional_expression] = STATE(4824), - [sym_equality_expression] = STATE(4824), - [sym_relational_expression] = STATE(4824), - [sym_delete_expression] = STATE(4824), - [sym_sizeof_expression] = STATE(4824), - [sym_parenthesized_expression] = STATE(4824), - [sym_lambda_expression] = STATE(4824), - [sym_concatenated_string] = STATE(4824), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4824), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4824), - [sym_math_expression] = STATE(4824), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10410), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10412), - [sym_null] = ACTIONS(10412), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10410), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10412), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10412), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), - }, - [4642] = { - [anon_sym_LPAREN2] = ACTIONS(10414), + [4611] = { + [sym_catch_clause] = STATE(4794), + [aux_sym_try_statement_repeat1] = STATE(4794), + [anon_sym_catch] = ACTIONS(6478), [sym_comment] = ACTIONS(3), }, - [4643] = { - [sym_do_statement] = STATE(4826), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), - [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4826), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4826), - [sym_if_statement] = STATE(4826), - [sym_switch_statement] = STATE(4826), - [sym_for_statement] = STATE(4826), - [sym_return_statement] = STATE(4826), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), - [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4826), - [sym_break_statement] = STATE(4826), - [sym_continue_statement] = STATE(4826), - [sym_assignment_expression] = STATE(1067), - [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), - [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), + [4612] = { + [sym_template_function] = STATE(4795), + [sym__expression] = STATE(4795), + [sym_logical_expression] = STATE(4795), + [sym_bitwise_expression] = STATE(4795), + [sym_cast_expression] = STATE(4795), + [sym_delete_expression] = STATE(4795), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4795), + [sym_lambda_expression] = STATE(4795), + [sym_char_literal] = STATE(4795), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4795), + [sym_equality_expression] = STATE(4795), + [sym_relational_expression] = STATE(4795), + [sym_sizeof_expression] = STATE(4795), + [sym_subscript_expression] = STATE(831), [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4826), - [sym_labeled_statement] = STATE(4826), - [sym_expression_statement] = STATE(4826), - [sym_while_statement] = STATE(4826), - [sym_raw_string_literal] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_AMP] = ACTIONS(119), - [anon_sym_sizeof] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), - [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [sym_parenthesized_expression] = STATE(4795), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4795), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4795), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4795), + [sym_math_expression] = STATE(4795), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4795), + [sym_raw_string_literal] = ACTIONS(10376), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10378), + [sym_null] = ACTIONS(10378), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(45), - }, - [4644] = { - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [sym_true] = ACTIONS(9003), - [anon_sym_else] = ACTIONS(10416), - [sym_null] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_default] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_AMP] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_RBRACE] = ACTIONS(9005), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_switch] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_LBRACK] = ACTIONS(9005), - [anon_sym_if] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_case] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - }, - [4645] = { - [anon_sym_LPAREN2] = ACTIONS(8503), - [anon_sym_DASH] = ACTIONS(8505), - [anon_sym_STAR_EQ] = ACTIONS(8503), - [anon_sym_LT_LT_EQ] = ACTIONS(8503), - [anon_sym_PERCENT_EQ] = ACTIONS(8503), - [anon_sym_GT2] = ACTIONS(8503), - [anon_sym_EQ_EQ] = ACTIONS(8503), - [anon_sym_PIPE] = ACTIONS(8505), - [anon_sym_LT] = ACTIONS(8505), - [anon_sym_CARET_EQ] = ACTIONS(8503), - [anon_sym_AMP] = ACTIONS(8505), - [anon_sym_PLUS] = ACTIONS(8505), - [anon_sym_GT_EQ] = ACTIONS(8505), - [anon_sym_STAR] = ACTIONS(8505), - [anon_sym_SLASH] = ACTIONS(8505), - [anon_sym_SLASH_EQ] = ACTIONS(8503), - [anon_sym_PLUS_EQ] = ACTIONS(8503), - [anon_sym_CARET] = ACTIONS(8505), - [anon_sym_GT] = ACTIONS(8505), - [anon_sym_PIPE_EQ] = ACTIONS(8503), - [anon_sym_GT_GT_EQ] = ACTIONS(8505), - [anon_sym_COMMA] = ACTIONS(8503), - [anon_sym_PIPE_PIPE] = ACTIONS(8503), - [anon_sym_DOT] = ACTIONS(8503), - [anon_sym_LT_LT] = ACTIONS(8505), - [anon_sym_LBRACK] = ACTIONS(8503), - [anon_sym_PERCENT] = ACTIONS(8505), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8503), - [anon_sym_DASH_EQ] = ACTIONS(8503), - [anon_sym_LT_EQ] = ACTIONS(8503), - [anon_sym_BANG_EQ] = ACTIONS(8503), - [anon_sym_AMP_EQ] = ACTIONS(8503), - [anon_sym_AMP_AMP] = ACTIONS(8503), - [anon_sym_DASH_GT] = ACTIONS(8503), - [anon_sym_EQ] = ACTIONS(8505), - [anon_sym_PLUS_PLUS] = ACTIONS(8503), - [anon_sym_GT_GT] = ACTIONS(8505), - [anon_sym_DASH_DASH] = ACTIONS(8503), - }, - [4646] = { - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_STAR_EQ] = ACTIONS(7297), - [anon_sym_LT_LT_EQ] = ACTIONS(7297), - [anon_sym_PERCENT_EQ] = ACTIONS(7297), - [anon_sym_GT2] = ACTIONS(7297), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_CARET_EQ] = ACTIONS(7297), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7299), - [anon_sym_STAR] = ACTIONS(7299), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_SLASH_EQ] = ACTIONS(7297), - [anon_sym_PLUS_EQ] = ACTIONS(7297), - [anon_sym_CARET] = ACTIONS(7299), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_PIPE_EQ] = ACTIONS(7297), - [anon_sym_GT_GT_EQ] = ACTIONS(7299), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7297), - [anon_sym_LT_LT] = ACTIONS(7299), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_PERCENT] = ACTIONS(7299), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_DASH_EQ] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_AMP_EQ] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_GT_GT] = ACTIONS(7299), - }, - [4647] = { - [anon_sym_LPAREN2] = ACTIONS(7465), - [anon_sym_DASH] = ACTIONS(7467), - [anon_sym_DASH_DASH] = ACTIONS(7465), - [anon_sym_STAR_EQ] = ACTIONS(7465), - [anon_sym_LT_LT_EQ] = ACTIONS(7465), - [anon_sym_PERCENT_EQ] = ACTIONS(7465), - [anon_sym_GT2] = ACTIONS(7465), - [anon_sym_EQ_EQ] = ACTIONS(7465), - [anon_sym_PIPE] = ACTIONS(7467), - [anon_sym_LT] = ACTIONS(7467), - [anon_sym_CARET_EQ] = ACTIONS(7465), - [anon_sym_AMP] = ACTIONS(7467), - [anon_sym_PLUS] = ACTIONS(7467), - [anon_sym_GT_EQ] = ACTIONS(7467), - [anon_sym_STAR] = ACTIONS(7467), - [anon_sym_SLASH] = ACTIONS(7467), - [anon_sym_SLASH_EQ] = ACTIONS(7465), - [anon_sym_PLUS_EQ] = ACTIONS(7465), - [anon_sym_CARET] = ACTIONS(7467), - [anon_sym_GT] = ACTIONS(7467), - [anon_sym_PIPE_EQ] = ACTIONS(7465), - [anon_sym_GT_GT_EQ] = ACTIONS(7467), - [anon_sym_COMMA] = ACTIONS(7465), - [anon_sym_PIPE_PIPE] = ACTIONS(7465), - [anon_sym_DOT] = ACTIONS(7465), - [anon_sym_LT_LT] = ACTIONS(7467), - [anon_sym_LBRACK] = ACTIONS(7465), - [anon_sym_PERCENT] = ACTIONS(7467), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7465), - [anon_sym_DASH_EQ] = ACTIONS(7465), - [anon_sym_LT_EQ] = ACTIONS(7465), - [anon_sym_BANG_EQ] = ACTIONS(7465), - [anon_sym_AMP_EQ] = ACTIONS(7465), - [anon_sym_AMP_AMP] = ACTIONS(7465), - [anon_sym_DASH_GT] = ACTIONS(7465), - [anon_sym_EQ] = ACTIONS(7467), - [anon_sym_PLUS_PLUS] = ACTIONS(7465), - [anon_sym_LBRACE] = ACTIONS(7465), - [anon_sym_GT_GT] = ACTIONS(7467), - }, - [4648] = { - [anon_sym_LPAREN2] = ACTIONS(7530), - [anon_sym_DASH] = ACTIONS(7532), - [anon_sym_DASH_DASH] = ACTIONS(7530), - [anon_sym_STAR_EQ] = ACTIONS(7530), - [anon_sym_LT_LT_EQ] = ACTIONS(7530), - [anon_sym_PERCENT_EQ] = ACTIONS(7530), - [anon_sym_GT2] = ACTIONS(7530), - [anon_sym_EQ_EQ] = ACTIONS(7530), - [anon_sym_PIPE] = ACTIONS(7532), - [anon_sym_LT] = ACTIONS(7532), - [anon_sym_CARET_EQ] = ACTIONS(7530), - [anon_sym_AMP] = ACTIONS(7532), - [anon_sym_PLUS] = ACTIONS(7532), - [anon_sym_GT_EQ] = ACTIONS(7532), - [anon_sym_STAR] = ACTIONS(7532), - [anon_sym_SLASH] = ACTIONS(7532), - [anon_sym_SLASH_EQ] = ACTIONS(7530), - [anon_sym_PLUS_EQ] = ACTIONS(7530), - [anon_sym_CARET] = ACTIONS(7532), - [anon_sym_GT] = ACTIONS(7532), - [anon_sym_PIPE_EQ] = ACTIONS(7530), - [anon_sym_GT_GT_EQ] = ACTIONS(7532), - [anon_sym_COMMA] = ACTIONS(7530), - [anon_sym_PIPE_PIPE] = ACTIONS(7530), - [anon_sym_DOT] = ACTIONS(7530), - [anon_sym_LT_LT] = ACTIONS(7532), - [anon_sym_LBRACK] = ACTIONS(7530), - [anon_sym_PERCENT] = ACTIONS(7532), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7530), - [anon_sym_DASH_EQ] = ACTIONS(7530), - [anon_sym_LT_EQ] = ACTIONS(7530), - [anon_sym_BANG_EQ] = ACTIONS(7530), - [anon_sym_AMP_EQ] = ACTIONS(7530), - [anon_sym_AMP_AMP] = ACTIONS(7530), - [anon_sym_DASH_GT] = ACTIONS(7530), - [anon_sym_EQ] = ACTIONS(7532), - [anon_sym_PLUS_PLUS] = ACTIONS(7530), - [anon_sym_LBRACE] = ACTIONS(7530), - [anon_sym_GT_GT] = ACTIONS(7532), + [sym_number_literal] = ACTIONS(10376), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10378), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10378), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4649] = { - [anon_sym_LPAREN2] = ACTIONS(7534), - [anon_sym_DASH] = ACTIONS(7536), - [anon_sym_DASH_DASH] = ACTIONS(7534), - [anon_sym_STAR_EQ] = ACTIONS(7534), - [anon_sym_LT_LT_EQ] = ACTIONS(7534), - [anon_sym_PERCENT_EQ] = ACTIONS(7534), - [anon_sym_GT2] = ACTIONS(7534), - [anon_sym_EQ_EQ] = ACTIONS(7534), - [anon_sym_PIPE] = ACTIONS(7536), - [anon_sym_LT] = ACTIONS(7536), - [anon_sym_CARET_EQ] = ACTIONS(7534), - [anon_sym_AMP] = ACTIONS(7536), - [anon_sym_PLUS] = ACTIONS(7536), - [anon_sym_GT_EQ] = ACTIONS(7536), - [anon_sym_STAR] = ACTIONS(7536), - [anon_sym_SLASH] = ACTIONS(7536), - [anon_sym_SLASH_EQ] = ACTIONS(7534), - [anon_sym_PLUS_EQ] = ACTIONS(7534), - [anon_sym_CARET] = ACTIONS(7536), - [anon_sym_GT] = ACTIONS(7536), - [anon_sym_PIPE_EQ] = ACTIONS(7534), - [anon_sym_GT_GT_EQ] = ACTIONS(7536), - [anon_sym_COMMA] = ACTIONS(7534), - [anon_sym_PIPE_PIPE] = ACTIONS(7534), - [anon_sym_DOT] = ACTIONS(7534), - [anon_sym_LT_LT] = ACTIONS(7536), - [anon_sym_LBRACK] = ACTIONS(7534), - [anon_sym_PERCENT] = ACTIONS(7536), + [4613] = { + [anon_sym_LPAREN2] = ACTIONS(10380), [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7534), - [anon_sym_DASH_EQ] = ACTIONS(7534), - [anon_sym_LT_EQ] = ACTIONS(7534), - [anon_sym_BANG_EQ] = ACTIONS(7534), - [anon_sym_AMP_EQ] = ACTIONS(7534), - [anon_sym_AMP_AMP] = ACTIONS(7534), - [anon_sym_DASH_GT] = ACTIONS(7534), - [anon_sym_EQ] = ACTIONS(7536), - [anon_sym_PLUS_PLUS] = ACTIONS(7534), - [anon_sym_LBRACE] = ACTIONS(7534), - [anon_sym_GT_GT] = ACTIONS(7536), }, - [4650] = { - [anon_sym_LPAREN2] = ACTIONS(7154), - [anon_sym_DASH] = ACTIONS(7156), - [anon_sym_DASH_DASH] = ACTIONS(7154), - [anon_sym_STAR_EQ] = ACTIONS(7154), - [anon_sym_LT_LT_EQ] = ACTIONS(7154), - [anon_sym_PERCENT_EQ] = ACTIONS(7154), - [anon_sym_GT2] = ACTIONS(7154), - [anon_sym_EQ_EQ] = ACTIONS(7154), - [anon_sym_PIPE] = ACTIONS(7156), - [anon_sym_LT] = ACTIONS(7156), - [anon_sym_CARET_EQ] = ACTIONS(7154), - [anon_sym_AMP] = ACTIONS(7156), - [anon_sym_PLUS] = ACTIONS(7156), - [anon_sym_GT_EQ] = ACTIONS(7156), - [anon_sym_STAR] = ACTIONS(7156), - [anon_sym_SLASH] = ACTIONS(7156), - [anon_sym_SLASH_EQ] = ACTIONS(7154), - [anon_sym_PLUS_EQ] = ACTIONS(7154), - [anon_sym_CARET] = ACTIONS(7156), - [anon_sym_GT] = ACTIONS(7156), - [anon_sym_PIPE_EQ] = ACTIONS(7154), - [anon_sym_GT_GT_EQ] = ACTIONS(7156), - [anon_sym_COMMA] = ACTIONS(7154), - [anon_sym_PIPE_PIPE] = ACTIONS(7154), - [anon_sym_DOT] = ACTIONS(7154), - [anon_sym_LT_LT] = ACTIONS(7156), - [anon_sym_LBRACK] = ACTIONS(7154), - [anon_sym_PERCENT] = ACTIONS(7156), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7154), - [anon_sym_DASH_EQ] = ACTIONS(7154), - [anon_sym_LT_EQ] = ACTIONS(7154), - [anon_sym_BANG_EQ] = ACTIONS(7154), - [anon_sym_AMP_EQ] = ACTIONS(7154), - [anon_sym_AMP_AMP] = ACTIONS(7154), - [anon_sym_DASH_GT] = ACTIONS(7154), - [anon_sym_EQ] = ACTIONS(7156), - [anon_sym_PLUS_PLUS] = ACTIONS(7154), - [anon_sym_LBRACE] = ACTIONS(7154), - [anon_sym_GT_GT] = ACTIONS(7156), + [4614] = { + [sym_do_statement] = STATE(4797), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), + [sym_field_expression] = STATE(47), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4797), + [sym_try_statement] = STATE(4797), + [sym_if_statement] = STATE(4797), + [sym_switch_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_return_statement] = STATE(4797), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), + [sym_subscript_expression] = STATE(47), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4797), + [sym_assignment_expression] = STATE(1063), + [sym_pointer_expression] = STATE(47), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), + [sym_call_expression] = STATE(47), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4797), + [sym_for_range_loop] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_labeled_statement] = STATE(4797), + [sym_expression_statement] = STATE(4797), + [sym_while_statement] = STATE(4797), + [sym_raw_string_literal] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(111), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(119), + [anon_sym_sizeof] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(71), + [anon_sym_goto] = ACTIONS(2136), + [anon_sym_delete] = ACTIONS(25), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_if] = ACTIONS(2146), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4651] = { - [sym_enumerator] = STATE(2379), + [4615] = { + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [sym_true] = ACTIONS(8967), + [anon_sym_else] = ACTIONS(10382), + [sym_null] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_default] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_AMP] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_RBRACE] = ACTIONS(8969), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_switch] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_LBRACK] = ACTIONS(8969), + [anon_sym_if] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_case] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + }, + [4616] = { + [anon_sym_LPAREN2] = ACTIONS(8475), + [anon_sym_DASH] = ACTIONS(8477), + [anon_sym_STAR_EQ] = ACTIONS(8475), + [anon_sym_LT_LT_EQ] = ACTIONS(8475), + [anon_sym_PERCENT_EQ] = ACTIONS(8475), + [anon_sym_GT2] = ACTIONS(8475), + [anon_sym_EQ_EQ] = ACTIONS(8475), + [anon_sym_PIPE] = ACTIONS(8477), + [anon_sym_LT] = ACTIONS(8477), + [anon_sym_CARET_EQ] = ACTIONS(8475), + [anon_sym_AMP] = ACTIONS(8477), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_GT_EQ] = ACTIONS(8477), + [anon_sym_STAR] = ACTIONS(8477), + [anon_sym_SLASH] = ACTIONS(8477), + [anon_sym_SLASH_EQ] = ACTIONS(8475), + [anon_sym_PLUS_EQ] = ACTIONS(8475), + [anon_sym_CARET] = ACTIONS(8477), + [anon_sym_GT] = ACTIONS(8477), + [anon_sym_PIPE_EQ] = ACTIONS(8475), + [anon_sym_GT_GT_EQ] = ACTIONS(8477), + [anon_sym_COMMA] = ACTIONS(8475), + [anon_sym_PIPE_PIPE] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_LT_LT] = ACTIONS(8477), + [anon_sym_LBRACK] = ACTIONS(8475), + [anon_sym_PERCENT] = ACTIONS(8477), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8475), + [anon_sym_DASH_EQ] = ACTIONS(8475), + [anon_sym_LT_EQ] = ACTIONS(8475), + [anon_sym_BANG_EQ] = ACTIONS(8475), + [anon_sym_AMP_EQ] = ACTIONS(8475), + [anon_sym_AMP_AMP] = ACTIONS(8475), + [anon_sym_DASH_GT] = ACTIONS(8475), + [anon_sym_EQ] = ACTIONS(8477), + [anon_sym_PLUS_PLUS] = ACTIONS(8475), + [anon_sym_GT_GT] = ACTIONS(8477), + [anon_sym_DASH_DASH] = ACTIONS(8475), + }, + [4617] = { + [anon_sym_LPAREN2] = ACTIONS(7278), + [anon_sym_DASH] = ACTIONS(7280), + [anon_sym_DASH_DASH] = ACTIONS(7278), + [anon_sym_STAR_EQ] = ACTIONS(7278), + [anon_sym_LT_LT_EQ] = ACTIONS(7278), + [anon_sym_PERCENT_EQ] = ACTIONS(7278), + [anon_sym_GT2] = ACTIONS(7278), + [anon_sym_EQ_EQ] = ACTIONS(7278), + [anon_sym_PIPE] = ACTIONS(7280), + [anon_sym_LT] = ACTIONS(7280), + [anon_sym_CARET_EQ] = ACTIONS(7278), + [anon_sym_AMP] = ACTIONS(7280), + [anon_sym_PLUS] = ACTIONS(7280), + [anon_sym_GT_EQ] = ACTIONS(7280), + [anon_sym_STAR] = ACTIONS(7280), + [anon_sym_SLASH] = ACTIONS(7280), + [anon_sym_SLASH_EQ] = ACTIONS(7278), + [anon_sym_PLUS_EQ] = ACTIONS(7278), + [anon_sym_CARET] = ACTIONS(7280), + [anon_sym_GT] = ACTIONS(7280), + [anon_sym_PIPE_EQ] = ACTIONS(7278), + [anon_sym_GT_GT_EQ] = ACTIONS(7280), + [anon_sym_COMMA] = ACTIONS(7278), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_DOT] = ACTIONS(7278), + [anon_sym_LT_LT] = ACTIONS(7280), + [anon_sym_LBRACK] = ACTIONS(7278), + [anon_sym_PERCENT] = ACTIONS(7280), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7278), + [anon_sym_DASH_EQ] = ACTIONS(7278), + [anon_sym_LT_EQ] = ACTIONS(7278), + [anon_sym_BANG_EQ] = ACTIONS(7278), + [anon_sym_AMP_EQ] = ACTIONS(7278), + [anon_sym_AMP_AMP] = ACTIONS(7278), + [anon_sym_DASH_GT] = ACTIONS(7278), + [anon_sym_EQ] = ACTIONS(7280), + [anon_sym_PLUS_PLUS] = ACTIONS(7278), + [anon_sym_LBRACE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7280), + }, + [4618] = { + [anon_sym_LPAREN2] = ACTIONS(7446), + [anon_sym_DASH] = ACTIONS(7448), + [anon_sym_DASH_DASH] = ACTIONS(7446), + [anon_sym_STAR_EQ] = ACTIONS(7446), + [anon_sym_LT_LT_EQ] = ACTIONS(7446), + [anon_sym_PERCENT_EQ] = ACTIONS(7446), + [anon_sym_GT2] = ACTIONS(7446), + [anon_sym_EQ_EQ] = ACTIONS(7446), + [anon_sym_PIPE] = ACTIONS(7448), + [anon_sym_LT] = ACTIONS(7448), + [anon_sym_CARET_EQ] = ACTIONS(7446), + [anon_sym_AMP] = ACTIONS(7448), + [anon_sym_PLUS] = ACTIONS(7448), + [anon_sym_GT_EQ] = ACTIONS(7448), + [anon_sym_STAR] = ACTIONS(7448), + [anon_sym_SLASH] = ACTIONS(7448), + [anon_sym_SLASH_EQ] = ACTIONS(7446), + [anon_sym_PLUS_EQ] = ACTIONS(7446), + [anon_sym_CARET] = ACTIONS(7448), + [anon_sym_GT] = ACTIONS(7448), + [anon_sym_PIPE_EQ] = ACTIONS(7446), + [anon_sym_GT_GT_EQ] = ACTIONS(7448), + [anon_sym_COMMA] = ACTIONS(7446), + [anon_sym_PIPE_PIPE] = ACTIONS(7446), + [anon_sym_DOT] = ACTIONS(7446), + [anon_sym_LT_LT] = ACTIONS(7448), + [anon_sym_LBRACK] = ACTIONS(7446), + [anon_sym_PERCENT] = ACTIONS(7448), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7446), + [anon_sym_DASH_EQ] = ACTIONS(7446), + [anon_sym_LT_EQ] = ACTIONS(7446), + [anon_sym_BANG_EQ] = ACTIONS(7446), + [anon_sym_AMP_EQ] = ACTIONS(7446), + [anon_sym_AMP_AMP] = ACTIONS(7446), + [anon_sym_DASH_GT] = ACTIONS(7446), + [anon_sym_EQ] = ACTIONS(7448), + [anon_sym_PLUS_PLUS] = ACTIONS(7446), + [anon_sym_LBRACE] = ACTIONS(7446), + [anon_sym_GT_GT] = ACTIONS(7448), + }, + [4619] = { + [anon_sym_LPAREN2] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_DASH_DASH] = ACTIONS(7511), + [anon_sym_STAR_EQ] = ACTIONS(7511), + [anon_sym_LT_LT_EQ] = ACTIONS(7511), + [anon_sym_PERCENT_EQ] = ACTIONS(7511), + [anon_sym_GT2] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7511), + [anon_sym_PIPE] = ACTIONS(7513), + [anon_sym_LT] = ACTIONS(7513), + [anon_sym_CARET_EQ] = ACTIONS(7511), + [anon_sym_AMP] = ACTIONS(7513), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_GT_EQ] = ACTIONS(7513), + [anon_sym_STAR] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_SLASH_EQ] = ACTIONS(7511), + [anon_sym_PLUS_EQ] = ACTIONS(7511), + [anon_sym_CARET] = ACTIONS(7513), + [anon_sym_GT] = ACTIONS(7513), + [anon_sym_PIPE_EQ] = ACTIONS(7511), + [anon_sym_GT_GT_EQ] = ACTIONS(7513), + [anon_sym_COMMA] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7511), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7511), + [anon_sym_PERCENT] = ACTIONS(7513), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7511), + [anon_sym_DASH_EQ] = ACTIONS(7511), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_BANG_EQ] = ACTIONS(7511), + [anon_sym_AMP_EQ] = ACTIONS(7511), + [anon_sym_AMP_AMP] = ACTIONS(7511), + [anon_sym_DASH_GT] = ACTIONS(7511), + [anon_sym_EQ] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7511), + [anon_sym_LBRACE] = ACTIONS(7511), + [anon_sym_GT_GT] = ACTIONS(7513), + }, + [4620] = { + [anon_sym_LPAREN2] = ACTIONS(7515), + [anon_sym_DASH] = ACTIONS(7517), + [anon_sym_DASH_DASH] = ACTIONS(7515), + [anon_sym_STAR_EQ] = ACTIONS(7515), + [anon_sym_LT_LT_EQ] = ACTIONS(7515), + [anon_sym_PERCENT_EQ] = ACTIONS(7515), + [anon_sym_GT2] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7515), + [anon_sym_PIPE] = ACTIONS(7517), + [anon_sym_LT] = ACTIONS(7517), + [anon_sym_CARET_EQ] = ACTIONS(7515), + [anon_sym_AMP] = ACTIONS(7517), + [anon_sym_PLUS] = ACTIONS(7517), + [anon_sym_GT_EQ] = ACTIONS(7517), + [anon_sym_STAR] = ACTIONS(7517), + [anon_sym_SLASH] = ACTIONS(7517), + [anon_sym_SLASH_EQ] = ACTIONS(7515), + [anon_sym_PLUS_EQ] = ACTIONS(7515), + [anon_sym_CARET] = ACTIONS(7517), + [anon_sym_GT] = ACTIONS(7517), + [anon_sym_PIPE_EQ] = ACTIONS(7515), + [anon_sym_GT_GT_EQ] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7515), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7517), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7515), + [anon_sym_DASH_EQ] = ACTIONS(7515), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_BANG_EQ] = ACTIONS(7515), + [anon_sym_AMP_EQ] = ACTIONS(7515), + [anon_sym_AMP_AMP] = ACTIONS(7515), + [anon_sym_DASH_GT] = ACTIONS(7515), + [anon_sym_EQ] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7515), + [anon_sym_LBRACE] = ACTIONS(7515), + [anon_sym_GT_GT] = ACTIONS(7517), + }, + [4621] = { + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7137), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_GT2] = ACTIONS(7135), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7137), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_AMP] = ACTIONS(7137), + [anon_sym_PLUS] = ACTIONS(7137), + [anon_sym_GT_EQ] = ACTIONS(7137), + [anon_sym_STAR] = ACTIONS(7137), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_CARET] = ACTIONS(7137), + [anon_sym_GT] = ACTIONS(7137), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7137), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7135), + [anon_sym_LT_LT] = ACTIONS(7137), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_PERCENT] = ACTIONS(7137), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7137), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_GT_GT] = ACTIONS(7137), + }, + [4622] = { + [sym_enumerator] = STATE(2364), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(10418), + [sym_identifier] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(10384), }, - [4652] = { - [anon_sym_LPAREN2] = ACTIONS(7659), - [anon_sym_DASH] = ACTIONS(7661), - [anon_sym_DASH_DASH] = ACTIONS(7659), - [anon_sym_STAR_EQ] = ACTIONS(7659), - [anon_sym_LT_LT_EQ] = ACTIONS(7659), - [anon_sym_PERCENT_EQ] = ACTIONS(7659), - [anon_sym_GT2] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7659), - [anon_sym_PIPE] = ACTIONS(7661), - [anon_sym_LT] = ACTIONS(7661), - [anon_sym_CARET_EQ] = ACTIONS(7659), - [anon_sym_AMP] = ACTIONS(7661), - [anon_sym_PLUS] = ACTIONS(7661), - [anon_sym_GT_EQ] = ACTIONS(7661), - [anon_sym_STAR] = ACTIONS(7661), - [anon_sym_SLASH] = ACTIONS(7661), - [anon_sym_SLASH_EQ] = ACTIONS(7659), - [anon_sym_PLUS_EQ] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7661), - [anon_sym_GT] = ACTIONS(7661), - [anon_sym_PIPE_EQ] = ACTIONS(7659), - [anon_sym_GT_GT_EQ] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7659), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7661), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7659), - [anon_sym_DASH_EQ] = ACTIONS(7659), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_BANG_EQ] = ACTIONS(7659), - [anon_sym_AMP_EQ] = ACTIONS(7659), - [anon_sym_AMP_AMP] = ACTIONS(7659), - [anon_sym_DASH_GT] = ACTIONS(7659), - [anon_sym_EQ] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7659), - [anon_sym_LBRACE] = ACTIONS(7659), - [anon_sym_GT_GT] = ACTIONS(7661), + [4623] = { + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_STAR_EQ] = ACTIONS(7640), + [anon_sym_LT_LT_EQ] = ACTIONS(7640), + [anon_sym_PERCENT_EQ] = ACTIONS(7640), + [anon_sym_GT2] = ACTIONS(7640), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_CARET_EQ] = ACTIONS(7640), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_SLASH_EQ] = ACTIONS(7640), + [anon_sym_PLUS_EQ] = ACTIONS(7640), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_PIPE_EQ] = ACTIONS(7640), + [anon_sym_GT_GT_EQ] = ACTIONS(7642), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_LT_LT] = ACTIONS(7642), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_PERCENT] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_DASH_EQ] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_AMP_EQ] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_GT_GT] = ACTIONS(7642), }, - [4653] = { - [anon_sym_LPAREN2] = ACTIONS(7663), - [anon_sym_DASH] = ACTIONS(7665), - [anon_sym_DASH_DASH] = ACTIONS(7663), - [anon_sym_STAR_EQ] = ACTIONS(7663), - [anon_sym_LT_LT_EQ] = ACTIONS(7663), - [anon_sym_PERCENT_EQ] = ACTIONS(7663), - [anon_sym_GT2] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7663), - [anon_sym_PIPE] = ACTIONS(7665), - [anon_sym_LT] = ACTIONS(7665), - [anon_sym_CARET_EQ] = ACTIONS(7663), - [anon_sym_AMP] = ACTIONS(7665), - [anon_sym_PLUS] = ACTIONS(7665), - [anon_sym_GT_EQ] = ACTIONS(7665), - [anon_sym_STAR] = ACTIONS(7665), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_SLASH_EQ] = ACTIONS(7663), - [anon_sym_PLUS_EQ] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7665), - [anon_sym_PIPE_EQ] = ACTIONS(7663), - [anon_sym_GT_GT_EQ] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7663), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7665), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7663), - [anon_sym_DASH_EQ] = ACTIONS(7663), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_BANG_EQ] = ACTIONS(7663), - [anon_sym_AMP_EQ] = ACTIONS(7663), - [anon_sym_AMP_AMP] = ACTIONS(7663), - [anon_sym_DASH_GT] = ACTIONS(7663), - [anon_sym_EQ] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7663), - [anon_sym_LBRACE] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7665), + [4624] = { + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_STAR_EQ] = ACTIONS(7644), + [anon_sym_LT_LT_EQ] = ACTIONS(7644), + [anon_sym_PERCENT_EQ] = ACTIONS(7644), + [anon_sym_GT2] = ACTIONS(7644), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_CARET_EQ] = ACTIONS(7644), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7646), + [anon_sym_STAR] = ACTIONS(7646), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_SLASH_EQ] = ACTIONS(7644), + [anon_sym_PLUS_EQ] = ACTIONS(7644), + [anon_sym_CARET] = ACTIONS(7646), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_PIPE_EQ] = ACTIONS(7644), + [anon_sym_GT_GT_EQ] = ACTIONS(7646), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7644), + [anon_sym_LT_LT] = ACTIONS(7646), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_PERCENT] = ACTIONS(7646), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_DASH_EQ] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_AMP_EQ] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_GT_GT] = ACTIONS(7646), }, - [4654] = { - [anon_sym_LPAREN2] = ACTIONS(8904), - [anon_sym_DASH] = ACTIONS(8906), - [anon_sym_DASH_DASH] = ACTIONS(8904), - [anon_sym_STAR_EQ] = ACTIONS(8904), - [anon_sym_LT_LT_EQ] = ACTIONS(8904), - [anon_sym_PERCENT_EQ] = ACTIONS(8904), - [anon_sym_GT2] = ACTIONS(8904), - [anon_sym_EQ_EQ] = ACTIONS(8904), - [anon_sym_PIPE] = ACTIONS(8906), - [anon_sym_LT] = ACTIONS(8906), - [anon_sym_CARET_EQ] = ACTIONS(8904), - [anon_sym_AMP] = ACTIONS(8906), - [anon_sym_PLUS] = ACTIONS(8906), - [anon_sym_GT_EQ] = ACTIONS(8906), - [anon_sym_STAR] = ACTIONS(8906), - [anon_sym_SLASH] = ACTIONS(8906), - [anon_sym_SLASH_EQ] = ACTIONS(8904), - [anon_sym_PLUS_EQ] = ACTIONS(8904), - [anon_sym_CARET] = ACTIONS(8906), - [anon_sym_GT] = ACTIONS(8906), - [anon_sym_PIPE_EQ] = ACTIONS(8904), - [anon_sym_GT_GT_EQ] = ACTIONS(8906), - [anon_sym_COMMA] = ACTIONS(8904), - [anon_sym_PIPE_PIPE] = ACTIONS(8904), - [anon_sym_DOT] = ACTIONS(8904), - [anon_sym_LT_LT] = ACTIONS(8906), - [anon_sym_LBRACK] = ACTIONS(8904), - [anon_sym_PERCENT] = ACTIONS(8906), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8904), - [anon_sym_DASH_EQ] = ACTIONS(8904), - [anon_sym_LT_EQ] = ACTIONS(8904), - [anon_sym_BANG_EQ] = ACTIONS(8904), - [anon_sym_AMP_EQ] = ACTIONS(8904), - [anon_sym_AMP_AMP] = ACTIONS(8904), - [anon_sym_DASH_GT] = ACTIONS(8904), - [anon_sym_EQ] = ACTIONS(8906), - [anon_sym_PLUS_PLUS] = ACTIONS(8904), - [anon_sym_LBRACE] = ACTIONS(8904), - [anon_sym_GT_GT] = ACTIONS(8906), + [4625] = { + [anon_sym_LPAREN2] = ACTIONS(8868), + [anon_sym_DASH] = ACTIONS(8870), + [anon_sym_DASH_DASH] = ACTIONS(8868), + [anon_sym_STAR_EQ] = ACTIONS(8868), + [anon_sym_LT_LT_EQ] = ACTIONS(8868), + [anon_sym_PERCENT_EQ] = ACTIONS(8868), + [anon_sym_GT2] = ACTIONS(8868), + [anon_sym_EQ_EQ] = ACTIONS(8868), + [anon_sym_PIPE] = ACTIONS(8870), + [anon_sym_LT] = ACTIONS(8870), + [anon_sym_CARET_EQ] = ACTIONS(8868), + [anon_sym_AMP] = ACTIONS(8870), + [anon_sym_PLUS] = ACTIONS(8870), + [anon_sym_GT_EQ] = ACTIONS(8870), + [anon_sym_STAR] = ACTIONS(8870), + [anon_sym_SLASH] = ACTIONS(8870), + [anon_sym_SLASH_EQ] = ACTIONS(8868), + [anon_sym_PLUS_EQ] = ACTIONS(8868), + [anon_sym_CARET] = ACTIONS(8870), + [anon_sym_GT] = ACTIONS(8870), + [anon_sym_PIPE_EQ] = ACTIONS(8868), + [anon_sym_GT_GT_EQ] = ACTIONS(8870), + [anon_sym_COMMA] = ACTIONS(8868), + [anon_sym_PIPE_PIPE] = ACTIONS(8868), + [anon_sym_DOT] = ACTIONS(8868), + [anon_sym_LT_LT] = ACTIONS(8870), + [anon_sym_LBRACK] = ACTIONS(8868), + [anon_sym_PERCENT] = ACTIONS(8870), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8868), + [anon_sym_DASH_EQ] = ACTIONS(8868), + [anon_sym_LT_EQ] = ACTIONS(8868), + [anon_sym_BANG_EQ] = ACTIONS(8868), + [anon_sym_AMP_EQ] = ACTIONS(8868), + [anon_sym_AMP_AMP] = ACTIONS(8868), + [anon_sym_DASH_GT] = ACTIONS(8868), + [anon_sym_EQ] = ACTIONS(8870), + [anon_sym_PLUS_PLUS] = ACTIONS(8868), + [anon_sym_LBRACE] = ACTIONS(8868), + [anon_sym_GT_GT] = ACTIONS(8870), }, - [4655] = { - [anon_sym_DASH] = ACTIONS(8329), - [sym_raw_string_literal] = ACTIONS(8331), - [sym_true] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [sym_null] = ACTIONS(8329), - [anon_sym_break] = ACTIONS(8329), - [aux_sym_preproc_if_token2] = ACTIONS(8329), - [anon_sym_BANG] = ACTIONS(8331), - [anon_sym_sizeof] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_PLUS] = ACTIONS(8329), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_switch] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [sym_identifier] = ACTIONS(8329), - [anon_sym_delete] = ACTIONS(8329), - [anon_sym_continue] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [sym_number_literal] = ACTIONS(8331), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [anon_sym_namespace] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), - [anon_sym_SQUOTE] = ACTIONS(8331), - [anon_sym_LBRACE] = ACTIONS(8331), - [anon_sym_DASH_DASH] = ACTIONS(8331), - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_struct] = ACTIONS(8329), - [sym_auto] = ACTIONS(8329), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_using] = ACTIONS(8329), - [sym_preproc_directive] = ACTIONS(8329), - [aux_sym_preproc_if_token1] = ACTIONS(8329), - [anon_sym_AMP] = ACTIONS(8329), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [anon_sym_new] = ACTIONS(8329), - [anon_sym_goto] = ACTIONS(8329), - [sym_operator_name] = ACTIONS(8331), - [anon_sym_while] = ACTIONS(8329), - [anon_sym_try] = ACTIONS(8329), - [anon_sym_for] = ACTIONS(8329), - [aux_sym_preproc_include_token1] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym_DQUOTE] = ACTIONS(8331), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_LBRACK] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_if] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [sym_false] = ACTIONS(8329), - [sym_nullptr] = ACTIONS(8329), - [anon_sym_do] = ACTIONS(8329), - [anon_sym_template] = ACTIONS(8329), - [anon_sym_return] = ACTIONS(8329), - [anon_sym_TILDE] = ACTIONS(8331), - [anon_sym_SEMI] = ACTIONS(8331), - [aux_sym_preproc_def_token1] = ACTIONS(8329), - [anon_sym_AMP_AMP] = ACTIONS(8331), - [anon_sym_inline] = ACTIONS(8329), - [anon_sym_PLUS_PLUS] = ACTIONS(8331), - [anon_sym_restrict] = ACTIONS(8329), + [4626] = { + [anon_sym_DASH] = ACTIONS(8295), + [sym_raw_string_literal] = ACTIONS(8297), + [sym_true] = ACTIONS(8295), + [anon_sym_mutable] = ACTIONS(8295), + [sym_null] = ACTIONS(8295), + [anon_sym_break] = ACTIONS(8295), + [aux_sym_preproc_if_token2] = ACTIONS(8295), + [anon_sym_BANG] = ACTIONS(8297), + [anon_sym_sizeof] = ACTIONS(8295), + [anon_sym_volatile] = ACTIONS(8295), + [anon_sym_PLUS] = ACTIONS(8295), + [anon_sym_typedef] = ACTIONS(8295), + [anon_sym_switch] = ACTIONS(8295), + [anon_sym_explicit] = ACTIONS(8295), + [sym_identifier] = ACTIONS(8295), + [anon_sym_delete] = ACTIONS(8295), + [anon_sym_continue] = ACTIONS(8295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8295), + [anon_sym__Atomic] = ACTIONS(8295), + [sym_number_literal] = ACTIONS(8297), + [anon_sym_extern] = ACTIONS(8295), + [anon_sym_enum] = ACTIONS(8295), + [anon_sym_constexpr] = ACTIONS(8295), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8297), + [anon_sym_namespace] = ACTIONS(8295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8295), + [anon_sym_SQUOTE] = ACTIONS(8297), + [anon_sym_LBRACE] = ACTIONS(8297), + [anon_sym_DASH_DASH] = ACTIONS(8297), + [anon_sym_LPAREN2] = ACTIONS(8297), + [anon_sym_struct] = ACTIONS(8295), + [sym_auto] = ACTIONS(8295), + [anon_sym_signed] = ACTIONS(8295), + [anon_sym_long] = ACTIONS(8295), + [anon_sym_COLON_COLON] = ACTIONS(8297), + [anon_sym_using] = ACTIONS(8295), + [sym_preproc_directive] = ACTIONS(8295), + [aux_sym_preproc_if_token1] = ACTIONS(8295), + [anon_sym_AMP] = ACTIONS(8295), + [anon_sym_static] = ACTIONS(8295), + [anon_sym_STAR] = ACTIONS(8297), + [anon_sym_union] = ACTIONS(8295), + [anon_sym_typename] = ACTIONS(8295), + [anon_sym_short] = ACTIONS(8295), + [anon_sym_new] = ACTIONS(8295), + [anon_sym_goto] = ACTIONS(8295), + [sym_operator_name] = ACTIONS(8297), + [anon_sym_while] = ACTIONS(8295), + [anon_sym_try] = ACTIONS(8295), + [anon_sym_for] = ACTIONS(8295), + [aux_sym_preproc_include_token1] = ACTIONS(8295), + [anon_sym_register] = ACTIONS(8295), + [anon_sym_DQUOTE] = ACTIONS(8297), + [anon_sym_const] = ACTIONS(8295), + [anon_sym_LBRACK] = ACTIONS(8295), + [anon_sym_class] = ACTIONS(8295), + [anon_sym_if] = ACTIONS(8295), + [sym_primitive_type] = ACTIONS(8295), + [sym_false] = ACTIONS(8295), + [sym_nullptr] = ACTIONS(8295), + [anon_sym_do] = ACTIONS(8295), + [anon_sym_template] = ACTIONS(8295), + [anon_sym_return] = ACTIONS(8295), + [anon_sym_TILDE] = ACTIONS(8297), + [anon_sym_SEMI] = ACTIONS(8297), + [aux_sym_preproc_def_token1] = ACTIONS(8295), + [anon_sym_AMP_AMP] = ACTIONS(8297), + [anon_sym_inline] = ACTIONS(8295), + [anon_sym_PLUS_PLUS] = ACTIONS(8297), + [anon_sym_restrict] = ACTIONS(8295), }, - [4656] = { - [anon_sym_DASH] = ACTIONS(8908), - [sym_raw_string_literal] = ACTIONS(8910), - [anon_sym_else] = ACTIONS(8908), - [sym_true] = ACTIONS(8908), - [anon_sym_mutable] = ACTIONS(8908), - [sym_null] = ACTIONS(8908), - [anon_sym_break] = ACTIONS(8908), - [aux_sym_preproc_if_token2] = ACTIONS(8908), - [anon_sym_BANG] = ACTIONS(8910), - [anon_sym_sizeof] = ACTIONS(8908), - [anon_sym_volatile] = ACTIONS(8908), - [anon_sym_PLUS] = ACTIONS(8908), - [anon_sym_typedef] = ACTIONS(8908), - [anon_sym_switch] = ACTIONS(8908), - [anon_sym_explicit] = ACTIONS(8908), - [sym_identifier] = ACTIONS(8908), - [anon_sym_delete] = ACTIONS(8908), - [anon_sym_continue] = ACTIONS(8908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8908), - [anon_sym__Atomic] = ACTIONS(8908), - [sym_number_literal] = ACTIONS(8910), - [anon_sym_extern] = ACTIONS(8908), - [anon_sym_enum] = ACTIONS(8908), - [anon_sym_constexpr] = ACTIONS(8908), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8910), - [anon_sym_namespace] = ACTIONS(8908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8908), - [anon_sym_SQUOTE] = ACTIONS(8910), - [anon_sym_LBRACE] = ACTIONS(8910), - [anon_sym_DASH_DASH] = ACTIONS(8910), - [anon_sym_LPAREN2] = ACTIONS(8910), - [anon_sym_struct] = ACTIONS(8908), - [sym_auto] = ACTIONS(8908), - [anon_sym_signed] = ACTIONS(8908), - [anon_sym_long] = ACTIONS(8908), - [anon_sym_COLON_COLON] = ACTIONS(8910), - [anon_sym_using] = ACTIONS(8908), - [sym_preproc_directive] = ACTIONS(8908), - [aux_sym_preproc_if_token1] = ACTIONS(8908), - [anon_sym_AMP] = ACTIONS(8908), - [anon_sym_static] = ACTIONS(8908), - [anon_sym_STAR] = ACTIONS(8910), - [anon_sym_union] = ACTIONS(8908), - [anon_sym_typename] = ACTIONS(8908), - [anon_sym_short] = ACTIONS(8908), - [anon_sym_new] = ACTIONS(8908), - [anon_sym_goto] = ACTIONS(8908), - [sym_operator_name] = ACTIONS(8910), - [anon_sym_while] = ACTIONS(8908), - [anon_sym_try] = ACTIONS(8908), - [anon_sym_for] = ACTIONS(8908), - [aux_sym_preproc_include_token1] = ACTIONS(8908), - [anon_sym_register] = ACTIONS(8908), - [anon_sym_DQUOTE] = ACTIONS(8910), - [anon_sym_const] = ACTIONS(8908), - [anon_sym_LBRACK] = ACTIONS(8908), - [anon_sym_class] = ACTIONS(8908), - [anon_sym_if] = ACTIONS(8908), - [sym_primitive_type] = ACTIONS(8908), - [sym_false] = ACTIONS(8908), - [sym_nullptr] = ACTIONS(8908), - [anon_sym_do] = ACTIONS(8908), - [anon_sym_template] = ACTIONS(8908), - [anon_sym_return] = ACTIONS(8908), - [anon_sym_TILDE] = ACTIONS(8910), - [anon_sym_SEMI] = ACTIONS(8910), - [aux_sym_preproc_def_token1] = ACTIONS(8908), - [anon_sym_AMP_AMP] = ACTIONS(8910), - [anon_sym_inline] = ACTIONS(8908), - [anon_sym_PLUS_PLUS] = ACTIONS(8910), - [anon_sym_restrict] = ACTIONS(8908), + [4627] = { + [anon_sym_DASH] = ACTIONS(8872), + [sym_raw_string_literal] = ACTIONS(8874), + [anon_sym_else] = ACTIONS(8872), + [sym_true] = ACTIONS(8872), + [anon_sym_mutable] = ACTIONS(8872), + [sym_null] = ACTIONS(8872), + [anon_sym_break] = ACTIONS(8872), + [aux_sym_preproc_if_token2] = ACTIONS(8872), + [anon_sym_BANG] = ACTIONS(8874), + [anon_sym_sizeof] = ACTIONS(8872), + [anon_sym_volatile] = ACTIONS(8872), + [anon_sym_PLUS] = ACTIONS(8872), + [anon_sym_typedef] = ACTIONS(8872), + [anon_sym_switch] = ACTIONS(8872), + [anon_sym_explicit] = ACTIONS(8872), + [sym_identifier] = ACTIONS(8872), + [anon_sym_delete] = ACTIONS(8872), + [anon_sym_continue] = ACTIONS(8872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8872), + [anon_sym__Atomic] = ACTIONS(8872), + [sym_number_literal] = ACTIONS(8874), + [anon_sym_extern] = ACTIONS(8872), + [anon_sym_enum] = ACTIONS(8872), + [anon_sym_constexpr] = ACTIONS(8872), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8872), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8874), + [anon_sym_namespace] = ACTIONS(8872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8872), + [anon_sym_SQUOTE] = ACTIONS(8874), + [anon_sym_LBRACE] = ACTIONS(8874), + [anon_sym_DASH_DASH] = ACTIONS(8874), + [anon_sym_LPAREN2] = ACTIONS(8874), + [anon_sym_struct] = ACTIONS(8872), + [sym_auto] = ACTIONS(8872), + [anon_sym_signed] = ACTIONS(8872), + [anon_sym_long] = ACTIONS(8872), + [anon_sym_COLON_COLON] = ACTIONS(8874), + [anon_sym_using] = ACTIONS(8872), + [sym_preproc_directive] = ACTIONS(8872), + [aux_sym_preproc_if_token1] = ACTIONS(8872), + [anon_sym_AMP] = ACTIONS(8872), + [anon_sym_static] = ACTIONS(8872), + [anon_sym_STAR] = ACTIONS(8874), + [anon_sym_union] = ACTIONS(8872), + [anon_sym_typename] = ACTIONS(8872), + [anon_sym_short] = ACTIONS(8872), + [anon_sym_new] = ACTIONS(8872), + [anon_sym_goto] = ACTIONS(8872), + [sym_operator_name] = ACTIONS(8874), + [anon_sym_while] = ACTIONS(8872), + [anon_sym_try] = ACTIONS(8872), + [anon_sym_for] = ACTIONS(8872), + [aux_sym_preproc_include_token1] = ACTIONS(8872), + [anon_sym_register] = ACTIONS(8872), + [anon_sym_DQUOTE] = ACTIONS(8874), + [anon_sym_const] = ACTIONS(8872), + [anon_sym_LBRACK] = ACTIONS(8872), + [anon_sym_class] = ACTIONS(8872), + [anon_sym_if] = ACTIONS(8872), + [sym_primitive_type] = ACTIONS(8872), + [sym_false] = ACTIONS(8872), + [sym_nullptr] = ACTIONS(8872), + [anon_sym_do] = ACTIONS(8872), + [anon_sym_template] = ACTIONS(8872), + [anon_sym_return] = ACTIONS(8872), + [anon_sym_TILDE] = ACTIONS(8874), + [anon_sym_SEMI] = ACTIONS(8874), + [aux_sym_preproc_def_token1] = ACTIONS(8872), + [anon_sym_AMP_AMP] = ACTIONS(8874), + [anon_sym_inline] = ACTIONS(8872), + [anon_sym_PLUS_PLUS] = ACTIONS(8874), + [anon_sym_restrict] = ACTIONS(8872), }, - [4657] = { - [sym_do_statement] = STATE(4829), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4628] = { + [sym_do_statement] = STATE(4800), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4829), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4829), - [sym_if_statement] = STATE(4829), - [sym_switch_statement] = STATE(4829), - [sym_for_statement] = STATE(4829), - [sym_return_statement] = STATE(4829), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4800), + [sym_try_statement] = STATE(4800), + [sym_if_statement] = STATE(4800), + [sym_switch_statement] = STATE(4800), + [sym_for_statement] = STATE(4800), + [sym_return_statement] = STATE(4800), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4829), - [sym_break_statement] = STATE(4829), - [sym_continue_statement] = STATE(4829), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4800), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4829), - [sym_labeled_statement] = STATE(4829), - [sym_expression_statement] = STATE(4829), - [sym_while_statement] = STATE(4829), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4800), + [sym_for_range_loop] = STATE(4800), + [sym_compound_statement] = STATE(4800), + [sym_labeled_statement] = STATE(4800), + [sym_expression_statement] = STATE(4800), + [sym_while_statement] = STATE(4800), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4658] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10420), + [4629] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10386), [sym_comment] = ACTIONS(3), }, - [4659] = { - [aux_sym_for_statement_repeat1] = STATE(4831), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10420), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4630] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4802), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10386), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4660] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4832), - [sym_logical_expression] = STATE(4832), - [sym_bitwise_expression] = STATE(4832), - [sym_cast_expression] = STATE(4832), - [sym_new_expression] = STATE(4832), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4832), - [sym_char_literal] = STATE(4832), - [sym_template_function] = STATE(4832), - [sym_conditional_expression] = STATE(4832), - [sym_equality_expression] = STATE(4832), - [sym_relational_expression] = STATE(4832), - [sym_delete_expression] = STATE(4832), - [sym_sizeof_expression] = STATE(4832), - [sym_parenthesized_expression] = STATE(4832), - [sym_lambda_expression] = STATE(4832), - [sym_concatenated_string] = STATE(4832), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4832), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4832), - [sym_math_expression] = STATE(4832), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10422), + [4631] = { + [sym_template_function] = STATE(4803), + [sym__expression] = STATE(4803), + [sym_logical_expression] = STATE(4803), + [sym_bitwise_expression] = STATE(4803), + [sym_cast_expression] = STATE(4803), + [sym_delete_expression] = STATE(4803), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4803), + [sym_lambda_expression] = STATE(4803), + [sym_char_literal] = STATE(4803), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4803), + [sym_equality_expression] = STATE(4803), + [sym_relational_expression] = STATE(4803), + [sym_sizeof_expression] = STATE(4803), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4803), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4803), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4803), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4803), + [sym_math_expression] = STATE(4803), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4803), + [sym_raw_string_literal] = ACTIONS(10388), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10424), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10424), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10390), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10390), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10422), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10388), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10424), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10424), + [sym_false] = ACTIONS(10390), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10390), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10420), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10386), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4661] = { - [sym_do_statement] = STATE(4833), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4632] = { + [sym_do_statement] = STATE(4804), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4833), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4833), - [sym_if_statement] = STATE(4833), - [sym_switch_statement] = STATE(4833), - [sym_for_statement] = STATE(4833), - [sym_return_statement] = STATE(4833), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4804), + [sym_try_statement] = STATE(4804), + [sym_if_statement] = STATE(4804), + [sym_switch_statement] = STATE(4804), + [sym_for_statement] = STATE(4804), + [sym_return_statement] = STATE(4804), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4833), - [sym_break_statement] = STATE(4833), - [sym_continue_statement] = STATE(4833), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4804), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4833), - [sym_labeled_statement] = STATE(4833), - [sym_expression_statement] = STATE(4833), - [sym_while_statement] = STATE(4833), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4804), + [sym_for_range_loop] = STATE(4804), + [sym_compound_statement] = STATE(4804), + [sym_labeled_statement] = STATE(4804), + [sym_expression_statement] = STATE(4804), + [sym_while_statement] = STATE(4804), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4662] = { - [sym_do_statement] = STATE(3277), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4633] = { + [sym_do_statement] = STATE(3255), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(3277), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(3277), - [sym_if_statement] = STATE(3277), - [sym_switch_statement] = STATE(3277), - [sym_for_statement] = STATE(3277), - [sym_return_statement] = STATE(3277), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3255), + [sym_try_statement] = STATE(3255), + [sym_if_statement] = STATE(3255), + [sym_switch_statement] = STATE(3255), + [sym_for_statement] = STATE(3255), + [sym_return_statement] = STATE(3255), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(3277), - [sym_break_statement] = STATE(3277), - [sym_continue_statement] = STATE(3277), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3255), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3277), - [sym_labeled_statement] = STATE(3277), - [sym_expression_statement] = STATE(3277), - [sym_while_statement] = STATE(3277), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(3255), + [sym_for_range_loop] = STATE(3255), + [sym_compound_statement] = STATE(3255), + [sym_labeled_statement] = STATE(3255), + [sym_expression_statement] = STATE(3255), + [sym_while_statement] = STATE(3255), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4663] = { - [sym_do_statement] = STATE(3296), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4634] = { + [sym_do_statement] = STATE(3274), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(3296), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(3296), - [sym_if_statement] = STATE(3296), - [sym_switch_statement] = STATE(3296), - [sym_for_statement] = STATE(3296), - [sym_return_statement] = STATE(3296), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3274), + [sym_try_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_switch_statement] = STATE(3274), + [sym_for_statement] = STATE(3274), + [sym_return_statement] = STATE(3274), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(3296), - [sym_break_statement] = STATE(3296), - [sym_continue_statement] = STATE(3296), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3274), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3296), - [sym_labeled_statement] = STATE(3296), - [sym_expression_statement] = STATE(3296), - [sym_while_statement] = STATE(3296), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(3274), + [sym_for_range_loop] = STATE(3274), + [sym_compound_statement] = STATE(3274), + [sym_labeled_statement] = STATE(3274), + [sym_expression_statement] = STATE(3274), + [sym_while_statement] = STATE(3274), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4664] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(4835), - [sym_logical_expression] = STATE(4835), - [sym_bitwise_expression] = STATE(4835), - [sym_cast_expression] = STATE(4835), - [sym_new_expression] = STATE(4835), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4835), - [sym_declaration] = STATE(4834), - [sym_char_literal] = STATE(4835), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(4835), - [sym_conditional_expression] = STATE(4835), - [sym_equality_expression] = STATE(4835), - [sym_relational_expression] = STATE(4835), - [sym_sizeof_expression] = STATE(4835), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(4835), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(4835), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(4835), - [sym_lambda_expression] = STATE(4835), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(4836), - [sym_assignment_expression] = STATE(4835), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4835), - [sym_math_expression] = STATE(4835), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [4635] = { + [sym_template_function] = STATE(4806), + [sym__expression] = STATE(4806), + [sym_logical_expression] = STATE(4806), + [sym_bitwise_expression] = STATE(4806), + [sym_cast_expression] = STATE(4806), + [sym_delete_expression] = STATE(4806), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(4806), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(4806), + [sym_lambda_expression] = STATE(4806), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(4805), + [sym_for_range_declaration] = STATE(4807), + [sym_conditional_expression] = STATE(4806), + [sym_equality_expression] = STATE(4806), + [sym_relational_expression] = STATE(4806), + [sym_sizeof_expression] = STATE(4806), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(4806), + [sym_concatenated_string] = STATE(4806), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(10426), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(4806), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4806), + [sym_math_expression] = STATE(4806), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4806), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(10392), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(10428), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(10394), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(10428), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(10394), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(10426), + [sym_number_literal] = ACTIONS(10392), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(10428), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(10394), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(10428), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(10394), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10430), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10396), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4665] = { - [aux_sym_try_statement_repeat1] = STATE(4837), - [sym_catch_clause] = STATE(4837), - [anon_sym_catch] = ACTIONS(6983), + [4636] = { + [sym_catch_clause] = STATE(4808), + [aux_sym_try_statement_repeat1] = STATE(4808), + [anon_sym_catch] = ACTIONS(6972), [sym_comment] = ACTIONS(3), }, - [4666] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4838), - [sym_logical_expression] = STATE(4838), - [sym_bitwise_expression] = STATE(4838), - [sym_cast_expression] = STATE(4838), - [sym_new_expression] = STATE(4838), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4838), - [sym_char_literal] = STATE(4838), - [sym_template_function] = STATE(4838), - [sym_conditional_expression] = STATE(4838), - [sym_equality_expression] = STATE(4838), - [sym_relational_expression] = STATE(4838), - [sym_delete_expression] = STATE(4838), - [sym_sizeof_expression] = STATE(4838), - [sym_parenthesized_expression] = STATE(4838), - [sym_lambda_expression] = STATE(4838), - [sym_concatenated_string] = STATE(4838), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4838), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4838), - [sym_math_expression] = STATE(4838), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10432), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10434), - [sym_null] = ACTIONS(10434), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10432), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10434), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10434), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4637] = { + [sym_template_function] = STATE(4809), + [sym__expression] = STATE(4809), + [sym_logical_expression] = STATE(4809), + [sym_bitwise_expression] = STATE(4809), + [sym_cast_expression] = STATE(4809), + [sym_delete_expression] = STATE(4809), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4809), + [sym_lambda_expression] = STATE(4809), + [sym_char_literal] = STATE(4809), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4809), + [sym_equality_expression] = STATE(4809), + [sym_relational_expression] = STATE(4809), + [sym_sizeof_expression] = STATE(4809), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4809), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4809), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4809), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4809), + [sym_math_expression] = STATE(4809), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4809), + [sym_raw_string_literal] = ACTIONS(10398), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10400), + [sym_null] = ACTIONS(10400), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10398), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10400), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10400), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4667] = { - [anon_sym_LPAREN2] = ACTIONS(10436), + [4638] = { + [anon_sym_LPAREN2] = ACTIONS(10402), [sym_comment] = ACTIONS(3), }, - [4668] = { - [sym_do_statement] = STATE(4840), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4639] = { + [sym_do_statement] = STATE(4811), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4840), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4840), - [sym_if_statement] = STATE(4840), - [sym_switch_statement] = STATE(4840), - [sym_for_statement] = STATE(4840), - [sym_return_statement] = STATE(4840), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4811), + [sym_try_statement] = STATE(4811), + [sym_if_statement] = STATE(4811), + [sym_switch_statement] = STATE(4811), + [sym_for_statement] = STATE(4811), + [sym_return_statement] = STATE(4811), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4840), - [sym_break_statement] = STATE(4840), - [sym_continue_statement] = STATE(4840), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4811), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4840), - [sym_labeled_statement] = STATE(4840), - [sym_expression_statement] = STATE(4840), - [sym_while_statement] = STATE(4840), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4811), + [sym_for_range_loop] = STATE(4811), + [sym_compound_statement] = STATE(4811), + [sym_labeled_statement] = STATE(4811), + [sym_expression_statement] = STATE(4811), + [sym_while_statement] = STATE(4811), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4669] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(10438), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [aux_sym_preproc_if_token2] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_namespace] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_using] = ACTIONS(9003), - [sym_preproc_directive] = ACTIONS(9003), - [aux_sym_preproc_if_token1] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9003), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [sym_operator_name] = ACTIONS(9005), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [aux_sym_preproc_include_token1] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_template] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [aux_sym_preproc_def_token1] = ACTIONS(9003), - [anon_sym_AMP_AMP] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), + [4640] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(10404), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [aux_sym_preproc_if_token2] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_namespace] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_using] = ACTIONS(8967), + [sym_preproc_directive] = ACTIONS(8967), + [aux_sym_preproc_if_token1] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8967), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [sym_operator_name] = ACTIONS(8969), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [aux_sym_preproc_include_token1] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_template] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [aux_sym_preproc_def_token1] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), }, - [4670] = { - [anon_sym_DASH] = ACTIONS(2818), - [sym_raw_string_literal] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [aux_sym_preproc_if_token2] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2816), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2816), - [anon_sym_namespace] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2818), - [sym_auto] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_using] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [sym_operator_name] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_nullptr] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_restrict] = ACTIONS(2818), + [4641] = { + [anon_sym_DASH] = ACTIONS(2820), + [sym_raw_string_literal] = ACTIONS(2818), + [anon_sym_else] = ACTIONS(2820), + [sym_true] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [sym_null] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [aux_sym_preproc_if_token2] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_explicit] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym_namespace] = ACTIONS(2820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_struct] = ACTIONS(2820), + [sym_auto] = ACTIONS(2820), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_using] = ACTIONS(2820), + [sym_preproc_directive] = ACTIONS(2820), + [aux_sym_preproc_if_token1] = ACTIONS(2820), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [sym_operator_name] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [aux_sym_preproc_include_token1] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [sym_nullptr] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_template] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [aux_sym_preproc_def_token1] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_restrict] = ACTIONS(2820), }, - [4671] = { - [anon_sym_DASH] = ACTIONS(9820), - [sym_raw_string_literal] = ACTIONS(9822), - [anon_sym_else] = ACTIONS(9820), - [sym_true] = ACTIONS(9820), - [anon_sym_mutable] = ACTIONS(9820), - [sym_null] = ACTIONS(9820), - [anon_sym_break] = ACTIONS(9820), - [aux_sym_preproc_if_token2] = ACTIONS(9820), - [anon_sym_BANG] = ACTIONS(9822), - [anon_sym_sizeof] = ACTIONS(9820), - [anon_sym_volatile] = ACTIONS(9820), - [anon_sym_PLUS] = ACTIONS(9820), - [anon_sym_typedef] = ACTIONS(9820), - [anon_sym_switch] = ACTIONS(9820), - [anon_sym_explicit] = ACTIONS(9820), - [sym_identifier] = ACTIONS(9820), - [anon_sym_delete] = ACTIONS(9820), - [anon_sym_continue] = ACTIONS(9820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9820), - [anon_sym__Atomic] = ACTIONS(9820), - [sym_number_literal] = ACTIONS(9822), - [anon_sym_extern] = ACTIONS(9820), - [anon_sym_enum] = ACTIONS(9820), - [anon_sym_constexpr] = ACTIONS(9820), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9822), - [anon_sym_namespace] = ACTIONS(9820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9820), - [aux_sym_preproc_elif_token1] = ACTIONS(9820), - [anon_sym_SQUOTE] = ACTIONS(9822), - [anon_sym_LBRACE] = ACTIONS(9822), - [anon_sym_DASH_DASH] = ACTIONS(9822), - [anon_sym_LPAREN2] = ACTIONS(9822), - [anon_sym_struct] = ACTIONS(9820), - [sym_auto] = ACTIONS(9820), - [anon_sym_signed] = ACTIONS(9820), - [anon_sym_long] = ACTIONS(9820), - [anon_sym_COLON_COLON] = ACTIONS(9822), - [anon_sym_using] = ACTIONS(9820), - [aux_sym_preproc_else_token1] = ACTIONS(9820), - [sym_preproc_directive] = ACTIONS(9820), - [aux_sym_preproc_if_token1] = ACTIONS(9820), - [anon_sym_AMP] = ACTIONS(9820), - [anon_sym_static] = ACTIONS(9820), - [anon_sym_STAR] = ACTIONS(9822), - [anon_sym_union] = ACTIONS(9820), - [anon_sym_typename] = ACTIONS(9820), - [anon_sym_short] = ACTIONS(9820), - [anon_sym_new] = ACTIONS(9820), - [anon_sym_goto] = ACTIONS(9820), - [sym_operator_name] = ACTIONS(9822), - [anon_sym_while] = ACTIONS(9820), - [anon_sym_try] = ACTIONS(9820), - [anon_sym_for] = ACTIONS(9820), - [aux_sym_preproc_include_token1] = ACTIONS(9820), - [anon_sym_register] = ACTIONS(9820), - [anon_sym_DQUOTE] = ACTIONS(9822), - [anon_sym_const] = ACTIONS(9820), - [anon_sym_LBRACK] = ACTIONS(9820), - [anon_sym_class] = ACTIONS(9820), - [anon_sym_if] = ACTIONS(9820), - [sym_primitive_type] = ACTIONS(9820), - [sym_false] = ACTIONS(9820), - [sym_nullptr] = ACTIONS(9820), - [anon_sym_do] = ACTIONS(9820), - [anon_sym_template] = ACTIONS(9820), - [anon_sym_return] = ACTIONS(9820), - [anon_sym_TILDE] = ACTIONS(9822), - [anon_sym_SEMI] = ACTIONS(9822), - [aux_sym_preproc_def_token1] = ACTIONS(9820), - [anon_sym_AMP_AMP] = ACTIONS(9822), - [anon_sym_inline] = ACTIONS(9820), - [anon_sym_PLUS_PLUS] = ACTIONS(9822), - [anon_sym_restrict] = ACTIONS(9820), + [4642] = { + [anon_sym_DASH] = ACTIONS(9786), + [sym_raw_string_literal] = ACTIONS(9788), + [anon_sym_else] = ACTIONS(9786), + [sym_true] = ACTIONS(9786), + [anon_sym_mutable] = ACTIONS(9786), + [sym_null] = ACTIONS(9786), + [anon_sym_break] = ACTIONS(9786), + [aux_sym_preproc_if_token2] = ACTIONS(9786), + [anon_sym_BANG] = ACTIONS(9788), + [anon_sym_sizeof] = ACTIONS(9786), + [anon_sym_volatile] = ACTIONS(9786), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_typedef] = ACTIONS(9786), + [anon_sym_switch] = ACTIONS(9786), + [anon_sym_explicit] = ACTIONS(9786), + [sym_identifier] = ACTIONS(9786), + [anon_sym_delete] = ACTIONS(9786), + [anon_sym_continue] = ACTIONS(9786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9786), + [anon_sym__Atomic] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9788), + [anon_sym_extern] = ACTIONS(9786), + [anon_sym_enum] = ACTIONS(9786), + [anon_sym_constexpr] = ACTIONS(9786), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9788), + [anon_sym_namespace] = ACTIONS(9786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9786), + [aux_sym_preproc_elif_token1] = ACTIONS(9786), + [anon_sym_SQUOTE] = ACTIONS(9788), + [anon_sym_LBRACE] = ACTIONS(9788), + [anon_sym_DASH_DASH] = ACTIONS(9788), + [anon_sym_LPAREN2] = ACTIONS(9788), + [anon_sym_struct] = ACTIONS(9786), + [sym_auto] = ACTIONS(9786), + [anon_sym_signed] = ACTIONS(9786), + [anon_sym_long] = ACTIONS(9786), + [anon_sym_COLON_COLON] = ACTIONS(9788), + [anon_sym_using] = ACTIONS(9786), + [aux_sym_preproc_else_token1] = ACTIONS(9786), + [sym_preproc_directive] = ACTIONS(9786), + [aux_sym_preproc_if_token1] = ACTIONS(9786), + [anon_sym_AMP] = ACTIONS(9786), + [anon_sym_static] = ACTIONS(9786), + [anon_sym_STAR] = ACTIONS(9788), + [anon_sym_union] = ACTIONS(9786), + [anon_sym_typename] = ACTIONS(9786), + [anon_sym_short] = ACTIONS(9786), + [anon_sym_new] = ACTIONS(9786), + [anon_sym_goto] = ACTIONS(9786), + [sym_operator_name] = ACTIONS(9788), + [anon_sym_while] = ACTIONS(9786), + [anon_sym_try] = ACTIONS(9786), + [anon_sym_for] = ACTIONS(9786), + [aux_sym_preproc_include_token1] = ACTIONS(9786), + [anon_sym_register] = ACTIONS(9786), + [anon_sym_DQUOTE] = ACTIONS(9788), + [anon_sym_const] = ACTIONS(9786), + [anon_sym_LBRACK] = ACTIONS(9786), + [anon_sym_class] = ACTIONS(9786), + [anon_sym_if] = ACTIONS(9786), + [sym_primitive_type] = ACTIONS(9786), + [sym_false] = ACTIONS(9786), + [sym_nullptr] = ACTIONS(9786), + [anon_sym_do] = ACTIONS(9786), + [anon_sym_template] = ACTIONS(9786), + [anon_sym_return] = ACTIONS(9786), + [anon_sym_TILDE] = ACTIONS(9788), + [anon_sym_SEMI] = ACTIONS(9788), + [aux_sym_preproc_def_token1] = ACTIONS(9786), + [anon_sym_AMP_AMP] = ACTIONS(9788), + [anon_sym_inline] = ACTIONS(9786), + [anon_sym_PLUS_PLUS] = ACTIONS(9788), + [anon_sym_restrict] = ACTIONS(9786), }, - [4672] = { - [sym_do_statement] = STATE(4842), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4643] = { + [sym_do_statement] = STATE(4813), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4842), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4842), - [sym_if_statement] = STATE(4842), - [sym_switch_statement] = STATE(4842), - [sym_for_statement] = STATE(4842), - [sym_return_statement] = STATE(4842), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4813), + [sym_try_statement] = STATE(4813), + [sym_if_statement] = STATE(4813), + [sym_switch_statement] = STATE(4813), + [sym_for_statement] = STATE(4813), + [sym_return_statement] = STATE(4813), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4842), - [sym_break_statement] = STATE(4842), - [sym_continue_statement] = STATE(4842), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4813), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4842), - [sym_labeled_statement] = STATE(4842), - [sym_expression_statement] = STATE(4842), - [sym_while_statement] = STATE(4842), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4813), + [sym_for_range_loop] = STATE(4813), + [sym_compound_statement] = STATE(4813), + [sym_labeled_statement] = STATE(4813), + [sym_expression_statement] = STATE(4813), + [sym_while_statement] = STATE(4813), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4673] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10440), + [4644] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10406), [sym_comment] = ACTIONS(3), }, - [4674] = { - [aux_sym_for_statement_repeat1] = STATE(4844), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10440), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4645] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4815), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10406), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4675] = { - [anon_sym_DASH] = ACTIONS(9829), - [sym_raw_string_literal] = ACTIONS(9831), - [anon_sym_else] = ACTIONS(9829), - [sym_true] = ACTIONS(9829), - [anon_sym_mutable] = ACTIONS(9829), - [sym_null] = ACTIONS(9829), - [anon_sym_break] = ACTIONS(9829), - [aux_sym_preproc_if_token2] = ACTIONS(9829), - [anon_sym_BANG] = ACTIONS(9831), - [anon_sym_sizeof] = ACTIONS(9829), - [anon_sym_volatile] = ACTIONS(9829), - [anon_sym_PLUS] = ACTIONS(9829), - [anon_sym_typedef] = ACTIONS(9829), - [anon_sym_switch] = ACTIONS(9829), - [anon_sym_explicit] = ACTIONS(9829), - [sym_identifier] = ACTIONS(9829), - [anon_sym_delete] = ACTIONS(9829), - [anon_sym_continue] = ACTIONS(9829), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9829), - [anon_sym__Atomic] = ACTIONS(9829), - [sym_number_literal] = ACTIONS(9831), - [anon_sym_extern] = ACTIONS(9829), - [anon_sym_enum] = ACTIONS(9829), - [anon_sym_constexpr] = ACTIONS(9829), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9831), - [anon_sym_namespace] = ACTIONS(9829), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9829), - [aux_sym_preproc_elif_token1] = ACTIONS(9829), - [anon_sym_SQUOTE] = ACTIONS(9831), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_DASH_DASH] = ACTIONS(9831), - [anon_sym_LPAREN2] = ACTIONS(9831), - [anon_sym_struct] = ACTIONS(9829), - [sym_auto] = ACTIONS(9829), - [anon_sym_signed] = ACTIONS(9829), - [anon_sym_long] = ACTIONS(9829), - [anon_sym_COLON_COLON] = ACTIONS(9831), - [anon_sym_using] = ACTIONS(9829), - [aux_sym_preproc_else_token1] = ACTIONS(9829), - [sym_preproc_directive] = ACTIONS(9829), - [aux_sym_preproc_if_token1] = ACTIONS(9829), - [anon_sym_AMP] = ACTIONS(9829), - [anon_sym_static] = ACTIONS(9829), - [anon_sym_STAR] = ACTIONS(9831), - [anon_sym_union] = ACTIONS(9829), - [anon_sym_typename] = ACTIONS(9829), - [anon_sym_short] = ACTIONS(9829), - [anon_sym_new] = ACTIONS(9829), - [anon_sym_goto] = ACTIONS(9829), - [sym_operator_name] = ACTIONS(9831), - [anon_sym_while] = ACTIONS(9829), - [anon_sym_try] = ACTIONS(9829), - [anon_sym_for] = ACTIONS(9829), - [aux_sym_preproc_include_token1] = ACTIONS(9829), - [anon_sym_register] = ACTIONS(9829), - [anon_sym_DQUOTE] = ACTIONS(9831), - [anon_sym_const] = ACTIONS(9829), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_class] = ACTIONS(9829), - [anon_sym_if] = ACTIONS(9829), - [sym_primitive_type] = ACTIONS(9829), - [sym_false] = ACTIONS(9829), - [sym_nullptr] = ACTIONS(9829), - [anon_sym_do] = ACTIONS(9829), - [anon_sym_template] = ACTIONS(9829), - [anon_sym_return] = ACTIONS(9829), - [anon_sym_TILDE] = ACTIONS(9831), - [anon_sym_SEMI] = ACTIONS(9831), - [aux_sym_preproc_def_token1] = ACTIONS(9829), - [anon_sym_AMP_AMP] = ACTIONS(9831), - [anon_sym_inline] = ACTIONS(9829), - [anon_sym_PLUS_PLUS] = ACTIONS(9831), - [anon_sym_restrict] = ACTIONS(9829), + [4646] = { + [anon_sym_DASH] = ACTIONS(9795), + [sym_raw_string_literal] = ACTIONS(9797), + [anon_sym_else] = ACTIONS(9795), + [sym_true] = ACTIONS(9795), + [anon_sym_mutable] = ACTIONS(9795), + [sym_null] = ACTIONS(9795), + [anon_sym_break] = ACTIONS(9795), + [aux_sym_preproc_if_token2] = ACTIONS(9795), + [anon_sym_BANG] = ACTIONS(9797), + [anon_sym_sizeof] = ACTIONS(9795), + [anon_sym_volatile] = ACTIONS(9795), + [anon_sym_PLUS] = ACTIONS(9795), + [anon_sym_typedef] = ACTIONS(9795), + [anon_sym_switch] = ACTIONS(9795), + [anon_sym_explicit] = ACTIONS(9795), + [sym_identifier] = ACTIONS(9795), + [anon_sym_delete] = ACTIONS(9795), + [anon_sym_continue] = ACTIONS(9795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9795), + [anon_sym__Atomic] = ACTIONS(9795), + [sym_number_literal] = ACTIONS(9797), + [anon_sym_extern] = ACTIONS(9795), + [anon_sym_enum] = ACTIONS(9795), + [anon_sym_constexpr] = ACTIONS(9795), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9797), + [anon_sym_namespace] = ACTIONS(9795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9795), + [aux_sym_preproc_elif_token1] = ACTIONS(9795), + [anon_sym_SQUOTE] = ACTIONS(9797), + [anon_sym_LBRACE] = ACTIONS(9797), + [anon_sym_DASH_DASH] = ACTIONS(9797), + [anon_sym_LPAREN2] = ACTIONS(9797), + [anon_sym_struct] = ACTIONS(9795), + [sym_auto] = ACTIONS(9795), + [anon_sym_signed] = ACTIONS(9795), + [anon_sym_long] = ACTIONS(9795), + [anon_sym_COLON_COLON] = ACTIONS(9797), + [anon_sym_using] = ACTIONS(9795), + [aux_sym_preproc_else_token1] = ACTIONS(9795), + [sym_preproc_directive] = ACTIONS(9795), + [aux_sym_preproc_if_token1] = ACTIONS(9795), + [anon_sym_AMP] = ACTIONS(9795), + [anon_sym_static] = ACTIONS(9795), + [anon_sym_STAR] = ACTIONS(9797), + [anon_sym_union] = ACTIONS(9795), + [anon_sym_typename] = ACTIONS(9795), + [anon_sym_short] = ACTIONS(9795), + [anon_sym_new] = ACTIONS(9795), + [anon_sym_goto] = ACTIONS(9795), + [sym_operator_name] = ACTIONS(9797), + [anon_sym_while] = ACTIONS(9795), + [anon_sym_try] = ACTIONS(9795), + [anon_sym_for] = ACTIONS(9795), + [aux_sym_preproc_include_token1] = ACTIONS(9795), + [anon_sym_register] = ACTIONS(9795), + [anon_sym_DQUOTE] = ACTIONS(9797), + [anon_sym_const] = ACTIONS(9795), + [anon_sym_LBRACK] = ACTIONS(9795), + [anon_sym_class] = ACTIONS(9795), + [anon_sym_if] = ACTIONS(9795), + [sym_primitive_type] = ACTIONS(9795), + [sym_false] = ACTIONS(9795), + [sym_nullptr] = ACTIONS(9795), + [anon_sym_do] = ACTIONS(9795), + [anon_sym_template] = ACTIONS(9795), + [anon_sym_return] = ACTIONS(9795), + [anon_sym_TILDE] = ACTIONS(9797), + [anon_sym_SEMI] = ACTIONS(9797), + [aux_sym_preproc_def_token1] = ACTIONS(9795), + [anon_sym_AMP_AMP] = ACTIONS(9797), + [anon_sym_inline] = ACTIONS(9795), + [anon_sym_PLUS_PLUS] = ACTIONS(9797), + [anon_sym_restrict] = ACTIONS(9795), }, - [4676] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4846), - [sym_logical_expression] = STATE(4846), - [sym_bitwise_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_new_expression] = STATE(4846), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4846), - [sym_char_literal] = STATE(4846), - [sym_template_function] = STATE(4846), - [sym_conditional_expression] = STATE(4846), - [sym_equality_expression] = STATE(4846), - [sym_relational_expression] = STATE(4846), - [sym_delete_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_parenthesized_expression] = STATE(4846), - [sym_lambda_expression] = STATE(4846), - [sym_concatenated_string] = STATE(4846), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4846), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4846), - [sym_math_expression] = STATE(4846), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10442), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10444), - [sym_null] = ACTIONS(10444), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10442), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10444), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10444), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10446), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4647] = { + [sym_template_function] = STATE(4817), + [sym__expression] = STATE(4817), + [sym_logical_expression] = STATE(4817), + [sym_bitwise_expression] = STATE(4817), + [sym_cast_expression] = STATE(4817), + [sym_delete_expression] = STATE(4817), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4817), + [sym_lambda_expression] = STATE(4817), + [sym_char_literal] = STATE(4817), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4817), + [sym_equality_expression] = STATE(4817), + [sym_relational_expression] = STATE(4817), + [sym_sizeof_expression] = STATE(4817), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4817), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4817), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4817), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4817), + [sym_math_expression] = STATE(4817), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4817), + [sym_raw_string_literal] = ACTIONS(10408), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10410), + [sym_null] = ACTIONS(10410), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10408), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10410), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10410), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10412), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4677] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10448), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4648] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10414), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4678] = { - [anon_sym_COLON] = ACTIONS(10450), + [4649] = { + [anon_sym_COLON] = ACTIONS(10416), [sym_comment] = ACTIONS(3), }, - [4679] = { - [aux_sym_try_statement_repeat1] = STATE(4849), - [sym_catch_clause] = STATE(4849), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [aux_sym_preproc_if_token2] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(7104), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [sym_operator_name] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [4650] = { + [sym_catch_clause] = STATE(4820), + [aux_sym_try_statement_repeat1] = STATE(4820), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [aux_sym_preproc_if_token2] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(7091), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3154), + [aux_sym_preproc_elif_token1] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [aux_sym_preproc_else_token1] = ACTIONS(3154), + [sym_preproc_directive] = ACTIONS(3154), + [aux_sym_preproc_if_token1] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [sym_operator_name] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [aux_sym_preproc_include_token1] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_template] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, - [4680] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10452), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4651] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10418), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4681] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4851), - [sym_logical_expression] = STATE(4851), - [sym_bitwise_expression] = STATE(4851), - [sym_cast_expression] = STATE(4851), - [sym_new_expression] = STATE(4851), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4851), - [sym_char_literal] = STATE(4851), - [sym_template_function] = STATE(4851), - [sym_conditional_expression] = STATE(4851), - [sym_equality_expression] = STATE(4851), - [sym_relational_expression] = STATE(4851), - [sym_delete_expression] = STATE(4851), - [sym_sizeof_expression] = STATE(4851), - [sym_parenthesized_expression] = STATE(4851), - [sym_lambda_expression] = STATE(4851), - [sym_concatenated_string] = STATE(4851), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4851), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4851), - [sym_math_expression] = STATE(4851), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10454), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10456), - [sym_null] = ACTIONS(10456), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10454), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10456), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10456), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4652] = { + [sym_template_function] = STATE(4822), + [sym__expression] = STATE(4822), + [sym_logical_expression] = STATE(4822), + [sym_bitwise_expression] = STATE(4822), + [sym_cast_expression] = STATE(4822), + [sym_delete_expression] = STATE(4822), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4822), + [sym_lambda_expression] = STATE(4822), + [sym_char_literal] = STATE(4822), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4822), + [sym_equality_expression] = STATE(4822), + [sym_relational_expression] = STATE(4822), + [sym_sizeof_expression] = STATE(4822), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4822), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4822), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4822), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4822), + [sym_math_expression] = STATE(4822), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4822), + [sym_raw_string_literal] = ACTIONS(10420), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10422), + [sym_null] = ACTIONS(10422), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10420), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10422), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10422), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4682] = { - [anon_sym_DASH] = ACTIONS(9871), - [sym_raw_string_literal] = ACTIONS(9873), - [anon_sym_else] = ACTIONS(9871), - [sym_true] = ACTIONS(9871), - [anon_sym_mutable] = ACTIONS(9871), - [sym_null] = ACTIONS(9871), - [anon_sym_break] = ACTIONS(9871), - [aux_sym_preproc_if_token2] = ACTIONS(9871), - [anon_sym_BANG] = ACTIONS(9873), - [anon_sym_sizeof] = ACTIONS(9871), - [anon_sym_volatile] = ACTIONS(9871), - [anon_sym_PLUS] = ACTIONS(9871), - [anon_sym_typedef] = ACTIONS(9871), - [anon_sym_switch] = ACTIONS(9871), - [anon_sym_explicit] = ACTIONS(9871), - [sym_identifier] = ACTIONS(9871), - [anon_sym_delete] = ACTIONS(9871), - [anon_sym_continue] = ACTIONS(9871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9871), - [anon_sym__Atomic] = ACTIONS(9871), - [sym_number_literal] = ACTIONS(9873), - [anon_sym_extern] = ACTIONS(9871), - [anon_sym_enum] = ACTIONS(9871), - [anon_sym_constexpr] = ACTIONS(9871), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9873), - [anon_sym_namespace] = ACTIONS(9871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9871), - [aux_sym_preproc_elif_token1] = ACTIONS(9871), - [anon_sym_SQUOTE] = ACTIONS(9873), - [anon_sym_LBRACE] = ACTIONS(9873), - [anon_sym_DASH_DASH] = ACTIONS(9873), - [anon_sym_LPAREN2] = ACTIONS(9873), - [anon_sym_struct] = ACTIONS(9871), - [sym_auto] = ACTIONS(9871), - [anon_sym_signed] = ACTIONS(9871), - [anon_sym_long] = ACTIONS(9871), - [anon_sym_COLON_COLON] = ACTIONS(9873), - [anon_sym_using] = ACTIONS(9871), - [aux_sym_preproc_else_token1] = ACTIONS(9871), - [sym_preproc_directive] = ACTIONS(9871), - [aux_sym_preproc_if_token1] = ACTIONS(9871), - [anon_sym_AMP] = ACTIONS(9871), - [anon_sym_static] = ACTIONS(9871), - [anon_sym_STAR] = ACTIONS(9873), - [anon_sym_union] = ACTIONS(9871), - [anon_sym_typename] = ACTIONS(9871), - [anon_sym_short] = ACTIONS(9871), - [anon_sym_new] = ACTIONS(9871), - [anon_sym_goto] = ACTIONS(9871), - [sym_operator_name] = ACTIONS(9873), - [anon_sym_while] = ACTIONS(9871), - [anon_sym_try] = ACTIONS(9871), - [anon_sym_for] = ACTIONS(9871), - [aux_sym_preproc_include_token1] = ACTIONS(9871), - [anon_sym_register] = ACTIONS(9871), - [anon_sym_DQUOTE] = ACTIONS(9873), - [anon_sym_const] = ACTIONS(9871), - [anon_sym_LBRACK] = ACTIONS(9871), - [anon_sym_class] = ACTIONS(9871), - [anon_sym_if] = ACTIONS(9871), - [sym_primitive_type] = ACTIONS(9871), - [sym_false] = ACTIONS(9871), - [sym_nullptr] = ACTIONS(9871), - [anon_sym_do] = ACTIONS(9871), - [anon_sym_template] = ACTIONS(9871), - [anon_sym_return] = ACTIONS(9871), - [anon_sym_TILDE] = ACTIONS(9873), - [anon_sym_SEMI] = ACTIONS(9873), - [aux_sym_preproc_def_token1] = ACTIONS(9871), - [anon_sym_AMP_AMP] = ACTIONS(9873), - [anon_sym_inline] = ACTIONS(9871), - [anon_sym_PLUS_PLUS] = ACTIONS(9873), - [anon_sym_restrict] = ACTIONS(9871), + [4653] = { + [anon_sym_DASH] = ACTIONS(9837), + [sym_raw_string_literal] = ACTIONS(9839), + [anon_sym_else] = ACTIONS(9837), + [sym_true] = ACTIONS(9837), + [anon_sym_mutable] = ACTIONS(9837), + [sym_null] = ACTIONS(9837), + [anon_sym_break] = ACTIONS(9837), + [aux_sym_preproc_if_token2] = ACTIONS(9837), + [anon_sym_BANG] = ACTIONS(9839), + [anon_sym_sizeof] = ACTIONS(9837), + [anon_sym_volatile] = ACTIONS(9837), + [anon_sym_PLUS] = ACTIONS(9837), + [anon_sym_typedef] = ACTIONS(9837), + [anon_sym_switch] = ACTIONS(9837), + [anon_sym_explicit] = ACTIONS(9837), + [sym_identifier] = ACTIONS(9837), + [anon_sym_delete] = ACTIONS(9837), + [anon_sym_continue] = ACTIONS(9837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9837), + [anon_sym__Atomic] = ACTIONS(9837), + [sym_number_literal] = ACTIONS(9839), + [anon_sym_extern] = ACTIONS(9837), + [anon_sym_enum] = ACTIONS(9837), + [anon_sym_constexpr] = ACTIONS(9837), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9839), + [anon_sym_namespace] = ACTIONS(9837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9837), + [aux_sym_preproc_elif_token1] = ACTIONS(9837), + [anon_sym_SQUOTE] = ACTIONS(9839), + [anon_sym_LBRACE] = ACTIONS(9839), + [anon_sym_DASH_DASH] = ACTIONS(9839), + [anon_sym_LPAREN2] = ACTIONS(9839), + [anon_sym_struct] = ACTIONS(9837), + [sym_auto] = ACTIONS(9837), + [anon_sym_signed] = ACTIONS(9837), + [anon_sym_long] = ACTIONS(9837), + [anon_sym_COLON_COLON] = ACTIONS(9839), + [anon_sym_using] = ACTIONS(9837), + [aux_sym_preproc_else_token1] = ACTIONS(9837), + [sym_preproc_directive] = ACTIONS(9837), + [aux_sym_preproc_if_token1] = ACTIONS(9837), + [anon_sym_AMP] = ACTIONS(9837), + [anon_sym_static] = ACTIONS(9837), + [anon_sym_STAR] = ACTIONS(9839), + [anon_sym_union] = ACTIONS(9837), + [anon_sym_typename] = ACTIONS(9837), + [anon_sym_short] = ACTIONS(9837), + [anon_sym_new] = ACTIONS(9837), + [anon_sym_goto] = ACTIONS(9837), + [sym_operator_name] = ACTIONS(9839), + [anon_sym_while] = ACTIONS(9837), + [anon_sym_try] = ACTIONS(9837), + [anon_sym_for] = ACTIONS(9837), + [aux_sym_preproc_include_token1] = ACTIONS(9837), + [anon_sym_register] = ACTIONS(9837), + [anon_sym_DQUOTE] = ACTIONS(9839), + [anon_sym_const] = ACTIONS(9837), + [anon_sym_LBRACK] = ACTIONS(9837), + [anon_sym_class] = ACTIONS(9837), + [anon_sym_if] = ACTIONS(9837), + [sym_primitive_type] = ACTIONS(9837), + [sym_false] = ACTIONS(9837), + [sym_nullptr] = ACTIONS(9837), + [anon_sym_do] = ACTIONS(9837), + [anon_sym_template] = ACTIONS(9837), + [anon_sym_return] = ACTIONS(9837), + [anon_sym_TILDE] = ACTIONS(9839), + [anon_sym_SEMI] = ACTIONS(9839), + [aux_sym_preproc_def_token1] = ACTIONS(9837), + [anon_sym_AMP_AMP] = ACTIONS(9839), + [anon_sym_inline] = ACTIONS(9837), + [anon_sym_PLUS_PLUS] = ACTIONS(9839), + [anon_sym_restrict] = ACTIONS(9837), }, - [4683] = { - [sym_do_statement] = STATE(4852), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4654] = { + [sym_do_statement] = STATE(4823), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4852), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4852), - [sym_if_statement] = STATE(4852), - [sym_switch_statement] = STATE(4852), - [sym_for_statement] = STATE(4852), - [sym_return_statement] = STATE(4852), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4823), + [sym_try_statement] = STATE(4823), + [sym_if_statement] = STATE(4823), + [sym_switch_statement] = STATE(4823), + [sym_for_statement] = STATE(4823), + [sym_return_statement] = STATE(4823), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4852), - [sym_break_statement] = STATE(4852), - [sym_continue_statement] = STATE(4852), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4823), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4852), - [sym_labeled_statement] = STATE(4852), - [sym_expression_statement] = STATE(4852), - [sym_while_statement] = STATE(4852), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4823), + [sym_for_range_loop] = STATE(4823), + [sym_compound_statement] = STATE(4823), + [sym_labeled_statement] = STATE(4823), + [sym_expression_statement] = STATE(4823), + [sym_while_statement] = STATE(4823), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4684] = { - [sym_do_statement] = STATE(4751), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4655] = { + [sym_do_statement] = STATE(4722), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4751), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4751), - [sym_if_statement] = STATE(4751), - [sym_switch_statement] = STATE(4751), - [sym_for_statement] = STATE(4751), - [sym_return_statement] = STATE(4751), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4722), + [sym_try_statement] = STATE(4722), + [sym_if_statement] = STATE(4722), + [sym_switch_statement] = STATE(4722), + [sym_for_statement] = STATE(4722), + [sym_return_statement] = STATE(4722), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4751), - [sym_break_statement] = STATE(4751), - [sym_continue_statement] = STATE(4751), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4722), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4751), - [sym_labeled_statement] = STATE(4751), - [sym_expression_statement] = STATE(4751), - [sym_while_statement] = STATE(4751), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4722), + [sym_for_range_loop] = STATE(4722), + [sym_compound_statement] = STATE(4722), + [sym_labeled_statement] = STATE(4722), + [sym_expression_statement] = STATE(4722), + [sym_while_statement] = STATE(4722), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -189811,7 +189223,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -189835,332 +189247,332 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4685] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10458), + [4656] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10424), [sym_comment] = ACTIONS(3), }, - [4686] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4855), - [sym_logical_expression] = STATE(4855), - [sym_bitwise_expression] = STATE(4855), - [sym_cast_expression] = STATE(4855), - [sym_new_expression] = STATE(4855), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4855), - [sym_char_literal] = STATE(4855), - [sym_template_function] = STATE(4855), - [sym_conditional_expression] = STATE(4855), - [sym_equality_expression] = STATE(4855), - [sym_relational_expression] = STATE(4855), - [sym_delete_expression] = STATE(4855), - [sym_sizeof_expression] = STATE(4855), - [sym_parenthesized_expression] = STATE(4855), - [sym_lambda_expression] = STATE(4855), - [sym_concatenated_string] = STATE(4855), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4855), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4855), - [sym_math_expression] = STATE(4855), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10460), + [4657] = { + [sym_template_function] = STATE(4826), + [sym__expression] = STATE(4826), + [sym_logical_expression] = STATE(4826), + [sym_bitwise_expression] = STATE(4826), + [sym_cast_expression] = STATE(4826), + [sym_delete_expression] = STATE(4826), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4826), + [sym_lambda_expression] = STATE(4826), + [sym_char_literal] = STATE(4826), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4826), + [sym_equality_expression] = STATE(4826), + [sym_relational_expression] = STATE(4826), + [sym_sizeof_expression] = STATE(4826), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4826), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4826), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4826), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4826), + [sym_math_expression] = STATE(4826), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4826), + [sym_raw_string_literal] = ACTIONS(10426), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10462), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10462), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10428), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10428), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10460), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10426), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10462), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10462), + [sym_false] = ACTIONS(10428), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10428), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10464), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10430), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4687] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10466), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4658] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10432), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4688] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4857), - [sym_logical_expression] = STATE(4857), - [sym_bitwise_expression] = STATE(4857), - [sym_cast_expression] = STATE(4857), - [sym_new_expression] = STATE(4857), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4857), - [sym_char_literal] = STATE(4857), - [sym_template_function] = STATE(4857), - [sym_conditional_expression] = STATE(4857), - [sym_equality_expression] = STATE(4857), - [sym_relational_expression] = STATE(4857), - [sym_delete_expression] = STATE(4857), - [sym_sizeof_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym_lambda_expression] = STATE(4857), - [sym_concatenated_string] = STATE(4857), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4857), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4857), - [sym_math_expression] = STATE(4857), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10468), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10470), - [sym_null] = ACTIONS(10470), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10468), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10470), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10470), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10466), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4659] = { + [sym_template_function] = STATE(4828), + [sym__expression] = STATE(4828), + [sym_logical_expression] = STATE(4828), + [sym_bitwise_expression] = STATE(4828), + [sym_cast_expression] = STATE(4828), + [sym_delete_expression] = STATE(4828), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4828), + [sym_lambda_expression] = STATE(4828), + [sym_char_literal] = STATE(4828), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4828), + [sym_equality_expression] = STATE(4828), + [sym_relational_expression] = STATE(4828), + [sym_sizeof_expression] = STATE(4828), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4828), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4828), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4828), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4828), + [sym_math_expression] = STATE(4828), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4828), + [sym_raw_string_literal] = ACTIONS(10434), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10436), + [sym_null] = ACTIONS(10436), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10434), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10436), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10436), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10432), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4689] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4858), - [sym_logical_expression] = STATE(4858), - [sym_bitwise_expression] = STATE(4858), - [sym_cast_expression] = STATE(4858), - [sym_new_expression] = STATE(4858), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4858), - [sym_char_literal] = STATE(4858), - [sym_template_function] = STATE(4858), - [sym_conditional_expression] = STATE(4858), - [sym_equality_expression] = STATE(4858), - [sym_relational_expression] = STATE(4858), - [sym_delete_expression] = STATE(4858), - [sym_sizeof_expression] = STATE(4858), - [sym_parenthesized_expression] = STATE(4858), - [sym_lambda_expression] = STATE(4858), - [sym_concatenated_string] = STATE(4858), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4858), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4858), - [sym_math_expression] = STATE(4858), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10472), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10474), - [sym_null] = ACTIONS(10474), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10472), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10474), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10474), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4660] = { + [sym_template_function] = STATE(4829), + [sym__expression] = STATE(4829), + [sym_logical_expression] = STATE(4829), + [sym_bitwise_expression] = STATE(4829), + [sym_cast_expression] = STATE(4829), + [sym_delete_expression] = STATE(4829), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4829), + [sym_lambda_expression] = STATE(4829), + [sym_char_literal] = STATE(4829), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4829), + [sym_equality_expression] = STATE(4829), + [sym_relational_expression] = STATE(4829), + [sym_sizeof_expression] = STATE(4829), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4829), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4829), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4829), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4829), + [sym_math_expression] = STATE(4829), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4829), + [sym_raw_string_literal] = ACTIONS(10438), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10440), + [sym_null] = ACTIONS(10440), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10438), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10440), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10440), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4690] = { - [aux_sym_try_statement_repeat1] = STATE(4690), - [sym_catch_clause] = STATE(4690), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [anon_sym_else] = ACTIONS(5353), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(5357), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_namespace] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_using] = ACTIONS(5353), - [sym_preproc_directive] = ACTIONS(5353), - [aux_sym_preproc_if_token1] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_RBRACE] = ACTIONS(5355), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [sym_operator_name] = ACTIONS(5355), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [aux_sym_preproc_include_token1] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_template] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [aux_sym_preproc_def_token1] = ACTIONS(5353), - [anon_sym_AMP_AMP] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [4661] = { + [sym_catch_clause] = STATE(4661), + [aux_sym_try_statement_repeat1] = STATE(4661), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5352), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(5356), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_namespace] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_using] = ACTIONS(5352), + [sym_preproc_directive] = ACTIONS(5352), + [aux_sym_preproc_if_token1] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [sym_operator_name] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [aux_sym_preproc_include_token1] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_template] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [aux_sym_preproc_def_token1] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [4691] = { - [sym_do_statement] = STATE(4859), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4662] = { + [sym_do_statement] = STATE(4830), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4859), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4859), - [sym_if_statement] = STATE(4859), - [sym_switch_statement] = STATE(4859), - [sym_for_statement] = STATE(4859), - [sym_return_statement] = STATE(4859), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4830), + [sym_try_statement] = STATE(4830), + [sym_if_statement] = STATE(4830), + [sym_switch_statement] = STATE(4830), + [sym_for_statement] = STATE(4830), + [sym_return_statement] = STATE(4830), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4859), - [sym_break_statement] = STATE(4859), - [sym_continue_statement] = STATE(4859), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4830), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4859), - [sym_labeled_statement] = STATE(4859), - [sym_expression_statement] = STATE(4859), - [sym_while_statement] = STATE(4859), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4830), + [sym_for_range_loop] = STATE(4830), + [sym_compound_statement] = STATE(4830), + [sym_labeled_statement] = STATE(4830), + [sym_expression_statement] = STATE(4830), + [sym_while_statement] = STATE(4830), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -190174,18 +189586,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -190198,254 +189610,808 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4692] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10476), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4663] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10442), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4693] = { - [anon_sym_LPAREN2] = ACTIONS(7477), - [anon_sym_struct] = ACTIONS(7475), - [sym_auto] = ACTIONS(7475), - [anon_sym_signed] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [anon_sym_long] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7477), - [anon_sym_using] = ACTIONS(7475), - [aux_sym_preproc_else_token1] = ACTIONS(7475), - [aux_sym_preproc_if_token2] = ACTIONS(7475), - [sym_preproc_directive] = ACTIONS(7475), - [aux_sym_preproc_if_token1] = ACTIONS(7475), - [anon_sym_AMP] = ACTIONS(7475), - [anon_sym_static] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_typedef] = ACTIONS(7475), - [anon_sym_STAR] = ACTIONS(7477), - [anon_sym_union] = ACTIONS(7475), - [anon_sym_typename] = ACTIONS(7475), - [anon_sym_private] = ACTIONS(7475), - [anon_sym_explicit] = ACTIONS(7475), - [anon_sym_short] = ACTIONS(7475), - [sym_identifier] = ACTIONS(7475), - [sym_operator_name] = ACTIONS(7477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7475), - [anon_sym_register] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [anon_sym_const] = ACTIONS(7475), - [anon_sym_extern] = ACTIONS(7475), - [anon_sym_virtual] = ACTIONS(7475), - [anon_sym_enum] = ACTIONS(7475), - [anon_sym_class] = ACTIONS(7475), - [anon_sym_constexpr] = ACTIONS(7475), - [sym_primitive_type] = ACTIONS(7475), - [anon_sym_unsigned] = ACTIONS(7475), - [anon_sym_public] = ACTIONS(7475), - [anon_sym_protected] = ACTIONS(7475), - [anon_sym_friend] = ACTIONS(7475), - [anon_sym_template] = ACTIONS(7475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7475), - [anon_sym_TILDE] = ACTIONS(7477), - [aux_sym_preproc_elif_token1] = ACTIONS(7475), - [aux_sym_preproc_def_token1] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7477), - [anon_sym_inline] = ACTIONS(7475), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(7475), + [4664] = { + [anon_sym_LPAREN2] = ACTIONS(7461), + [anon_sym_struct] = ACTIONS(7459), + [sym_auto] = ACTIONS(7459), + [anon_sym_signed] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [anon_sym_long] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7461), + [anon_sym_using] = ACTIONS(7459), + [aux_sym_preproc_else_token1] = ACTIONS(7459), + [aux_sym_preproc_if_token2] = ACTIONS(7459), + [sym_preproc_directive] = ACTIONS(7459), + [aux_sym_preproc_if_token1] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_static] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_typedef] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7461), + [anon_sym_union] = ACTIONS(7459), + [anon_sym_typename] = ACTIONS(7459), + [anon_sym_private] = ACTIONS(7459), + [anon_sym_explicit] = ACTIONS(7459), + [anon_sym_short] = ACTIONS(7459), + [sym_identifier] = ACTIONS(7459), + [sym_operator_name] = ACTIONS(7461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7459), + [anon_sym_register] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_extern] = ACTIONS(7459), + [anon_sym_LBRACK] = ACTIONS(7459), + [anon_sym_virtual] = ACTIONS(7459), + [anon_sym_enum] = ACTIONS(7459), + [anon_sym_class] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [sym_primitive_type] = ACTIONS(7459), + [anon_sym_unsigned] = ACTIONS(7459), + [anon_sym_public] = ACTIONS(7459), + [anon_sym_protected] = ACTIONS(7459), + [anon_sym_friend] = ACTIONS(7459), + [anon_sym_template] = ACTIONS(7459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7459), + [anon_sym_TILDE] = ACTIONS(7461), + [aux_sym_preproc_elif_token1] = ACTIONS(7459), + [aux_sym_preproc_def_token1] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_inline] = ACTIONS(7459), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(7459), }, - [4694] = { - [anon_sym_LPAREN2] = ACTIONS(5247), - [anon_sym_struct] = ACTIONS(5245), - [sym_auto] = ACTIONS(5245), - [anon_sym_signed] = ACTIONS(5245), - [anon_sym_mutable] = ACTIONS(5245), - [anon_sym_long] = ACTIONS(5245), - [anon_sym_COLON_COLON] = ACTIONS(5247), - [anon_sym_using] = ACTIONS(5245), - [aux_sym_preproc_if_token2] = ACTIONS(5245), - [sym_preproc_directive] = ACTIONS(5245), - [aux_sym_preproc_if_token1] = ACTIONS(5245), - [anon_sym_AMP] = ACTIONS(5245), - [anon_sym_static] = ACTIONS(5245), - [anon_sym_volatile] = ACTIONS(5245), - [anon_sym_typedef] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_union] = ACTIONS(5245), - [anon_sym_typename] = ACTIONS(5245), - [anon_sym_private] = ACTIONS(5245), - [anon_sym_explicit] = ACTIONS(5245), - [anon_sym_short] = ACTIONS(5245), - [sym_identifier] = ACTIONS(5245), - [sym_operator_name] = ACTIONS(5247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5245), - [anon_sym_register] = ACTIONS(5245), - [anon_sym__Atomic] = ACTIONS(5245), - [anon_sym_const] = ACTIONS(5245), - [anon_sym_extern] = ACTIONS(5245), - [anon_sym_virtual] = ACTIONS(5245), - [anon_sym_enum] = ACTIONS(5245), - [anon_sym_class] = ACTIONS(5245), - [anon_sym_constexpr] = ACTIONS(5245), - [sym_primitive_type] = ACTIONS(5245), - [anon_sym_unsigned] = ACTIONS(5245), - [anon_sym_public] = ACTIONS(5245), - [anon_sym_protected] = ACTIONS(5245), - [anon_sym_friend] = ACTIONS(5245), - [anon_sym_template] = ACTIONS(5245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5245), - [anon_sym_TILDE] = ACTIONS(5247), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(5247), - [anon_sym_inline] = ACTIONS(5245), - [anon_sym_restrict] = ACTIONS(5245), + [4665] = { + [anon_sym_LPAREN2] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(5244), + [sym_auto] = ACTIONS(5244), + [anon_sym_signed] = ACTIONS(5244), + [anon_sym_mutable] = ACTIONS(5244), + [anon_sym_long] = ACTIONS(5244), + [anon_sym_COLON_COLON] = ACTIONS(5246), + [anon_sym_using] = ACTIONS(5244), + [aux_sym_preproc_if_token2] = ACTIONS(5244), + [sym_preproc_directive] = ACTIONS(5244), + [aux_sym_preproc_if_token1] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_static] = ACTIONS(5244), + [anon_sym_volatile] = ACTIONS(5244), + [anon_sym_typedef] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_union] = ACTIONS(5244), + [anon_sym_typename] = ACTIONS(5244), + [anon_sym_private] = ACTIONS(5244), + [anon_sym_explicit] = ACTIONS(5244), + [anon_sym_short] = ACTIONS(5244), + [sym_identifier] = ACTIONS(5244), + [sym_operator_name] = ACTIONS(5246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5244), + [anon_sym_register] = ACTIONS(5244), + [anon_sym__Atomic] = ACTIONS(5244), + [anon_sym_const] = ACTIONS(5244), + [anon_sym_extern] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5244), + [anon_sym_virtual] = ACTIONS(5244), + [anon_sym_enum] = ACTIONS(5244), + [anon_sym_class] = ACTIONS(5244), + [anon_sym_constexpr] = ACTIONS(5244), + [sym_primitive_type] = ACTIONS(5244), + [anon_sym_unsigned] = ACTIONS(5244), + [anon_sym_public] = ACTIONS(5244), + [anon_sym_protected] = ACTIONS(5244), + [anon_sym_friend] = ACTIONS(5244), + [anon_sym_template] = ACTIONS(5244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_inline] = ACTIONS(5244), + [anon_sym_restrict] = ACTIONS(5244), }, - [4695] = { + [4666] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10478), + [anon_sym_SEMI] = ACTIONS(10444), }, - [4696] = { - [anon_sym_LPAREN2] = ACTIONS(8764), - [anon_sym_struct] = ACTIONS(8766), - [sym_auto] = ACTIONS(8766), - [anon_sym_signed] = ACTIONS(8766), - [anon_sym_mutable] = ACTIONS(8766), - [anon_sym_long] = ACTIONS(8766), - [anon_sym_COLON_COLON] = ACTIONS(8764), - [anon_sym_using] = ACTIONS(8766), - [aux_sym_preproc_if_token2] = ACTIONS(8766), - [sym_preproc_directive] = ACTIONS(8766), - [aux_sym_preproc_if_token1] = ACTIONS(8766), - [anon_sym_AMP] = ACTIONS(8766), - [anon_sym_static] = ACTIONS(8766), - [anon_sym_volatile] = ACTIONS(8766), - [anon_sym_typedef] = ACTIONS(8766), - [anon_sym_STAR] = ACTIONS(8764), - [anon_sym_union] = ACTIONS(8766), - [anon_sym_typename] = ACTIONS(8766), - [anon_sym_private] = ACTIONS(8766), - [anon_sym_explicit] = ACTIONS(8766), - [anon_sym_short] = ACTIONS(8766), - [sym_identifier] = ACTIONS(8766), - [sym_operator_name] = ACTIONS(8764), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), - [anon_sym_register] = ACTIONS(8766), - [anon_sym__Atomic] = ACTIONS(8766), - [anon_sym_const] = ACTIONS(8766), - [anon_sym_extern] = ACTIONS(8766), - [anon_sym_virtual] = ACTIONS(8766), - [anon_sym_enum] = ACTIONS(8766), - [anon_sym_class] = ACTIONS(8766), - [anon_sym_constexpr] = ACTIONS(8766), - [sym_primitive_type] = ACTIONS(8766), - [anon_sym_unsigned] = ACTIONS(8766), - [anon_sym_public] = ACTIONS(8766), - [anon_sym_protected] = ACTIONS(8766), - [anon_sym_friend] = ACTIONS(8766), - [anon_sym_template] = ACTIONS(8766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8764), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), - [anon_sym_TILDE] = ACTIONS(8764), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8766), - [anon_sym_AMP_AMP] = ACTIONS(8764), - [anon_sym_inline] = ACTIONS(8766), - [anon_sym_restrict] = ACTIONS(8766), + [4667] = { + [anon_sym_LPAREN2] = ACTIONS(8714), + [anon_sym_struct] = ACTIONS(8716), + [sym_auto] = ACTIONS(8716), + [anon_sym_signed] = ACTIONS(8716), + [anon_sym_mutable] = ACTIONS(8716), + [anon_sym_long] = ACTIONS(8716), + [anon_sym_COLON_COLON] = ACTIONS(8714), + [anon_sym_using] = ACTIONS(8716), + [aux_sym_preproc_if_token2] = ACTIONS(8716), + [sym_preproc_directive] = ACTIONS(8716), + [aux_sym_preproc_if_token1] = ACTIONS(8716), + [anon_sym_AMP] = ACTIONS(8716), + [anon_sym_static] = ACTIONS(8716), + [anon_sym_volatile] = ACTIONS(8716), + [anon_sym_typedef] = ACTIONS(8716), + [anon_sym_STAR] = ACTIONS(8714), + [anon_sym_union] = ACTIONS(8716), + [anon_sym_typename] = ACTIONS(8716), + [anon_sym_private] = ACTIONS(8716), + [anon_sym_explicit] = ACTIONS(8716), + [anon_sym_short] = ACTIONS(8716), + [sym_identifier] = ACTIONS(8716), + [sym_operator_name] = ACTIONS(8714), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8716), + [anon_sym_register] = ACTIONS(8716), + [anon_sym__Atomic] = ACTIONS(8716), + [anon_sym_const] = ACTIONS(8716), + [anon_sym_extern] = ACTIONS(8716), + [anon_sym_LBRACK] = ACTIONS(8716), + [anon_sym_virtual] = ACTIONS(8716), + [anon_sym_enum] = ACTIONS(8716), + [anon_sym_class] = ACTIONS(8716), + [anon_sym_constexpr] = ACTIONS(8716), + [sym_primitive_type] = ACTIONS(8716), + [anon_sym_unsigned] = ACTIONS(8716), + [anon_sym_public] = ACTIONS(8716), + [anon_sym_protected] = ACTIONS(8716), + [anon_sym_friend] = ACTIONS(8716), + [anon_sym_template] = ACTIONS(8716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8714), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8716), + [anon_sym_TILDE] = ACTIONS(8714), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(8716), + [anon_sym_AMP_AMP] = ACTIONS(8714), + [anon_sym_inline] = ACTIONS(8716), + [anon_sym_restrict] = ACTIONS(8716), }, - [4697] = { - [aux_sym_preproc_if_token2] = ACTIONS(10480), + [4668] = { + [aux_sym_preproc_if_token2] = ACTIONS(10446), [sym_comment] = ACTIONS(3), }, - [4698] = { - [sym_parameter_list] = STATE(1049), - [aux_sym_type_definition_repeat2] = STATE(4864), - [anon_sym_LPAREN2] = ACTIONS(587), + [4669] = { + [aux_sym_type_definition_repeat2] = STATE(4835), + [sym_parameter_list] = STATE(1045), + [anon_sym_LPAREN2] = ACTIONS(614), [sym_comment] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10482), + [anon_sym_SEMI] = ACTIONS(10448), }, - [4699] = { - [anon_sym_LPAREN2] = ACTIONS(4151), - [anon_sym_struct] = ACTIONS(4149), - [sym_auto] = ACTIONS(4149), - [anon_sym_signed] = ACTIONS(4149), - [anon_sym_mutable] = ACTIONS(4149), - [anon_sym_long] = ACTIONS(4149), - [anon_sym_COLON_COLON] = ACTIONS(4151), - [anon_sym_using] = ACTIONS(4149), - [aux_sym_preproc_if_token2] = ACTIONS(4149), - [sym_preproc_directive] = ACTIONS(4149), - [aux_sym_preproc_if_token1] = ACTIONS(4149), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_volatile] = ACTIONS(4149), - [anon_sym_typedef] = ACTIONS(4149), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_union] = ACTIONS(4149), - [anon_sym_typename] = ACTIONS(4149), - [anon_sym_private] = ACTIONS(4149), - [anon_sym_explicit] = ACTIONS(4149), - [anon_sym_short] = ACTIONS(4149), - [sym_identifier] = ACTIONS(4149), - [sym_operator_name] = ACTIONS(4151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4149), - [anon_sym_register] = ACTIONS(4149), - [anon_sym__Atomic] = ACTIONS(4149), - [anon_sym_const] = ACTIONS(4149), - [anon_sym_extern] = ACTIONS(4149), - [anon_sym_virtual] = ACTIONS(4149), - [anon_sym_enum] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_constexpr] = ACTIONS(4149), - [sym_primitive_type] = ACTIONS(4149), - [anon_sym_unsigned] = ACTIONS(4149), - [anon_sym_public] = ACTIONS(4149), - [anon_sym_protected] = ACTIONS(4149), - [anon_sym_friend] = ACTIONS(4149), - [anon_sym_template] = ACTIONS(4149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4149), - [anon_sym_TILDE] = ACTIONS(4151), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(4149), - [anon_sym_AMP_AMP] = ACTIONS(4151), - [anon_sym_inline] = ACTIONS(4149), - [anon_sym_restrict] = ACTIONS(4149), + [4670] = { + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_struct] = ACTIONS(4147), + [sym_auto] = ACTIONS(4147), + [anon_sym_signed] = ACTIONS(4147), + [anon_sym_mutable] = ACTIONS(4147), + [anon_sym_long] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_using] = ACTIONS(4147), + [aux_sym_preproc_if_token2] = ACTIONS(4147), + [sym_preproc_directive] = ACTIONS(4147), + [aux_sym_preproc_if_token1] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_static] = ACTIONS(4147), + [anon_sym_volatile] = ACTIONS(4147), + [anon_sym_typedef] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_union] = ACTIONS(4147), + [anon_sym_typename] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_explicit] = ACTIONS(4147), + [anon_sym_short] = ACTIONS(4147), + [sym_identifier] = ACTIONS(4147), + [sym_operator_name] = ACTIONS(4149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4147), + [anon_sym_register] = ACTIONS(4147), + [anon_sym__Atomic] = ACTIONS(4147), + [anon_sym_const] = ACTIONS(4147), + [anon_sym_extern] = ACTIONS(4147), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_virtual] = ACTIONS(4147), + [anon_sym_enum] = ACTIONS(4147), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_constexpr] = ACTIONS(4147), + [sym_primitive_type] = ACTIONS(4147), + [anon_sym_unsigned] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_friend] = ACTIONS(4147), + [anon_sym_template] = ACTIONS(4147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4147), + [anon_sym_TILDE] = ACTIONS(4149), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(4147), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_restrict] = ACTIONS(4147), }, - [4700] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [4671] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10482), + [anon_sym_SEMI] = ACTIONS(10448), }, - [4701] = { + [4672] = { + [anon_sym_LPAREN2] = ACTIONS(8768), + [anon_sym_struct] = ACTIONS(8770), + [sym_auto] = ACTIONS(8770), + [anon_sym_signed] = ACTIONS(8770), + [anon_sym_mutable] = ACTIONS(8770), + [anon_sym_long] = ACTIONS(8770), + [anon_sym_COLON_COLON] = ACTIONS(8768), + [anon_sym_using] = ACTIONS(8770), + [aux_sym_preproc_if_token2] = ACTIONS(8770), + [sym_preproc_directive] = ACTIONS(8770), + [aux_sym_preproc_if_token1] = ACTIONS(8770), + [anon_sym_AMP] = ACTIONS(8770), + [anon_sym_static] = ACTIONS(8770), + [anon_sym_volatile] = ACTIONS(8770), + [anon_sym_typedef] = ACTIONS(8770), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_union] = ACTIONS(8770), + [anon_sym_typename] = ACTIONS(8770), + [anon_sym_private] = ACTIONS(8770), + [anon_sym_explicit] = ACTIONS(8770), + [anon_sym_short] = ACTIONS(8770), + [sym_identifier] = ACTIONS(8770), + [sym_operator_name] = ACTIONS(8768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8770), + [anon_sym_register] = ACTIONS(8770), + [anon_sym__Atomic] = ACTIONS(8770), + [anon_sym_const] = ACTIONS(8770), + [anon_sym_extern] = ACTIONS(8770), + [anon_sym_LBRACK] = ACTIONS(8770), + [anon_sym_virtual] = ACTIONS(8770), + [anon_sym_enum] = ACTIONS(8770), + [anon_sym_class] = ACTIONS(8770), + [anon_sym_constexpr] = ACTIONS(8770), + [sym_primitive_type] = ACTIONS(8770), + [anon_sym_unsigned] = ACTIONS(8770), + [anon_sym_public] = ACTIONS(8770), + [anon_sym_protected] = ACTIONS(8770), + [anon_sym_friend] = ACTIONS(8770), + [anon_sym_template] = ACTIONS(8770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8770), + [anon_sym_TILDE] = ACTIONS(8768), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(8770), + [anon_sym_AMP_AMP] = ACTIONS(8768), + [anon_sym_inline] = ACTIONS(8770), + [anon_sym_restrict] = ACTIONS(8770), + }, + [4673] = { + [aux_sym_preproc_if_token2] = ACTIONS(10450), + [sym_comment] = ACTIONS(3), + }, + [4674] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10452), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [4675] = { + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(10452), + }, + [4676] = { + [anon_sym_LPAREN2] = ACTIONS(8776), + [anon_sym_struct] = ACTIONS(8778), + [sym_auto] = ACTIONS(8778), + [anon_sym_signed] = ACTIONS(8778), + [anon_sym_mutable] = ACTIONS(8778), + [anon_sym_long] = ACTIONS(8778), + [anon_sym_COLON_COLON] = ACTIONS(8776), + [anon_sym_using] = ACTIONS(8778), + [aux_sym_preproc_if_token2] = ACTIONS(8778), + [sym_preproc_directive] = ACTIONS(8778), + [aux_sym_preproc_if_token1] = ACTIONS(8778), + [anon_sym_AMP] = ACTIONS(8778), + [anon_sym_static] = ACTIONS(8778), + [anon_sym_volatile] = ACTIONS(8778), + [anon_sym_typedef] = ACTIONS(8778), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_union] = ACTIONS(8778), + [anon_sym_typename] = ACTIONS(8778), + [anon_sym_private] = ACTIONS(8778), + [anon_sym_explicit] = ACTIONS(8778), + [anon_sym_short] = ACTIONS(8778), + [sym_identifier] = ACTIONS(8778), + [sym_operator_name] = ACTIONS(8776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8778), + [anon_sym_register] = ACTIONS(8778), + [anon_sym__Atomic] = ACTIONS(8778), + [anon_sym_const] = ACTIONS(8778), + [anon_sym_extern] = ACTIONS(8778), + [anon_sym_LBRACK] = ACTIONS(8778), + [anon_sym_virtual] = ACTIONS(8778), + [anon_sym_enum] = ACTIONS(8778), + [anon_sym_class] = ACTIONS(8778), + [anon_sym_constexpr] = ACTIONS(8778), + [sym_primitive_type] = ACTIONS(8778), + [anon_sym_unsigned] = ACTIONS(8778), + [anon_sym_public] = ACTIONS(8778), + [anon_sym_protected] = ACTIONS(8778), + [anon_sym_friend] = ACTIONS(8778), + [anon_sym_template] = ACTIONS(8778), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8778), + [anon_sym_TILDE] = ACTIONS(8776), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(8778), + [anon_sym_AMP_AMP] = ACTIONS(8776), + [anon_sym_inline] = ACTIONS(8778), + [anon_sym_restrict] = ACTIONS(8778), + }, + [4677] = { + [sym_template_function] = STATE(4838), + [sym__expression] = STATE(4838), + [sym_logical_expression] = STATE(4838), + [sym_bitwise_expression] = STATE(4838), + [sym_cast_expression] = STATE(4838), + [sym_delete_expression] = STATE(4838), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4838), + [sym_lambda_expression] = STATE(4838), + [sym_char_literal] = STATE(4838), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4838), + [sym_equality_expression] = STATE(4838), + [sym_relational_expression] = STATE(4838), + [sym_sizeof_expression] = STATE(4838), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4839), + [sym_parenthesized_expression] = STATE(4838), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4838), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4838), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4838), + [sym_math_expression] = STATE(4838), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4838), + [sym_raw_string_literal] = ACTIONS(10454), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10456), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10456), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10454), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10456), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10456), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [4678] = { + [sym_bitfield_clause] = STATE(4839), + [sym_initializer_list] = STATE(4839), + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(5213), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(10458), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(10452), + }, + [4679] = { + [sym_compound_statement] = STATE(4842), + [sym_argument_list] = STATE(1027), + [sym_parameter_list] = STATE(1028), + [sym_initializer_list] = STATE(1027), + [aux_sym_declaration_repeat1] = STATE(4843), + [anon_sym_LPAREN2] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(9672), + [anon_sym_SEMI] = ACTIONS(10460), + }, + [4680] = { + [aux_sym_declaration_repeat1] = STATE(4843), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10460), + }, + [4681] = { + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_struct] = ACTIONS(4111), + [sym_auto] = ACTIONS(4111), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_using] = ACTIONS(4111), + [aux_sym_preproc_if_token2] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_private] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [sym_identifier] = ACTIONS(4111), + [sym_operator_name] = ACTIONS(4113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_public] = ACTIONS(4111), + [anon_sym_protected] = ACTIONS(4111), + [anon_sym_friend] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4113), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym_restrict] = ACTIONS(4111), + }, + [4682] = { + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_struct] = ACTIONS(4115), + [sym_auto] = ACTIONS(4115), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_using] = ACTIONS(4115), + [aux_sym_preproc_if_token2] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_private] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [sym_identifier] = ACTIONS(4115), + [sym_operator_name] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_public] = ACTIONS(4115), + [anon_sym_protected] = ACTIONS(4115), + [anon_sym_friend] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [anon_sym_TILDE] = ACTIONS(4117), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym_restrict] = ACTIONS(4115), + }, + [4683] = { + [aux_sym_declaration_repeat1] = STATE(2034), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10460), + }, + [4684] = { + [anon_sym_LPAREN2] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1915), + [sym_auto] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_mutable] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1915), + [aux_sym_preproc_if_token2] = ACTIONS(1915), + [sym_preproc_directive] = ACTIONS(1915), + [aux_sym_preproc_if_token1] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_volatile] = ACTIONS(1915), + [anon_sym_typedef] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_typename] = ACTIONS(1915), + [anon_sym_private] = ACTIONS(1915), + [anon_sym_explicit] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1915), + [sym_operator_name] = ACTIONS(1917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym__Atomic] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_virtual] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_constexpr] = ACTIONS(1915), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_public] = ACTIONS(1915), + [anon_sym_protected] = ACTIONS(1915), + [anon_sym_friend] = ACTIONS(1915), + [anon_sym_template] = ACTIONS(1915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(1915), + [anon_sym_AMP_AMP] = ACTIONS(1917), + [anon_sym_inline] = ACTIONS(1915), + [anon_sym_restrict] = ACTIONS(1915), + }, + [4685] = { + [anon_sym_LPAREN2] = ACTIONS(5903), + [anon_sym_struct] = ACTIONS(5901), + [sym_auto] = ACTIONS(5901), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_mutable] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_COLON_COLON] = ACTIONS(5903), + [anon_sym_using] = ACTIONS(5901), + [aux_sym_preproc_if_token2] = ACTIONS(5901), + [sym_preproc_directive] = ACTIONS(5901), + [aux_sym_preproc_if_token1] = ACTIONS(5901), + [anon_sym_AMP] = ACTIONS(5901), + [anon_sym_static] = ACTIONS(5901), + [anon_sym_volatile] = ACTIONS(5901), + [anon_sym_typedef] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_union] = ACTIONS(5901), + [anon_sym_typename] = ACTIONS(5901), + [anon_sym_private] = ACTIONS(5901), + [anon_sym_explicit] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [sym_identifier] = ACTIONS(5901), + [sym_operator_name] = ACTIONS(5903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5901), + [anon_sym_register] = ACTIONS(5901), + [anon_sym__Atomic] = ACTIONS(5901), + [anon_sym_const] = ACTIONS(5901), + [anon_sym_extern] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5901), + [anon_sym_virtual] = ACTIONS(5901), + [anon_sym_enum] = ACTIONS(5901), + [anon_sym_class] = ACTIONS(5901), + [anon_sym_constexpr] = ACTIONS(5901), + [sym_primitive_type] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_public] = ACTIONS(5901), + [anon_sym_protected] = ACTIONS(5901), + [anon_sym_friend] = ACTIONS(5901), + [anon_sym_template] = ACTIONS(5901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5901), + [anon_sym_TILDE] = ACTIONS(5903), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5901), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_inline] = ACTIONS(5901), + [anon_sym_restrict] = ACTIONS(5901), + }, + [4686] = { + [anon_sym_LPAREN2] = ACTIONS(5915), + [anon_sym_struct] = ACTIONS(5913), + [sym_auto] = ACTIONS(5913), + [anon_sym_signed] = ACTIONS(5913), + [anon_sym_mutable] = ACTIONS(5913), + [anon_sym_long] = ACTIONS(5913), + [anon_sym_COLON_COLON] = ACTIONS(5915), + [anon_sym_using] = ACTIONS(5913), + [aux_sym_preproc_if_token2] = ACTIONS(5913), + [sym_preproc_directive] = ACTIONS(5913), + [aux_sym_preproc_if_token1] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_static] = ACTIONS(5913), + [anon_sym_volatile] = ACTIONS(5913), + [anon_sym_typedef] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_union] = ACTIONS(5913), + [anon_sym_typename] = ACTIONS(5913), + [anon_sym_private] = ACTIONS(5913), + [anon_sym_explicit] = ACTIONS(5913), + [anon_sym_short] = ACTIONS(5913), + [sym_identifier] = ACTIONS(5913), + [sym_operator_name] = ACTIONS(5915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5913), + [anon_sym_register] = ACTIONS(5913), + [anon_sym__Atomic] = ACTIONS(5913), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_extern] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_virtual] = ACTIONS(5913), + [anon_sym_enum] = ACTIONS(5913), + [anon_sym_class] = ACTIONS(5913), + [anon_sym_constexpr] = ACTIONS(5913), + [sym_primitive_type] = ACTIONS(5913), + [anon_sym_unsigned] = ACTIONS(5913), + [anon_sym_public] = ACTIONS(5913), + [anon_sym_protected] = ACTIONS(5913), + [anon_sym_friend] = ACTIONS(5913), + [anon_sym_template] = ACTIONS(5913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5913), + [anon_sym_TILDE] = ACTIONS(5915), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5913), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_inline] = ACTIONS(5913), + [anon_sym_restrict] = ACTIONS(5913), + }, + [4687] = { + [anon_sym_LF] = ACTIONS(10462), + [sym_comment] = ACTIONS(244), + }, + [4688] = { + [sym_parameter_list] = STATE(2505), + [sym_bitfield_clause] = STATE(4839), + [sym_initializer_list] = STATE(4839), + [aux_sym_field_declaration_repeat1] = STATE(4845), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(10452), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(10458), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + }, + [4689] = { + [sym_template_function] = STATE(4838), + [sym__expression] = STATE(4838), + [sym_logical_expression] = STATE(4838), + [sym_bitwise_expression] = STATE(4838), + [sym_cast_expression] = STATE(4838), + [sym_delete_expression] = STATE(4838), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4838), + [sym_lambda_expression] = STATE(4838), + [sym_char_literal] = STATE(4838), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4838), + [sym_equality_expression] = STATE(4838), + [sym_relational_expression] = STATE(4838), + [sym_sizeof_expression] = STATE(4838), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4839), + [sym_parenthesized_expression] = STATE(4838), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4838), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4838), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4838), + [sym_math_expression] = STATE(4838), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4838), + [sym_raw_string_literal] = ACTIONS(10454), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10456), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10456), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10454), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10456), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10456), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(10156), + [anon_sym_LBRACE] = ACTIONS(175), + }, + [4690] = { [anon_sym_LPAREN2] = ACTIONS(8804), [anon_sym_struct] = ACTIONS(8806), [sym_auto] = ACTIONS(8806), @@ -190474,6 +190440,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(8806), [anon_sym_const] = ACTIONS(8806), [anon_sym_extern] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8806), [anon_sym_virtual] = ACTIONS(8806), [anon_sym_enum] = ACTIONS(8806), [anon_sym_class] = ACTIONS(8806), @@ -190493,1729 +190460,1199 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(8806), [anon_sym_restrict] = ACTIONS(8806), }, - [4702] = { - [aux_sym_preproc_if_token2] = ACTIONS(10484), - [sym_comment] = ACTIONS(3), - }, - [4703] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10486), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [4704] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10486), - }, - [4705] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4867), - [sym_logical_expression] = STATE(4867), - [sym_bitwise_expression] = STATE(4867), - [sym_cast_expression] = STATE(4867), - [sym_new_expression] = STATE(4867), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4867), - [sym_char_literal] = STATE(4867), - [sym_template_function] = STATE(4867), - [sym_conditional_expression] = STATE(4867), - [sym_equality_expression] = STATE(4867), - [sym_relational_expression] = STATE(4867), - [sym_delete_expression] = STATE(4867), - [sym_sizeof_expression] = STATE(4867), - [sym_parenthesized_expression] = STATE(4867), - [sym_initializer_list] = STATE(4868), - [sym_concatenated_string] = STATE(4867), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4867), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4867), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4867), - [sym_math_expression] = STATE(4867), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10488), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10490), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10490), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10488), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10490), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10490), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(175), - }, - [4706] = { - [anon_sym_LPAREN2] = ACTIONS(8816), - [anon_sym_struct] = ACTIONS(8818), - [sym_auto] = ACTIONS(8818), - [anon_sym_signed] = ACTIONS(8818), - [anon_sym_mutable] = ACTIONS(8818), - [anon_sym_long] = ACTIONS(8818), - [anon_sym_COLON_COLON] = ACTIONS(8816), - [anon_sym_using] = ACTIONS(8818), - [aux_sym_preproc_if_token2] = ACTIONS(8818), - [sym_preproc_directive] = ACTIONS(8818), - [aux_sym_preproc_if_token1] = ACTIONS(8818), - [anon_sym_AMP] = ACTIONS(8818), - [anon_sym_static] = ACTIONS(8818), - [anon_sym_volatile] = ACTIONS(8818), - [anon_sym_typedef] = ACTIONS(8818), - [anon_sym_STAR] = ACTIONS(8816), - [anon_sym_union] = ACTIONS(8818), - [anon_sym_typename] = ACTIONS(8818), - [anon_sym_private] = ACTIONS(8818), - [anon_sym_explicit] = ACTIONS(8818), - [anon_sym_short] = ACTIONS(8818), - [sym_identifier] = ACTIONS(8818), - [sym_operator_name] = ACTIONS(8816), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8818), - [anon_sym_register] = ACTIONS(8818), - [anon_sym__Atomic] = ACTIONS(8818), - [anon_sym_const] = ACTIONS(8818), - [anon_sym_extern] = ACTIONS(8818), - [anon_sym_virtual] = ACTIONS(8818), - [anon_sym_enum] = ACTIONS(8818), - [anon_sym_class] = ACTIONS(8818), - [anon_sym_constexpr] = ACTIONS(8818), - [sym_primitive_type] = ACTIONS(8818), - [anon_sym_unsigned] = ACTIONS(8818), - [anon_sym_public] = ACTIONS(8818), - [anon_sym_protected] = ACTIONS(8818), - [anon_sym_friend] = ACTIONS(8818), - [anon_sym_template] = ACTIONS(8818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8816), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8818), - [anon_sym_TILDE] = ACTIONS(8816), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8818), - [anon_sym_AMP_AMP] = ACTIONS(8816), - [anon_sym_inline] = ACTIONS(8818), - [anon_sym_restrict] = ACTIONS(8818), - }, - [4707] = { - [sym_bitfield_clause] = STATE(4868), - [aux_sym_field_declaration_repeat1] = STATE(3485), - [sym_initializer_list] = STATE(4868), - [anon_sym_COLON] = ACTIONS(5122), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(10492), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(10486), - }, - [4708] = { - [sym_compound_statement] = STATE(4871), - [sym_parameter_list] = STATE(1015), - [sym_argument_list] = STATE(1016), - [aux_sym_declaration_repeat1] = STATE(4872), - [sym_initializer_list] = STATE(1016), - [anon_sym_LPAREN2] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(9674), - [anon_sym_SEMI] = ACTIONS(10494), - }, - [4709] = { - [aux_sym_declaration_repeat1] = STATE(4872), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10494), - }, - [4710] = { - [anon_sym_LPAREN2] = ACTIONS(4077), - [anon_sym_struct] = ACTIONS(4075), - [sym_auto] = ACTIONS(4075), - [anon_sym_signed] = ACTIONS(4075), - [anon_sym_mutable] = ACTIONS(4075), - [anon_sym_long] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_using] = ACTIONS(4075), - [aux_sym_preproc_if_token2] = ACTIONS(4075), - [sym_preproc_directive] = ACTIONS(4075), - [aux_sym_preproc_if_token1] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_volatile] = ACTIONS(4075), - [anon_sym_typedef] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4077), - [anon_sym_union] = ACTIONS(4075), - [anon_sym_typename] = ACTIONS(4075), - [anon_sym_private] = ACTIONS(4075), - [anon_sym_explicit] = ACTIONS(4075), - [anon_sym_short] = ACTIONS(4075), - [sym_identifier] = ACTIONS(4075), - [sym_operator_name] = ACTIONS(4077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4075), - [anon_sym_register] = ACTIONS(4075), - [anon_sym__Atomic] = ACTIONS(4075), - [anon_sym_const] = ACTIONS(4075), - [anon_sym_extern] = ACTIONS(4075), - [anon_sym_virtual] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_class] = ACTIONS(4075), - [anon_sym_constexpr] = ACTIONS(4075), - [sym_primitive_type] = ACTIONS(4075), - [anon_sym_unsigned] = ACTIONS(4075), - [anon_sym_public] = ACTIONS(4075), - [anon_sym_protected] = ACTIONS(4075), - [anon_sym_friend] = ACTIONS(4075), - [anon_sym_template] = ACTIONS(4075), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4075), - [anon_sym_TILDE] = ACTIONS(4077), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(4075), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_restrict] = ACTIONS(4075), - }, - [4711] = { - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_struct] = ACTIONS(4079), - [sym_auto] = ACTIONS(4079), - [anon_sym_signed] = ACTIONS(4079), - [anon_sym_mutable] = ACTIONS(4079), - [anon_sym_long] = ACTIONS(4079), - [anon_sym_COLON_COLON] = ACTIONS(4081), - [anon_sym_using] = ACTIONS(4079), - [aux_sym_preproc_if_token2] = ACTIONS(4079), - [sym_preproc_directive] = ACTIONS(4079), - [aux_sym_preproc_if_token1] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(4079), - [anon_sym_static] = ACTIONS(4079), - [anon_sym_volatile] = ACTIONS(4079), - [anon_sym_typedef] = ACTIONS(4079), - [anon_sym_STAR] = ACTIONS(4081), - [anon_sym_union] = ACTIONS(4079), - [anon_sym_typename] = ACTIONS(4079), - [anon_sym_private] = ACTIONS(4079), - [anon_sym_explicit] = ACTIONS(4079), - [anon_sym_short] = ACTIONS(4079), - [sym_identifier] = ACTIONS(4079), - [sym_operator_name] = ACTIONS(4081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4079), - [anon_sym_register] = ACTIONS(4079), - [anon_sym__Atomic] = ACTIONS(4079), - [anon_sym_const] = ACTIONS(4079), - [anon_sym_extern] = ACTIONS(4079), - [anon_sym_virtual] = ACTIONS(4079), - [anon_sym_enum] = ACTIONS(4079), - [anon_sym_class] = ACTIONS(4079), - [anon_sym_constexpr] = ACTIONS(4079), - [sym_primitive_type] = ACTIONS(4079), - [anon_sym_unsigned] = ACTIONS(4079), - [anon_sym_public] = ACTIONS(4079), - [anon_sym_protected] = ACTIONS(4079), - [anon_sym_friend] = ACTIONS(4079), - [anon_sym_template] = ACTIONS(4079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4081), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4079), - [anon_sym_TILDE] = ACTIONS(4081), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(4079), - [anon_sym_AMP_AMP] = ACTIONS(4081), - [anon_sym_inline] = ACTIONS(4079), - [anon_sym_restrict] = ACTIONS(4079), - }, - [4712] = { - [aux_sym_declaration_repeat1] = STATE(2028), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10494), - }, - [4713] = { - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2016), - [sym_auto] = ACTIONS(2016), - [anon_sym_signed] = ACTIONS(2016), - [anon_sym_mutable] = ACTIONS(2016), - [anon_sym_long] = ACTIONS(2016), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_using] = ACTIONS(2016), - [aux_sym_preproc_if_token2] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2016), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_typename] = ACTIONS(2016), - [anon_sym_private] = ACTIONS(2016), - [anon_sym_explicit] = ACTIONS(2016), - [anon_sym_short] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2016), - [sym_operator_name] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), - [anon_sym_register] = ACTIONS(2016), - [anon_sym__Atomic] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_virtual] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_class] = ACTIONS(2016), - [anon_sym_constexpr] = ACTIONS(2016), - [sym_primitive_type] = ACTIONS(2016), - [anon_sym_unsigned] = ACTIONS(2016), - [anon_sym_public] = ACTIONS(2016), - [anon_sym_protected] = ACTIONS(2016), - [anon_sym_friend] = ACTIONS(2016), - [anon_sym_template] = ACTIONS(2016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2016), - [anon_sym_restrict] = ACTIONS(2016), - }, - [4714] = { - [anon_sym_LPAREN2] = ACTIONS(5896), - [anon_sym_struct] = ACTIONS(5894), - [sym_auto] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(5894), - [anon_sym_mutable] = ACTIONS(5894), - [anon_sym_long] = ACTIONS(5894), - [anon_sym_COLON_COLON] = ACTIONS(5896), - [anon_sym_using] = ACTIONS(5894), - [aux_sym_preproc_if_token2] = ACTIONS(5894), - [sym_preproc_directive] = ACTIONS(5894), - [aux_sym_preproc_if_token1] = ACTIONS(5894), - [anon_sym_AMP] = ACTIONS(5894), - [anon_sym_static] = ACTIONS(5894), - [anon_sym_volatile] = ACTIONS(5894), - [anon_sym_typedef] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5896), - [anon_sym_union] = ACTIONS(5894), - [anon_sym_typename] = ACTIONS(5894), - [anon_sym_private] = ACTIONS(5894), - [anon_sym_explicit] = ACTIONS(5894), - [anon_sym_short] = ACTIONS(5894), - [sym_identifier] = ACTIONS(5894), - [sym_operator_name] = ACTIONS(5896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5894), - [anon_sym_register] = ACTIONS(5894), - [anon_sym__Atomic] = ACTIONS(5894), - [anon_sym_const] = ACTIONS(5894), - [anon_sym_extern] = ACTIONS(5894), - [anon_sym_virtual] = ACTIONS(5894), - [anon_sym_enum] = ACTIONS(5894), - [anon_sym_class] = ACTIONS(5894), - [anon_sym_constexpr] = ACTIONS(5894), - [sym_primitive_type] = ACTIONS(5894), - [anon_sym_unsigned] = ACTIONS(5894), - [anon_sym_public] = ACTIONS(5894), - [anon_sym_protected] = ACTIONS(5894), - [anon_sym_friend] = ACTIONS(5894), - [anon_sym_template] = ACTIONS(5894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5894), - [anon_sym_TILDE] = ACTIONS(5896), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5896), - [anon_sym_inline] = ACTIONS(5894), - [anon_sym_restrict] = ACTIONS(5894), - }, - [4715] = { - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_struct] = ACTIONS(5906), - [sym_auto] = ACTIONS(5906), - [anon_sym_signed] = ACTIONS(5906), - [anon_sym_mutable] = ACTIONS(5906), - [anon_sym_long] = ACTIONS(5906), - [anon_sym_COLON_COLON] = ACTIONS(5908), - [anon_sym_using] = ACTIONS(5906), - [aux_sym_preproc_if_token2] = ACTIONS(5906), - [sym_preproc_directive] = ACTIONS(5906), - [aux_sym_preproc_if_token1] = ACTIONS(5906), - [anon_sym_AMP] = ACTIONS(5906), - [anon_sym_static] = ACTIONS(5906), - [anon_sym_volatile] = ACTIONS(5906), - [anon_sym_typedef] = ACTIONS(5906), - [anon_sym_STAR] = ACTIONS(5908), - [anon_sym_union] = ACTIONS(5906), - [anon_sym_typename] = ACTIONS(5906), - [anon_sym_private] = ACTIONS(5906), - [anon_sym_explicit] = ACTIONS(5906), - [anon_sym_short] = ACTIONS(5906), - [sym_identifier] = ACTIONS(5906), - [sym_operator_name] = ACTIONS(5908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), - [anon_sym_register] = ACTIONS(5906), - [anon_sym__Atomic] = ACTIONS(5906), - [anon_sym_const] = ACTIONS(5906), - [anon_sym_extern] = ACTIONS(5906), - [anon_sym_virtual] = ACTIONS(5906), - [anon_sym_enum] = ACTIONS(5906), - [anon_sym_class] = ACTIONS(5906), - [anon_sym_constexpr] = ACTIONS(5906), - [sym_primitive_type] = ACTIONS(5906), - [anon_sym_unsigned] = ACTIONS(5906), - [anon_sym_public] = ACTIONS(5906), - [anon_sym_protected] = ACTIONS(5906), - [anon_sym_friend] = ACTIONS(5906), - [anon_sym_template] = ACTIONS(5906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), - [anon_sym_TILDE] = ACTIONS(5908), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5906), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_inline] = ACTIONS(5906), - [anon_sym_restrict] = ACTIONS(5906), - }, - [4716] = { - [anon_sym_LF] = ACTIONS(10496), - [sym_comment] = ACTIONS(244), - }, - [4717] = { - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_struct] = ACTIONS(5912), - [sym_auto] = ACTIONS(5912), - [anon_sym_signed] = ACTIONS(5912), - [anon_sym_mutable] = ACTIONS(5912), - [anon_sym_long] = ACTIONS(5912), - [anon_sym_COLON_COLON] = ACTIONS(5914), - [anon_sym_using] = ACTIONS(5912), - [aux_sym_preproc_if_token2] = ACTIONS(5912), - [sym_preproc_directive] = ACTIONS(5912), - [aux_sym_preproc_if_token1] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_static] = ACTIONS(5912), - [anon_sym_volatile] = ACTIONS(5912), - [anon_sym_typedef] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_union] = ACTIONS(5912), - [anon_sym_typename] = ACTIONS(5912), - [anon_sym_private] = ACTIONS(5912), - [anon_sym_explicit] = ACTIONS(5912), - [anon_sym_short] = ACTIONS(5912), - [sym_identifier] = ACTIONS(5912), - [sym_operator_name] = ACTIONS(5914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5912), - [anon_sym_register] = ACTIONS(5912), - [anon_sym__Atomic] = ACTIONS(5912), - [anon_sym_const] = ACTIONS(5912), - [anon_sym_extern] = ACTIONS(5912), - [anon_sym_virtual] = ACTIONS(5912), - [anon_sym_enum] = ACTIONS(5912), - [anon_sym_class] = ACTIONS(5912), - [anon_sym_constexpr] = ACTIONS(5912), - [sym_primitive_type] = ACTIONS(5912), - [anon_sym_unsigned] = ACTIONS(5912), - [anon_sym_public] = ACTIONS(5912), - [anon_sym_protected] = ACTIONS(5912), - [anon_sym_friend] = ACTIONS(5912), - [anon_sym_template] = ACTIONS(5912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5912), - [anon_sym_TILDE] = ACTIONS(5914), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5912), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_inline] = ACTIONS(5912), - [anon_sym_restrict] = ACTIONS(5912), - }, - [4718] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(884), - [sym_logical_expression] = STATE(884), - [sym_bitwise_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_new_expression] = STATE(884), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(884), - [sym_char_literal] = STATE(884), - [sym_template_function] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_equality_expression] = STATE(884), - [sym_relational_expression] = STATE(884), - [sym_delete_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(884), - [sym_lambda_expression] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(884), - [sym_math_expression] = STATE(884), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10192), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), - }, - [4719] = { - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(962), - [sym_auto] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_mutable] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_using] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_union] = ACTIONS(962), - [anon_sym_typename] = ACTIONS(962), - [anon_sym_private] = ACTIONS(962), - [anon_sym_explicit] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), - [sym_operator_name] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_virtual] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_constexpr] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_public] = ACTIONS(962), - [anon_sym_protected] = ACTIONS(962), - [anon_sym_friend] = ACTIONS(962), - [anon_sym_template] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(2397), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(962), - }, - [4720] = { - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_struct] = ACTIONS(5934), - [sym_auto] = ACTIONS(5934), - [anon_sym_signed] = ACTIONS(5934), - [anon_sym_mutable] = ACTIONS(5934), - [anon_sym_long] = ACTIONS(5934), - [anon_sym_COLON_COLON] = ACTIONS(5936), - [anon_sym_using] = ACTIONS(5934), - [aux_sym_preproc_if_token2] = ACTIONS(5934), - [sym_preproc_directive] = ACTIONS(5934), - [aux_sym_preproc_if_token1] = ACTIONS(5934), - [anon_sym_AMP] = ACTIONS(5934), - [anon_sym_static] = ACTIONS(5934), - [anon_sym_volatile] = ACTIONS(5934), - [anon_sym_typedef] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_union] = ACTIONS(5934), - [anon_sym_typename] = ACTIONS(5934), - [anon_sym_private] = ACTIONS(5934), - [anon_sym_explicit] = ACTIONS(5934), - [anon_sym_short] = ACTIONS(5934), - [sym_identifier] = ACTIONS(5934), - [sym_operator_name] = ACTIONS(5936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5934), - [anon_sym_register] = ACTIONS(5934), - [anon_sym__Atomic] = ACTIONS(5934), - [anon_sym_const] = ACTIONS(5934), - [anon_sym_extern] = ACTIONS(5934), - [anon_sym_virtual] = ACTIONS(5934), - [anon_sym_enum] = ACTIONS(5934), - [anon_sym_class] = ACTIONS(5934), - [anon_sym_constexpr] = ACTIONS(5934), - [sym_primitive_type] = ACTIONS(5934), - [anon_sym_unsigned] = ACTIONS(5934), - [anon_sym_public] = ACTIONS(5934), - [anon_sym_protected] = ACTIONS(5934), - [anon_sym_friend] = ACTIONS(5934), - [anon_sym_template] = ACTIONS(5934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5934), - [anon_sym_TILDE] = ACTIONS(5936), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_inline] = ACTIONS(5934), - [anon_sym_restrict] = ACTIONS(5934), + [4691] = { + [sym_template_function] = STATE(885), + [sym__expression] = STATE(885), + [sym_logical_expression] = STATE(885), + [sym_bitwise_expression] = STATE(885), + [sym_cast_expression] = STATE(885), + [sym_delete_expression] = STATE(885), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(885), + [sym_lambda_expression] = STATE(885), + [sym_char_literal] = STATE(885), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(885), + [sym_equality_expression] = STATE(885), + [sym_relational_expression] = STATE(885), + [sym_sizeof_expression] = STATE(885), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(885), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(885), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(885), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(885), + [sym_math_expression] = STATE(885), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(885), + [sym_raw_string_literal] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(1587), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10162), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4721] = { - [anon_sym_LPAREN2] = ACTIONS(5940), - [anon_sym_struct] = ACTIONS(5938), - [sym_auto] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(5938), - [anon_sym_mutable] = ACTIONS(5938), - [anon_sym_long] = ACTIONS(5938), - [anon_sym_COLON_COLON] = ACTIONS(5940), - [anon_sym_using] = ACTIONS(5938), - [aux_sym_preproc_if_token2] = ACTIONS(5938), - [sym_preproc_directive] = ACTIONS(5938), - [aux_sym_preproc_if_token1] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_static] = ACTIONS(5938), - [anon_sym_volatile] = ACTIONS(5938), - [anon_sym_typedef] = ACTIONS(5938), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_union] = ACTIONS(5938), - [anon_sym_typename] = ACTIONS(5938), - [anon_sym_private] = ACTIONS(5938), - [anon_sym_explicit] = ACTIONS(5938), - [anon_sym_short] = ACTIONS(5938), - [sym_identifier] = ACTIONS(5938), - [sym_operator_name] = ACTIONS(5940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), - [anon_sym_register] = ACTIONS(5938), - [anon_sym__Atomic] = ACTIONS(5938), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_extern] = ACTIONS(5938), - [anon_sym_virtual] = ACTIONS(5938), - [anon_sym_enum] = ACTIONS(5938), - [anon_sym_class] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5938), - [sym_primitive_type] = ACTIONS(5938), - [anon_sym_unsigned] = ACTIONS(5938), - [anon_sym_public] = ACTIONS(5938), - [anon_sym_protected] = ACTIONS(5938), - [anon_sym_friend] = ACTIONS(5938), - [anon_sym_template] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), - [anon_sym_TILDE] = ACTIONS(5940), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(5938), - [anon_sym_AMP_AMP] = ACTIONS(5940), - [anon_sym_inline] = ACTIONS(5938), - [anon_sym_restrict] = ACTIONS(5938), + [4692] = { + [anon_sym_LPAREN2] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(966), + [sym_auto] = ACTIONS(966), + [anon_sym_signed] = ACTIONS(966), + [anon_sym_mutable] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_using] = ACTIONS(966), + [aux_sym_preproc_if_token2] = ACTIONS(966), + [sym_preproc_directive] = ACTIONS(966), + [aux_sym_preproc_if_token1] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_union] = ACTIONS(966), + [anon_sym_typename] = ACTIONS(966), + [anon_sym_private] = ACTIONS(966), + [anon_sym_explicit] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [sym_identifier] = ACTIONS(966), + [sym_operator_name] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(966), + [anon_sym__Atomic] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_virtual] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_constexpr] = ACTIONS(966), + [sym_primitive_type] = ACTIONS(966), + [anon_sym_unsigned] = ACTIONS(966), + [anon_sym_public] = ACTIONS(966), + [anon_sym_protected] = ACTIONS(966), + [anon_sym_friend] = ACTIONS(966), + [anon_sym_template] = ACTIONS(966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(2399), + [aux_sym_preproc_def_token1] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(966), }, - [4722] = { - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2707), - [sym_auto] = ACTIONS(2707), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2707), - [aux_sym_preproc_if_token2] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_private] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2707), - [sym_operator_name] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_public] = ACTIONS(2707), - [anon_sym_protected] = ACTIONS(2707), - [anon_sym_friend] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), + [4693] = { + [anon_sym_LPAREN2] = ACTIONS(6128), + [anon_sym_struct] = ACTIONS(6126), + [sym_auto] = ACTIONS(6126), + [anon_sym_signed] = ACTIONS(6126), + [anon_sym_mutable] = ACTIONS(6126), + [anon_sym_long] = ACTIONS(6126), + [anon_sym_COLON_COLON] = ACTIONS(6128), + [anon_sym_using] = ACTIONS(6126), + [aux_sym_preproc_if_token2] = ACTIONS(6126), + [sym_preproc_directive] = ACTIONS(6126), + [aux_sym_preproc_if_token1] = ACTIONS(6126), + [anon_sym_AMP] = ACTIONS(6126), + [anon_sym_static] = ACTIONS(6126), + [anon_sym_volatile] = ACTIONS(6126), + [anon_sym_typedef] = ACTIONS(6126), + [anon_sym_STAR] = ACTIONS(6128), + [anon_sym_union] = ACTIONS(6126), + [anon_sym_typename] = ACTIONS(6126), + [anon_sym_private] = ACTIONS(6126), + [anon_sym_explicit] = ACTIONS(6126), + [anon_sym_short] = ACTIONS(6126), + [sym_identifier] = ACTIONS(6126), + [sym_operator_name] = ACTIONS(6128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6126), + [anon_sym_register] = ACTIONS(6126), + [anon_sym__Atomic] = ACTIONS(6126), + [anon_sym_const] = ACTIONS(6126), + [anon_sym_extern] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(6126), + [anon_sym_virtual] = ACTIONS(6126), + [anon_sym_enum] = ACTIONS(6126), + [anon_sym_class] = ACTIONS(6126), + [anon_sym_constexpr] = ACTIONS(6126), + [sym_primitive_type] = ACTIONS(6126), + [anon_sym_unsigned] = ACTIONS(6126), + [anon_sym_public] = ACTIONS(6126), + [anon_sym_protected] = ACTIONS(6126), + [anon_sym_friend] = ACTIONS(6126), + [anon_sym_template] = ACTIONS(6126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6126), + [anon_sym_TILDE] = ACTIONS(6128), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(6126), + [anon_sym_AMP_AMP] = ACTIONS(6128), + [anon_sym_inline] = ACTIONS(6126), + [anon_sym_restrict] = ACTIONS(6126), }, - [4723] = { - [sym_parameter_list] = STATE(2522), - [sym_bitfield_clause] = STATE(4868), - [aux_sym_field_declaration_repeat1] = STATE(4874), - [sym_initializer_list] = STATE(4868), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(10486), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(10492), - [anon_sym_LBRACE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), + [4694] = { + [anon_sym_LPAREN2] = ACTIONS(6132), + [anon_sym_struct] = ACTIONS(6130), + [sym_auto] = ACTIONS(6130), + [anon_sym_signed] = ACTIONS(6130), + [anon_sym_mutable] = ACTIONS(6130), + [anon_sym_long] = ACTIONS(6130), + [anon_sym_COLON_COLON] = ACTIONS(6132), + [anon_sym_using] = ACTIONS(6130), + [aux_sym_preproc_if_token2] = ACTIONS(6130), + [sym_preproc_directive] = ACTIONS(6130), + [aux_sym_preproc_if_token1] = ACTIONS(6130), + [anon_sym_AMP] = ACTIONS(6130), + [anon_sym_static] = ACTIONS(6130), + [anon_sym_volatile] = ACTIONS(6130), + [anon_sym_typedef] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(6132), + [anon_sym_union] = ACTIONS(6130), + [anon_sym_typename] = ACTIONS(6130), + [anon_sym_private] = ACTIONS(6130), + [anon_sym_explicit] = ACTIONS(6130), + [anon_sym_short] = ACTIONS(6130), + [sym_identifier] = ACTIONS(6130), + [sym_operator_name] = ACTIONS(6132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6130), + [anon_sym_register] = ACTIONS(6130), + [anon_sym__Atomic] = ACTIONS(6130), + [anon_sym_const] = ACTIONS(6130), + [anon_sym_extern] = ACTIONS(6130), + [anon_sym_LBRACK] = ACTIONS(6130), + [anon_sym_virtual] = ACTIONS(6130), + [anon_sym_enum] = ACTIONS(6130), + [anon_sym_class] = ACTIONS(6130), + [anon_sym_constexpr] = ACTIONS(6130), + [sym_primitive_type] = ACTIONS(6130), + [anon_sym_unsigned] = ACTIONS(6130), + [anon_sym_public] = ACTIONS(6130), + [anon_sym_protected] = ACTIONS(6130), + [anon_sym_friend] = ACTIONS(6130), + [anon_sym_template] = ACTIONS(6130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6130), + [anon_sym_TILDE] = ACTIONS(6132), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(6130), + [anon_sym_AMP_AMP] = ACTIONS(6132), + [anon_sym_inline] = ACTIONS(6130), + [anon_sym_restrict] = ACTIONS(6130), }, - [4724] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4867), - [sym_logical_expression] = STATE(4867), - [sym_bitwise_expression] = STATE(4867), - [sym_cast_expression] = STATE(4867), - [sym_new_expression] = STATE(4867), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4867), - [sym_char_literal] = STATE(4867), - [sym_template_function] = STATE(4867), - [sym_conditional_expression] = STATE(4867), - [sym_equality_expression] = STATE(4867), - [sym_relational_expression] = STATE(4867), - [sym_delete_expression] = STATE(4867), - [sym_sizeof_expression] = STATE(4867), - [sym_parenthesized_expression] = STATE(4867), - [sym_initializer_list] = STATE(4868), - [sym_concatenated_string] = STATE(4867), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4867), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4867), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4867), - [sym_math_expression] = STATE(4867), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10488), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10490), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10490), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10488), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10490), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10490), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(10186), - [anon_sym_LBRACE] = ACTIONS(175), + [4695] = { + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2709), + [sym_auto] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_using] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_private] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2709), + [sym_operator_name] = ACTIONS(2711), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_public] = ACTIONS(2709), + [anon_sym_protected] = ACTIONS(2709), + [anon_sym_friend] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), }, - [4725] = { - [anon_sym_LPAREN2] = ACTIONS(8873), - [anon_sym_struct] = ACTIONS(8875), - [sym_auto] = ACTIONS(8875), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_mutable] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_COLON_COLON] = ACTIONS(8873), - [anon_sym_using] = ACTIONS(8875), - [aux_sym_preproc_if_token2] = ACTIONS(8875), - [sym_preproc_directive] = ACTIONS(8875), - [aux_sym_preproc_if_token1] = ACTIONS(8875), - [anon_sym_AMP] = ACTIONS(8875), - [anon_sym_static] = ACTIONS(8875), - [anon_sym_volatile] = ACTIONS(8875), - [anon_sym_typedef] = ACTIONS(8875), - [anon_sym_STAR] = ACTIONS(8873), - [anon_sym_union] = ACTIONS(8875), - [anon_sym_typename] = ACTIONS(8875), - [anon_sym_private] = ACTIONS(8875), - [anon_sym_explicit] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [sym_identifier] = ACTIONS(8875), - [sym_operator_name] = ACTIONS(8873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8875), - [anon_sym_register] = ACTIONS(8875), - [anon_sym__Atomic] = ACTIONS(8875), - [anon_sym_const] = ACTIONS(8875), - [anon_sym_extern] = ACTIONS(8875), - [anon_sym_virtual] = ACTIONS(8875), - [anon_sym_enum] = ACTIONS(8875), - [anon_sym_class] = ACTIONS(8875), - [anon_sym_constexpr] = ACTIONS(8875), - [sym_primitive_type] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_public] = ACTIONS(8875), - [anon_sym_protected] = ACTIONS(8875), - [anon_sym_friend] = ACTIONS(8875), - [anon_sym_template] = ACTIONS(8875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8873), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8875), - [anon_sym_TILDE] = ACTIONS(8873), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8875), - [anon_sym_AMP_AMP] = ACTIONS(8873), - [anon_sym_inline] = ACTIONS(8875), - [anon_sym_restrict] = ACTIONS(8875), + [4696] = { + [anon_sym_LPAREN2] = ACTIONS(6136), + [anon_sym_struct] = ACTIONS(6134), + [sym_auto] = ACTIONS(6134), + [anon_sym_signed] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [anon_sym_long] = ACTIONS(6134), + [anon_sym_COLON_COLON] = ACTIONS(6136), + [anon_sym_using] = ACTIONS(6134), + [aux_sym_preproc_if_token2] = ACTIONS(6134), + [sym_preproc_directive] = ACTIONS(6134), + [aux_sym_preproc_if_token1] = ACTIONS(6134), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_static] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_typedef] = ACTIONS(6134), + [anon_sym_STAR] = ACTIONS(6136), + [anon_sym_union] = ACTIONS(6134), + [anon_sym_typename] = ACTIONS(6134), + [anon_sym_private] = ACTIONS(6134), + [anon_sym_explicit] = ACTIONS(6134), + [anon_sym_short] = ACTIONS(6134), + [sym_identifier] = ACTIONS(6134), + [sym_operator_name] = ACTIONS(6136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6134), + [anon_sym_register] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [anon_sym_const] = ACTIONS(6134), + [anon_sym_extern] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_virtual] = ACTIONS(6134), + [anon_sym_enum] = ACTIONS(6134), + [anon_sym_class] = ACTIONS(6134), + [anon_sym_constexpr] = ACTIONS(6134), + [sym_primitive_type] = ACTIONS(6134), + [anon_sym_unsigned] = ACTIONS(6134), + [anon_sym_public] = ACTIONS(6134), + [anon_sym_protected] = ACTIONS(6134), + [anon_sym_friend] = ACTIONS(6134), + [anon_sym_template] = ACTIONS(6134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6134), + [anon_sym_TILDE] = ACTIONS(6136), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(6134), + [anon_sym_AMP_AMP] = ACTIONS(6136), + [anon_sym_inline] = ACTIONS(6134), + [anon_sym_restrict] = ACTIONS(6134), }, - [4726] = { - [anon_sym_LPAREN2] = ACTIONS(9762), - [anon_sym_struct] = ACTIONS(9764), - [sym_auto] = ACTIONS(9764), - [anon_sym_signed] = ACTIONS(9764), - [anon_sym_mutable] = ACTIONS(9764), - [anon_sym_long] = ACTIONS(9764), - [anon_sym_COLON_COLON] = ACTIONS(9762), - [anon_sym_using] = ACTIONS(9764), - [aux_sym_preproc_else_token1] = ACTIONS(9764), - [aux_sym_preproc_if_token2] = ACTIONS(9764), - [sym_preproc_directive] = ACTIONS(9764), - [aux_sym_preproc_if_token1] = ACTIONS(9764), - [anon_sym_AMP] = ACTIONS(9764), - [anon_sym_static] = ACTIONS(9764), - [anon_sym_volatile] = ACTIONS(9764), - [anon_sym_typedef] = ACTIONS(9764), - [anon_sym_STAR] = ACTIONS(9762), - [anon_sym_union] = ACTIONS(9764), - [anon_sym_typename] = ACTIONS(9764), - [anon_sym_private] = ACTIONS(9764), - [anon_sym_explicit] = ACTIONS(9764), - [anon_sym_short] = ACTIONS(9764), - [sym_identifier] = ACTIONS(9764), - [sym_operator_name] = ACTIONS(9762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9764), - [anon_sym_register] = ACTIONS(9764), - [anon_sym__Atomic] = ACTIONS(9764), - [anon_sym_const] = ACTIONS(9764), - [anon_sym_extern] = ACTIONS(9764), - [anon_sym_virtual] = ACTIONS(9764), - [anon_sym_enum] = ACTIONS(9764), - [anon_sym_class] = ACTIONS(9764), - [anon_sym_constexpr] = ACTIONS(9764), - [sym_primitive_type] = ACTIONS(9764), - [anon_sym_unsigned] = ACTIONS(9764), - [anon_sym_public] = ACTIONS(9764), - [anon_sym_protected] = ACTIONS(9764), - [anon_sym_friend] = ACTIONS(9764), - [anon_sym_template] = ACTIONS(9764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9764), - [anon_sym_TILDE] = ACTIONS(9762), - [aux_sym_preproc_elif_token1] = ACTIONS(9764), - [aux_sym_preproc_def_token1] = ACTIONS(9764), - [anon_sym_AMP_AMP] = ACTIONS(9762), - [anon_sym_inline] = ACTIONS(9764), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(9764), + [4697] = { + [anon_sym_LPAREN2] = ACTIONS(9718), + [anon_sym_struct] = ACTIONS(9720), + [sym_auto] = ACTIONS(9720), + [anon_sym_signed] = ACTIONS(9720), + [anon_sym_mutable] = ACTIONS(9720), + [anon_sym_long] = ACTIONS(9720), + [anon_sym_COLON_COLON] = ACTIONS(9718), + [anon_sym_using] = ACTIONS(9720), + [aux_sym_preproc_else_token1] = ACTIONS(9720), + [aux_sym_preproc_if_token2] = ACTIONS(9720), + [sym_preproc_directive] = ACTIONS(9720), + [aux_sym_preproc_if_token1] = ACTIONS(9720), + [anon_sym_AMP] = ACTIONS(9720), + [anon_sym_static] = ACTIONS(9720), + [anon_sym_volatile] = ACTIONS(9720), + [anon_sym_typedef] = ACTIONS(9720), + [anon_sym_STAR] = ACTIONS(9718), + [anon_sym_union] = ACTIONS(9720), + [anon_sym_typename] = ACTIONS(9720), + [anon_sym_private] = ACTIONS(9720), + [anon_sym_explicit] = ACTIONS(9720), + [anon_sym_short] = ACTIONS(9720), + [sym_identifier] = ACTIONS(9720), + [sym_operator_name] = ACTIONS(9718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9720), + [anon_sym_register] = ACTIONS(9720), + [anon_sym__Atomic] = ACTIONS(9720), + [anon_sym_const] = ACTIONS(9720), + [anon_sym_extern] = ACTIONS(9720), + [anon_sym_LBRACK] = ACTIONS(9720), + [anon_sym_virtual] = ACTIONS(9720), + [anon_sym_enum] = ACTIONS(9720), + [anon_sym_class] = ACTIONS(9720), + [anon_sym_constexpr] = ACTIONS(9720), + [sym_primitive_type] = ACTIONS(9720), + [anon_sym_unsigned] = ACTIONS(9720), + [anon_sym_public] = ACTIONS(9720), + [anon_sym_protected] = ACTIONS(9720), + [anon_sym_friend] = ACTIONS(9720), + [anon_sym_template] = ACTIONS(9720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9720), + [anon_sym_TILDE] = ACTIONS(9718), + [aux_sym_preproc_elif_token1] = ACTIONS(9720), + [aux_sym_preproc_def_token1] = ACTIONS(9720), + [anon_sym_AMP_AMP] = ACTIONS(9718), + [anon_sym_inline] = ACTIONS(9720), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(9720), }, - [4727] = { - [anon_sym_LPAREN2] = ACTIONS(6418), - [anon_sym_struct] = ACTIONS(6416), - [sym_auto] = ACTIONS(6416), - [anon_sym_signed] = ACTIONS(6416), - [anon_sym_mutable] = ACTIONS(6416), - [anon_sym_long] = ACTIONS(6416), - [anon_sym_COLON_COLON] = ACTIONS(6418), - [anon_sym_using] = ACTIONS(6416), - [aux_sym_preproc_else_token1] = ACTIONS(6416), - [aux_sym_preproc_if_token2] = ACTIONS(6416), - [sym_preproc_directive] = ACTIONS(6416), - [aux_sym_preproc_if_token1] = ACTIONS(6416), - [anon_sym_AMP] = ACTIONS(6416), - [anon_sym_static] = ACTIONS(6416), - [anon_sym_volatile] = ACTIONS(6416), - [anon_sym_typedef] = ACTIONS(6416), - [anon_sym_STAR] = ACTIONS(6418), - [anon_sym_union] = ACTIONS(6416), - [anon_sym_typename] = ACTIONS(6416), - [anon_sym_private] = ACTIONS(6416), - [anon_sym_explicit] = ACTIONS(6416), - [anon_sym_short] = ACTIONS(6416), - [sym_identifier] = ACTIONS(6416), - [sym_operator_name] = ACTIONS(6418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6416), - [anon_sym_register] = ACTIONS(6416), - [anon_sym__Atomic] = ACTIONS(6416), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_extern] = ACTIONS(6416), - [anon_sym_virtual] = ACTIONS(6416), - [anon_sym_enum] = ACTIONS(6416), - [anon_sym_class] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6416), - [sym_primitive_type] = ACTIONS(6416), - [anon_sym_unsigned] = ACTIONS(6416), - [anon_sym_public] = ACTIONS(6416), - [anon_sym_protected] = ACTIONS(6416), - [anon_sym_friend] = ACTIONS(6416), - [anon_sym_template] = ACTIONS(6416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6416), - [anon_sym_TILDE] = ACTIONS(6418), - [aux_sym_preproc_elif_token1] = ACTIONS(6416), - [aux_sym_preproc_def_token1] = ACTIONS(6416), - [anon_sym_AMP_AMP] = ACTIONS(6418), - [anon_sym_inline] = ACTIONS(6416), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(6416), + [4698] = { + [anon_sym_LPAREN2] = ACTIONS(6407), + [anon_sym_struct] = ACTIONS(6405), + [sym_auto] = ACTIONS(6405), + [anon_sym_signed] = ACTIONS(6405), + [anon_sym_mutable] = ACTIONS(6405), + [anon_sym_long] = ACTIONS(6405), + [anon_sym_COLON_COLON] = ACTIONS(6407), + [anon_sym_using] = ACTIONS(6405), + [aux_sym_preproc_else_token1] = ACTIONS(6405), + [aux_sym_preproc_if_token2] = ACTIONS(6405), + [sym_preproc_directive] = ACTIONS(6405), + [aux_sym_preproc_if_token1] = ACTIONS(6405), + [anon_sym_AMP] = ACTIONS(6405), + [anon_sym_static] = ACTIONS(6405), + [anon_sym_volatile] = ACTIONS(6405), + [anon_sym_typedef] = ACTIONS(6405), + [anon_sym_STAR] = ACTIONS(6407), + [anon_sym_union] = ACTIONS(6405), + [anon_sym_typename] = ACTIONS(6405), + [anon_sym_private] = ACTIONS(6405), + [anon_sym_explicit] = ACTIONS(6405), + [anon_sym_short] = ACTIONS(6405), + [sym_identifier] = ACTIONS(6405), + [sym_operator_name] = ACTIONS(6407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6405), + [anon_sym_register] = ACTIONS(6405), + [anon_sym__Atomic] = ACTIONS(6405), + [anon_sym_const] = ACTIONS(6405), + [anon_sym_extern] = ACTIONS(6405), + [anon_sym_LBRACK] = ACTIONS(6405), + [anon_sym_virtual] = ACTIONS(6405), + [anon_sym_enum] = ACTIONS(6405), + [anon_sym_class] = ACTIONS(6405), + [anon_sym_constexpr] = ACTIONS(6405), + [sym_primitive_type] = ACTIONS(6405), + [anon_sym_unsigned] = ACTIONS(6405), + [anon_sym_public] = ACTIONS(6405), + [anon_sym_protected] = ACTIONS(6405), + [anon_sym_friend] = ACTIONS(6405), + [anon_sym_template] = ACTIONS(6405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6405), + [anon_sym_TILDE] = ACTIONS(6407), + [aux_sym_preproc_elif_token1] = ACTIONS(6405), + [aux_sym_preproc_def_token1] = ACTIONS(6405), + [anon_sym_AMP_AMP] = ACTIONS(6407), + [anon_sym_inline] = ACTIONS(6405), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(6405), }, - [4728] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [4699] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10498), + [anon_sym_SEMI] = ACTIONS(10464), }, - [4729] = { - [anon_sym_LPAREN2] = ACTIONS(9768), - [anon_sym_struct] = ACTIONS(9770), - [sym_auto] = ACTIONS(9770), - [anon_sym_signed] = ACTIONS(9770), - [anon_sym_mutable] = ACTIONS(9770), - [anon_sym_long] = ACTIONS(9770), - [anon_sym_COLON_COLON] = ACTIONS(9768), - [anon_sym_using] = ACTIONS(9770), - [aux_sym_preproc_else_token1] = ACTIONS(9770), - [aux_sym_preproc_if_token2] = ACTIONS(9770), - [sym_preproc_directive] = ACTIONS(9770), - [aux_sym_preproc_if_token1] = ACTIONS(9770), - [anon_sym_AMP] = ACTIONS(9770), - [anon_sym_static] = ACTIONS(9770), - [anon_sym_volatile] = ACTIONS(9770), - [anon_sym_typedef] = ACTIONS(9770), - [anon_sym_STAR] = ACTIONS(9768), - [anon_sym_union] = ACTIONS(9770), - [anon_sym_typename] = ACTIONS(9770), - [anon_sym_private] = ACTIONS(9770), - [anon_sym_explicit] = ACTIONS(9770), - [anon_sym_short] = ACTIONS(9770), - [sym_identifier] = ACTIONS(9770), - [sym_operator_name] = ACTIONS(9768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9770), - [anon_sym_register] = ACTIONS(9770), - [anon_sym__Atomic] = ACTIONS(9770), - [anon_sym_const] = ACTIONS(9770), - [anon_sym_extern] = ACTIONS(9770), - [anon_sym_virtual] = ACTIONS(9770), - [anon_sym_enum] = ACTIONS(9770), - [anon_sym_class] = ACTIONS(9770), - [anon_sym_constexpr] = ACTIONS(9770), - [sym_primitive_type] = ACTIONS(9770), - [anon_sym_unsigned] = ACTIONS(9770), - [anon_sym_public] = ACTIONS(9770), - [anon_sym_protected] = ACTIONS(9770), - [anon_sym_friend] = ACTIONS(9770), - [anon_sym_template] = ACTIONS(9770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9770), - [anon_sym_TILDE] = ACTIONS(9768), - [aux_sym_preproc_elif_token1] = ACTIONS(9770), - [aux_sym_preproc_def_token1] = ACTIONS(9770), - [anon_sym_AMP_AMP] = ACTIONS(9768), - [anon_sym_inline] = ACTIONS(9770), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(9770), + [4700] = { + [anon_sym_LPAREN2] = ACTIONS(9734), + [anon_sym_struct] = ACTIONS(9736), + [sym_auto] = ACTIONS(9736), + [anon_sym_signed] = ACTIONS(9736), + [anon_sym_mutable] = ACTIONS(9736), + [anon_sym_long] = ACTIONS(9736), + [anon_sym_COLON_COLON] = ACTIONS(9734), + [anon_sym_using] = ACTIONS(9736), + [aux_sym_preproc_else_token1] = ACTIONS(9736), + [aux_sym_preproc_if_token2] = ACTIONS(9736), + [sym_preproc_directive] = ACTIONS(9736), + [aux_sym_preproc_if_token1] = ACTIONS(9736), + [anon_sym_AMP] = ACTIONS(9736), + [anon_sym_static] = ACTIONS(9736), + [anon_sym_volatile] = ACTIONS(9736), + [anon_sym_typedef] = ACTIONS(9736), + [anon_sym_STAR] = ACTIONS(9734), + [anon_sym_union] = ACTIONS(9736), + [anon_sym_typename] = ACTIONS(9736), + [anon_sym_private] = ACTIONS(9736), + [anon_sym_explicit] = ACTIONS(9736), + [anon_sym_short] = ACTIONS(9736), + [sym_identifier] = ACTIONS(9736), + [sym_operator_name] = ACTIONS(9734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9736), + [anon_sym_register] = ACTIONS(9736), + [anon_sym__Atomic] = ACTIONS(9736), + [anon_sym_const] = ACTIONS(9736), + [anon_sym_extern] = ACTIONS(9736), + [anon_sym_LBRACK] = ACTIONS(9736), + [anon_sym_virtual] = ACTIONS(9736), + [anon_sym_enum] = ACTIONS(9736), + [anon_sym_class] = ACTIONS(9736), + [anon_sym_constexpr] = ACTIONS(9736), + [sym_primitive_type] = ACTIONS(9736), + [anon_sym_unsigned] = ACTIONS(9736), + [anon_sym_public] = ACTIONS(9736), + [anon_sym_protected] = ACTIONS(9736), + [anon_sym_friend] = ACTIONS(9736), + [anon_sym_template] = ACTIONS(9736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9736), + [anon_sym_TILDE] = ACTIONS(9734), + [aux_sym_preproc_elif_token1] = ACTIONS(9736), + [aux_sym_preproc_def_token1] = ACTIONS(9736), + [anon_sym_AMP_AMP] = ACTIONS(9734), + [anon_sym_inline] = ACTIONS(9736), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(9736), }, - [4730] = { - [anon_sym_LPAREN2] = ACTIONS(9772), - [anon_sym_struct] = ACTIONS(9774), - [sym_auto] = ACTIONS(9774), - [anon_sym_signed] = ACTIONS(9774), - [anon_sym_mutable] = ACTIONS(9774), - [anon_sym_long] = ACTIONS(9774), - [anon_sym_COLON_COLON] = ACTIONS(9772), - [anon_sym_using] = ACTIONS(9774), - [aux_sym_preproc_else_token1] = ACTIONS(9774), - [aux_sym_preproc_if_token2] = ACTIONS(9774), - [sym_preproc_directive] = ACTIONS(9774), - [aux_sym_preproc_if_token1] = ACTIONS(9774), - [anon_sym_AMP] = ACTIONS(9774), - [anon_sym_static] = ACTIONS(9774), - [anon_sym_volatile] = ACTIONS(9774), - [anon_sym_typedef] = ACTIONS(9774), - [anon_sym_STAR] = ACTIONS(9772), - [anon_sym_union] = ACTIONS(9774), - [anon_sym_typename] = ACTIONS(9774), - [anon_sym_private] = ACTIONS(9774), - [anon_sym_explicit] = ACTIONS(9774), - [anon_sym_short] = ACTIONS(9774), - [sym_identifier] = ACTIONS(9774), - [sym_operator_name] = ACTIONS(9772), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9774), - [anon_sym_register] = ACTIONS(9774), - [anon_sym__Atomic] = ACTIONS(9774), - [anon_sym_const] = ACTIONS(9774), - [anon_sym_extern] = ACTIONS(9774), - [anon_sym_virtual] = ACTIONS(9774), - [anon_sym_enum] = ACTIONS(9774), - [anon_sym_class] = ACTIONS(9774), - [anon_sym_constexpr] = ACTIONS(9774), - [sym_primitive_type] = ACTIONS(9774), - [anon_sym_unsigned] = ACTIONS(9774), - [anon_sym_public] = ACTIONS(9774), - [anon_sym_protected] = ACTIONS(9774), - [anon_sym_friend] = ACTIONS(9774), - [anon_sym_template] = ACTIONS(9774), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9772), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9774), - [anon_sym_TILDE] = ACTIONS(9772), - [aux_sym_preproc_elif_token1] = ACTIONS(9774), - [aux_sym_preproc_def_token1] = ACTIONS(9774), - [anon_sym_AMP_AMP] = ACTIONS(9772), - [anon_sym_inline] = ACTIONS(9774), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(9774), + [4701] = { + [anon_sym_LPAREN2] = ACTIONS(9738), + [anon_sym_struct] = ACTIONS(9740), + [sym_auto] = ACTIONS(9740), + [anon_sym_signed] = ACTIONS(9740), + [anon_sym_mutable] = ACTIONS(9740), + [anon_sym_long] = ACTIONS(9740), + [anon_sym_COLON_COLON] = ACTIONS(9738), + [anon_sym_using] = ACTIONS(9740), + [aux_sym_preproc_else_token1] = ACTIONS(9740), + [aux_sym_preproc_if_token2] = ACTIONS(9740), + [sym_preproc_directive] = ACTIONS(9740), + [aux_sym_preproc_if_token1] = ACTIONS(9740), + [anon_sym_AMP] = ACTIONS(9740), + [anon_sym_static] = ACTIONS(9740), + [anon_sym_volatile] = ACTIONS(9740), + [anon_sym_typedef] = ACTIONS(9740), + [anon_sym_STAR] = ACTIONS(9738), + [anon_sym_union] = ACTIONS(9740), + [anon_sym_typename] = ACTIONS(9740), + [anon_sym_private] = ACTIONS(9740), + [anon_sym_explicit] = ACTIONS(9740), + [anon_sym_short] = ACTIONS(9740), + [sym_identifier] = ACTIONS(9740), + [sym_operator_name] = ACTIONS(9738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9740), + [anon_sym_register] = ACTIONS(9740), + [anon_sym__Atomic] = ACTIONS(9740), + [anon_sym_const] = ACTIONS(9740), + [anon_sym_extern] = ACTIONS(9740), + [anon_sym_LBRACK] = ACTIONS(9740), + [anon_sym_virtual] = ACTIONS(9740), + [anon_sym_enum] = ACTIONS(9740), + [anon_sym_class] = ACTIONS(9740), + [anon_sym_constexpr] = ACTIONS(9740), + [sym_primitive_type] = ACTIONS(9740), + [anon_sym_unsigned] = ACTIONS(9740), + [anon_sym_public] = ACTIONS(9740), + [anon_sym_protected] = ACTIONS(9740), + [anon_sym_friend] = ACTIONS(9740), + [anon_sym_template] = ACTIONS(9740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9740), + [anon_sym_TILDE] = ACTIONS(9738), + [aux_sym_preproc_elif_token1] = ACTIONS(9740), + [aux_sym_preproc_def_token1] = ACTIONS(9740), + [anon_sym_AMP_AMP] = ACTIONS(9738), + [anon_sym_inline] = ACTIONS(9740), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(9740), }, - [4731] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10500), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4702] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10466), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4732] = { + [4703] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10500), + [anon_sym_SEMI] = ACTIONS(10466), }, - [4733] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4877), - [sym_logical_expression] = STATE(4877), - [sym_bitwise_expression] = STATE(4877), - [sym_cast_expression] = STATE(4877), - [sym_new_expression] = STATE(4877), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4877), - [sym_char_literal] = STATE(4877), - [sym_template_function] = STATE(4877), - [sym_conditional_expression] = STATE(4877), - [sym_equality_expression] = STATE(4877), - [sym_relational_expression] = STATE(4877), - [sym_delete_expression] = STATE(4877), - [sym_sizeof_expression] = STATE(4877), - [sym_parenthesized_expression] = STATE(4877), - [sym_initializer_list] = STATE(4878), - [sym_concatenated_string] = STATE(4877), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4877), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4877), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4877), - [sym_math_expression] = STATE(4877), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10502), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10504), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10504), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10502), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10504), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10504), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [4704] = { + [sym_template_function] = STATE(4848), + [sym__expression] = STATE(4848), + [sym_logical_expression] = STATE(4848), + [sym_bitwise_expression] = STATE(4848), + [sym_cast_expression] = STATE(4848), + [sym_delete_expression] = STATE(4848), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4848), + [sym_lambda_expression] = STATE(4848), + [sym_char_literal] = STATE(4848), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4848), + [sym_equality_expression] = STATE(4848), + [sym_relational_expression] = STATE(4848), + [sym_sizeof_expression] = STATE(4848), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4849), + [sym_parenthesized_expression] = STATE(4848), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4848), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4848), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4848), + [sym_math_expression] = STATE(4848), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4848), + [sym_raw_string_literal] = ACTIONS(10468), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10470), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10470), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10468), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10470), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10470), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [4734] = { - [anon_sym_LPAREN2] = ACTIONS(6356), - [anon_sym_struct] = ACTIONS(6354), - [sym_auto] = ACTIONS(6354), - [anon_sym_signed] = ACTIONS(6354), - [anon_sym_mutable] = ACTIONS(6354), - [anon_sym_long] = ACTIONS(6354), - [anon_sym_COLON_COLON] = ACTIONS(6356), - [anon_sym_using] = ACTIONS(6354), - [aux_sym_preproc_else_token1] = ACTIONS(6354), - [aux_sym_preproc_if_token2] = ACTIONS(6354), - [sym_preproc_directive] = ACTIONS(6354), - [aux_sym_preproc_if_token1] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(6354), - [anon_sym_static] = ACTIONS(6354), - [anon_sym_volatile] = ACTIONS(6354), - [anon_sym_typedef] = ACTIONS(6354), - [anon_sym_STAR] = ACTIONS(6356), - [anon_sym_union] = ACTIONS(6354), - [anon_sym_typename] = ACTIONS(6354), - [anon_sym_private] = ACTIONS(6354), - [anon_sym_explicit] = ACTIONS(6354), - [anon_sym_short] = ACTIONS(6354), - [sym_identifier] = ACTIONS(6354), - [sym_operator_name] = ACTIONS(6356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6354), - [anon_sym_register] = ACTIONS(6354), - [anon_sym__Atomic] = ACTIONS(6354), - [anon_sym_const] = ACTIONS(6354), - [anon_sym_extern] = ACTIONS(6354), - [anon_sym_virtual] = ACTIONS(6354), - [anon_sym_enum] = ACTIONS(6354), - [anon_sym_class] = ACTIONS(6354), - [anon_sym_constexpr] = ACTIONS(6354), - [sym_primitive_type] = ACTIONS(6354), - [anon_sym_unsigned] = ACTIONS(6354), - [anon_sym_public] = ACTIONS(6354), - [anon_sym_protected] = ACTIONS(6354), - [anon_sym_friend] = ACTIONS(6354), - [anon_sym_template] = ACTIONS(6354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6354), - [anon_sym_TILDE] = ACTIONS(6356), - [aux_sym_preproc_elif_token1] = ACTIONS(6354), - [aux_sym_preproc_def_token1] = ACTIONS(6354), - [anon_sym_AMP_AMP] = ACTIONS(6356), - [anon_sym_inline] = ACTIONS(6354), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(6354), + [4705] = { + [anon_sym_LPAREN2] = ACTIONS(5921), + [anon_sym_struct] = ACTIONS(5919), + [sym_auto] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(5919), + [anon_sym_mutable] = ACTIONS(5919), + [anon_sym_long] = ACTIONS(5919), + [anon_sym_COLON_COLON] = ACTIONS(5921), + [anon_sym_using] = ACTIONS(5919), + [aux_sym_preproc_else_token1] = ACTIONS(5919), + [aux_sym_preproc_if_token2] = ACTIONS(5919), + [sym_preproc_directive] = ACTIONS(5919), + [aux_sym_preproc_if_token1] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_static] = ACTIONS(5919), + [anon_sym_volatile] = ACTIONS(5919), + [anon_sym_typedef] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_union] = ACTIONS(5919), + [anon_sym_typename] = ACTIONS(5919), + [anon_sym_private] = ACTIONS(5919), + [anon_sym_explicit] = ACTIONS(5919), + [anon_sym_short] = ACTIONS(5919), + [sym_identifier] = ACTIONS(5919), + [sym_operator_name] = ACTIONS(5921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5919), + [anon_sym_register] = ACTIONS(5919), + [anon_sym__Atomic] = ACTIONS(5919), + [anon_sym_const] = ACTIONS(5919), + [anon_sym_extern] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_virtual] = ACTIONS(5919), + [anon_sym_enum] = ACTIONS(5919), + [anon_sym_class] = ACTIONS(5919), + [anon_sym_constexpr] = ACTIONS(5919), + [sym_primitive_type] = ACTIONS(5919), + [anon_sym_unsigned] = ACTIONS(5919), + [anon_sym_public] = ACTIONS(5919), + [anon_sym_protected] = ACTIONS(5919), + [anon_sym_friend] = ACTIONS(5919), + [anon_sym_template] = ACTIONS(5919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5919), + [anon_sym_TILDE] = ACTIONS(5921), + [aux_sym_preproc_elif_token1] = ACTIONS(5919), + [aux_sym_preproc_def_token1] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5921), + [anon_sym_inline] = ACTIONS(5919), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5919), }, - [4735] = { - [anon_sym_LPAREN2] = ACTIONS(6363), - [anon_sym_struct] = ACTIONS(6361), - [sym_auto] = ACTIONS(6361), - [anon_sym_signed] = ACTIONS(6361), - [anon_sym_mutable] = ACTIONS(6361), - [anon_sym_long] = ACTIONS(6361), - [anon_sym_COLON_COLON] = ACTIONS(6363), - [anon_sym_using] = ACTIONS(6361), - [aux_sym_preproc_else_token1] = ACTIONS(6361), - [aux_sym_preproc_if_token2] = ACTIONS(6361), - [sym_preproc_directive] = ACTIONS(6361), - [aux_sym_preproc_if_token1] = ACTIONS(6361), - [anon_sym_AMP] = ACTIONS(6361), - [anon_sym_static] = ACTIONS(6361), - [anon_sym_volatile] = ACTIONS(6361), - [anon_sym_typedef] = ACTIONS(6361), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_union] = ACTIONS(6361), - [anon_sym_typename] = ACTIONS(6361), - [anon_sym_private] = ACTIONS(6361), - [anon_sym_explicit] = ACTIONS(6361), - [anon_sym_short] = ACTIONS(6361), - [sym_identifier] = ACTIONS(6361), - [sym_operator_name] = ACTIONS(6363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6361), - [anon_sym_register] = ACTIONS(6361), - [anon_sym__Atomic] = ACTIONS(6361), - [anon_sym_const] = ACTIONS(6361), - [anon_sym_extern] = ACTIONS(6361), - [anon_sym_virtual] = ACTIONS(6361), - [anon_sym_enum] = ACTIONS(6361), - [anon_sym_class] = ACTIONS(6361), - [anon_sym_constexpr] = ACTIONS(6361), - [sym_primitive_type] = ACTIONS(6361), - [anon_sym_unsigned] = ACTIONS(6361), - [anon_sym_public] = ACTIONS(6361), - [anon_sym_protected] = ACTIONS(6361), - [anon_sym_friend] = ACTIONS(6361), - [anon_sym_template] = ACTIONS(6361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6363), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6361), - [anon_sym_TILDE] = ACTIONS(6363), - [aux_sym_preproc_elif_token1] = ACTIONS(6361), - [aux_sym_preproc_def_token1] = ACTIONS(6361), - [anon_sym_AMP_AMP] = ACTIONS(6363), - [anon_sym_inline] = ACTIONS(6361), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(6361), + [4706] = { + [anon_sym_LPAREN2] = ACTIONS(5925), + [anon_sym_struct] = ACTIONS(5923), + [sym_auto] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(5923), + [anon_sym_mutable] = ACTIONS(5923), + [anon_sym_long] = ACTIONS(5923), + [anon_sym_COLON_COLON] = ACTIONS(5925), + [anon_sym_using] = ACTIONS(5923), + [aux_sym_preproc_else_token1] = ACTIONS(5923), + [aux_sym_preproc_if_token2] = ACTIONS(5923), + [sym_preproc_directive] = ACTIONS(5923), + [aux_sym_preproc_if_token1] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5923), + [anon_sym_static] = ACTIONS(5923), + [anon_sym_volatile] = ACTIONS(5923), + [anon_sym_typedef] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5925), + [anon_sym_union] = ACTIONS(5923), + [anon_sym_typename] = ACTIONS(5923), + [anon_sym_private] = ACTIONS(5923), + [anon_sym_explicit] = ACTIONS(5923), + [anon_sym_short] = ACTIONS(5923), + [sym_identifier] = ACTIONS(5923), + [sym_operator_name] = ACTIONS(5925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5923), + [anon_sym_register] = ACTIONS(5923), + [anon_sym__Atomic] = ACTIONS(5923), + [anon_sym_const] = ACTIONS(5923), + [anon_sym_extern] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_virtual] = ACTIONS(5923), + [anon_sym_enum] = ACTIONS(5923), + [anon_sym_class] = ACTIONS(5923), + [anon_sym_constexpr] = ACTIONS(5923), + [sym_primitive_type] = ACTIONS(5923), + [anon_sym_unsigned] = ACTIONS(5923), + [anon_sym_public] = ACTIONS(5923), + [anon_sym_protected] = ACTIONS(5923), + [anon_sym_friend] = ACTIONS(5923), + [anon_sym_template] = ACTIONS(5923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5923), + [anon_sym_TILDE] = ACTIONS(5925), + [aux_sym_preproc_elif_token1] = ACTIONS(5923), + [aux_sym_preproc_def_token1] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_inline] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(5923), }, - [4736] = { - [aux_sym_declaration_repeat1] = STATE(2028), + [4707] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10506), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10472), }, - [4737] = { - [anon_sym_LPAREN2] = ACTIONS(7904), - [anon_sym_struct] = ACTIONS(7902), - [sym_auto] = ACTIONS(7902), - [anon_sym_signed] = ACTIONS(7902), - [anon_sym_mutable] = ACTIONS(7902), - [anon_sym_long] = ACTIONS(7902), - [anon_sym_COLON_COLON] = ACTIONS(7904), - [anon_sym_using] = ACTIONS(7902), - [aux_sym_preproc_else_token1] = ACTIONS(7902), - [aux_sym_preproc_if_token2] = ACTIONS(7902), - [sym_preproc_directive] = ACTIONS(7902), - [aux_sym_preproc_if_token1] = ACTIONS(7902), - [anon_sym_AMP] = ACTIONS(7902), - [anon_sym_static] = ACTIONS(7902), - [anon_sym_volatile] = ACTIONS(7902), - [anon_sym_typedef] = ACTIONS(7902), - [anon_sym_STAR] = ACTIONS(7904), - [anon_sym_union] = ACTIONS(7902), - [anon_sym_typename] = ACTIONS(7902), - [anon_sym_private] = ACTIONS(7902), - [anon_sym_explicit] = ACTIONS(7902), - [anon_sym_short] = ACTIONS(7902), - [sym_identifier] = ACTIONS(7902), - [sym_operator_name] = ACTIONS(7904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7902), - [anon_sym_register] = ACTIONS(7902), - [anon_sym__Atomic] = ACTIONS(7902), - [anon_sym_const] = ACTIONS(7902), - [anon_sym_extern] = ACTIONS(7902), - [anon_sym_virtual] = ACTIONS(7902), - [anon_sym_enum] = ACTIONS(7902), - [anon_sym_class] = ACTIONS(7902), - [anon_sym_constexpr] = ACTIONS(7902), - [sym_primitive_type] = ACTIONS(7902), - [anon_sym_unsigned] = ACTIONS(7902), - [anon_sym_public] = ACTIONS(7902), - [anon_sym_protected] = ACTIONS(7902), - [anon_sym_friend] = ACTIONS(7902), - [anon_sym_template] = ACTIONS(7902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7902), - [anon_sym_TILDE] = ACTIONS(7904), - [aux_sym_preproc_elif_token1] = ACTIONS(7902), - [aux_sym_preproc_def_token1] = ACTIONS(7902), - [anon_sym_AMP_AMP] = ACTIONS(7904), - [anon_sym_inline] = ACTIONS(7902), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(7902), + [4708] = { + [anon_sym_LPAREN2] = ACTIONS(7885), + [anon_sym_struct] = ACTIONS(7883), + [sym_auto] = ACTIONS(7883), + [anon_sym_signed] = ACTIONS(7883), + [anon_sym_mutable] = ACTIONS(7883), + [anon_sym_long] = ACTIONS(7883), + [anon_sym_COLON_COLON] = ACTIONS(7885), + [anon_sym_using] = ACTIONS(7883), + [aux_sym_preproc_else_token1] = ACTIONS(7883), + [aux_sym_preproc_if_token2] = ACTIONS(7883), + [sym_preproc_directive] = ACTIONS(7883), + [aux_sym_preproc_if_token1] = ACTIONS(7883), + [anon_sym_AMP] = ACTIONS(7883), + [anon_sym_static] = ACTIONS(7883), + [anon_sym_volatile] = ACTIONS(7883), + [anon_sym_typedef] = ACTIONS(7883), + [anon_sym_STAR] = ACTIONS(7885), + [anon_sym_union] = ACTIONS(7883), + [anon_sym_typename] = ACTIONS(7883), + [anon_sym_private] = ACTIONS(7883), + [anon_sym_explicit] = ACTIONS(7883), + [anon_sym_short] = ACTIONS(7883), + [sym_identifier] = ACTIONS(7883), + [sym_operator_name] = ACTIONS(7885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7883), + [anon_sym_register] = ACTIONS(7883), + [anon_sym__Atomic] = ACTIONS(7883), + [anon_sym_const] = ACTIONS(7883), + [anon_sym_extern] = ACTIONS(7883), + [anon_sym_LBRACK] = ACTIONS(7883), + [anon_sym_virtual] = ACTIONS(7883), + [anon_sym_enum] = ACTIONS(7883), + [anon_sym_class] = ACTIONS(7883), + [anon_sym_constexpr] = ACTIONS(7883), + [sym_primitive_type] = ACTIONS(7883), + [anon_sym_unsigned] = ACTIONS(7883), + [anon_sym_public] = ACTIONS(7883), + [anon_sym_protected] = ACTIONS(7883), + [anon_sym_friend] = ACTIONS(7883), + [anon_sym_template] = ACTIONS(7883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7885), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7883), + [anon_sym_TILDE] = ACTIONS(7885), + [aux_sym_preproc_elif_token1] = ACTIONS(7883), + [aux_sym_preproc_def_token1] = ACTIONS(7883), + [anon_sym_AMP_AMP] = ACTIONS(7885), + [anon_sym_inline] = ACTIONS(7883), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(7883), }, - [4738] = { - [sym_bitfield_clause] = STATE(4878), - [aux_sym_field_declaration_repeat1] = STATE(3485), - [sym_initializer_list] = STATE(4878), - [anon_sym_COLON] = ACTIONS(5122), + [4709] = { + [sym_bitfield_clause] = STATE(4849), + [sym_initializer_list] = STATE(4849), + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(5213), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(10508), - [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_EQ] = ACTIONS(10474), + [anon_sym_COMMA] = ACTIONS(5211), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(10500), + [anon_sym_SEMI] = ACTIONS(10466), }, - [4739] = { - [anon_sym_LPAREN2] = ACTIONS(10510), - [anon_sym_struct] = ACTIONS(10512), - [sym_auto] = ACTIONS(10512), - [anon_sym_signed] = ACTIONS(10512), - [anon_sym_mutable] = ACTIONS(10512), - [anon_sym_long] = ACTIONS(10512), - [anon_sym_COLON_COLON] = ACTIONS(10510), - [anon_sym_using] = ACTIONS(10512), - [sym_preproc_directive] = ACTIONS(10512), - [aux_sym_preproc_if_token1] = ACTIONS(10512), - [anon_sym_AMP] = ACTIONS(10512), - [anon_sym_static] = ACTIONS(10512), - [anon_sym_volatile] = ACTIONS(10512), - [anon_sym_RBRACE] = ACTIONS(10510), - [anon_sym_typedef] = ACTIONS(10512), - [anon_sym_STAR] = ACTIONS(10510), - [anon_sym_union] = ACTIONS(10512), - [anon_sym_typename] = ACTIONS(10512), - [anon_sym_private] = ACTIONS(10512), - [anon_sym_explicit] = ACTIONS(10512), - [anon_sym_short] = ACTIONS(10512), - [sym_identifier] = ACTIONS(10512), - [sym_operator_name] = ACTIONS(10510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10512), - [anon_sym_register] = ACTIONS(10512), - [anon_sym__Atomic] = ACTIONS(10512), - [anon_sym_const] = ACTIONS(10512), - [anon_sym_extern] = ACTIONS(10512), - [anon_sym_virtual] = ACTIONS(10512), - [anon_sym_enum] = ACTIONS(10512), - [anon_sym_class] = ACTIONS(10512), - [anon_sym_constexpr] = ACTIONS(10512), - [sym_primitive_type] = ACTIONS(10512), - [anon_sym_unsigned] = ACTIONS(10512), - [anon_sym_public] = ACTIONS(10512), - [anon_sym_protected] = ACTIONS(10512), - [anon_sym_friend] = ACTIONS(10512), - [anon_sym_template] = ACTIONS(10512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10512), - [anon_sym_TILDE] = ACTIONS(10510), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(10512), - [anon_sym_AMP_AMP] = ACTIONS(10510), - [anon_sym_inline] = ACTIONS(10512), - [anon_sym_restrict] = ACTIONS(10512), + [4710] = { + [anon_sym_LPAREN2] = ACTIONS(10476), + [anon_sym_struct] = ACTIONS(10478), + [sym_auto] = ACTIONS(10478), + [anon_sym_signed] = ACTIONS(10478), + [anon_sym_mutable] = ACTIONS(10478), + [anon_sym_long] = ACTIONS(10478), + [anon_sym_COLON_COLON] = ACTIONS(10476), + [anon_sym_using] = ACTIONS(10478), + [sym_preproc_directive] = ACTIONS(10478), + [aux_sym_preproc_if_token1] = ACTIONS(10478), + [anon_sym_AMP] = ACTIONS(10478), + [anon_sym_static] = ACTIONS(10478), + [anon_sym_volatile] = ACTIONS(10478), + [anon_sym_RBRACE] = ACTIONS(10476), + [anon_sym_typedef] = ACTIONS(10478), + [anon_sym_STAR] = ACTIONS(10476), + [anon_sym_union] = ACTIONS(10478), + [anon_sym_typename] = ACTIONS(10478), + [anon_sym_private] = ACTIONS(10478), + [anon_sym_explicit] = ACTIONS(10478), + [anon_sym_short] = ACTIONS(10478), + [sym_identifier] = ACTIONS(10478), + [sym_operator_name] = ACTIONS(10476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10478), + [anon_sym_register] = ACTIONS(10478), + [anon_sym__Atomic] = ACTIONS(10478), + [anon_sym_const] = ACTIONS(10478), + [anon_sym_extern] = ACTIONS(10478), + [anon_sym_LBRACK] = ACTIONS(10478), + [anon_sym_virtual] = ACTIONS(10478), + [anon_sym_enum] = ACTIONS(10478), + [anon_sym_class] = ACTIONS(10478), + [anon_sym_constexpr] = ACTIONS(10478), + [sym_primitive_type] = ACTIONS(10478), + [anon_sym_unsigned] = ACTIONS(10478), + [anon_sym_public] = ACTIONS(10478), + [anon_sym_protected] = ACTIONS(10478), + [anon_sym_friend] = ACTIONS(10478), + [anon_sym_template] = ACTIONS(10478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10478), + [anon_sym_TILDE] = ACTIONS(10476), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(10478), + [anon_sym_AMP_AMP] = ACTIONS(10476), + [anon_sym_inline] = ACTIONS(10478), + [anon_sym_restrict] = ACTIONS(10478), }, - [4740] = { - [sym_type_qualifier] = STATE(4740), - [aux_sym_type_definition_repeat1] = STATE(4740), + [4711] = { + [aux_sym_type_definition_repeat1] = STATE(4711), + [sym_type_qualifier] = STATE(4711), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(9979), - [anon_sym__Atomic] = ACTIONS(9979), - [anon_sym_const] = ACTIONS(9982), + [anon_sym_mutable] = ACTIONS(9945), + [anon_sym__Atomic] = ACTIONS(9945), + [anon_sym_const] = ACTIONS(9948), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(9979), + [anon_sym_constexpr] = ACTIONS(9945), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(9979), + [anon_sym_volatile] = ACTIONS(9945), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), [anon_sym_SEMI] = ACTIONS(2106), [anon_sym_COLON] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(9979), + [anon_sym_explicit] = ACTIONS(9945), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_DASH_GT] = ACTIONS(2106), [anon_sym_EQ] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(9979), + [anon_sym_restrict] = ACTIONS(9945), [anon_sym_LBRACE] = ACTIONS(2106), }, - [4741] = { - [sym_parameter_list] = STATE(4518), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_SEMI] = ACTIONS(7275), - [anon_sym_COLON] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), - [anon_sym_LBRACE] = ACTIONS(7275), + [4712] = { + [sym_parameter_list] = STATE(4489), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_SEMI] = ACTIONS(7256), + [anon_sym_COLON] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym_LBRACE] = ACTIONS(7256), }, - [4742] = { - [sym_type_qualifier] = STATE(4742), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4742), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(10514), - [anon_sym_mutable] = ACTIONS(9990), - [anon_sym__Atomic] = ACTIONS(9990), - [anon_sym_const] = ACTIONS(9993), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(9990), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(9990), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_SEMI] = ACTIONS(6399), - [anon_sym_COLON] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(9990), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(9990), - [anon_sym_LBRACE] = ACTIONS(6399), + [4713] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4713), + [sym_type_qualifier] = STATE(4713), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(10480), + [anon_sym_mutable] = ACTIONS(9956), + [anon_sym__Atomic] = ACTIONS(9956), + [anon_sym_const] = ACTIONS(9959), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(9956), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(9956), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(6087), + [anon_sym_COLON] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(9956), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(9956), + [anon_sym_LBRACE] = ACTIONS(6087), }, - [4743] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4742), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4742), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(10226), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_SEMI] = ACTIONS(6395), - [anon_sym_COLON] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(6395), + [4714] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4713), + [sym_type_qualifier] = STATE(4713), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(10192), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6098), + [anon_sym_COLON] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(6098), }, - [4744] = { - [sym_parameter_list] = STATE(4748), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_COLON] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), + [4715] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10483), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4745] = { - [sym_abstract_array_declarator] = STATE(4882), - [sym_parameter_list] = STATE(4523), - [sym_abstract_reference_declarator] = STATE(4882), - [sym_abstract_function_declarator] = STATE(4882), - [aux_sym_type_definition_repeat1] = STATE(4881), - [sym_abstract_pointer_declarator] = STATE(4882), - [sym_type_qualifier] = STATE(4881), - [sym__abstract_declarator] = STATE(4882), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1847), + [4716] = { [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9795), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(9797), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_AMP_AMP] = ACTIONS(9799), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_SEMI] = ACTIONS(10483), }, - [4746] = { - [sym_parameter_list] = STATE(4748), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), + [4717] = { + [sym_parameter_list] = STATE(4721), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_SEMI] = ACTIONS(4985), + [anon_sym_COLON] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), }, - [4747] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4883), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4883), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10517), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_COLON] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(7453), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4115), + [4718] = { + [sym_abstract_reference_declarator] = STATE(4854), + [aux_sym_type_definition_repeat1] = STATE(4853), + [sym_abstract_array_declarator] = STATE(4854), + [sym_parameter_list] = STATE(4495), + [sym_abstract_function_declarator] = STATE(4854), + [sym_abstract_pointer_declarator] = STATE(4854), + [sym_type_qualifier] = STATE(4853), + [sym__abstract_declarator] = STATE(4854), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9763), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(9765), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(9767), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(4987), }, - [4748] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4884), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4884), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10519), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_COLON] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(7453), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(4115), + [4719] = { + [sym_parameter_list] = STATE(4721), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), + [anon_sym_LBRACE] = ACTIONS(4987), }, - [4749] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10521), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4720] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4855), + [sym_type_qualifier] = STATE(4855), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10485), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(7438), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(3838), }, - [4750] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10521), + [4721] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4856), + [sym_type_qualifier] = STATE(4856), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10487), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(7438), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(3838), }, - [4751] = { - [anon_sym_DASH] = ACTIONS(10523), - [sym_raw_string_literal] = ACTIONS(10525), - [anon_sym_else] = ACTIONS(10523), - [sym_true] = ACTIONS(10523), - [anon_sym_mutable] = ACTIONS(10523), - [sym_null] = ACTIONS(10523), - [anon_sym_break] = ACTIONS(10523), - [anon_sym_BANG] = ACTIONS(10525), - [anon_sym_sizeof] = ACTIONS(10523), - [anon_sym_volatile] = ACTIONS(10523), - [anon_sym_PLUS] = ACTIONS(10523), - [anon_sym_typedef] = ACTIONS(10523), - [anon_sym_switch] = ACTIONS(10523), - [anon_sym_explicit] = ACTIONS(10523), - [sym_identifier] = ACTIONS(10523), - [anon_sym_delete] = ACTIONS(10523), - [anon_sym_continue] = ACTIONS(10523), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10523), - [anon_sym__Atomic] = ACTIONS(10523), - [sym_number_literal] = ACTIONS(10525), - [anon_sym_extern] = ACTIONS(10523), - [anon_sym_enum] = ACTIONS(10523), - [anon_sym_constexpr] = ACTIONS(10523), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10523), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10525), - [anon_sym_namespace] = ACTIONS(10523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10523), - [anon_sym_SQUOTE] = ACTIONS(10525), - [anon_sym_LBRACE] = ACTIONS(10525), - [anon_sym_DASH_DASH] = ACTIONS(10525), - [anon_sym_LPAREN2] = ACTIONS(10525), - [anon_sym_struct] = ACTIONS(10523), - [sym_auto] = ACTIONS(10523), - [anon_sym_signed] = ACTIONS(10523), - [anon_sym_long] = ACTIONS(10523), - [anon_sym_COLON_COLON] = ACTIONS(10525), - [anon_sym_using] = ACTIONS(10523), - [sym_preproc_directive] = ACTIONS(10523), - [aux_sym_preproc_if_token1] = ACTIONS(10523), - [anon_sym_AMP] = ACTIONS(10523), - [anon_sym_static] = ACTIONS(10523), - [anon_sym_RBRACE] = ACTIONS(10525), - [anon_sym_STAR] = ACTIONS(10525), - [anon_sym_union] = ACTIONS(10523), - [anon_sym_typename] = ACTIONS(10523), - [anon_sym_short] = ACTIONS(10523), - [anon_sym_new] = ACTIONS(10523), - [anon_sym_goto] = ACTIONS(10523), - [sym_operator_name] = ACTIONS(10525), - [anon_sym_while] = ACTIONS(10523), - [anon_sym_try] = ACTIONS(10523), - [anon_sym_for] = ACTIONS(10523), - [aux_sym_preproc_include_token1] = ACTIONS(10523), - [anon_sym_register] = ACTIONS(10523), - [anon_sym_DQUOTE] = ACTIONS(10525), - [anon_sym_const] = ACTIONS(10523), - [anon_sym_LBRACK] = ACTIONS(10523), - [anon_sym_class] = ACTIONS(10523), - [anon_sym_if] = ACTIONS(10523), - [sym_primitive_type] = ACTIONS(10523), - [sym_false] = ACTIONS(10523), - [sym_nullptr] = ACTIONS(10523), - [anon_sym_do] = ACTIONS(10523), - [anon_sym_template] = ACTIONS(10523), - [anon_sym_return] = ACTIONS(10523), - [anon_sym_TILDE] = ACTIONS(10525), - [anon_sym_SEMI] = ACTIONS(10525), - [ts_builtin_sym_end] = ACTIONS(10525), - [aux_sym_preproc_def_token1] = ACTIONS(10523), - [anon_sym_AMP_AMP] = ACTIONS(10525), - [anon_sym_inline] = ACTIONS(10523), - [anon_sym_PLUS_PLUS] = ACTIONS(10525), - [anon_sym_restrict] = ACTIONS(10523), + [4722] = { + [anon_sym_DASH] = ACTIONS(10489), + [sym_raw_string_literal] = ACTIONS(10491), + [anon_sym_else] = ACTIONS(10489), + [sym_true] = ACTIONS(10489), + [anon_sym_mutable] = ACTIONS(10489), + [sym_null] = ACTIONS(10489), + [anon_sym_break] = ACTIONS(10489), + [anon_sym_BANG] = ACTIONS(10491), + [anon_sym_sizeof] = ACTIONS(10489), + [anon_sym_volatile] = ACTIONS(10489), + [anon_sym_PLUS] = ACTIONS(10489), + [anon_sym_typedef] = ACTIONS(10489), + [anon_sym_switch] = ACTIONS(10489), + [anon_sym_explicit] = ACTIONS(10489), + [sym_identifier] = ACTIONS(10489), + [anon_sym_delete] = ACTIONS(10489), + [anon_sym_continue] = ACTIONS(10489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10489), + [anon_sym__Atomic] = ACTIONS(10489), + [sym_number_literal] = ACTIONS(10491), + [anon_sym_extern] = ACTIONS(10489), + [anon_sym_enum] = ACTIONS(10489), + [anon_sym_constexpr] = ACTIONS(10489), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10491), + [anon_sym_namespace] = ACTIONS(10489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10489), + [anon_sym_SQUOTE] = ACTIONS(10491), + [anon_sym_LBRACE] = ACTIONS(10491), + [anon_sym_DASH_DASH] = ACTIONS(10491), + [anon_sym_LPAREN2] = ACTIONS(10491), + [anon_sym_struct] = ACTIONS(10489), + [sym_auto] = ACTIONS(10489), + [anon_sym_signed] = ACTIONS(10489), + [anon_sym_long] = ACTIONS(10489), + [anon_sym_COLON_COLON] = ACTIONS(10491), + [anon_sym_using] = ACTIONS(10489), + [sym_preproc_directive] = ACTIONS(10489), + [aux_sym_preproc_if_token1] = ACTIONS(10489), + [anon_sym_AMP] = ACTIONS(10489), + [anon_sym_static] = ACTIONS(10489), + [anon_sym_RBRACE] = ACTIONS(10491), + [anon_sym_STAR] = ACTIONS(10491), + [anon_sym_union] = ACTIONS(10489), + [anon_sym_typename] = ACTIONS(10489), + [anon_sym_short] = ACTIONS(10489), + [anon_sym_new] = ACTIONS(10489), + [anon_sym_goto] = ACTIONS(10489), + [sym_operator_name] = ACTIONS(10491), + [anon_sym_while] = ACTIONS(10489), + [anon_sym_try] = ACTIONS(10489), + [anon_sym_for] = ACTIONS(10489), + [aux_sym_preproc_include_token1] = ACTIONS(10489), + [anon_sym_register] = ACTIONS(10489), + [anon_sym_DQUOTE] = ACTIONS(10491), + [anon_sym_const] = ACTIONS(10489), + [anon_sym_LBRACK] = ACTIONS(10489), + [anon_sym_class] = ACTIONS(10489), + [anon_sym_if] = ACTIONS(10489), + [sym_primitive_type] = ACTIONS(10489), + [sym_false] = ACTIONS(10489), + [sym_nullptr] = ACTIONS(10489), + [anon_sym_do] = ACTIONS(10489), + [anon_sym_template] = ACTIONS(10489), + [anon_sym_return] = ACTIONS(10489), + [anon_sym_TILDE] = ACTIONS(10491), + [anon_sym_SEMI] = ACTIONS(10491), + [ts_builtin_sym_end] = ACTIONS(10491), + [aux_sym_preproc_def_token1] = ACTIONS(10489), + [anon_sym_AMP_AMP] = ACTIONS(10491), + [anon_sym_inline] = ACTIONS(10489), + [anon_sym_PLUS_PLUS] = ACTIONS(10491), + [anon_sym_restrict] = ACTIONS(10489), }, - [4752] = { - [sym_do_statement] = STATE(4886), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4723] = { + [sym_do_statement] = STATE(4857), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4886), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4886), - [sym_if_statement] = STATE(4886), - [sym_switch_statement] = STATE(4886), - [sym_for_statement] = STATE(4886), - [sym_return_statement] = STATE(4886), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4857), + [sym_try_statement] = STATE(4857), + [sym_if_statement] = STATE(4857), + [sym_switch_statement] = STATE(4857), + [sym_for_statement] = STATE(4857), + [sym_return_statement] = STATE(4857), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4886), - [sym_break_statement] = STATE(4886), - [sym_continue_statement] = STATE(4886), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4857), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4886), - [sym_labeled_statement] = STATE(4886), - [sym_expression_statement] = STATE(4886), - [sym_while_statement] = STATE(4886), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4857), + [sym_for_range_loop] = STATE(4857), + [sym_compound_statement] = STATE(4857), + [sym_labeled_statement] = STATE(4857), + [sym_expression_statement] = STATE(4857), + [sym_while_statement] = STATE(4857), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -192229,7 +191666,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(744), + [sym_identifier] = ACTIONS(748), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -192253,93 +191690,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4753] = { - [anon_sym_LPAREN2] = ACTIONS(8620), - [anon_sym_GT_GT] = ACTIONS(8622), - [anon_sym_DASH] = ACTIONS(8622), - [anon_sym_DASH_DASH] = ACTIONS(8620), - [anon_sym_STAR_EQ] = ACTIONS(8620), - [anon_sym_LT_LT_EQ] = ACTIONS(8620), - [anon_sym_PERCENT_EQ] = ACTIONS(8620), - [anon_sym_EQ_EQ] = ACTIONS(8620), - [anon_sym_PIPE] = ACTIONS(8622), - [anon_sym_LT] = ACTIONS(8622), - [anon_sym_CARET_EQ] = ACTIONS(8620), - [anon_sym_AMP] = ACTIONS(8622), - [anon_sym_PLUS] = ACTIONS(8622), - [anon_sym_GT_EQ] = ACTIONS(8620), - [anon_sym_STAR] = ACTIONS(8622), - [anon_sym_SLASH] = ACTIONS(8622), - [anon_sym_SLASH_EQ] = ACTIONS(8620), - [anon_sym_PLUS_EQ] = ACTIONS(8620), - [anon_sym_CARET] = ACTIONS(8622), - [anon_sym_GT] = ACTIONS(8622), - [anon_sym_PIPE_EQ] = ACTIONS(8620), - [anon_sym_GT_GT_EQ] = ACTIONS(8620), - [anon_sym_COMMA] = ACTIONS(8620), - [anon_sym_PIPE_PIPE] = ACTIONS(8620), - [anon_sym_DOT] = ACTIONS(8620), - [anon_sym_LT_LT] = ACTIONS(8622), - [anon_sym_LBRACK] = ACTIONS(8620), - [anon_sym_PERCENT] = ACTIONS(8622), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8620), - [anon_sym_DASH_EQ] = ACTIONS(8620), - [anon_sym_LT_EQ] = ACTIONS(8620), - [anon_sym_BANG_EQ] = ACTIONS(8620), - [anon_sym_AMP_EQ] = ACTIONS(8620), - [anon_sym_AMP_AMP] = ACTIONS(8620), - [anon_sym_DASH_GT] = ACTIONS(8620), - [anon_sym_EQ] = ACTIONS(8622), - [anon_sym_PLUS_PLUS] = ACTIONS(8620), - [anon_sym_LBRACE] = ACTIONS(8620), - [anon_sym_RBRACK] = ACTIONS(8620), + [4724] = { + [anon_sym_LPAREN2] = ACTIONS(8584), + [anon_sym_GT_GT] = ACTIONS(8586), + [anon_sym_DASH] = ACTIONS(8586), + [anon_sym_DASH_DASH] = ACTIONS(8584), + [anon_sym_STAR_EQ] = ACTIONS(8584), + [anon_sym_LT_LT_EQ] = ACTIONS(8584), + [anon_sym_PERCENT_EQ] = ACTIONS(8584), + [anon_sym_EQ_EQ] = ACTIONS(8584), + [anon_sym_PIPE] = ACTIONS(8586), + [anon_sym_LT] = ACTIONS(8586), + [anon_sym_CARET_EQ] = ACTIONS(8584), + [anon_sym_AMP] = ACTIONS(8586), + [anon_sym_PLUS] = ACTIONS(8586), + [anon_sym_GT_EQ] = ACTIONS(8584), + [anon_sym_STAR] = ACTIONS(8586), + [anon_sym_SLASH] = ACTIONS(8586), + [anon_sym_SLASH_EQ] = ACTIONS(8584), + [anon_sym_PLUS_EQ] = ACTIONS(8584), + [anon_sym_CARET] = ACTIONS(8586), + [anon_sym_GT] = ACTIONS(8586), + [anon_sym_PIPE_EQ] = ACTIONS(8584), + [anon_sym_GT_GT_EQ] = ACTIONS(8584), + [anon_sym_COMMA] = ACTIONS(8584), + [anon_sym_PIPE_PIPE] = ACTIONS(8584), + [anon_sym_DOT] = ACTIONS(8584), + [anon_sym_LT_LT] = ACTIONS(8586), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_PERCENT] = ACTIONS(8586), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8584), + [anon_sym_DASH_EQ] = ACTIONS(8584), + [anon_sym_LT_EQ] = ACTIONS(8584), + [anon_sym_BANG_EQ] = ACTIONS(8584), + [anon_sym_AMP_EQ] = ACTIONS(8584), + [anon_sym_AMP_AMP] = ACTIONS(8584), + [anon_sym_DASH_GT] = ACTIONS(8584), + [anon_sym_EQ] = ACTIONS(8586), + [anon_sym_PLUS_PLUS] = ACTIONS(8584), + [anon_sym_LBRACE] = ACTIONS(8584), + [anon_sym_RBRACK] = ACTIONS(8584), }, - [4754] = { - [sym_do_statement] = STATE(3533), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4725] = { + [sym_do_statement] = STATE(3505), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(3533), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(3533), - [sym_if_statement] = STATE(3533), - [sym_switch_statement] = STATE(3533), - [sym_for_statement] = STATE(3533), - [sym_return_statement] = STATE(3533), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3505), + [sym_try_statement] = STATE(3505), + [sym_if_statement] = STATE(3505), + [sym_switch_statement] = STATE(3505), + [sym_for_statement] = STATE(3505), + [sym_return_statement] = STATE(3505), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(3533), - [sym_break_statement] = STATE(3533), - [sym_continue_statement] = STATE(3533), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3505), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3533), - [sym_labeled_statement] = STATE(3533), - [sym_expression_statement] = STATE(3533), - [sym_while_statement] = STATE(3533), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(3505), + [sym_for_range_loop] = STATE(3505), + [sym_compound_statement] = STATE(3505), + [sym_labeled_statement] = STATE(3505), + [sym_expression_statement] = STATE(3505), + [sym_while_statement] = STATE(3505), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -192353,18 +191790,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -192377,274 +191814,274 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4755] = { - [aux_sym_for_statement_repeat1] = STATE(4888), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10527), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4726] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4859), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10493), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4756] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4889), - [sym_logical_expression] = STATE(4889), - [sym_bitwise_expression] = STATE(4889), - [sym_cast_expression] = STATE(4889), - [sym_new_expression] = STATE(4889), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4889), - [sym_char_literal] = STATE(4889), - [sym_template_function] = STATE(4889), - [sym_conditional_expression] = STATE(4889), - [sym_equality_expression] = STATE(4889), - [sym_relational_expression] = STATE(4889), - [sym_delete_expression] = STATE(4889), - [sym_sizeof_expression] = STATE(4889), - [sym_parenthesized_expression] = STATE(4889), - [sym_lambda_expression] = STATE(4889), - [sym_concatenated_string] = STATE(4889), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4889), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4889), - [sym_math_expression] = STATE(4889), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10529), + [4727] = { + [sym_template_function] = STATE(4860), + [sym__expression] = STATE(4860), + [sym_logical_expression] = STATE(4860), + [sym_bitwise_expression] = STATE(4860), + [sym_cast_expression] = STATE(4860), + [sym_delete_expression] = STATE(4860), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4860), + [sym_lambda_expression] = STATE(4860), + [sym_char_literal] = STATE(4860), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4860), + [sym_equality_expression] = STATE(4860), + [sym_relational_expression] = STATE(4860), + [sym_sizeof_expression] = STATE(4860), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4860), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4860), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4860), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4860), + [sym_math_expression] = STATE(4860), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4860), + [sym_raw_string_literal] = ACTIONS(10495), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10531), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10531), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10497), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10497), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10529), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10495), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10531), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10531), + [sym_false] = ACTIONS(10497), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10497), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10527), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10493), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4757] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10533), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4728] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10499), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4758] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10535), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4729] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10501), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4759] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(10537), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_namespace] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_using] = ACTIONS(7770), - [sym_preproc_directive] = ACTIONS(7770), - [aux_sym_preproc_if_token1] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7770), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [sym_operator_name] = ACTIONS(7772), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [aux_sym_preproc_include_token1] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_template] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [ts_builtin_sym_end] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7770), - [anon_sym_AMP_AMP] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [4730] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(10503), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_namespace] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_using] = ACTIONS(7751), + [sym_preproc_directive] = ACTIONS(7751), + [aux_sym_preproc_if_token1] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [sym_operator_name] = ACTIONS(7753), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [aux_sym_preproc_include_token1] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [ts_builtin_sym_end] = ACTIONS(7753), + [aux_sym_preproc_def_token1] = ACTIONS(7751), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [4760] = { - [sym_do_statement] = STATE(4893), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4731] = { + [sym_do_statement] = STATE(4864), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4893), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4893), - [sym_if_statement] = STATE(4893), - [sym_switch_statement] = STATE(4893), - [sym_for_statement] = STATE(4893), - [sym_return_statement] = STATE(4893), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4864), + [sym_try_statement] = STATE(4864), + [sym_if_statement] = STATE(4864), + [sym_switch_statement] = STATE(4864), + [sym_for_statement] = STATE(4864), + [sym_return_statement] = STATE(4864), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4893), - [sym_break_statement] = STATE(4893), - [sym_continue_statement] = STATE(4893), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4864), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4893), - [sym_labeled_statement] = STATE(4893), - [sym_expression_statement] = STATE(4893), - [sym_while_statement] = STATE(4893), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4864), + [sym_for_range_loop] = STATE(4864), + [sym_compound_statement] = STATE(4864), + [sym_labeled_statement] = STATE(4864), + [sym_expression_statement] = STATE(4864), + [sym_while_statement] = STATE(4864), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -192658,18 +192095,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -192682,1483 +192119,1483 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4761] = { - [anon_sym_else] = ACTIONS(10249), - [anon_sym_while] = ACTIONS(10249), + [4732] = { + [anon_sym_else] = ACTIONS(10215), + [anon_sym_while] = ACTIONS(10215), [sym_comment] = ACTIONS(3), }, - [4762] = { - [sym_do_statement] = STATE(4894), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4733] = { + [sym_do_statement] = STATE(4865), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4894), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4894), - [sym_if_statement] = STATE(4894), - [sym_switch_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_return_statement] = STATE(4894), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4865), + [sym_try_statement] = STATE(4865), + [sym_if_statement] = STATE(4865), + [sym_switch_statement] = STATE(4865), + [sym_for_statement] = STATE(4865), + [sym_return_statement] = STATE(4865), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4894), - [sym_break_statement] = STATE(4894), - [sym_continue_statement] = STATE(4894), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4865), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4894), - [sym_labeled_statement] = STATE(4894), - [sym_expression_statement] = STATE(4894), - [sym_while_statement] = STATE(4894), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4865), + [sym_for_range_loop] = STATE(4865), + [sym_compound_statement] = STATE(4865), + [sym_labeled_statement] = STATE(4865), + [sym_expression_statement] = STATE(4865), + [sym_while_statement] = STATE(4865), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4763] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10539), + [4734] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10505), [sym_comment] = ACTIONS(3), }, - [4764] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4897), - [sym_logical_expression] = STATE(4897), - [sym_bitwise_expression] = STATE(4897), - [sym_cast_expression] = STATE(4897), - [sym_new_expression] = STATE(4897), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4897), - [sym_char_literal] = STATE(4897), - [sym_template_function] = STATE(4897), - [sym_conditional_expression] = STATE(4897), - [sym_equality_expression] = STATE(4897), - [sym_relational_expression] = STATE(4897), - [sym_delete_expression] = STATE(4897), - [sym_sizeof_expression] = STATE(4897), - [sym_parenthesized_expression] = STATE(4897), - [sym_lambda_expression] = STATE(4897), - [sym_concatenated_string] = STATE(4897), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4897), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4897), - [sym_math_expression] = STATE(4897), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10541), + [4735] = { + [sym_template_function] = STATE(4868), + [sym__expression] = STATE(4868), + [sym_logical_expression] = STATE(4868), + [sym_bitwise_expression] = STATE(4868), + [sym_cast_expression] = STATE(4868), + [sym_delete_expression] = STATE(4868), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4868), + [sym_lambda_expression] = STATE(4868), + [sym_char_literal] = STATE(4868), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4868), + [sym_equality_expression] = STATE(4868), + [sym_relational_expression] = STATE(4868), + [sym_sizeof_expression] = STATE(4868), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4868), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4868), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4868), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4868), + [sym_math_expression] = STATE(4868), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4868), + [sym_raw_string_literal] = ACTIONS(10507), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10543), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10543), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10509), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10509), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10541), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10507), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10543), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10543), + [sym_false] = ACTIONS(10509), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10509), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10545), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10511), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4765] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10547), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4736] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10513), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4766] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4899), - [sym_logical_expression] = STATE(4899), - [sym_bitwise_expression] = STATE(4899), - [sym_cast_expression] = STATE(4899), - [sym_new_expression] = STATE(4899), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4899), - [sym_char_literal] = STATE(4899), - [sym_template_function] = STATE(4899), - [sym_conditional_expression] = STATE(4899), - [sym_equality_expression] = STATE(4899), - [sym_relational_expression] = STATE(4899), - [sym_delete_expression] = STATE(4899), - [sym_sizeof_expression] = STATE(4899), - [sym_parenthesized_expression] = STATE(4899), - [sym_lambda_expression] = STATE(4899), - [sym_concatenated_string] = STATE(4899), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4899), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4899), - [sym_math_expression] = STATE(4899), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10549), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10551), - [sym_null] = ACTIONS(10551), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10549), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10551), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10551), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10547), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4737] = { + [sym_template_function] = STATE(4870), + [sym__expression] = STATE(4870), + [sym_logical_expression] = STATE(4870), + [sym_bitwise_expression] = STATE(4870), + [sym_cast_expression] = STATE(4870), + [sym_delete_expression] = STATE(4870), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4870), + [sym_lambda_expression] = STATE(4870), + [sym_char_literal] = STATE(4870), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4870), + [sym_equality_expression] = STATE(4870), + [sym_relational_expression] = STATE(4870), + [sym_sizeof_expression] = STATE(4870), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4870), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4870), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4870), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4870), + [sym_math_expression] = STATE(4870), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4870), + [sym_raw_string_literal] = ACTIONS(10515), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10517), + [sym_null] = ACTIONS(10517), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10515), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10517), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10517), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10513), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4767] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4900), - [sym_logical_expression] = STATE(4900), - [sym_bitwise_expression] = STATE(4900), - [sym_cast_expression] = STATE(4900), - [sym_new_expression] = STATE(4900), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4900), - [sym_char_literal] = STATE(4900), - [sym_template_function] = STATE(4900), - [sym_conditional_expression] = STATE(4900), - [sym_equality_expression] = STATE(4900), - [sym_relational_expression] = STATE(4900), - [sym_delete_expression] = STATE(4900), - [sym_sizeof_expression] = STATE(4900), - [sym_parenthesized_expression] = STATE(4900), - [sym_lambda_expression] = STATE(4900), - [sym_concatenated_string] = STATE(4900), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4900), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4900), - [sym_math_expression] = STATE(4900), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10553), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10555), - [sym_null] = ACTIONS(10555), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10553), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10555), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10555), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4738] = { + [sym_template_function] = STATE(4871), + [sym__expression] = STATE(4871), + [sym_logical_expression] = STATE(4871), + [sym_bitwise_expression] = STATE(4871), + [sym_cast_expression] = STATE(4871), + [sym_delete_expression] = STATE(4871), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4871), + [sym_lambda_expression] = STATE(4871), + [sym_char_literal] = STATE(4871), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4871), + [sym_equality_expression] = STATE(4871), + [sym_relational_expression] = STATE(4871), + [sym_sizeof_expression] = STATE(4871), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4871), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4871), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4871), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4871), + [sym_math_expression] = STATE(4871), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4871), + [sym_raw_string_literal] = ACTIONS(10519), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10521), + [sym_null] = ACTIONS(10521), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10519), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10521), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10521), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4768] = { - [aux_sym_try_statement_repeat1] = STATE(4768), - [sym_catch_clause] = STATE(4768), - [anon_sym_else] = ACTIONS(5355), - [anon_sym_catch] = ACTIONS(7794), - [anon_sym_while] = ACTIONS(5355), + [4739] = { + [sym_catch_clause] = STATE(4739), + [aux_sym_try_statement_repeat1] = STATE(4739), + [anon_sym_else] = ACTIONS(5354), + [anon_sym_catch] = ACTIONS(7775), + [anon_sym_while] = ACTIONS(5354), [sym_comment] = ACTIONS(3), }, - [4769] = { - [sym_do_statement] = STATE(4901), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4740] = { + [sym_do_statement] = STATE(4872), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4901), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4901), - [sym_if_statement] = STATE(4901), - [sym_switch_statement] = STATE(4901), - [sym_for_statement] = STATE(4901), - [sym_return_statement] = STATE(4901), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4872), + [sym_try_statement] = STATE(4872), + [sym_if_statement] = STATE(4872), + [sym_switch_statement] = STATE(4872), + [sym_for_statement] = STATE(4872), + [sym_return_statement] = STATE(4872), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4901), - [sym_break_statement] = STATE(4901), - [sym_continue_statement] = STATE(4901), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4872), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4901), - [sym_labeled_statement] = STATE(4901), - [sym_expression_statement] = STATE(4901), - [sym_while_statement] = STATE(4901), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4872), + [sym_for_range_loop] = STATE(4872), + [sym_compound_statement] = STATE(4872), + [sym_labeled_statement] = STATE(4872), + [sym_expression_statement] = STATE(4872), + [sym_while_statement] = STATE(4872), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4770] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10557), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4741] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10523), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4771] = { - [anon_sym_else] = ACTIONS(10277), - [anon_sym_while] = ACTIONS(10277), + [4742] = { + [anon_sym_else] = ACTIONS(10243), + [anon_sym_while] = ACTIONS(10243), [sym_comment] = ACTIONS(3), }, - [4772] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4772), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_final] = ACTIONS(2082), - [sym_noexcept] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(10559), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(10559), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(10559), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(10559), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_DASH_GT] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), + [4743] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4743), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_final] = ACTIONS(1783), + [sym_noexcept] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(10525), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(10525), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_GT2] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(10525), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(10525), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1783), }, - [4773] = { - [sym_parameter_list] = STATE(4775), - [sym_abstract_array_declarator] = STATE(4903), - [sym_abstract_pointer_declarator] = STATE(4903), - [sym_abstract_reference_declarator] = STATE(4903), - [sym_abstract_function_declarator] = STATE(4903), - [sym__abstract_declarator] = STATE(4903), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_GT2] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(10299), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(10301), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(10303), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), + [4744] = { + [sym_abstract_reference_declarator] = STATE(4874), + [sym_abstract_array_declarator] = STATE(4874), + [sym_abstract_pointer_declarator] = STATE(4874), + [sym_parameter_list] = STATE(4746), + [sym_abstract_function_declarator] = STATE(4874), + [sym__abstract_declarator] = STATE(4874), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(10265), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(10267), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(10269), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), }, - [4774] = { - [sym_abstract_array_declarator] = STATE(4905), - [sym_parameter_list] = STATE(4775), - [sym_abstract_reference_declarator] = STATE(4905), - [sym_abstract_function_declarator] = STATE(4905), - [aux_sym_type_definition_repeat1] = STATE(4904), - [sym_abstract_pointer_declarator] = STATE(4905), - [sym_type_qualifier] = STATE(4904), - [sym__abstract_declarator] = STATE(4905), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(1062), + [4745] = { + [sym_abstract_reference_declarator] = STATE(4876), + [aux_sym_type_definition_repeat1] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4876), + [sym_parameter_list] = STATE(4746), + [sym_abstract_function_declarator] = STATE(4876), + [sym_abstract_pointer_declarator] = STATE(4876), + [sym_type_qualifier] = STATE(4875), + [sym__abstract_declarator] = STATE(4876), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(10299), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(10301), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(10303), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(10265), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(10267), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(10269), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(1070), }, - [4775] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4906), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4906), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(10562), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(1062), + [4746] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4877), + [sym_type_qualifier] = STATE(4877), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(10528), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(9037), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(9001), + [anon_sym_restrict] = ACTIONS(1070), }, - [4776] = { - [sym_parameter_list] = STATE(4907), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym_COMMA] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_GT2] = ACTIONS(8186), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), + [4747] = { + [sym_parameter_list] = STATE(4878), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym_COMMA] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_GT2] = ACTIONS(8038), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), }, - [4777] = { - [sym_parameter_list] = STATE(4781), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_GT2] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), + [4748] = { + [sym_parameter_list] = STATE(4752), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_GT2] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), }, - [4778] = { - [sym_abstract_array_declarator] = STATE(4909), - [sym_parameter_list] = STATE(4578), - [sym_abstract_reference_declarator] = STATE(4909), - [sym_abstract_function_declarator] = STATE(4909), - [aux_sym_type_definition_repeat1] = STATE(4908), - [sym_abstract_pointer_declarator] = STATE(4909), - [sym_type_qualifier] = STATE(4908), - [sym__abstract_declarator] = STATE(4909), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(1062), + [4749] = { + [sym_abstract_reference_declarator] = STATE(4880), + [aux_sym_type_definition_repeat1] = STATE(4879), + [sym_abstract_array_declarator] = STATE(4880), + [sym_parameter_list] = STATE(4549), + [sym_abstract_function_declarator] = STATE(4880), + [sym_abstract_pointer_declarator] = STATE(4880), + [sym_type_qualifier] = STATE(4879), + [sym__abstract_declarator] = STATE(4880), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9908), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(9910), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(9912), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9874), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(9876), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(9878), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(1070), }, - [4779] = { - [sym_parameter_list] = STATE(4781), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_GT2] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), + [4750] = { + [sym_parameter_list] = STATE(4752), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_GT2] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), }, - [4780] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4910), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4910), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10564), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4751] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4881), + [sym_type_qualifier] = STATE(4881), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10530), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7847), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7828), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1070), }, - [4781] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4911), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4911), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10566), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4752] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4882), + [sym_type_qualifier] = STATE(4882), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10532), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7847), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7828), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1070), }, - [4782] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(4782), - [anon_sym_LPAREN2] = ACTIONS(2077), - [anon_sym_final] = ACTIONS(2082), - [sym_noexcept] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(10568), - [anon_sym_mutable] = ACTIONS(2082), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_long] = ACTIONS(10568), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_constexpr] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(10568), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_explicit] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_short] = ACTIONS(10568), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym_DASH_GT] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2082), + [4753] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4753), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_final] = ACTIONS(1783), + [sym_noexcept] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(10534), + [anon_sym_mutable] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_long] = ACTIONS(10534), + [anon_sym__Atomic] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_constexpr] = ACTIONS(1783), + [sym_primitive_type] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(10534), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_explicit] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_short] = ACTIONS(10534), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_restrict] = ACTIONS(1783), + [anon_sym_DASH_GT] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1783), }, - [4783] = { - [sym_parameter_list] = STATE(4785), - [sym_abstract_array_declarator] = STATE(4912), - [sym_abstract_pointer_declarator] = STATE(4912), - [sym_abstract_reference_declarator] = STATE(4912), - [sym_abstract_function_declarator] = STATE(4912), - [sym__abstract_declarator] = STATE(4912), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2830), - [sym_noexcept] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(10325), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(10327), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(10329), - [anon_sym_restrict] = ACTIONS(2830), + [4754] = { + [sym_abstract_reference_declarator] = STATE(4883), + [sym_abstract_array_declarator] = STATE(4883), + [sym_abstract_pointer_declarator] = STATE(4883), + [sym_parameter_list] = STATE(4756), + [sym_abstract_function_declarator] = STATE(4883), + [sym__abstract_declarator] = STATE(4883), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2835), + [sym_noexcept] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(8187), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(10287), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(10289), + [anon_sym_override] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_DASH_GT] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(10291), + [anon_sym_restrict] = ACTIONS(2835), }, - [4784] = { - [sym_abstract_array_declarator] = STATE(4914), - [sym_parameter_list] = STATE(4785), - [sym_abstract_reference_declarator] = STATE(4914), - [sym_abstract_function_declarator] = STATE(4914), - [aux_sym_type_definition_repeat1] = STATE(4913), - [sym_abstract_pointer_declarator] = STATE(4914), - [sym_type_qualifier] = STATE(4913), - [sym__abstract_declarator] = STATE(4914), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(2832), - [sym_noexcept] = ACTIONS(2832), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym__Atomic] = ACTIONS(1062), + [4755] = { + [sym_abstract_reference_declarator] = STATE(4885), + [aux_sym_type_definition_repeat1] = STATE(4884), + [sym_abstract_array_declarator] = STATE(4885), + [sym_parameter_list] = STATE(4756), + [sym_abstract_function_declarator] = STATE(4885), + [sym_abstract_pointer_declarator] = STATE(4885), + [sym_type_qualifier] = STATE(4884), + [sym__abstract_declarator] = STATE(4885), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(2837), + [sym_noexcept] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(10325), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(10327), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_DASH_GT] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(10329), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(10287), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(10289), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_DASH_GT] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(10291), + [anon_sym_restrict] = ACTIONS(1070), }, - [4785] = { - [sym_trailing_return_type] = STATE(1029), - [sym_type_qualifier] = STATE(4915), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4915), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_final] = ACTIONS(2059), - [sym_noexcept] = ACTIONS(10571), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(1062), + [4756] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4886), + [sym_type_qualifier] = STATE(4886), + [sym_trailing_return_type] = STATE(956), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_final] = ACTIONS(1740), + [sym_noexcept] = ACTIONS(10537), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_DASH_GT] = ACTIONS(9153), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1740), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(9043), + [anon_sym_restrict] = ACTIONS(1070), }, - [4786] = { - [sym_parameter_list] = STATE(4916), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(8186), - [sym_noexcept] = ACTIONS(8186), - [anon_sym_mutable] = ACTIONS(8186), - [anon_sym_COMMA] = ACTIONS(8186), - [anon_sym__Atomic] = ACTIONS(8186), - [anon_sym_const] = ACTIONS(8188), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(8186), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(8186), - [anon_sym_override] = ACTIONS(8186), - [anon_sym_explicit] = ACTIONS(8186), - [anon_sym_RPAREN] = ACTIONS(8186), - [anon_sym_DASH_GT] = ACTIONS(8186), - [anon_sym_restrict] = ACTIONS(8186), + [4757] = { + [sym_parameter_list] = STATE(4887), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(8038), + [sym_noexcept] = ACTIONS(8038), + [anon_sym_mutable] = ACTIONS(8038), + [anon_sym_COMMA] = ACTIONS(8038), + [anon_sym__Atomic] = ACTIONS(8038), + [anon_sym_const] = ACTIONS(8191), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(8038), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(8038), + [anon_sym_override] = ACTIONS(8038), + [anon_sym_explicit] = ACTIONS(8038), + [anon_sym_RPAREN] = ACTIONS(8038), + [anon_sym_DASH_GT] = ACTIONS(8038), + [anon_sym_restrict] = ACTIONS(8038), }, - [4787] = { - [sym_parameter_list] = STATE(4791), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), + [4758] = { + [sym_parameter_list] = STATE(4762), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), }, - [4788] = { - [sym_abstract_array_declarator] = STATE(4918), - [sym_parameter_list] = STATE(4599), - [sym_abstract_reference_declarator] = STATE(4918), - [sym_abstract_function_declarator] = STATE(4918), - [aux_sym_type_definition_repeat1] = STATE(4917), - [sym_abstract_pointer_declarator] = STATE(4918), - [sym_type_qualifier] = STATE(4917), - [sym__abstract_declarator] = STATE(4918), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(1062), + [4759] = { + [sym_abstract_reference_declarator] = STATE(4889), + [aux_sym_type_definition_repeat1] = STATE(4888), + [sym_abstract_array_declarator] = STATE(4889), + [sym_parameter_list] = STATE(4562), + [sym_abstract_function_declarator] = STATE(4889), + [sym_abstract_pointer_declarator] = STATE(4889), + [sym_type_qualifier] = STATE(4888), + [sym__abstract_declarator] = STATE(4889), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(9964), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(9966), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(9968), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(9902), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(9904), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(9906), }, - [4789] = { - [sym_parameter_list] = STATE(4791), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), + [4760] = { + [sym_parameter_list] = STATE(4762), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), }, - [4790] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4919), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4919), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10573), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4761] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4890), + [sym_type_qualifier] = STATE(4890), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10539), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(8165), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(7919), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1070), }, - [4791] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4920), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4920), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10575), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4762] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4891), + [sym_type_qualifier] = STATE(4891), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10541), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(8165), - [anon_sym_EQ] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(7919), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_restrict] = ACTIONS(1070), }, - [4792] = { - [sym_type_qualifier] = STATE(4792), - [aux_sym_type_definition_repeat1] = STATE(4792), + [4763] = { + [aux_sym_type_definition_repeat1] = STATE(4763), + [sym_type_qualifier] = STATE(4763), [anon_sym_LPAREN2] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(4989), [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_const] = ACTIONS(2103), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(4989), [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), + [anon_sym_explicit] = ACTIONS(4989), [anon_sym_RPAREN] = ACTIONS(2106), [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(4989), }, - [4793] = { - [sym_new_declarator] = STATE(4145), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_RBRACE] = ACTIONS(7549), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_LBRACK] = ACTIONS(9194), - [anon_sym_PERCENT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_SEMI] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_GT_GT] = ACTIONS(7551), + [4764] = { + [sym_new_declarator] = STATE(4115), + [anon_sym_LPAREN2] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7532), + [anon_sym_DASH_DASH] = ACTIONS(7530), + [anon_sym_DASH_GT] = ACTIONS(7530), + [anon_sym_STAR_EQ] = ACTIONS(7530), + [anon_sym_LT_LT_EQ] = ACTIONS(7530), + [anon_sym_PERCENT_EQ] = ACTIONS(7530), + [anon_sym_EQ_EQ] = ACTIONS(7530), + [anon_sym_PIPE] = ACTIONS(7532), + [anon_sym_LT] = ACTIONS(7532), + [anon_sym_CARET_EQ] = ACTIONS(7530), + [anon_sym_AMP] = ACTIONS(7532), + [anon_sym_RBRACE] = ACTIONS(7530), + [anon_sym_GT_EQ] = ACTIONS(7530), + [anon_sym_STAR] = ACTIONS(7532), + [anon_sym_PLUS] = ACTIONS(7532), + [anon_sym_SLASH] = ACTIONS(7532), + [anon_sym_SLASH_EQ] = ACTIONS(7530), + [anon_sym_PLUS_EQ] = ACTIONS(7530), + [anon_sym_CARET] = ACTIONS(7532), + [anon_sym_GT] = ACTIONS(7532), + [anon_sym_PIPE_EQ] = ACTIONS(7530), + [anon_sym_GT_GT_EQ] = ACTIONS(7530), + [anon_sym_COMMA] = ACTIONS(7530), + [anon_sym_PIPE_PIPE] = ACTIONS(7530), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_LT_LT] = ACTIONS(7532), + [anon_sym_LBRACK] = ACTIONS(9165), + [anon_sym_PERCENT] = ACTIONS(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7530), + [anon_sym_DASH_EQ] = ACTIONS(7530), + [anon_sym_SEMI] = ACTIONS(7530), + [anon_sym_BANG_EQ] = ACTIONS(7530), + [anon_sym_AMP_EQ] = ACTIONS(7530), + [anon_sym_AMP_AMP] = ACTIONS(7530), + [anon_sym_LT_EQ] = ACTIONS(7530), + [anon_sym_EQ] = ACTIONS(7532), + [anon_sym_PLUS_PLUS] = ACTIONS(7530), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_GT_GT] = ACTIONS(7532), }, - [4794] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(7469), - [anon_sym_LT_LT_EQ] = ACTIONS(7469), - [anon_sym_PERCENT_EQ] = ACTIONS(7469), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(9204), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(7469), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(7469), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(7469), - [anon_sym_PLUS_EQ] = ACTIONS(7469), - [anon_sym_CARET] = ACTIONS(9214), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(7469), - [anon_sym_GT_GT_EQ] = ACTIONS(7469), - [anon_sym_COMMA] = ACTIONS(7469), - [anon_sym_PIPE_PIPE] = ACTIONS(9216), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(7469), - [anon_sym_DASH_EQ] = ACTIONS(7469), - [anon_sym_SEMI] = ACTIONS(7469), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(7469), - [anon_sym_AMP_AMP] = ACTIONS(9220), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4765] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(7450), + [anon_sym_LT_LT_EQ] = ACTIONS(7450), + [anon_sym_PERCENT_EQ] = ACTIONS(7450), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(9175), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(7450), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(7450), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(7450), + [anon_sym_PLUS_EQ] = ACTIONS(7450), + [anon_sym_CARET] = ACTIONS(9185), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(7450), + [anon_sym_GT_GT_EQ] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(7450), + [anon_sym_PIPE_PIPE] = ACTIONS(9187), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(7450), + [anon_sym_DASH_EQ] = ACTIONS(7450), + [anon_sym_SEMI] = ACTIONS(7450), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(7450), + [anon_sym_AMP_AMP] = ACTIONS(9191), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(8855), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4795] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(9200), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(8131), - [anon_sym_LT_LT_EQ] = ACTIONS(8131), - [anon_sym_PERCENT_EQ] = ACTIONS(8131), - [anon_sym_EQ_EQ] = ACTIONS(9202), - [anon_sym_PIPE] = ACTIONS(9204), - [anon_sym_LT] = ACTIONS(9206), - [anon_sym_CARET_EQ] = ACTIONS(8131), - [anon_sym_AMP] = ACTIONS(9208), - [anon_sym_RBRACE] = ACTIONS(8131), - [anon_sym_GT_EQ] = ACTIONS(9210), - [anon_sym_STAR] = ACTIONS(9212), - [anon_sym_PLUS] = ACTIONS(9200), - [anon_sym_SLASH] = ACTIONS(9212), - [anon_sym_SLASH_EQ] = ACTIONS(8131), - [anon_sym_PLUS_EQ] = ACTIONS(8131), - [anon_sym_CARET] = ACTIONS(9214), - [anon_sym_GT] = ACTIONS(9206), - [anon_sym_PIPE_EQ] = ACTIONS(8131), - [anon_sym_GT_GT_EQ] = ACTIONS(8131), - [anon_sym_COMMA] = ACTIONS(8131), - [anon_sym_PIPE_PIPE] = ACTIONS(9216), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(9218), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(9212), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(10577), - [anon_sym_DASH_EQ] = ACTIONS(8131), - [anon_sym_SEMI] = ACTIONS(8131), - [anon_sym_BANG_EQ] = ACTIONS(9202), - [anon_sym_AMP_EQ] = ACTIONS(8131), - [anon_sym_AMP_AMP] = ACTIONS(9220), - [anon_sym_LT_EQ] = ACTIONS(9210), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(9218), - [anon_sym_DASH_DASH] = ACTIONS(2959), + [4766] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(9171), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(8176), + [anon_sym_LT_LT_EQ] = ACTIONS(8176), + [anon_sym_PERCENT_EQ] = ACTIONS(8176), + [anon_sym_EQ_EQ] = ACTIONS(9173), + [anon_sym_PIPE] = ACTIONS(9175), + [anon_sym_LT] = ACTIONS(9177), + [anon_sym_CARET_EQ] = ACTIONS(8176), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(8176), + [anon_sym_GT_EQ] = ACTIONS(9181), + [anon_sym_STAR] = ACTIONS(9183), + [anon_sym_PLUS] = ACTIONS(9171), + [anon_sym_SLASH] = ACTIONS(9183), + [anon_sym_SLASH_EQ] = ACTIONS(8176), + [anon_sym_PLUS_EQ] = ACTIONS(8176), + [anon_sym_CARET] = ACTIONS(9185), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_PIPE_EQ] = ACTIONS(8176), + [anon_sym_GT_GT_EQ] = ACTIONS(8176), + [anon_sym_COMMA] = ACTIONS(8176), + [anon_sym_PIPE_PIPE] = ACTIONS(9187), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(9183), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(10543), + [anon_sym_DASH_EQ] = ACTIONS(8176), + [anon_sym_SEMI] = ACTIONS(8176), + [anon_sym_BANG_EQ] = ACTIONS(9173), + [anon_sym_AMP_EQ] = ACTIONS(8176), + [anon_sym_AMP_AMP] = ACTIONS(9191), + [anon_sym_LT_EQ] = ACTIONS(9181), + [anon_sym_EQ] = ACTIONS(8861), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(9189), + [anon_sym_DASH_DASH] = ACTIONS(2961), }, - [4796] = { - [anon_sym_DASH] = ACTIONS(6416), - [sym_raw_string_literal] = ACTIONS(6418), - [sym_true] = ACTIONS(6416), - [anon_sym_mutable] = ACTIONS(6416), - [sym_null] = ACTIONS(6416), - [anon_sym_break] = ACTIONS(6416), - [anon_sym_BANG] = ACTIONS(6418), - [anon_sym_sizeof] = ACTIONS(6416), - [anon_sym_volatile] = ACTIONS(6416), - [anon_sym_PLUS] = ACTIONS(6416), - [anon_sym_typedef] = ACTIONS(6416), - [anon_sym_switch] = ACTIONS(6416), - [anon_sym_explicit] = ACTIONS(6416), - [sym_identifier] = ACTIONS(6416), - [anon_sym_delete] = ACTIONS(6416), - [anon_sym_continue] = ACTIONS(6416), - [anon_sym__Atomic] = ACTIONS(6416), - [sym_number_literal] = ACTIONS(6418), - [anon_sym_extern] = ACTIONS(6416), - [anon_sym_enum] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6416), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6418), - [anon_sym_case] = ACTIONS(6416), - [anon_sym_SQUOTE] = ACTIONS(6418), - [anon_sym_LBRACE] = ACTIONS(6418), - [anon_sym_DASH_DASH] = ACTIONS(6418), - [anon_sym_LPAREN2] = ACTIONS(6418), - [anon_sym_struct] = ACTIONS(6416), - [sym_auto] = ACTIONS(6416), - [anon_sym_signed] = ACTIONS(6416), - [anon_sym_long] = ACTIONS(6416), - [anon_sym_COLON_COLON] = ACTIONS(6418), - [anon_sym_default] = ACTIONS(6416), - [anon_sym_AMP] = ACTIONS(6418), - [anon_sym_static] = ACTIONS(6416), - [anon_sym_RBRACE] = ACTIONS(6418), - [anon_sym_STAR] = ACTIONS(6418), - [anon_sym_union] = ACTIONS(6416), - [anon_sym_typename] = ACTIONS(6416), - [anon_sym_short] = ACTIONS(6416), - [anon_sym_new] = ACTIONS(6416), - [anon_sym_goto] = ACTIONS(6416), - [anon_sym_while] = ACTIONS(6416), - [anon_sym_try] = ACTIONS(6416), - [anon_sym_for] = ACTIONS(6416), - [anon_sym_register] = ACTIONS(6416), - [anon_sym_DQUOTE] = ACTIONS(6418), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_LBRACK] = ACTIONS(6416), - [anon_sym_class] = ACTIONS(6416), - [anon_sym_if] = ACTIONS(6416), - [sym_primitive_type] = ACTIONS(6416), - [sym_false] = ACTIONS(6416), - [sym_nullptr] = ACTIONS(6416), - [anon_sym_do] = ACTIONS(6416), - [anon_sym_return] = ACTIONS(6416), - [anon_sym_TILDE] = ACTIONS(6418), - [anon_sym_SEMI] = ACTIONS(6418), - [anon_sym_inline] = ACTIONS(6416), - [anon_sym_PLUS_PLUS] = ACTIONS(6418), - [anon_sym_restrict] = ACTIONS(6416), + [4767] = { + [anon_sym_DASH] = ACTIONS(6405), + [sym_raw_string_literal] = ACTIONS(6407), + [sym_true] = ACTIONS(6405), + [anon_sym_mutable] = ACTIONS(6405), + [sym_null] = ACTIONS(6405), + [anon_sym_break] = ACTIONS(6405), + [anon_sym_BANG] = ACTIONS(6407), + [anon_sym_sizeof] = ACTIONS(6405), + [anon_sym_volatile] = ACTIONS(6405), + [anon_sym_PLUS] = ACTIONS(6405), + [anon_sym_typedef] = ACTIONS(6405), + [anon_sym_switch] = ACTIONS(6405), + [anon_sym_explicit] = ACTIONS(6405), + [sym_identifier] = ACTIONS(6405), + [anon_sym_delete] = ACTIONS(6405), + [anon_sym_continue] = ACTIONS(6405), + [anon_sym__Atomic] = ACTIONS(6405), + [sym_number_literal] = ACTIONS(6407), + [anon_sym_extern] = ACTIONS(6405), + [anon_sym_enum] = ACTIONS(6405), + [anon_sym_constexpr] = ACTIONS(6405), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6407), + [anon_sym_case] = ACTIONS(6405), + [anon_sym_SQUOTE] = ACTIONS(6407), + [anon_sym_LBRACE] = ACTIONS(6407), + [anon_sym_DASH_DASH] = ACTIONS(6407), + [anon_sym_LPAREN2] = ACTIONS(6407), + [anon_sym_struct] = ACTIONS(6405), + [sym_auto] = ACTIONS(6405), + [anon_sym_signed] = ACTIONS(6405), + [anon_sym_long] = ACTIONS(6405), + [anon_sym_COLON_COLON] = ACTIONS(6407), + [anon_sym_default] = ACTIONS(6405), + [anon_sym_AMP] = ACTIONS(6407), + [anon_sym_static] = ACTIONS(6405), + [anon_sym_RBRACE] = ACTIONS(6407), + [anon_sym_STAR] = ACTIONS(6407), + [anon_sym_union] = ACTIONS(6405), + [anon_sym_typename] = ACTIONS(6405), + [anon_sym_short] = ACTIONS(6405), + [anon_sym_new] = ACTIONS(6405), + [anon_sym_goto] = ACTIONS(6405), + [anon_sym_while] = ACTIONS(6405), + [anon_sym_try] = ACTIONS(6405), + [anon_sym_for] = ACTIONS(6405), + [anon_sym_register] = ACTIONS(6405), + [anon_sym_DQUOTE] = ACTIONS(6407), + [anon_sym_const] = ACTIONS(6405), + [anon_sym_LBRACK] = ACTIONS(6405), + [anon_sym_class] = ACTIONS(6405), + [anon_sym_if] = ACTIONS(6405), + [sym_primitive_type] = ACTIONS(6405), + [sym_false] = ACTIONS(6405), + [sym_nullptr] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(6405), + [anon_sym_return] = ACTIONS(6405), + [anon_sym_TILDE] = ACTIONS(6407), + [anon_sym_SEMI] = ACTIONS(6407), + [anon_sym_inline] = ACTIONS(6405), + [anon_sym_PLUS_PLUS] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6405), }, - [4797] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [4768] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10579), + [anon_sym_SEMI] = ACTIONS(10545), }, - [4798] = { - [anon_sym_DASH] = ACTIONS(6505), - [sym_raw_string_literal] = ACTIONS(6507), - [anon_sym_else] = ACTIONS(6505), - [sym_true] = ACTIONS(6505), - [anon_sym_mutable] = ACTIONS(6505), - [sym_null] = ACTIONS(6505), - [anon_sym_break] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6507), - [anon_sym_sizeof] = ACTIONS(6505), - [anon_sym_volatile] = ACTIONS(6505), - [anon_sym_PLUS] = ACTIONS(6505), - [anon_sym_typedef] = ACTIONS(6505), - [anon_sym_switch] = ACTIONS(6505), - [anon_sym_explicit] = ACTIONS(6505), - [sym_identifier] = ACTIONS(6505), - [anon_sym_delete] = ACTIONS(6505), - [anon_sym_continue] = ACTIONS(6505), - [anon_sym__Atomic] = ACTIONS(6505), - [sym_number_literal] = ACTIONS(6507), - [anon_sym_extern] = ACTIONS(6505), - [anon_sym_enum] = ACTIONS(6505), - [anon_sym_constexpr] = ACTIONS(6505), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(6505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6507), - [anon_sym_case] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [anon_sym_DASH_DASH] = ACTIONS(6507), - [anon_sym_LPAREN2] = ACTIONS(6507), - [anon_sym_struct] = ACTIONS(6505), - [sym_auto] = ACTIONS(6505), - [anon_sym_signed] = ACTIONS(6505), - [anon_sym_long] = ACTIONS(6505), - [anon_sym_COLON_COLON] = ACTIONS(6507), - [anon_sym_default] = ACTIONS(6505), - [anon_sym_AMP] = ACTIONS(6507), - [anon_sym_static] = ACTIONS(6505), - [anon_sym_RBRACE] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_union] = ACTIONS(6505), - [anon_sym_typename] = ACTIONS(6505), - [anon_sym_short] = ACTIONS(6505), - [anon_sym_new] = ACTIONS(6505), - [anon_sym_goto] = ACTIONS(6505), - [anon_sym_while] = ACTIONS(6505), - [anon_sym_try] = ACTIONS(6505), - [anon_sym_for] = ACTIONS(6505), - [anon_sym_register] = ACTIONS(6505), - [anon_sym_DQUOTE] = ACTIONS(6507), - [anon_sym_const] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6505), - [anon_sym_class] = ACTIONS(6505), - [anon_sym_if] = ACTIONS(6505), - [sym_primitive_type] = ACTIONS(6505), - [sym_false] = ACTIONS(6505), - [sym_nullptr] = ACTIONS(6505), - [anon_sym_do] = ACTIONS(6505), - [anon_sym_return] = ACTIONS(6505), - [anon_sym_TILDE] = ACTIONS(6507), - [anon_sym_SEMI] = ACTIONS(6507), - [anon_sym_inline] = ACTIONS(6505), - [anon_sym_PLUS_PLUS] = ACTIONS(6507), - [anon_sym_restrict] = ACTIONS(6505), + [4769] = { + [anon_sym_DASH] = ACTIONS(6494), + [sym_raw_string_literal] = ACTIONS(6496), + [anon_sym_else] = ACTIONS(6494), + [sym_true] = ACTIONS(6494), + [anon_sym_mutable] = ACTIONS(6494), + [sym_null] = ACTIONS(6494), + [anon_sym_break] = ACTIONS(6494), + [anon_sym_BANG] = ACTIONS(6496), + [anon_sym_sizeof] = ACTIONS(6494), + [anon_sym_volatile] = ACTIONS(6494), + [anon_sym_PLUS] = ACTIONS(6494), + [anon_sym_typedef] = ACTIONS(6494), + [anon_sym_switch] = ACTIONS(6494), + [anon_sym_explicit] = ACTIONS(6494), + [sym_identifier] = ACTIONS(6494), + [anon_sym_delete] = ACTIONS(6494), + [anon_sym_continue] = ACTIONS(6494), + [anon_sym__Atomic] = ACTIONS(6494), + [sym_number_literal] = ACTIONS(6496), + [anon_sym_extern] = ACTIONS(6494), + [anon_sym_enum] = ACTIONS(6494), + [anon_sym_constexpr] = ACTIONS(6494), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(6494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6496), + [anon_sym_case] = ACTIONS(6494), + [anon_sym_SQUOTE] = ACTIONS(6496), + [anon_sym_LBRACE] = ACTIONS(6496), + [anon_sym_DASH_DASH] = ACTIONS(6496), + [anon_sym_LPAREN2] = ACTIONS(6496), + [anon_sym_struct] = ACTIONS(6494), + [sym_auto] = ACTIONS(6494), + [anon_sym_signed] = ACTIONS(6494), + [anon_sym_long] = ACTIONS(6494), + [anon_sym_COLON_COLON] = ACTIONS(6496), + [anon_sym_default] = ACTIONS(6494), + [anon_sym_AMP] = ACTIONS(6496), + [anon_sym_static] = ACTIONS(6494), + [anon_sym_RBRACE] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6496), + [anon_sym_union] = ACTIONS(6494), + [anon_sym_typename] = ACTIONS(6494), + [anon_sym_short] = ACTIONS(6494), + [anon_sym_new] = ACTIONS(6494), + [anon_sym_goto] = ACTIONS(6494), + [anon_sym_while] = ACTIONS(6494), + [anon_sym_try] = ACTIONS(6494), + [anon_sym_for] = ACTIONS(6494), + [anon_sym_register] = ACTIONS(6494), + [anon_sym_DQUOTE] = ACTIONS(6496), + [anon_sym_const] = ACTIONS(6494), + [anon_sym_LBRACK] = ACTIONS(6494), + [anon_sym_class] = ACTIONS(6494), + [anon_sym_if] = ACTIONS(6494), + [sym_primitive_type] = ACTIONS(6494), + [sym_false] = ACTIONS(6494), + [sym_nullptr] = ACTIONS(6494), + [anon_sym_do] = ACTIONS(6494), + [anon_sym_return] = ACTIONS(6494), + [anon_sym_TILDE] = ACTIONS(6496), + [anon_sym_SEMI] = ACTIONS(6496), + [anon_sym_inline] = ACTIONS(6494), + [anon_sym_PLUS_PLUS] = ACTIONS(6496), + [anon_sym_restrict] = ACTIONS(6494), }, - [4799] = { - [anon_sym_DASH] = ACTIONS(7557), - [sym_raw_string_literal] = ACTIONS(7559), - [anon_sym_else] = ACTIONS(7557), - [sym_true] = ACTIONS(7557), - [anon_sym_mutable] = ACTIONS(7557), - [sym_null] = ACTIONS(7557), - [anon_sym_break] = ACTIONS(7557), - [anon_sym_BANG] = ACTIONS(7559), - [anon_sym_sizeof] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [anon_sym_PLUS] = ACTIONS(7557), - [anon_sym_typedef] = ACTIONS(7557), - [anon_sym_switch] = ACTIONS(7557), - [anon_sym_explicit] = ACTIONS(7557), - [sym_identifier] = ACTIONS(7557), - [anon_sym_catch] = ACTIONS(7557), - [anon_sym_delete] = ACTIONS(7557), - [anon_sym_continue] = ACTIONS(7557), - [anon_sym__Atomic] = ACTIONS(7557), - [sym_number_literal] = ACTIONS(7559), - [anon_sym_extern] = ACTIONS(7557), - [anon_sym_enum] = ACTIONS(7557), - [anon_sym_constexpr] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7559), - [anon_sym_case] = ACTIONS(7557), - [anon_sym_SQUOTE] = ACTIONS(7559), - [anon_sym_LBRACE] = ACTIONS(7559), - [anon_sym_DASH_DASH] = ACTIONS(7559), - [anon_sym_LPAREN2] = ACTIONS(7559), - [anon_sym_struct] = ACTIONS(7557), - [sym_auto] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(7557), - [anon_sym_long] = ACTIONS(7557), - [anon_sym_COLON_COLON] = ACTIONS(7559), - [anon_sym_default] = ACTIONS(7557), - [anon_sym_AMP] = ACTIONS(7559), - [anon_sym_static] = ACTIONS(7557), - [anon_sym_RBRACE] = ACTIONS(7559), - [anon_sym_STAR] = ACTIONS(7559), - [anon_sym_union] = ACTIONS(7557), - [anon_sym_typename] = ACTIONS(7557), - [anon_sym_short] = ACTIONS(7557), - [anon_sym_new] = ACTIONS(7557), - [anon_sym_goto] = ACTIONS(7557), - [anon_sym_while] = ACTIONS(7557), - [anon_sym_try] = ACTIONS(7557), - [anon_sym_for] = ACTIONS(7557), - [anon_sym_register] = ACTIONS(7557), - [anon_sym_DQUOTE] = ACTIONS(7559), - [anon_sym_const] = ACTIONS(7557), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_class] = ACTIONS(7557), - [anon_sym_if] = ACTIONS(7557), - [sym_primitive_type] = ACTIONS(7557), - [sym_false] = ACTIONS(7557), - [sym_nullptr] = ACTIONS(7557), - [anon_sym_do] = ACTIONS(7557), - [anon_sym_return] = ACTIONS(7557), - [anon_sym_TILDE] = ACTIONS(7559), - [anon_sym_SEMI] = ACTIONS(7559), - [anon_sym_inline] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7559), - [anon_sym_restrict] = ACTIONS(7557), + [4770] = { + [anon_sym_DASH] = ACTIONS(7538), + [sym_raw_string_literal] = ACTIONS(7540), + [anon_sym_else] = ACTIONS(7538), + [sym_true] = ACTIONS(7538), + [anon_sym_mutable] = ACTIONS(7538), + [sym_null] = ACTIONS(7538), + [anon_sym_break] = ACTIONS(7538), + [anon_sym_BANG] = ACTIONS(7540), + [anon_sym_sizeof] = ACTIONS(7538), + [anon_sym_volatile] = ACTIONS(7538), + [anon_sym_PLUS] = ACTIONS(7538), + [anon_sym_typedef] = ACTIONS(7538), + [anon_sym_switch] = ACTIONS(7538), + [anon_sym_explicit] = ACTIONS(7538), + [sym_identifier] = ACTIONS(7538), + [anon_sym_catch] = ACTIONS(7538), + [anon_sym_delete] = ACTIONS(7538), + [anon_sym_continue] = ACTIONS(7538), + [anon_sym__Atomic] = ACTIONS(7538), + [sym_number_literal] = ACTIONS(7540), + [anon_sym_extern] = ACTIONS(7538), + [anon_sym_enum] = ACTIONS(7538), + [anon_sym_constexpr] = ACTIONS(7538), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7540), + [anon_sym_case] = ACTIONS(7538), + [anon_sym_SQUOTE] = ACTIONS(7540), + [anon_sym_LBRACE] = ACTIONS(7540), + [anon_sym_DASH_DASH] = ACTIONS(7540), + [anon_sym_LPAREN2] = ACTIONS(7540), + [anon_sym_struct] = ACTIONS(7538), + [sym_auto] = ACTIONS(7538), + [anon_sym_signed] = ACTIONS(7538), + [anon_sym_long] = ACTIONS(7538), + [anon_sym_COLON_COLON] = ACTIONS(7540), + [anon_sym_default] = ACTIONS(7538), + [anon_sym_AMP] = ACTIONS(7540), + [anon_sym_static] = ACTIONS(7538), + [anon_sym_RBRACE] = ACTIONS(7540), + [anon_sym_STAR] = ACTIONS(7540), + [anon_sym_union] = ACTIONS(7538), + [anon_sym_typename] = ACTIONS(7538), + [anon_sym_short] = ACTIONS(7538), + [anon_sym_new] = ACTIONS(7538), + [anon_sym_goto] = ACTIONS(7538), + [anon_sym_while] = ACTIONS(7538), + [anon_sym_try] = ACTIONS(7538), + [anon_sym_for] = ACTIONS(7538), + [anon_sym_register] = ACTIONS(7538), + [anon_sym_DQUOTE] = ACTIONS(7540), + [anon_sym_const] = ACTIONS(7538), + [anon_sym_LBRACK] = ACTIONS(7538), + [anon_sym_class] = ACTIONS(7538), + [anon_sym_if] = ACTIONS(7538), + [sym_primitive_type] = ACTIONS(7538), + [sym_false] = ACTIONS(7538), + [sym_nullptr] = ACTIONS(7538), + [anon_sym_do] = ACTIONS(7538), + [anon_sym_return] = ACTIONS(7538), + [anon_sym_TILDE] = ACTIONS(7540), + [anon_sym_SEMI] = ACTIONS(7540), + [anon_sym_inline] = ACTIONS(7538), + [anon_sym_PLUS_PLUS] = ACTIONS(7540), + [anon_sym_restrict] = ACTIONS(7538), }, - [4800] = { - [sym_do_statement] = STATE(4922), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4771] = { + [sym_do_statement] = STATE(4893), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(4922), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(4922), - [sym_if_statement] = STATE(4922), - [sym_switch_statement] = STATE(4922), - [sym_for_statement] = STATE(4922), - [sym_return_statement] = STATE(4922), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4893), + [sym_try_statement] = STATE(4893), + [sym_if_statement] = STATE(4893), + [sym_switch_statement] = STATE(4893), + [sym_for_statement] = STATE(4893), + [sym_return_statement] = STATE(4893), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(4922), - [sym_break_statement] = STATE(4922), - [sym_continue_statement] = STATE(4922), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4893), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4922), - [sym_labeled_statement] = STATE(4922), - [sym_expression_statement] = STATE(4922), - [sym_while_statement] = STATE(4922), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4893), + [sym_for_range_loop] = STATE(4893), + [sym_compound_statement] = STATE(4893), + [sym_labeled_statement] = STATE(4893), + [sym_expression_statement] = STATE(4893), + [sym_while_statement] = STATE(4893), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4801] = { - [aux_sym_for_statement_repeat1] = STATE(4924), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10581), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4772] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4895), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10547), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4802] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4925), - [sym_logical_expression] = STATE(4925), - [sym_bitwise_expression] = STATE(4925), - [sym_cast_expression] = STATE(4925), - [sym_new_expression] = STATE(4925), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4925), - [sym_char_literal] = STATE(4925), - [sym_template_function] = STATE(4925), - [sym_conditional_expression] = STATE(4925), - [sym_equality_expression] = STATE(4925), - [sym_relational_expression] = STATE(4925), - [sym_delete_expression] = STATE(4925), - [sym_sizeof_expression] = STATE(4925), - [sym_parenthesized_expression] = STATE(4925), - [sym_lambda_expression] = STATE(4925), - [sym_concatenated_string] = STATE(4925), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4925), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4925), - [sym_math_expression] = STATE(4925), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10583), + [4773] = { + [sym_template_function] = STATE(4896), + [sym__expression] = STATE(4896), + [sym_logical_expression] = STATE(4896), + [sym_bitwise_expression] = STATE(4896), + [sym_cast_expression] = STATE(4896), + [sym_delete_expression] = STATE(4896), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4896), + [sym_lambda_expression] = STATE(4896), + [sym_char_literal] = STATE(4896), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4896), + [sym_equality_expression] = STATE(4896), + [sym_relational_expression] = STATE(4896), + [sym_sizeof_expression] = STATE(4896), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4896), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4896), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4896), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4896), + [sym_math_expression] = STATE(4896), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4896), + [sym_raw_string_literal] = ACTIONS(10549), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10585), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10585), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10551), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10551), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10583), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10549), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10585), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10585), + [sym_false] = ACTIONS(10551), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10551), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10581), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10547), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4803] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10587), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4774] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10553), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4804] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10589), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4775] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10555), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4805] = { - [sym_template_argument_list] = STATE(377), + [4776] = { [sym_initializer_list] = STATE(100), + [sym_template_argument_list] = STATE(378), [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(163), [anon_sym_EQ] = ACTIONS(171), @@ -194166,7 +193603,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(167), [anon_sym_LT_LT_EQ] = ACTIONS(167), [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_COLON_COLON] = ACTIONS(652), [anon_sym_EQ_EQ] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(163), [anon_sym_LT] = ACTIONS(177), @@ -194176,7 +193613,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(163), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(10591), + [anon_sym_COLON] = ACTIONS(10557), [anon_sym_SLASH_EQ] = ACTIONS(167), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(163), @@ -194202,2219 +193639,2219 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(163), [anon_sym_DASH_DASH] = ACTIONS(165), }, - [4806] = { - [sym_parenthesized_expression] = STATE(4929), - [anon_sym_LPAREN2] = ACTIONS(372), + [4777] = { + [sym_parenthesized_expression] = STATE(4900), + [anon_sym_LPAREN2] = ACTIONS(374), [sym_comment] = ACTIONS(3), }, - [4807] = { - [anon_sym_LPAREN2] = ACTIONS(10593), + [4778] = { + [anon_sym_LPAREN2] = ACTIONS(10559), [sym_comment] = ACTIONS(3), }, - [4808] = { - [sym_compound_statement] = STATE(4931), - [anon_sym_LBRACE] = ACTIONS(374), + [4779] = { + [sym_compound_statement] = STATE(4902), + [anon_sym_LBRACE] = ACTIONS(376), [sym_comment] = ACTIONS(3), }, - [4809] = { - [anon_sym_LPAREN2] = ACTIONS(10595), - [anon_sym_constexpr] = ACTIONS(10597), + [4780] = { + [anon_sym_LPAREN2] = ACTIONS(10561), + [anon_sym_constexpr] = ACTIONS(10563), [sym_comment] = ACTIONS(3), }, - [4810] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(10599), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_case] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_default] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7772), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_RBRACE] = ACTIONS(7772), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [4781] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(10565), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_case] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_default] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7753), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [4811] = { - [sym_do_statement] = STATE(4935), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4782] = { + [sym_do_statement] = STATE(4906), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(4935), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(4935), - [sym_if_statement] = STATE(4935), - [sym_switch_statement] = STATE(4935), - [sym_for_statement] = STATE(4935), - [sym_return_statement] = STATE(4935), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4906), + [sym_try_statement] = STATE(4906), + [sym_if_statement] = STATE(4906), + [sym_switch_statement] = STATE(4906), + [sym_for_statement] = STATE(4906), + [sym_return_statement] = STATE(4906), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(4935), - [sym_break_statement] = STATE(4935), - [sym_continue_statement] = STATE(4935), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4906), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4935), - [sym_labeled_statement] = STATE(4935), - [sym_expression_statement] = STATE(4935), - [sym_while_statement] = STATE(4935), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4906), + [sym_for_range_loop] = STATE(4906), + [sym_compound_statement] = STATE(4906), + [sym_labeled_statement] = STATE(4906), + [sym_expression_statement] = STATE(4906), + [sym_while_statement] = STATE(4906), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4812] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10601), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4783] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10567), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4813] = { - [anon_sym_RPAREN] = ACTIONS(10601), + [4784] = { + [anon_sym_RPAREN] = ACTIONS(10567), [sym_comment] = ACTIONS(3), }, - [4814] = { - [anon_sym_DASH] = ACTIONS(8307), - [sym_raw_string_literal] = ACTIONS(8309), - [sym_true] = ACTIONS(8307), - [anon_sym_mutable] = ACTIONS(8307), - [sym_null] = ACTIONS(8307), - [anon_sym_break] = ACTIONS(8307), - [anon_sym_BANG] = ACTIONS(8309), - [anon_sym_sizeof] = ACTIONS(8307), - [anon_sym_volatile] = ACTIONS(8307), - [anon_sym_PLUS] = ACTIONS(8307), - [anon_sym_typedef] = ACTIONS(8307), - [anon_sym_switch] = ACTIONS(8307), - [anon_sym_explicit] = ACTIONS(8307), - [sym_identifier] = ACTIONS(8307), - [anon_sym_delete] = ACTIONS(8307), - [anon_sym_continue] = ACTIONS(8307), - [anon_sym__Atomic] = ACTIONS(8307), - [sym_number_literal] = ACTIONS(8309), - [anon_sym_extern] = ACTIONS(8307), - [anon_sym_enum] = ACTIONS(8307), - [anon_sym_constexpr] = ACTIONS(8307), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8309), - [anon_sym_case] = ACTIONS(8307), - [anon_sym_SQUOTE] = ACTIONS(8309), - [anon_sym_LBRACE] = ACTIONS(8309), - [anon_sym_DASH_DASH] = ACTIONS(8309), - [anon_sym_LPAREN2] = ACTIONS(8309), - [anon_sym_struct] = ACTIONS(8307), - [sym_auto] = ACTIONS(8307), - [anon_sym_signed] = ACTIONS(8307), - [anon_sym_long] = ACTIONS(8307), - [anon_sym_COLON_COLON] = ACTIONS(8309), - [anon_sym_default] = ACTIONS(8307), - [anon_sym_AMP] = ACTIONS(8309), - [anon_sym_static] = ACTIONS(8307), - [anon_sym_RBRACE] = ACTIONS(8309), - [anon_sym_STAR] = ACTIONS(8309), - [anon_sym_union] = ACTIONS(8307), - [anon_sym_typename] = ACTIONS(8307), - [anon_sym_short] = ACTIONS(8307), - [anon_sym_new] = ACTIONS(8307), - [anon_sym_goto] = ACTIONS(8307), - [anon_sym_while] = ACTIONS(8307), - [anon_sym_try] = ACTIONS(8307), - [anon_sym_for] = ACTIONS(8307), - [anon_sym_register] = ACTIONS(8307), - [anon_sym_DQUOTE] = ACTIONS(8309), - [anon_sym_const] = ACTIONS(8307), - [anon_sym_LBRACK] = ACTIONS(8307), - [anon_sym_class] = ACTIONS(8307), - [anon_sym_if] = ACTIONS(8307), - [sym_primitive_type] = ACTIONS(8307), - [sym_false] = ACTIONS(8307), - [sym_nullptr] = ACTIONS(8307), - [anon_sym_do] = ACTIONS(8307), - [anon_sym_return] = ACTIONS(8307), - [anon_sym_TILDE] = ACTIONS(8309), - [anon_sym_SEMI] = ACTIONS(8309), - [anon_sym_inline] = ACTIONS(8307), - [anon_sym_PLUS_PLUS] = ACTIONS(8309), - [anon_sym_restrict] = ACTIONS(8307), + [4785] = { + [anon_sym_DASH] = ACTIONS(7887), + [sym_raw_string_literal] = ACTIONS(7889), + [sym_true] = ACTIONS(7887), + [anon_sym_mutable] = ACTIONS(7887), + [sym_null] = ACTIONS(7887), + [anon_sym_break] = ACTIONS(7887), + [anon_sym_BANG] = ACTIONS(7889), + [anon_sym_sizeof] = ACTIONS(7887), + [anon_sym_volatile] = ACTIONS(7887), + [anon_sym_PLUS] = ACTIONS(7887), + [anon_sym_typedef] = ACTIONS(7887), + [anon_sym_switch] = ACTIONS(7887), + [anon_sym_explicit] = ACTIONS(7887), + [sym_identifier] = ACTIONS(7887), + [anon_sym_delete] = ACTIONS(7887), + [anon_sym_continue] = ACTIONS(7887), + [anon_sym__Atomic] = ACTIONS(7887), + [sym_number_literal] = ACTIONS(7889), + [anon_sym_extern] = ACTIONS(7887), + [anon_sym_enum] = ACTIONS(7887), + [anon_sym_constexpr] = ACTIONS(7887), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7887), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7889), + [anon_sym_case] = ACTIONS(7887), + [anon_sym_SQUOTE] = ACTIONS(7889), + [anon_sym_LBRACE] = ACTIONS(7889), + [anon_sym_DASH_DASH] = ACTIONS(7889), + [anon_sym_LPAREN2] = ACTIONS(7889), + [anon_sym_struct] = ACTIONS(7887), + [sym_auto] = ACTIONS(7887), + [anon_sym_signed] = ACTIONS(7887), + [anon_sym_long] = ACTIONS(7887), + [anon_sym_COLON_COLON] = ACTIONS(7889), + [anon_sym_default] = ACTIONS(7887), + [anon_sym_AMP] = ACTIONS(7889), + [anon_sym_static] = ACTIONS(7887), + [anon_sym_RBRACE] = ACTIONS(7889), + [anon_sym_STAR] = ACTIONS(7889), + [anon_sym_union] = ACTIONS(7887), + [anon_sym_typename] = ACTIONS(7887), + [anon_sym_short] = ACTIONS(7887), + [anon_sym_new] = ACTIONS(7887), + [anon_sym_goto] = ACTIONS(7887), + [anon_sym_while] = ACTIONS(7887), + [anon_sym_try] = ACTIONS(7887), + [anon_sym_for] = ACTIONS(7887), + [anon_sym_register] = ACTIONS(7887), + [anon_sym_DQUOTE] = ACTIONS(7889), + [anon_sym_const] = ACTIONS(7887), + [anon_sym_LBRACK] = ACTIONS(7887), + [anon_sym_class] = ACTIONS(7887), + [anon_sym_if] = ACTIONS(7887), + [sym_primitive_type] = ACTIONS(7887), + [sym_false] = ACTIONS(7887), + [sym_nullptr] = ACTIONS(7887), + [anon_sym_do] = ACTIONS(7887), + [anon_sym_return] = ACTIONS(7887), + [anon_sym_TILDE] = ACTIONS(7889), + [anon_sym_SEMI] = ACTIONS(7889), + [anon_sym_inline] = ACTIONS(7887), + [anon_sym_PLUS_PLUS] = ACTIONS(7889), + [anon_sym_restrict] = ACTIONS(7887), }, - [4815] = { - [anon_sym_LPAREN2] = ACTIONS(9822), - [anon_sym_DASH] = ACTIONS(9820), - [sym_raw_string_literal] = ACTIONS(9822), - [sym_true] = ACTIONS(9820), - [anon_sym_else] = ACTIONS(9820), - [sym_null] = ACTIONS(9820), - [anon_sym_COLON_COLON] = ACTIONS(9822), - [anon_sym_default] = ACTIONS(9820), - [anon_sym_break] = ACTIONS(9820), - [anon_sym_BANG] = ACTIONS(9822), - [anon_sym_AMP] = ACTIONS(9822), - [anon_sym_sizeof] = ACTIONS(9820), - [anon_sym_RBRACE] = ACTIONS(9822), - [anon_sym_PLUS] = ACTIONS(9820), - [anon_sym_STAR] = ACTIONS(9822), - [anon_sym_switch] = ACTIONS(9820), - [sym_identifier] = ACTIONS(9820), - [anon_sym_new] = ACTIONS(9820), - [anon_sym_goto] = ACTIONS(9820), - [anon_sym_while] = ACTIONS(9820), - [anon_sym_continue] = ACTIONS(9820), - [anon_sym_for] = ACTIONS(9820), - [anon_sym_delete] = ACTIONS(9820), - [anon_sym_try] = ACTIONS(9820), - [anon_sym_DQUOTE] = ACTIONS(9822), - [sym_number_literal] = ACTIONS(9822), - [anon_sym_LBRACK] = ACTIONS(9822), - [anon_sym_if] = ACTIONS(9820), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(9820), - [sym_nullptr] = ACTIONS(9820), - [anon_sym_do] = ACTIONS(9820), - [anon_sym_case] = ACTIONS(9820), - [anon_sym_return] = ACTIONS(9820), - [anon_sym_TILDE] = ACTIONS(9822), - [anon_sym_SEMI] = ACTIONS(9822), - [anon_sym_PLUS_PLUS] = ACTIONS(9822), - [anon_sym_SQUOTE] = ACTIONS(9822), - [anon_sym_LBRACE] = ACTIONS(9822), - [anon_sym_DASH_DASH] = ACTIONS(9822), + [4786] = { + [anon_sym_LPAREN2] = ACTIONS(9788), + [anon_sym_DASH] = ACTIONS(9786), + [sym_raw_string_literal] = ACTIONS(9788), + [sym_true] = ACTIONS(9786), + [anon_sym_else] = ACTIONS(9786), + [sym_null] = ACTIONS(9786), + [anon_sym_COLON_COLON] = ACTIONS(9788), + [anon_sym_default] = ACTIONS(9786), + [anon_sym_break] = ACTIONS(9786), + [anon_sym_BANG] = ACTIONS(9788), + [anon_sym_AMP] = ACTIONS(9788), + [anon_sym_sizeof] = ACTIONS(9786), + [anon_sym_RBRACE] = ACTIONS(9788), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_STAR] = ACTIONS(9788), + [anon_sym_switch] = ACTIONS(9786), + [sym_identifier] = ACTIONS(9786), + [anon_sym_new] = ACTIONS(9786), + [anon_sym_goto] = ACTIONS(9786), + [anon_sym_while] = ACTIONS(9786), + [anon_sym_continue] = ACTIONS(9786), + [anon_sym_for] = ACTIONS(9786), + [anon_sym_delete] = ACTIONS(9786), + [anon_sym_try] = ACTIONS(9786), + [anon_sym_DQUOTE] = ACTIONS(9788), + [sym_number_literal] = ACTIONS(9788), + [anon_sym_LBRACK] = ACTIONS(9788), + [anon_sym_if] = ACTIONS(9786), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(9786), + [sym_nullptr] = ACTIONS(9786), + [anon_sym_do] = ACTIONS(9786), + [anon_sym_case] = ACTIONS(9786), + [anon_sym_return] = ACTIONS(9786), + [anon_sym_TILDE] = ACTIONS(9788), + [anon_sym_SEMI] = ACTIONS(9788), + [anon_sym_PLUS_PLUS] = ACTIONS(9788), + [anon_sym_SQUOTE] = ACTIONS(9788), + [anon_sym_LBRACE] = ACTIONS(9788), + [anon_sym_DASH_DASH] = ACTIONS(9788), }, - [4816] = { - [sym_do_statement] = STATE(4937), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4787] = { + [sym_do_statement] = STATE(4908), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4937), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4937), - [sym_if_statement] = STATE(4937), - [sym_switch_statement] = STATE(4937), - [sym_for_statement] = STATE(4937), - [sym_return_statement] = STATE(4937), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4908), + [sym_try_statement] = STATE(4908), + [sym_if_statement] = STATE(4908), + [sym_switch_statement] = STATE(4908), + [sym_for_statement] = STATE(4908), + [sym_return_statement] = STATE(4908), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4937), - [sym_break_statement] = STATE(4937), - [sym_continue_statement] = STATE(4937), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4908), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4937), - [sym_labeled_statement] = STATE(4937), - [sym_expression_statement] = STATE(4937), - [sym_while_statement] = STATE(4937), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4908), + [sym_for_range_loop] = STATE(4908), + [sym_compound_statement] = STATE(4908), + [sym_labeled_statement] = STATE(4908), + [sym_expression_statement] = STATE(4908), + [sym_while_statement] = STATE(4908), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4817] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10603), + [4788] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10569), [sym_comment] = ACTIONS(3), }, - [4818] = { - [aux_sym_for_statement_repeat1] = STATE(4939), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10603), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4789] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4910), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10569), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4819] = { - [anon_sym_LPAREN2] = ACTIONS(9831), - [anon_sym_DASH] = ACTIONS(9829), - [sym_raw_string_literal] = ACTIONS(9831), - [sym_true] = ACTIONS(9829), - [anon_sym_else] = ACTIONS(9829), - [sym_null] = ACTIONS(9829), - [anon_sym_COLON_COLON] = ACTIONS(9831), - [anon_sym_default] = ACTIONS(9829), - [anon_sym_break] = ACTIONS(9829), - [anon_sym_BANG] = ACTIONS(9831), - [anon_sym_AMP] = ACTIONS(9831), - [anon_sym_sizeof] = ACTIONS(9829), - [anon_sym_RBRACE] = ACTIONS(9831), - [anon_sym_PLUS] = ACTIONS(9829), - [anon_sym_STAR] = ACTIONS(9831), - [anon_sym_switch] = ACTIONS(9829), - [sym_identifier] = ACTIONS(9829), - [anon_sym_new] = ACTIONS(9829), - [anon_sym_goto] = ACTIONS(9829), - [anon_sym_while] = ACTIONS(9829), - [anon_sym_continue] = ACTIONS(9829), - [anon_sym_for] = ACTIONS(9829), - [anon_sym_delete] = ACTIONS(9829), - [anon_sym_try] = ACTIONS(9829), - [anon_sym_DQUOTE] = ACTIONS(9831), - [sym_number_literal] = ACTIONS(9831), - [anon_sym_LBRACK] = ACTIONS(9831), - [anon_sym_if] = ACTIONS(9829), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(9829), - [sym_nullptr] = ACTIONS(9829), - [anon_sym_do] = ACTIONS(9829), - [anon_sym_case] = ACTIONS(9829), - [anon_sym_return] = ACTIONS(9829), - [anon_sym_TILDE] = ACTIONS(9831), - [anon_sym_SEMI] = ACTIONS(9831), - [anon_sym_PLUS_PLUS] = ACTIONS(9831), - [anon_sym_SQUOTE] = ACTIONS(9831), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_DASH_DASH] = ACTIONS(9831), + [4790] = { + [anon_sym_LPAREN2] = ACTIONS(9797), + [anon_sym_DASH] = ACTIONS(9795), + [sym_raw_string_literal] = ACTIONS(9797), + [sym_true] = ACTIONS(9795), + [anon_sym_else] = ACTIONS(9795), + [sym_null] = ACTIONS(9795), + [anon_sym_COLON_COLON] = ACTIONS(9797), + [anon_sym_default] = ACTIONS(9795), + [anon_sym_break] = ACTIONS(9795), + [anon_sym_BANG] = ACTIONS(9797), + [anon_sym_AMP] = ACTIONS(9797), + [anon_sym_sizeof] = ACTIONS(9795), + [anon_sym_RBRACE] = ACTIONS(9797), + [anon_sym_PLUS] = ACTIONS(9795), + [anon_sym_STAR] = ACTIONS(9797), + [anon_sym_switch] = ACTIONS(9795), + [sym_identifier] = ACTIONS(9795), + [anon_sym_new] = ACTIONS(9795), + [anon_sym_goto] = ACTIONS(9795), + [anon_sym_while] = ACTIONS(9795), + [anon_sym_continue] = ACTIONS(9795), + [anon_sym_for] = ACTIONS(9795), + [anon_sym_delete] = ACTIONS(9795), + [anon_sym_try] = ACTIONS(9795), + [anon_sym_DQUOTE] = ACTIONS(9797), + [sym_number_literal] = ACTIONS(9797), + [anon_sym_LBRACK] = ACTIONS(9797), + [anon_sym_if] = ACTIONS(9795), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(9795), + [sym_nullptr] = ACTIONS(9795), + [anon_sym_do] = ACTIONS(9795), + [anon_sym_case] = ACTIONS(9795), + [anon_sym_return] = ACTIONS(9795), + [anon_sym_TILDE] = ACTIONS(9797), + [anon_sym_SEMI] = ACTIONS(9797), + [anon_sym_PLUS_PLUS] = ACTIONS(9797), + [anon_sym_SQUOTE] = ACTIONS(9797), + [anon_sym_LBRACE] = ACTIONS(9797), + [anon_sym_DASH_DASH] = ACTIONS(9797), }, - [4820] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4941), - [sym_logical_expression] = STATE(4941), - [sym_bitwise_expression] = STATE(4941), - [sym_cast_expression] = STATE(4941), - [sym_new_expression] = STATE(4941), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4941), - [sym_char_literal] = STATE(4941), - [sym_template_function] = STATE(4941), - [sym_conditional_expression] = STATE(4941), - [sym_equality_expression] = STATE(4941), - [sym_relational_expression] = STATE(4941), - [sym_delete_expression] = STATE(4941), - [sym_sizeof_expression] = STATE(4941), - [sym_parenthesized_expression] = STATE(4941), - [sym_lambda_expression] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4941), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4941), - [sym_math_expression] = STATE(4941), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10605), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10607), - [sym_null] = ACTIONS(10607), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10605), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10607), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10607), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10609), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4791] = { + [sym_template_function] = STATE(4912), + [sym__expression] = STATE(4912), + [sym_logical_expression] = STATE(4912), + [sym_bitwise_expression] = STATE(4912), + [sym_cast_expression] = STATE(4912), + [sym_delete_expression] = STATE(4912), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4912), + [sym_lambda_expression] = STATE(4912), + [sym_char_literal] = STATE(4912), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4912), + [sym_equality_expression] = STATE(4912), + [sym_relational_expression] = STATE(4912), + [sym_sizeof_expression] = STATE(4912), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4912), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4912), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4912), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4912), + [sym_math_expression] = STATE(4912), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4912), + [sym_raw_string_literal] = ACTIONS(10571), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10573), + [sym_null] = ACTIONS(10573), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10571), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10573), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10573), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10575), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4821] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10611), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4792] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10577), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4822] = { - [anon_sym_COLON] = ACTIONS(10613), + [4793] = { + [anon_sym_COLON] = ACTIONS(10579), [sym_comment] = ACTIONS(3), }, - [4823] = { - [aux_sym_try_statement_repeat1] = STATE(4944), - [sym_catch_clause] = STATE(4944), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [sym_null] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(8381), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [4794] = { + [sym_catch_clause] = STATE(4915), + [aux_sym_try_statement_repeat1] = STATE(4915), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [sym_null] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(8353), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), }, - [4824] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10615), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4795] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10581), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4825] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4946), - [sym_logical_expression] = STATE(4946), - [sym_bitwise_expression] = STATE(4946), - [sym_cast_expression] = STATE(4946), - [sym_new_expression] = STATE(4946), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4946), - [sym_char_literal] = STATE(4946), - [sym_template_function] = STATE(4946), - [sym_conditional_expression] = STATE(4946), - [sym_equality_expression] = STATE(4946), - [sym_relational_expression] = STATE(4946), - [sym_delete_expression] = STATE(4946), - [sym_sizeof_expression] = STATE(4946), - [sym_parenthesized_expression] = STATE(4946), - [sym_lambda_expression] = STATE(4946), - [sym_concatenated_string] = STATE(4946), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4946), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4946), - [sym_math_expression] = STATE(4946), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10617), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10619), - [sym_null] = ACTIONS(10619), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10617), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10619), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10619), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4796] = { + [sym_template_function] = STATE(4917), + [sym__expression] = STATE(4917), + [sym_logical_expression] = STATE(4917), + [sym_bitwise_expression] = STATE(4917), + [sym_cast_expression] = STATE(4917), + [sym_delete_expression] = STATE(4917), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4917), + [sym_lambda_expression] = STATE(4917), + [sym_char_literal] = STATE(4917), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4917), + [sym_equality_expression] = STATE(4917), + [sym_relational_expression] = STATE(4917), + [sym_sizeof_expression] = STATE(4917), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4917), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4917), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4917), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4917), + [sym_math_expression] = STATE(4917), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4917), + [sym_raw_string_literal] = ACTIONS(10583), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10585), + [sym_null] = ACTIONS(10585), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10583), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10585), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10585), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4826] = { - [anon_sym_LPAREN2] = ACTIONS(9873), - [anon_sym_DASH] = ACTIONS(9871), - [sym_raw_string_literal] = ACTIONS(9873), - [sym_true] = ACTIONS(9871), - [anon_sym_else] = ACTIONS(9871), - [sym_null] = ACTIONS(9871), - [anon_sym_COLON_COLON] = ACTIONS(9873), - [anon_sym_default] = ACTIONS(9871), - [anon_sym_break] = ACTIONS(9871), - [anon_sym_BANG] = ACTIONS(9873), - [anon_sym_AMP] = ACTIONS(9873), - [anon_sym_sizeof] = ACTIONS(9871), - [anon_sym_RBRACE] = ACTIONS(9873), - [anon_sym_PLUS] = ACTIONS(9871), - [anon_sym_STAR] = ACTIONS(9873), - [anon_sym_switch] = ACTIONS(9871), - [sym_identifier] = ACTIONS(9871), - [anon_sym_new] = ACTIONS(9871), - [anon_sym_goto] = ACTIONS(9871), - [anon_sym_while] = ACTIONS(9871), - [anon_sym_continue] = ACTIONS(9871), - [anon_sym_for] = ACTIONS(9871), - [anon_sym_delete] = ACTIONS(9871), - [anon_sym_try] = ACTIONS(9871), - [anon_sym_DQUOTE] = ACTIONS(9873), - [sym_number_literal] = ACTIONS(9873), - [anon_sym_LBRACK] = ACTIONS(9873), - [anon_sym_if] = ACTIONS(9871), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(9871), - [sym_nullptr] = ACTIONS(9871), - [anon_sym_do] = ACTIONS(9871), - [anon_sym_case] = ACTIONS(9871), - [anon_sym_return] = ACTIONS(9871), - [anon_sym_TILDE] = ACTIONS(9873), - [anon_sym_SEMI] = ACTIONS(9873), - [anon_sym_PLUS_PLUS] = ACTIONS(9873), - [anon_sym_SQUOTE] = ACTIONS(9873), - [anon_sym_LBRACE] = ACTIONS(9873), - [anon_sym_DASH_DASH] = ACTIONS(9873), + [4797] = { + [anon_sym_LPAREN2] = ACTIONS(9839), + [anon_sym_DASH] = ACTIONS(9837), + [sym_raw_string_literal] = ACTIONS(9839), + [sym_true] = ACTIONS(9837), + [anon_sym_else] = ACTIONS(9837), + [sym_null] = ACTIONS(9837), + [anon_sym_COLON_COLON] = ACTIONS(9839), + [anon_sym_default] = ACTIONS(9837), + [anon_sym_break] = ACTIONS(9837), + [anon_sym_BANG] = ACTIONS(9839), + [anon_sym_AMP] = ACTIONS(9839), + [anon_sym_sizeof] = ACTIONS(9837), + [anon_sym_RBRACE] = ACTIONS(9839), + [anon_sym_PLUS] = ACTIONS(9837), + [anon_sym_STAR] = ACTIONS(9839), + [anon_sym_switch] = ACTIONS(9837), + [sym_identifier] = ACTIONS(9837), + [anon_sym_new] = ACTIONS(9837), + [anon_sym_goto] = ACTIONS(9837), + [anon_sym_while] = ACTIONS(9837), + [anon_sym_continue] = ACTIONS(9837), + [anon_sym_for] = ACTIONS(9837), + [anon_sym_delete] = ACTIONS(9837), + [anon_sym_try] = ACTIONS(9837), + [anon_sym_DQUOTE] = ACTIONS(9839), + [sym_number_literal] = ACTIONS(9839), + [anon_sym_LBRACK] = ACTIONS(9839), + [anon_sym_if] = ACTIONS(9837), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(9837), + [sym_nullptr] = ACTIONS(9837), + [anon_sym_do] = ACTIONS(9837), + [anon_sym_case] = ACTIONS(9837), + [anon_sym_return] = ACTIONS(9837), + [anon_sym_TILDE] = ACTIONS(9839), + [anon_sym_SEMI] = ACTIONS(9839), + [anon_sym_PLUS_PLUS] = ACTIONS(9839), + [anon_sym_SQUOTE] = ACTIONS(9839), + [anon_sym_LBRACE] = ACTIONS(9839), + [anon_sym_DASH_DASH] = ACTIONS(9839), }, - [4827] = { - [sym_do_statement] = STATE(4947), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4798] = { + [sym_do_statement] = STATE(4918), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4947), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4947), - [sym_if_statement] = STATE(4947), - [sym_switch_statement] = STATE(4947), - [sym_for_statement] = STATE(4947), - [sym_return_statement] = STATE(4947), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4918), + [sym_try_statement] = STATE(4918), + [sym_if_statement] = STATE(4918), + [sym_switch_statement] = STATE(4918), + [sym_for_statement] = STATE(4918), + [sym_return_statement] = STATE(4918), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4947), - [sym_break_statement] = STATE(4947), - [sym_continue_statement] = STATE(4947), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4918), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4947), - [sym_labeled_statement] = STATE(4947), - [sym_expression_statement] = STATE(4947), - [sym_while_statement] = STATE(4947), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4918), + [sym_for_range_loop] = STATE(4918), + [sym_compound_statement] = STATE(4918), + [sym_labeled_statement] = STATE(4918), + [sym_expression_statement] = STATE(4918), + [sym_while_statement] = STATE(4918), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4828] = { - [anon_sym_LPAREN2] = ACTIONS(8620), - [anon_sym_DASH] = ACTIONS(8622), - [anon_sym_DASH_DASH] = ACTIONS(8620), - [anon_sym_STAR_EQ] = ACTIONS(8620), - [anon_sym_LT_LT_EQ] = ACTIONS(8620), - [anon_sym_PERCENT_EQ] = ACTIONS(8620), - [anon_sym_GT2] = ACTIONS(8620), - [anon_sym_EQ_EQ] = ACTIONS(8620), - [anon_sym_PIPE] = ACTIONS(8622), - [anon_sym_LT] = ACTIONS(8622), - [anon_sym_CARET_EQ] = ACTIONS(8620), - [anon_sym_AMP] = ACTIONS(8622), - [anon_sym_PLUS] = ACTIONS(8622), - [anon_sym_GT_EQ] = ACTIONS(8622), - [anon_sym_STAR] = ACTIONS(8622), - [anon_sym_SLASH] = ACTIONS(8622), - [anon_sym_SLASH_EQ] = ACTIONS(8620), - [anon_sym_PLUS_EQ] = ACTIONS(8620), - [anon_sym_CARET] = ACTIONS(8622), - [anon_sym_GT] = ACTIONS(8622), - [anon_sym_PIPE_EQ] = ACTIONS(8620), - [anon_sym_GT_GT_EQ] = ACTIONS(8622), - [anon_sym_COMMA] = ACTIONS(8620), - [anon_sym_PIPE_PIPE] = ACTIONS(8620), - [anon_sym_DOT] = ACTIONS(8620), - [anon_sym_LT_LT] = ACTIONS(8622), - [anon_sym_LBRACK] = ACTIONS(8620), - [anon_sym_PERCENT] = ACTIONS(8622), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(8620), - [anon_sym_DASH_EQ] = ACTIONS(8620), - [anon_sym_LT_EQ] = ACTIONS(8620), - [anon_sym_BANG_EQ] = ACTIONS(8620), - [anon_sym_AMP_EQ] = ACTIONS(8620), - [anon_sym_AMP_AMP] = ACTIONS(8620), - [anon_sym_DASH_GT] = ACTIONS(8620), - [anon_sym_EQ] = ACTIONS(8622), - [anon_sym_PLUS_PLUS] = ACTIONS(8620), - [anon_sym_LBRACE] = ACTIONS(8620), - [anon_sym_GT_GT] = ACTIONS(8622), + [4799] = { + [anon_sym_LPAREN2] = ACTIONS(8584), + [anon_sym_DASH] = ACTIONS(8586), + [anon_sym_DASH_DASH] = ACTIONS(8584), + [anon_sym_STAR_EQ] = ACTIONS(8584), + [anon_sym_LT_LT_EQ] = ACTIONS(8584), + [anon_sym_PERCENT_EQ] = ACTIONS(8584), + [anon_sym_GT2] = ACTIONS(8584), + [anon_sym_EQ_EQ] = ACTIONS(8584), + [anon_sym_PIPE] = ACTIONS(8586), + [anon_sym_LT] = ACTIONS(8586), + [anon_sym_CARET_EQ] = ACTIONS(8584), + [anon_sym_AMP] = ACTIONS(8586), + [anon_sym_PLUS] = ACTIONS(8586), + [anon_sym_GT_EQ] = ACTIONS(8586), + [anon_sym_STAR] = ACTIONS(8586), + [anon_sym_SLASH] = ACTIONS(8586), + [anon_sym_SLASH_EQ] = ACTIONS(8584), + [anon_sym_PLUS_EQ] = ACTIONS(8584), + [anon_sym_CARET] = ACTIONS(8586), + [anon_sym_GT] = ACTIONS(8586), + [anon_sym_PIPE_EQ] = ACTIONS(8584), + [anon_sym_GT_GT_EQ] = ACTIONS(8586), + [anon_sym_COMMA] = ACTIONS(8584), + [anon_sym_PIPE_PIPE] = ACTIONS(8584), + [anon_sym_DOT] = ACTIONS(8584), + [anon_sym_LT_LT] = ACTIONS(8586), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_PERCENT] = ACTIONS(8586), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(8584), + [anon_sym_DASH_EQ] = ACTIONS(8584), + [anon_sym_LT_EQ] = ACTIONS(8584), + [anon_sym_BANG_EQ] = ACTIONS(8584), + [anon_sym_AMP_EQ] = ACTIONS(8584), + [anon_sym_AMP_AMP] = ACTIONS(8584), + [anon_sym_DASH_GT] = ACTIONS(8584), + [anon_sym_EQ] = ACTIONS(8586), + [anon_sym_PLUS_PLUS] = ACTIONS(8584), + [anon_sym_LBRACE] = ACTIONS(8584), + [anon_sym_GT_GT] = ACTIONS(8586), }, - [4829] = { - [anon_sym_DASH] = ACTIONS(9820), - [sym_raw_string_literal] = ACTIONS(9822), - [anon_sym_else] = ACTIONS(9820), - [sym_true] = ACTIONS(9820), - [anon_sym_mutable] = ACTIONS(9820), - [sym_null] = ACTIONS(9820), - [anon_sym_break] = ACTIONS(9820), - [aux_sym_preproc_if_token2] = ACTIONS(9820), - [anon_sym_BANG] = ACTIONS(9822), - [anon_sym_sizeof] = ACTIONS(9820), - [anon_sym_volatile] = ACTIONS(9820), - [anon_sym_PLUS] = ACTIONS(9820), - [anon_sym_typedef] = ACTIONS(9820), - [anon_sym_switch] = ACTIONS(9820), - [anon_sym_explicit] = ACTIONS(9820), - [sym_identifier] = ACTIONS(9820), - [anon_sym_delete] = ACTIONS(9820), - [anon_sym_continue] = ACTIONS(9820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9820), - [anon_sym__Atomic] = ACTIONS(9820), - [sym_number_literal] = ACTIONS(9822), - [anon_sym_extern] = ACTIONS(9820), - [anon_sym_enum] = ACTIONS(9820), - [anon_sym_constexpr] = ACTIONS(9820), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9822), - [anon_sym_namespace] = ACTIONS(9820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9820), - [anon_sym_SQUOTE] = ACTIONS(9822), - [anon_sym_LBRACE] = ACTIONS(9822), - [anon_sym_DASH_DASH] = ACTIONS(9822), - [anon_sym_LPAREN2] = ACTIONS(9822), - [anon_sym_struct] = ACTIONS(9820), - [sym_auto] = ACTIONS(9820), - [anon_sym_signed] = ACTIONS(9820), - [anon_sym_long] = ACTIONS(9820), - [anon_sym_COLON_COLON] = ACTIONS(9822), - [anon_sym_using] = ACTIONS(9820), - [sym_preproc_directive] = ACTIONS(9820), - [aux_sym_preproc_if_token1] = ACTIONS(9820), - [anon_sym_AMP] = ACTIONS(9820), - [anon_sym_static] = ACTIONS(9820), - [anon_sym_STAR] = ACTIONS(9822), - [anon_sym_union] = ACTIONS(9820), - [anon_sym_typename] = ACTIONS(9820), - [anon_sym_short] = ACTIONS(9820), - [anon_sym_new] = ACTIONS(9820), - [anon_sym_goto] = ACTIONS(9820), - [sym_operator_name] = ACTIONS(9822), - [anon_sym_while] = ACTIONS(9820), - [anon_sym_try] = ACTIONS(9820), - [anon_sym_for] = ACTIONS(9820), - [aux_sym_preproc_include_token1] = ACTIONS(9820), - [anon_sym_register] = ACTIONS(9820), - [anon_sym_DQUOTE] = ACTIONS(9822), - [anon_sym_const] = ACTIONS(9820), - [anon_sym_LBRACK] = ACTIONS(9820), - [anon_sym_class] = ACTIONS(9820), - [anon_sym_if] = ACTIONS(9820), - [sym_primitive_type] = ACTIONS(9820), - [sym_false] = ACTIONS(9820), - [sym_nullptr] = ACTIONS(9820), - [anon_sym_do] = ACTIONS(9820), - [anon_sym_template] = ACTIONS(9820), - [anon_sym_return] = ACTIONS(9820), - [anon_sym_TILDE] = ACTIONS(9822), - [anon_sym_SEMI] = ACTIONS(9822), - [aux_sym_preproc_def_token1] = ACTIONS(9820), - [anon_sym_AMP_AMP] = ACTIONS(9822), - [anon_sym_inline] = ACTIONS(9820), - [anon_sym_PLUS_PLUS] = ACTIONS(9822), - [anon_sym_restrict] = ACTIONS(9820), + [4800] = { + [anon_sym_DASH] = ACTIONS(9786), + [sym_raw_string_literal] = ACTIONS(9788), + [anon_sym_else] = ACTIONS(9786), + [sym_true] = ACTIONS(9786), + [anon_sym_mutable] = ACTIONS(9786), + [sym_null] = ACTIONS(9786), + [anon_sym_break] = ACTIONS(9786), + [aux_sym_preproc_if_token2] = ACTIONS(9786), + [anon_sym_BANG] = ACTIONS(9788), + [anon_sym_sizeof] = ACTIONS(9786), + [anon_sym_volatile] = ACTIONS(9786), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_typedef] = ACTIONS(9786), + [anon_sym_switch] = ACTIONS(9786), + [anon_sym_explicit] = ACTIONS(9786), + [sym_identifier] = ACTIONS(9786), + [anon_sym_delete] = ACTIONS(9786), + [anon_sym_continue] = ACTIONS(9786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9786), + [anon_sym__Atomic] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9788), + [anon_sym_extern] = ACTIONS(9786), + [anon_sym_enum] = ACTIONS(9786), + [anon_sym_constexpr] = ACTIONS(9786), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9788), + [anon_sym_namespace] = ACTIONS(9786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9786), + [anon_sym_SQUOTE] = ACTIONS(9788), + [anon_sym_LBRACE] = ACTIONS(9788), + [anon_sym_DASH_DASH] = ACTIONS(9788), + [anon_sym_LPAREN2] = ACTIONS(9788), + [anon_sym_struct] = ACTIONS(9786), + [sym_auto] = ACTIONS(9786), + [anon_sym_signed] = ACTIONS(9786), + [anon_sym_long] = ACTIONS(9786), + [anon_sym_COLON_COLON] = ACTIONS(9788), + [anon_sym_using] = ACTIONS(9786), + [sym_preproc_directive] = ACTIONS(9786), + [aux_sym_preproc_if_token1] = ACTIONS(9786), + [anon_sym_AMP] = ACTIONS(9786), + [anon_sym_static] = ACTIONS(9786), + [anon_sym_STAR] = ACTIONS(9788), + [anon_sym_union] = ACTIONS(9786), + [anon_sym_typename] = ACTIONS(9786), + [anon_sym_short] = ACTIONS(9786), + [anon_sym_new] = ACTIONS(9786), + [anon_sym_goto] = ACTIONS(9786), + [sym_operator_name] = ACTIONS(9788), + [anon_sym_while] = ACTIONS(9786), + [anon_sym_try] = ACTIONS(9786), + [anon_sym_for] = ACTIONS(9786), + [aux_sym_preproc_include_token1] = ACTIONS(9786), + [anon_sym_register] = ACTIONS(9786), + [anon_sym_DQUOTE] = ACTIONS(9788), + [anon_sym_const] = ACTIONS(9786), + [anon_sym_LBRACK] = ACTIONS(9786), + [anon_sym_class] = ACTIONS(9786), + [anon_sym_if] = ACTIONS(9786), + [sym_primitive_type] = ACTIONS(9786), + [sym_false] = ACTIONS(9786), + [sym_nullptr] = ACTIONS(9786), + [anon_sym_do] = ACTIONS(9786), + [anon_sym_template] = ACTIONS(9786), + [anon_sym_return] = ACTIONS(9786), + [anon_sym_TILDE] = ACTIONS(9788), + [anon_sym_SEMI] = ACTIONS(9788), + [aux_sym_preproc_def_token1] = ACTIONS(9786), + [anon_sym_AMP_AMP] = ACTIONS(9788), + [anon_sym_inline] = ACTIONS(9786), + [anon_sym_PLUS_PLUS] = ACTIONS(9788), + [anon_sym_restrict] = ACTIONS(9786), }, - [4830] = { - [sym_do_statement] = STATE(4948), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4801] = { + [sym_do_statement] = STATE(4919), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4948), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4948), - [sym_if_statement] = STATE(4948), - [sym_switch_statement] = STATE(4948), - [sym_for_statement] = STATE(4948), - [sym_return_statement] = STATE(4948), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4919), + [sym_try_statement] = STATE(4919), + [sym_if_statement] = STATE(4919), + [sym_switch_statement] = STATE(4919), + [sym_for_statement] = STATE(4919), + [sym_return_statement] = STATE(4919), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4948), - [sym_break_statement] = STATE(4948), - [sym_continue_statement] = STATE(4948), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4919), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4948), - [sym_labeled_statement] = STATE(4948), - [sym_expression_statement] = STATE(4948), - [sym_while_statement] = STATE(4948), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4919), + [sym_for_range_loop] = STATE(4919), + [sym_compound_statement] = STATE(4919), + [sym_labeled_statement] = STATE(4919), + [sym_expression_statement] = STATE(4919), + [sym_while_statement] = STATE(4919), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4831] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10621), + [4802] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10587), [sym_comment] = ACTIONS(3), }, - [4832] = { - [aux_sym_for_statement_repeat1] = STATE(4950), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10621), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4803] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4921), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10587), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4833] = { - [anon_sym_DASH] = ACTIONS(9829), - [sym_raw_string_literal] = ACTIONS(9831), - [anon_sym_else] = ACTIONS(9829), - [sym_true] = ACTIONS(9829), - [anon_sym_mutable] = ACTIONS(9829), - [sym_null] = ACTIONS(9829), - [anon_sym_break] = ACTIONS(9829), - [aux_sym_preproc_if_token2] = ACTIONS(9829), - [anon_sym_BANG] = ACTIONS(9831), - [anon_sym_sizeof] = ACTIONS(9829), - [anon_sym_volatile] = ACTIONS(9829), - [anon_sym_PLUS] = ACTIONS(9829), - [anon_sym_typedef] = ACTIONS(9829), - [anon_sym_switch] = ACTIONS(9829), - [anon_sym_explicit] = ACTIONS(9829), - [sym_identifier] = ACTIONS(9829), - [anon_sym_delete] = ACTIONS(9829), - [anon_sym_continue] = ACTIONS(9829), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9829), - [anon_sym__Atomic] = ACTIONS(9829), - [sym_number_literal] = ACTIONS(9831), - [anon_sym_extern] = ACTIONS(9829), - [anon_sym_enum] = ACTIONS(9829), - [anon_sym_constexpr] = ACTIONS(9829), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9831), - [anon_sym_namespace] = ACTIONS(9829), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9829), - [anon_sym_SQUOTE] = ACTIONS(9831), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_DASH_DASH] = ACTIONS(9831), - [anon_sym_LPAREN2] = ACTIONS(9831), - [anon_sym_struct] = ACTIONS(9829), - [sym_auto] = ACTIONS(9829), - [anon_sym_signed] = ACTIONS(9829), - [anon_sym_long] = ACTIONS(9829), - [anon_sym_COLON_COLON] = ACTIONS(9831), - [anon_sym_using] = ACTIONS(9829), - [sym_preproc_directive] = ACTIONS(9829), - [aux_sym_preproc_if_token1] = ACTIONS(9829), - [anon_sym_AMP] = ACTIONS(9829), - [anon_sym_static] = ACTIONS(9829), - [anon_sym_STAR] = ACTIONS(9831), - [anon_sym_union] = ACTIONS(9829), - [anon_sym_typename] = ACTIONS(9829), - [anon_sym_short] = ACTIONS(9829), - [anon_sym_new] = ACTIONS(9829), - [anon_sym_goto] = ACTIONS(9829), - [sym_operator_name] = ACTIONS(9831), - [anon_sym_while] = ACTIONS(9829), - [anon_sym_try] = ACTIONS(9829), - [anon_sym_for] = ACTIONS(9829), - [aux_sym_preproc_include_token1] = ACTIONS(9829), - [anon_sym_register] = ACTIONS(9829), - [anon_sym_DQUOTE] = ACTIONS(9831), - [anon_sym_const] = ACTIONS(9829), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_class] = ACTIONS(9829), - [anon_sym_if] = ACTIONS(9829), - [sym_primitive_type] = ACTIONS(9829), - [sym_false] = ACTIONS(9829), - [sym_nullptr] = ACTIONS(9829), - [anon_sym_do] = ACTIONS(9829), - [anon_sym_template] = ACTIONS(9829), - [anon_sym_return] = ACTIONS(9829), - [anon_sym_TILDE] = ACTIONS(9831), - [anon_sym_SEMI] = ACTIONS(9831), - [aux_sym_preproc_def_token1] = ACTIONS(9829), - [anon_sym_AMP_AMP] = ACTIONS(9831), - [anon_sym_inline] = ACTIONS(9829), - [anon_sym_PLUS_PLUS] = ACTIONS(9831), - [anon_sym_restrict] = ACTIONS(9829), + [4804] = { + [anon_sym_DASH] = ACTIONS(9795), + [sym_raw_string_literal] = ACTIONS(9797), + [anon_sym_else] = ACTIONS(9795), + [sym_true] = ACTIONS(9795), + [anon_sym_mutable] = ACTIONS(9795), + [sym_null] = ACTIONS(9795), + [anon_sym_break] = ACTIONS(9795), + [aux_sym_preproc_if_token2] = ACTIONS(9795), + [anon_sym_BANG] = ACTIONS(9797), + [anon_sym_sizeof] = ACTIONS(9795), + [anon_sym_volatile] = ACTIONS(9795), + [anon_sym_PLUS] = ACTIONS(9795), + [anon_sym_typedef] = ACTIONS(9795), + [anon_sym_switch] = ACTIONS(9795), + [anon_sym_explicit] = ACTIONS(9795), + [sym_identifier] = ACTIONS(9795), + [anon_sym_delete] = ACTIONS(9795), + [anon_sym_continue] = ACTIONS(9795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9795), + [anon_sym__Atomic] = ACTIONS(9795), + [sym_number_literal] = ACTIONS(9797), + [anon_sym_extern] = ACTIONS(9795), + [anon_sym_enum] = ACTIONS(9795), + [anon_sym_constexpr] = ACTIONS(9795), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9797), + [anon_sym_namespace] = ACTIONS(9795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9795), + [anon_sym_SQUOTE] = ACTIONS(9797), + [anon_sym_LBRACE] = ACTIONS(9797), + [anon_sym_DASH_DASH] = ACTIONS(9797), + [anon_sym_LPAREN2] = ACTIONS(9797), + [anon_sym_struct] = ACTIONS(9795), + [sym_auto] = ACTIONS(9795), + [anon_sym_signed] = ACTIONS(9795), + [anon_sym_long] = ACTIONS(9795), + [anon_sym_COLON_COLON] = ACTIONS(9797), + [anon_sym_using] = ACTIONS(9795), + [sym_preproc_directive] = ACTIONS(9795), + [aux_sym_preproc_if_token1] = ACTIONS(9795), + [anon_sym_AMP] = ACTIONS(9795), + [anon_sym_static] = ACTIONS(9795), + [anon_sym_STAR] = ACTIONS(9797), + [anon_sym_union] = ACTIONS(9795), + [anon_sym_typename] = ACTIONS(9795), + [anon_sym_short] = ACTIONS(9795), + [anon_sym_new] = ACTIONS(9795), + [anon_sym_goto] = ACTIONS(9795), + [sym_operator_name] = ACTIONS(9797), + [anon_sym_while] = ACTIONS(9795), + [anon_sym_try] = ACTIONS(9795), + [anon_sym_for] = ACTIONS(9795), + [aux_sym_preproc_include_token1] = ACTIONS(9795), + [anon_sym_register] = ACTIONS(9795), + [anon_sym_DQUOTE] = ACTIONS(9797), + [anon_sym_const] = ACTIONS(9795), + [anon_sym_LBRACK] = ACTIONS(9795), + [anon_sym_class] = ACTIONS(9795), + [anon_sym_if] = ACTIONS(9795), + [sym_primitive_type] = ACTIONS(9795), + [sym_false] = ACTIONS(9795), + [sym_nullptr] = ACTIONS(9795), + [anon_sym_do] = ACTIONS(9795), + [anon_sym_template] = ACTIONS(9795), + [anon_sym_return] = ACTIONS(9795), + [anon_sym_TILDE] = ACTIONS(9797), + [anon_sym_SEMI] = ACTIONS(9797), + [aux_sym_preproc_def_token1] = ACTIONS(9795), + [anon_sym_AMP_AMP] = ACTIONS(9797), + [anon_sym_inline] = ACTIONS(9795), + [anon_sym_PLUS_PLUS] = ACTIONS(9797), + [anon_sym_restrict] = ACTIONS(9795), }, - [4834] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4952), - [sym_logical_expression] = STATE(4952), - [sym_bitwise_expression] = STATE(4952), - [sym_cast_expression] = STATE(4952), - [sym_new_expression] = STATE(4952), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4952), - [sym_char_literal] = STATE(4952), - [sym_template_function] = STATE(4952), - [sym_conditional_expression] = STATE(4952), - [sym_equality_expression] = STATE(4952), - [sym_relational_expression] = STATE(4952), - [sym_delete_expression] = STATE(4952), - [sym_sizeof_expression] = STATE(4952), - [sym_parenthesized_expression] = STATE(4952), - [sym_lambda_expression] = STATE(4952), - [sym_concatenated_string] = STATE(4952), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4952), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4952), - [sym_math_expression] = STATE(4952), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10623), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10625), - [sym_null] = ACTIONS(10625), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10623), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10625), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10625), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10627), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4805] = { + [sym_template_function] = STATE(4923), + [sym__expression] = STATE(4923), + [sym_logical_expression] = STATE(4923), + [sym_bitwise_expression] = STATE(4923), + [sym_cast_expression] = STATE(4923), + [sym_delete_expression] = STATE(4923), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4923), + [sym_lambda_expression] = STATE(4923), + [sym_char_literal] = STATE(4923), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4923), + [sym_equality_expression] = STATE(4923), + [sym_relational_expression] = STATE(4923), + [sym_sizeof_expression] = STATE(4923), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4923), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4923), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4923), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4923), + [sym_math_expression] = STATE(4923), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4923), + [sym_raw_string_literal] = ACTIONS(10589), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10591), + [sym_null] = ACTIONS(10591), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10589), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10591), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10591), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10593), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4835] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10629), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4806] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10595), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4836] = { - [anon_sym_COLON] = ACTIONS(10631), + [4807] = { + [anon_sym_COLON] = ACTIONS(10597), [sym_comment] = ACTIONS(3), }, - [4837] = { - [aux_sym_try_statement_repeat1] = STATE(4955), - [sym_catch_clause] = STATE(4955), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [aux_sym_preproc_if_token2] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(8533), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [sym_operator_name] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [4808] = { + [sym_catch_clause] = STATE(4926), + [aux_sym_try_statement_repeat1] = STATE(4926), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [aux_sym_preproc_if_token2] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(8505), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [sym_preproc_directive] = ACTIONS(3154), + [aux_sym_preproc_if_token1] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [sym_operator_name] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [aux_sym_preproc_include_token1] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_template] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, - [4838] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10633), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4809] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10599), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4839] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4957), - [sym_logical_expression] = STATE(4957), - [sym_bitwise_expression] = STATE(4957), - [sym_cast_expression] = STATE(4957), - [sym_new_expression] = STATE(4957), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4957), - [sym_char_literal] = STATE(4957), - [sym_template_function] = STATE(4957), - [sym_conditional_expression] = STATE(4957), - [sym_equality_expression] = STATE(4957), - [sym_relational_expression] = STATE(4957), - [sym_delete_expression] = STATE(4957), - [sym_sizeof_expression] = STATE(4957), - [sym_parenthesized_expression] = STATE(4957), - [sym_lambda_expression] = STATE(4957), - [sym_concatenated_string] = STATE(4957), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4957), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4957), - [sym_math_expression] = STATE(4957), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10635), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10637), - [sym_null] = ACTIONS(10637), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10635), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10637), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10637), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4810] = { + [sym_template_function] = STATE(4928), + [sym__expression] = STATE(4928), + [sym_logical_expression] = STATE(4928), + [sym_bitwise_expression] = STATE(4928), + [sym_cast_expression] = STATE(4928), + [sym_delete_expression] = STATE(4928), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4928), + [sym_lambda_expression] = STATE(4928), + [sym_char_literal] = STATE(4928), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4928), + [sym_equality_expression] = STATE(4928), + [sym_relational_expression] = STATE(4928), + [sym_sizeof_expression] = STATE(4928), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4928), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4928), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4928), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4928), + [sym_math_expression] = STATE(4928), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4928), + [sym_raw_string_literal] = ACTIONS(10601), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10603), + [sym_null] = ACTIONS(10603), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10601), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10603), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10603), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4840] = { - [anon_sym_DASH] = ACTIONS(9871), - [sym_raw_string_literal] = ACTIONS(9873), - [anon_sym_else] = ACTIONS(9871), - [sym_true] = ACTIONS(9871), - [anon_sym_mutable] = ACTIONS(9871), - [sym_null] = ACTIONS(9871), - [anon_sym_break] = ACTIONS(9871), - [aux_sym_preproc_if_token2] = ACTIONS(9871), - [anon_sym_BANG] = ACTIONS(9873), - [anon_sym_sizeof] = ACTIONS(9871), - [anon_sym_volatile] = ACTIONS(9871), - [anon_sym_PLUS] = ACTIONS(9871), - [anon_sym_typedef] = ACTIONS(9871), - [anon_sym_switch] = ACTIONS(9871), - [anon_sym_explicit] = ACTIONS(9871), - [sym_identifier] = ACTIONS(9871), - [anon_sym_delete] = ACTIONS(9871), - [anon_sym_continue] = ACTIONS(9871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9871), - [anon_sym__Atomic] = ACTIONS(9871), - [sym_number_literal] = ACTIONS(9873), - [anon_sym_extern] = ACTIONS(9871), - [anon_sym_enum] = ACTIONS(9871), - [anon_sym_constexpr] = ACTIONS(9871), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9873), - [anon_sym_namespace] = ACTIONS(9871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9871), - [anon_sym_SQUOTE] = ACTIONS(9873), - [anon_sym_LBRACE] = ACTIONS(9873), - [anon_sym_DASH_DASH] = ACTIONS(9873), - [anon_sym_LPAREN2] = ACTIONS(9873), - [anon_sym_struct] = ACTIONS(9871), - [sym_auto] = ACTIONS(9871), - [anon_sym_signed] = ACTIONS(9871), - [anon_sym_long] = ACTIONS(9871), - [anon_sym_COLON_COLON] = ACTIONS(9873), - [anon_sym_using] = ACTIONS(9871), - [sym_preproc_directive] = ACTIONS(9871), - [aux_sym_preproc_if_token1] = ACTIONS(9871), - [anon_sym_AMP] = ACTIONS(9871), - [anon_sym_static] = ACTIONS(9871), - [anon_sym_STAR] = ACTIONS(9873), - [anon_sym_union] = ACTIONS(9871), - [anon_sym_typename] = ACTIONS(9871), - [anon_sym_short] = ACTIONS(9871), - [anon_sym_new] = ACTIONS(9871), - [anon_sym_goto] = ACTIONS(9871), - [sym_operator_name] = ACTIONS(9873), - [anon_sym_while] = ACTIONS(9871), - [anon_sym_try] = ACTIONS(9871), - [anon_sym_for] = ACTIONS(9871), - [aux_sym_preproc_include_token1] = ACTIONS(9871), - [anon_sym_register] = ACTIONS(9871), - [anon_sym_DQUOTE] = ACTIONS(9873), - [anon_sym_const] = ACTIONS(9871), - [anon_sym_LBRACK] = ACTIONS(9871), - [anon_sym_class] = ACTIONS(9871), - [anon_sym_if] = ACTIONS(9871), - [sym_primitive_type] = ACTIONS(9871), - [sym_false] = ACTIONS(9871), - [sym_nullptr] = ACTIONS(9871), - [anon_sym_do] = ACTIONS(9871), - [anon_sym_template] = ACTIONS(9871), - [anon_sym_return] = ACTIONS(9871), - [anon_sym_TILDE] = ACTIONS(9873), - [anon_sym_SEMI] = ACTIONS(9873), - [aux_sym_preproc_def_token1] = ACTIONS(9871), - [anon_sym_AMP_AMP] = ACTIONS(9873), - [anon_sym_inline] = ACTIONS(9871), - [anon_sym_PLUS_PLUS] = ACTIONS(9873), - [anon_sym_restrict] = ACTIONS(9871), + [4811] = { + [anon_sym_DASH] = ACTIONS(9837), + [sym_raw_string_literal] = ACTIONS(9839), + [anon_sym_else] = ACTIONS(9837), + [sym_true] = ACTIONS(9837), + [anon_sym_mutable] = ACTIONS(9837), + [sym_null] = ACTIONS(9837), + [anon_sym_break] = ACTIONS(9837), + [aux_sym_preproc_if_token2] = ACTIONS(9837), + [anon_sym_BANG] = ACTIONS(9839), + [anon_sym_sizeof] = ACTIONS(9837), + [anon_sym_volatile] = ACTIONS(9837), + [anon_sym_PLUS] = ACTIONS(9837), + [anon_sym_typedef] = ACTIONS(9837), + [anon_sym_switch] = ACTIONS(9837), + [anon_sym_explicit] = ACTIONS(9837), + [sym_identifier] = ACTIONS(9837), + [anon_sym_delete] = ACTIONS(9837), + [anon_sym_continue] = ACTIONS(9837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9837), + [anon_sym__Atomic] = ACTIONS(9837), + [sym_number_literal] = ACTIONS(9839), + [anon_sym_extern] = ACTIONS(9837), + [anon_sym_enum] = ACTIONS(9837), + [anon_sym_constexpr] = ACTIONS(9837), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9839), + [anon_sym_namespace] = ACTIONS(9837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9837), + [anon_sym_SQUOTE] = ACTIONS(9839), + [anon_sym_LBRACE] = ACTIONS(9839), + [anon_sym_DASH_DASH] = ACTIONS(9839), + [anon_sym_LPAREN2] = ACTIONS(9839), + [anon_sym_struct] = ACTIONS(9837), + [sym_auto] = ACTIONS(9837), + [anon_sym_signed] = ACTIONS(9837), + [anon_sym_long] = ACTIONS(9837), + [anon_sym_COLON_COLON] = ACTIONS(9839), + [anon_sym_using] = ACTIONS(9837), + [sym_preproc_directive] = ACTIONS(9837), + [aux_sym_preproc_if_token1] = ACTIONS(9837), + [anon_sym_AMP] = ACTIONS(9837), + [anon_sym_static] = ACTIONS(9837), + [anon_sym_STAR] = ACTIONS(9839), + [anon_sym_union] = ACTIONS(9837), + [anon_sym_typename] = ACTIONS(9837), + [anon_sym_short] = ACTIONS(9837), + [anon_sym_new] = ACTIONS(9837), + [anon_sym_goto] = ACTIONS(9837), + [sym_operator_name] = ACTIONS(9839), + [anon_sym_while] = ACTIONS(9837), + [anon_sym_try] = ACTIONS(9837), + [anon_sym_for] = ACTIONS(9837), + [aux_sym_preproc_include_token1] = ACTIONS(9837), + [anon_sym_register] = ACTIONS(9837), + [anon_sym_DQUOTE] = ACTIONS(9839), + [anon_sym_const] = ACTIONS(9837), + [anon_sym_LBRACK] = ACTIONS(9837), + [anon_sym_class] = ACTIONS(9837), + [anon_sym_if] = ACTIONS(9837), + [sym_primitive_type] = ACTIONS(9837), + [sym_false] = ACTIONS(9837), + [sym_nullptr] = ACTIONS(9837), + [anon_sym_do] = ACTIONS(9837), + [anon_sym_template] = ACTIONS(9837), + [anon_sym_return] = ACTIONS(9837), + [anon_sym_TILDE] = ACTIONS(9839), + [anon_sym_SEMI] = ACTIONS(9839), + [aux_sym_preproc_def_token1] = ACTIONS(9837), + [anon_sym_AMP_AMP] = ACTIONS(9839), + [anon_sym_inline] = ACTIONS(9837), + [anon_sym_PLUS_PLUS] = ACTIONS(9839), + [anon_sym_restrict] = ACTIONS(9837), }, - [4841] = { - [sym_do_statement] = STATE(4958), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4812] = { + [sym_do_statement] = STATE(4929), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4958), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4958), - [sym_if_statement] = STATE(4958), - [sym_switch_statement] = STATE(4958), - [sym_for_statement] = STATE(4958), - [sym_return_statement] = STATE(4958), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4929), + [sym_try_statement] = STATE(4929), + [sym_if_statement] = STATE(4929), + [sym_switch_statement] = STATE(4929), + [sym_for_statement] = STATE(4929), + [sym_return_statement] = STATE(4929), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4958), - [sym_break_statement] = STATE(4958), - [sym_continue_statement] = STATE(4958), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4929), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4958), - [sym_labeled_statement] = STATE(4958), - [sym_expression_statement] = STATE(4958), - [sym_while_statement] = STATE(4958), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4929), + [sym_for_range_loop] = STATE(4929), + [sym_compound_statement] = STATE(4929), + [sym_labeled_statement] = STATE(4929), + [sym_expression_statement] = STATE(4929), + [sym_while_statement] = STATE(4929), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4842] = { - [anon_sym_DASH] = ACTIONS(10247), - [sym_raw_string_literal] = ACTIONS(10249), - [anon_sym_else] = ACTIONS(10247), - [sym_true] = ACTIONS(10247), - [anon_sym_mutable] = ACTIONS(10247), - [sym_null] = ACTIONS(10247), - [anon_sym_break] = ACTIONS(10247), - [aux_sym_preproc_if_token2] = ACTIONS(10247), - [anon_sym_BANG] = ACTIONS(10249), - [anon_sym_sizeof] = ACTIONS(10247), - [anon_sym_volatile] = ACTIONS(10247), - [anon_sym_PLUS] = ACTIONS(10247), - [anon_sym_typedef] = ACTIONS(10247), - [anon_sym_switch] = ACTIONS(10247), - [anon_sym_explicit] = ACTIONS(10247), - [sym_identifier] = ACTIONS(10247), - [anon_sym_delete] = ACTIONS(10247), - [anon_sym_continue] = ACTIONS(10247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10247), - [anon_sym__Atomic] = ACTIONS(10247), - [sym_number_literal] = ACTIONS(10249), - [anon_sym_extern] = ACTIONS(10247), - [anon_sym_enum] = ACTIONS(10247), - [anon_sym_constexpr] = ACTIONS(10247), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10249), - [anon_sym_namespace] = ACTIONS(10247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10247), - [aux_sym_preproc_elif_token1] = ACTIONS(10247), - [anon_sym_SQUOTE] = ACTIONS(10249), - [anon_sym_LBRACE] = ACTIONS(10249), - [anon_sym_DASH_DASH] = ACTIONS(10249), - [anon_sym_LPAREN2] = ACTIONS(10249), - [anon_sym_struct] = ACTIONS(10247), - [sym_auto] = ACTIONS(10247), - [anon_sym_signed] = ACTIONS(10247), - [anon_sym_long] = ACTIONS(10247), - [anon_sym_COLON_COLON] = ACTIONS(10249), - [anon_sym_using] = ACTIONS(10247), - [aux_sym_preproc_else_token1] = ACTIONS(10247), - [sym_preproc_directive] = ACTIONS(10247), - [aux_sym_preproc_if_token1] = ACTIONS(10247), - [anon_sym_AMP] = ACTIONS(10247), - [anon_sym_static] = ACTIONS(10247), - [anon_sym_STAR] = ACTIONS(10249), - [anon_sym_union] = ACTIONS(10247), - [anon_sym_typename] = ACTIONS(10247), - [anon_sym_short] = ACTIONS(10247), - [anon_sym_new] = ACTIONS(10247), - [anon_sym_goto] = ACTIONS(10247), - [sym_operator_name] = ACTIONS(10249), - [anon_sym_while] = ACTIONS(10247), - [anon_sym_try] = ACTIONS(10247), - [anon_sym_for] = ACTIONS(10247), - [aux_sym_preproc_include_token1] = ACTIONS(10247), - [anon_sym_register] = ACTIONS(10247), - [anon_sym_DQUOTE] = ACTIONS(10249), - [anon_sym_const] = ACTIONS(10247), - [anon_sym_LBRACK] = ACTIONS(10247), - [anon_sym_class] = ACTIONS(10247), - [anon_sym_if] = ACTIONS(10247), - [sym_primitive_type] = ACTIONS(10247), - [sym_false] = ACTIONS(10247), - [sym_nullptr] = ACTIONS(10247), - [anon_sym_do] = ACTIONS(10247), - [anon_sym_template] = ACTIONS(10247), - [anon_sym_return] = ACTIONS(10247), - [anon_sym_TILDE] = ACTIONS(10249), - [anon_sym_SEMI] = ACTIONS(10249), - [aux_sym_preproc_def_token1] = ACTIONS(10247), - [anon_sym_AMP_AMP] = ACTIONS(10249), - [anon_sym_inline] = ACTIONS(10247), - [anon_sym_PLUS_PLUS] = ACTIONS(10249), - [anon_sym_restrict] = ACTIONS(10247), + [4813] = { + [anon_sym_DASH] = ACTIONS(10213), + [sym_raw_string_literal] = ACTIONS(10215), + [anon_sym_else] = ACTIONS(10213), + [sym_true] = ACTIONS(10213), + [anon_sym_mutable] = ACTIONS(10213), + [sym_null] = ACTIONS(10213), + [anon_sym_break] = ACTIONS(10213), + [aux_sym_preproc_if_token2] = ACTIONS(10213), + [anon_sym_BANG] = ACTIONS(10215), + [anon_sym_sizeof] = ACTIONS(10213), + [anon_sym_volatile] = ACTIONS(10213), + [anon_sym_PLUS] = ACTIONS(10213), + [anon_sym_typedef] = ACTIONS(10213), + [anon_sym_switch] = ACTIONS(10213), + [anon_sym_explicit] = ACTIONS(10213), + [sym_identifier] = ACTIONS(10213), + [anon_sym_delete] = ACTIONS(10213), + [anon_sym_continue] = ACTIONS(10213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10213), + [anon_sym__Atomic] = ACTIONS(10213), + [sym_number_literal] = ACTIONS(10215), + [anon_sym_extern] = ACTIONS(10213), + [anon_sym_enum] = ACTIONS(10213), + [anon_sym_constexpr] = ACTIONS(10213), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10215), + [anon_sym_namespace] = ACTIONS(10213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10213), + [aux_sym_preproc_elif_token1] = ACTIONS(10213), + [anon_sym_SQUOTE] = ACTIONS(10215), + [anon_sym_LBRACE] = ACTIONS(10215), + [anon_sym_DASH_DASH] = ACTIONS(10215), + [anon_sym_LPAREN2] = ACTIONS(10215), + [anon_sym_struct] = ACTIONS(10213), + [sym_auto] = ACTIONS(10213), + [anon_sym_signed] = ACTIONS(10213), + [anon_sym_long] = ACTIONS(10213), + [anon_sym_COLON_COLON] = ACTIONS(10215), + [anon_sym_using] = ACTIONS(10213), + [aux_sym_preproc_else_token1] = ACTIONS(10213), + [sym_preproc_directive] = ACTIONS(10213), + [aux_sym_preproc_if_token1] = ACTIONS(10213), + [anon_sym_AMP] = ACTIONS(10213), + [anon_sym_static] = ACTIONS(10213), + [anon_sym_STAR] = ACTIONS(10215), + [anon_sym_union] = ACTIONS(10213), + [anon_sym_typename] = ACTIONS(10213), + [anon_sym_short] = ACTIONS(10213), + [anon_sym_new] = ACTIONS(10213), + [anon_sym_goto] = ACTIONS(10213), + [sym_operator_name] = ACTIONS(10215), + [anon_sym_while] = ACTIONS(10213), + [anon_sym_try] = ACTIONS(10213), + [anon_sym_for] = ACTIONS(10213), + [aux_sym_preproc_include_token1] = ACTIONS(10213), + [anon_sym_register] = ACTIONS(10213), + [anon_sym_DQUOTE] = ACTIONS(10215), + [anon_sym_const] = ACTIONS(10213), + [anon_sym_LBRACK] = ACTIONS(10213), + [anon_sym_class] = ACTIONS(10213), + [anon_sym_if] = ACTIONS(10213), + [sym_primitive_type] = ACTIONS(10213), + [sym_false] = ACTIONS(10213), + [sym_nullptr] = ACTIONS(10213), + [anon_sym_do] = ACTIONS(10213), + [anon_sym_template] = ACTIONS(10213), + [anon_sym_return] = ACTIONS(10213), + [anon_sym_TILDE] = ACTIONS(10215), + [anon_sym_SEMI] = ACTIONS(10215), + [aux_sym_preproc_def_token1] = ACTIONS(10213), + [anon_sym_AMP_AMP] = ACTIONS(10215), + [anon_sym_inline] = ACTIONS(10213), + [anon_sym_PLUS_PLUS] = ACTIONS(10215), + [anon_sym_restrict] = ACTIONS(10213), }, - [4843] = { - [sym_do_statement] = STATE(4959), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4814] = { + [sym_do_statement] = STATE(4930), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4959), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4959), - [sym_if_statement] = STATE(4959), - [sym_switch_statement] = STATE(4959), - [sym_for_statement] = STATE(4959), - [sym_return_statement] = STATE(4959), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4930), + [sym_try_statement] = STATE(4930), + [sym_if_statement] = STATE(4930), + [sym_switch_statement] = STATE(4930), + [sym_for_statement] = STATE(4930), + [sym_return_statement] = STATE(4930), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4959), - [sym_break_statement] = STATE(4959), - [sym_continue_statement] = STATE(4959), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4930), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4959), - [sym_labeled_statement] = STATE(4959), - [sym_expression_statement] = STATE(4959), - [sym_while_statement] = STATE(4959), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4930), + [sym_for_range_loop] = STATE(4930), + [sym_compound_statement] = STATE(4930), + [sym_labeled_statement] = STATE(4930), + [sym_expression_statement] = STATE(4930), + [sym_while_statement] = STATE(4930), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4844] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10639), + [4815] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10605), [sym_comment] = ACTIONS(3), }, - [4845] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4962), - [sym_logical_expression] = STATE(4962), - [sym_bitwise_expression] = STATE(4962), - [sym_cast_expression] = STATE(4962), - [sym_new_expression] = STATE(4962), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4962), - [sym_char_literal] = STATE(4962), - [sym_template_function] = STATE(4962), - [sym_conditional_expression] = STATE(4962), - [sym_equality_expression] = STATE(4962), - [sym_relational_expression] = STATE(4962), - [sym_delete_expression] = STATE(4962), - [sym_sizeof_expression] = STATE(4962), - [sym_parenthesized_expression] = STATE(4962), - [sym_lambda_expression] = STATE(4962), - [sym_concatenated_string] = STATE(4962), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4962), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4962), - [sym_math_expression] = STATE(4962), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10641), + [4816] = { + [sym_template_function] = STATE(4933), + [sym__expression] = STATE(4933), + [sym_logical_expression] = STATE(4933), + [sym_bitwise_expression] = STATE(4933), + [sym_cast_expression] = STATE(4933), + [sym_delete_expression] = STATE(4933), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4933), + [sym_lambda_expression] = STATE(4933), + [sym_char_literal] = STATE(4933), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4933), + [sym_equality_expression] = STATE(4933), + [sym_relational_expression] = STATE(4933), + [sym_sizeof_expression] = STATE(4933), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4933), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4933), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4933), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4933), + [sym_math_expression] = STATE(4933), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4933), + [sym_raw_string_literal] = ACTIONS(10607), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10643), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10643), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10609), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10609), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10641), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10607), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10643), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10643), + [sym_false] = ACTIONS(10609), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10609), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10645), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10611), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4846] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10647), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4817] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10613), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4847] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4964), - [sym_logical_expression] = STATE(4964), - [sym_bitwise_expression] = STATE(4964), - [sym_cast_expression] = STATE(4964), - [sym_new_expression] = STATE(4964), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4964), - [sym_char_literal] = STATE(4964), - [sym_template_function] = STATE(4964), - [sym_conditional_expression] = STATE(4964), - [sym_equality_expression] = STATE(4964), - [sym_relational_expression] = STATE(4964), - [sym_delete_expression] = STATE(4964), - [sym_sizeof_expression] = STATE(4964), - [sym_parenthesized_expression] = STATE(4964), - [sym_lambda_expression] = STATE(4964), - [sym_concatenated_string] = STATE(4964), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4964), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4964), - [sym_math_expression] = STATE(4964), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10649), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10651), - [sym_null] = ACTIONS(10651), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10649), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10651), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10651), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10647), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4818] = { + [sym_template_function] = STATE(4935), + [sym__expression] = STATE(4935), + [sym_logical_expression] = STATE(4935), + [sym_bitwise_expression] = STATE(4935), + [sym_cast_expression] = STATE(4935), + [sym_delete_expression] = STATE(4935), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4935), + [sym_lambda_expression] = STATE(4935), + [sym_char_literal] = STATE(4935), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4935), + [sym_equality_expression] = STATE(4935), + [sym_relational_expression] = STATE(4935), + [sym_sizeof_expression] = STATE(4935), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4935), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4935), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4935), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4935), + [sym_math_expression] = STATE(4935), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4935), + [sym_raw_string_literal] = ACTIONS(10615), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10617), + [sym_null] = ACTIONS(10617), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10615), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10617), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10617), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10613), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4848] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4965), - [sym_logical_expression] = STATE(4965), - [sym_bitwise_expression] = STATE(4965), - [sym_cast_expression] = STATE(4965), - [sym_new_expression] = STATE(4965), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(4965), - [sym_char_literal] = STATE(4965), - [sym_template_function] = STATE(4965), - [sym_conditional_expression] = STATE(4965), - [sym_equality_expression] = STATE(4965), - [sym_relational_expression] = STATE(4965), - [sym_delete_expression] = STATE(4965), - [sym_sizeof_expression] = STATE(4965), - [sym_parenthesized_expression] = STATE(4965), - [sym_lambda_expression] = STATE(4965), - [sym_concatenated_string] = STATE(4965), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(4965), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(4965), - [sym_math_expression] = STATE(4965), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10653), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10655), - [sym_null] = ACTIONS(10655), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10653), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10655), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10655), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4819] = { + [sym_template_function] = STATE(4936), + [sym__expression] = STATE(4936), + [sym_logical_expression] = STATE(4936), + [sym_bitwise_expression] = STATE(4936), + [sym_cast_expression] = STATE(4936), + [sym_delete_expression] = STATE(4936), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4936), + [sym_lambda_expression] = STATE(4936), + [sym_char_literal] = STATE(4936), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4936), + [sym_equality_expression] = STATE(4936), + [sym_relational_expression] = STATE(4936), + [sym_sizeof_expression] = STATE(4936), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4936), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4936), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4936), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4936), + [sym_math_expression] = STATE(4936), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4936), + [sym_raw_string_literal] = ACTIONS(10619), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10621), + [sym_null] = ACTIONS(10621), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10619), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10621), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10621), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4849] = { - [aux_sym_try_statement_repeat1] = STATE(4849), - [sym_catch_clause] = STATE(4849), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [anon_sym_else] = ACTIONS(5353), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [aux_sym_preproc_if_token2] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(8579), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_namespace] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), - [aux_sym_preproc_elif_token1] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_using] = ACTIONS(5353), - [aux_sym_preproc_else_token1] = ACTIONS(5353), - [sym_preproc_directive] = ACTIONS(5353), - [aux_sym_preproc_if_token1] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [sym_operator_name] = ACTIONS(5355), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [aux_sym_preproc_include_token1] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_template] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [aux_sym_preproc_def_token1] = ACTIONS(5353), - [anon_sym_AMP_AMP] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [4820] = { + [sym_catch_clause] = STATE(4820), + [aux_sym_try_statement_repeat1] = STATE(4820), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5352), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [aux_sym_preproc_if_token2] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(8545), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_namespace] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5352), + [aux_sym_preproc_elif_token1] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_using] = ACTIONS(5352), + [aux_sym_preproc_else_token1] = ACTIONS(5352), + [sym_preproc_directive] = ACTIONS(5352), + [aux_sym_preproc_if_token1] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [sym_operator_name] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [aux_sym_preproc_include_token1] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_template] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [aux_sym_preproc_def_token1] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [4850] = { - [sym_do_statement] = STATE(4966), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4821] = { + [sym_do_statement] = STATE(4937), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4966), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4966), - [sym_if_statement] = STATE(4966), - [sym_switch_statement] = STATE(4966), - [sym_for_statement] = STATE(4966), - [sym_return_statement] = STATE(4966), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), - [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4966), - [sym_break_statement] = STATE(4966), - [sym_continue_statement] = STATE(4966), - [sym_assignment_expression] = STATE(482), + [sym_goto_statement] = STATE(4937), + [sym_try_statement] = STATE(4937), + [sym_if_statement] = STATE(4937), + [sym_switch_statement] = STATE(4937), + [sym_for_statement] = STATE(4937), + [sym_return_statement] = STATE(4937), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), + [sym_subscript_expression] = STATE(47), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4937), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4966), - [sym_labeled_statement] = STATE(4966), - [sym_expression_statement] = STATE(4966), - [sym_while_statement] = STATE(4966), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4937), + [sym_for_range_loop] = STATE(4937), + [sym_compound_statement] = STATE(4937), + [sym_labeled_statement] = STATE(4937), + [sym_expression_statement] = STATE(4937), + [sym_while_statement] = STATE(4937), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4851] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10657), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4822] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10623), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4852] = { - [anon_sym_DASH] = ACTIONS(10275), - [sym_raw_string_literal] = ACTIONS(10277), - [anon_sym_else] = ACTIONS(10275), - [sym_true] = ACTIONS(10275), - [anon_sym_mutable] = ACTIONS(10275), - [sym_null] = ACTIONS(10275), - [anon_sym_break] = ACTIONS(10275), - [aux_sym_preproc_if_token2] = ACTIONS(10275), - [anon_sym_BANG] = ACTIONS(10277), - [anon_sym_sizeof] = ACTIONS(10275), - [anon_sym_volatile] = ACTIONS(10275), - [anon_sym_PLUS] = ACTIONS(10275), - [anon_sym_typedef] = ACTIONS(10275), - [anon_sym_switch] = ACTIONS(10275), - [anon_sym_explicit] = ACTIONS(10275), - [sym_identifier] = ACTIONS(10275), - [anon_sym_delete] = ACTIONS(10275), - [anon_sym_continue] = ACTIONS(10275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10275), - [anon_sym__Atomic] = ACTIONS(10275), - [sym_number_literal] = ACTIONS(10277), - [anon_sym_extern] = ACTIONS(10275), - [anon_sym_enum] = ACTIONS(10275), - [anon_sym_constexpr] = ACTIONS(10275), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10277), - [anon_sym_namespace] = ACTIONS(10275), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10275), - [aux_sym_preproc_elif_token1] = ACTIONS(10275), - [anon_sym_SQUOTE] = ACTIONS(10277), - [anon_sym_LBRACE] = ACTIONS(10277), - [anon_sym_DASH_DASH] = ACTIONS(10277), - [anon_sym_LPAREN2] = ACTIONS(10277), - [anon_sym_struct] = ACTIONS(10275), - [sym_auto] = ACTIONS(10275), - [anon_sym_signed] = ACTIONS(10275), - [anon_sym_long] = ACTIONS(10275), - [anon_sym_COLON_COLON] = ACTIONS(10277), - [anon_sym_using] = ACTIONS(10275), - [aux_sym_preproc_else_token1] = ACTIONS(10275), - [sym_preproc_directive] = ACTIONS(10275), - [aux_sym_preproc_if_token1] = ACTIONS(10275), - [anon_sym_AMP] = ACTIONS(10275), - [anon_sym_static] = ACTIONS(10275), - [anon_sym_STAR] = ACTIONS(10277), - [anon_sym_union] = ACTIONS(10275), - [anon_sym_typename] = ACTIONS(10275), - [anon_sym_short] = ACTIONS(10275), - [anon_sym_new] = ACTIONS(10275), - [anon_sym_goto] = ACTIONS(10275), - [sym_operator_name] = ACTIONS(10277), - [anon_sym_while] = ACTIONS(10275), - [anon_sym_try] = ACTIONS(10275), - [anon_sym_for] = ACTIONS(10275), - [aux_sym_preproc_include_token1] = ACTIONS(10275), - [anon_sym_register] = ACTIONS(10275), - [anon_sym_DQUOTE] = ACTIONS(10277), - [anon_sym_const] = ACTIONS(10275), - [anon_sym_LBRACK] = ACTIONS(10275), - [anon_sym_class] = ACTIONS(10275), - [anon_sym_if] = ACTIONS(10275), - [sym_primitive_type] = ACTIONS(10275), - [sym_false] = ACTIONS(10275), - [sym_nullptr] = ACTIONS(10275), - [anon_sym_do] = ACTIONS(10275), - [anon_sym_template] = ACTIONS(10275), - [anon_sym_return] = ACTIONS(10275), - [anon_sym_TILDE] = ACTIONS(10277), - [anon_sym_SEMI] = ACTIONS(10277), - [aux_sym_preproc_def_token1] = ACTIONS(10275), - [anon_sym_AMP_AMP] = ACTIONS(10277), - [anon_sym_inline] = ACTIONS(10275), - [anon_sym_PLUS_PLUS] = ACTIONS(10277), - [anon_sym_restrict] = ACTIONS(10275), + [4823] = { + [anon_sym_DASH] = ACTIONS(10241), + [sym_raw_string_literal] = ACTIONS(10243), + [anon_sym_else] = ACTIONS(10241), + [sym_true] = ACTIONS(10241), + [anon_sym_mutable] = ACTIONS(10241), + [sym_null] = ACTIONS(10241), + [anon_sym_break] = ACTIONS(10241), + [aux_sym_preproc_if_token2] = ACTIONS(10241), + [anon_sym_BANG] = ACTIONS(10243), + [anon_sym_sizeof] = ACTIONS(10241), + [anon_sym_volatile] = ACTIONS(10241), + [anon_sym_PLUS] = ACTIONS(10241), + [anon_sym_typedef] = ACTIONS(10241), + [anon_sym_switch] = ACTIONS(10241), + [anon_sym_explicit] = ACTIONS(10241), + [sym_identifier] = ACTIONS(10241), + [anon_sym_delete] = ACTIONS(10241), + [anon_sym_continue] = ACTIONS(10241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10241), + [anon_sym__Atomic] = ACTIONS(10241), + [sym_number_literal] = ACTIONS(10243), + [anon_sym_extern] = ACTIONS(10241), + [anon_sym_enum] = ACTIONS(10241), + [anon_sym_constexpr] = ACTIONS(10241), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10243), + [anon_sym_namespace] = ACTIONS(10241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10241), + [aux_sym_preproc_elif_token1] = ACTIONS(10241), + [anon_sym_SQUOTE] = ACTIONS(10243), + [anon_sym_LBRACE] = ACTIONS(10243), + [anon_sym_DASH_DASH] = ACTIONS(10243), + [anon_sym_LPAREN2] = ACTIONS(10243), + [anon_sym_struct] = ACTIONS(10241), + [sym_auto] = ACTIONS(10241), + [anon_sym_signed] = ACTIONS(10241), + [anon_sym_long] = ACTIONS(10241), + [anon_sym_COLON_COLON] = ACTIONS(10243), + [anon_sym_using] = ACTIONS(10241), + [aux_sym_preproc_else_token1] = ACTIONS(10241), + [sym_preproc_directive] = ACTIONS(10241), + [aux_sym_preproc_if_token1] = ACTIONS(10241), + [anon_sym_AMP] = ACTIONS(10241), + [anon_sym_static] = ACTIONS(10241), + [anon_sym_STAR] = ACTIONS(10243), + [anon_sym_union] = ACTIONS(10241), + [anon_sym_typename] = ACTIONS(10241), + [anon_sym_short] = ACTIONS(10241), + [anon_sym_new] = ACTIONS(10241), + [anon_sym_goto] = ACTIONS(10241), + [sym_operator_name] = ACTIONS(10243), + [anon_sym_while] = ACTIONS(10241), + [anon_sym_try] = ACTIONS(10241), + [anon_sym_for] = ACTIONS(10241), + [aux_sym_preproc_include_token1] = ACTIONS(10241), + [anon_sym_register] = ACTIONS(10241), + [anon_sym_DQUOTE] = ACTIONS(10243), + [anon_sym_const] = ACTIONS(10241), + [anon_sym_LBRACK] = ACTIONS(10241), + [anon_sym_class] = ACTIONS(10241), + [anon_sym_if] = ACTIONS(10241), + [sym_primitive_type] = ACTIONS(10241), + [sym_false] = ACTIONS(10241), + [sym_nullptr] = ACTIONS(10241), + [anon_sym_do] = ACTIONS(10241), + [anon_sym_template] = ACTIONS(10241), + [anon_sym_return] = ACTIONS(10241), + [anon_sym_TILDE] = ACTIONS(10243), + [anon_sym_SEMI] = ACTIONS(10243), + [aux_sym_preproc_def_token1] = ACTIONS(10241), + [anon_sym_AMP_AMP] = ACTIONS(10243), + [anon_sym_inline] = ACTIONS(10241), + [anon_sym_PLUS_PLUS] = ACTIONS(10243), + [anon_sym_restrict] = ACTIONS(10241), }, - [4853] = { - [sym_do_statement] = STATE(4886), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4824] = { + [sym_do_statement] = STATE(4857), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4886), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4886), - [sym_if_statement] = STATE(4886), - [sym_switch_statement] = STATE(4886), - [sym_for_statement] = STATE(4886), - [sym_return_statement] = STATE(4886), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4857), + [sym_try_statement] = STATE(4857), + [sym_if_statement] = STATE(4857), + [sym_switch_statement] = STATE(4857), + [sym_for_statement] = STATE(4857), + [sym_return_statement] = STATE(4857), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4886), - [sym_break_statement] = STATE(4886), - [sym_continue_statement] = STATE(4886), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4857), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4886), - [sym_labeled_statement] = STATE(4886), - [sym_expression_statement] = STATE(4886), - [sym_while_statement] = STATE(4886), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4857), + [sym_for_range_loop] = STATE(4857), + [sym_compound_statement] = STATE(4857), + [sym_labeled_statement] = STATE(4857), + [sym_expression_statement] = STATE(4857), + [sym_while_statement] = STATE(4857), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -196428,7 +195865,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), @@ -196452,51 +195889,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4854] = { - [sym_do_statement] = STATE(3533), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4825] = { + [sym_do_statement] = STATE(3505), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(3533), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(3533), - [sym_if_statement] = STATE(3533), - [sym_switch_statement] = STATE(3533), - [sym_for_statement] = STATE(3533), - [sym_return_statement] = STATE(3533), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(3505), + [sym_try_statement] = STATE(3505), + [sym_if_statement] = STATE(3505), + [sym_switch_statement] = STATE(3505), + [sym_for_statement] = STATE(3505), + [sym_return_statement] = STATE(3505), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(3533), - [sym_break_statement] = STATE(3533), - [sym_continue_statement] = STATE(3533), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(3505), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(3533), - [sym_labeled_statement] = STATE(3533), - [sym_expression_statement] = STATE(3533), - [sym_while_statement] = STATE(3533), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(3505), + [sym_for_range_loop] = STATE(3505), + [sym_compound_statement] = STATE(3505), + [sym_labeled_statement] = STATE(3505), + [sym_expression_statement] = STATE(3505), + [sym_while_statement] = STATE(3505), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -196510,18 +195947,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -196534,274 +195971,274 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4855] = { - [aux_sym_for_statement_repeat1] = STATE(4969), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10659), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4826] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4940), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10625), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4856] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4970), - [sym_logical_expression] = STATE(4970), - [sym_bitwise_expression] = STATE(4970), - [sym_cast_expression] = STATE(4970), - [sym_new_expression] = STATE(4970), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4970), - [sym_char_literal] = STATE(4970), - [sym_template_function] = STATE(4970), - [sym_conditional_expression] = STATE(4970), - [sym_equality_expression] = STATE(4970), - [sym_relational_expression] = STATE(4970), - [sym_delete_expression] = STATE(4970), - [sym_sizeof_expression] = STATE(4970), - [sym_parenthesized_expression] = STATE(4970), - [sym_lambda_expression] = STATE(4970), - [sym_concatenated_string] = STATE(4970), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4970), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4970), - [sym_math_expression] = STATE(4970), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10661), + [4827] = { + [sym_template_function] = STATE(4941), + [sym__expression] = STATE(4941), + [sym_logical_expression] = STATE(4941), + [sym_bitwise_expression] = STATE(4941), + [sym_cast_expression] = STATE(4941), + [sym_delete_expression] = STATE(4941), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4941), + [sym_lambda_expression] = STATE(4941), + [sym_char_literal] = STATE(4941), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4941), + [sym_equality_expression] = STATE(4941), + [sym_relational_expression] = STATE(4941), + [sym_sizeof_expression] = STATE(4941), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4941), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4941), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4941), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4941), + [sym_math_expression] = STATE(4941), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4941), + [sym_raw_string_literal] = ACTIONS(10627), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10663), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10663), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10629), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10629), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10661), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10627), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10663), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10663), + [sym_false] = ACTIONS(10629), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10629), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10659), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10625), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4857] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10665), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4828] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10631), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4858] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10667), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4829] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10633), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4859] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(10669), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_namespace] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_using] = ACTIONS(7770), - [sym_preproc_directive] = ACTIONS(7770), - [aux_sym_preproc_if_token1] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7770), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_RBRACE] = ACTIONS(7772), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [sym_operator_name] = ACTIONS(7772), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [aux_sym_preproc_include_token1] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_template] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7770), - [anon_sym_AMP_AMP] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [4830] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(10635), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_namespace] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_using] = ACTIONS(7751), + [sym_preproc_directive] = ACTIONS(7751), + [aux_sym_preproc_if_token1] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [sym_operator_name] = ACTIONS(7753), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [aux_sym_preproc_include_token1] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [aux_sym_preproc_def_token1] = ACTIONS(7751), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [4860] = { - [sym_do_statement] = STATE(4974), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4831] = { + [sym_do_statement] = STATE(4945), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4974), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4974), - [sym_if_statement] = STATE(4974), - [sym_switch_statement] = STATE(4974), - [sym_for_statement] = STATE(4974), - [sym_return_statement] = STATE(4974), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4945), + [sym_try_statement] = STATE(4945), + [sym_if_statement] = STATE(4945), + [sym_switch_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_return_statement] = STATE(4945), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4974), - [sym_break_statement] = STATE(4974), - [sym_continue_statement] = STATE(4974), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4945), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4974), - [sym_labeled_statement] = STATE(4974), - [sym_expression_statement] = STATE(4974), - [sym_while_statement] = STATE(4974), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4945), + [sym_for_range_loop] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_labeled_statement] = STATE(4945), + [sym_expression_statement] = STATE(4945), + [sym_while_statement] = STATE(4945), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -196815,18 +196252,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -196839,1009 +196276,1021 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4861] = { - [anon_sym_LPAREN2] = ACTIONS(7477), - [anon_sym_struct] = ACTIONS(7475), - [sym_auto] = ACTIONS(7475), - [anon_sym_signed] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [anon_sym_long] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7477), - [anon_sym_using] = ACTIONS(7475), - [aux_sym_preproc_if_token2] = ACTIONS(7475), - [sym_preproc_directive] = ACTIONS(7475), - [aux_sym_preproc_if_token1] = ACTIONS(7475), - [anon_sym_AMP] = ACTIONS(7475), - [anon_sym_static] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_typedef] = ACTIONS(7475), - [anon_sym_STAR] = ACTIONS(7477), - [anon_sym_union] = ACTIONS(7475), - [anon_sym_typename] = ACTIONS(7475), - [anon_sym_private] = ACTIONS(7475), - [anon_sym_explicit] = ACTIONS(7475), - [anon_sym_short] = ACTIONS(7475), - [sym_identifier] = ACTIONS(7475), - [sym_operator_name] = ACTIONS(7477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7475), - [anon_sym_register] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [anon_sym_const] = ACTIONS(7475), - [anon_sym_extern] = ACTIONS(7475), - [anon_sym_virtual] = ACTIONS(7475), - [anon_sym_enum] = ACTIONS(7475), - [anon_sym_class] = ACTIONS(7475), - [anon_sym_constexpr] = ACTIONS(7475), - [sym_primitive_type] = ACTIONS(7475), - [anon_sym_unsigned] = ACTIONS(7475), - [anon_sym_public] = ACTIONS(7475), - [anon_sym_protected] = ACTIONS(7475), - [anon_sym_friend] = ACTIONS(7475), - [anon_sym_template] = ACTIONS(7475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7475), - [anon_sym_TILDE] = ACTIONS(7477), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7477), - [anon_sym_inline] = ACTIONS(7475), - [anon_sym_restrict] = ACTIONS(7475), + [4832] = { + [anon_sym_LPAREN2] = ACTIONS(7461), + [anon_sym_struct] = ACTIONS(7459), + [sym_auto] = ACTIONS(7459), + [anon_sym_signed] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [anon_sym_long] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7461), + [anon_sym_using] = ACTIONS(7459), + [aux_sym_preproc_if_token2] = ACTIONS(7459), + [sym_preproc_directive] = ACTIONS(7459), + [aux_sym_preproc_if_token1] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_static] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_typedef] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7461), + [anon_sym_union] = ACTIONS(7459), + [anon_sym_typename] = ACTIONS(7459), + [anon_sym_private] = ACTIONS(7459), + [anon_sym_explicit] = ACTIONS(7459), + [anon_sym_short] = ACTIONS(7459), + [sym_identifier] = ACTIONS(7459), + [sym_operator_name] = ACTIONS(7461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7459), + [anon_sym_register] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_extern] = ACTIONS(7459), + [anon_sym_LBRACK] = ACTIONS(7459), + [anon_sym_virtual] = ACTIONS(7459), + [anon_sym_enum] = ACTIONS(7459), + [anon_sym_class] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [sym_primitive_type] = ACTIONS(7459), + [anon_sym_unsigned] = ACTIONS(7459), + [anon_sym_public] = ACTIONS(7459), + [anon_sym_protected] = ACTIONS(7459), + [anon_sym_friend] = ACTIONS(7459), + [anon_sym_template] = ACTIONS(7459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7459), + [anon_sym_TILDE] = ACTIONS(7461), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_inline] = ACTIONS(7459), + [anon_sym_restrict] = ACTIONS(7459), }, - [4862] = { - [anon_sym_LPAREN2] = ACTIONS(9762), - [anon_sym_struct] = ACTIONS(9764), - [sym_auto] = ACTIONS(9764), - [anon_sym_signed] = ACTIONS(9764), - [anon_sym_mutable] = ACTIONS(9764), - [anon_sym_long] = ACTIONS(9764), - [anon_sym_COLON_COLON] = ACTIONS(9762), - [anon_sym_using] = ACTIONS(9764), - [aux_sym_preproc_if_token2] = ACTIONS(9764), - [sym_preproc_directive] = ACTIONS(9764), - [aux_sym_preproc_if_token1] = ACTIONS(9764), - [anon_sym_AMP] = ACTIONS(9764), - [anon_sym_static] = ACTIONS(9764), - [anon_sym_volatile] = ACTIONS(9764), - [anon_sym_typedef] = ACTIONS(9764), - [anon_sym_STAR] = ACTIONS(9762), - [anon_sym_union] = ACTIONS(9764), - [anon_sym_typename] = ACTIONS(9764), - [anon_sym_private] = ACTIONS(9764), - [anon_sym_explicit] = ACTIONS(9764), - [anon_sym_short] = ACTIONS(9764), - [sym_identifier] = ACTIONS(9764), - [sym_operator_name] = ACTIONS(9762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9764), - [anon_sym_register] = ACTIONS(9764), - [anon_sym__Atomic] = ACTIONS(9764), - [anon_sym_const] = ACTIONS(9764), - [anon_sym_extern] = ACTIONS(9764), - [anon_sym_virtual] = ACTIONS(9764), - [anon_sym_enum] = ACTIONS(9764), - [anon_sym_class] = ACTIONS(9764), - [anon_sym_constexpr] = ACTIONS(9764), - [sym_primitive_type] = ACTIONS(9764), - [anon_sym_unsigned] = ACTIONS(9764), - [anon_sym_public] = ACTIONS(9764), - [anon_sym_protected] = ACTIONS(9764), - [anon_sym_friend] = ACTIONS(9764), - [anon_sym_template] = ACTIONS(9764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9764), - [anon_sym_TILDE] = ACTIONS(9762), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(9764), - [anon_sym_AMP_AMP] = ACTIONS(9762), - [anon_sym_inline] = ACTIONS(9764), - [anon_sym_restrict] = ACTIONS(9764), + [4833] = { + [anon_sym_LPAREN2] = ACTIONS(9718), + [anon_sym_struct] = ACTIONS(9720), + [sym_auto] = ACTIONS(9720), + [anon_sym_signed] = ACTIONS(9720), + [anon_sym_mutable] = ACTIONS(9720), + [anon_sym_long] = ACTIONS(9720), + [anon_sym_COLON_COLON] = ACTIONS(9718), + [anon_sym_using] = ACTIONS(9720), + [aux_sym_preproc_if_token2] = ACTIONS(9720), + [sym_preproc_directive] = ACTIONS(9720), + [aux_sym_preproc_if_token1] = ACTIONS(9720), + [anon_sym_AMP] = ACTIONS(9720), + [anon_sym_static] = ACTIONS(9720), + [anon_sym_volatile] = ACTIONS(9720), + [anon_sym_typedef] = ACTIONS(9720), + [anon_sym_STAR] = ACTIONS(9718), + [anon_sym_union] = ACTIONS(9720), + [anon_sym_typename] = ACTIONS(9720), + [anon_sym_private] = ACTIONS(9720), + [anon_sym_explicit] = ACTIONS(9720), + [anon_sym_short] = ACTIONS(9720), + [sym_identifier] = ACTIONS(9720), + [sym_operator_name] = ACTIONS(9718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9720), + [anon_sym_register] = ACTIONS(9720), + [anon_sym__Atomic] = ACTIONS(9720), + [anon_sym_const] = ACTIONS(9720), + [anon_sym_extern] = ACTIONS(9720), + [anon_sym_LBRACK] = ACTIONS(9720), + [anon_sym_virtual] = ACTIONS(9720), + [anon_sym_enum] = ACTIONS(9720), + [anon_sym_class] = ACTIONS(9720), + [anon_sym_constexpr] = ACTIONS(9720), + [sym_primitive_type] = ACTIONS(9720), + [anon_sym_unsigned] = ACTIONS(9720), + [anon_sym_public] = ACTIONS(9720), + [anon_sym_protected] = ACTIONS(9720), + [anon_sym_friend] = ACTIONS(9720), + [anon_sym_template] = ACTIONS(9720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9720), + [anon_sym_TILDE] = ACTIONS(9718), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(9720), + [anon_sym_AMP_AMP] = ACTIONS(9718), + [anon_sym_inline] = ACTIONS(9720), + [anon_sym_restrict] = ACTIONS(9720), }, - [4863] = { - [anon_sym_LPAREN2] = ACTIONS(6418), - [anon_sym_struct] = ACTIONS(6416), - [sym_auto] = ACTIONS(6416), - [anon_sym_signed] = ACTIONS(6416), - [anon_sym_mutable] = ACTIONS(6416), - [anon_sym_long] = ACTIONS(6416), - [anon_sym_COLON_COLON] = ACTIONS(6418), - [anon_sym_using] = ACTIONS(6416), - [aux_sym_preproc_if_token2] = ACTIONS(6416), - [sym_preproc_directive] = ACTIONS(6416), - [aux_sym_preproc_if_token1] = ACTIONS(6416), - [anon_sym_AMP] = ACTIONS(6416), - [anon_sym_static] = ACTIONS(6416), - [anon_sym_volatile] = ACTIONS(6416), - [anon_sym_typedef] = ACTIONS(6416), - [anon_sym_STAR] = ACTIONS(6418), - [anon_sym_union] = ACTIONS(6416), - [anon_sym_typename] = ACTIONS(6416), - [anon_sym_private] = ACTIONS(6416), - [anon_sym_explicit] = ACTIONS(6416), - [anon_sym_short] = ACTIONS(6416), - [sym_identifier] = ACTIONS(6416), - [sym_operator_name] = ACTIONS(6418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6416), - [anon_sym_register] = ACTIONS(6416), - [anon_sym__Atomic] = ACTIONS(6416), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_extern] = ACTIONS(6416), - [anon_sym_virtual] = ACTIONS(6416), - [anon_sym_enum] = ACTIONS(6416), - [anon_sym_class] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6416), - [sym_primitive_type] = ACTIONS(6416), - [anon_sym_unsigned] = ACTIONS(6416), - [anon_sym_public] = ACTIONS(6416), - [anon_sym_protected] = ACTIONS(6416), - [anon_sym_friend] = ACTIONS(6416), - [anon_sym_template] = ACTIONS(6416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6416), - [anon_sym_TILDE] = ACTIONS(6418), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(6416), - [anon_sym_AMP_AMP] = ACTIONS(6418), - [anon_sym_inline] = ACTIONS(6416), - [anon_sym_restrict] = ACTIONS(6416), + [4834] = { + [anon_sym_LPAREN2] = ACTIONS(6407), + [anon_sym_struct] = ACTIONS(6405), + [sym_auto] = ACTIONS(6405), + [anon_sym_signed] = ACTIONS(6405), + [anon_sym_mutable] = ACTIONS(6405), + [anon_sym_long] = ACTIONS(6405), + [anon_sym_COLON_COLON] = ACTIONS(6407), + [anon_sym_using] = ACTIONS(6405), + [aux_sym_preproc_if_token2] = ACTIONS(6405), + [sym_preproc_directive] = ACTIONS(6405), + [aux_sym_preproc_if_token1] = ACTIONS(6405), + [anon_sym_AMP] = ACTIONS(6405), + [anon_sym_static] = ACTIONS(6405), + [anon_sym_volatile] = ACTIONS(6405), + [anon_sym_typedef] = ACTIONS(6405), + [anon_sym_STAR] = ACTIONS(6407), + [anon_sym_union] = ACTIONS(6405), + [anon_sym_typename] = ACTIONS(6405), + [anon_sym_private] = ACTIONS(6405), + [anon_sym_explicit] = ACTIONS(6405), + [anon_sym_short] = ACTIONS(6405), + [sym_identifier] = ACTIONS(6405), + [sym_operator_name] = ACTIONS(6407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6405), + [anon_sym_register] = ACTIONS(6405), + [anon_sym__Atomic] = ACTIONS(6405), + [anon_sym_const] = ACTIONS(6405), + [anon_sym_extern] = ACTIONS(6405), + [anon_sym_LBRACK] = ACTIONS(6405), + [anon_sym_virtual] = ACTIONS(6405), + [anon_sym_enum] = ACTIONS(6405), + [anon_sym_class] = ACTIONS(6405), + [anon_sym_constexpr] = ACTIONS(6405), + [sym_primitive_type] = ACTIONS(6405), + [anon_sym_unsigned] = ACTIONS(6405), + [anon_sym_public] = ACTIONS(6405), + [anon_sym_protected] = ACTIONS(6405), + [anon_sym_friend] = ACTIONS(6405), + [anon_sym_template] = ACTIONS(6405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6405), + [anon_sym_TILDE] = ACTIONS(6407), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(6405), + [anon_sym_AMP_AMP] = ACTIONS(6407), + [anon_sym_inline] = ACTIONS(6405), + [anon_sym_restrict] = ACTIONS(6405), }, - [4864] = { - [aux_sym_type_definition_repeat2] = STATE(2057), + [4835] = { + [aux_sym_type_definition_repeat2] = STATE(2046), [sym_comment] = ACTIONS(3), [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(10671), + [anon_sym_SEMI] = ACTIONS(10637), }, - [4865] = { - [anon_sym_LPAREN2] = ACTIONS(9768), - [anon_sym_struct] = ACTIONS(9770), - [sym_auto] = ACTIONS(9770), - [anon_sym_signed] = ACTIONS(9770), - [anon_sym_mutable] = ACTIONS(9770), - [anon_sym_long] = ACTIONS(9770), - [anon_sym_COLON_COLON] = ACTIONS(9768), - [anon_sym_using] = ACTIONS(9770), - [aux_sym_preproc_if_token2] = ACTIONS(9770), - [sym_preproc_directive] = ACTIONS(9770), - [aux_sym_preproc_if_token1] = ACTIONS(9770), - [anon_sym_AMP] = ACTIONS(9770), - [anon_sym_static] = ACTIONS(9770), - [anon_sym_volatile] = ACTIONS(9770), - [anon_sym_typedef] = ACTIONS(9770), - [anon_sym_STAR] = ACTIONS(9768), - [anon_sym_union] = ACTIONS(9770), - [anon_sym_typename] = ACTIONS(9770), - [anon_sym_private] = ACTIONS(9770), - [anon_sym_explicit] = ACTIONS(9770), - [anon_sym_short] = ACTIONS(9770), - [sym_identifier] = ACTIONS(9770), - [sym_operator_name] = ACTIONS(9768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9770), - [anon_sym_register] = ACTIONS(9770), - [anon_sym__Atomic] = ACTIONS(9770), - [anon_sym_const] = ACTIONS(9770), - [anon_sym_extern] = ACTIONS(9770), - [anon_sym_virtual] = ACTIONS(9770), - [anon_sym_enum] = ACTIONS(9770), - [anon_sym_class] = ACTIONS(9770), - [anon_sym_constexpr] = ACTIONS(9770), - [sym_primitive_type] = ACTIONS(9770), - [anon_sym_unsigned] = ACTIONS(9770), - [anon_sym_public] = ACTIONS(9770), - [anon_sym_protected] = ACTIONS(9770), - [anon_sym_friend] = ACTIONS(9770), - [anon_sym_template] = ACTIONS(9770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9770), - [anon_sym_TILDE] = ACTIONS(9768), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(9770), - [anon_sym_AMP_AMP] = ACTIONS(9768), - [anon_sym_inline] = ACTIONS(9770), - [anon_sym_restrict] = ACTIONS(9770), + [4836] = { + [anon_sym_LPAREN2] = ACTIONS(9734), + [anon_sym_struct] = ACTIONS(9736), + [sym_auto] = ACTIONS(9736), + [anon_sym_signed] = ACTIONS(9736), + [anon_sym_mutable] = ACTIONS(9736), + [anon_sym_long] = ACTIONS(9736), + [anon_sym_COLON_COLON] = ACTIONS(9734), + [anon_sym_using] = ACTIONS(9736), + [aux_sym_preproc_if_token2] = ACTIONS(9736), + [sym_preproc_directive] = ACTIONS(9736), + [aux_sym_preproc_if_token1] = ACTIONS(9736), + [anon_sym_AMP] = ACTIONS(9736), + [anon_sym_static] = ACTIONS(9736), + [anon_sym_volatile] = ACTIONS(9736), + [anon_sym_typedef] = ACTIONS(9736), + [anon_sym_STAR] = ACTIONS(9734), + [anon_sym_union] = ACTIONS(9736), + [anon_sym_typename] = ACTIONS(9736), + [anon_sym_private] = ACTIONS(9736), + [anon_sym_explicit] = ACTIONS(9736), + [anon_sym_short] = ACTIONS(9736), + [sym_identifier] = ACTIONS(9736), + [sym_operator_name] = ACTIONS(9734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9736), + [anon_sym_register] = ACTIONS(9736), + [anon_sym__Atomic] = ACTIONS(9736), + [anon_sym_const] = ACTIONS(9736), + [anon_sym_extern] = ACTIONS(9736), + [anon_sym_LBRACK] = ACTIONS(9736), + [anon_sym_virtual] = ACTIONS(9736), + [anon_sym_enum] = ACTIONS(9736), + [anon_sym_class] = ACTIONS(9736), + [anon_sym_constexpr] = ACTIONS(9736), + [sym_primitive_type] = ACTIONS(9736), + [anon_sym_unsigned] = ACTIONS(9736), + [anon_sym_public] = ACTIONS(9736), + [anon_sym_protected] = ACTIONS(9736), + [anon_sym_friend] = ACTIONS(9736), + [anon_sym_template] = ACTIONS(9736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9736), + [anon_sym_TILDE] = ACTIONS(9734), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(9736), + [anon_sym_AMP_AMP] = ACTIONS(9734), + [anon_sym_inline] = ACTIONS(9736), + [anon_sym_restrict] = ACTIONS(9736), }, - [4866] = { - [anon_sym_LPAREN2] = ACTIONS(9772), - [anon_sym_struct] = ACTIONS(9774), - [sym_auto] = ACTIONS(9774), - [anon_sym_signed] = ACTIONS(9774), - [anon_sym_mutable] = ACTIONS(9774), - [anon_sym_long] = ACTIONS(9774), - [anon_sym_COLON_COLON] = ACTIONS(9772), - [anon_sym_using] = ACTIONS(9774), - [aux_sym_preproc_if_token2] = ACTIONS(9774), - [sym_preproc_directive] = ACTIONS(9774), - [aux_sym_preproc_if_token1] = ACTIONS(9774), - [anon_sym_AMP] = ACTIONS(9774), - [anon_sym_static] = ACTIONS(9774), - [anon_sym_volatile] = ACTIONS(9774), - [anon_sym_typedef] = ACTIONS(9774), - [anon_sym_STAR] = ACTIONS(9772), - [anon_sym_union] = ACTIONS(9774), - [anon_sym_typename] = ACTIONS(9774), - [anon_sym_private] = ACTIONS(9774), - [anon_sym_explicit] = ACTIONS(9774), - [anon_sym_short] = ACTIONS(9774), - [sym_identifier] = ACTIONS(9774), - [sym_operator_name] = ACTIONS(9772), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9774), - [anon_sym_register] = ACTIONS(9774), - [anon_sym__Atomic] = ACTIONS(9774), - [anon_sym_const] = ACTIONS(9774), - [anon_sym_extern] = ACTIONS(9774), - [anon_sym_virtual] = ACTIONS(9774), - [anon_sym_enum] = ACTIONS(9774), - [anon_sym_class] = ACTIONS(9774), - [anon_sym_constexpr] = ACTIONS(9774), - [sym_primitive_type] = ACTIONS(9774), - [anon_sym_unsigned] = ACTIONS(9774), - [anon_sym_public] = ACTIONS(9774), - [anon_sym_protected] = ACTIONS(9774), - [anon_sym_friend] = ACTIONS(9774), - [anon_sym_template] = ACTIONS(9774), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9772), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9774), - [anon_sym_TILDE] = ACTIONS(9772), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(9774), - [anon_sym_AMP_AMP] = ACTIONS(9772), - [anon_sym_inline] = ACTIONS(9774), - [anon_sym_restrict] = ACTIONS(9774), + [4837] = { + [anon_sym_LPAREN2] = ACTIONS(9738), + [anon_sym_struct] = ACTIONS(9740), + [sym_auto] = ACTIONS(9740), + [anon_sym_signed] = ACTIONS(9740), + [anon_sym_mutable] = ACTIONS(9740), + [anon_sym_long] = ACTIONS(9740), + [anon_sym_COLON_COLON] = ACTIONS(9738), + [anon_sym_using] = ACTIONS(9740), + [aux_sym_preproc_if_token2] = ACTIONS(9740), + [sym_preproc_directive] = ACTIONS(9740), + [aux_sym_preproc_if_token1] = ACTIONS(9740), + [anon_sym_AMP] = ACTIONS(9740), + [anon_sym_static] = ACTIONS(9740), + [anon_sym_volatile] = ACTIONS(9740), + [anon_sym_typedef] = ACTIONS(9740), + [anon_sym_STAR] = ACTIONS(9738), + [anon_sym_union] = ACTIONS(9740), + [anon_sym_typename] = ACTIONS(9740), + [anon_sym_private] = ACTIONS(9740), + [anon_sym_explicit] = ACTIONS(9740), + [anon_sym_short] = ACTIONS(9740), + [sym_identifier] = ACTIONS(9740), + [sym_operator_name] = ACTIONS(9738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9740), + [anon_sym_register] = ACTIONS(9740), + [anon_sym__Atomic] = ACTIONS(9740), + [anon_sym_const] = ACTIONS(9740), + [anon_sym_extern] = ACTIONS(9740), + [anon_sym_LBRACK] = ACTIONS(9740), + [anon_sym_virtual] = ACTIONS(9740), + [anon_sym_enum] = ACTIONS(9740), + [anon_sym_class] = ACTIONS(9740), + [anon_sym_constexpr] = ACTIONS(9740), + [sym_primitive_type] = ACTIONS(9740), + [anon_sym_unsigned] = ACTIONS(9740), + [anon_sym_public] = ACTIONS(9740), + [anon_sym_protected] = ACTIONS(9740), + [anon_sym_friend] = ACTIONS(9740), + [anon_sym_template] = ACTIONS(9740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9740), + [anon_sym_TILDE] = ACTIONS(9738), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(9740), + [anon_sym_AMP_AMP] = ACTIONS(9738), + [anon_sym_inline] = ACTIONS(9740), + [anon_sym_restrict] = ACTIONS(9740), }, - [4867] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10673), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4838] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10639), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4868] = { + [4839] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10673), + [anon_sym_SEMI] = ACTIONS(10639), }, - [4869] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4977), - [sym_logical_expression] = STATE(4977), - [sym_bitwise_expression] = STATE(4977), - [sym_cast_expression] = STATE(4977), - [sym_new_expression] = STATE(4977), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4977), - [sym_char_literal] = STATE(4977), - [sym_template_function] = STATE(4977), - [sym_conditional_expression] = STATE(4977), - [sym_equality_expression] = STATE(4977), - [sym_relational_expression] = STATE(4977), - [sym_delete_expression] = STATE(4977), - [sym_sizeof_expression] = STATE(4977), - [sym_parenthesized_expression] = STATE(4977), - [sym_initializer_list] = STATE(4978), - [sym_concatenated_string] = STATE(4977), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4977), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4977), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4977), - [sym_math_expression] = STATE(4977), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10675), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10677), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10677), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10675), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10677), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10677), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [4840] = { + [sym_template_function] = STATE(4948), + [sym__expression] = STATE(4948), + [sym_logical_expression] = STATE(4948), + [sym_bitwise_expression] = STATE(4948), + [sym_cast_expression] = STATE(4948), + [sym_delete_expression] = STATE(4948), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4948), + [sym_lambda_expression] = STATE(4948), + [sym_char_literal] = STATE(4948), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4948), + [sym_equality_expression] = STATE(4948), + [sym_relational_expression] = STATE(4948), + [sym_sizeof_expression] = STATE(4948), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4949), + [sym_parenthesized_expression] = STATE(4948), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4948), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4948), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4948), + [sym_math_expression] = STATE(4948), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4948), + [sym_raw_string_literal] = ACTIONS(10641), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10643), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10643), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10641), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10643), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10643), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [4870] = { - [anon_sym_LPAREN2] = ACTIONS(6356), - [anon_sym_struct] = ACTIONS(6354), - [sym_auto] = ACTIONS(6354), - [anon_sym_signed] = ACTIONS(6354), - [anon_sym_mutable] = ACTIONS(6354), - [anon_sym_long] = ACTIONS(6354), - [anon_sym_COLON_COLON] = ACTIONS(6356), - [anon_sym_using] = ACTIONS(6354), - [aux_sym_preproc_if_token2] = ACTIONS(6354), - [sym_preproc_directive] = ACTIONS(6354), - [aux_sym_preproc_if_token1] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(6354), - [anon_sym_static] = ACTIONS(6354), - [anon_sym_volatile] = ACTIONS(6354), - [anon_sym_typedef] = ACTIONS(6354), - [anon_sym_STAR] = ACTIONS(6356), - [anon_sym_union] = ACTIONS(6354), - [anon_sym_typename] = ACTIONS(6354), - [anon_sym_private] = ACTIONS(6354), - [anon_sym_explicit] = ACTIONS(6354), - [anon_sym_short] = ACTIONS(6354), - [sym_identifier] = ACTIONS(6354), - [sym_operator_name] = ACTIONS(6356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6354), - [anon_sym_register] = ACTIONS(6354), - [anon_sym__Atomic] = ACTIONS(6354), - [anon_sym_const] = ACTIONS(6354), - [anon_sym_extern] = ACTIONS(6354), - [anon_sym_virtual] = ACTIONS(6354), - [anon_sym_enum] = ACTIONS(6354), - [anon_sym_class] = ACTIONS(6354), - [anon_sym_constexpr] = ACTIONS(6354), - [sym_primitive_type] = ACTIONS(6354), - [anon_sym_unsigned] = ACTIONS(6354), - [anon_sym_public] = ACTIONS(6354), - [anon_sym_protected] = ACTIONS(6354), - [anon_sym_friend] = ACTIONS(6354), - [anon_sym_template] = ACTIONS(6354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6354), - [anon_sym_TILDE] = ACTIONS(6356), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(6354), - [anon_sym_AMP_AMP] = ACTIONS(6356), - [anon_sym_inline] = ACTIONS(6354), - [anon_sym_restrict] = ACTIONS(6354), + [4841] = { + [anon_sym_LPAREN2] = ACTIONS(5921), + [anon_sym_struct] = ACTIONS(5919), + [sym_auto] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(5919), + [anon_sym_mutable] = ACTIONS(5919), + [anon_sym_long] = ACTIONS(5919), + [anon_sym_COLON_COLON] = ACTIONS(5921), + [anon_sym_using] = ACTIONS(5919), + [aux_sym_preproc_if_token2] = ACTIONS(5919), + [sym_preproc_directive] = ACTIONS(5919), + [aux_sym_preproc_if_token1] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_static] = ACTIONS(5919), + [anon_sym_volatile] = ACTIONS(5919), + [anon_sym_typedef] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_union] = ACTIONS(5919), + [anon_sym_typename] = ACTIONS(5919), + [anon_sym_private] = ACTIONS(5919), + [anon_sym_explicit] = ACTIONS(5919), + [anon_sym_short] = ACTIONS(5919), + [sym_identifier] = ACTIONS(5919), + [sym_operator_name] = ACTIONS(5921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5919), + [anon_sym_register] = ACTIONS(5919), + [anon_sym__Atomic] = ACTIONS(5919), + [anon_sym_const] = ACTIONS(5919), + [anon_sym_extern] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_virtual] = ACTIONS(5919), + [anon_sym_enum] = ACTIONS(5919), + [anon_sym_class] = ACTIONS(5919), + [anon_sym_constexpr] = ACTIONS(5919), + [sym_primitive_type] = ACTIONS(5919), + [anon_sym_unsigned] = ACTIONS(5919), + [anon_sym_public] = ACTIONS(5919), + [anon_sym_protected] = ACTIONS(5919), + [anon_sym_friend] = ACTIONS(5919), + [anon_sym_template] = ACTIONS(5919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5919), + [anon_sym_TILDE] = ACTIONS(5921), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5921), + [anon_sym_inline] = ACTIONS(5919), + [anon_sym_restrict] = ACTIONS(5919), }, - [4871] = { - [anon_sym_LPAREN2] = ACTIONS(6363), - [anon_sym_struct] = ACTIONS(6361), - [sym_auto] = ACTIONS(6361), - [anon_sym_signed] = ACTIONS(6361), - [anon_sym_mutable] = ACTIONS(6361), - [anon_sym_long] = ACTIONS(6361), - [anon_sym_COLON_COLON] = ACTIONS(6363), - [anon_sym_using] = ACTIONS(6361), - [aux_sym_preproc_if_token2] = ACTIONS(6361), - [sym_preproc_directive] = ACTIONS(6361), - [aux_sym_preproc_if_token1] = ACTIONS(6361), - [anon_sym_AMP] = ACTIONS(6361), - [anon_sym_static] = ACTIONS(6361), - [anon_sym_volatile] = ACTIONS(6361), - [anon_sym_typedef] = ACTIONS(6361), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_union] = ACTIONS(6361), - [anon_sym_typename] = ACTIONS(6361), - [anon_sym_private] = ACTIONS(6361), - [anon_sym_explicit] = ACTIONS(6361), - [anon_sym_short] = ACTIONS(6361), - [sym_identifier] = ACTIONS(6361), - [sym_operator_name] = ACTIONS(6363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6361), - [anon_sym_register] = ACTIONS(6361), - [anon_sym__Atomic] = ACTIONS(6361), - [anon_sym_const] = ACTIONS(6361), - [anon_sym_extern] = ACTIONS(6361), - [anon_sym_virtual] = ACTIONS(6361), - [anon_sym_enum] = ACTIONS(6361), - [anon_sym_class] = ACTIONS(6361), - [anon_sym_constexpr] = ACTIONS(6361), - [sym_primitive_type] = ACTIONS(6361), - [anon_sym_unsigned] = ACTIONS(6361), - [anon_sym_public] = ACTIONS(6361), - [anon_sym_protected] = ACTIONS(6361), - [anon_sym_friend] = ACTIONS(6361), - [anon_sym_template] = ACTIONS(6361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6363), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6361), - [anon_sym_TILDE] = ACTIONS(6363), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(6361), - [anon_sym_AMP_AMP] = ACTIONS(6363), - [anon_sym_inline] = ACTIONS(6361), - [anon_sym_restrict] = ACTIONS(6361), + [4842] = { + [anon_sym_LPAREN2] = ACTIONS(5925), + [anon_sym_struct] = ACTIONS(5923), + [sym_auto] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(5923), + [anon_sym_mutable] = ACTIONS(5923), + [anon_sym_long] = ACTIONS(5923), + [anon_sym_COLON_COLON] = ACTIONS(5925), + [anon_sym_using] = ACTIONS(5923), + [aux_sym_preproc_if_token2] = ACTIONS(5923), + [sym_preproc_directive] = ACTIONS(5923), + [aux_sym_preproc_if_token1] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5923), + [anon_sym_static] = ACTIONS(5923), + [anon_sym_volatile] = ACTIONS(5923), + [anon_sym_typedef] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5925), + [anon_sym_union] = ACTIONS(5923), + [anon_sym_typename] = ACTIONS(5923), + [anon_sym_private] = ACTIONS(5923), + [anon_sym_explicit] = ACTIONS(5923), + [anon_sym_short] = ACTIONS(5923), + [sym_identifier] = ACTIONS(5923), + [sym_operator_name] = ACTIONS(5925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5923), + [anon_sym_register] = ACTIONS(5923), + [anon_sym__Atomic] = ACTIONS(5923), + [anon_sym_const] = ACTIONS(5923), + [anon_sym_extern] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_virtual] = ACTIONS(5923), + [anon_sym_enum] = ACTIONS(5923), + [anon_sym_class] = ACTIONS(5923), + [anon_sym_constexpr] = ACTIONS(5923), + [sym_primitive_type] = ACTIONS(5923), + [anon_sym_unsigned] = ACTIONS(5923), + [anon_sym_public] = ACTIONS(5923), + [anon_sym_protected] = ACTIONS(5923), + [anon_sym_friend] = ACTIONS(5923), + [anon_sym_template] = ACTIONS(5923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5923), + [anon_sym_TILDE] = ACTIONS(5925), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_inline] = ACTIONS(5923), + [anon_sym_restrict] = ACTIONS(5923), }, - [4872] = { - [aux_sym_declaration_repeat1] = STATE(2028), + [4843] = { + [aux_sym_declaration_repeat1] = STATE(2034), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(10679), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(10645), }, - [4873] = { - [anon_sym_LPAREN2] = ACTIONS(7904), - [anon_sym_struct] = ACTIONS(7902), - [sym_auto] = ACTIONS(7902), - [anon_sym_signed] = ACTIONS(7902), - [anon_sym_mutable] = ACTIONS(7902), - [anon_sym_long] = ACTIONS(7902), - [anon_sym_COLON_COLON] = ACTIONS(7904), - [anon_sym_using] = ACTIONS(7902), - [aux_sym_preproc_if_token2] = ACTIONS(7902), - [sym_preproc_directive] = ACTIONS(7902), - [aux_sym_preproc_if_token1] = ACTIONS(7902), - [anon_sym_AMP] = ACTIONS(7902), - [anon_sym_static] = ACTIONS(7902), - [anon_sym_volatile] = ACTIONS(7902), - [anon_sym_typedef] = ACTIONS(7902), - [anon_sym_STAR] = ACTIONS(7904), - [anon_sym_union] = ACTIONS(7902), - [anon_sym_typename] = ACTIONS(7902), - [anon_sym_private] = ACTIONS(7902), - [anon_sym_explicit] = ACTIONS(7902), - [anon_sym_short] = ACTIONS(7902), - [sym_identifier] = ACTIONS(7902), - [sym_operator_name] = ACTIONS(7904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7902), - [anon_sym_register] = ACTIONS(7902), - [anon_sym__Atomic] = ACTIONS(7902), - [anon_sym_const] = ACTIONS(7902), - [anon_sym_extern] = ACTIONS(7902), - [anon_sym_virtual] = ACTIONS(7902), - [anon_sym_enum] = ACTIONS(7902), - [anon_sym_class] = ACTIONS(7902), - [anon_sym_constexpr] = ACTIONS(7902), - [sym_primitive_type] = ACTIONS(7902), - [anon_sym_unsigned] = ACTIONS(7902), - [anon_sym_public] = ACTIONS(7902), - [anon_sym_protected] = ACTIONS(7902), - [anon_sym_friend] = ACTIONS(7902), - [anon_sym_template] = ACTIONS(7902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7902), - [anon_sym_TILDE] = ACTIONS(7904), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(7902), - [anon_sym_AMP_AMP] = ACTIONS(7904), - [anon_sym_inline] = ACTIONS(7902), - [anon_sym_restrict] = ACTIONS(7902), + [4844] = { + [anon_sym_LPAREN2] = ACTIONS(7885), + [anon_sym_struct] = ACTIONS(7883), + [sym_auto] = ACTIONS(7883), + [anon_sym_signed] = ACTIONS(7883), + [anon_sym_mutable] = ACTIONS(7883), + [anon_sym_long] = ACTIONS(7883), + [anon_sym_COLON_COLON] = ACTIONS(7885), + [anon_sym_using] = ACTIONS(7883), + [aux_sym_preproc_if_token2] = ACTIONS(7883), + [sym_preproc_directive] = ACTIONS(7883), + [aux_sym_preproc_if_token1] = ACTIONS(7883), + [anon_sym_AMP] = ACTIONS(7883), + [anon_sym_static] = ACTIONS(7883), + [anon_sym_volatile] = ACTIONS(7883), + [anon_sym_typedef] = ACTIONS(7883), + [anon_sym_STAR] = ACTIONS(7885), + [anon_sym_union] = ACTIONS(7883), + [anon_sym_typename] = ACTIONS(7883), + [anon_sym_private] = ACTIONS(7883), + [anon_sym_explicit] = ACTIONS(7883), + [anon_sym_short] = ACTIONS(7883), + [sym_identifier] = ACTIONS(7883), + [sym_operator_name] = ACTIONS(7885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7883), + [anon_sym_register] = ACTIONS(7883), + [anon_sym__Atomic] = ACTIONS(7883), + [anon_sym_const] = ACTIONS(7883), + [anon_sym_extern] = ACTIONS(7883), + [anon_sym_LBRACK] = ACTIONS(7883), + [anon_sym_virtual] = ACTIONS(7883), + [anon_sym_enum] = ACTIONS(7883), + [anon_sym_class] = ACTIONS(7883), + [anon_sym_constexpr] = ACTIONS(7883), + [sym_primitive_type] = ACTIONS(7883), + [anon_sym_unsigned] = ACTIONS(7883), + [anon_sym_public] = ACTIONS(7883), + [anon_sym_protected] = ACTIONS(7883), + [anon_sym_friend] = ACTIONS(7883), + [anon_sym_template] = ACTIONS(7883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7885), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7883), + [anon_sym_TILDE] = ACTIONS(7885), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7883), + [anon_sym_AMP_AMP] = ACTIONS(7885), + [anon_sym_inline] = ACTIONS(7883), + [anon_sym_restrict] = ACTIONS(7883), }, - [4874] = { - [sym_bitfield_clause] = STATE(4978), - [aux_sym_field_declaration_repeat1] = STATE(3485), - [sym_initializer_list] = STATE(4978), - [anon_sym_COLON] = ACTIONS(5122), + [4845] = { + [sym_bitfield_clause] = STATE(4949), + [sym_initializer_list] = STATE(4949), + [aux_sym_field_declaration_repeat1] = STATE(3459), + [anon_sym_COLON] = ACTIONS(5213), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(10681), - [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_EQ] = ACTIONS(10647), + [anon_sym_COMMA] = ACTIONS(5211), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(10673), + [anon_sym_SEMI] = ACTIONS(10639), }, - [4875] = { - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_struct] = ACTIONS(8329), - [sym_auto] = ACTIONS(8329), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_using] = ACTIONS(8329), - [aux_sym_preproc_else_token1] = ACTIONS(8329), - [aux_sym_preproc_if_token2] = ACTIONS(8329), - [sym_preproc_directive] = ACTIONS(8329), - [aux_sym_preproc_if_token1] = ACTIONS(8329), - [anon_sym_AMP] = ACTIONS(8329), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [anon_sym_private] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [sym_identifier] = ACTIONS(8329), - [sym_operator_name] = ACTIONS(8331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym_virtual] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_public] = ACTIONS(8329), - [anon_sym_protected] = ACTIONS(8329), - [anon_sym_friend] = ACTIONS(8329), - [anon_sym_template] = ACTIONS(8329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), - [anon_sym_TILDE] = ACTIONS(8331), - [aux_sym_preproc_elif_token1] = ACTIONS(8329), - [aux_sym_preproc_def_token1] = ACTIONS(8329), - [anon_sym_AMP_AMP] = ACTIONS(8331), - [anon_sym_inline] = ACTIONS(8329), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(8329), + [4846] = { + [anon_sym_LPAREN2] = ACTIONS(8297), + [anon_sym_struct] = ACTIONS(8295), + [sym_auto] = ACTIONS(8295), + [anon_sym_signed] = ACTIONS(8295), + [anon_sym_mutable] = ACTIONS(8295), + [anon_sym_long] = ACTIONS(8295), + [anon_sym_COLON_COLON] = ACTIONS(8297), + [anon_sym_using] = ACTIONS(8295), + [aux_sym_preproc_else_token1] = ACTIONS(8295), + [aux_sym_preproc_if_token2] = ACTIONS(8295), + [sym_preproc_directive] = ACTIONS(8295), + [aux_sym_preproc_if_token1] = ACTIONS(8295), + [anon_sym_AMP] = ACTIONS(8295), + [anon_sym_static] = ACTIONS(8295), + [anon_sym_volatile] = ACTIONS(8295), + [anon_sym_typedef] = ACTIONS(8295), + [anon_sym_STAR] = ACTIONS(8297), + [anon_sym_union] = ACTIONS(8295), + [anon_sym_typename] = ACTIONS(8295), + [anon_sym_private] = ACTIONS(8295), + [anon_sym_explicit] = ACTIONS(8295), + [anon_sym_short] = ACTIONS(8295), + [sym_identifier] = ACTIONS(8295), + [sym_operator_name] = ACTIONS(8297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8295), + [anon_sym_register] = ACTIONS(8295), + [anon_sym__Atomic] = ACTIONS(8295), + [anon_sym_const] = ACTIONS(8295), + [anon_sym_extern] = ACTIONS(8295), + [anon_sym_LBRACK] = ACTIONS(8295), + [anon_sym_virtual] = ACTIONS(8295), + [anon_sym_enum] = ACTIONS(8295), + [anon_sym_class] = ACTIONS(8295), + [anon_sym_constexpr] = ACTIONS(8295), + [sym_primitive_type] = ACTIONS(8295), + [anon_sym_unsigned] = ACTIONS(8295), + [anon_sym_public] = ACTIONS(8295), + [anon_sym_protected] = ACTIONS(8295), + [anon_sym_friend] = ACTIONS(8295), + [anon_sym_template] = ACTIONS(8295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8295), + [anon_sym_TILDE] = ACTIONS(8297), + [aux_sym_preproc_elif_token1] = ACTIONS(8295), + [aux_sym_preproc_def_token1] = ACTIONS(8295), + [anon_sym_AMP_AMP] = ACTIONS(8297), + [anon_sym_inline] = ACTIONS(8295), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(8295), }, - [4876] = { - [anon_sym_LPAREN2] = ACTIONS(10220), - [anon_sym_struct] = ACTIONS(10222), - [sym_auto] = ACTIONS(10222), - [anon_sym_signed] = ACTIONS(10222), - [anon_sym_mutable] = ACTIONS(10222), - [anon_sym_long] = ACTIONS(10222), - [anon_sym_COLON_COLON] = ACTIONS(10220), - [anon_sym_using] = ACTIONS(10222), - [aux_sym_preproc_else_token1] = ACTIONS(10222), - [aux_sym_preproc_if_token2] = ACTIONS(10222), - [sym_preproc_directive] = ACTIONS(10222), - [aux_sym_preproc_if_token1] = ACTIONS(10222), - [anon_sym_AMP] = ACTIONS(10222), - [anon_sym_static] = ACTIONS(10222), - [anon_sym_volatile] = ACTIONS(10222), - [anon_sym_typedef] = ACTIONS(10222), - [anon_sym_STAR] = ACTIONS(10220), - [anon_sym_union] = ACTIONS(10222), - [anon_sym_typename] = ACTIONS(10222), - [anon_sym_private] = ACTIONS(10222), - [anon_sym_explicit] = ACTIONS(10222), - [anon_sym_short] = ACTIONS(10222), - [sym_identifier] = ACTIONS(10222), - [sym_operator_name] = ACTIONS(10220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10222), - [anon_sym_register] = ACTIONS(10222), - [anon_sym__Atomic] = ACTIONS(10222), - [anon_sym_const] = ACTIONS(10222), - [anon_sym_extern] = ACTIONS(10222), - [anon_sym_virtual] = ACTIONS(10222), - [anon_sym_enum] = ACTIONS(10222), - [anon_sym_class] = ACTIONS(10222), - [anon_sym_constexpr] = ACTIONS(10222), - [sym_primitive_type] = ACTIONS(10222), - [anon_sym_unsigned] = ACTIONS(10222), - [anon_sym_public] = ACTIONS(10222), - [anon_sym_protected] = ACTIONS(10222), - [anon_sym_friend] = ACTIONS(10222), - [anon_sym_template] = ACTIONS(10222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10222), - [anon_sym_TILDE] = ACTIONS(10220), - [aux_sym_preproc_elif_token1] = ACTIONS(10222), - [aux_sym_preproc_def_token1] = ACTIONS(10222), - [anon_sym_AMP_AMP] = ACTIONS(10220), - [anon_sym_inline] = ACTIONS(10222), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(10222), + [4847] = { + [anon_sym_LPAREN2] = ACTIONS(10186), + [anon_sym_struct] = ACTIONS(10188), + [sym_auto] = ACTIONS(10188), + [anon_sym_signed] = ACTIONS(10188), + [anon_sym_mutable] = ACTIONS(10188), + [anon_sym_long] = ACTIONS(10188), + [anon_sym_COLON_COLON] = ACTIONS(10186), + [anon_sym_using] = ACTIONS(10188), + [aux_sym_preproc_else_token1] = ACTIONS(10188), + [aux_sym_preproc_if_token2] = ACTIONS(10188), + [sym_preproc_directive] = ACTIONS(10188), + [aux_sym_preproc_if_token1] = ACTIONS(10188), + [anon_sym_AMP] = ACTIONS(10188), + [anon_sym_static] = ACTIONS(10188), + [anon_sym_volatile] = ACTIONS(10188), + [anon_sym_typedef] = ACTIONS(10188), + [anon_sym_STAR] = ACTIONS(10186), + [anon_sym_union] = ACTIONS(10188), + [anon_sym_typename] = ACTIONS(10188), + [anon_sym_private] = ACTIONS(10188), + [anon_sym_explicit] = ACTIONS(10188), + [anon_sym_short] = ACTIONS(10188), + [sym_identifier] = ACTIONS(10188), + [sym_operator_name] = ACTIONS(10186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10188), + [anon_sym_register] = ACTIONS(10188), + [anon_sym__Atomic] = ACTIONS(10188), + [anon_sym_const] = ACTIONS(10188), + [anon_sym_extern] = ACTIONS(10188), + [anon_sym_LBRACK] = ACTIONS(10188), + [anon_sym_virtual] = ACTIONS(10188), + [anon_sym_enum] = ACTIONS(10188), + [anon_sym_class] = ACTIONS(10188), + [anon_sym_constexpr] = ACTIONS(10188), + [sym_primitive_type] = ACTIONS(10188), + [anon_sym_unsigned] = ACTIONS(10188), + [anon_sym_public] = ACTIONS(10188), + [anon_sym_protected] = ACTIONS(10188), + [anon_sym_friend] = ACTIONS(10188), + [anon_sym_template] = ACTIONS(10188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10188), + [anon_sym_TILDE] = ACTIONS(10186), + [aux_sym_preproc_elif_token1] = ACTIONS(10188), + [aux_sym_preproc_def_token1] = ACTIONS(10188), + [anon_sym_AMP_AMP] = ACTIONS(10186), + [anon_sym_inline] = ACTIONS(10188), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(10188), }, - [4877] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10683), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4848] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10649), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4878] = { + [4849] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10683), + [anon_sym_SEMI] = ACTIONS(10649), }, - [4879] = { - [anon_sym_LPAREN2] = ACTIONS(8309), - [anon_sym_struct] = ACTIONS(8307), - [sym_auto] = ACTIONS(8307), - [anon_sym_signed] = ACTIONS(8307), - [anon_sym_mutable] = ACTIONS(8307), - [anon_sym_long] = ACTIONS(8307), - [anon_sym_COLON_COLON] = ACTIONS(8309), - [anon_sym_using] = ACTIONS(8307), - [aux_sym_preproc_else_token1] = ACTIONS(8307), - [aux_sym_preproc_if_token2] = ACTIONS(8307), - [sym_preproc_directive] = ACTIONS(8307), - [aux_sym_preproc_if_token1] = ACTIONS(8307), - [anon_sym_AMP] = ACTIONS(8307), - [anon_sym_static] = ACTIONS(8307), - [anon_sym_volatile] = ACTIONS(8307), - [anon_sym_typedef] = ACTIONS(8307), - [anon_sym_STAR] = ACTIONS(8309), - [anon_sym_union] = ACTIONS(8307), - [anon_sym_typename] = ACTIONS(8307), - [anon_sym_private] = ACTIONS(8307), - [anon_sym_explicit] = ACTIONS(8307), - [anon_sym_short] = ACTIONS(8307), - [sym_identifier] = ACTIONS(8307), - [sym_operator_name] = ACTIONS(8309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8307), - [anon_sym_register] = ACTIONS(8307), - [anon_sym__Atomic] = ACTIONS(8307), - [anon_sym_const] = ACTIONS(8307), - [anon_sym_extern] = ACTIONS(8307), - [anon_sym_virtual] = ACTIONS(8307), - [anon_sym_enum] = ACTIONS(8307), - [anon_sym_class] = ACTIONS(8307), - [anon_sym_constexpr] = ACTIONS(8307), - [sym_primitive_type] = ACTIONS(8307), - [anon_sym_unsigned] = ACTIONS(8307), - [anon_sym_public] = ACTIONS(8307), - [anon_sym_protected] = ACTIONS(8307), - [anon_sym_friend] = ACTIONS(8307), - [anon_sym_template] = ACTIONS(8307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8307), - [anon_sym_TILDE] = ACTIONS(8309), - [aux_sym_preproc_elif_token1] = ACTIONS(8307), - [aux_sym_preproc_def_token1] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_inline] = ACTIONS(8307), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(8307), + [4850] = { + [anon_sym_LPAREN2] = ACTIONS(7889), + [anon_sym_struct] = ACTIONS(7887), + [sym_auto] = ACTIONS(7887), + [anon_sym_signed] = ACTIONS(7887), + [anon_sym_mutable] = ACTIONS(7887), + [anon_sym_long] = ACTIONS(7887), + [anon_sym_COLON_COLON] = ACTIONS(7889), + [anon_sym_using] = ACTIONS(7887), + [aux_sym_preproc_else_token1] = ACTIONS(7887), + [aux_sym_preproc_if_token2] = ACTIONS(7887), + [sym_preproc_directive] = ACTIONS(7887), + [aux_sym_preproc_if_token1] = ACTIONS(7887), + [anon_sym_AMP] = ACTIONS(7887), + [anon_sym_static] = ACTIONS(7887), + [anon_sym_volatile] = ACTIONS(7887), + [anon_sym_typedef] = ACTIONS(7887), + [anon_sym_STAR] = ACTIONS(7889), + [anon_sym_union] = ACTIONS(7887), + [anon_sym_typename] = ACTIONS(7887), + [anon_sym_private] = ACTIONS(7887), + [anon_sym_explicit] = ACTIONS(7887), + [anon_sym_short] = ACTIONS(7887), + [sym_identifier] = ACTIONS(7887), + [sym_operator_name] = ACTIONS(7889), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7887), + [anon_sym_register] = ACTIONS(7887), + [anon_sym__Atomic] = ACTIONS(7887), + [anon_sym_const] = ACTIONS(7887), + [anon_sym_extern] = ACTIONS(7887), + [anon_sym_LBRACK] = ACTIONS(7887), + [anon_sym_virtual] = ACTIONS(7887), + [anon_sym_enum] = ACTIONS(7887), + [anon_sym_class] = ACTIONS(7887), + [anon_sym_constexpr] = ACTIONS(7887), + [sym_primitive_type] = ACTIONS(7887), + [anon_sym_unsigned] = ACTIONS(7887), + [anon_sym_public] = ACTIONS(7887), + [anon_sym_protected] = ACTIONS(7887), + [anon_sym_friend] = ACTIONS(7887), + [anon_sym_template] = ACTIONS(7887), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7889), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7887), + [anon_sym_TILDE] = ACTIONS(7889), + [aux_sym_preproc_elif_token1] = ACTIONS(7887), + [aux_sym_preproc_def_token1] = ACTIONS(7887), + [anon_sym_AMP_AMP] = ACTIONS(7889), + [anon_sym_inline] = ACTIONS(7887), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(7887), }, - [4880] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4982), - [sym_logical_expression] = STATE(4982), - [sym_bitwise_expression] = STATE(4982), - [sym_cast_expression] = STATE(4982), - [sym_new_expression] = STATE(4982), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(4982), - [sym_char_literal] = STATE(4982), - [sym_template_function] = STATE(4982), - [sym_conditional_expression] = STATE(4982), - [sym_equality_expression] = STATE(4982), - [sym_relational_expression] = STATE(4982), - [sym_delete_expression] = STATE(4982), - [sym_sizeof_expression] = STATE(4982), - [sym_parenthesized_expression] = STATE(4982), - [sym_initializer_list] = STATE(4983), - [sym_concatenated_string] = STATE(4982), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(4982), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(4982), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(4982), - [sym_math_expression] = STATE(4982), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10685), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10687), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10687), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10685), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10687), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10687), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [4851] = { + [sym_template_function] = STATE(4953), + [sym__expression] = STATE(4953), + [sym_logical_expression] = STATE(4953), + [sym_bitwise_expression] = STATE(4953), + [sym_cast_expression] = STATE(4953), + [sym_delete_expression] = STATE(4953), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4953), + [sym_lambda_expression] = STATE(4953), + [sym_char_literal] = STATE(4953), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4953), + [sym_equality_expression] = STATE(4953), + [sym_relational_expression] = STATE(4953), + [sym_sizeof_expression] = STATE(4953), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(4954), + [sym_parenthesized_expression] = STATE(4953), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(4953), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4953), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4953), + [sym_math_expression] = STATE(4953), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4953), + [sym_raw_string_literal] = ACTIONS(10651), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10653), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10653), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10651), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10653), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10653), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [4881] = { - [sym_type_qualifier] = STATE(4881), - [aux_sym_type_definition_repeat1] = STATE(4881), + [4852] = { + [anon_sym_LPAREN2] = ACTIONS(10655), + [anon_sym_struct] = ACTIONS(10657), + [sym_auto] = ACTIONS(10657), + [anon_sym_signed] = ACTIONS(10657), + [anon_sym_mutable] = ACTIONS(10657), + [anon_sym_long] = ACTIONS(10657), + [anon_sym_COLON_COLON] = ACTIONS(10655), + [anon_sym_using] = ACTIONS(10657), + [sym_preproc_directive] = ACTIONS(10657), + [aux_sym_preproc_if_token1] = ACTIONS(10657), + [anon_sym_AMP] = ACTIONS(10657), + [anon_sym_static] = ACTIONS(10657), + [anon_sym_volatile] = ACTIONS(10657), + [anon_sym_RBRACE] = ACTIONS(10655), + [anon_sym_typedef] = ACTIONS(10657), + [anon_sym_STAR] = ACTIONS(10655), + [anon_sym_union] = ACTIONS(10657), + [anon_sym_typename] = ACTIONS(10657), + [anon_sym_private] = ACTIONS(10657), + [anon_sym_explicit] = ACTIONS(10657), + [anon_sym_short] = ACTIONS(10657), + [sym_identifier] = ACTIONS(10657), + [sym_operator_name] = ACTIONS(10655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10657), + [anon_sym_register] = ACTIONS(10657), + [anon_sym__Atomic] = ACTIONS(10657), + [anon_sym_const] = ACTIONS(10657), + [anon_sym_extern] = ACTIONS(10657), + [anon_sym_LBRACK] = ACTIONS(10657), + [anon_sym_virtual] = ACTIONS(10657), + [anon_sym_enum] = ACTIONS(10657), + [anon_sym_class] = ACTIONS(10657), + [anon_sym_constexpr] = ACTIONS(10657), + [sym_primitive_type] = ACTIONS(10657), + [anon_sym_unsigned] = ACTIONS(10657), + [anon_sym_public] = ACTIONS(10657), + [anon_sym_protected] = ACTIONS(10657), + [anon_sym_friend] = ACTIONS(10657), + [anon_sym_template] = ACTIONS(10657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10657), + [anon_sym_TILDE] = ACTIONS(10655), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(10657), + [anon_sym_AMP_AMP] = ACTIONS(10655), + [anon_sym_inline] = ACTIONS(10657), + [anon_sym_restrict] = ACTIONS(10657), + }, + [4853] = { + [aux_sym_type_definition_repeat1] = STATE(4853), + [sym_type_qualifier] = STATE(4853), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(9979), + [anon_sym_mutable] = ACTIONS(9945), [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(9979), - [anon_sym_const] = ACTIONS(9982), + [anon_sym__Atomic] = ACTIONS(9945), + [anon_sym_const] = ACTIONS(9948), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(9979), + [anon_sym_constexpr] = ACTIONS(9945), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(9979), + [anon_sym_volatile] = ACTIONS(9945), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), [anon_sym_SEMI] = ACTIONS(2106), [anon_sym_COLON] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(9979), + [anon_sym_explicit] = ACTIONS(9945), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_DASH_GT] = ACTIONS(2106), [anon_sym_EQ] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(9979), + [anon_sym_restrict] = ACTIONS(9945), [anon_sym_LBRACE] = ACTIONS(2106), }, - [4882] = { - [sym_parameter_list] = STATE(4748), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym_COMMA] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_SEMI] = ACTIONS(7275), - [anon_sym_COLON] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), - [anon_sym_LBRACE] = ACTIONS(7275), - }, - [4883] = { - [sym_type_qualifier] = STATE(4883), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4883), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(10689), - [anon_sym_mutable] = ACTIONS(9990), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym__Atomic] = ACTIONS(9990), - [anon_sym_const] = ACTIONS(9993), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(9990), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(9990), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_SEMI] = ACTIONS(6399), - [anon_sym_COLON] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(9990), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(9990), - [anon_sym_LBRACE] = ACTIONS(6399), + [4854] = { + [sym_parameter_list] = STATE(4721), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_SEMI] = ACTIONS(7256), + [anon_sym_COLON] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym_LBRACE] = ACTIONS(7256), }, - [4884] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4883), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4883), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(10517), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_SEMI] = ACTIONS(6395), - [anon_sym_COLON] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(7453), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(6395), + [4855] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4855), + [sym_type_qualifier] = STATE(4855), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(10659), + [anon_sym_mutable] = ACTIONS(9956), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym__Atomic] = ACTIONS(9956), + [anon_sym_const] = ACTIONS(9959), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(9956), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(9956), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(6087), + [anon_sym_COLON] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(9956), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(9956), + [anon_sym_LBRACE] = ACTIONS(6087), }, - [4885] = { - [anon_sym_LPAREN2] = ACTIONS(10692), - [anon_sym_struct] = ACTIONS(10694), - [sym_auto] = ACTIONS(10694), - [anon_sym_signed] = ACTIONS(10694), - [anon_sym_mutable] = ACTIONS(10694), - [anon_sym_long] = ACTIONS(10694), - [anon_sym_COLON_COLON] = ACTIONS(10692), - [anon_sym_using] = ACTIONS(10694), - [sym_preproc_directive] = ACTIONS(10694), - [aux_sym_preproc_if_token1] = ACTIONS(10694), - [anon_sym_AMP] = ACTIONS(10694), - [anon_sym_static] = ACTIONS(10694), - [anon_sym_volatile] = ACTIONS(10694), - [anon_sym_RBRACE] = ACTIONS(10692), - [anon_sym_typedef] = ACTIONS(10694), - [anon_sym_STAR] = ACTIONS(10692), - [anon_sym_union] = ACTIONS(10694), - [anon_sym_typename] = ACTIONS(10694), - [anon_sym_private] = ACTIONS(10694), - [anon_sym_explicit] = ACTIONS(10694), - [anon_sym_short] = ACTIONS(10694), - [sym_identifier] = ACTIONS(10694), - [sym_operator_name] = ACTIONS(10692), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10694), - [anon_sym_register] = ACTIONS(10694), - [anon_sym__Atomic] = ACTIONS(10694), - [anon_sym_const] = ACTIONS(10694), - [anon_sym_extern] = ACTIONS(10694), - [anon_sym_virtual] = ACTIONS(10694), - [anon_sym_enum] = ACTIONS(10694), - [anon_sym_class] = ACTIONS(10694), - [anon_sym_constexpr] = ACTIONS(10694), - [sym_primitive_type] = ACTIONS(10694), - [anon_sym_unsigned] = ACTIONS(10694), - [anon_sym_public] = ACTIONS(10694), - [anon_sym_protected] = ACTIONS(10694), - [anon_sym_friend] = ACTIONS(10694), - [anon_sym_template] = ACTIONS(10694), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10694), - [anon_sym_TILDE] = ACTIONS(10692), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(10694), - [anon_sym_AMP_AMP] = ACTIONS(10692), - [anon_sym_inline] = ACTIONS(10694), - [anon_sym_restrict] = ACTIONS(10694), + [4856] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4855), + [sym_type_qualifier] = STATE(4855), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(10485), + [anon_sym_mutable] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6098), + [anon_sym_COLON] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1905), + [anon_sym_DASH_GT] = ACTIONS(7438), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_restrict] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(6098), }, - [4886] = { - [anon_sym_DASH] = ACTIONS(10696), - [sym_raw_string_literal] = ACTIONS(10698), - [anon_sym_else] = ACTIONS(10696), - [sym_true] = ACTIONS(10696), - [anon_sym_mutable] = ACTIONS(10696), - [sym_null] = ACTIONS(10696), - [anon_sym_break] = ACTIONS(10696), - [anon_sym_BANG] = ACTIONS(10698), - [anon_sym_sizeof] = ACTIONS(10696), - [anon_sym_volatile] = ACTIONS(10696), - [anon_sym_PLUS] = ACTIONS(10696), - [anon_sym_typedef] = ACTIONS(10696), - [anon_sym_switch] = ACTIONS(10696), - [anon_sym_explicit] = ACTIONS(10696), - [sym_identifier] = ACTIONS(10696), - [anon_sym_delete] = ACTIONS(10696), - [anon_sym_continue] = ACTIONS(10696), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10696), - [anon_sym__Atomic] = ACTIONS(10696), - [sym_number_literal] = ACTIONS(10698), - [anon_sym_extern] = ACTIONS(10696), - [anon_sym_enum] = ACTIONS(10696), - [anon_sym_constexpr] = ACTIONS(10696), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10698), - [anon_sym_namespace] = ACTIONS(10696), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10696), - [anon_sym_SQUOTE] = ACTIONS(10698), - [anon_sym_LBRACE] = ACTIONS(10698), - [anon_sym_DASH_DASH] = ACTIONS(10698), - [anon_sym_LPAREN2] = ACTIONS(10698), - [anon_sym_struct] = ACTIONS(10696), - [sym_auto] = ACTIONS(10696), - [anon_sym_signed] = ACTIONS(10696), - [anon_sym_long] = ACTIONS(10696), - [anon_sym_COLON_COLON] = ACTIONS(10698), - [anon_sym_using] = ACTIONS(10696), - [sym_preproc_directive] = ACTIONS(10696), - [aux_sym_preproc_if_token1] = ACTIONS(10696), - [anon_sym_AMP] = ACTIONS(10696), - [anon_sym_static] = ACTIONS(10696), - [anon_sym_RBRACE] = ACTIONS(10698), - [anon_sym_STAR] = ACTIONS(10698), - [anon_sym_union] = ACTIONS(10696), - [anon_sym_typename] = ACTIONS(10696), - [anon_sym_short] = ACTIONS(10696), - [anon_sym_new] = ACTIONS(10696), - [anon_sym_goto] = ACTIONS(10696), - [sym_operator_name] = ACTIONS(10698), - [anon_sym_while] = ACTIONS(10696), - [anon_sym_try] = ACTIONS(10696), - [anon_sym_for] = ACTIONS(10696), - [aux_sym_preproc_include_token1] = ACTIONS(10696), - [anon_sym_register] = ACTIONS(10696), - [anon_sym_DQUOTE] = ACTIONS(10698), - [anon_sym_const] = ACTIONS(10696), - [anon_sym_LBRACK] = ACTIONS(10696), - [anon_sym_class] = ACTIONS(10696), - [anon_sym_if] = ACTIONS(10696), - [sym_primitive_type] = ACTIONS(10696), - [sym_false] = ACTIONS(10696), - [sym_nullptr] = ACTIONS(10696), - [anon_sym_do] = ACTIONS(10696), - [anon_sym_template] = ACTIONS(10696), - [anon_sym_return] = ACTIONS(10696), - [anon_sym_TILDE] = ACTIONS(10698), - [anon_sym_SEMI] = ACTIONS(10698), - [ts_builtin_sym_end] = ACTIONS(10698), - [aux_sym_preproc_def_token1] = ACTIONS(10696), - [anon_sym_AMP_AMP] = ACTIONS(10698), - [anon_sym_inline] = ACTIONS(10696), - [anon_sym_PLUS_PLUS] = ACTIONS(10698), - [anon_sym_restrict] = ACTIONS(10696), + [4857] = { + [anon_sym_DASH] = ACTIONS(10662), + [sym_raw_string_literal] = ACTIONS(10664), + [anon_sym_else] = ACTIONS(10662), + [sym_true] = ACTIONS(10662), + [anon_sym_mutable] = ACTIONS(10662), + [sym_null] = ACTIONS(10662), + [anon_sym_break] = ACTIONS(10662), + [anon_sym_BANG] = ACTIONS(10664), + [anon_sym_sizeof] = ACTIONS(10662), + [anon_sym_volatile] = ACTIONS(10662), + [anon_sym_PLUS] = ACTIONS(10662), + [anon_sym_typedef] = ACTIONS(10662), + [anon_sym_switch] = ACTIONS(10662), + [anon_sym_explicit] = ACTIONS(10662), + [sym_identifier] = ACTIONS(10662), + [anon_sym_delete] = ACTIONS(10662), + [anon_sym_continue] = ACTIONS(10662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10662), + [anon_sym__Atomic] = ACTIONS(10662), + [sym_number_literal] = ACTIONS(10664), + [anon_sym_extern] = ACTIONS(10662), + [anon_sym_enum] = ACTIONS(10662), + [anon_sym_constexpr] = ACTIONS(10662), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10664), + [anon_sym_namespace] = ACTIONS(10662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10662), + [anon_sym_SQUOTE] = ACTIONS(10664), + [anon_sym_LBRACE] = ACTIONS(10664), + [anon_sym_DASH_DASH] = ACTIONS(10664), + [anon_sym_LPAREN2] = ACTIONS(10664), + [anon_sym_struct] = ACTIONS(10662), + [sym_auto] = ACTIONS(10662), + [anon_sym_signed] = ACTIONS(10662), + [anon_sym_long] = ACTIONS(10662), + [anon_sym_COLON_COLON] = ACTIONS(10664), + [anon_sym_using] = ACTIONS(10662), + [sym_preproc_directive] = ACTIONS(10662), + [aux_sym_preproc_if_token1] = ACTIONS(10662), + [anon_sym_AMP] = ACTIONS(10662), + [anon_sym_static] = ACTIONS(10662), + [anon_sym_RBRACE] = ACTIONS(10664), + [anon_sym_STAR] = ACTIONS(10664), + [anon_sym_union] = ACTIONS(10662), + [anon_sym_typename] = ACTIONS(10662), + [anon_sym_short] = ACTIONS(10662), + [anon_sym_new] = ACTIONS(10662), + [anon_sym_goto] = ACTIONS(10662), + [sym_operator_name] = ACTIONS(10664), + [anon_sym_while] = ACTIONS(10662), + [anon_sym_try] = ACTIONS(10662), + [anon_sym_for] = ACTIONS(10662), + [aux_sym_preproc_include_token1] = ACTIONS(10662), + [anon_sym_register] = ACTIONS(10662), + [anon_sym_DQUOTE] = ACTIONS(10664), + [anon_sym_const] = ACTIONS(10662), + [anon_sym_LBRACK] = ACTIONS(10662), + [anon_sym_class] = ACTIONS(10662), + [anon_sym_if] = ACTIONS(10662), + [sym_primitive_type] = ACTIONS(10662), + [sym_false] = ACTIONS(10662), + [sym_nullptr] = ACTIONS(10662), + [anon_sym_do] = ACTIONS(10662), + [anon_sym_template] = ACTIONS(10662), + [anon_sym_return] = ACTIONS(10662), + [anon_sym_TILDE] = ACTIONS(10664), + [anon_sym_SEMI] = ACTIONS(10664), + [ts_builtin_sym_end] = ACTIONS(10664), + [aux_sym_preproc_def_token1] = ACTIONS(10662), + [anon_sym_AMP_AMP] = ACTIONS(10664), + [anon_sym_inline] = ACTIONS(10662), + [anon_sym_PLUS_PLUS] = ACTIONS(10664), + [anon_sym_restrict] = ACTIONS(10662), }, - [4887] = { - [sym_do_statement] = STATE(4153), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4858] = { + [sym_do_statement] = STATE(4123), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4153), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4153), - [sym_if_statement] = STATE(4153), - [sym_switch_statement] = STATE(4153), - [sym_for_statement] = STATE(4153), - [sym_return_statement] = STATE(4153), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4123), + [sym_try_statement] = STATE(4123), + [sym_if_statement] = STATE(4123), + [sym_switch_statement] = STATE(4123), + [sym_for_statement] = STATE(4123), + [sym_return_statement] = STATE(4123), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4153), - [sym_break_statement] = STATE(4153), - [sym_continue_statement] = STATE(4153), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4123), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4153), - [sym_labeled_statement] = STATE(4153), - [sym_expression_statement] = STATE(4153), - [sym_while_statement] = STATE(4153), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4123), + [sym_for_range_loop] = STATE(4123), + [sym_compound_statement] = STATE(4123), + [sym_labeled_statement] = STATE(4123), + [sym_expression_statement] = STATE(4123), + [sym_while_statement] = STATE(4123), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -197855,18 +197304,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -197879,145 +197328,145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4888] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10700), + [4859] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10666), [sym_comment] = ACTIONS(3), }, - [4889] = { - [aux_sym_for_statement_repeat1] = STATE(4985), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10700), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4860] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4956), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10666), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4890] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4986), - [sym_logical_expression] = STATE(4986), - [sym_bitwise_expression] = STATE(4986), - [sym_cast_expression] = STATE(4986), - [sym_new_expression] = STATE(4986), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4986), - [sym_char_literal] = STATE(4986), - [sym_template_function] = STATE(4986), - [sym_conditional_expression] = STATE(4986), - [sym_equality_expression] = STATE(4986), - [sym_relational_expression] = STATE(4986), - [sym_delete_expression] = STATE(4986), - [sym_sizeof_expression] = STATE(4986), - [sym_parenthesized_expression] = STATE(4986), - [sym_lambda_expression] = STATE(4986), - [sym_concatenated_string] = STATE(4986), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4986), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4986), - [sym_math_expression] = STATE(4986), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), + [4861] = { + [sym_template_function] = STATE(4957), + [sym__expression] = STATE(4957), + [sym_logical_expression] = STATE(4957), + [sym_bitwise_expression] = STATE(4957), + [sym_cast_expression] = STATE(4957), + [sym_delete_expression] = STATE(4957), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4957), + [sym_lambda_expression] = STATE(4957), + [sym_char_literal] = STATE(4957), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4957), + [sym_equality_expression] = STATE(4957), + [sym_relational_expression] = STATE(4957), + [sym_sizeof_expression] = STATE(4957), + [sym_subscript_expression] = STATE(150), [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10702), + [sym_parenthesized_expression] = STATE(4957), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4957), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4957), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4957), + [sym_math_expression] = STATE(4957), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4957), + [sym_raw_string_literal] = ACTIONS(10668), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10704), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10704), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10670), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10670), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10702), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10668), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10704), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10704), + [sym_false] = ACTIONS(10670), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10670), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10700), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10666), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4891] = { - [sym_do_statement] = STATE(4159), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4862] = { + [sym_do_statement] = STATE(4129), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4159), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4159), - [sym_if_statement] = STATE(4159), - [sym_switch_statement] = STATE(4159), - [sym_for_statement] = STATE(4159), - [sym_return_statement] = STATE(4159), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4129), + [sym_try_statement] = STATE(4129), + [sym_if_statement] = STATE(4129), + [sym_switch_statement] = STATE(4129), + [sym_for_statement] = STATE(4129), + [sym_return_statement] = STATE(4129), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4159), - [sym_break_statement] = STATE(4159), - [sym_continue_statement] = STATE(4159), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4129), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4159), - [sym_labeled_statement] = STATE(4159), - [sym_expression_statement] = STATE(4159), - [sym_while_statement] = STATE(4159), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4129), + [sym_for_range_loop] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_labeled_statement] = STATE(4129), + [sym_expression_statement] = STATE(4129), + [sym_while_statement] = STATE(4129), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -198031,18 +197480,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -198055,51 +197504,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4892] = { - [sym_do_statement] = STATE(4210), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4863] = { + [sym_do_statement] = STATE(4180), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4210), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4210), - [sym_if_statement] = STATE(4210), - [sym_switch_statement] = STATE(4210), - [sym_for_statement] = STATE(4210), - [sym_return_statement] = STATE(4210), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4180), + [sym_try_statement] = STATE(4180), + [sym_if_statement] = STATE(4180), + [sym_switch_statement] = STATE(4180), + [sym_for_statement] = STATE(4180), + [sym_return_statement] = STATE(4180), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4210), - [sym_break_statement] = STATE(4210), - [sym_continue_statement] = STATE(4210), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4180), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4210), - [sym_labeled_statement] = STATE(4210), - [sym_expression_statement] = STATE(4210), - [sym_while_statement] = STATE(4210), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4180), + [sym_for_range_loop] = STATE(4180), + [sym_compound_statement] = STATE(4180), + [sym_labeled_statement] = STATE(4180), + [sym_expression_statement] = STATE(4180), + [sym_while_statement] = STATE(4180), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -198113,18 +197562,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -198137,3549 +197586,3549 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4893] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(10706), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_namespace] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_using] = ACTIONS(9003), - [sym_preproc_directive] = ACTIONS(9003), - [aux_sym_preproc_if_token1] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9003), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [sym_operator_name] = ACTIONS(9005), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [aux_sym_preproc_include_token1] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_template] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [ts_builtin_sym_end] = ACTIONS(9005), - [aux_sym_preproc_def_token1] = ACTIONS(9003), - [anon_sym_AMP_AMP] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), + [4864] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(10672), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_namespace] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_using] = ACTIONS(8967), + [sym_preproc_directive] = ACTIONS(8967), + [aux_sym_preproc_if_token1] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8967), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [sym_operator_name] = ACTIONS(8969), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [aux_sym_preproc_include_token1] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_template] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [ts_builtin_sym_end] = ACTIONS(8969), + [aux_sym_preproc_def_token1] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), }, - [4894] = { - [anon_sym_else] = ACTIONS(10525), - [anon_sym_while] = ACTIONS(10525), + [4865] = { + [anon_sym_else] = ACTIONS(10491), + [anon_sym_while] = ACTIONS(10491), [sym_comment] = ACTIONS(3), }, - [4895] = { - [sym_do_statement] = STATE(4988), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4866] = { + [sym_do_statement] = STATE(4959), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4988), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4988), - [sym_if_statement] = STATE(4988), - [sym_switch_statement] = STATE(4988), - [sym_for_statement] = STATE(4988), - [sym_return_statement] = STATE(4988), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), - [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4988), - [sym_break_statement] = STATE(4988), - [sym_continue_statement] = STATE(4988), - [sym_assignment_expression] = STATE(269), + [sym_goto_statement] = STATE(4959), + [sym_try_statement] = STATE(4959), + [sym_if_statement] = STATE(4959), + [sym_switch_statement] = STATE(4959), + [sym_for_statement] = STATE(4959), + [sym_return_statement] = STATE(4959), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), + [sym_subscript_expression] = STATE(47), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4959), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4988), - [sym_labeled_statement] = STATE(4988), - [sym_expression_statement] = STATE(4988), - [sym_while_statement] = STATE(4988), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4959), + [sym_for_range_loop] = STATE(4959), + [sym_compound_statement] = STATE(4959), + [sym_labeled_statement] = STATE(4959), + [sym_expression_statement] = STATE(4959), + [sym_while_statement] = STATE(4959), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_while] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(442), + [anon_sym_for] = ACTIONS(444), + [anon_sym_while] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4896] = { - [sym_do_statement] = STATE(4212), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4867] = { + [sym_do_statement] = STATE(4182), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4212), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4212), - [sym_if_statement] = STATE(4212), - [sym_switch_statement] = STATE(4212), - [sym_for_statement] = STATE(4212), - [sym_return_statement] = STATE(4212), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4182), + [sym_try_statement] = STATE(4182), + [sym_if_statement] = STATE(4182), + [sym_switch_statement] = STATE(4182), + [sym_for_statement] = STATE(4182), + [sym_return_statement] = STATE(4182), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4212), - [sym_break_statement] = STATE(4212), - [sym_continue_statement] = STATE(4212), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4182), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4212), - [sym_labeled_statement] = STATE(4212), - [sym_expression_statement] = STATE(4212), - [sym_while_statement] = STATE(4212), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4182), + [sym_for_range_loop] = STATE(4182), + [sym_compound_statement] = STATE(4182), + [sym_labeled_statement] = STATE(4182), + [sym_expression_statement] = STATE(4182), + [sym_while_statement] = STATE(4182), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4897] = { - [aux_sym_for_statement_repeat1] = STATE(4990), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10708), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4868] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4961), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10674), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4898] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(4991), - [sym_logical_expression] = STATE(4991), - [sym_bitwise_expression] = STATE(4991), - [sym_cast_expression] = STATE(4991), - [sym_new_expression] = STATE(4991), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(4991), - [sym_char_literal] = STATE(4991), - [sym_template_function] = STATE(4991), - [sym_conditional_expression] = STATE(4991), - [sym_equality_expression] = STATE(4991), - [sym_relational_expression] = STATE(4991), - [sym_delete_expression] = STATE(4991), - [sym_sizeof_expression] = STATE(4991), - [sym_parenthesized_expression] = STATE(4991), - [sym_lambda_expression] = STATE(4991), - [sym_concatenated_string] = STATE(4991), - [sym_string_literal] = STATE(151), + [4869] = { + [sym_template_function] = STATE(4962), + [sym__expression] = STATE(4962), + [sym_logical_expression] = STATE(4962), + [sym_bitwise_expression] = STATE(4962), + [sym_cast_expression] = STATE(4962), + [sym_delete_expression] = STATE(4962), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4962), + [sym_lambda_expression] = STATE(4962), + [sym_char_literal] = STATE(4962), [sym_scoped_identifier] = STATE(73), [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(4991), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(4991), - [sym_math_expression] = STATE(4991), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), + [sym_conditional_expression] = STATE(4962), + [sym_equality_expression] = STATE(4962), + [sym_relational_expression] = STATE(4962), + [sym_sizeof_expression] = STATE(4962), + [sym_subscript_expression] = STATE(150), [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10710), + [sym_parenthesized_expression] = STATE(4962), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4962), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4962), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4962), + [sym_math_expression] = STATE(4962), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4962), + [sym_raw_string_literal] = ACTIONS(10676), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10712), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10712), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10678), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10678), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10710), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10676), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10712), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10712), + [sym_false] = ACTIONS(10678), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10678), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10708), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10674), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4899] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10714), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4870] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10680), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4900] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10716), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4871] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10682), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4901] = { + [4872] = { [sym_comment] = ACTIONS(3), - [anon_sym_else] = ACTIONS(10718), - [anon_sym_while] = ACTIONS(7772), + [anon_sym_else] = ACTIONS(10684), + [anon_sym_while] = ACTIONS(7753), }, - [4902] = { - [sym_do_statement] = STATE(4995), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4873] = { + [sym_do_statement] = STATE(4966), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4995), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4995), - [sym_if_statement] = STATE(4995), - [sym_switch_statement] = STATE(4995), - [sym_for_statement] = STATE(4995), - [sym_return_statement] = STATE(4995), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), - [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4995), - [sym_break_statement] = STATE(4995), - [sym_continue_statement] = STATE(4995), - [sym_assignment_expression] = STATE(269), + [sym_goto_statement] = STATE(4966), + [sym_try_statement] = STATE(4966), + [sym_if_statement] = STATE(4966), + [sym_switch_statement] = STATE(4966), + [sym_for_statement] = STATE(4966), + [sym_return_statement] = STATE(4966), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), + [sym_subscript_expression] = STATE(47), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4966), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4995), - [sym_labeled_statement] = STATE(4995), - [sym_expression_statement] = STATE(4995), - [sym_while_statement] = STATE(4995), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4966), + [sym_for_range_loop] = STATE(4966), + [sym_compound_statement] = STATE(4966), + [sym_labeled_statement] = STATE(4966), + [sym_expression_statement] = STATE(4966), + [sym_while_statement] = STATE(4966), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4903] = { - [sym_parameter_list] = STATE(4907), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_GT2] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), + [4874] = { + [sym_parameter_list] = STATE(4878), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_GT2] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), }, - [4904] = { - [sym_abstract_array_declarator] = STATE(4997), - [sym_parameter_list] = STATE(4775), - [sym_abstract_reference_declarator] = STATE(4997), - [sym_abstract_function_declarator] = STATE(4997), - [aux_sym_type_definition_repeat1] = STATE(4996), - [sym_abstract_pointer_declarator] = STATE(4997), - [sym_type_qualifier] = STATE(4996), - [sym__abstract_declarator] = STATE(4997), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(1062), + [4875] = { + [sym_abstract_reference_declarator] = STATE(4968), + [aux_sym_type_definition_repeat1] = STATE(4967), + [sym_abstract_array_declarator] = STATE(4968), + [sym_parameter_list] = STATE(4746), + [sym_abstract_function_declarator] = STATE(4968), + [sym_abstract_pointer_declarator] = STATE(4968), + [sym_type_qualifier] = STATE(4967), + [sym__abstract_declarator] = STATE(4968), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(10299), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(10301), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(10303), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(10265), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(10267), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(10269), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(1070), }, - [4905] = { - [sym_parameter_list] = STATE(4907), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_GT2] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), + [4876] = { + [sym_parameter_list] = STATE(4878), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_GT2] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), }, - [4906] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4998), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4998), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10720), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4877] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4969), + [sym_type_qualifier] = STATE(4969), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10686), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(9037), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(9001), + [anon_sym_restrict] = ACTIONS(1070), }, - [4907] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(4999), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4999), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10722), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4878] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4970), + [sym_type_qualifier] = STATE(4970), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10688), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(3838), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(9037), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(9001), + [anon_sym_restrict] = ACTIONS(1070), }, - [4908] = { - [sym_type_qualifier] = STATE(4908), - [aux_sym_type_definition_repeat1] = STATE(4908), + [4879] = { + [aux_sym_type_definition_repeat1] = STATE(4879), + [sym_type_qualifier] = STATE(4879), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(4989), [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_const] = ACTIONS(2103), [anon_sym_GT2] = ACTIONS(2106), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(4989), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), + [anon_sym_explicit] = ACTIONS(4989), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_DASH_GT] = ACTIONS(2106), [anon_sym_EQ] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(4989), }, - [4909] = { - [sym_parameter_list] = STATE(4781), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym_COMMA] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_GT2] = ACTIONS(7275), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), + [4880] = { + [sym_parameter_list] = STATE(4752), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_GT2] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), }, - [4910] = { - [sym_type_qualifier] = STATE(4910), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4910), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(10724), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_GT2] = ACTIONS(6399), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), + [4881] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4881), + [sym_type_qualifier] = STATE(4881), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(10690), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_GT2] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), }, - [4911] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4910), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4910), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(10564), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(1062), + [4882] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4881), + [sym_type_qualifier] = STATE(4881), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(10530), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(6395), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(7847), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(7828), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_restrict] = ACTIONS(1070), }, - [4912] = { - [sym_parameter_list] = STATE(4916), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4989), - [sym_noexcept] = ACTIONS(4989), - [anon_sym_mutable] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym__Atomic] = ACTIONS(4989), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4989), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_explicit] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_restrict] = ACTIONS(4989), + [4883] = { + [sym_parameter_list] = STATE(4887), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4985), + [sym_noexcept] = ACTIONS(4985), + [anon_sym_mutable] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym__Atomic] = ACTIONS(4985), + [anon_sym_const] = ACTIONS(9145), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4985), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_explicit] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_restrict] = ACTIONS(4985), }, - [4913] = { - [sym_abstract_array_declarator] = STATE(5001), - [sym_parameter_list] = STATE(4785), - [sym_abstract_reference_declarator] = STATE(5001), - [sym_abstract_function_declarator] = STATE(5001), - [aux_sym_type_definition_repeat1] = STATE(5000), - [sym_abstract_pointer_declarator] = STATE(5001), - [sym_type_qualifier] = STATE(5000), - [sym__abstract_declarator] = STATE(5001), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(1062), + [4884] = { + [sym_abstract_reference_declarator] = STATE(4972), + [aux_sym_type_definition_repeat1] = STATE(4971), + [sym_abstract_array_declarator] = STATE(4972), + [sym_parameter_list] = STATE(4756), + [sym_abstract_function_declarator] = STATE(4972), + [sym_abstract_pointer_declarator] = STATE(4972), + [sym_type_qualifier] = STATE(4971), + [sym__abstract_declarator] = STATE(4972), + [anon_sym_LPAREN2] = ACTIONS(536), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_constexpr] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(10325), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(10327), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(10329), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_constexpr] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(10287), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(10289), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_AMP_AMP] = ACTIONS(10291), + [anon_sym_restrict] = ACTIONS(1070), }, - [4914] = { - [sym_parameter_list] = STATE(4916), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(4991), - [sym_noexcept] = ACTIONS(4991), - [anon_sym_mutable] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym__Atomic] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(9176), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(4991), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_restrict] = ACTIONS(4991), + [4885] = { + [sym_parameter_list] = STATE(4887), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(4987), + [sym_noexcept] = ACTIONS(4987), + [anon_sym_mutable] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym__Atomic] = ACTIONS(4987), + [anon_sym_const] = ACTIONS(9147), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(4987), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_explicit] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_restrict] = ACTIONS(4987), }, - [4915] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(5002), - [aux_sym_abstract_function_declarator_repeat1] = STATE(5002), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10727), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4886] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4973), + [sym_type_qualifier] = STATE(4973), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10693), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(9153), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(9043), + [anon_sym_restrict] = ACTIONS(1070), }, - [4916] = { - [sym_trailing_return_type] = STATE(2042), - [sym_type_qualifier] = STATE(5003), - [aux_sym_abstract_function_declarator_repeat1] = STATE(5003), - [anon_sym_LPAREN2] = ACTIONS(4115), - [anon_sym_final] = ACTIONS(4115), - [sym_noexcept] = ACTIONS(10729), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(1062), + [4887] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4974), + [sym_type_qualifier] = STATE(4974), + [sym_trailing_return_type] = STATE(1934), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_final] = ACTIONS(3838), + [sym_noexcept] = ACTIONS(10695), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_DASH_GT] = ACTIONS(9153), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(3838), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_DASH_GT] = ACTIONS(9043), + [anon_sym_restrict] = ACTIONS(1070), }, - [4917] = { - [sym_type_qualifier] = STATE(4917), - [aux_sym_type_definition_repeat1] = STATE(4917), + [4888] = { + [aux_sym_type_definition_repeat1] = STATE(4888), + [sym_type_qualifier] = STATE(4888), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(4989), [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_const] = ACTIONS(2103), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(4989), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), + [anon_sym_explicit] = ACTIONS(4989), [anon_sym_RPAREN] = ACTIONS(2106), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_EQ] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(4989), [anon_sym_DASH_GT] = ACTIONS(2106), }, - [4918] = { - [sym_parameter_list] = STATE(4791), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym_COMMA] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_RPAREN] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), + [4889] = { + [sym_parameter_list] = STATE(4762), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), }, - [4919] = { - [sym_type_qualifier] = STATE(4919), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4919), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(10731), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), + [4890] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4890), + [sym_type_qualifier] = STATE(4890), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(10697), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), }, - [4920] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4919), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4919), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(10573), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(1062), + [4891] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4890), + [sym_type_qualifier] = STATE(4890), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(10539), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_DASH_GT] = ACTIONS(8165), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(7919), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_restrict] = ACTIONS(1070), }, - [4921] = { - [anon_sym_DASH] = ACTIONS(8329), - [sym_raw_string_literal] = ACTIONS(8331), - [sym_true] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [sym_null] = ACTIONS(8329), - [anon_sym_break] = ACTIONS(8329), - [anon_sym_BANG] = ACTIONS(8331), - [anon_sym_sizeof] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_PLUS] = ACTIONS(8329), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_switch] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [sym_identifier] = ACTIONS(8329), - [anon_sym_delete] = ACTIONS(8329), - [anon_sym_continue] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [sym_number_literal] = ACTIONS(8331), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [anon_sym_case] = ACTIONS(8329), - [anon_sym_SQUOTE] = ACTIONS(8331), - [anon_sym_LBRACE] = ACTIONS(8331), - [anon_sym_DASH_DASH] = ACTIONS(8331), - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_struct] = ACTIONS(8329), - [sym_auto] = ACTIONS(8329), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_default] = ACTIONS(8329), - [anon_sym_AMP] = ACTIONS(8331), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_RBRACE] = ACTIONS(8331), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [anon_sym_new] = ACTIONS(8329), - [anon_sym_goto] = ACTIONS(8329), - [anon_sym_while] = ACTIONS(8329), - [anon_sym_try] = ACTIONS(8329), - [anon_sym_for] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym_DQUOTE] = ACTIONS(8331), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_LBRACK] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_if] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [sym_false] = ACTIONS(8329), - [sym_nullptr] = ACTIONS(8329), - [anon_sym_do] = ACTIONS(8329), - [anon_sym_return] = ACTIONS(8329), - [anon_sym_TILDE] = ACTIONS(8331), - [anon_sym_SEMI] = ACTIONS(8331), - [anon_sym_inline] = ACTIONS(8329), - [anon_sym_PLUS_PLUS] = ACTIONS(8331), - [anon_sym_restrict] = ACTIONS(8329), + [4892] = { + [anon_sym_DASH] = ACTIONS(8295), + [sym_raw_string_literal] = ACTIONS(8297), + [sym_true] = ACTIONS(8295), + [anon_sym_mutable] = ACTIONS(8295), + [sym_null] = ACTIONS(8295), + [anon_sym_break] = ACTIONS(8295), + [anon_sym_BANG] = ACTIONS(8297), + [anon_sym_sizeof] = ACTIONS(8295), + [anon_sym_volatile] = ACTIONS(8295), + [anon_sym_PLUS] = ACTIONS(8295), + [anon_sym_typedef] = ACTIONS(8295), + [anon_sym_switch] = ACTIONS(8295), + [anon_sym_explicit] = ACTIONS(8295), + [sym_identifier] = ACTIONS(8295), + [anon_sym_delete] = ACTIONS(8295), + [anon_sym_continue] = ACTIONS(8295), + [anon_sym__Atomic] = ACTIONS(8295), + [sym_number_literal] = ACTIONS(8297), + [anon_sym_extern] = ACTIONS(8295), + [anon_sym_enum] = ACTIONS(8295), + [anon_sym_constexpr] = ACTIONS(8295), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8297), + [anon_sym_case] = ACTIONS(8295), + [anon_sym_SQUOTE] = ACTIONS(8297), + [anon_sym_LBRACE] = ACTIONS(8297), + [anon_sym_DASH_DASH] = ACTIONS(8297), + [anon_sym_LPAREN2] = ACTIONS(8297), + [anon_sym_struct] = ACTIONS(8295), + [sym_auto] = ACTIONS(8295), + [anon_sym_signed] = ACTIONS(8295), + [anon_sym_long] = ACTIONS(8295), + [anon_sym_COLON_COLON] = ACTIONS(8297), + [anon_sym_default] = ACTIONS(8295), + [anon_sym_AMP] = ACTIONS(8297), + [anon_sym_static] = ACTIONS(8295), + [anon_sym_RBRACE] = ACTIONS(8297), + [anon_sym_STAR] = ACTIONS(8297), + [anon_sym_union] = ACTIONS(8295), + [anon_sym_typename] = ACTIONS(8295), + [anon_sym_short] = ACTIONS(8295), + [anon_sym_new] = ACTIONS(8295), + [anon_sym_goto] = ACTIONS(8295), + [anon_sym_while] = ACTIONS(8295), + [anon_sym_try] = ACTIONS(8295), + [anon_sym_for] = ACTIONS(8295), + [anon_sym_register] = ACTIONS(8295), + [anon_sym_DQUOTE] = ACTIONS(8297), + [anon_sym_const] = ACTIONS(8295), + [anon_sym_LBRACK] = ACTIONS(8295), + [anon_sym_class] = ACTIONS(8295), + [anon_sym_if] = ACTIONS(8295), + [sym_primitive_type] = ACTIONS(8295), + [sym_false] = ACTIONS(8295), + [sym_nullptr] = ACTIONS(8295), + [anon_sym_do] = ACTIONS(8295), + [anon_sym_return] = ACTIONS(8295), + [anon_sym_TILDE] = ACTIONS(8297), + [anon_sym_SEMI] = ACTIONS(8297), + [anon_sym_inline] = ACTIONS(8295), + [anon_sym_PLUS_PLUS] = ACTIONS(8297), + [anon_sym_restrict] = ACTIONS(8295), }, - [4922] = { - [anon_sym_DASH] = ACTIONS(8908), - [sym_raw_string_literal] = ACTIONS(8910), - [anon_sym_else] = ACTIONS(8908), - [sym_true] = ACTIONS(8908), - [anon_sym_mutable] = ACTIONS(8908), - [sym_null] = ACTIONS(8908), - [anon_sym_break] = ACTIONS(8908), - [anon_sym_BANG] = ACTIONS(8910), - [anon_sym_sizeof] = ACTIONS(8908), - [anon_sym_volatile] = ACTIONS(8908), - [anon_sym_PLUS] = ACTIONS(8908), - [anon_sym_typedef] = ACTIONS(8908), - [anon_sym_switch] = ACTIONS(8908), - [anon_sym_explicit] = ACTIONS(8908), - [sym_identifier] = ACTIONS(8908), - [anon_sym_delete] = ACTIONS(8908), - [anon_sym_continue] = ACTIONS(8908), - [anon_sym__Atomic] = ACTIONS(8908), - [sym_number_literal] = ACTIONS(8910), - [anon_sym_extern] = ACTIONS(8908), - [anon_sym_enum] = ACTIONS(8908), - [anon_sym_constexpr] = ACTIONS(8908), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(8908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8910), - [anon_sym_case] = ACTIONS(8908), - [anon_sym_SQUOTE] = ACTIONS(8910), - [anon_sym_LBRACE] = ACTIONS(8910), - [anon_sym_DASH_DASH] = ACTIONS(8910), - [anon_sym_LPAREN2] = ACTIONS(8910), - [anon_sym_struct] = ACTIONS(8908), - [sym_auto] = ACTIONS(8908), - [anon_sym_signed] = ACTIONS(8908), - [anon_sym_long] = ACTIONS(8908), - [anon_sym_COLON_COLON] = ACTIONS(8910), - [anon_sym_default] = ACTIONS(8908), - [anon_sym_AMP] = ACTIONS(8910), - [anon_sym_static] = ACTIONS(8908), - [anon_sym_RBRACE] = ACTIONS(8910), - [anon_sym_STAR] = ACTIONS(8910), - [anon_sym_union] = ACTIONS(8908), - [anon_sym_typename] = ACTIONS(8908), - [anon_sym_short] = ACTIONS(8908), - [anon_sym_new] = ACTIONS(8908), - [anon_sym_goto] = ACTIONS(8908), - [anon_sym_while] = ACTIONS(8908), - [anon_sym_try] = ACTIONS(8908), - [anon_sym_for] = ACTIONS(8908), - [anon_sym_register] = ACTIONS(8908), - [anon_sym_DQUOTE] = ACTIONS(8910), - [anon_sym_const] = ACTIONS(8908), - [anon_sym_LBRACK] = ACTIONS(8908), - [anon_sym_class] = ACTIONS(8908), - [anon_sym_if] = ACTIONS(8908), - [sym_primitive_type] = ACTIONS(8908), - [sym_false] = ACTIONS(8908), - [sym_nullptr] = ACTIONS(8908), - [anon_sym_do] = ACTIONS(8908), - [anon_sym_return] = ACTIONS(8908), - [anon_sym_TILDE] = ACTIONS(8910), - [anon_sym_SEMI] = ACTIONS(8910), - [anon_sym_inline] = ACTIONS(8908), - [anon_sym_PLUS_PLUS] = ACTIONS(8910), - [anon_sym_restrict] = ACTIONS(8908), + [4893] = { + [anon_sym_DASH] = ACTIONS(8872), + [sym_raw_string_literal] = ACTIONS(8874), + [anon_sym_else] = ACTIONS(8872), + [sym_true] = ACTIONS(8872), + [anon_sym_mutable] = ACTIONS(8872), + [sym_null] = ACTIONS(8872), + [anon_sym_break] = ACTIONS(8872), + [anon_sym_BANG] = ACTIONS(8874), + [anon_sym_sizeof] = ACTIONS(8872), + [anon_sym_volatile] = ACTIONS(8872), + [anon_sym_PLUS] = ACTIONS(8872), + [anon_sym_typedef] = ACTIONS(8872), + [anon_sym_switch] = ACTIONS(8872), + [anon_sym_explicit] = ACTIONS(8872), + [sym_identifier] = ACTIONS(8872), + [anon_sym_delete] = ACTIONS(8872), + [anon_sym_continue] = ACTIONS(8872), + [anon_sym__Atomic] = ACTIONS(8872), + [sym_number_literal] = ACTIONS(8874), + [anon_sym_extern] = ACTIONS(8872), + [anon_sym_enum] = ACTIONS(8872), + [anon_sym_constexpr] = ACTIONS(8872), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8872), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8874), + [anon_sym_case] = ACTIONS(8872), + [anon_sym_SQUOTE] = ACTIONS(8874), + [anon_sym_LBRACE] = ACTIONS(8874), + [anon_sym_DASH_DASH] = ACTIONS(8874), + [anon_sym_LPAREN2] = ACTIONS(8874), + [anon_sym_struct] = ACTIONS(8872), + [sym_auto] = ACTIONS(8872), + [anon_sym_signed] = ACTIONS(8872), + [anon_sym_long] = ACTIONS(8872), + [anon_sym_COLON_COLON] = ACTIONS(8874), + [anon_sym_default] = ACTIONS(8872), + [anon_sym_AMP] = ACTIONS(8874), + [anon_sym_static] = ACTIONS(8872), + [anon_sym_RBRACE] = ACTIONS(8874), + [anon_sym_STAR] = ACTIONS(8874), + [anon_sym_union] = ACTIONS(8872), + [anon_sym_typename] = ACTIONS(8872), + [anon_sym_short] = ACTIONS(8872), + [anon_sym_new] = ACTIONS(8872), + [anon_sym_goto] = ACTIONS(8872), + [anon_sym_while] = ACTIONS(8872), + [anon_sym_try] = ACTIONS(8872), + [anon_sym_for] = ACTIONS(8872), + [anon_sym_register] = ACTIONS(8872), + [anon_sym_DQUOTE] = ACTIONS(8874), + [anon_sym_const] = ACTIONS(8872), + [anon_sym_LBRACK] = ACTIONS(8872), + [anon_sym_class] = ACTIONS(8872), + [anon_sym_if] = ACTIONS(8872), + [sym_primitive_type] = ACTIONS(8872), + [sym_false] = ACTIONS(8872), + [sym_nullptr] = ACTIONS(8872), + [anon_sym_do] = ACTIONS(8872), + [anon_sym_return] = ACTIONS(8872), + [anon_sym_TILDE] = ACTIONS(8874), + [anon_sym_SEMI] = ACTIONS(8874), + [anon_sym_inline] = ACTIONS(8872), + [anon_sym_PLUS_PLUS] = ACTIONS(8874), + [anon_sym_restrict] = ACTIONS(8872), }, - [4923] = { - [sym_do_statement] = STATE(5004), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4894] = { + [sym_do_statement] = STATE(4975), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5004), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5004), - [sym_if_statement] = STATE(5004), - [sym_switch_statement] = STATE(5004), - [sym_for_statement] = STATE(5004), - [sym_return_statement] = STATE(5004), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), - [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5004), - [sym_break_statement] = STATE(5004), - [sym_continue_statement] = STATE(5004), - [sym_assignment_expression] = STATE(3091), + [sym_goto_statement] = STATE(4975), + [sym_try_statement] = STATE(4975), + [sym_if_statement] = STATE(4975), + [sym_switch_statement] = STATE(4975), + [sym_for_statement] = STATE(4975), + [sym_return_statement] = STATE(4975), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), + [sym_subscript_expression] = STATE(47), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4975), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5004), - [sym_labeled_statement] = STATE(5004), - [sym_expression_statement] = STATE(5004), - [sym_while_statement] = STATE(5004), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4975), + [sym_for_range_loop] = STATE(4975), + [sym_compound_statement] = STATE(4975), + [sym_labeled_statement] = STATE(4975), + [sym_expression_statement] = STATE(4975), + [sym_while_statement] = STATE(4975), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4924] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10734), + [4895] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10700), [sym_comment] = ACTIONS(3), }, - [4925] = { - [aux_sym_for_statement_repeat1] = STATE(5006), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10734), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4896] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(4977), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10700), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4926] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5007), - [sym_logical_expression] = STATE(5007), - [sym_bitwise_expression] = STATE(5007), - [sym_cast_expression] = STATE(5007), - [sym_new_expression] = STATE(5007), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5007), - [sym_char_literal] = STATE(5007), - [sym_template_function] = STATE(5007), - [sym_conditional_expression] = STATE(5007), - [sym_equality_expression] = STATE(5007), - [sym_relational_expression] = STATE(5007), - [sym_delete_expression] = STATE(5007), - [sym_sizeof_expression] = STATE(5007), - [sym_parenthesized_expression] = STATE(5007), - [sym_lambda_expression] = STATE(5007), - [sym_concatenated_string] = STATE(5007), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5007), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5007), - [sym_math_expression] = STATE(5007), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10736), + [4897] = { + [sym_template_function] = STATE(4978), + [sym__expression] = STATE(4978), + [sym_logical_expression] = STATE(4978), + [sym_bitwise_expression] = STATE(4978), + [sym_cast_expression] = STATE(4978), + [sym_delete_expression] = STATE(4978), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4978), + [sym_lambda_expression] = STATE(4978), + [sym_char_literal] = STATE(4978), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4978), + [sym_equality_expression] = STATE(4978), + [sym_relational_expression] = STATE(4978), + [sym_sizeof_expression] = STATE(4978), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4978), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4978), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4978), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4978), + [sym_math_expression] = STATE(4978), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4978), + [sym_raw_string_literal] = ACTIONS(10702), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10738), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10738), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10704), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10704), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10736), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10702), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10738), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10738), + [sym_false] = ACTIONS(10704), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10704), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10734), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10700), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4927] = { - [sym_do_statement] = STATE(5008), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4898] = { + [sym_do_statement] = STATE(4979), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5008), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5008), - [sym_if_statement] = STATE(5008), - [sym_switch_statement] = STATE(5008), - [sym_for_statement] = STATE(5008), - [sym_return_statement] = STATE(5008), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4979), + [sym_try_statement] = STATE(4979), + [sym_if_statement] = STATE(4979), + [sym_switch_statement] = STATE(4979), + [sym_for_statement] = STATE(4979), + [sym_return_statement] = STATE(4979), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5008), - [sym_break_statement] = STATE(5008), - [sym_continue_statement] = STATE(5008), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4979), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5008), - [sym_labeled_statement] = STATE(5008), - [sym_expression_statement] = STATE(5008), - [sym_while_statement] = STATE(5008), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4979), + [sym_for_range_loop] = STATE(4979), + [sym_compound_statement] = STATE(4979), + [sym_labeled_statement] = STATE(4979), + [sym_expression_statement] = STATE(4979), + [sym_while_statement] = STATE(4979), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4928] = { - [sym_do_statement] = STATE(4319), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4899] = { + [sym_do_statement] = STATE(4290), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(4319), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(4319), - [sym_if_statement] = STATE(4319), - [sym_switch_statement] = STATE(4319), - [sym_for_statement] = STATE(4319), - [sym_return_statement] = STATE(4319), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4290), + [sym_try_statement] = STATE(4290), + [sym_if_statement] = STATE(4290), + [sym_switch_statement] = STATE(4290), + [sym_for_statement] = STATE(4290), + [sym_return_statement] = STATE(4290), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(4319), - [sym_break_statement] = STATE(4319), - [sym_continue_statement] = STATE(4319), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4290), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4319), - [sym_labeled_statement] = STATE(4319), - [sym_expression_statement] = STATE(4319), - [sym_while_statement] = STATE(4319), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4290), + [sym_for_range_loop] = STATE(4290), + [sym_compound_statement] = STATE(4290), + [sym_labeled_statement] = STATE(4290), + [sym_expression_statement] = STATE(4290), + [sym_while_statement] = STATE(4290), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4929] = { - [sym_do_statement] = STATE(4322), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4900] = { + [sym_do_statement] = STATE(4293), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(4322), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(4322), - [sym_if_statement] = STATE(4322), - [sym_switch_statement] = STATE(4322), - [sym_for_statement] = STATE(4322), - [sym_return_statement] = STATE(4322), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4293), + [sym_try_statement] = STATE(4293), + [sym_if_statement] = STATE(4293), + [sym_switch_statement] = STATE(4293), + [sym_for_statement] = STATE(4293), + [sym_return_statement] = STATE(4293), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(4322), - [sym_break_statement] = STATE(4322), - [sym_continue_statement] = STATE(4322), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4293), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4322), - [sym_labeled_statement] = STATE(4322), - [sym_expression_statement] = STATE(4322), - [sym_while_statement] = STATE(4322), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4293), + [sym_for_range_loop] = STATE(4293), + [sym_compound_statement] = STATE(4293), + [sym_labeled_statement] = STATE(4293), + [sym_expression_statement] = STATE(4293), + [sym_while_statement] = STATE(4293), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4930] = { - [sym_template_type] = STATE(722), - [sym__expression] = STATE(5010), - [sym_logical_expression] = STATE(5010), - [sym_bitwise_expression] = STATE(5010), - [sym_cast_expression] = STATE(5010), - [sym_new_expression] = STATE(5010), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(5010), - [sym_declaration] = STATE(5009), - [sym_char_literal] = STATE(5010), - [aux_sym__declaration_specifiers_repeat1] = STATE(281), - [sym_storage_class_specifier] = STATE(281), - [sym_dependent_type] = STATE(278), - [sym_struct_specifier] = STATE(278), - [sym_union_specifier] = STATE(278), - [sym_type_qualifier] = STATE(281), - [sym_template_function] = STATE(5010), - [sym_conditional_expression] = STATE(5010), - [sym_equality_expression] = STATE(5010), - [sym_relational_expression] = STATE(5010), - [sym_sizeof_expression] = STATE(5010), - [sym__declaration_specifiers] = STATE(724), - [sym_subscript_expression] = STATE(299), - [sym_scoped_type_identifier] = STATE(61), - [sym_parenthesized_expression] = STATE(5010), - [aux_sym_function_definition_repeat1] = STATE(725), - [sym_macro_type_specifier] = STATE(278), - [sym_class_specifier] = STATE(278), - [sym__type_specifier] = STATE(278), - [sym_sized_type_specifier] = STATE(278), - [sym_concatenated_string] = STATE(5010), - [sym_string_literal] = STATE(300), - [sym_delete_expression] = STATE(5010), - [sym_lambda_expression] = STATE(5010), - [sym_scoped_identifier] = STATE(73), - [sym_for_range_declaration] = STATE(5011), - [sym_assignment_expression] = STATE(5010), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(5010), - [sym_math_expression] = STATE(5010), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), + [4901] = { + [sym_template_function] = STATE(4981), + [sym__expression] = STATE(4981), + [sym_logical_expression] = STATE(4981), + [sym_bitwise_expression] = STATE(4981), + [sym_cast_expression] = STATE(4981), + [sym_delete_expression] = STATE(4981), + [sym_field_expression] = STATE(301), + [sym_scoped_type_identifier] = STATE(48), + [sym_compound_literal_expression] = STATE(4981), + [aux_sym_function_definition_repeat1] = STATE(724), + [sym_char_literal] = STATE(4981), + [sym_lambda_expression] = STATE(4981), + [sym_scoped_identifier] = STATE(73), + [sym_dependent_type] = STATE(280), + [sym_struct_specifier] = STATE(280), + [sym_union_specifier] = STATE(280), + [sym_storage_class_specifier] = STATE(285), + [sym_type_qualifier] = STATE(285), + [sym_declaration] = STATE(4980), + [sym_for_range_declaration] = STATE(4982), + [sym_conditional_expression] = STATE(4981), + [sym_equality_expression] = STATE(4981), + [sym_relational_expression] = STATE(4981), + [sym_sizeof_expression] = STATE(4981), + [sym__declaration_specifiers] = STATE(726), + [sym_subscript_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(4981), + [sym_concatenated_string] = STATE(4981), + [sym_string_literal] = STATE(302), + [sym_macro_type_specifier] = STATE(280), + [sym_class_specifier] = STATE(280), + [sym__type_specifier] = STATE(280), + [sym_sized_type_specifier] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(281), + [sym_lambda_capture_specifier] = STATE(50), [sym_scoped_namespace_identifier] = STATE(727), - [sym_attribute] = STATE(725), - [aux_sym_sized_type_specifier_repeat1] = STATE(283), - [sym_enum_specifier] = STATE(278), - [sym_raw_string_literal] = ACTIONS(10740), + [sym_attribute] = STATE(724), + [sym_template_type] = STATE(728), + [sym_assignment_expression] = STATE(4981), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4981), + [sym_math_expression] = STATE(4981), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4981), + [aux_sym__declaration_specifiers_repeat1] = STATE(285), + [sym_enum_specifier] = STATE(280), + [sym_raw_string_literal] = ACTIONS(10706), [anon_sym_struct] = ACTIONS(49), - [sym_auto] = ACTIONS(458), - [sym_true] = ACTIONS(10742), + [sym_auto] = ACTIONS(460), + [sym_true] = ACTIONS(10708), [anon_sym_mutable] = ACTIONS(11), - [sym_null] = ACTIONS(10742), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), + [sym_null] = ACTIONS(10708), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), [anon_sym_static] = ACTIONS(63), [anon_sym_volatile] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), [anon_sym_union] = ACTIONS(67), - [anon_sym_typename] = ACTIONS(470), + [anon_sym_typename] = ACTIONS(472), [anon_sym_explicit] = ACTIONS(11), - [sym_identifier] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(502), - [anon_sym_short] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(504), + [sym_identifier] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(506), + [anon_sym_short] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(508), [anon_sym_register] = ACTIONS(63), [anon_sym__Atomic] = ACTIONS(11), [anon_sym_const] = ACTIONS(11), [anon_sym_extern] = ACTIONS(63), - [sym_number_literal] = ACTIONS(10740), + [sym_number_literal] = ACTIONS(10706), [anon_sym_DQUOTE] = ACTIONS(85), [anon_sym_enum] = ACTIONS(33), [anon_sym_class] = ACTIONS(89), [anon_sym_constexpr] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(458), - [sym_false] = ACTIONS(10742), + [sym_primitive_type] = ACTIONS(460), + [sym_false] = ACTIONS(10708), [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [sym_nullptr] = ACTIONS(10742), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_unsigned] = ACTIONS(460), + [sym_nullptr] = ACTIONS(10708), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(462), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10744), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10710), [anon_sym_inline] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(490), [anon_sym_restrict] = ACTIONS(11), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4931] = { - [aux_sym_try_statement_repeat1] = STATE(5012), - [sym_catch_clause] = STATE(5012), - [anon_sym_catch] = ACTIONS(9304), + [4902] = { + [sym_catch_clause] = STATE(4983), + [aux_sym_try_statement_repeat1] = STATE(4983), + [anon_sym_catch] = ACTIONS(9270), [sym_comment] = ACTIONS(3), }, - [4932] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5013), - [sym_logical_expression] = STATE(5013), - [sym_bitwise_expression] = STATE(5013), - [sym_cast_expression] = STATE(5013), - [sym_new_expression] = STATE(5013), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(5013), - [sym_char_literal] = STATE(5013), - [sym_template_function] = STATE(5013), - [sym_conditional_expression] = STATE(5013), - [sym_equality_expression] = STATE(5013), - [sym_relational_expression] = STATE(5013), - [sym_delete_expression] = STATE(5013), - [sym_sizeof_expression] = STATE(5013), - [sym_parenthesized_expression] = STATE(5013), - [sym_lambda_expression] = STATE(5013), - [sym_concatenated_string] = STATE(5013), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(5013), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(5013), - [sym_math_expression] = STATE(5013), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10746), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10748), - [sym_null] = ACTIONS(10748), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10746), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10748), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10748), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4903] = { + [sym_template_function] = STATE(4984), + [sym__expression] = STATE(4984), + [sym_logical_expression] = STATE(4984), + [sym_bitwise_expression] = STATE(4984), + [sym_cast_expression] = STATE(4984), + [sym_delete_expression] = STATE(4984), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4984), + [sym_lambda_expression] = STATE(4984), + [sym_char_literal] = STATE(4984), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4984), + [sym_equality_expression] = STATE(4984), + [sym_relational_expression] = STATE(4984), + [sym_sizeof_expression] = STATE(4984), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4984), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4984), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4984), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4984), + [sym_math_expression] = STATE(4984), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4984), + [sym_raw_string_literal] = ACTIONS(10712), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10714), + [sym_null] = ACTIONS(10714), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10712), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10714), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10714), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4933] = { - [anon_sym_LPAREN2] = ACTIONS(10750), + [4904] = { + [anon_sym_LPAREN2] = ACTIONS(10716), [sym_comment] = ACTIONS(3), }, - [4934] = { - [sym_do_statement] = STATE(5015), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4905] = { + [sym_do_statement] = STATE(4986), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5015), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5015), - [sym_if_statement] = STATE(5015), - [sym_switch_statement] = STATE(5015), - [sym_for_statement] = STATE(5015), - [sym_return_statement] = STATE(5015), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4986), + [sym_try_statement] = STATE(4986), + [sym_if_statement] = STATE(4986), + [sym_switch_statement] = STATE(4986), + [sym_for_statement] = STATE(4986), + [sym_return_statement] = STATE(4986), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5015), - [sym_break_statement] = STATE(5015), - [sym_continue_statement] = STATE(5015), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4986), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5015), - [sym_labeled_statement] = STATE(5015), - [sym_expression_statement] = STATE(5015), - [sym_while_statement] = STATE(5015), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4986), + [sym_for_range_loop] = STATE(4986), + [sym_compound_statement] = STATE(4986), + [sym_labeled_statement] = STATE(4986), + [sym_expression_statement] = STATE(4986), + [sym_while_statement] = STATE(4986), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4935] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(10752), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_case] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_default] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9005), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_RBRACE] = ACTIONS(9005), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), + [4906] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(10718), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_case] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_default] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8969), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_RBRACE] = ACTIONS(8969), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), }, - [4936] = { - [anon_sym_DASH] = ACTIONS(2818), - [sym_raw_string_literal] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2816), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2816), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2818), - [sym_auto] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_nullptr] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_restrict] = ACTIONS(2818), + [4907] = { + [anon_sym_DASH] = ACTIONS(2820), + [sym_raw_string_literal] = ACTIONS(2818), + [anon_sym_else] = ACTIONS(2820), + [sym_true] = ACTIONS(2820), + [anon_sym_mutable] = ACTIONS(2820), + [sym_null] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_sizeof] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_explicit] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_constexpr] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2818), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_LPAREN2] = ACTIONS(2818), + [anon_sym_struct] = ACTIONS(2820), + [sym_auto] = ACTIONS(2820), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_typename] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_goto] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [sym_nullptr] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_restrict] = ACTIONS(2820), }, - [4937] = { - [anon_sym_LPAREN2] = ACTIONS(10249), - [anon_sym_DASH] = ACTIONS(10247), - [sym_raw_string_literal] = ACTIONS(10249), - [sym_true] = ACTIONS(10247), - [anon_sym_else] = ACTIONS(10247), - [sym_null] = ACTIONS(10247), - [anon_sym_COLON_COLON] = ACTIONS(10249), - [anon_sym_default] = ACTIONS(10247), - [anon_sym_break] = ACTIONS(10247), - [anon_sym_BANG] = ACTIONS(10249), - [anon_sym_AMP] = ACTIONS(10249), - [anon_sym_sizeof] = ACTIONS(10247), - [anon_sym_RBRACE] = ACTIONS(10249), - [anon_sym_PLUS] = ACTIONS(10247), - [anon_sym_STAR] = ACTIONS(10249), - [anon_sym_switch] = ACTIONS(10247), - [sym_identifier] = ACTIONS(10247), - [anon_sym_new] = ACTIONS(10247), - [anon_sym_goto] = ACTIONS(10247), - [anon_sym_while] = ACTIONS(10247), - [anon_sym_continue] = ACTIONS(10247), - [anon_sym_for] = ACTIONS(10247), - [anon_sym_delete] = ACTIONS(10247), - [anon_sym_try] = ACTIONS(10247), - [anon_sym_DQUOTE] = ACTIONS(10249), - [sym_number_literal] = ACTIONS(10249), - [anon_sym_LBRACK] = ACTIONS(10249), - [anon_sym_if] = ACTIONS(10247), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(10247), - [sym_nullptr] = ACTIONS(10247), - [anon_sym_do] = ACTIONS(10247), - [anon_sym_case] = ACTIONS(10247), - [anon_sym_return] = ACTIONS(10247), - [anon_sym_TILDE] = ACTIONS(10249), - [anon_sym_SEMI] = ACTIONS(10249), - [anon_sym_PLUS_PLUS] = ACTIONS(10249), - [anon_sym_SQUOTE] = ACTIONS(10249), - [anon_sym_LBRACE] = ACTIONS(10249), - [anon_sym_DASH_DASH] = ACTIONS(10249), + [4908] = { + [anon_sym_LPAREN2] = ACTIONS(10215), + [anon_sym_DASH] = ACTIONS(10213), + [sym_raw_string_literal] = ACTIONS(10215), + [sym_true] = ACTIONS(10213), + [anon_sym_else] = ACTIONS(10213), + [sym_null] = ACTIONS(10213), + [anon_sym_COLON_COLON] = ACTIONS(10215), + [anon_sym_default] = ACTIONS(10213), + [anon_sym_break] = ACTIONS(10213), + [anon_sym_BANG] = ACTIONS(10215), + [anon_sym_AMP] = ACTIONS(10215), + [anon_sym_sizeof] = ACTIONS(10213), + [anon_sym_RBRACE] = ACTIONS(10215), + [anon_sym_PLUS] = ACTIONS(10213), + [anon_sym_STAR] = ACTIONS(10215), + [anon_sym_switch] = ACTIONS(10213), + [sym_identifier] = ACTIONS(10213), + [anon_sym_new] = ACTIONS(10213), + [anon_sym_goto] = ACTIONS(10213), + [anon_sym_while] = ACTIONS(10213), + [anon_sym_continue] = ACTIONS(10213), + [anon_sym_for] = ACTIONS(10213), + [anon_sym_delete] = ACTIONS(10213), + [anon_sym_try] = ACTIONS(10213), + [anon_sym_DQUOTE] = ACTIONS(10215), + [sym_number_literal] = ACTIONS(10215), + [anon_sym_LBRACK] = ACTIONS(10215), + [anon_sym_if] = ACTIONS(10213), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(10213), + [sym_nullptr] = ACTIONS(10213), + [anon_sym_do] = ACTIONS(10213), + [anon_sym_case] = ACTIONS(10213), + [anon_sym_return] = ACTIONS(10213), + [anon_sym_TILDE] = ACTIONS(10215), + [anon_sym_SEMI] = ACTIONS(10215), + [anon_sym_PLUS_PLUS] = ACTIONS(10215), + [anon_sym_SQUOTE] = ACTIONS(10215), + [anon_sym_LBRACE] = ACTIONS(10215), + [anon_sym_DASH_DASH] = ACTIONS(10215), }, - [4938] = { - [sym_do_statement] = STATE(5017), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4909] = { + [sym_do_statement] = STATE(4988), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(5017), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(5017), - [sym_if_statement] = STATE(5017), - [sym_switch_statement] = STATE(5017), - [sym_for_statement] = STATE(5017), - [sym_return_statement] = STATE(5017), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4988), + [sym_try_statement] = STATE(4988), + [sym_if_statement] = STATE(4988), + [sym_switch_statement] = STATE(4988), + [sym_for_statement] = STATE(4988), + [sym_return_statement] = STATE(4988), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(5017), - [sym_break_statement] = STATE(5017), - [sym_continue_statement] = STATE(5017), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4988), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5017), - [sym_labeled_statement] = STATE(5017), - [sym_expression_statement] = STATE(5017), - [sym_while_statement] = STATE(5017), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4988), + [sym_for_range_loop] = STATE(4988), + [sym_compound_statement] = STATE(4988), + [sym_labeled_statement] = STATE(4988), + [sym_expression_statement] = STATE(4988), + [sym_while_statement] = STATE(4988), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4939] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10754), + [4910] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10720), [sym_comment] = ACTIONS(3), }, - [4940] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5020), - [sym_logical_expression] = STATE(5020), - [sym_bitwise_expression] = STATE(5020), - [sym_cast_expression] = STATE(5020), - [sym_new_expression] = STATE(5020), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5020), - [sym_char_literal] = STATE(5020), - [sym_template_function] = STATE(5020), - [sym_conditional_expression] = STATE(5020), - [sym_equality_expression] = STATE(5020), - [sym_relational_expression] = STATE(5020), - [sym_delete_expression] = STATE(5020), - [sym_sizeof_expression] = STATE(5020), - [sym_parenthesized_expression] = STATE(5020), - [sym_lambda_expression] = STATE(5020), - [sym_concatenated_string] = STATE(5020), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5020), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5020), - [sym_math_expression] = STATE(5020), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10756), + [4911] = { + [sym_template_function] = STATE(4991), + [sym__expression] = STATE(4991), + [sym_logical_expression] = STATE(4991), + [sym_bitwise_expression] = STATE(4991), + [sym_cast_expression] = STATE(4991), + [sym_delete_expression] = STATE(4991), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(4991), + [sym_lambda_expression] = STATE(4991), + [sym_char_literal] = STATE(4991), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4991), + [sym_equality_expression] = STATE(4991), + [sym_relational_expression] = STATE(4991), + [sym_sizeof_expression] = STATE(4991), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4991), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(4991), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4991), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(4991), + [sym_math_expression] = STATE(4991), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(4991), + [sym_raw_string_literal] = ACTIONS(10722), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10758), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10758), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10724), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10724), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10756), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10722), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10758), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10758), + [sym_false] = ACTIONS(10724), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10724), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10760), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10726), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4941] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10762), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4912] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10728), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4942] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5022), - [sym_logical_expression] = STATE(5022), - [sym_bitwise_expression] = STATE(5022), - [sym_cast_expression] = STATE(5022), - [sym_new_expression] = STATE(5022), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(5022), - [sym_char_literal] = STATE(5022), - [sym_template_function] = STATE(5022), - [sym_conditional_expression] = STATE(5022), - [sym_equality_expression] = STATE(5022), - [sym_relational_expression] = STATE(5022), - [sym_delete_expression] = STATE(5022), - [sym_sizeof_expression] = STATE(5022), - [sym_parenthesized_expression] = STATE(5022), - [sym_lambda_expression] = STATE(5022), - [sym_concatenated_string] = STATE(5022), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(5022), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(5022), - [sym_math_expression] = STATE(5022), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10764), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10766), - [sym_null] = ACTIONS(10766), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10764), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10766), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10766), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10762), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4913] = { + [sym_template_function] = STATE(4993), + [sym__expression] = STATE(4993), + [sym_logical_expression] = STATE(4993), + [sym_bitwise_expression] = STATE(4993), + [sym_cast_expression] = STATE(4993), + [sym_delete_expression] = STATE(4993), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(4993), + [sym_lambda_expression] = STATE(4993), + [sym_char_literal] = STATE(4993), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4993), + [sym_equality_expression] = STATE(4993), + [sym_relational_expression] = STATE(4993), + [sym_sizeof_expression] = STATE(4993), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4993), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(4993), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4993), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(4993), + [sym_math_expression] = STATE(4993), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(4993), + [sym_raw_string_literal] = ACTIONS(10730), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10732), + [sym_null] = ACTIONS(10732), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10730), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10732), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10732), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10728), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4943] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5023), - [sym_logical_expression] = STATE(5023), - [sym_bitwise_expression] = STATE(5023), - [sym_cast_expression] = STATE(5023), - [sym_new_expression] = STATE(5023), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(5023), - [sym_char_literal] = STATE(5023), - [sym_template_function] = STATE(5023), - [sym_conditional_expression] = STATE(5023), - [sym_equality_expression] = STATE(5023), - [sym_relational_expression] = STATE(5023), - [sym_delete_expression] = STATE(5023), - [sym_sizeof_expression] = STATE(5023), - [sym_parenthesized_expression] = STATE(5023), - [sym_lambda_expression] = STATE(5023), - [sym_concatenated_string] = STATE(5023), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(5023), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(5023), - [sym_math_expression] = STATE(5023), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10768), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10770), - [sym_null] = ACTIONS(10770), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10768), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10770), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10770), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4914] = { + [sym_template_function] = STATE(4994), + [sym__expression] = STATE(4994), + [sym_logical_expression] = STATE(4994), + [sym_bitwise_expression] = STATE(4994), + [sym_cast_expression] = STATE(4994), + [sym_delete_expression] = STATE(4994), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(4994), + [sym_lambda_expression] = STATE(4994), + [sym_char_literal] = STATE(4994), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(4994), + [sym_equality_expression] = STATE(4994), + [sym_relational_expression] = STATE(4994), + [sym_sizeof_expression] = STATE(4994), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(4994), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(4994), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(4994), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(4994), + [sym_math_expression] = STATE(4994), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(4994), + [sym_raw_string_literal] = ACTIONS(10734), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10736), + [sym_null] = ACTIONS(10736), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10734), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10736), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10736), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4944] = { - [aux_sym_try_statement_repeat1] = STATE(4944), - [sym_catch_clause] = STATE(4944), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_else] = ACTIONS(5353), - [sym_true] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [sym_null] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_default] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_AMP] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_RBRACE] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_switch] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(9465), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_if] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_case] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), + [4915] = { + [sym_catch_clause] = STATE(4915), + [aux_sym_try_statement_repeat1] = STATE(4915), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_else] = ACTIONS(5352), + [sym_true] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [sym_null] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_default] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_AMP] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_switch] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(9433), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_if] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_case] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), }, - [4945] = { - [sym_do_statement] = STATE(5024), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4916] = { + [sym_do_statement] = STATE(4995), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(5024), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(5024), - [sym_if_statement] = STATE(5024), - [sym_switch_statement] = STATE(5024), - [sym_for_statement] = STATE(5024), - [sym_return_statement] = STATE(5024), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4995), + [sym_try_statement] = STATE(4995), + [sym_if_statement] = STATE(4995), + [sym_switch_statement] = STATE(4995), + [sym_for_statement] = STATE(4995), + [sym_return_statement] = STATE(4995), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(5024), - [sym_break_statement] = STATE(5024), - [sym_continue_statement] = STATE(5024), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4995), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5024), - [sym_labeled_statement] = STATE(5024), - [sym_expression_statement] = STATE(5024), - [sym_while_statement] = STATE(5024), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4995), + [sym_for_range_loop] = STATE(4995), + [sym_compound_statement] = STATE(4995), + [sym_labeled_statement] = STATE(4995), + [sym_expression_statement] = STATE(4995), + [sym_while_statement] = STATE(4995), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4946] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10772), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4917] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10738), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4947] = { - [anon_sym_LPAREN2] = ACTIONS(10277), - [anon_sym_DASH] = ACTIONS(10275), - [sym_raw_string_literal] = ACTIONS(10277), - [sym_true] = ACTIONS(10275), - [anon_sym_else] = ACTIONS(10275), - [sym_null] = ACTIONS(10275), - [anon_sym_COLON_COLON] = ACTIONS(10277), - [anon_sym_default] = ACTIONS(10275), - [anon_sym_break] = ACTIONS(10275), - [anon_sym_BANG] = ACTIONS(10277), - [anon_sym_AMP] = ACTIONS(10277), - [anon_sym_sizeof] = ACTIONS(10275), - [anon_sym_RBRACE] = ACTIONS(10277), - [anon_sym_PLUS] = ACTIONS(10275), - [anon_sym_STAR] = ACTIONS(10277), - [anon_sym_switch] = ACTIONS(10275), - [sym_identifier] = ACTIONS(10275), - [anon_sym_new] = ACTIONS(10275), - [anon_sym_goto] = ACTIONS(10275), - [anon_sym_while] = ACTIONS(10275), - [anon_sym_continue] = ACTIONS(10275), - [anon_sym_for] = ACTIONS(10275), - [anon_sym_delete] = ACTIONS(10275), - [anon_sym_try] = ACTIONS(10275), - [anon_sym_DQUOTE] = ACTIONS(10277), - [sym_number_literal] = ACTIONS(10277), - [anon_sym_LBRACK] = ACTIONS(10277), - [anon_sym_if] = ACTIONS(10275), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(10275), - [sym_nullptr] = ACTIONS(10275), - [anon_sym_do] = ACTIONS(10275), - [anon_sym_case] = ACTIONS(10275), - [anon_sym_return] = ACTIONS(10275), - [anon_sym_TILDE] = ACTIONS(10277), - [anon_sym_SEMI] = ACTIONS(10277), - [anon_sym_PLUS_PLUS] = ACTIONS(10277), - [anon_sym_SQUOTE] = ACTIONS(10277), - [anon_sym_LBRACE] = ACTIONS(10277), - [anon_sym_DASH_DASH] = ACTIONS(10277), + [4918] = { + [anon_sym_LPAREN2] = ACTIONS(10243), + [anon_sym_DASH] = ACTIONS(10241), + [sym_raw_string_literal] = ACTIONS(10243), + [sym_true] = ACTIONS(10241), + [anon_sym_else] = ACTIONS(10241), + [sym_null] = ACTIONS(10241), + [anon_sym_COLON_COLON] = ACTIONS(10243), + [anon_sym_default] = ACTIONS(10241), + [anon_sym_break] = ACTIONS(10241), + [anon_sym_BANG] = ACTIONS(10243), + [anon_sym_AMP] = ACTIONS(10243), + [anon_sym_sizeof] = ACTIONS(10241), + [anon_sym_RBRACE] = ACTIONS(10243), + [anon_sym_PLUS] = ACTIONS(10241), + [anon_sym_STAR] = ACTIONS(10243), + [anon_sym_switch] = ACTIONS(10241), + [sym_identifier] = ACTIONS(10241), + [anon_sym_new] = ACTIONS(10241), + [anon_sym_goto] = ACTIONS(10241), + [anon_sym_while] = ACTIONS(10241), + [anon_sym_continue] = ACTIONS(10241), + [anon_sym_for] = ACTIONS(10241), + [anon_sym_delete] = ACTIONS(10241), + [anon_sym_try] = ACTIONS(10241), + [anon_sym_DQUOTE] = ACTIONS(10243), + [sym_number_literal] = ACTIONS(10243), + [anon_sym_LBRACK] = ACTIONS(10243), + [anon_sym_if] = ACTIONS(10241), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(10241), + [sym_nullptr] = ACTIONS(10241), + [anon_sym_do] = ACTIONS(10241), + [anon_sym_case] = ACTIONS(10241), + [anon_sym_return] = ACTIONS(10241), + [anon_sym_TILDE] = ACTIONS(10243), + [anon_sym_SEMI] = ACTIONS(10243), + [anon_sym_PLUS_PLUS] = ACTIONS(10243), + [anon_sym_SQUOTE] = ACTIONS(10243), + [anon_sym_LBRACE] = ACTIONS(10243), + [anon_sym_DASH_DASH] = ACTIONS(10243), }, - [4948] = { - [anon_sym_DASH] = ACTIONS(10247), - [sym_raw_string_literal] = ACTIONS(10249), - [anon_sym_else] = ACTIONS(10247), - [sym_true] = ACTIONS(10247), - [anon_sym_mutable] = ACTIONS(10247), - [sym_null] = ACTIONS(10247), - [anon_sym_break] = ACTIONS(10247), - [aux_sym_preproc_if_token2] = ACTIONS(10247), - [anon_sym_BANG] = ACTIONS(10249), - [anon_sym_sizeof] = ACTIONS(10247), - [anon_sym_volatile] = ACTIONS(10247), - [anon_sym_PLUS] = ACTIONS(10247), - [anon_sym_typedef] = ACTIONS(10247), - [anon_sym_switch] = ACTIONS(10247), - [anon_sym_explicit] = ACTIONS(10247), - [sym_identifier] = ACTIONS(10247), - [anon_sym_delete] = ACTIONS(10247), - [anon_sym_continue] = ACTIONS(10247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10247), - [anon_sym__Atomic] = ACTIONS(10247), - [sym_number_literal] = ACTIONS(10249), - [anon_sym_extern] = ACTIONS(10247), - [anon_sym_enum] = ACTIONS(10247), - [anon_sym_constexpr] = ACTIONS(10247), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10249), - [anon_sym_namespace] = ACTIONS(10247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10247), - [anon_sym_SQUOTE] = ACTIONS(10249), - [anon_sym_LBRACE] = ACTIONS(10249), - [anon_sym_DASH_DASH] = ACTIONS(10249), - [anon_sym_LPAREN2] = ACTIONS(10249), - [anon_sym_struct] = ACTIONS(10247), - [sym_auto] = ACTIONS(10247), - [anon_sym_signed] = ACTIONS(10247), - [anon_sym_long] = ACTIONS(10247), - [anon_sym_COLON_COLON] = ACTIONS(10249), - [anon_sym_using] = ACTIONS(10247), - [sym_preproc_directive] = ACTIONS(10247), - [aux_sym_preproc_if_token1] = ACTIONS(10247), - [anon_sym_AMP] = ACTIONS(10247), - [anon_sym_static] = ACTIONS(10247), - [anon_sym_STAR] = ACTIONS(10249), - [anon_sym_union] = ACTIONS(10247), - [anon_sym_typename] = ACTIONS(10247), - [anon_sym_short] = ACTIONS(10247), - [anon_sym_new] = ACTIONS(10247), - [anon_sym_goto] = ACTIONS(10247), - [sym_operator_name] = ACTIONS(10249), - [anon_sym_while] = ACTIONS(10247), - [anon_sym_try] = ACTIONS(10247), - [anon_sym_for] = ACTIONS(10247), - [aux_sym_preproc_include_token1] = ACTIONS(10247), - [anon_sym_register] = ACTIONS(10247), - [anon_sym_DQUOTE] = ACTIONS(10249), - [anon_sym_const] = ACTIONS(10247), - [anon_sym_LBRACK] = ACTIONS(10247), - [anon_sym_class] = ACTIONS(10247), - [anon_sym_if] = ACTIONS(10247), - [sym_primitive_type] = ACTIONS(10247), - [sym_false] = ACTIONS(10247), - [sym_nullptr] = ACTIONS(10247), - [anon_sym_do] = ACTIONS(10247), - [anon_sym_template] = ACTIONS(10247), - [anon_sym_return] = ACTIONS(10247), - [anon_sym_TILDE] = ACTIONS(10249), - [anon_sym_SEMI] = ACTIONS(10249), - [aux_sym_preproc_def_token1] = ACTIONS(10247), - [anon_sym_AMP_AMP] = ACTIONS(10249), - [anon_sym_inline] = ACTIONS(10247), - [anon_sym_PLUS_PLUS] = ACTIONS(10249), - [anon_sym_restrict] = ACTIONS(10247), + [4919] = { + [anon_sym_DASH] = ACTIONS(10213), + [sym_raw_string_literal] = ACTIONS(10215), + [anon_sym_else] = ACTIONS(10213), + [sym_true] = ACTIONS(10213), + [anon_sym_mutable] = ACTIONS(10213), + [sym_null] = ACTIONS(10213), + [anon_sym_break] = ACTIONS(10213), + [aux_sym_preproc_if_token2] = ACTIONS(10213), + [anon_sym_BANG] = ACTIONS(10215), + [anon_sym_sizeof] = ACTIONS(10213), + [anon_sym_volatile] = ACTIONS(10213), + [anon_sym_PLUS] = ACTIONS(10213), + [anon_sym_typedef] = ACTIONS(10213), + [anon_sym_switch] = ACTIONS(10213), + [anon_sym_explicit] = ACTIONS(10213), + [sym_identifier] = ACTIONS(10213), + [anon_sym_delete] = ACTIONS(10213), + [anon_sym_continue] = ACTIONS(10213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10213), + [anon_sym__Atomic] = ACTIONS(10213), + [sym_number_literal] = ACTIONS(10215), + [anon_sym_extern] = ACTIONS(10213), + [anon_sym_enum] = ACTIONS(10213), + [anon_sym_constexpr] = ACTIONS(10213), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10215), + [anon_sym_namespace] = ACTIONS(10213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10213), + [anon_sym_SQUOTE] = ACTIONS(10215), + [anon_sym_LBRACE] = ACTIONS(10215), + [anon_sym_DASH_DASH] = ACTIONS(10215), + [anon_sym_LPAREN2] = ACTIONS(10215), + [anon_sym_struct] = ACTIONS(10213), + [sym_auto] = ACTIONS(10213), + [anon_sym_signed] = ACTIONS(10213), + [anon_sym_long] = ACTIONS(10213), + [anon_sym_COLON_COLON] = ACTIONS(10215), + [anon_sym_using] = ACTIONS(10213), + [sym_preproc_directive] = ACTIONS(10213), + [aux_sym_preproc_if_token1] = ACTIONS(10213), + [anon_sym_AMP] = ACTIONS(10213), + [anon_sym_static] = ACTIONS(10213), + [anon_sym_STAR] = ACTIONS(10215), + [anon_sym_union] = ACTIONS(10213), + [anon_sym_typename] = ACTIONS(10213), + [anon_sym_short] = ACTIONS(10213), + [anon_sym_new] = ACTIONS(10213), + [anon_sym_goto] = ACTIONS(10213), + [sym_operator_name] = ACTIONS(10215), + [anon_sym_while] = ACTIONS(10213), + [anon_sym_try] = ACTIONS(10213), + [anon_sym_for] = ACTIONS(10213), + [aux_sym_preproc_include_token1] = ACTIONS(10213), + [anon_sym_register] = ACTIONS(10213), + [anon_sym_DQUOTE] = ACTIONS(10215), + [anon_sym_const] = ACTIONS(10213), + [anon_sym_LBRACK] = ACTIONS(10213), + [anon_sym_class] = ACTIONS(10213), + [anon_sym_if] = ACTIONS(10213), + [sym_primitive_type] = ACTIONS(10213), + [sym_false] = ACTIONS(10213), + [sym_nullptr] = ACTIONS(10213), + [anon_sym_do] = ACTIONS(10213), + [anon_sym_template] = ACTIONS(10213), + [anon_sym_return] = ACTIONS(10213), + [anon_sym_TILDE] = ACTIONS(10215), + [anon_sym_SEMI] = ACTIONS(10215), + [aux_sym_preproc_def_token1] = ACTIONS(10213), + [anon_sym_AMP_AMP] = ACTIONS(10215), + [anon_sym_inline] = ACTIONS(10213), + [anon_sym_PLUS_PLUS] = ACTIONS(10215), + [anon_sym_restrict] = ACTIONS(10213), }, - [4949] = { - [sym_do_statement] = STATE(5026), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4920] = { + [sym_do_statement] = STATE(4997), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(5026), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(5026), - [sym_if_statement] = STATE(5026), - [sym_switch_statement] = STATE(5026), - [sym_for_statement] = STATE(5026), - [sym_return_statement] = STATE(5026), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4997), + [sym_try_statement] = STATE(4997), + [sym_if_statement] = STATE(4997), + [sym_switch_statement] = STATE(4997), + [sym_for_statement] = STATE(4997), + [sym_return_statement] = STATE(4997), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(5026), - [sym_break_statement] = STATE(5026), - [sym_continue_statement] = STATE(5026), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4997), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5026), - [sym_labeled_statement] = STATE(5026), - [sym_expression_statement] = STATE(5026), - [sym_while_statement] = STATE(5026), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4997), + [sym_for_range_loop] = STATE(4997), + [sym_compound_statement] = STATE(4997), + [sym_labeled_statement] = STATE(4997), + [sym_expression_statement] = STATE(4997), + [sym_while_statement] = STATE(4997), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4950] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10774), + [4921] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10740), [sym_comment] = ACTIONS(3), }, - [4951] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5029), - [sym_logical_expression] = STATE(5029), - [sym_bitwise_expression] = STATE(5029), - [sym_cast_expression] = STATE(5029), - [sym_new_expression] = STATE(5029), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5029), - [sym_char_literal] = STATE(5029), - [sym_template_function] = STATE(5029), - [sym_conditional_expression] = STATE(5029), - [sym_equality_expression] = STATE(5029), - [sym_relational_expression] = STATE(5029), - [sym_delete_expression] = STATE(5029), - [sym_sizeof_expression] = STATE(5029), - [sym_parenthesized_expression] = STATE(5029), - [sym_lambda_expression] = STATE(5029), - [sym_concatenated_string] = STATE(5029), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5029), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5029), - [sym_math_expression] = STATE(5029), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10776), + [4922] = { + [sym_template_function] = STATE(5000), + [sym__expression] = STATE(5000), + [sym_logical_expression] = STATE(5000), + [sym_bitwise_expression] = STATE(5000), + [sym_cast_expression] = STATE(5000), + [sym_delete_expression] = STATE(5000), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5000), + [sym_lambda_expression] = STATE(5000), + [sym_char_literal] = STATE(5000), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5000), + [sym_equality_expression] = STATE(5000), + [sym_relational_expression] = STATE(5000), + [sym_sizeof_expression] = STATE(5000), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5000), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5000), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5000), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5000), + [sym_math_expression] = STATE(5000), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5000), + [sym_raw_string_literal] = ACTIONS(10742), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10778), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10778), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10744), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10744), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10776), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10742), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10778), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10778), + [sym_false] = ACTIONS(10744), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10744), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10780), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10746), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4952] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10782), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4923] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10748), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4953] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5031), - [sym_logical_expression] = STATE(5031), - [sym_bitwise_expression] = STATE(5031), - [sym_cast_expression] = STATE(5031), - [sym_new_expression] = STATE(5031), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(5031), - [sym_char_literal] = STATE(5031), - [sym_template_function] = STATE(5031), - [sym_conditional_expression] = STATE(5031), - [sym_equality_expression] = STATE(5031), - [sym_relational_expression] = STATE(5031), - [sym_delete_expression] = STATE(5031), - [sym_sizeof_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym_lambda_expression] = STATE(5031), - [sym_concatenated_string] = STATE(5031), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(5031), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(5031), - [sym_math_expression] = STATE(5031), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10784), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10786), - [sym_null] = ACTIONS(10786), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10784), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10786), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10786), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10782), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4924] = { + [sym_template_function] = STATE(5002), + [sym__expression] = STATE(5002), + [sym_logical_expression] = STATE(5002), + [sym_bitwise_expression] = STATE(5002), + [sym_cast_expression] = STATE(5002), + [sym_delete_expression] = STATE(5002), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(5002), + [sym_lambda_expression] = STATE(5002), + [sym_char_literal] = STATE(5002), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5002), + [sym_equality_expression] = STATE(5002), + [sym_relational_expression] = STATE(5002), + [sym_sizeof_expression] = STATE(5002), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5002), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(5002), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5002), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(5002), + [sym_math_expression] = STATE(5002), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(5002), + [sym_raw_string_literal] = ACTIONS(10750), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10752), + [sym_null] = ACTIONS(10752), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10750), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10752), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10752), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10748), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [4954] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5032), - [sym_logical_expression] = STATE(5032), - [sym_bitwise_expression] = STATE(5032), - [sym_cast_expression] = STATE(5032), - [sym_new_expression] = STATE(5032), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(5032), - [sym_char_literal] = STATE(5032), - [sym_template_function] = STATE(5032), - [sym_conditional_expression] = STATE(5032), - [sym_equality_expression] = STATE(5032), - [sym_relational_expression] = STATE(5032), - [sym_delete_expression] = STATE(5032), - [sym_sizeof_expression] = STATE(5032), - [sym_parenthesized_expression] = STATE(5032), - [sym_lambda_expression] = STATE(5032), - [sym_concatenated_string] = STATE(5032), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(5032), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(5032), - [sym_math_expression] = STATE(5032), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10788), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10790), - [sym_null] = ACTIONS(10790), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10788), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10790), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10790), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4925] = { + [sym_template_function] = STATE(5003), + [sym__expression] = STATE(5003), + [sym_logical_expression] = STATE(5003), + [sym_bitwise_expression] = STATE(5003), + [sym_cast_expression] = STATE(5003), + [sym_delete_expression] = STATE(5003), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(5003), + [sym_lambda_expression] = STATE(5003), + [sym_char_literal] = STATE(5003), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5003), + [sym_equality_expression] = STATE(5003), + [sym_relational_expression] = STATE(5003), + [sym_sizeof_expression] = STATE(5003), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5003), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(5003), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5003), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(5003), + [sym_math_expression] = STATE(5003), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(5003), + [sym_raw_string_literal] = ACTIONS(10754), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10756), + [sym_null] = ACTIONS(10756), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10754), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10756), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10756), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [4955] = { - [aux_sym_try_statement_repeat1] = STATE(4955), - [sym_catch_clause] = STATE(4955), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [anon_sym_else] = ACTIONS(5353), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [aux_sym_preproc_if_token2] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(9545), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_namespace] = ACTIONS(5353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_using] = ACTIONS(5353), - [sym_preproc_directive] = ACTIONS(5353), - [aux_sym_preproc_if_token1] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5353), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [sym_operator_name] = ACTIONS(5355), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [aux_sym_preproc_include_token1] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_template] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [aux_sym_preproc_def_token1] = ACTIONS(5353), - [anon_sym_AMP_AMP] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [4926] = { + [sym_catch_clause] = STATE(4926), + [aux_sym_try_statement_repeat1] = STATE(4926), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5352), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [aux_sym_preproc_if_token2] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(9513), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_namespace] = ACTIONS(5352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_using] = ACTIONS(5352), + [sym_preproc_directive] = ACTIONS(5352), + [aux_sym_preproc_if_token1] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [sym_operator_name] = ACTIONS(5354), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [aux_sym_preproc_include_token1] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_template] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [aux_sym_preproc_def_token1] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [4956] = { - [sym_do_statement] = STATE(5033), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4927] = { + [sym_do_statement] = STATE(5004), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(5033), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(5033), - [sym_if_statement] = STATE(5033), - [sym_switch_statement] = STATE(5033), - [sym_for_statement] = STATE(5033), - [sym_return_statement] = STATE(5033), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5004), + [sym_try_statement] = STATE(5004), + [sym_if_statement] = STATE(5004), + [sym_switch_statement] = STATE(5004), + [sym_for_statement] = STATE(5004), + [sym_return_statement] = STATE(5004), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(5033), - [sym_break_statement] = STATE(5033), - [sym_continue_statement] = STATE(5033), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5004), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5033), - [sym_labeled_statement] = STATE(5033), - [sym_expression_statement] = STATE(5033), - [sym_while_statement] = STATE(5033), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(5004), + [sym_for_range_loop] = STATE(5004), + [sym_compound_statement] = STATE(5004), + [sym_labeled_statement] = STATE(5004), + [sym_expression_statement] = STATE(5004), + [sym_while_statement] = STATE(5004), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4957] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10792), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4928] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10758), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4958] = { - [anon_sym_DASH] = ACTIONS(10275), - [sym_raw_string_literal] = ACTIONS(10277), - [anon_sym_else] = ACTIONS(10275), - [sym_true] = ACTIONS(10275), - [anon_sym_mutable] = ACTIONS(10275), - [sym_null] = ACTIONS(10275), - [anon_sym_break] = ACTIONS(10275), - [aux_sym_preproc_if_token2] = ACTIONS(10275), - [anon_sym_BANG] = ACTIONS(10277), - [anon_sym_sizeof] = ACTIONS(10275), - [anon_sym_volatile] = ACTIONS(10275), - [anon_sym_PLUS] = ACTIONS(10275), - [anon_sym_typedef] = ACTIONS(10275), - [anon_sym_switch] = ACTIONS(10275), - [anon_sym_explicit] = ACTIONS(10275), - [sym_identifier] = ACTIONS(10275), - [anon_sym_delete] = ACTIONS(10275), - [anon_sym_continue] = ACTIONS(10275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10275), - [anon_sym__Atomic] = ACTIONS(10275), - [sym_number_literal] = ACTIONS(10277), - [anon_sym_extern] = ACTIONS(10275), - [anon_sym_enum] = ACTIONS(10275), - [anon_sym_constexpr] = ACTIONS(10275), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10277), - [anon_sym_namespace] = ACTIONS(10275), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10275), - [anon_sym_SQUOTE] = ACTIONS(10277), - [anon_sym_LBRACE] = ACTIONS(10277), - [anon_sym_DASH_DASH] = ACTIONS(10277), - [anon_sym_LPAREN2] = ACTIONS(10277), - [anon_sym_struct] = ACTIONS(10275), - [sym_auto] = ACTIONS(10275), - [anon_sym_signed] = ACTIONS(10275), - [anon_sym_long] = ACTIONS(10275), - [anon_sym_COLON_COLON] = ACTIONS(10277), - [anon_sym_using] = ACTIONS(10275), - [sym_preproc_directive] = ACTIONS(10275), - [aux_sym_preproc_if_token1] = ACTIONS(10275), - [anon_sym_AMP] = ACTIONS(10275), - [anon_sym_static] = ACTIONS(10275), - [anon_sym_STAR] = ACTIONS(10277), - [anon_sym_union] = ACTIONS(10275), - [anon_sym_typename] = ACTIONS(10275), - [anon_sym_short] = ACTIONS(10275), - [anon_sym_new] = ACTIONS(10275), - [anon_sym_goto] = ACTIONS(10275), - [sym_operator_name] = ACTIONS(10277), - [anon_sym_while] = ACTIONS(10275), - [anon_sym_try] = ACTIONS(10275), - [anon_sym_for] = ACTIONS(10275), - [aux_sym_preproc_include_token1] = ACTIONS(10275), - [anon_sym_register] = ACTIONS(10275), - [anon_sym_DQUOTE] = ACTIONS(10277), - [anon_sym_const] = ACTIONS(10275), - [anon_sym_LBRACK] = ACTIONS(10275), - [anon_sym_class] = ACTIONS(10275), - [anon_sym_if] = ACTIONS(10275), - [sym_primitive_type] = ACTIONS(10275), - [sym_false] = ACTIONS(10275), - [sym_nullptr] = ACTIONS(10275), - [anon_sym_do] = ACTIONS(10275), - [anon_sym_template] = ACTIONS(10275), - [anon_sym_return] = ACTIONS(10275), - [anon_sym_TILDE] = ACTIONS(10277), - [anon_sym_SEMI] = ACTIONS(10277), - [aux_sym_preproc_def_token1] = ACTIONS(10275), - [anon_sym_AMP_AMP] = ACTIONS(10277), - [anon_sym_inline] = ACTIONS(10275), - [anon_sym_PLUS_PLUS] = ACTIONS(10277), - [anon_sym_restrict] = ACTIONS(10275), + [4929] = { + [anon_sym_DASH] = ACTIONS(10241), + [sym_raw_string_literal] = ACTIONS(10243), + [anon_sym_else] = ACTIONS(10241), + [sym_true] = ACTIONS(10241), + [anon_sym_mutable] = ACTIONS(10241), + [sym_null] = ACTIONS(10241), + [anon_sym_break] = ACTIONS(10241), + [aux_sym_preproc_if_token2] = ACTIONS(10241), + [anon_sym_BANG] = ACTIONS(10243), + [anon_sym_sizeof] = ACTIONS(10241), + [anon_sym_volatile] = ACTIONS(10241), + [anon_sym_PLUS] = ACTIONS(10241), + [anon_sym_typedef] = ACTIONS(10241), + [anon_sym_switch] = ACTIONS(10241), + [anon_sym_explicit] = ACTIONS(10241), + [sym_identifier] = ACTIONS(10241), + [anon_sym_delete] = ACTIONS(10241), + [anon_sym_continue] = ACTIONS(10241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10241), + [anon_sym__Atomic] = ACTIONS(10241), + [sym_number_literal] = ACTIONS(10243), + [anon_sym_extern] = ACTIONS(10241), + [anon_sym_enum] = ACTIONS(10241), + [anon_sym_constexpr] = ACTIONS(10241), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10243), + [anon_sym_namespace] = ACTIONS(10241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10241), + [anon_sym_SQUOTE] = ACTIONS(10243), + [anon_sym_LBRACE] = ACTIONS(10243), + [anon_sym_DASH_DASH] = ACTIONS(10243), + [anon_sym_LPAREN2] = ACTIONS(10243), + [anon_sym_struct] = ACTIONS(10241), + [sym_auto] = ACTIONS(10241), + [anon_sym_signed] = ACTIONS(10241), + [anon_sym_long] = ACTIONS(10241), + [anon_sym_COLON_COLON] = ACTIONS(10243), + [anon_sym_using] = ACTIONS(10241), + [sym_preproc_directive] = ACTIONS(10241), + [aux_sym_preproc_if_token1] = ACTIONS(10241), + [anon_sym_AMP] = ACTIONS(10241), + [anon_sym_static] = ACTIONS(10241), + [anon_sym_STAR] = ACTIONS(10243), + [anon_sym_union] = ACTIONS(10241), + [anon_sym_typename] = ACTIONS(10241), + [anon_sym_short] = ACTIONS(10241), + [anon_sym_new] = ACTIONS(10241), + [anon_sym_goto] = ACTIONS(10241), + [sym_operator_name] = ACTIONS(10243), + [anon_sym_while] = ACTIONS(10241), + [anon_sym_try] = ACTIONS(10241), + [anon_sym_for] = ACTIONS(10241), + [aux_sym_preproc_include_token1] = ACTIONS(10241), + [anon_sym_register] = ACTIONS(10241), + [anon_sym_DQUOTE] = ACTIONS(10243), + [anon_sym_const] = ACTIONS(10241), + [anon_sym_LBRACK] = ACTIONS(10241), + [anon_sym_class] = ACTIONS(10241), + [anon_sym_if] = ACTIONS(10241), + [sym_primitive_type] = ACTIONS(10241), + [sym_false] = ACTIONS(10241), + [sym_nullptr] = ACTIONS(10241), + [anon_sym_do] = ACTIONS(10241), + [anon_sym_template] = ACTIONS(10241), + [anon_sym_return] = ACTIONS(10241), + [anon_sym_TILDE] = ACTIONS(10243), + [anon_sym_SEMI] = ACTIONS(10243), + [aux_sym_preproc_def_token1] = ACTIONS(10241), + [anon_sym_AMP_AMP] = ACTIONS(10243), + [anon_sym_inline] = ACTIONS(10241), + [anon_sym_PLUS_PLUS] = ACTIONS(10243), + [anon_sym_restrict] = ACTIONS(10241), }, - [4959] = { - [anon_sym_DASH] = ACTIONS(10523), - [sym_raw_string_literal] = ACTIONS(10525), - [anon_sym_else] = ACTIONS(10523), - [sym_true] = ACTIONS(10523), - [anon_sym_mutable] = ACTIONS(10523), - [sym_null] = ACTIONS(10523), - [anon_sym_break] = ACTIONS(10523), - [aux_sym_preproc_if_token2] = ACTIONS(10523), - [anon_sym_BANG] = ACTIONS(10525), - [anon_sym_sizeof] = ACTIONS(10523), - [anon_sym_volatile] = ACTIONS(10523), - [anon_sym_PLUS] = ACTIONS(10523), - [anon_sym_typedef] = ACTIONS(10523), - [anon_sym_switch] = ACTIONS(10523), - [anon_sym_explicit] = ACTIONS(10523), - [sym_identifier] = ACTIONS(10523), - [anon_sym_delete] = ACTIONS(10523), - [anon_sym_continue] = ACTIONS(10523), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10523), - [anon_sym__Atomic] = ACTIONS(10523), - [sym_number_literal] = ACTIONS(10525), - [anon_sym_extern] = ACTIONS(10523), - [anon_sym_enum] = ACTIONS(10523), - [anon_sym_constexpr] = ACTIONS(10523), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10523), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10525), - [anon_sym_namespace] = ACTIONS(10523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10523), - [aux_sym_preproc_elif_token1] = ACTIONS(10523), - [anon_sym_SQUOTE] = ACTIONS(10525), - [anon_sym_LBRACE] = ACTIONS(10525), - [anon_sym_DASH_DASH] = ACTIONS(10525), - [anon_sym_LPAREN2] = ACTIONS(10525), - [anon_sym_struct] = ACTIONS(10523), - [sym_auto] = ACTIONS(10523), - [anon_sym_signed] = ACTIONS(10523), - [anon_sym_long] = ACTIONS(10523), - [anon_sym_COLON_COLON] = ACTIONS(10525), - [anon_sym_using] = ACTIONS(10523), - [aux_sym_preproc_else_token1] = ACTIONS(10523), - [sym_preproc_directive] = ACTIONS(10523), - [aux_sym_preproc_if_token1] = ACTIONS(10523), - [anon_sym_AMP] = ACTIONS(10523), - [anon_sym_static] = ACTIONS(10523), - [anon_sym_STAR] = ACTIONS(10525), - [anon_sym_union] = ACTIONS(10523), - [anon_sym_typename] = ACTIONS(10523), - [anon_sym_short] = ACTIONS(10523), - [anon_sym_new] = ACTIONS(10523), - [anon_sym_goto] = ACTIONS(10523), - [sym_operator_name] = ACTIONS(10525), - [anon_sym_while] = ACTIONS(10523), - [anon_sym_try] = ACTIONS(10523), - [anon_sym_for] = ACTIONS(10523), - [aux_sym_preproc_include_token1] = ACTIONS(10523), - [anon_sym_register] = ACTIONS(10523), - [anon_sym_DQUOTE] = ACTIONS(10525), - [anon_sym_const] = ACTIONS(10523), - [anon_sym_LBRACK] = ACTIONS(10523), - [anon_sym_class] = ACTIONS(10523), - [anon_sym_if] = ACTIONS(10523), - [sym_primitive_type] = ACTIONS(10523), - [sym_false] = ACTIONS(10523), - [sym_nullptr] = ACTIONS(10523), - [anon_sym_do] = ACTIONS(10523), - [anon_sym_template] = ACTIONS(10523), - [anon_sym_return] = ACTIONS(10523), - [anon_sym_TILDE] = ACTIONS(10525), - [anon_sym_SEMI] = ACTIONS(10525), - [aux_sym_preproc_def_token1] = ACTIONS(10523), - [anon_sym_AMP_AMP] = ACTIONS(10525), - [anon_sym_inline] = ACTIONS(10523), - [anon_sym_PLUS_PLUS] = ACTIONS(10525), - [anon_sym_restrict] = ACTIONS(10523), + [4930] = { + [anon_sym_DASH] = ACTIONS(10489), + [sym_raw_string_literal] = ACTIONS(10491), + [anon_sym_else] = ACTIONS(10489), + [sym_true] = ACTIONS(10489), + [anon_sym_mutable] = ACTIONS(10489), + [sym_null] = ACTIONS(10489), + [anon_sym_break] = ACTIONS(10489), + [aux_sym_preproc_if_token2] = ACTIONS(10489), + [anon_sym_BANG] = ACTIONS(10491), + [anon_sym_sizeof] = ACTIONS(10489), + [anon_sym_volatile] = ACTIONS(10489), + [anon_sym_PLUS] = ACTIONS(10489), + [anon_sym_typedef] = ACTIONS(10489), + [anon_sym_switch] = ACTIONS(10489), + [anon_sym_explicit] = ACTIONS(10489), + [sym_identifier] = ACTIONS(10489), + [anon_sym_delete] = ACTIONS(10489), + [anon_sym_continue] = ACTIONS(10489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10489), + [anon_sym__Atomic] = ACTIONS(10489), + [sym_number_literal] = ACTIONS(10491), + [anon_sym_extern] = ACTIONS(10489), + [anon_sym_enum] = ACTIONS(10489), + [anon_sym_constexpr] = ACTIONS(10489), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10491), + [anon_sym_namespace] = ACTIONS(10489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10489), + [aux_sym_preproc_elif_token1] = ACTIONS(10489), + [anon_sym_SQUOTE] = ACTIONS(10491), + [anon_sym_LBRACE] = ACTIONS(10491), + [anon_sym_DASH_DASH] = ACTIONS(10491), + [anon_sym_LPAREN2] = ACTIONS(10491), + [anon_sym_struct] = ACTIONS(10489), + [sym_auto] = ACTIONS(10489), + [anon_sym_signed] = ACTIONS(10489), + [anon_sym_long] = ACTIONS(10489), + [anon_sym_COLON_COLON] = ACTIONS(10491), + [anon_sym_using] = ACTIONS(10489), + [aux_sym_preproc_else_token1] = ACTIONS(10489), + [sym_preproc_directive] = ACTIONS(10489), + [aux_sym_preproc_if_token1] = ACTIONS(10489), + [anon_sym_AMP] = ACTIONS(10489), + [anon_sym_static] = ACTIONS(10489), + [anon_sym_STAR] = ACTIONS(10491), + [anon_sym_union] = ACTIONS(10489), + [anon_sym_typename] = ACTIONS(10489), + [anon_sym_short] = ACTIONS(10489), + [anon_sym_new] = ACTIONS(10489), + [anon_sym_goto] = ACTIONS(10489), + [sym_operator_name] = ACTIONS(10491), + [anon_sym_while] = ACTIONS(10489), + [anon_sym_try] = ACTIONS(10489), + [anon_sym_for] = ACTIONS(10489), + [aux_sym_preproc_include_token1] = ACTIONS(10489), + [anon_sym_register] = ACTIONS(10489), + [anon_sym_DQUOTE] = ACTIONS(10491), + [anon_sym_const] = ACTIONS(10489), + [anon_sym_LBRACK] = ACTIONS(10489), + [anon_sym_class] = ACTIONS(10489), + [anon_sym_if] = ACTIONS(10489), + [sym_primitive_type] = ACTIONS(10489), + [sym_false] = ACTIONS(10489), + [sym_nullptr] = ACTIONS(10489), + [anon_sym_do] = ACTIONS(10489), + [anon_sym_template] = ACTIONS(10489), + [anon_sym_return] = ACTIONS(10489), + [anon_sym_TILDE] = ACTIONS(10491), + [anon_sym_SEMI] = ACTIONS(10491), + [aux_sym_preproc_def_token1] = ACTIONS(10489), + [anon_sym_AMP_AMP] = ACTIONS(10491), + [anon_sym_inline] = ACTIONS(10489), + [anon_sym_PLUS_PLUS] = ACTIONS(10491), + [anon_sym_restrict] = ACTIONS(10489), }, - [4960] = { - [sym_do_statement] = STATE(5035), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4931] = { + [sym_do_statement] = STATE(5006), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(5035), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(5035), - [sym_if_statement] = STATE(5035), - [sym_switch_statement] = STATE(5035), - [sym_for_statement] = STATE(5035), - [sym_return_statement] = STATE(5035), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5006), + [sym_try_statement] = STATE(5006), + [sym_if_statement] = STATE(5006), + [sym_switch_statement] = STATE(5006), + [sym_for_statement] = STATE(5006), + [sym_return_statement] = STATE(5006), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(5035), - [sym_break_statement] = STATE(5035), - [sym_continue_statement] = STATE(5035), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5006), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5035), - [sym_labeled_statement] = STATE(5035), - [sym_expression_statement] = STATE(5035), - [sym_while_statement] = STATE(5035), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(5006), + [sym_for_range_loop] = STATE(5006), + [sym_compound_statement] = STATE(5006), + [sym_labeled_statement] = STATE(5006), + [sym_expression_statement] = STATE(5006), + [sym_while_statement] = STATE(5006), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(4535), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(4533), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_while] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_while] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(850), + [anon_sym_if] = ACTIONS(854), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4961] = { - [sym_do_statement] = STATE(4407), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4932] = { + [sym_do_statement] = STATE(4378), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4407), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4407), - [sym_if_statement] = STATE(4407), - [sym_switch_statement] = STATE(4407), - [sym_for_statement] = STATE(4407), - [sym_return_statement] = STATE(4407), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4378), + [sym_try_statement] = STATE(4378), + [sym_if_statement] = STATE(4378), + [sym_switch_statement] = STATE(4378), + [sym_for_statement] = STATE(4378), + [sym_return_statement] = STATE(4378), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4407), - [sym_break_statement] = STATE(4407), - [sym_continue_statement] = STATE(4407), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4378), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4407), - [sym_labeled_statement] = STATE(4407), - [sym_expression_statement] = STATE(4407), - [sym_while_statement] = STATE(4407), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4378), + [sym_for_range_loop] = STATE(4378), + [sym_compound_statement] = STATE(4378), + [sym_labeled_statement] = STATE(4378), + [sym_expression_statement] = STATE(4378), + [sym_while_statement] = STATE(4378), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4962] = { - [aux_sym_for_statement_repeat1] = STATE(5037), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10794), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4933] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5008), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10760), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4963] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5038), - [sym_logical_expression] = STATE(5038), - [sym_bitwise_expression] = STATE(5038), - [sym_cast_expression] = STATE(5038), - [sym_new_expression] = STATE(5038), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5038), - [sym_char_literal] = STATE(5038), - [sym_template_function] = STATE(5038), - [sym_conditional_expression] = STATE(5038), - [sym_equality_expression] = STATE(5038), - [sym_relational_expression] = STATE(5038), - [sym_delete_expression] = STATE(5038), - [sym_sizeof_expression] = STATE(5038), - [sym_parenthesized_expression] = STATE(5038), - [sym_lambda_expression] = STATE(5038), - [sym_concatenated_string] = STATE(5038), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5038), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5038), - [sym_math_expression] = STATE(5038), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10796), + [4934] = { + [sym_template_function] = STATE(5009), + [sym__expression] = STATE(5009), + [sym_logical_expression] = STATE(5009), + [sym_bitwise_expression] = STATE(5009), + [sym_cast_expression] = STATE(5009), + [sym_delete_expression] = STATE(5009), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5009), + [sym_lambda_expression] = STATE(5009), + [sym_char_literal] = STATE(5009), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5009), + [sym_equality_expression] = STATE(5009), + [sym_relational_expression] = STATE(5009), + [sym_sizeof_expression] = STATE(5009), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5009), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5009), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5009), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5009), + [sym_math_expression] = STATE(5009), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5009), + [sym_raw_string_literal] = ACTIONS(10762), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10798), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10798), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10764), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10764), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10796), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10762), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10798), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10798), + [sym_false] = ACTIONS(10764), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10764), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10794), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10760), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4964] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10800), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4935] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10766), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4965] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10802), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4936] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10768), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4966] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(10804), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [aux_sym_preproc_if_token2] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_namespace] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7770), - [aux_sym_preproc_elif_token1] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_using] = ACTIONS(7770), - [aux_sym_preproc_else_token1] = ACTIONS(7770), - [sym_preproc_directive] = ACTIONS(7770), - [aux_sym_preproc_if_token1] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7770), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [sym_operator_name] = ACTIONS(7772), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [aux_sym_preproc_include_token1] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_template] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7770), - [anon_sym_AMP_AMP] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [4937] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(10770), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [aux_sym_preproc_if_token2] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_namespace] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7751), + [aux_sym_preproc_elif_token1] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_using] = ACTIONS(7751), + [aux_sym_preproc_else_token1] = ACTIONS(7751), + [sym_preproc_directive] = ACTIONS(7751), + [aux_sym_preproc_if_token1] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [sym_operator_name] = ACTIONS(7753), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [aux_sym_preproc_include_token1] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [aux_sym_preproc_def_token1] = ACTIONS(7751), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [4967] = { - [sym_do_statement] = STATE(5042), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [4938] = { + [sym_do_statement] = STATE(5013), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(5042), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(5042), - [sym_if_statement] = STATE(5042), - [sym_switch_statement] = STATE(5042), - [sym_for_statement] = STATE(5042), - [sym_return_statement] = STATE(5042), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5013), + [sym_try_statement] = STATE(5013), + [sym_if_statement] = STATE(5013), + [sym_switch_statement] = STATE(5013), + [sym_for_statement] = STATE(5013), + [sym_return_statement] = STATE(5013), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(5042), - [sym_break_statement] = STATE(5042), - [sym_continue_statement] = STATE(5042), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5013), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5042), - [sym_labeled_statement] = STATE(5042), - [sym_expression_statement] = STATE(5042), - [sym_while_statement] = STATE(5042), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(5013), + [sym_for_range_loop] = STATE(5013), + [sym_compound_statement] = STATE(5013), + [sym_labeled_statement] = STATE(5013), + [sym_expression_statement] = STATE(5013), + [sym_while_statement] = STATE(5013), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4968] = { - [sym_do_statement] = STATE(4153), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4939] = { + [sym_do_statement] = STATE(4123), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4153), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4153), - [sym_if_statement] = STATE(4153), - [sym_switch_statement] = STATE(4153), - [sym_for_statement] = STATE(4153), - [sym_return_statement] = STATE(4153), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4123), + [sym_try_statement] = STATE(4123), + [sym_if_statement] = STATE(4123), + [sym_switch_statement] = STATE(4123), + [sym_for_statement] = STATE(4123), + [sym_return_statement] = STATE(4123), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4153), - [sym_break_statement] = STATE(4153), - [sym_continue_statement] = STATE(4153), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4123), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4153), - [sym_labeled_statement] = STATE(4153), - [sym_expression_statement] = STATE(4153), - [sym_while_statement] = STATE(4153), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4123), + [sym_for_range_loop] = STATE(4123), + [sym_compound_statement] = STATE(4123), + [sym_labeled_statement] = STATE(4123), + [sym_expression_statement] = STATE(4123), + [sym_while_statement] = STATE(4123), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -201693,18 +201142,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -201717,145 +201166,145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4969] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10806), + [4940] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10772), [sym_comment] = ACTIONS(3), }, - [4970] = { - [aux_sym_for_statement_repeat1] = STATE(5044), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10806), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4941] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5015), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10772), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4971] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5045), - [sym_logical_expression] = STATE(5045), - [sym_bitwise_expression] = STATE(5045), - [sym_cast_expression] = STATE(5045), - [sym_new_expression] = STATE(5045), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5045), - [sym_char_literal] = STATE(5045), - [sym_template_function] = STATE(5045), - [sym_conditional_expression] = STATE(5045), - [sym_equality_expression] = STATE(5045), - [sym_relational_expression] = STATE(5045), - [sym_delete_expression] = STATE(5045), - [sym_sizeof_expression] = STATE(5045), - [sym_parenthesized_expression] = STATE(5045), - [sym_lambda_expression] = STATE(5045), - [sym_concatenated_string] = STATE(5045), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5045), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5045), - [sym_math_expression] = STATE(5045), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10808), + [4942] = { + [sym_template_function] = STATE(5016), + [sym__expression] = STATE(5016), + [sym_logical_expression] = STATE(5016), + [sym_bitwise_expression] = STATE(5016), + [sym_cast_expression] = STATE(5016), + [sym_delete_expression] = STATE(5016), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5016), + [sym_lambda_expression] = STATE(5016), + [sym_char_literal] = STATE(5016), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5016), + [sym_equality_expression] = STATE(5016), + [sym_relational_expression] = STATE(5016), + [sym_sizeof_expression] = STATE(5016), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5016), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5016), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5016), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5016), + [sym_math_expression] = STATE(5016), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5016), + [sym_raw_string_literal] = ACTIONS(10774), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10810), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10810), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10776), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10776), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10808), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10774), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10810), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10810), + [sym_false] = ACTIONS(10776), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10776), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10806), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10772), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4972] = { - [sym_do_statement] = STATE(4159), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4943] = { + [sym_do_statement] = STATE(4129), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4159), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4159), - [sym_if_statement] = STATE(4159), - [sym_switch_statement] = STATE(4159), - [sym_for_statement] = STATE(4159), - [sym_return_statement] = STATE(4159), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4129), + [sym_try_statement] = STATE(4129), + [sym_if_statement] = STATE(4129), + [sym_switch_statement] = STATE(4129), + [sym_for_statement] = STATE(4129), + [sym_return_statement] = STATE(4129), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4159), - [sym_break_statement] = STATE(4159), - [sym_continue_statement] = STATE(4159), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4129), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4159), - [sym_labeled_statement] = STATE(4159), - [sym_expression_statement] = STATE(4159), - [sym_while_statement] = STATE(4159), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4129), + [sym_for_range_loop] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_labeled_statement] = STATE(4129), + [sym_expression_statement] = STATE(4129), + [sym_while_statement] = STATE(4129), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -201869,18 +201318,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -201893,51 +201342,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4973] = { - [sym_do_statement] = STATE(4210), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4944] = { + [sym_do_statement] = STATE(4180), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4210), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4210), - [sym_if_statement] = STATE(4210), - [sym_switch_statement] = STATE(4210), - [sym_for_statement] = STATE(4210), - [sym_return_statement] = STATE(4210), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4180), + [sym_try_statement] = STATE(4180), + [sym_if_statement] = STATE(4180), + [sym_switch_statement] = STATE(4180), + [sym_for_statement] = STATE(4180), + [sym_return_statement] = STATE(4180), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4210), - [sym_break_statement] = STATE(4210), - [sym_continue_statement] = STATE(4210), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4180), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4210), - [sym_labeled_statement] = STATE(4210), - [sym_expression_statement] = STATE(4210), - [sym_while_statement] = STATE(4210), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4180), + [sym_for_range_loop] = STATE(4180), + [sym_compound_statement] = STATE(4180), + [sym_labeled_statement] = STATE(4180), + [sym_expression_statement] = STATE(4180), + [sym_while_statement] = STATE(4180), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -201951,18 +201400,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -201975,445 +201424,449 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4974] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(10812), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_namespace] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_using] = ACTIONS(9003), - [sym_preproc_directive] = ACTIONS(9003), - [aux_sym_preproc_if_token1] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9003), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_RBRACE] = ACTIONS(9005), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [sym_operator_name] = ACTIONS(9005), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [aux_sym_preproc_include_token1] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_template] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [aux_sym_preproc_def_token1] = ACTIONS(9003), - [anon_sym_AMP_AMP] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), + [4945] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(10778), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_namespace] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_using] = ACTIONS(8967), + [sym_preproc_directive] = ACTIONS(8967), + [aux_sym_preproc_if_token1] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8967), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_RBRACE] = ACTIONS(8969), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [sym_operator_name] = ACTIONS(8969), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [aux_sym_preproc_include_token1] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_template] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [aux_sym_preproc_def_token1] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), }, - [4975] = { - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_struct] = ACTIONS(8329), - [sym_auto] = ACTIONS(8329), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_using] = ACTIONS(8329), - [aux_sym_preproc_if_token2] = ACTIONS(8329), - [sym_preproc_directive] = ACTIONS(8329), - [aux_sym_preproc_if_token1] = ACTIONS(8329), - [anon_sym_AMP] = ACTIONS(8329), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [anon_sym_private] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [sym_identifier] = ACTIONS(8329), - [sym_operator_name] = ACTIONS(8331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym_virtual] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_public] = ACTIONS(8329), - [anon_sym_protected] = ACTIONS(8329), - [anon_sym_friend] = ACTIONS(8329), - [anon_sym_template] = ACTIONS(8329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), - [anon_sym_TILDE] = ACTIONS(8331), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8329), - [anon_sym_AMP_AMP] = ACTIONS(8331), - [anon_sym_inline] = ACTIONS(8329), - [anon_sym_restrict] = ACTIONS(8329), + [4946] = { + [anon_sym_LPAREN2] = ACTIONS(8297), + [anon_sym_struct] = ACTIONS(8295), + [sym_auto] = ACTIONS(8295), + [anon_sym_signed] = ACTIONS(8295), + [anon_sym_mutable] = ACTIONS(8295), + [anon_sym_long] = ACTIONS(8295), + [anon_sym_COLON_COLON] = ACTIONS(8297), + [anon_sym_using] = ACTIONS(8295), + [aux_sym_preproc_if_token2] = ACTIONS(8295), + [sym_preproc_directive] = ACTIONS(8295), + [aux_sym_preproc_if_token1] = ACTIONS(8295), + [anon_sym_AMP] = ACTIONS(8295), + [anon_sym_static] = ACTIONS(8295), + [anon_sym_volatile] = ACTIONS(8295), + [anon_sym_typedef] = ACTIONS(8295), + [anon_sym_STAR] = ACTIONS(8297), + [anon_sym_union] = ACTIONS(8295), + [anon_sym_typename] = ACTIONS(8295), + [anon_sym_private] = ACTIONS(8295), + [anon_sym_explicit] = ACTIONS(8295), + [anon_sym_short] = ACTIONS(8295), + [sym_identifier] = ACTIONS(8295), + [sym_operator_name] = ACTIONS(8297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8295), + [anon_sym_register] = ACTIONS(8295), + [anon_sym__Atomic] = ACTIONS(8295), + [anon_sym_const] = ACTIONS(8295), + [anon_sym_extern] = ACTIONS(8295), + [anon_sym_LBRACK] = ACTIONS(8295), + [anon_sym_virtual] = ACTIONS(8295), + [anon_sym_enum] = ACTIONS(8295), + [anon_sym_class] = ACTIONS(8295), + [anon_sym_constexpr] = ACTIONS(8295), + [sym_primitive_type] = ACTIONS(8295), + [anon_sym_unsigned] = ACTIONS(8295), + [anon_sym_public] = ACTIONS(8295), + [anon_sym_protected] = ACTIONS(8295), + [anon_sym_friend] = ACTIONS(8295), + [anon_sym_template] = ACTIONS(8295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8295), + [anon_sym_TILDE] = ACTIONS(8297), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(8295), + [anon_sym_AMP_AMP] = ACTIONS(8297), + [anon_sym_inline] = ACTIONS(8295), + [anon_sym_restrict] = ACTIONS(8295), }, - [4976] = { - [anon_sym_LPAREN2] = ACTIONS(10220), - [anon_sym_struct] = ACTIONS(10222), - [sym_auto] = ACTIONS(10222), - [anon_sym_signed] = ACTIONS(10222), - [anon_sym_mutable] = ACTIONS(10222), - [anon_sym_long] = ACTIONS(10222), - [anon_sym_COLON_COLON] = ACTIONS(10220), - [anon_sym_using] = ACTIONS(10222), - [aux_sym_preproc_if_token2] = ACTIONS(10222), - [sym_preproc_directive] = ACTIONS(10222), - [aux_sym_preproc_if_token1] = ACTIONS(10222), - [anon_sym_AMP] = ACTIONS(10222), - [anon_sym_static] = ACTIONS(10222), - [anon_sym_volatile] = ACTIONS(10222), - [anon_sym_typedef] = ACTIONS(10222), - [anon_sym_STAR] = ACTIONS(10220), - [anon_sym_union] = ACTIONS(10222), - [anon_sym_typename] = ACTIONS(10222), - [anon_sym_private] = ACTIONS(10222), - [anon_sym_explicit] = ACTIONS(10222), - [anon_sym_short] = ACTIONS(10222), - [sym_identifier] = ACTIONS(10222), - [sym_operator_name] = ACTIONS(10220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10222), - [anon_sym_register] = ACTIONS(10222), - [anon_sym__Atomic] = ACTIONS(10222), - [anon_sym_const] = ACTIONS(10222), - [anon_sym_extern] = ACTIONS(10222), - [anon_sym_virtual] = ACTIONS(10222), - [anon_sym_enum] = ACTIONS(10222), - [anon_sym_class] = ACTIONS(10222), - [anon_sym_constexpr] = ACTIONS(10222), - [sym_primitive_type] = ACTIONS(10222), - [anon_sym_unsigned] = ACTIONS(10222), - [anon_sym_public] = ACTIONS(10222), - [anon_sym_protected] = ACTIONS(10222), - [anon_sym_friend] = ACTIONS(10222), - [anon_sym_template] = ACTIONS(10222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10222), - [anon_sym_TILDE] = ACTIONS(10220), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(10222), - [anon_sym_AMP_AMP] = ACTIONS(10220), - [anon_sym_inline] = ACTIONS(10222), - [anon_sym_restrict] = ACTIONS(10222), + [4947] = { + [anon_sym_LPAREN2] = ACTIONS(10186), + [anon_sym_struct] = ACTIONS(10188), + [sym_auto] = ACTIONS(10188), + [anon_sym_signed] = ACTIONS(10188), + [anon_sym_mutable] = ACTIONS(10188), + [anon_sym_long] = ACTIONS(10188), + [anon_sym_COLON_COLON] = ACTIONS(10186), + [anon_sym_using] = ACTIONS(10188), + [aux_sym_preproc_if_token2] = ACTIONS(10188), + [sym_preproc_directive] = ACTIONS(10188), + [aux_sym_preproc_if_token1] = ACTIONS(10188), + [anon_sym_AMP] = ACTIONS(10188), + [anon_sym_static] = ACTIONS(10188), + [anon_sym_volatile] = ACTIONS(10188), + [anon_sym_typedef] = ACTIONS(10188), + [anon_sym_STAR] = ACTIONS(10186), + [anon_sym_union] = ACTIONS(10188), + [anon_sym_typename] = ACTIONS(10188), + [anon_sym_private] = ACTIONS(10188), + [anon_sym_explicit] = ACTIONS(10188), + [anon_sym_short] = ACTIONS(10188), + [sym_identifier] = ACTIONS(10188), + [sym_operator_name] = ACTIONS(10186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10188), + [anon_sym_register] = ACTIONS(10188), + [anon_sym__Atomic] = ACTIONS(10188), + [anon_sym_const] = ACTIONS(10188), + [anon_sym_extern] = ACTIONS(10188), + [anon_sym_LBRACK] = ACTIONS(10188), + [anon_sym_virtual] = ACTIONS(10188), + [anon_sym_enum] = ACTIONS(10188), + [anon_sym_class] = ACTIONS(10188), + [anon_sym_constexpr] = ACTIONS(10188), + [sym_primitive_type] = ACTIONS(10188), + [anon_sym_unsigned] = ACTIONS(10188), + [anon_sym_public] = ACTIONS(10188), + [anon_sym_protected] = ACTIONS(10188), + [anon_sym_friend] = ACTIONS(10188), + [anon_sym_template] = ACTIONS(10188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10188), + [anon_sym_TILDE] = ACTIONS(10186), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(10188), + [anon_sym_AMP_AMP] = ACTIONS(10186), + [anon_sym_inline] = ACTIONS(10188), + [anon_sym_restrict] = ACTIONS(10188), }, - [4977] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10814), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4948] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10780), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4978] = { + [4949] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10814), + [anon_sym_SEMI] = ACTIONS(10780), }, - [4979] = { - [anon_sym_LPAREN2] = ACTIONS(8309), - [anon_sym_struct] = ACTIONS(8307), - [sym_auto] = ACTIONS(8307), - [anon_sym_signed] = ACTIONS(8307), - [anon_sym_mutable] = ACTIONS(8307), - [anon_sym_long] = ACTIONS(8307), - [anon_sym_COLON_COLON] = ACTIONS(8309), - [anon_sym_using] = ACTIONS(8307), - [aux_sym_preproc_if_token2] = ACTIONS(8307), - [sym_preproc_directive] = ACTIONS(8307), - [aux_sym_preproc_if_token1] = ACTIONS(8307), - [anon_sym_AMP] = ACTIONS(8307), - [anon_sym_static] = ACTIONS(8307), - [anon_sym_volatile] = ACTIONS(8307), - [anon_sym_typedef] = ACTIONS(8307), - [anon_sym_STAR] = ACTIONS(8309), - [anon_sym_union] = ACTIONS(8307), - [anon_sym_typename] = ACTIONS(8307), - [anon_sym_private] = ACTIONS(8307), - [anon_sym_explicit] = ACTIONS(8307), - [anon_sym_short] = ACTIONS(8307), - [sym_identifier] = ACTIONS(8307), - [sym_operator_name] = ACTIONS(8309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8307), - [anon_sym_register] = ACTIONS(8307), - [anon_sym__Atomic] = ACTIONS(8307), - [anon_sym_const] = ACTIONS(8307), - [anon_sym_extern] = ACTIONS(8307), - [anon_sym_virtual] = ACTIONS(8307), - [anon_sym_enum] = ACTIONS(8307), - [anon_sym_class] = ACTIONS(8307), - [anon_sym_constexpr] = ACTIONS(8307), - [sym_primitive_type] = ACTIONS(8307), - [anon_sym_unsigned] = ACTIONS(8307), - [anon_sym_public] = ACTIONS(8307), - [anon_sym_protected] = ACTIONS(8307), - [anon_sym_friend] = ACTIONS(8307), - [anon_sym_template] = ACTIONS(8307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8307), - [anon_sym_TILDE] = ACTIONS(8309), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_inline] = ACTIONS(8307), - [anon_sym_restrict] = ACTIONS(8307), + [4950] = { + [anon_sym_LPAREN2] = ACTIONS(7889), + [anon_sym_struct] = ACTIONS(7887), + [sym_auto] = ACTIONS(7887), + [anon_sym_signed] = ACTIONS(7887), + [anon_sym_mutable] = ACTIONS(7887), + [anon_sym_long] = ACTIONS(7887), + [anon_sym_COLON_COLON] = ACTIONS(7889), + [anon_sym_using] = ACTIONS(7887), + [aux_sym_preproc_if_token2] = ACTIONS(7887), + [sym_preproc_directive] = ACTIONS(7887), + [aux_sym_preproc_if_token1] = ACTIONS(7887), + [anon_sym_AMP] = ACTIONS(7887), + [anon_sym_static] = ACTIONS(7887), + [anon_sym_volatile] = ACTIONS(7887), + [anon_sym_typedef] = ACTIONS(7887), + [anon_sym_STAR] = ACTIONS(7889), + [anon_sym_union] = ACTIONS(7887), + [anon_sym_typename] = ACTIONS(7887), + [anon_sym_private] = ACTIONS(7887), + [anon_sym_explicit] = ACTIONS(7887), + [anon_sym_short] = ACTIONS(7887), + [sym_identifier] = ACTIONS(7887), + [sym_operator_name] = ACTIONS(7889), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7887), + [anon_sym_register] = ACTIONS(7887), + [anon_sym__Atomic] = ACTIONS(7887), + [anon_sym_const] = ACTIONS(7887), + [anon_sym_extern] = ACTIONS(7887), + [anon_sym_LBRACK] = ACTIONS(7887), + [anon_sym_virtual] = ACTIONS(7887), + [anon_sym_enum] = ACTIONS(7887), + [anon_sym_class] = ACTIONS(7887), + [anon_sym_constexpr] = ACTIONS(7887), + [sym_primitive_type] = ACTIONS(7887), + [anon_sym_unsigned] = ACTIONS(7887), + [anon_sym_public] = ACTIONS(7887), + [anon_sym_protected] = ACTIONS(7887), + [anon_sym_friend] = ACTIONS(7887), + [anon_sym_template] = ACTIONS(7887), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7889), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7887), + [anon_sym_TILDE] = ACTIONS(7889), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(7887), + [anon_sym_AMP_AMP] = ACTIONS(7889), + [anon_sym_inline] = ACTIONS(7887), + [anon_sym_restrict] = ACTIONS(7887), }, - [4980] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5048), - [sym_logical_expression] = STATE(5048), - [sym_bitwise_expression] = STATE(5048), - [sym_cast_expression] = STATE(5048), - [sym_new_expression] = STATE(5048), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(5048), - [sym_char_literal] = STATE(5048), - [sym_template_function] = STATE(5048), - [sym_conditional_expression] = STATE(5048), - [sym_equality_expression] = STATE(5048), - [sym_relational_expression] = STATE(5048), - [sym_delete_expression] = STATE(5048), - [sym_sizeof_expression] = STATE(5048), - [sym_parenthesized_expression] = STATE(5048), - [sym_initializer_list] = STATE(5049), - [sym_concatenated_string] = STATE(5048), - [sym_string_literal] = STATE(300), - [sym_lambda_expression] = STATE(5048), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(5048), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(5048), - [sym_math_expression] = STATE(5048), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10816), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10818), - [anon_sym_DASH_DASH] = ACTIONS(486), - [sym_null] = ACTIONS(10818), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10816), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10818), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10818), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), + [4951] = { + [sym_template_function] = STATE(5019), + [sym__expression] = STATE(5019), + [sym_logical_expression] = STATE(5019), + [sym_bitwise_expression] = STATE(5019), + [sym_cast_expression] = STATE(5019), + [sym_delete_expression] = STATE(5019), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(5019), + [sym_lambda_expression] = STATE(5019), + [sym_char_literal] = STATE(5019), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5019), + [sym_equality_expression] = STATE(5019), + [sym_relational_expression] = STATE(5019), + [sym_sizeof_expression] = STATE(5019), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_initializer_list] = STATE(5020), + [sym_parenthesized_expression] = STATE(5019), + [sym_string_literal] = STATE(302), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(5019), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5019), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(5019), + [sym_math_expression] = STATE(5019), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(5019), + [sym_raw_string_literal] = ACTIONS(10782), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10784), + [anon_sym_DASH_DASH] = ACTIONS(490), + [sym_null] = ACTIONS(10784), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10782), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10784), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10784), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), [anon_sym_LBRACE] = ACTIONS(175), }, - [4981] = { - [anon_sym_LPAREN2] = ACTIONS(10510), - [anon_sym_struct] = ACTIONS(10512), - [sym_auto] = ACTIONS(10512), - [anon_sym_signed] = ACTIONS(10512), - [anon_sym_mutable] = ACTIONS(10512), - [anon_sym_long] = ACTIONS(10512), - [anon_sym_COLON_COLON] = ACTIONS(10510), - [anon_sym_using] = ACTIONS(10512), - [aux_sym_preproc_else_token1] = ACTIONS(10512), - [aux_sym_preproc_if_token2] = ACTIONS(10512), - [sym_preproc_directive] = ACTIONS(10512), - [aux_sym_preproc_if_token1] = ACTIONS(10512), - [anon_sym_AMP] = ACTIONS(10512), - [anon_sym_static] = ACTIONS(10512), - [anon_sym_volatile] = ACTIONS(10512), - [anon_sym_typedef] = ACTIONS(10512), - [anon_sym_STAR] = ACTIONS(10510), - [anon_sym_union] = ACTIONS(10512), - [anon_sym_typename] = ACTIONS(10512), - [anon_sym_private] = ACTIONS(10512), - [anon_sym_explicit] = ACTIONS(10512), - [anon_sym_short] = ACTIONS(10512), - [sym_identifier] = ACTIONS(10512), - [sym_operator_name] = ACTIONS(10510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10512), - [anon_sym_register] = ACTIONS(10512), - [anon_sym__Atomic] = ACTIONS(10512), - [anon_sym_const] = ACTIONS(10512), - [anon_sym_extern] = ACTIONS(10512), - [anon_sym_virtual] = ACTIONS(10512), - [anon_sym_enum] = ACTIONS(10512), - [anon_sym_class] = ACTIONS(10512), - [anon_sym_constexpr] = ACTIONS(10512), - [sym_primitive_type] = ACTIONS(10512), - [anon_sym_unsigned] = ACTIONS(10512), - [anon_sym_public] = ACTIONS(10512), - [anon_sym_protected] = ACTIONS(10512), - [anon_sym_friend] = ACTIONS(10512), - [anon_sym_template] = ACTIONS(10512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10512), - [anon_sym_TILDE] = ACTIONS(10510), - [aux_sym_preproc_elif_token1] = ACTIONS(10512), - [aux_sym_preproc_def_token1] = ACTIONS(10512), - [anon_sym_AMP_AMP] = ACTIONS(10510), - [anon_sym_inline] = ACTIONS(10512), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(10512), + [4952] = { + [anon_sym_LPAREN2] = ACTIONS(10476), + [anon_sym_struct] = ACTIONS(10478), + [sym_auto] = ACTIONS(10478), + [anon_sym_signed] = ACTIONS(10478), + [anon_sym_mutable] = ACTIONS(10478), + [anon_sym_long] = ACTIONS(10478), + [anon_sym_COLON_COLON] = ACTIONS(10476), + [anon_sym_using] = ACTIONS(10478), + [aux_sym_preproc_else_token1] = ACTIONS(10478), + [aux_sym_preproc_if_token2] = ACTIONS(10478), + [sym_preproc_directive] = ACTIONS(10478), + [aux_sym_preproc_if_token1] = ACTIONS(10478), + [anon_sym_AMP] = ACTIONS(10478), + [anon_sym_static] = ACTIONS(10478), + [anon_sym_volatile] = ACTIONS(10478), + [anon_sym_typedef] = ACTIONS(10478), + [anon_sym_STAR] = ACTIONS(10476), + [anon_sym_union] = ACTIONS(10478), + [anon_sym_typename] = ACTIONS(10478), + [anon_sym_private] = ACTIONS(10478), + [anon_sym_explicit] = ACTIONS(10478), + [anon_sym_short] = ACTIONS(10478), + [sym_identifier] = ACTIONS(10478), + [sym_operator_name] = ACTIONS(10476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10478), + [anon_sym_register] = ACTIONS(10478), + [anon_sym__Atomic] = ACTIONS(10478), + [anon_sym_const] = ACTIONS(10478), + [anon_sym_extern] = ACTIONS(10478), + [anon_sym_LBRACK] = ACTIONS(10478), + [anon_sym_virtual] = ACTIONS(10478), + [anon_sym_enum] = ACTIONS(10478), + [anon_sym_class] = ACTIONS(10478), + [anon_sym_constexpr] = ACTIONS(10478), + [sym_primitive_type] = ACTIONS(10478), + [anon_sym_unsigned] = ACTIONS(10478), + [anon_sym_public] = ACTIONS(10478), + [anon_sym_protected] = ACTIONS(10478), + [anon_sym_friend] = ACTIONS(10478), + [anon_sym_template] = ACTIONS(10478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10478), + [anon_sym_TILDE] = ACTIONS(10476), + [aux_sym_preproc_elif_token1] = ACTIONS(10478), + [aux_sym_preproc_def_token1] = ACTIONS(10478), + [anon_sym_AMP_AMP] = ACTIONS(10476), + [anon_sym_inline] = ACTIONS(10478), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(10478), }, - [4982] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10820), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4953] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10786), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4983] = { + [4954] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10820), + [anon_sym_SEMI] = ACTIONS(10786), }, - [4984] = { - [sym_do_statement] = STATE(4533), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4955] = { + [sym_do_statement] = STATE(4504), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4533), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4533), - [sym_if_statement] = STATE(4533), - [sym_switch_statement] = STATE(4533), - [sym_for_statement] = STATE(4533), - [sym_return_statement] = STATE(4533), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4504), + [sym_try_statement] = STATE(4504), + [sym_if_statement] = STATE(4504), + [sym_switch_statement] = STATE(4504), + [sym_for_statement] = STATE(4504), + [sym_return_statement] = STATE(4504), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4533), - [sym_break_statement] = STATE(4533), - [sym_continue_statement] = STATE(4533), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4504), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4533), - [sym_labeled_statement] = STATE(4533), - [sym_expression_statement] = STATE(4533), - [sym_while_statement] = STATE(4533), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4504), + [sym_for_range_loop] = STATE(4504), + [sym_compound_statement] = STATE(4504), + [sym_labeled_statement] = STATE(4504), + [sym_expression_statement] = STATE(4504), + [sym_while_statement] = STATE(4504), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -202427,18 +201880,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -202451,89 +201904,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4985] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10822), + [4956] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10788), [sym_comment] = ACTIONS(3), }, - [4986] = { - [aux_sym_for_statement_repeat1] = STATE(5052), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10822), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4957] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5023), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10788), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4987] = { - [sym_do_statement] = STATE(4557), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [4958] = { + [sym_do_statement] = STATE(4528), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4557), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_switch_statement] = STATE(4557), - [sym_for_statement] = STATE(4557), - [sym_return_statement] = STATE(4557), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4528), + [sym_try_statement] = STATE(4528), + [sym_if_statement] = STATE(4528), + [sym_switch_statement] = STATE(4528), + [sym_for_statement] = STATE(4528), + [sym_return_statement] = STATE(4528), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4557), - [sym_break_statement] = STATE(4557), - [sym_continue_statement] = STATE(4557), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4528), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4557), - [sym_labeled_statement] = STATE(4557), - [sym_expression_statement] = STATE(4557), - [sym_while_statement] = STATE(4557), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4528), + [sym_for_range_loop] = STATE(4528), + [sym_compound_statement] = STATE(4528), + [sym_labeled_statement] = STATE(4528), + [sym_expression_statement] = STATE(4528), + [sym_while_statement] = STATE(4528), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -202547,18 +202000,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -202571,2727 +202024,2727 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4988] = { - [anon_sym_else] = ACTIONS(10698), - [anon_sym_while] = ACTIONS(10698), + [4959] = { + [anon_sym_else] = ACTIONS(10664), + [anon_sym_while] = ACTIONS(10664), [sym_comment] = ACTIONS(3), }, - [4989] = { - [sym_do_statement] = STATE(4558), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4960] = { + [sym_do_statement] = STATE(4529), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4558), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4558), - [sym_if_statement] = STATE(4558), - [sym_switch_statement] = STATE(4558), - [sym_for_statement] = STATE(4558), - [sym_return_statement] = STATE(4558), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4529), + [sym_try_statement] = STATE(4529), + [sym_if_statement] = STATE(4529), + [sym_switch_statement] = STATE(4529), + [sym_for_statement] = STATE(4529), + [sym_return_statement] = STATE(4529), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4558), - [sym_break_statement] = STATE(4558), - [sym_continue_statement] = STATE(4558), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4529), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4558), - [sym_labeled_statement] = STATE(4558), - [sym_expression_statement] = STATE(4558), - [sym_while_statement] = STATE(4558), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4529), + [sym_for_range_loop] = STATE(4529), + [sym_compound_statement] = STATE(4529), + [sym_labeled_statement] = STATE(4529), + [sym_expression_statement] = STATE(4529), + [sym_while_statement] = STATE(4529), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4990] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10824), + [4961] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10790), [sym_comment] = ACTIONS(3), }, - [4991] = { - [aux_sym_for_statement_repeat1] = STATE(5054), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10824), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4962] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5025), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10790), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [4992] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5055), - [sym_logical_expression] = STATE(5055), - [sym_bitwise_expression] = STATE(5055), - [sym_cast_expression] = STATE(5055), - [sym_new_expression] = STATE(5055), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5055), - [sym_char_literal] = STATE(5055), - [sym_template_function] = STATE(5055), - [sym_conditional_expression] = STATE(5055), - [sym_equality_expression] = STATE(5055), - [sym_relational_expression] = STATE(5055), - [sym_delete_expression] = STATE(5055), - [sym_sizeof_expression] = STATE(5055), - [sym_parenthesized_expression] = STATE(5055), - [sym_lambda_expression] = STATE(5055), - [sym_concatenated_string] = STATE(5055), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5055), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5055), - [sym_math_expression] = STATE(5055), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10826), + [4963] = { + [sym_template_function] = STATE(5026), + [sym__expression] = STATE(5026), + [sym_logical_expression] = STATE(5026), + [sym_bitwise_expression] = STATE(5026), + [sym_cast_expression] = STATE(5026), + [sym_delete_expression] = STATE(5026), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5026), + [sym_lambda_expression] = STATE(5026), + [sym_char_literal] = STATE(5026), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5026), + [sym_equality_expression] = STATE(5026), + [sym_relational_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(5026), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5026), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5026), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5026), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5026), + [sym_math_expression] = STATE(5026), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5026), + [sym_raw_string_literal] = ACTIONS(10792), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10828), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10828), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10794), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10794), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10826), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10792), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10828), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10828), + [sym_false] = ACTIONS(10794), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10794), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10824), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10790), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [4993] = { - [sym_do_statement] = STATE(4562), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4964] = { + [sym_do_statement] = STATE(4533), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4562), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4562), - [sym_if_statement] = STATE(4562), - [sym_switch_statement] = STATE(4562), - [sym_for_statement] = STATE(4562), - [sym_return_statement] = STATE(4562), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4533), + [sym_try_statement] = STATE(4533), + [sym_if_statement] = STATE(4533), + [sym_switch_statement] = STATE(4533), + [sym_for_statement] = STATE(4533), + [sym_return_statement] = STATE(4533), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4562), - [sym_break_statement] = STATE(4562), - [sym_continue_statement] = STATE(4562), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4533), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4562), - [sym_labeled_statement] = STATE(4562), - [sym_expression_statement] = STATE(4562), - [sym_while_statement] = STATE(4562), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4533), + [sym_for_range_loop] = STATE(4533), + [sym_compound_statement] = STATE(4533), + [sym_labeled_statement] = STATE(4533), + [sym_expression_statement] = STATE(4533), + [sym_while_statement] = STATE(4533), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4994] = { - [sym_do_statement] = STATE(4569), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [4965] = { + [sym_do_statement] = STATE(4540), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4569), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4569), - [sym_if_statement] = STATE(4569), - [sym_switch_statement] = STATE(4569), - [sym_for_statement] = STATE(4569), - [sym_return_statement] = STATE(4569), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4540), + [sym_try_statement] = STATE(4540), + [sym_if_statement] = STATE(4540), + [sym_switch_statement] = STATE(4540), + [sym_for_statement] = STATE(4540), + [sym_return_statement] = STATE(4540), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4569), - [sym_break_statement] = STATE(4569), - [sym_continue_statement] = STATE(4569), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4540), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4569), - [sym_labeled_statement] = STATE(4569), - [sym_expression_statement] = STATE(4569), - [sym_while_statement] = STATE(4569), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4540), + [sym_for_range_loop] = STATE(4540), + [sym_compound_statement] = STATE(4540), + [sym_labeled_statement] = STATE(4540), + [sym_expression_statement] = STATE(4540), + [sym_while_statement] = STATE(4540), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [4995] = { + [4966] = { [sym_comment] = ACTIONS(3), - [anon_sym_else] = ACTIONS(10830), - [anon_sym_while] = ACTIONS(9005), + [anon_sym_else] = ACTIONS(10796), + [anon_sym_while] = ACTIONS(8969), }, - [4996] = { - [sym_type_qualifier] = STATE(4996), - [aux_sym_type_definition_repeat1] = STATE(4996), + [4967] = { + [aux_sym_type_definition_repeat1] = STATE(4967), + [sym_type_qualifier] = STATE(4967), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(4989), [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_const] = ACTIONS(2103), [anon_sym_GT2] = ACTIONS(2106), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(4989), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), + [anon_sym_explicit] = ACTIONS(4989), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_DASH_GT] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(4989), }, - [4997] = { - [sym_parameter_list] = STATE(4907), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym_COMMA] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_GT2] = ACTIONS(7275), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), + [4968] = { + [sym_parameter_list] = STATE(4878), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_GT2] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), }, - [4998] = { - [sym_type_qualifier] = STATE(4998), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4998), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(10832), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_GT2] = ACTIONS(6399), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), + [4969] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4969), + [sym_type_qualifier] = STATE(4969), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(10798), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_GT2] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), }, - [4999] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(4998), - [aux_sym_abstract_function_declarator_repeat1] = STATE(4998), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(10720), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(1062), + [4970] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4969), + [sym_type_qualifier] = STATE(4969), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(10686), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_GT2] = ACTIONS(6395), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_GT2] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_DASH_GT] = ACTIONS(9037), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_DASH_GT] = ACTIONS(9001), + [anon_sym_restrict] = ACTIONS(1070), }, - [5000] = { - [sym_type_qualifier] = STATE(5000), - [aux_sym_type_definition_repeat1] = STATE(5000), + [4971] = { + [aux_sym_type_definition_repeat1] = STATE(4971), + [sym_type_qualifier] = STATE(4971), [anon_sym_LPAREN2] = ACTIONS(2106), [anon_sym_final] = ACTIONS(2106), [sym_noexcept] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(4989), [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym__Atomic] = ACTIONS(4989), [anon_sym_const] = ACTIONS(2103), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_constexpr] = ACTIONS(4989), [sym_comment] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(4989), [anon_sym_STAR] = ACTIONS(2106), [anon_sym_override] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(5001), + [anon_sym_explicit] = ACTIONS(4989), [anon_sym_RPAREN] = ACTIONS(2106), [anon_sym_AMP_AMP] = ACTIONS(2106), [anon_sym_DASH_GT] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(4989), }, - [5001] = { - [sym_parameter_list] = STATE(4916), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_final] = ACTIONS(7275), - [sym_noexcept] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym_COMMA] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(9985), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_constexpr] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_explicit] = ACTIONS(7275), - [anon_sym_RPAREN] = ACTIONS(7275), - [anon_sym_DASH_GT] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), + [4972] = { + [sym_parameter_list] = STATE(4887), + [anon_sym_LPAREN2] = ACTIONS(614), + [anon_sym_final] = ACTIONS(7256), + [sym_noexcept] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(9951), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_override] = ACTIONS(7256), + [anon_sym_explicit] = ACTIONS(7256), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), }, - [5002] = { - [sym_type_qualifier] = STATE(5002), - [aux_sym_abstract_function_declarator_repeat1] = STATE(5002), - [anon_sym_LPAREN2] = ACTIONS(6399), - [anon_sym_final] = ACTIONS(6399), - [sym_noexcept] = ACTIONS(10835), - [anon_sym_mutable] = ACTIONS(6404), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym__Atomic] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6407), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_constexpr] = ACTIONS(6404), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(6404), - [anon_sym_override] = ACTIONS(6399), - [anon_sym_explicit] = ACTIONS(6404), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_DASH_GT] = ACTIONS(6399), - [anon_sym_restrict] = ACTIONS(6404), + [4973] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4973), + [sym_type_qualifier] = STATE(4973), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_final] = ACTIONS(6087), + [sym_noexcept] = ACTIONS(10801), + [anon_sym_mutable] = ACTIONS(6092), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym__Atomic] = ACTIONS(6092), + [anon_sym_const] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_constexpr] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(6092), + [anon_sym_override] = ACTIONS(6087), + [anon_sym_explicit] = ACTIONS(6092), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_DASH_GT] = ACTIONS(6087), + [anon_sym_restrict] = ACTIONS(6092), }, - [5003] = { - [sym_trailing_return_type] = STATE(3071), - [sym_type_qualifier] = STATE(5002), - [aux_sym_abstract_function_declarator_repeat1] = STATE(5002), - [anon_sym_LPAREN2] = ACTIONS(6395), - [anon_sym_final] = ACTIONS(6395), - [sym_noexcept] = ACTIONS(10727), - [anon_sym_mutable] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym__Atomic] = ACTIONS(1062), + [4974] = { + [aux_sym_abstract_function_declarator_repeat1] = STATE(4973), + [sym_type_qualifier] = STATE(4973), + [sym_trailing_return_type] = STATE(2928), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_final] = ACTIONS(6098), + [sym_noexcept] = ACTIONS(10693), + [anon_sym_mutable] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym__Atomic] = ACTIONS(1070), [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_constexpr] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_constexpr] = ACTIONS(1070), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(6395), - [anon_sym_explicit] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_DASH_GT] = ACTIONS(9153), - [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(6098), + [anon_sym_explicit] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(9043), + [anon_sym_restrict] = ACTIONS(1070), }, - [5004] = { - [anon_sym_DASH] = ACTIONS(9820), - [sym_raw_string_literal] = ACTIONS(9822), - [anon_sym_else] = ACTIONS(9820), - [sym_true] = ACTIONS(9820), - [anon_sym_mutable] = ACTIONS(9820), - [sym_null] = ACTIONS(9820), - [anon_sym_break] = ACTIONS(9820), - [anon_sym_BANG] = ACTIONS(9822), - [anon_sym_sizeof] = ACTIONS(9820), - [anon_sym_volatile] = ACTIONS(9820), - [anon_sym_PLUS] = ACTIONS(9820), - [anon_sym_typedef] = ACTIONS(9820), - [anon_sym_switch] = ACTIONS(9820), - [anon_sym_explicit] = ACTIONS(9820), - [sym_identifier] = ACTIONS(9820), - [anon_sym_delete] = ACTIONS(9820), - [anon_sym_continue] = ACTIONS(9820), - [anon_sym__Atomic] = ACTIONS(9820), - [sym_number_literal] = ACTIONS(9822), - [anon_sym_extern] = ACTIONS(9820), - [anon_sym_enum] = ACTIONS(9820), - [anon_sym_constexpr] = ACTIONS(9820), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9822), - [anon_sym_case] = ACTIONS(9820), - [anon_sym_SQUOTE] = ACTIONS(9822), - [anon_sym_LBRACE] = ACTIONS(9822), - [anon_sym_DASH_DASH] = ACTIONS(9822), - [anon_sym_LPAREN2] = ACTIONS(9822), - [anon_sym_struct] = ACTIONS(9820), - [sym_auto] = ACTIONS(9820), - [anon_sym_signed] = ACTIONS(9820), - [anon_sym_long] = ACTIONS(9820), - [anon_sym_COLON_COLON] = ACTIONS(9822), - [anon_sym_default] = ACTIONS(9820), - [anon_sym_AMP] = ACTIONS(9822), - [anon_sym_static] = ACTIONS(9820), - [anon_sym_RBRACE] = ACTIONS(9822), - [anon_sym_STAR] = ACTIONS(9822), - [anon_sym_union] = ACTIONS(9820), - [anon_sym_typename] = ACTIONS(9820), - [anon_sym_short] = ACTIONS(9820), - [anon_sym_new] = ACTIONS(9820), - [anon_sym_goto] = ACTIONS(9820), - [anon_sym_while] = ACTIONS(9820), - [anon_sym_try] = ACTIONS(9820), - [anon_sym_for] = ACTIONS(9820), - [anon_sym_register] = ACTIONS(9820), - [anon_sym_DQUOTE] = ACTIONS(9822), - [anon_sym_const] = ACTIONS(9820), - [anon_sym_LBRACK] = ACTIONS(9820), - [anon_sym_class] = ACTIONS(9820), - [anon_sym_if] = ACTIONS(9820), - [sym_primitive_type] = ACTIONS(9820), - [sym_false] = ACTIONS(9820), - [sym_nullptr] = ACTIONS(9820), - [anon_sym_do] = ACTIONS(9820), - [anon_sym_return] = ACTIONS(9820), - [anon_sym_TILDE] = ACTIONS(9822), - [anon_sym_SEMI] = ACTIONS(9822), - [anon_sym_inline] = ACTIONS(9820), - [anon_sym_PLUS_PLUS] = ACTIONS(9822), - [anon_sym_restrict] = ACTIONS(9820), + [4975] = { + [anon_sym_DASH] = ACTIONS(9786), + [sym_raw_string_literal] = ACTIONS(9788), + [anon_sym_else] = ACTIONS(9786), + [sym_true] = ACTIONS(9786), + [anon_sym_mutable] = ACTIONS(9786), + [sym_null] = ACTIONS(9786), + [anon_sym_break] = ACTIONS(9786), + [anon_sym_BANG] = ACTIONS(9788), + [anon_sym_sizeof] = ACTIONS(9786), + [anon_sym_volatile] = ACTIONS(9786), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_typedef] = ACTIONS(9786), + [anon_sym_switch] = ACTIONS(9786), + [anon_sym_explicit] = ACTIONS(9786), + [sym_identifier] = ACTIONS(9786), + [anon_sym_delete] = ACTIONS(9786), + [anon_sym_continue] = ACTIONS(9786), + [anon_sym__Atomic] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9788), + [anon_sym_extern] = ACTIONS(9786), + [anon_sym_enum] = ACTIONS(9786), + [anon_sym_constexpr] = ACTIONS(9786), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9788), + [anon_sym_case] = ACTIONS(9786), + [anon_sym_SQUOTE] = ACTIONS(9788), + [anon_sym_LBRACE] = ACTIONS(9788), + [anon_sym_DASH_DASH] = ACTIONS(9788), + [anon_sym_LPAREN2] = ACTIONS(9788), + [anon_sym_struct] = ACTIONS(9786), + [sym_auto] = ACTIONS(9786), + [anon_sym_signed] = ACTIONS(9786), + [anon_sym_long] = ACTIONS(9786), + [anon_sym_COLON_COLON] = ACTIONS(9788), + [anon_sym_default] = ACTIONS(9786), + [anon_sym_AMP] = ACTIONS(9788), + [anon_sym_static] = ACTIONS(9786), + [anon_sym_RBRACE] = ACTIONS(9788), + [anon_sym_STAR] = ACTIONS(9788), + [anon_sym_union] = ACTIONS(9786), + [anon_sym_typename] = ACTIONS(9786), + [anon_sym_short] = ACTIONS(9786), + [anon_sym_new] = ACTIONS(9786), + [anon_sym_goto] = ACTIONS(9786), + [anon_sym_while] = ACTIONS(9786), + [anon_sym_try] = ACTIONS(9786), + [anon_sym_for] = ACTIONS(9786), + [anon_sym_register] = ACTIONS(9786), + [anon_sym_DQUOTE] = ACTIONS(9788), + [anon_sym_const] = ACTIONS(9786), + [anon_sym_LBRACK] = ACTIONS(9786), + [anon_sym_class] = ACTIONS(9786), + [anon_sym_if] = ACTIONS(9786), + [sym_primitive_type] = ACTIONS(9786), + [sym_false] = ACTIONS(9786), + [sym_nullptr] = ACTIONS(9786), + [anon_sym_do] = ACTIONS(9786), + [anon_sym_return] = ACTIONS(9786), + [anon_sym_TILDE] = ACTIONS(9788), + [anon_sym_SEMI] = ACTIONS(9788), + [anon_sym_inline] = ACTIONS(9786), + [anon_sym_PLUS_PLUS] = ACTIONS(9788), + [anon_sym_restrict] = ACTIONS(9786), }, - [5005] = { - [sym_do_statement] = STATE(5057), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4976] = { + [sym_do_statement] = STATE(5028), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5057), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5057), - [sym_if_statement] = STATE(5057), - [sym_switch_statement] = STATE(5057), - [sym_for_statement] = STATE(5057), - [sym_return_statement] = STATE(5057), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5028), + [sym_try_statement] = STATE(5028), + [sym_if_statement] = STATE(5028), + [sym_switch_statement] = STATE(5028), + [sym_for_statement] = STATE(5028), + [sym_return_statement] = STATE(5028), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5057), - [sym_break_statement] = STATE(5057), - [sym_continue_statement] = STATE(5057), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5028), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5057), - [sym_labeled_statement] = STATE(5057), - [sym_expression_statement] = STATE(5057), - [sym_while_statement] = STATE(5057), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5028), + [sym_for_range_loop] = STATE(5028), + [sym_compound_statement] = STATE(5028), + [sym_labeled_statement] = STATE(5028), + [sym_expression_statement] = STATE(5028), + [sym_while_statement] = STATE(5028), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5006] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10838), + [4977] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10804), [sym_comment] = ACTIONS(3), }, - [5007] = { - [aux_sym_for_statement_repeat1] = STATE(5059), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10838), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4978] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5030), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10804), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5008] = { - [anon_sym_DASH] = ACTIONS(9829), - [sym_raw_string_literal] = ACTIONS(9831), - [anon_sym_else] = ACTIONS(9829), - [sym_true] = ACTIONS(9829), - [anon_sym_mutable] = ACTIONS(9829), - [sym_null] = ACTIONS(9829), - [anon_sym_break] = ACTIONS(9829), - [anon_sym_BANG] = ACTIONS(9831), - [anon_sym_sizeof] = ACTIONS(9829), - [anon_sym_volatile] = ACTIONS(9829), - [anon_sym_PLUS] = ACTIONS(9829), - [anon_sym_typedef] = ACTIONS(9829), - [anon_sym_switch] = ACTIONS(9829), - [anon_sym_explicit] = ACTIONS(9829), - [sym_identifier] = ACTIONS(9829), - [anon_sym_delete] = ACTIONS(9829), - [anon_sym_continue] = ACTIONS(9829), - [anon_sym__Atomic] = ACTIONS(9829), - [sym_number_literal] = ACTIONS(9831), - [anon_sym_extern] = ACTIONS(9829), - [anon_sym_enum] = ACTIONS(9829), - [anon_sym_constexpr] = ACTIONS(9829), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9831), - [anon_sym_case] = ACTIONS(9829), - [anon_sym_SQUOTE] = ACTIONS(9831), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_DASH_DASH] = ACTIONS(9831), - [anon_sym_LPAREN2] = ACTIONS(9831), - [anon_sym_struct] = ACTIONS(9829), - [sym_auto] = ACTIONS(9829), - [anon_sym_signed] = ACTIONS(9829), - [anon_sym_long] = ACTIONS(9829), - [anon_sym_COLON_COLON] = ACTIONS(9831), - [anon_sym_default] = ACTIONS(9829), - [anon_sym_AMP] = ACTIONS(9831), - [anon_sym_static] = ACTIONS(9829), - [anon_sym_RBRACE] = ACTIONS(9831), - [anon_sym_STAR] = ACTIONS(9831), - [anon_sym_union] = ACTIONS(9829), - [anon_sym_typename] = ACTIONS(9829), - [anon_sym_short] = ACTIONS(9829), - [anon_sym_new] = ACTIONS(9829), - [anon_sym_goto] = ACTIONS(9829), - [anon_sym_while] = ACTIONS(9829), - [anon_sym_try] = ACTIONS(9829), - [anon_sym_for] = ACTIONS(9829), - [anon_sym_register] = ACTIONS(9829), - [anon_sym_DQUOTE] = ACTIONS(9831), - [anon_sym_const] = ACTIONS(9829), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_class] = ACTIONS(9829), - [anon_sym_if] = ACTIONS(9829), - [sym_primitive_type] = ACTIONS(9829), - [sym_false] = ACTIONS(9829), - [sym_nullptr] = ACTIONS(9829), - [anon_sym_do] = ACTIONS(9829), - [anon_sym_return] = ACTIONS(9829), - [anon_sym_TILDE] = ACTIONS(9831), - [anon_sym_SEMI] = ACTIONS(9831), - [anon_sym_inline] = ACTIONS(9829), - [anon_sym_PLUS_PLUS] = ACTIONS(9831), - [anon_sym_restrict] = ACTIONS(9829), + [4979] = { + [anon_sym_DASH] = ACTIONS(9795), + [sym_raw_string_literal] = ACTIONS(9797), + [anon_sym_else] = ACTIONS(9795), + [sym_true] = ACTIONS(9795), + [anon_sym_mutable] = ACTIONS(9795), + [sym_null] = ACTIONS(9795), + [anon_sym_break] = ACTIONS(9795), + [anon_sym_BANG] = ACTIONS(9797), + [anon_sym_sizeof] = ACTIONS(9795), + [anon_sym_volatile] = ACTIONS(9795), + [anon_sym_PLUS] = ACTIONS(9795), + [anon_sym_typedef] = ACTIONS(9795), + [anon_sym_switch] = ACTIONS(9795), + [anon_sym_explicit] = ACTIONS(9795), + [sym_identifier] = ACTIONS(9795), + [anon_sym_delete] = ACTIONS(9795), + [anon_sym_continue] = ACTIONS(9795), + [anon_sym__Atomic] = ACTIONS(9795), + [sym_number_literal] = ACTIONS(9797), + [anon_sym_extern] = ACTIONS(9795), + [anon_sym_enum] = ACTIONS(9795), + [anon_sym_constexpr] = ACTIONS(9795), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9797), + [anon_sym_case] = ACTIONS(9795), + [anon_sym_SQUOTE] = ACTIONS(9797), + [anon_sym_LBRACE] = ACTIONS(9797), + [anon_sym_DASH_DASH] = ACTIONS(9797), + [anon_sym_LPAREN2] = ACTIONS(9797), + [anon_sym_struct] = ACTIONS(9795), + [sym_auto] = ACTIONS(9795), + [anon_sym_signed] = ACTIONS(9795), + [anon_sym_long] = ACTIONS(9795), + [anon_sym_COLON_COLON] = ACTIONS(9797), + [anon_sym_default] = ACTIONS(9795), + [anon_sym_AMP] = ACTIONS(9797), + [anon_sym_static] = ACTIONS(9795), + [anon_sym_RBRACE] = ACTIONS(9797), + [anon_sym_STAR] = ACTIONS(9797), + [anon_sym_union] = ACTIONS(9795), + [anon_sym_typename] = ACTIONS(9795), + [anon_sym_short] = ACTIONS(9795), + [anon_sym_new] = ACTIONS(9795), + [anon_sym_goto] = ACTIONS(9795), + [anon_sym_while] = ACTIONS(9795), + [anon_sym_try] = ACTIONS(9795), + [anon_sym_for] = ACTIONS(9795), + [anon_sym_register] = ACTIONS(9795), + [anon_sym_DQUOTE] = ACTIONS(9797), + [anon_sym_const] = ACTIONS(9795), + [anon_sym_LBRACK] = ACTIONS(9795), + [anon_sym_class] = ACTIONS(9795), + [anon_sym_if] = ACTIONS(9795), + [sym_primitive_type] = ACTIONS(9795), + [sym_false] = ACTIONS(9795), + [sym_nullptr] = ACTIONS(9795), + [anon_sym_do] = ACTIONS(9795), + [anon_sym_return] = ACTIONS(9795), + [anon_sym_TILDE] = ACTIONS(9797), + [anon_sym_SEMI] = ACTIONS(9797), + [anon_sym_inline] = ACTIONS(9795), + [anon_sym_PLUS_PLUS] = ACTIONS(9797), + [anon_sym_restrict] = ACTIONS(9795), }, - [5009] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5061), - [sym_logical_expression] = STATE(5061), - [sym_bitwise_expression] = STATE(5061), - [sym_cast_expression] = STATE(5061), - [sym_new_expression] = STATE(5061), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(5061), - [sym_char_literal] = STATE(5061), - [sym_template_function] = STATE(5061), - [sym_conditional_expression] = STATE(5061), - [sym_equality_expression] = STATE(5061), - [sym_relational_expression] = STATE(5061), - [sym_delete_expression] = STATE(5061), - [sym_sizeof_expression] = STATE(5061), - [sym_parenthesized_expression] = STATE(5061), - [sym_lambda_expression] = STATE(5061), - [sym_concatenated_string] = STATE(5061), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(5061), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(5061), - [sym_math_expression] = STATE(5061), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10840), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10842), - [sym_null] = ACTIONS(10842), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10840), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10842), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10842), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10844), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [4980] = { + [sym_template_function] = STATE(5032), + [sym__expression] = STATE(5032), + [sym_logical_expression] = STATE(5032), + [sym_bitwise_expression] = STATE(5032), + [sym_cast_expression] = STATE(5032), + [sym_delete_expression] = STATE(5032), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(5032), + [sym_lambda_expression] = STATE(5032), + [sym_char_literal] = STATE(5032), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5032), + [sym_equality_expression] = STATE(5032), + [sym_relational_expression] = STATE(5032), + [sym_sizeof_expression] = STATE(5032), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5032), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(5032), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5032), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(5032), + [sym_math_expression] = STATE(5032), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(5032), + [sym_raw_string_literal] = ACTIONS(10806), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10808), + [sym_null] = ACTIONS(10808), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10806), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10808), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10808), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10810), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [5010] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10846), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4981] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10812), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5011] = { - [anon_sym_COLON] = ACTIONS(10848), + [4982] = { + [anon_sym_COLON] = ACTIONS(10814), [sym_comment] = ACTIONS(3), }, - [5012] = { - [aux_sym_try_statement_repeat1] = STATE(5064), - [sym_catch_clause] = STATE(5064), - [anon_sym_DASH] = ACTIONS(3152), - [sym_raw_string_literal] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [sym_identifier] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(10035), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3152), - [sym_auto] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_nullptr] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3152), + [4983] = { + [sym_catch_clause] = STATE(5035), + [aux_sym_try_statement_repeat1] = STATE(5035), + [anon_sym_DASH] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [anon_sym_mutable] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_sizeof] = ACTIONS(3154), + [anon_sym_volatile] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_explicit] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(10001), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym__Atomic] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_constexpr] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(3154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3154), + [sym_auto] = ACTIONS(3154), + [anon_sym_signed] = ACTIONS(3154), + [anon_sym_long] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_typename] = ACTIONS(3154), + [anon_sym_short] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_register] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [sym_primitive_type] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nullptr] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3154), }, - [5013] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10850), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4984] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10816), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5014] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5066), - [sym_logical_expression] = STATE(5066), - [sym_bitwise_expression] = STATE(5066), - [sym_cast_expression] = STATE(5066), - [sym_new_expression] = STATE(5066), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(5066), - [sym_char_literal] = STATE(5066), - [sym_template_function] = STATE(5066), - [sym_conditional_expression] = STATE(5066), - [sym_equality_expression] = STATE(5066), - [sym_relational_expression] = STATE(5066), - [sym_delete_expression] = STATE(5066), - [sym_sizeof_expression] = STATE(5066), - [sym_parenthesized_expression] = STATE(5066), - [sym_lambda_expression] = STATE(5066), - [sym_concatenated_string] = STATE(5066), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(5066), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(5066), - [sym_math_expression] = STATE(5066), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10852), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10854), - [sym_null] = ACTIONS(10854), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10852), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10854), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10854), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [4985] = { + [sym_template_function] = STATE(5037), + [sym__expression] = STATE(5037), + [sym_logical_expression] = STATE(5037), + [sym_bitwise_expression] = STATE(5037), + [sym_cast_expression] = STATE(5037), + [sym_delete_expression] = STATE(5037), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(5037), + [sym_lambda_expression] = STATE(5037), + [sym_char_literal] = STATE(5037), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5037), + [sym_equality_expression] = STATE(5037), + [sym_relational_expression] = STATE(5037), + [sym_sizeof_expression] = STATE(5037), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5037), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(5037), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5037), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(5037), + [sym_math_expression] = STATE(5037), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(5037), + [sym_raw_string_literal] = ACTIONS(10818), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10820), + [sym_null] = ACTIONS(10820), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10818), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10820), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10820), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [5015] = { - [anon_sym_DASH] = ACTIONS(9871), - [sym_raw_string_literal] = ACTIONS(9873), - [anon_sym_else] = ACTIONS(9871), - [sym_true] = ACTIONS(9871), - [anon_sym_mutable] = ACTIONS(9871), - [sym_null] = ACTIONS(9871), - [anon_sym_break] = ACTIONS(9871), - [anon_sym_BANG] = ACTIONS(9873), - [anon_sym_sizeof] = ACTIONS(9871), - [anon_sym_volatile] = ACTIONS(9871), - [anon_sym_PLUS] = ACTIONS(9871), - [anon_sym_typedef] = ACTIONS(9871), - [anon_sym_switch] = ACTIONS(9871), - [anon_sym_explicit] = ACTIONS(9871), - [sym_identifier] = ACTIONS(9871), - [anon_sym_delete] = ACTIONS(9871), - [anon_sym_continue] = ACTIONS(9871), - [anon_sym__Atomic] = ACTIONS(9871), - [sym_number_literal] = ACTIONS(9873), - [anon_sym_extern] = ACTIONS(9871), - [anon_sym_enum] = ACTIONS(9871), - [anon_sym_constexpr] = ACTIONS(9871), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9871), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9873), - [anon_sym_case] = ACTIONS(9871), - [anon_sym_SQUOTE] = ACTIONS(9873), - [anon_sym_LBRACE] = ACTIONS(9873), - [anon_sym_DASH_DASH] = ACTIONS(9873), - [anon_sym_LPAREN2] = ACTIONS(9873), - [anon_sym_struct] = ACTIONS(9871), - [sym_auto] = ACTIONS(9871), - [anon_sym_signed] = ACTIONS(9871), - [anon_sym_long] = ACTIONS(9871), - [anon_sym_COLON_COLON] = ACTIONS(9873), - [anon_sym_default] = ACTIONS(9871), - [anon_sym_AMP] = ACTIONS(9873), - [anon_sym_static] = ACTIONS(9871), - [anon_sym_RBRACE] = ACTIONS(9873), - [anon_sym_STAR] = ACTIONS(9873), - [anon_sym_union] = ACTIONS(9871), - [anon_sym_typename] = ACTIONS(9871), - [anon_sym_short] = ACTIONS(9871), - [anon_sym_new] = ACTIONS(9871), - [anon_sym_goto] = ACTIONS(9871), - [anon_sym_while] = ACTIONS(9871), - [anon_sym_try] = ACTIONS(9871), - [anon_sym_for] = ACTIONS(9871), - [anon_sym_register] = ACTIONS(9871), - [anon_sym_DQUOTE] = ACTIONS(9873), - [anon_sym_const] = ACTIONS(9871), - [anon_sym_LBRACK] = ACTIONS(9871), - [anon_sym_class] = ACTIONS(9871), - [anon_sym_if] = ACTIONS(9871), - [sym_primitive_type] = ACTIONS(9871), - [sym_false] = ACTIONS(9871), - [sym_nullptr] = ACTIONS(9871), - [anon_sym_do] = ACTIONS(9871), - [anon_sym_return] = ACTIONS(9871), - [anon_sym_TILDE] = ACTIONS(9873), - [anon_sym_SEMI] = ACTIONS(9873), - [anon_sym_inline] = ACTIONS(9871), - [anon_sym_PLUS_PLUS] = ACTIONS(9873), - [anon_sym_restrict] = ACTIONS(9871), + [4986] = { + [anon_sym_DASH] = ACTIONS(9837), + [sym_raw_string_literal] = ACTIONS(9839), + [anon_sym_else] = ACTIONS(9837), + [sym_true] = ACTIONS(9837), + [anon_sym_mutable] = ACTIONS(9837), + [sym_null] = ACTIONS(9837), + [anon_sym_break] = ACTIONS(9837), + [anon_sym_BANG] = ACTIONS(9839), + [anon_sym_sizeof] = ACTIONS(9837), + [anon_sym_volatile] = ACTIONS(9837), + [anon_sym_PLUS] = ACTIONS(9837), + [anon_sym_typedef] = ACTIONS(9837), + [anon_sym_switch] = ACTIONS(9837), + [anon_sym_explicit] = ACTIONS(9837), + [sym_identifier] = ACTIONS(9837), + [anon_sym_delete] = ACTIONS(9837), + [anon_sym_continue] = ACTIONS(9837), + [anon_sym__Atomic] = ACTIONS(9837), + [sym_number_literal] = ACTIONS(9839), + [anon_sym_extern] = ACTIONS(9837), + [anon_sym_enum] = ACTIONS(9837), + [anon_sym_constexpr] = ACTIONS(9837), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(9837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9839), + [anon_sym_case] = ACTIONS(9837), + [anon_sym_SQUOTE] = ACTIONS(9839), + [anon_sym_LBRACE] = ACTIONS(9839), + [anon_sym_DASH_DASH] = ACTIONS(9839), + [anon_sym_LPAREN2] = ACTIONS(9839), + [anon_sym_struct] = ACTIONS(9837), + [sym_auto] = ACTIONS(9837), + [anon_sym_signed] = ACTIONS(9837), + [anon_sym_long] = ACTIONS(9837), + [anon_sym_COLON_COLON] = ACTIONS(9839), + [anon_sym_default] = ACTIONS(9837), + [anon_sym_AMP] = ACTIONS(9839), + [anon_sym_static] = ACTIONS(9837), + [anon_sym_RBRACE] = ACTIONS(9839), + [anon_sym_STAR] = ACTIONS(9839), + [anon_sym_union] = ACTIONS(9837), + [anon_sym_typename] = ACTIONS(9837), + [anon_sym_short] = ACTIONS(9837), + [anon_sym_new] = ACTIONS(9837), + [anon_sym_goto] = ACTIONS(9837), + [anon_sym_while] = ACTIONS(9837), + [anon_sym_try] = ACTIONS(9837), + [anon_sym_for] = ACTIONS(9837), + [anon_sym_register] = ACTIONS(9837), + [anon_sym_DQUOTE] = ACTIONS(9839), + [anon_sym_const] = ACTIONS(9837), + [anon_sym_LBRACK] = ACTIONS(9837), + [anon_sym_class] = ACTIONS(9837), + [anon_sym_if] = ACTIONS(9837), + [sym_primitive_type] = ACTIONS(9837), + [sym_false] = ACTIONS(9837), + [sym_nullptr] = ACTIONS(9837), + [anon_sym_do] = ACTIONS(9837), + [anon_sym_return] = ACTIONS(9837), + [anon_sym_TILDE] = ACTIONS(9839), + [anon_sym_SEMI] = ACTIONS(9839), + [anon_sym_inline] = ACTIONS(9837), + [anon_sym_PLUS_PLUS] = ACTIONS(9839), + [anon_sym_restrict] = ACTIONS(9837), }, - [5016] = { - [sym_do_statement] = STATE(5067), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [4987] = { + [sym_do_statement] = STATE(5038), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5067), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5067), - [sym_if_statement] = STATE(5067), - [sym_switch_statement] = STATE(5067), - [sym_for_statement] = STATE(5067), - [sym_return_statement] = STATE(5067), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5038), + [sym_try_statement] = STATE(5038), + [sym_if_statement] = STATE(5038), + [sym_switch_statement] = STATE(5038), + [sym_for_statement] = STATE(5038), + [sym_return_statement] = STATE(5038), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5067), - [sym_break_statement] = STATE(5067), - [sym_continue_statement] = STATE(5067), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5038), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5067), - [sym_labeled_statement] = STATE(5067), - [sym_expression_statement] = STATE(5067), - [sym_while_statement] = STATE(5067), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5038), + [sym_for_range_loop] = STATE(5038), + [sym_compound_statement] = STATE(5038), + [sym_labeled_statement] = STATE(5038), + [sym_expression_statement] = STATE(5038), + [sym_while_statement] = STATE(5038), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5017] = { - [anon_sym_LPAREN2] = ACTIONS(10525), - [anon_sym_DASH] = ACTIONS(10523), - [sym_raw_string_literal] = ACTIONS(10525), - [sym_true] = ACTIONS(10523), - [anon_sym_else] = ACTIONS(10523), - [sym_null] = ACTIONS(10523), - [anon_sym_COLON_COLON] = ACTIONS(10525), - [anon_sym_default] = ACTIONS(10523), - [anon_sym_break] = ACTIONS(10523), - [anon_sym_BANG] = ACTIONS(10525), - [anon_sym_AMP] = ACTIONS(10525), - [anon_sym_sizeof] = ACTIONS(10523), - [anon_sym_RBRACE] = ACTIONS(10525), - [anon_sym_PLUS] = ACTIONS(10523), - [anon_sym_STAR] = ACTIONS(10525), - [anon_sym_switch] = ACTIONS(10523), - [sym_identifier] = ACTIONS(10523), - [anon_sym_new] = ACTIONS(10523), - [anon_sym_goto] = ACTIONS(10523), - [anon_sym_while] = ACTIONS(10523), - [anon_sym_continue] = ACTIONS(10523), - [anon_sym_for] = ACTIONS(10523), - [anon_sym_delete] = ACTIONS(10523), - [anon_sym_try] = ACTIONS(10523), - [anon_sym_DQUOTE] = ACTIONS(10525), - [sym_number_literal] = ACTIONS(10525), - [anon_sym_LBRACK] = ACTIONS(10525), - [anon_sym_if] = ACTIONS(10523), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(10523), - [sym_nullptr] = ACTIONS(10523), - [anon_sym_do] = ACTIONS(10523), - [anon_sym_case] = ACTIONS(10523), - [anon_sym_return] = ACTIONS(10523), - [anon_sym_TILDE] = ACTIONS(10525), - [anon_sym_SEMI] = ACTIONS(10525), - [anon_sym_PLUS_PLUS] = ACTIONS(10525), - [anon_sym_SQUOTE] = ACTIONS(10525), - [anon_sym_LBRACE] = ACTIONS(10525), - [anon_sym_DASH_DASH] = ACTIONS(10525), + [4988] = { + [anon_sym_LPAREN2] = ACTIONS(10491), + [anon_sym_DASH] = ACTIONS(10489), + [sym_raw_string_literal] = ACTIONS(10491), + [sym_true] = ACTIONS(10489), + [anon_sym_else] = ACTIONS(10489), + [sym_null] = ACTIONS(10489), + [anon_sym_COLON_COLON] = ACTIONS(10491), + [anon_sym_default] = ACTIONS(10489), + [anon_sym_break] = ACTIONS(10489), + [anon_sym_BANG] = ACTIONS(10491), + [anon_sym_AMP] = ACTIONS(10491), + [anon_sym_sizeof] = ACTIONS(10489), + [anon_sym_RBRACE] = ACTIONS(10491), + [anon_sym_PLUS] = ACTIONS(10489), + [anon_sym_STAR] = ACTIONS(10491), + [anon_sym_switch] = ACTIONS(10489), + [sym_identifier] = ACTIONS(10489), + [anon_sym_new] = ACTIONS(10489), + [anon_sym_goto] = ACTIONS(10489), + [anon_sym_while] = ACTIONS(10489), + [anon_sym_continue] = ACTIONS(10489), + [anon_sym_for] = ACTIONS(10489), + [anon_sym_delete] = ACTIONS(10489), + [anon_sym_try] = ACTIONS(10489), + [anon_sym_DQUOTE] = ACTIONS(10491), + [sym_number_literal] = ACTIONS(10491), + [anon_sym_LBRACK] = ACTIONS(10491), + [anon_sym_if] = ACTIONS(10489), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(10489), + [sym_nullptr] = ACTIONS(10489), + [anon_sym_do] = ACTIONS(10489), + [anon_sym_case] = ACTIONS(10489), + [anon_sym_return] = ACTIONS(10489), + [anon_sym_TILDE] = ACTIONS(10491), + [anon_sym_SEMI] = ACTIONS(10491), + [anon_sym_PLUS_PLUS] = ACTIONS(10491), + [anon_sym_SQUOTE] = ACTIONS(10491), + [anon_sym_LBRACE] = ACTIONS(10491), + [anon_sym_DASH_DASH] = ACTIONS(10491), }, - [5018] = { - [sym_do_statement] = STATE(5068), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4989] = { + [sym_do_statement] = STATE(5039), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(5068), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(5068), - [sym_if_statement] = STATE(5068), - [sym_switch_statement] = STATE(5068), - [sym_for_statement] = STATE(5068), - [sym_return_statement] = STATE(5068), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5039), + [sym_try_statement] = STATE(5039), + [sym_if_statement] = STATE(5039), + [sym_switch_statement] = STATE(5039), + [sym_for_statement] = STATE(5039), + [sym_return_statement] = STATE(5039), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(5068), - [sym_break_statement] = STATE(5068), - [sym_continue_statement] = STATE(5068), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5039), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5068), - [sym_labeled_statement] = STATE(5068), - [sym_expression_statement] = STATE(5068), - [sym_while_statement] = STATE(5068), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(5039), + [sym_for_range_loop] = STATE(5039), + [sym_compound_statement] = STATE(5039), + [sym_labeled_statement] = STATE(5039), + [sym_expression_statement] = STATE(5039), + [sym_while_statement] = STATE(5039), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5019] = { - [sym_do_statement] = STATE(4631), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4990] = { + [sym_do_statement] = STATE(4602), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4631), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4631), - [sym_if_statement] = STATE(4631), - [sym_switch_statement] = STATE(4631), - [sym_for_statement] = STATE(4631), - [sym_return_statement] = STATE(4631), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4602), + [sym_try_statement] = STATE(4602), + [sym_if_statement] = STATE(4602), + [sym_switch_statement] = STATE(4602), + [sym_for_statement] = STATE(4602), + [sym_return_statement] = STATE(4602), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4631), - [sym_break_statement] = STATE(4631), - [sym_continue_statement] = STATE(4631), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4602), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4631), - [sym_labeled_statement] = STATE(4631), - [sym_expression_statement] = STATE(4631), - [sym_while_statement] = STATE(4631), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4602), + [sym_for_range_loop] = STATE(4602), + [sym_compound_statement] = STATE(4602), + [sym_labeled_statement] = STATE(4602), + [sym_expression_statement] = STATE(4602), + [sym_while_statement] = STATE(4602), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5020] = { - [aux_sym_for_statement_repeat1] = STATE(5070), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10856), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4991] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5041), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10822), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5021] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5071), - [sym_logical_expression] = STATE(5071), - [sym_bitwise_expression] = STATE(5071), - [sym_cast_expression] = STATE(5071), - [sym_new_expression] = STATE(5071), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5071), - [sym_char_literal] = STATE(5071), - [sym_template_function] = STATE(5071), - [sym_conditional_expression] = STATE(5071), - [sym_equality_expression] = STATE(5071), - [sym_relational_expression] = STATE(5071), - [sym_delete_expression] = STATE(5071), - [sym_sizeof_expression] = STATE(5071), - [sym_parenthesized_expression] = STATE(5071), - [sym_lambda_expression] = STATE(5071), - [sym_concatenated_string] = STATE(5071), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5071), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5071), - [sym_math_expression] = STATE(5071), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10858), + [4992] = { + [sym_template_function] = STATE(5042), + [sym__expression] = STATE(5042), + [sym_logical_expression] = STATE(5042), + [sym_bitwise_expression] = STATE(5042), + [sym_cast_expression] = STATE(5042), + [sym_delete_expression] = STATE(5042), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5042), + [sym_lambda_expression] = STATE(5042), + [sym_char_literal] = STATE(5042), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5042), + [sym_equality_expression] = STATE(5042), + [sym_relational_expression] = STATE(5042), + [sym_sizeof_expression] = STATE(5042), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5042), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5042), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5042), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5042), + [sym_math_expression] = STATE(5042), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5042), + [sym_raw_string_literal] = ACTIONS(10824), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10860), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10860), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10826), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10826), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10858), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10824), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10860), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10860), + [sym_false] = ACTIONS(10826), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10826), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10856), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10822), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [5022] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10862), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4993] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10828), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5023] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10864), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [4994] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10830), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5024] = { - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_DASH] = ACTIONS(7770), - [anon_sym_else] = ACTIONS(10866), - [sym_true] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [sym_null] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_default] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_AMP] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_RBRACE] = ACTIONS(7772), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_switch] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_LBRACK] = ACTIONS(7772), - [anon_sym_if] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_case] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), + [4995] = { + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_else] = ACTIONS(10832), + [sym_true] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [sym_null] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_default] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_AMP] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_switch] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_if] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_case] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), }, - [5025] = { - [sym_do_statement] = STATE(5075), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [4996] = { + [sym_do_statement] = STATE(5046), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(5075), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(5075), - [sym_if_statement] = STATE(5075), - [sym_switch_statement] = STATE(5075), - [sym_for_statement] = STATE(5075), - [sym_return_statement] = STATE(5075), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5046), + [sym_try_statement] = STATE(5046), + [sym_if_statement] = STATE(5046), + [sym_switch_statement] = STATE(5046), + [sym_for_statement] = STATE(5046), + [sym_return_statement] = STATE(5046), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(5075), - [sym_break_statement] = STATE(5075), - [sym_continue_statement] = STATE(5075), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5046), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5075), - [sym_labeled_statement] = STATE(5075), - [sym_expression_statement] = STATE(5075), - [sym_while_statement] = STATE(5075), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(5046), + [sym_for_range_loop] = STATE(5046), + [sym_compound_statement] = STATE(5046), + [sym_labeled_statement] = STATE(5046), + [sym_expression_statement] = STATE(5046), + [sym_while_statement] = STATE(5046), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5026] = { - [anon_sym_DASH] = ACTIONS(10523), - [sym_raw_string_literal] = ACTIONS(10525), - [anon_sym_else] = ACTIONS(10523), - [sym_true] = ACTIONS(10523), - [anon_sym_mutable] = ACTIONS(10523), - [sym_null] = ACTIONS(10523), - [anon_sym_break] = ACTIONS(10523), - [aux_sym_preproc_if_token2] = ACTIONS(10523), - [anon_sym_BANG] = ACTIONS(10525), - [anon_sym_sizeof] = ACTIONS(10523), - [anon_sym_volatile] = ACTIONS(10523), - [anon_sym_PLUS] = ACTIONS(10523), - [anon_sym_typedef] = ACTIONS(10523), - [anon_sym_switch] = ACTIONS(10523), - [anon_sym_explicit] = ACTIONS(10523), - [sym_identifier] = ACTIONS(10523), - [anon_sym_delete] = ACTIONS(10523), - [anon_sym_continue] = ACTIONS(10523), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10523), - [anon_sym__Atomic] = ACTIONS(10523), - [sym_number_literal] = ACTIONS(10525), - [anon_sym_extern] = ACTIONS(10523), - [anon_sym_enum] = ACTIONS(10523), - [anon_sym_constexpr] = ACTIONS(10523), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10523), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10525), - [anon_sym_namespace] = ACTIONS(10523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10523), - [anon_sym_SQUOTE] = ACTIONS(10525), - [anon_sym_LBRACE] = ACTIONS(10525), - [anon_sym_DASH_DASH] = ACTIONS(10525), - [anon_sym_LPAREN2] = ACTIONS(10525), - [anon_sym_struct] = ACTIONS(10523), - [sym_auto] = ACTIONS(10523), - [anon_sym_signed] = ACTIONS(10523), - [anon_sym_long] = ACTIONS(10523), - [anon_sym_COLON_COLON] = ACTIONS(10525), - [anon_sym_using] = ACTIONS(10523), - [sym_preproc_directive] = ACTIONS(10523), - [aux_sym_preproc_if_token1] = ACTIONS(10523), - [anon_sym_AMP] = ACTIONS(10523), - [anon_sym_static] = ACTIONS(10523), - [anon_sym_STAR] = ACTIONS(10525), - [anon_sym_union] = ACTIONS(10523), - [anon_sym_typename] = ACTIONS(10523), - [anon_sym_short] = ACTIONS(10523), - [anon_sym_new] = ACTIONS(10523), - [anon_sym_goto] = ACTIONS(10523), - [sym_operator_name] = ACTIONS(10525), - [anon_sym_while] = ACTIONS(10523), - [anon_sym_try] = ACTIONS(10523), - [anon_sym_for] = ACTIONS(10523), - [aux_sym_preproc_include_token1] = ACTIONS(10523), - [anon_sym_register] = ACTIONS(10523), - [anon_sym_DQUOTE] = ACTIONS(10525), - [anon_sym_const] = ACTIONS(10523), - [anon_sym_LBRACK] = ACTIONS(10523), - [anon_sym_class] = ACTIONS(10523), - [anon_sym_if] = ACTIONS(10523), - [sym_primitive_type] = ACTIONS(10523), - [sym_false] = ACTIONS(10523), - [sym_nullptr] = ACTIONS(10523), - [anon_sym_do] = ACTIONS(10523), - [anon_sym_template] = ACTIONS(10523), - [anon_sym_return] = ACTIONS(10523), - [anon_sym_TILDE] = ACTIONS(10525), - [anon_sym_SEMI] = ACTIONS(10525), - [aux_sym_preproc_def_token1] = ACTIONS(10523), - [anon_sym_AMP_AMP] = ACTIONS(10525), - [anon_sym_inline] = ACTIONS(10523), - [anon_sym_PLUS_PLUS] = ACTIONS(10525), - [anon_sym_restrict] = ACTIONS(10523), + [4997] = { + [anon_sym_DASH] = ACTIONS(10489), + [sym_raw_string_literal] = ACTIONS(10491), + [anon_sym_else] = ACTIONS(10489), + [sym_true] = ACTIONS(10489), + [anon_sym_mutable] = ACTIONS(10489), + [sym_null] = ACTIONS(10489), + [anon_sym_break] = ACTIONS(10489), + [aux_sym_preproc_if_token2] = ACTIONS(10489), + [anon_sym_BANG] = ACTIONS(10491), + [anon_sym_sizeof] = ACTIONS(10489), + [anon_sym_volatile] = ACTIONS(10489), + [anon_sym_PLUS] = ACTIONS(10489), + [anon_sym_typedef] = ACTIONS(10489), + [anon_sym_switch] = ACTIONS(10489), + [anon_sym_explicit] = ACTIONS(10489), + [sym_identifier] = ACTIONS(10489), + [anon_sym_delete] = ACTIONS(10489), + [anon_sym_continue] = ACTIONS(10489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10489), + [anon_sym__Atomic] = ACTIONS(10489), + [sym_number_literal] = ACTIONS(10491), + [anon_sym_extern] = ACTIONS(10489), + [anon_sym_enum] = ACTIONS(10489), + [anon_sym_constexpr] = ACTIONS(10489), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10491), + [anon_sym_namespace] = ACTIONS(10489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10489), + [anon_sym_SQUOTE] = ACTIONS(10491), + [anon_sym_LBRACE] = ACTIONS(10491), + [anon_sym_DASH_DASH] = ACTIONS(10491), + [anon_sym_LPAREN2] = ACTIONS(10491), + [anon_sym_struct] = ACTIONS(10489), + [sym_auto] = ACTIONS(10489), + [anon_sym_signed] = ACTIONS(10489), + [anon_sym_long] = ACTIONS(10489), + [anon_sym_COLON_COLON] = ACTIONS(10491), + [anon_sym_using] = ACTIONS(10489), + [sym_preproc_directive] = ACTIONS(10489), + [aux_sym_preproc_if_token1] = ACTIONS(10489), + [anon_sym_AMP] = ACTIONS(10489), + [anon_sym_static] = ACTIONS(10489), + [anon_sym_STAR] = ACTIONS(10491), + [anon_sym_union] = ACTIONS(10489), + [anon_sym_typename] = ACTIONS(10489), + [anon_sym_short] = ACTIONS(10489), + [anon_sym_new] = ACTIONS(10489), + [anon_sym_goto] = ACTIONS(10489), + [sym_operator_name] = ACTIONS(10491), + [anon_sym_while] = ACTIONS(10489), + [anon_sym_try] = ACTIONS(10489), + [anon_sym_for] = ACTIONS(10489), + [aux_sym_preproc_include_token1] = ACTIONS(10489), + [anon_sym_register] = ACTIONS(10489), + [anon_sym_DQUOTE] = ACTIONS(10491), + [anon_sym_const] = ACTIONS(10489), + [anon_sym_LBRACK] = ACTIONS(10489), + [anon_sym_class] = ACTIONS(10489), + [anon_sym_if] = ACTIONS(10489), + [sym_primitive_type] = ACTIONS(10489), + [sym_false] = ACTIONS(10489), + [sym_nullptr] = ACTIONS(10489), + [anon_sym_do] = ACTIONS(10489), + [anon_sym_template] = ACTIONS(10489), + [anon_sym_return] = ACTIONS(10489), + [anon_sym_TILDE] = ACTIONS(10491), + [anon_sym_SEMI] = ACTIONS(10491), + [aux_sym_preproc_def_token1] = ACTIONS(10489), + [anon_sym_AMP_AMP] = ACTIONS(10491), + [anon_sym_inline] = ACTIONS(10489), + [anon_sym_PLUS_PLUS] = ACTIONS(10491), + [anon_sym_restrict] = ACTIONS(10489), }, - [5027] = { - [sym_do_statement] = STATE(5076), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4998] = { + [sym_do_statement] = STATE(5047), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(5076), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(5076), - [sym_if_statement] = STATE(5076), - [sym_switch_statement] = STATE(5076), - [sym_for_statement] = STATE(5076), - [sym_return_statement] = STATE(5076), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5047), + [sym_try_statement] = STATE(5047), + [sym_if_statement] = STATE(5047), + [sym_switch_statement] = STATE(5047), + [sym_for_statement] = STATE(5047), + [sym_return_statement] = STATE(5047), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(5076), - [sym_break_statement] = STATE(5076), - [sym_continue_statement] = STATE(5076), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5047), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5076), - [sym_labeled_statement] = STATE(5076), - [sym_expression_statement] = STATE(5076), - [sym_while_statement] = STATE(5076), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(5047), + [sym_for_range_loop] = STATE(5047), + [sym_compound_statement] = STATE(5047), + [sym_labeled_statement] = STATE(5047), + [sym_expression_statement] = STATE(5047), + [sym_while_statement] = STATE(5047), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(6963), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(6952), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5028] = { - [sym_do_statement] = STATE(4656), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [4999] = { + [sym_do_statement] = STATE(4627), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4656), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4656), - [sym_if_statement] = STATE(4656), - [sym_switch_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_return_statement] = STATE(4656), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4627), + [sym_try_statement] = STATE(4627), + [sym_if_statement] = STATE(4627), + [sym_switch_statement] = STATE(4627), + [sym_for_statement] = STATE(4627), + [sym_return_statement] = STATE(4627), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4656), - [sym_break_statement] = STATE(4656), - [sym_continue_statement] = STATE(4656), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4627), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4656), - [sym_labeled_statement] = STATE(4656), - [sym_expression_statement] = STATE(4656), - [sym_while_statement] = STATE(4656), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4627), + [sym_for_range_loop] = STATE(4627), + [sym_compound_statement] = STATE(4627), + [sym_labeled_statement] = STATE(4627), + [sym_expression_statement] = STATE(4627), + [sym_while_statement] = STATE(4627), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5029] = { - [aux_sym_for_statement_repeat1] = STATE(5078), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10868), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5000] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5049), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10834), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5030] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5079), - [sym_logical_expression] = STATE(5079), - [sym_bitwise_expression] = STATE(5079), - [sym_cast_expression] = STATE(5079), - [sym_new_expression] = STATE(5079), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5079), - [sym_char_literal] = STATE(5079), - [sym_template_function] = STATE(5079), - [sym_conditional_expression] = STATE(5079), - [sym_equality_expression] = STATE(5079), - [sym_relational_expression] = STATE(5079), - [sym_delete_expression] = STATE(5079), - [sym_sizeof_expression] = STATE(5079), - [sym_parenthesized_expression] = STATE(5079), - [sym_lambda_expression] = STATE(5079), - [sym_concatenated_string] = STATE(5079), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5079), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5079), - [sym_math_expression] = STATE(5079), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10870), + [5001] = { + [sym_template_function] = STATE(5050), + [sym__expression] = STATE(5050), + [sym_logical_expression] = STATE(5050), + [sym_bitwise_expression] = STATE(5050), + [sym_cast_expression] = STATE(5050), + [sym_delete_expression] = STATE(5050), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5050), + [sym_lambda_expression] = STATE(5050), + [sym_char_literal] = STATE(5050), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5050), + [sym_equality_expression] = STATE(5050), + [sym_relational_expression] = STATE(5050), + [sym_sizeof_expression] = STATE(5050), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5050), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5050), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5050), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5050), + [sym_math_expression] = STATE(5050), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5050), + [sym_raw_string_literal] = ACTIONS(10836), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10872), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10872), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10838), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10838), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10870), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10836), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10872), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10872), + [sym_false] = ACTIONS(10838), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10838), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10868), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10834), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [5031] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10874), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5002] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10840), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5032] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10876), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5003] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10842), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5033] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(10878), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [aux_sym_preproc_if_token2] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_namespace] = ACTIONS(7770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_using] = ACTIONS(7770), - [sym_preproc_directive] = ACTIONS(7770), - [aux_sym_preproc_if_token1] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7770), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [sym_operator_name] = ACTIONS(7772), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [aux_sym_preproc_include_token1] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_template] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7770), - [anon_sym_AMP_AMP] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [5004] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(10844), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [aux_sym_preproc_if_token2] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_namespace] = ACTIONS(7751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_using] = ACTIONS(7751), + [sym_preproc_directive] = ACTIONS(7751), + [aux_sym_preproc_if_token1] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [sym_operator_name] = ACTIONS(7753), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [aux_sym_preproc_include_token1] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [aux_sym_preproc_def_token1] = ACTIONS(7751), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [5034] = { - [sym_do_statement] = STATE(5083), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [5005] = { + [sym_do_statement] = STATE(5054), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(5083), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(5083), - [sym_if_statement] = STATE(5083), - [sym_switch_statement] = STATE(5083), - [sym_for_statement] = STATE(5083), - [sym_return_statement] = STATE(5083), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5054), + [sym_try_statement] = STATE(5054), + [sym_if_statement] = STATE(5054), + [sym_switch_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_return_statement] = STATE(5054), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(5083), - [sym_break_statement] = STATE(5083), - [sym_continue_statement] = STATE(5083), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5054), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5083), - [sym_labeled_statement] = STATE(5083), - [sym_expression_statement] = STATE(5083), - [sym_while_statement] = STATE(5083), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(5054), + [sym_for_range_loop] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_labeled_statement] = STATE(5054), + [sym_expression_statement] = STATE(5054), + [sym_while_statement] = STATE(5054), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5035] = { - [anon_sym_DASH] = ACTIONS(10696), - [sym_raw_string_literal] = ACTIONS(10698), - [anon_sym_else] = ACTIONS(10696), - [sym_true] = ACTIONS(10696), - [anon_sym_mutable] = ACTIONS(10696), - [sym_null] = ACTIONS(10696), - [anon_sym_break] = ACTIONS(10696), - [aux_sym_preproc_if_token2] = ACTIONS(10696), - [anon_sym_BANG] = ACTIONS(10698), - [anon_sym_sizeof] = ACTIONS(10696), - [anon_sym_volatile] = ACTIONS(10696), - [anon_sym_PLUS] = ACTIONS(10696), - [anon_sym_typedef] = ACTIONS(10696), - [anon_sym_switch] = ACTIONS(10696), - [anon_sym_explicit] = ACTIONS(10696), - [sym_identifier] = ACTIONS(10696), - [anon_sym_delete] = ACTIONS(10696), - [anon_sym_continue] = ACTIONS(10696), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10696), - [anon_sym__Atomic] = ACTIONS(10696), - [sym_number_literal] = ACTIONS(10698), - [anon_sym_extern] = ACTIONS(10696), - [anon_sym_enum] = ACTIONS(10696), - [anon_sym_constexpr] = ACTIONS(10696), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10698), - [anon_sym_namespace] = ACTIONS(10696), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10696), - [aux_sym_preproc_elif_token1] = ACTIONS(10696), - [anon_sym_SQUOTE] = ACTIONS(10698), - [anon_sym_LBRACE] = ACTIONS(10698), - [anon_sym_DASH_DASH] = ACTIONS(10698), - [anon_sym_LPAREN2] = ACTIONS(10698), - [anon_sym_struct] = ACTIONS(10696), - [sym_auto] = ACTIONS(10696), - [anon_sym_signed] = ACTIONS(10696), - [anon_sym_long] = ACTIONS(10696), - [anon_sym_COLON_COLON] = ACTIONS(10698), - [anon_sym_using] = ACTIONS(10696), - [aux_sym_preproc_else_token1] = ACTIONS(10696), - [sym_preproc_directive] = ACTIONS(10696), - [aux_sym_preproc_if_token1] = ACTIONS(10696), - [anon_sym_AMP] = ACTIONS(10696), - [anon_sym_static] = ACTIONS(10696), - [anon_sym_STAR] = ACTIONS(10698), - [anon_sym_union] = ACTIONS(10696), - [anon_sym_typename] = ACTIONS(10696), - [anon_sym_short] = ACTIONS(10696), - [anon_sym_new] = ACTIONS(10696), - [anon_sym_goto] = ACTIONS(10696), - [sym_operator_name] = ACTIONS(10698), - [anon_sym_while] = ACTIONS(10696), - [anon_sym_try] = ACTIONS(10696), - [anon_sym_for] = ACTIONS(10696), - [aux_sym_preproc_include_token1] = ACTIONS(10696), - [anon_sym_register] = ACTIONS(10696), - [anon_sym_DQUOTE] = ACTIONS(10698), - [anon_sym_const] = ACTIONS(10696), - [anon_sym_LBRACK] = ACTIONS(10696), - [anon_sym_class] = ACTIONS(10696), - [anon_sym_if] = ACTIONS(10696), - [sym_primitive_type] = ACTIONS(10696), - [sym_false] = ACTIONS(10696), - [sym_nullptr] = ACTIONS(10696), - [anon_sym_do] = ACTIONS(10696), - [anon_sym_template] = ACTIONS(10696), - [anon_sym_return] = ACTIONS(10696), - [anon_sym_TILDE] = ACTIONS(10698), - [anon_sym_SEMI] = ACTIONS(10698), - [aux_sym_preproc_def_token1] = ACTIONS(10696), - [anon_sym_AMP_AMP] = ACTIONS(10698), - [anon_sym_inline] = ACTIONS(10696), - [anon_sym_PLUS_PLUS] = ACTIONS(10698), - [anon_sym_restrict] = ACTIONS(10696), + [5006] = { + [anon_sym_DASH] = ACTIONS(10662), + [sym_raw_string_literal] = ACTIONS(10664), + [anon_sym_else] = ACTIONS(10662), + [sym_true] = ACTIONS(10662), + [anon_sym_mutable] = ACTIONS(10662), + [sym_null] = ACTIONS(10662), + [anon_sym_break] = ACTIONS(10662), + [aux_sym_preproc_if_token2] = ACTIONS(10662), + [anon_sym_BANG] = ACTIONS(10664), + [anon_sym_sizeof] = ACTIONS(10662), + [anon_sym_volatile] = ACTIONS(10662), + [anon_sym_PLUS] = ACTIONS(10662), + [anon_sym_typedef] = ACTIONS(10662), + [anon_sym_switch] = ACTIONS(10662), + [anon_sym_explicit] = ACTIONS(10662), + [sym_identifier] = ACTIONS(10662), + [anon_sym_delete] = ACTIONS(10662), + [anon_sym_continue] = ACTIONS(10662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10662), + [anon_sym__Atomic] = ACTIONS(10662), + [sym_number_literal] = ACTIONS(10664), + [anon_sym_extern] = ACTIONS(10662), + [anon_sym_enum] = ACTIONS(10662), + [anon_sym_constexpr] = ACTIONS(10662), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10664), + [anon_sym_namespace] = ACTIONS(10662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10662), + [aux_sym_preproc_elif_token1] = ACTIONS(10662), + [anon_sym_SQUOTE] = ACTIONS(10664), + [anon_sym_LBRACE] = ACTIONS(10664), + [anon_sym_DASH_DASH] = ACTIONS(10664), + [anon_sym_LPAREN2] = ACTIONS(10664), + [anon_sym_struct] = ACTIONS(10662), + [sym_auto] = ACTIONS(10662), + [anon_sym_signed] = ACTIONS(10662), + [anon_sym_long] = ACTIONS(10662), + [anon_sym_COLON_COLON] = ACTIONS(10664), + [anon_sym_using] = ACTIONS(10662), + [aux_sym_preproc_else_token1] = ACTIONS(10662), + [sym_preproc_directive] = ACTIONS(10662), + [aux_sym_preproc_if_token1] = ACTIONS(10662), + [anon_sym_AMP] = ACTIONS(10662), + [anon_sym_static] = ACTIONS(10662), + [anon_sym_STAR] = ACTIONS(10664), + [anon_sym_union] = ACTIONS(10662), + [anon_sym_typename] = ACTIONS(10662), + [anon_sym_short] = ACTIONS(10662), + [anon_sym_new] = ACTIONS(10662), + [anon_sym_goto] = ACTIONS(10662), + [sym_operator_name] = ACTIONS(10664), + [anon_sym_while] = ACTIONS(10662), + [anon_sym_try] = ACTIONS(10662), + [anon_sym_for] = ACTIONS(10662), + [aux_sym_preproc_include_token1] = ACTIONS(10662), + [anon_sym_register] = ACTIONS(10662), + [anon_sym_DQUOTE] = ACTIONS(10664), + [anon_sym_const] = ACTIONS(10662), + [anon_sym_LBRACK] = ACTIONS(10662), + [anon_sym_class] = ACTIONS(10662), + [anon_sym_if] = ACTIONS(10662), + [sym_primitive_type] = ACTIONS(10662), + [sym_false] = ACTIONS(10662), + [sym_nullptr] = ACTIONS(10662), + [anon_sym_do] = ACTIONS(10662), + [anon_sym_template] = ACTIONS(10662), + [anon_sym_return] = ACTIONS(10662), + [anon_sym_TILDE] = ACTIONS(10664), + [anon_sym_SEMI] = ACTIONS(10664), + [aux_sym_preproc_def_token1] = ACTIONS(10662), + [anon_sym_AMP_AMP] = ACTIONS(10664), + [anon_sym_inline] = ACTIONS(10662), + [anon_sym_PLUS_PLUS] = ACTIONS(10664), + [anon_sym_restrict] = ACTIONS(10662), }, - [5036] = { - [sym_do_statement] = STATE(4671), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [5007] = { + [sym_do_statement] = STATE(4642), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4671), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4671), - [sym_if_statement] = STATE(4671), - [sym_switch_statement] = STATE(4671), - [sym_for_statement] = STATE(4671), - [sym_return_statement] = STATE(4671), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4642), + [sym_try_statement] = STATE(4642), + [sym_if_statement] = STATE(4642), + [sym_switch_statement] = STATE(4642), + [sym_for_statement] = STATE(4642), + [sym_return_statement] = STATE(4642), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4671), - [sym_break_statement] = STATE(4671), - [sym_continue_statement] = STATE(4671), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4642), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4671), - [sym_labeled_statement] = STATE(4671), - [sym_expression_statement] = STATE(4671), - [sym_while_statement] = STATE(4671), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4642), + [sym_for_range_loop] = STATE(4642), + [sym_compound_statement] = STATE(4642), + [sym_labeled_statement] = STATE(4642), + [sym_expression_statement] = STATE(4642), + [sym_while_statement] = STATE(4642), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5037] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10880), + [5008] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10846), [sym_comment] = ACTIONS(3), }, - [5038] = { - [aux_sym_for_statement_repeat1] = STATE(5085), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10880), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5009] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5056), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10846), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5039] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5086), - [sym_logical_expression] = STATE(5086), - [sym_bitwise_expression] = STATE(5086), - [sym_cast_expression] = STATE(5086), - [sym_new_expression] = STATE(5086), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5086), - [sym_char_literal] = STATE(5086), - [sym_template_function] = STATE(5086), - [sym_conditional_expression] = STATE(5086), - [sym_equality_expression] = STATE(5086), - [sym_relational_expression] = STATE(5086), - [sym_delete_expression] = STATE(5086), - [sym_sizeof_expression] = STATE(5086), - [sym_parenthesized_expression] = STATE(5086), - [sym_lambda_expression] = STATE(5086), - [sym_concatenated_string] = STATE(5086), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5086), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5086), - [sym_math_expression] = STATE(5086), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10882), + [5010] = { + [sym_template_function] = STATE(5057), + [sym__expression] = STATE(5057), + [sym_logical_expression] = STATE(5057), + [sym_bitwise_expression] = STATE(5057), + [sym_cast_expression] = STATE(5057), + [sym_delete_expression] = STATE(5057), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5057), + [sym_lambda_expression] = STATE(5057), + [sym_char_literal] = STATE(5057), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5057), + [sym_equality_expression] = STATE(5057), + [sym_relational_expression] = STATE(5057), + [sym_sizeof_expression] = STATE(5057), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5057), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5057), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5057), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5057), + [sym_math_expression] = STATE(5057), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5057), + [sym_raw_string_literal] = ACTIONS(10848), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10884), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10884), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10850), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10850), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10882), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10848), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10884), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10884), + [sym_false] = ACTIONS(10850), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10850), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10880), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10846), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [5040] = { - [sym_do_statement] = STATE(4675), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [5011] = { + [sym_do_statement] = STATE(4646), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4675), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4675), - [sym_if_statement] = STATE(4675), - [sym_switch_statement] = STATE(4675), - [sym_for_statement] = STATE(4675), - [sym_return_statement] = STATE(4675), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4646), + [sym_try_statement] = STATE(4646), + [sym_if_statement] = STATE(4646), + [sym_switch_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_return_statement] = STATE(4646), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4675), - [sym_break_statement] = STATE(4675), - [sym_continue_statement] = STATE(4675), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4646), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4675), - [sym_labeled_statement] = STATE(4675), - [sym_expression_statement] = STATE(4675), - [sym_while_statement] = STATE(4675), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4646), + [sym_for_range_loop] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_labeled_statement] = STATE(4646), + [sym_expression_statement] = STATE(4646), + [sym_while_statement] = STATE(4646), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5041] = { - [sym_do_statement] = STATE(4682), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [5012] = { + [sym_do_statement] = STATE(4653), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4682), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4682), - [sym_if_statement] = STATE(4682), - [sym_switch_statement] = STATE(4682), - [sym_for_statement] = STATE(4682), - [sym_return_statement] = STATE(4682), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4653), + [sym_try_statement] = STATE(4653), + [sym_if_statement] = STATE(4653), + [sym_switch_statement] = STATE(4653), + [sym_for_statement] = STATE(4653), + [sym_return_statement] = STATE(4653), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4682), - [sym_break_statement] = STATE(4682), - [sym_continue_statement] = STATE(4682), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4653), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4682), - [sym_labeled_statement] = STATE(4682), - [sym_expression_statement] = STATE(4682), - [sym_while_statement] = STATE(4682), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4653), + [sym_for_range_loop] = STATE(4653), + [sym_compound_statement] = STATE(4653), + [sym_labeled_statement] = STATE(4653), + [sym_expression_statement] = STATE(4653), + [sym_while_statement] = STATE(4653), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5042] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(10886), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [aux_sym_preproc_if_token2] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_namespace] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9003), - [aux_sym_preproc_elif_token1] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_using] = ACTIONS(9003), - [aux_sym_preproc_else_token1] = ACTIONS(9003), - [sym_preproc_directive] = ACTIONS(9003), - [aux_sym_preproc_if_token1] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9003), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [sym_operator_name] = ACTIONS(9005), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [aux_sym_preproc_include_token1] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_template] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [aux_sym_preproc_def_token1] = ACTIONS(9003), - [anon_sym_AMP_AMP] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), + [5013] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(10852), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [aux_sym_preproc_if_token2] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_namespace] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8967), + [aux_sym_preproc_elif_token1] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_using] = ACTIONS(8967), + [aux_sym_preproc_else_token1] = ACTIONS(8967), + [sym_preproc_directive] = ACTIONS(8967), + [aux_sym_preproc_if_token1] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8967), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [sym_operator_name] = ACTIONS(8969), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [aux_sym_preproc_include_token1] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_template] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [aux_sym_preproc_def_token1] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), }, - [5043] = { - [sym_do_statement] = STATE(4533), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [5014] = { + [sym_do_statement] = STATE(4504), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4533), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4533), - [sym_if_statement] = STATE(4533), - [sym_switch_statement] = STATE(4533), - [sym_for_statement] = STATE(4533), - [sym_return_statement] = STATE(4533), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4504), + [sym_try_statement] = STATE(4504), + [sym_if_statement] = STATE(4504), + [sym_switch_statement] = STATE(4504), + [sym_for_statement] = STATE(4504), + [sym_return_statement] = STATE(4504), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4533), - [sym_break_statement] = STATE(4533), - [sym_continue_statement] = STATE(4533), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4504), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4533), - [sym_labeled_statement] = STATE(4533), - [sym_expression_statement] = STATE(4533), - [sym_while_statement] = STATE(4533), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4504), + [sym_for_range_loop] = STATE(4504), + [sym_compound_statement] = STATE(4504), + [sym_labeled_statement] = STATE(4504), + [sym_expression_statement] = STATE(4504), + [sym_while_statement] = STATE(4504), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -205305,18 +204758,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -205329,89 +204782,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5044] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10888), + [5015] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10854), [sym_comment] = ACTIONS(3), }, - [5045] = { - [aux_sym_for_statement_repeat1] = STATE(5089), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10888), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5016] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5060), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10854), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5046] = { - [sym_do_statement] = STATE(4557), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [5017] = { + [sym_do_statement] = STATE(4528), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4557), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_switch_statement] = STATE(4557), - [sym_for_statement] = STATE(4557), - [sym_return_statement] = STATE(4557), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4528), + [sym_try_statement] = STATE(4528), + [sym_if_statement] = STATE(4528), + [sym_switch_statement] = STATE(4528), + [sym_for_statement] = STATE(4528), + [sym_return_statement] = STATE(4528), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4557), - [sym_break_statement] = STATE(4557), - [sym_continue_statement] = STATE(4557), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4528), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4557), - [sym_labeled_statement] = STATE(4557), - [sym_expression_statement] = STATE(4557), - [sym_while_statement] = STATE(4557), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4528), + [sym_for_range_loop] = STATE(4528), + [sym_compound_statement] = STATE(4528), + [sym_labeled_statement] = STATE(4528), + [sym_expression_statement] = STATE(4528), + [sym_while_statement] = STATE(4528), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -205425,18 +204878,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -205449,183 +204902,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5047] = { - [anon_sym_LPAREN2] = ACTIONS(10510), - [anon_sym_struct] = ACTIONS(10512), - [sym_auto] = ACTIONS(10512), - [anon_sym_signed] = ACTIONS(10512), - [anon_sym_mutable] = ACTIONS(10512), - [anon_sym_long] = ACTIONS(10512), - [anon_sym_COLON_COLON] = ACTIONS(10510), - [anon_sym_using] = ACTIONS(10512), - [aux_sym_preproc_if_token2] = ACTIONS(10512), - [sym_preproc_directive] = ACTIONS(10512), - [aux_sym_preproc_if_token1] = ACTIONS(10512), - [anon_sym_AMP] = ACTIONS(10512), - [anon_sym_static] = ACTIONS(10512), - [anon_sym_volatile] = ACTIONS(10512), - [anon_sym_typedef] = ACTIONS(10512), - [anon_sym_STAR] = ACTIONS(10510), - [anon_sym_union] = ACTIONS(10512), - [anon_sym_typename] = ACTIONS(10512), - [anon_sym_private] = ACTIONS(10512), - [anon_sym_explicit] = ACTIONS(10512), - [anon_sym_short] = ACTIONS(10512), - [sym_identifier] = ACTIONS(10512), - [sym_operator_name] = ACTIONS(10510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10512), - [anon_sym_register] = ACTIONS(10512), - [anon_sym__Atomic] = ACTIONS(10512), - [anon_sym_const] = ACTIONS(10512), - [anon_sym_extern] = ACTIONS(10512), - [anon_sym_virtual] = ACTIONS(10512), - [anon_sym_enum] = ACTIONS(10512), - [anon_sym_class] = ACTIONS(10512), - [anon_sym_constexpr] = ACTIONS(10512), - [sym_primitive_type] = ACTIONS(10512), - [anon_sym_unsigned] = ACTIONS(10512), - [anon_sym_public] = ACTIONS(10512), - [anon_sym_protected] = ACTIONS(10512), - [anon_sym_friend] = ACTIONS(10512), - [anon_sym_template] = ACTIONS(10512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10512), - [anon_sym_TILDE] = ACTIONS(10510), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(10512), - [anon_sym_AMP_AMP] = ACTIONS(10510), - [anon_sym_inline] = ACTIONS(10512), - [anon_sym_restrict] = ACTIONS(10512), + [5018] = { + [anon_sym_LPAREN2] = ACTIONS(10476), + [anon_sym_struct] = ACTIONS(10478), + [sym_auto] = ACTIONS(10478), + [anon_sym_signed] = ACTIONS(10478), + [anon_sym_mutable] = ACTIONS(10478), + [anon_sym_long] = ACTIONS(10478), + [anon_sym_COLON_COLON] = ACTIONS(10476), + [anon_sym_using] = ACTIONS(10478), + [aux_sym_preproc_if_token2] = ACTIONS(10478), + [sym_preproc_directive] = ACTIONS(10478), + [aux_sym_preproc_if_token1] = ACTIONS(10478), + [anon_sym_AMP] = ACTIONS(10478), + [anon_sym_static] = ACTIONS(10478), + [anon_sym_volatile] = ACTIONS(10478), + [anon_sym_typedef] = ACTIONS(10478), + [anon_sym_STAR] = ACTIONS(10476), + [anon_sym_union] = ACTIONS(10478), + [anon_sym_typename] = ACTIONS(10478), + [anon_sym_private] = ACTIONS(10478), + [anon_sym_explicit] = ACTIONS(10478), + [anon_sym_short] = ACTIONS(10478), + [sym_identifier] = ACTIONS(10478), + [sym_operator_name] = ACTIONS(10476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10478), + [anon_sym_register] = ACTIONS(10478), + [anon_sym__Atomic] = ACTIONS(10478), + [anon_sym_const] = ACTIONS(10478), + [anon_sym_extern] = ACTIONS(10478), + [anon_sym_LBRACK] = ACTIONS(10478), + [anon_sym_virtual] = ACTIONS(10478), + [anon_sym_enum] = ACTIONS(10478), + [anon_sym_class] = ACTIONS(10478), + [anon_sym_constexpr] = ACTIONS(10478), + [sym_primitive_type] = ACTIONS(10478), + [anon_sym_unsigned] = ACTIONS(10478), + [anon_sym_public] = ACTIONS(10478), + [anon_sym_protected] = ACTIONS(10478), + [anon_sym_friend] = ACTIONS(10478), + [anon_sym_template] = ACTIONS(10478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10478), + [anon_sym_TILDE] = ACTIONS(10476), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(10478), + [anon_sym_AMP_AMP] = ACTIONS(10476), + [anon_sym_inline] = ACTIONS(10478), + [anon_sym_restrict] = ACTIONS(10478), }, - [5048] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10890), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5019] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10856), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5049] = { + [5020] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(10890), + [anon_sym_SEMI] = ACTIONS(10856), }, - [5050] = { - [anon_sym_LPAREN2] = ACTIONS(10692), - [anon_sym_struct] = ACTIONS(10694), - [sym_auto] = ACTIONS(10694), - [anon_sym_signed] = ACTIONS(10694), - [anon_sym_mutable] = ACTIONS(10694), - [anon_sym_long] = ACTIONS(10694), - [anon_sym_COLON_COLON] = ACTIONS(10692), - [anon_sym_using] = ACTIONS(10694), - [aux_sym_preproc_else_token1] = ACTIONS(10694), - [aux_sym_preproc_if_token2] = ACTIONS(10694), - [sym_preproc_directive] = ACTIONS(10694), - [aux_sym_preproc_if_token1] = ACTIONS(10694), - [anon_sym_AMP] = ACTIONS(10694), - [anon_sym_static] = ACTIONS(10694), - [anon_sym_volatile] = ACTIONS(10694), - [anon_sym_typedef] = ACTIONS(10694), - [anon_sym_STAR] = ACTIONS(10692), - [anon_sym_union] = ACTIONS(10694), - [anon_sym_typename] = ACTIONS(10694), - [anon_sym_private] = ACTIONS(10694), - [anon_sym_explicit] = ACTIONS(10694), - [anon_sym_short] = ACTIONS(10694), - [sym_identifier] = ACTIONS(10694), - [sym_operator_name] = ACTIONS(10692), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10694), - [anon_sym_register] = ACTIONS(10694), - [anon_sym__Atomic] = ACTIONS(10694), - [anon_sym_const] = ACTIONS(10694), - [anon_sym_extern] = ACTIONS(10694), - [anon_sym_virtual] = ACTIONS(10694), - [anon_sym_enum] = ACTIONS(10694), - [anon_sym_class] = ACTIONS(10694), - [anon_sym_constexpr] = ACTIONS(10694), - [sym_primitive_type] = ACTIONS(10694), - [anon_sym_unsigned] = ACTIONS(10694), - [anon_sym_public] = ACTIONS(10694), - [anon_sym_protected] = ACTIONS(10694), - [anon_sym_friend] = ACTIONS(10694), - [anon_sym_template] = ACTIONS(10694), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10694), - [anon_sym_TILDE] = ACTIONS(10692), - [aux_sym_preproc_elif_token1] = ACTIONS(10694), - [aux_sym_preproc_def_token1] = ACTIONS(10694), - [anon_sym_AMP_AMP] = ACTIONS(10692), - [anon_sym_inline] = ACTIONS(10694), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(10694), + [5021] = { + [anon_sym_LPAREN2] = ACTIONS(10655), + [anon_sym_struct] = ACTIONS(10657), + [sym_auto] = ACTIONS(10657), + [anon_sym_signed] = ACTIONS(10657), + [anon_sym_mutable] = ACTIONS(10657), + [anon_sym_long] = ACTIONS(10657), + [anon_sym_COLON_COLON] = ACTIONS(10655), + [anon_sym_using] = ACTIONS(10657), + [aux_sym_preproc_else_token1] = ACTIONS(10657), + [aux_sym_preproc_if_token2] = ACTIONS(10657), + [sym_preproc_directive] = ACTIONS(10657), + [aux_sym_preproc_if_token1] = ACTIONS(10657), + [anon_sym_AMP] = ACTIONS(10657), + [anon_sym_static] = ACTIONS(10657), + [anon_sym_volatile] = ACTIONS(10657), + [anon_sym_typedef] = ACTIONS(10657), + [anon_sym_STAR] = ACTIONS(10655), + [anon_sym_union] = ACTIONS(10657), + [anon_sym_typename] = ACTIONS(10657), + [anon_sym_private] = ACTIONS(10657), + [anon_sym_explicit] = ACTIONS(10657), + [anon_sym_short] = ACTIONS(10657), + [sym_identifier] = ACTIONS(10657), + [sym_operator_name] = ACTIONS(10655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10657), + [anon_sym_register] = ACTIONS(10657), + [anon_sym__Atomic] = ACTIONS(10657), + [anon_sym_const] = ACTIONS(10657), + [anon_sym_extern] = ACTIONS(10657), + [anon_sym_LBRACK] = ACTIONS(10657), + [anon_sym_virtual] = ACTIONS(10657), + [anon_sym_enum] = ACTIONS(10657), + [anon_sym_class] = ACTIONS(10657), + [anon_sym_constexpr] = ACTIONS(10657), + [sym_primitive_type] = ACTIONS(10657), + [anon_sym_unsigned] = ACTIONS(10657), + [anon_sym_public] = ACTIONS(10657), + [anon_sym_protected] = ACTIONS(10657), + [anon_sym_friend] = ACTIONS(10657), + [anon_sym_template] = ACTIONS(10657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10657), + [anon_sym_TILDE] = ACTIONS(10655), + [aux_sym_preproc_elif_token1] = ACTIONS(10657), + [aux_sym_preproc_def_token1] = ACTIONS(10657), + [anon_sym_AMP_AMP] = ACTIONS(10655), + [anon_sym_inline] = ACTIONS(10657), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(10657), }, - [5051] = { - [sym_do_statement] = STATE(4751), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [5022] = { + [sym_do_statement] = STATE(4722), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4751), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4751), - [sym_if_statement] = STATE(4751), - [sym_switch_statement] = STATE(4751), - [sym_for_statement] = STATE(4751), - [sym_return_statement] = STATE(4751), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4722), + [sym_try_statement] = STATE(4722), + [sym_if_statement] = STATE(4722), + [sym_switch_statement] = STATE(4722), + [sym_for_statement] = STATE(4722), + [sym_return_statement] = STATE(4722), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4751), - [sym_break_statement] = STATE(4751), - [sym_continue_statement] = STATE(4751), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4722), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4751), - [sym_labeled_statement] = STATE(4751), - [sym_expression_statement] = STATE(4751), - [sym_while_statement] = STATE(4751), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4722), + [sym_for_range_loop] = STATE(4722), + [sym_compound_statement] = STATE(4722), + [sym_labeled_statement] = STATE(4722), + [sym_expression_statement] = STATE(4722), + [sym_while_statement] = STATE(4722), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -205639,18 +205094,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -205663,1973 +205118,1973 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5052] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10892), + [5023] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10858), [sym_comment] = ACTIONS(3), }, - [5053] = { - [sym_do_statement] = STATE(4761), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [5024] = { + [sym_do_statement] = STATE(4732), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4761), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4761), - [sym_if_statement] = STATE(4761), - [sym_switch_statement] = STATE(4761), - [sym_for_statement] = STATE(4761), - [sym_return_statement] = STATE(4761), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4732), + [sym_try_statement] = STATE(4732), + [sym_if_statement] = STATE(4732), + [sym_switch_statement] = STATE(4732), + [sym_for_statement] = STATE(4732), + [sym_return_statement] = STATE(4732), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4761), - [sym_break_statement] = STATE(4761), - [sym_continue_statement] = STATE(4761), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4732), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4761), - [sym_labeled_statement] = STATE(4761), - [sym_expression_statement] = STATE(4761), - [sym_while_statement] = STATE(4761), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4732), + [sym_for_range_loop] = STATE(4732), + [sym_compound_statement] = STATE(4732), + [sym_labeled_statement] = STATE(4732), + [sym_expression_statement] = STATE(4732), + [sym_while_statement] = STATE(4732), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5054] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10894), + [5025] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10860), [sym_comment] = ACTIONS(3), }, - [5055] = { - [aux_sym_for_statement_repeat1] = STATE(5093), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10894), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5026] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5064), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10860), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5056] = { - [sym_do_statement] = STATE(4771), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [5027] = { + [sym_do_statement] = STATE(4742), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4771), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4771), - [sym_if_statement] = STATE(4771), - [sym_switch_statement] = STATE(4771), - [sym_for_statement] = STATE(4771), - [sym_return_statement] = STATE(4771), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4742), + [sym_try_statement] = STATE(4742), + [sym_if_statement] = STATE(4742), + [sym_switch_statement] = STATE(4742), + [sym_for_statement] = STATE(4742), + [sym_return_statement] = STATE(4742), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4771), - [sym_break_statement] = STATE(4771), - [sym_continue_statement] = STATE(4771), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4742), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4771), - [sym_labeled_statement] = STATE(4771), - [sym_expression_statement] = STATE(4771), - [sym_while_statement] = STATE(4771), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4742), + [sym_for_range_loop] = STATE(4742), + [sym_compound_statement] = STATE(4742), + [sym_labeled_statement] = STATE(4742), + [sym_expression_statement] = STATE(4742), + [sym_while_statement] = STATE(4742), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5057] = { - [anon_sym_DASH] = ACTIONS(10247), - [sym_raw_string_literal] = ACTIONS(10249), - [anon_sym_else] = ACTIONS(10247), - [sym_true] = ACTIONS(10247), - [anon_sym_mutable] = ACTIONS(10247), - [sym_null] = ACTIONS(10247), - [anon_sym_break] = ACTIONS(10247), - [anon_sym_BANG] = ACTIONS(10249), - [anon_sym_sizeof] = ACTIONS(10247), - [anon_sym_volatile] = ACTIONS(10247), - [anon_sym_PLUS] = ACTIONS(10247), - [anon_sym_typedef] = ACTIONS(10247), - [anon_sym_switch] = ACTIONS(10247), - [anon_sym_explicit] = ACTIONS(10247), - [sym_identifier] = ACTIONS(10247), - [anon_sym_delete] = ACTIONS(10247), - [anon_sym_continue] = ACTIONS(10247), - [anon_sym__Atomic] = ACTIONS(10247), - [sym_number_literal] = ACTIONS(10249), - [anon_sym_extern] = ACTIONS(10247), - [anon_sym_enum] = ACTIONS(10247), - [anon_sym_constexpr] = ACTIONS(10247), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10249), - [anon_sym_case] = ACTIONS(10247), - [anon_sym_SQUOTE] = ACTIONS(10249), - [anon_sym_LBRACE] = ACTIONS(10249), - [anon_sym_DASH_DASH] = ACTIONS(10249), - [anon_sym_LPAREN2] = ACTIONS(10249), - [anon_sym_struct] = ACTIONS(10247), - [sym_auto] = ACTIONS(10247), - [anon_sym_signed] = ACTIONS(10247), - [anon_sym_long] = ACTIONS(10247), - [anon_sym_COLON_COLON] = ACTIONS(10249), - [anon_sym_default] = ACTIONS(10247), - [anon_sym_AMP] = ACTIONS(10249), - [anon_sym_static] = ACTIONS(10247), - [anon_sym_RBRACE] = ACTIONS(10249), - [anon_sym_STAR] = ACTIONS(10249), - [anon_sym_union] = ACTIONS(10247), - [anon_sym_typename] = ACTIONS(10247), - [anon_sym_short] = ACTIONS(10247), - [anon_sym_new] = ACTIONS(10247), - [anon_sym_goto] = ACTIONS(10247), - [anon_sym_while] = ACTIONS(10247), - [anon_sym_try] = ACTIONS(10247), - [anon_sym_for] = ACTIONS(10247), - [anon_sym_register] = ACTIONS(10247), - [anon_sym_DQUOTE] = ACTIONS(10249), - [anon_sym_const] = ACTIONS(10247), - [anon_sym_LBRACK] = ACTIONS(10247), - [anon_sym_class] = ACTIONS(10247), - [anon_sym_if] = ACTIONS(10247), - [sym_primitive_type] = ACTIONS(10247), - [sym_false] = ACTIONS(10247), - [sym_nullptr] = ACTIONS(10247), - [anon_sym_do] = ACTIONS(10247), - [anon_sym_return] = ACTIONS(10247), - [anon_sym_TILDE] = ACTIONS(10249), - [anon_sym_SEMI] = ACTIONS(10249), - [anon_sym_inline] = ACTIONS(10247), - [anon_sym_PLUS_PLUS] = ACTIONS(10249), - [anon_sym_restrict] = ACTIONS(10247), + [5028] = { + [anon_sym_DASH] = ACTIONS(10213), + [sym_raw_string_literal] = ACTIONS(10215), + [anon_sym_else] = ACTIONS(10213), + [sym_true] = ACTIONS(10213), + [anon_sym_mutable] = ACTIONS(10213), + [sym_null] = ACTIONS(10213), + [anon_sym_break] = ACTIONS(10213), + [anon_sym_BANG] = ACTIONS(10215), + [anon_sym_sizeof] = ACTIONS(10213), + [anon_sym_volatile] = ACTIONS(10213), + [anon_sym_PLUS] = ACTIONS(10213), + [anon_sym_typedef] = ACTIONS(10213), + [anon_sym_switch] = ACTIONS(10213), + [anon_sym_explicit] = ACTIONS(10213), + [sym_identifier] = ACTIONS(10213), + [anon_sym_delete] = ACTIONS(10213), + [anon_sym_continue] = ACTIONS(10213), + [anon_sym__Atomic] = ACTIONS(10213), + [sym_number_literal] = ACTIONS(10215), + [anon_sym_extern] = ACTIONS(10213), + [anon_sym_enum] = ACTIONS(10213), + [anon_sym_constexpr] = ACTIONS(10213), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10215), + [anon_sym_case] = ACTIONS(10213), + [anon_sym_SQUOTE] = ACTIONS(10215), + [anon_sym_LBRACE] = ACTIONS(10215), + [anon_sym_DASH_DASH] = ACTIONS(10215), + [anon_sym_LPAREN2] = ACTIONS(10215), + [anon_sym_struct] = ACTIONS(10213), + [sym_auto] = ACTIONS(10213), + [anon_sym_signed] = ACTIONS(10213), + [anon_sym_long] = ACTIONS(10213), + [anon_sym_COLON_COLON] = ACTIONS(10215), + [anon_sym_default] = ACTIONS(10213), + [anon_sym_AMP] = ACTIONS(10215), + [anon_sym_static] = ACTIONS(10213), + [anon_sym_RBRACE] = ACTIONS(10215), + [anon_sym_STAR] = ACTIONS(10215), + [anon_sym_union] = ACTIONS(10213), + [anon_sym_typename] = ACTIONS(10213), + [anon_sym_short] = ACTIONS(10213), + [anon_sym_new] = ACTIONS(10213), + [anon_sym_goto] = ACTIONS(10213), + [anon_sym_while] = ACTIONS(10213), + [anon_sym_try] = ACTIONS(10213), + [anon_sym_for] = ACTIONS(10213), + [anon_sym_register] = ACTIONS(10213), + [anon_sym_DQUOTE] = ACTIONS(10215), + [anon_sym_const] = ACTIONS(10213), + [anon_sym_LBRACK] = ACTIONS(10213), + [anon_sym_class] = ACTIONS(10213), + [anon_sym_if] = ACTIONS(10213), + [sym_primitive_type] = ACTIONS(10213), + [sym_false] = ACTIONS(10213), + [sym_nullptr] = ACTIONS(10213), + [anon_sym_do] = ACTIONS(10213), + [anon_sym_return] = ACTIONS(10213), + [anon_sym_TILDE] = ACTIONS(10215), + [anon_sym_SEMI] = ACTIONS(10215), + [anon_sym_inline] = ACTIONS(10213), + [anon_sym_PLUS_PLUS] = ACTIONS(10215), + [anon_sym_restrict] = ACTIONS(10213), }, - [5058] = { - [sym_do_statement] = STATE(5094), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5029] = { + [sym_do_statement] = STATE(5065), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5094), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_switch_statement] = STATE(5094), - [sym_for_statement] = STATE(5094), - [sym_return_statement] = STATE(5094), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5065), + [sym_try_statement] = STATE(5065), + [sym_if_statement] = STATE(5065), + [sym_switch_statement] = STATE(5065), + [sym_for_statement] = STATE(5065), + [sym_return_statement] = STATE(5065), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5094), - [sym_break_statement] = STATE(5094), - [sym_continue_statement] = STATE(5094), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5065), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5094), - [sym_labeled_statement] = STATE(5094), - [sym_expression_statement] = STATE(5094), - [sym_while_statement] = STATE(5094), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5065), + [sym_for_range_loop] = STATE(5065), + [sym_compound_statement] = STATE(5065), + [sym_labeled_statement] = STATE(5065), + [sym_expression_statement] = STATE(5065), + [sym_while_statement] = STATE(5065), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5059] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10896), + [5030] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10862), [sym_comment] = ACTIONS(3), }, - [5060] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5097), - [sym_logical_expression] = STATE(5097), - [sym_bitwise_expression] = STATE(5097), - [sym_cast_expression] = STATE(5097), - [sym_new_expression] = STATE(5097), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5097), - [sym_char_literal] = STATE(5097), - [sym_template_function] = STATE(5097), - [sym_conditional_expression] = STATE(5097), - [sym_equality_expression] = STATE(5097), - [sym_relational_expression] = STATE(5097), - [sym_delete_expression] = STATE(5097), - [sym_sizeof_expression] = STATE(5097), - [sym_parenthesized_expression] = STATE(5097), - [sym_lambda_expression] = STATE(5097), - [sym_concatenated_string] = STATE(5097), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5097), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5097), - [sym_math_expression] = STATE(5097), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10898), + [5031] = { + [sym_template_function] = STATE(5068), + [sym__expression] = STATE(5068), + [sym_logical_expression] = STATE(5068), + [sym_bitwise_expression] = STATE(5068), + [sym_cast_expression] = STATE(5068), + [sym_delete_expression] = STATE(5068), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5068), + [sym_lambda_expression] = STATE(5068), + [sym_char_literal] = STATE(5068), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5068), + [sym_equality_expression] = STATE(5068), + [sym_relational_expression] = STATE(5068), + [sym_sizeof_expression] = STATE(5068), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5068), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5068), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5068), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5068), + [sym_math_expression] = STATE(5068), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5068), + [sym_raw_string_literal] = ACTIONS(10864), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10900), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10900), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10866), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10866), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10898), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10864), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10900), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10900), + [sym_false] = ACTIONS(10866), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10866), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10902), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10868), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [5061] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10904), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5032] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10870), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5062] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5099), - [sym_logical_expression] = STATE(5099), - [sym_bitwise_expression] = STATE(5099), - [sym_cast_expression] = STATE(5099), - [sym_new_expression] = STATE(5099), - [sym_field_expression] = STATE(299), - [sym_compound_literal_expression] = STATE(5099), - [sym_char_literal] = STATE(5099), - [sym_template_function] = STATE(5099), - [sym_conditional_expression] = STATE(5099), - [sym_equality_expression] = STATE(5099), - [sym_relational_expression] = STATE(5099), - [sym_delete_expression] = STATE(5099), - [sym_sizeof_expression] = STATE(5099), - [sym_parenthesized_expression] = STATE(5099), - [sym_lambda_expression] = STATE(5099), - [sym_concatenated_string] = STATE(5099), - [sym_string_literal] = STATE(300), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(299), - [sym_assignment_expression] = STATE(5099), - [sym_pointer_expression] = STATE(299), - [sym_shift_expression] = STATE(5099), - [sym_math_expression] = STATE(5099), - [sym_call_expression] = STATE(299), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10906), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_LPAREN2] = ACTIONS(482), - [sym_true] = ACTIONS(10908), - [sym_null] = ACTIONS(10908), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10906), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(490), - [sym_false] = ACTIONS(10908), - [anon_sym_AMP] = ACTIONS(492), - [sym_nullptr] = ACTIONS(10908), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_sizeof] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(10904), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(486), + [5033] = { + [sym_template_function] = STATE(5070), + [sym__expression] = STATE(5070), + [sym_logical_expression] = STATE(5070), + [sym_bitwise_expression] = STATE(5070), + [sym_cast_expression] = STATE(5070), + [sym_delete_expression] = STATE(5070), + [sym_field_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(5070), + [sym_lambda_expression] = STATE(5070), + [sym_char_literal] = STATE(5070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5070), + [sym_equality_expression] = STATE(5070), + [sym_relational_expression] = STATE(5070), + [sym_sizeof_expression] = STATE(5070), + [sym_subscript_expression] = STATE(301), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(302), + [sym_concatenated_string] = STATE(5070), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5070), + [sym_pointer_expression] = STATE(301), + [sym_shift_expression] = STATE(5070), + [sym_math_expression] = STATE(5070), + [sym_call_expression] = STATE(301), + [sym_new_expression] = STATE(5070), + [sym_raw_string_literal] = ACTIONS(10872), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [sym_true] = ACTIONS(10874), + [sym_null] = ACTIONS(10874), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10872), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(494), + [sym_false] = ACTIONS(10874), + [anon_sym_AMP] = ACTIONS(496), + [sym_nullptr] = ACTIONS(10874), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_sizeof] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(10870), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(504), + [anon_sym_new] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(41), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(490), }, - [5063] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5100), - [sym_logical_expression] = STATE(5100), - [sym_bitwise_expression] = STATE(5100), - [sym_cast_expression] = STATE(5100), - [sym_new_expression] = STATE(5100), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(5100), - [sym_char_literal] = STATE(5100), - [sym_template_function] = STATE(5100), - [sym_conditional_expression] = STATE(5100), - [sym_equality_expression] = STATE(5100), - [sym_relational_expression] = STATE(5100), - [sym_delete_expression] = STATE(5100), - [sym_sizeof_expression] = STATE(5100), - [sym_parenthesized_expression] = STATE(5100), - [sym_lambda_expression] = STATE(5100), - [sym_concatenated_string] = STATE(5100), - [sym_string_literal] = STATE(828), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(827), - [sym_assignment_expression] = STATE(5100), - [sym_pointer_expression] = STATE(827), - [sym_shift_expression] = STATE(5100), - [sym_math_expression] = STATE(5100), - [sym_call_expression] = STATE(827), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10910), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_true] = ACTIONS(10912), - [sym_null] = ACTIONS(10912), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10910), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1490), - [sym_false] = ACTIONS(10912), - [anon_sym_AMP] = ACTIONS(1492), - [sym_nullptr] = ACTIONS(10912), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1496), + [5034] = { + [sym_template_function] = STATE(5071), + [sym__expression] = STATE(5071), + [sym_logical_expression] = STATE(5071), + [sym_bitwise_expression] = STATE(5071), + [sym_cast_expression] = STATE(5071), + [sym_delete_expression] = STATE(5071), + [sym_field_expression] = STATE(831), + [sym_compound_literal_expression] = STATE(5071), + [sym_lambda_expression] = STATE(5071), + [sym_char_literal] = STATE(5071), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5071), + [sym_equality_expression] = STATE(5071), + [sym_relational_expression] = STATE(5071), + [sym_sizeof_expression] = STATE(5071), + [sym_subscript_expression] = STATE(831), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5071), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(832), + [sym_concatenated_string] = STATE(5071), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5071), + [sym_pointer_expression] = STATE(831), + [sym_shift_expression] = STATE(5071), + [sym_math_expression] = STATE(5071), + [sym_call_expression] = STATE(831), + [sym_new_expression] = STATE(5071), + [sym_raw_string_literal] = ACTIONS(10876), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [sym_true] = ACTIONS(10878), + [sym_null] = ACTIONS(10878), + [anon_sym_DQUOTE] = ACTIONS(85), + [sym_number_literal] = ACTIONS(10876), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1504), + [sym_false] = ACTIONS(10878), + [anon_sym_AMP] = ACTIONS(1506), + [sym_nullptr] = ACTIONS(10878), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_delete] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), }, - [5064] = { - [aux_sym_try_statement_repeat1] = STATE(5064), - [sym_catch_clause] = STATE(5064), - [anon_sym_DASH] = ACTIONS(5353), - [sym_raw_string_literal] = ACTIONS(5355), - [anon_sym_else] = ACTIONS(5353), - [sym_true] = ACTIONS(5353), - [anon_sym_mutable] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), - [anon_sym_break] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5355), - [anon_sym_sizeof] = ACTIONS(5353), - [anon_sym_volatile] = ACTIONS(5353), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_typedef] = ACTIONS(5353), - [anon_sym_switch] = ACTIONS(5353), - [anon_sym_explicit] = ACTIONS(5353), - [sym_identifier] = ACTIONS(5353), - [anon_sym_catch] = ACTIONS(10361), - [anon_sym_delete] = ACTIONS(5353), - [anon_sym_continue] = ACTIONS(5353), - [anon_sym__Atomic] = ACTIONS(5353), - [sym_number_literal] = ACTIONS(5355), - [anon_sym_extern] = ACTIONS(5353), - [anon_sym_enum] = ACTIONS(5353), - [anon_sym_constexpr] = ACTIONS(5353), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(5353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5355), - [anon_sym_case] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5355), - [anon_sym_LPAREN2] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5353), - [sym_auto] = ACTIONS(5353), - [anon_sym_signed] = ACTIONS(5353), - [anon_sym_long] = ACTIONS(5353), - [anon_sym_COLON_COLON] = ACTIONS(5355), - [anon_sym_default] = ACTIONS(5353), - [anon_sym_AMP] = ACTIONS(5355), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_RBRACE] = ACTIONS(5355), - [anon_sym_STAR] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5353), - [anon_sym_typename] = ACTIONS(5353), - [anon_sym_short] = ACTIONS(5353), - [anon_sym_new] = ACTIONS(5353), - [anon_sym_goto] = ACTIONS(5353), - [anon_sym_while] = ACTIONS(5353), - [anon_sym_try] = ACTIONS(5353), - [anon_sym_for] = ACTIONS(5353), - [anon_sym_register] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(5353), - [anon_sym_class] = ACTIONS(5353), - [anon_sym_if] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_nullptr] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(5353), - [anon_sym_return] = ACTIONS(5353), - [anon_sym_TILDE] = ACTIONS(5355), - [anon_sym_SEMI] = ACTIONS(5355), - [anon_sym_inline] = ACTIONS(5353), - [anon_sym_PLUS_PLUS] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5353), + [5035] = { + [sym_catch_clause] = STATE(5035), + [aux_sym_try_statement_repeat1] = STATE(5035), + [anon_sym_DASH] = ACTIONS(5352), + [sym_raw_string_literal] = ACTIONS(5354), + [anon_sym_else] = ACTIONS(5352), + [sym_true] = ACTIONS(5352), + [anon_sym_mutable] = ACTIONS(5352), + [sym_null] = ACTIONS(5352), + [anon_sym_break] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5354), + [anon_sym_sizeof] = ACTIONS(5352), + [anon_sym_volatile] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_typedef] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_explicit] = ACTIONS(5352), + [sym_identifier] = ACTIONS(5352), + [anon_sym_catch] = ACTIONS(10327), + [anon_sym_delete] = ACTIONS(5352), + [anon_sym_continue] = ACTIONS(5352), + [anon_sym__Atomic] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5354), + [anon_sym_extern] = ACTIONS(5352), + [anon_sym_enum] = ACTIONS(5352), + [anon_sym_constexpr] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(5352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5354), + [anon_sym_case] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_struct] = ACTIONS(5352), + [sym_auto] = ACTIONS(5352), + [anon_sym_signed] = ACTIONS(5352), + [anon_sym_long] = ACTIONS(5352), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_default] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_union] = ACTIONS(5352), + [anon_sym_typename] = ACTIONS(5352), + [anon_sym_short] = ACTIONS(5352), + [anon_sym_new] = ACTIONS(5352), + [anon_sym_goto] = ACTIONS(5352), + [anon_sym_while] = ACTIONS(5352), + [anon_sym_try] = ACTIONS(5352), + [anon_sym_for] = ACTIONS(5352), + [anon_sym_register] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5352), + [anon_sym_class] = ACTIONS(5352), + [anon_sym_if] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(5352), + [sym_false] = ACTIONS(5352), + [sym_nullptr] = ACTIONS(5352), + [anon_sym_do] = ACTIONS(5352), + [anon_sym_return] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [anon_sym_inline] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_restrict] = ACTIONS(5352), }, - [5065] = { - [sym_do_statement] = STATE(5101), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5036] = { + [sym_do_statement] = STATE(5072), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5101), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5101), - [sym_if_statement] = STATE(5101), - [sym_switch_statement] = STATE(5101), - [sym_for_statement] = STATE(5101), - [sym_return_statement] = STATE(5101), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5072), + [sym_try_statement] = STATE(5072), + [sym_if_statement] = STATE(5072), + [sym_switch_statement] = STATE(5072), + [sym_for_statement] = STATE(5072), + [sym_return_statement] = STATE(5072), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5101), - [sym_break_statement] = STATE(5101), - [sym_continue_statement] = STATE(5101), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5072), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5101), - [sym_labeled_statement] = STATE(5101), - [sym_expression_statement] = STATE(5101), - [sym_while_statement] = STATE(5101), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5072), + [sym_for_range_loop] = STATE(5072), + [sym_compound_statement] = STATE(5072), + [sym_labeled_statement] = STATE(5072), + [sym_expression_statement] = STATE(5072), + [sym_while_statement] = STATE(5072), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5066] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10914), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5037] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10880), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5067] = { - [anon_sym_DASH] = ACTIONS(10275), - [sym_raw_string_literal] = ACTIONS(10277), - [anon_sym_else] = ACTIONS(10275), - [sym_true] = ACTIONS(10275), - [anon_sym_mutable] = ACTIONS(10275), - [sym_null] = ACTIONS(10275), - [anon_sym_break] = ACTIONS(10275), - [anon_sym_BANG] = ACTIONS(10277), - [anon_sym_sizeof] = ACTIONS(10275), - [anon_sym_volatile] = ACTIONS(10275), - [anon_sym_PLUS] = ACTIONS(10275), - [anon_sym_typedef] = ACTIONS(10275), - [anon_sym_switch] = ACTIONS(10275), - [anon_sym_explicit] = ACTIONS(10275), - [sym_identifier] = ACTIONS(10275), - [anon_sym_delete] = ACTIONS(10275), - [anon_sym_continue] = ACTIONS(10275), - [anon_sym__Atomic] = ACTIONS(10275), - [sym_number_literal] = ACTIONS(10277), - [anon_sym_extern] = ACTIONS(10275), - [anon_sym_enum] = ACTIONS(10275), - [anon_sym_constexpr] = ACTIONS(10275), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10277), - [anon_sym_case] = ACTIONS(10275), - [anon_sym_SQUOTE] = ACTIONS(10277), - [anon_sym_LBRACE] = ACTIONS(10277), - [anon_sym_DASH_DASH] = ACTIONS(10277), - [anon_sym_LPAREN2] = ACTIONS(10277), - [anon_sym_struct] = ACTIONS(10275), - [sym_auto] = ACTIONS(10275), - [anon_sym_signed] = ACTIONS(10275), - [anon_sym_long] = ACTIONS(10275), - [anon_sym_COLON_COLON] = ACTIONS(10277), - [anon_sym_default] = ACTIONS(10275), - [anon_sym_AMP] = ACTIONS(10277), - [anon_sym_static] = ACTIONS(10275), - [anon_sym_RBRACE] = ACTIONS(10277), - [anon_sym_STAR] = ACTIONS(10277), - [anon_sym_union] = ACTIONS(10275), - [anon_sym_typename] = ACTIONS(10275), - [anon_sym_short] = ACTIONS(10275), - [anon_sym_new] = ACTIONS(10275), - [anon_sym_goto] = ACTIONS(10275), - [anon_sym_while] = ACTIONS(10275), - [anon_sym_try] = ACTIONS(10275), - [anon_sym_for] = ACTIONS(10275), - [anon_sym_register] = ACTIONS(10275), - [anon_sym_DQUOTE] = ACTIONS(10277), - [anon_sym_const] = ACTIONS(10275), - [anon_sym_LBRACK] = ACTIONS(10275), - [anon_sym_class] = ACTIONS(10275), - [anon_sym_if] = ACTIONS(10275), - [sym_primitive_type] = ACTIONS(10275), - [sym_false] = ACTIONS(10275), - [sym_nullptr] = ACTIONS(10275), - [anon_sym_do] = ACTIONS(10275), - [anon_sym_return] = ACTIONS(10275), - [anon_sym_TILDE] = ACTIONS(10277), - [anon_sym_SEMI] = ACTIONS(10277), - [anon_sym_inline] = ACTIONS(10275), - [anon_sym_PLUS_PLUS] = ACTIONS(10277), - [anon_sym_restrict] = ACTIONS(10275), + [5038] = { + [anon_sym_DASH] = ACTIONS(10241), + [sym_raw_string_literal] = ACTIONS(10243), + [anon_sym_else] = ACTIONS(10241), + [sym_true] = ACTIONS(10241), + [anon_sym_mutable] = ACTIONS(10241), + [sym_null] = ACTIONS(10241), + [anon_sym_break] = ACTIONS(10241), + [anon_sym_BANG] = ACTIONS(10243), + [anon_sym_sizeof] = ACTIONS(10241), + [anon_sym_volatile] = ACTIONS(10241), + [anon_sym_PLUS] = ACTIONS(10241), + [anon_sym_typedef] = ACTIONS(10241), + [anon_sym_switch] = ACTIONS(10241), + [anon_sym_explicit] = ACTIONS(10241), + [sym_identifier] = ACTIONS(10241), + [anon_sym_delete] = ACTIONS(10241), + [anon_sym_continue] = ACTIONS(10241), + [anon_sym__Atomic] = ACTIONS(10241), + [sym_number_literal] = ACTIONS(10243), + [anon_sym_extern] = ACTIONS(10241), + [anon_sym_enum] = ACTIONS(10241), + [anon_sym_constexpr] = ACTIONS(10241), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10243), + [anon_sym_case] = ACTIONS(10241), + [anon_sym_SQUOTE] = ACTIONS(10243), + [anon_sym_LBRACE] = ACTIONS(10243), + [anon_sym_DASH_DASH] = ACTIONS(10243), + [anon_sym_LPAREN2] = ACTIONS(10243), + [anon_sym_struct] = ACTIONS(10241), + [sym_auto] = ACTIONS(10241), + [anon_sym_signed] = ACTIONS(10241), + [anon_sym_long] = ACTIONS(10241), + [anon_sym_COLON_COLON] = ACTIONS(10243), + [anon_sym_default] = ACTIONS(10241), + [anon_sym_AMP] = ACTIONS(10243), + [anon_sym_static] = ACTIONS(10241), + [anon_sym_RBRACE] = ACTIONS(10243), + [anon_sym_STAR] = ACTIONS(10243), + [anon_sym_union] = ACTIONS(10241), + [anon_sym_typename] = ACTIONS(10241), + [anon_sym_short] = ACTIONS(10241), + [anon_sym_new] = ACTIONS(10241), + [anon_sym_goto] = ACTIONS(10241), + [anon_sym_while] = ACTIONS(10241), + [anon_sym_try] = ACTIONS(10241), + [anon_sym_for] = ACTIONS(10241), + [anon_sym_register] = ACTIONS(10241), + [anon_sym_DQUOTE] = ACTIONS(10243), + [anon_sym_const] = ACTIONS(10241), + [anon_sym_LBRACK] = ACTIONS(10241), + [anon_sym_class] = ACTIONS(10241), + [anon_sym_if] = ACTIONS(10241), + [sym_primitive_type] = ACTIONS(10241), + [sym_false] = ACTIONS(10241), + [sym_nullptr] = ACTIONS(10241), + [anon_sym_do] = ACTIONS(10241), + [anon_sym_return] = ACTIONS(10241), + [anon_sym_TILDE] = ACTIONS(10243), + [anon_sym_SEMI] = ACTIONS(10243), + [anon_sym_inline] = ACTIONS(10241), + [anon_sym_PLUS_PLUS] = ACTIONS(10243), + [anon_sym_restrict] = ACTIONS(10241), }, - [5068] = { - [anon_sym_LPAREN2] = ACTIONS(10698), - [anon_sym_DASH] = ACTIONS(10696), - [sym_raw_string_literal] = ACTIONS(10698), - [sym_true] = ACTIONS(10696), - [anon_sym_else] = ACTIONS(10696), - [sym_null] = ACTIONS(10696), - [anon_sym_COLON_COLON] = ACTIONS(10698), - [anon_sym_default] = ACTIONS(10696), - [anon_sym_break] = ACTIONS(10696), - [anon_sym_BANG] = ACTIONS(10698), - [anon_sym_AMP] = ACTIONS(10698), - [anon_sym_sizeof] = ACTIONS(10696), - [anon_sym_RBRACE] = ACTIONS(10698), - [anon_sym_PLUS] = ACTIONS(10696), - [anon_sym_STAR] = ACTIONS(10698), - [anon_sym_switch] = ACTIONS(10696), - [sym_identifier] = ACTIONS(10696), - [anon_sym_new] = ACTIONS(10696), - [anon_sym_goto] = ACTIONS(10696), - [anon_sym_while] = ACTIONS(10696), - [anon_sym_continue] = ACTIONS(10696), - [anon_sym_for] = ACTIONS(10696), - [anon_sym_delete] = ACTIONS(10696), - [anon_sym_try] = ACTIONS(10696), - [anon_sym_DQUOTE] = ACTIONS(10698), - [sym_number_literal] = ACTIONS(10698), - [anon_sym_LBRACK] = ACTIONS(10698), - [anon_sym_if] = ACTIONS(10696), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(10696), - [sym_nullptr] = ACTIONS(10696), - [anon_sym_do] = ACTIONS(10696), - [anon_sym_case] = ACTIONS(10696), - [anon_sym_return] = ACTIONS(10696), - [anon_sym_TILDE] = ACTIONS(10698), - [anon_sym_SEMI] = ACTIONS(10698), - [anon_sym_PLUS_PLUS] = ACTIONS(10698), - [anon_sym_SQUOTE] = ACTIONS(10698), - [anon_sym_LBRACE] = ACTIONS(10698), - [anon_sym_DASH_DASH] = ACTIONS(10698), + [5039] = { + [anon_sym_LPAREN2] = ACTIONS(10664), + [anon_sym_DASH] = ACTIONS(10662), + [sym_raw_string_literal] = ACTIONS(10664), + [sym_true] = ACTIONS(10662), + [anon_sym_else] = ACTIONS(10662), + [sym_null] = ACTIONS(10662), + [anon_sym_COLON_COLON] = ACTIONS(10664), + [anon_sym_default] = ACTIONS(10662), + [anon_sym_break] = ACTIONS(10662), + [anon_sym_BANG] = ACTIONS(10664), + [anon_sym_AMP] = ACTIONS(10664), + [anon_sym_sizeof] = ACTIONS(10662), + [anon_sym_RBRACE] = ACTIONS(10664), + [anon_sym_PLUS] = ACTIONS(10662), + [anon_sym_STAR] = ACTIONS(10664), + [anon_sym_switch] = ACTIONS(10662), + [sym_identifier] = ACTIONS(10662), + [anon_sym_new] = ACTIONS(10662), + [anon_sym_goto] = ACTIONS(10662), + [anon_sym_while] = ACTIONS(10662), + [anon_sym_continue] = ACTIONS(10662), + [anon_sym_for] = ACTIONS(10662), + [anon_sym_delete] = ACTIONS(10662), + [anon_sym_try] = ACTIONS(10662), + [anon_sym_DQUOTE] = ACTIONS(10664), + [sym_number_literal] = ACTIONS(10664), + [anon_sym_LBRACK] = ACTIONS(10664), + [anon_sym_if] = ACTIONS(10662), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(10662), + [sym_nullptr] = ACTIONS(10662), + [anon_sym_do] = ACTIONS(10662), + [anon_sym_case] = ACTIONS(10662), + [anon_sym_return] = ACTIONS(10662), + [anon_sym_TILDE] = ACTIONS(10664), + [anon_sym_SEMI] = ACTIONS(10664), + [anon_sym_PLUS_PLUS] = ACTIONS(10664), + [anon_sym_SQUOTE] = ACTIONS(10664), + [anon_sym_LBRACE] = ACTIONS(10664), + [anon_sym_DASH_DASH] = ACTIONS(10664), }, - [5069] = { - [sym_do_statement] = STATE(4815), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [5040] = { + [sym_do_statement] = STATE(4786), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4815), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4815), - [sym_if_statement] = STATE(4815), - [sym_switch_statement] = STATE(4815), - [sym_for_statement] = STATE(4815), - [sym_return_statement] = STATE(4815), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4786), + [sym_try_statement] = STATE(4786), + [sym_if_statement] = STATE(4786), + [sym_switch_statement] = STATE(4786), + [sym_for_statement] = STATE(4786), + [sym_return_statement] = STATE(4786), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4815), - [sym_break_statement] = STATE(4815), - [sym_continue_statement] = STATE(4815), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4786), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4815), - [sym_labeled_statement] = STATE(4815), - [sym_expression_statement] = STATE(4815), - [sym_while_statement] = STATE(4815), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4786), + [sym_for_range_loop] = STATE(4786), + [sym_compound_statement] = STATE(4786), + [sym_labeled_statement] = STATE(4786), + [sym_expression_statement] = STATE(4786), + [sym_while_statement] = STATE(4786), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5070] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10916), + [5041] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10882), [sym_comment] = ACTIONS(3), }, - [5071] = { - [aux_sym_for_statement_repeat1] = STATE(5104), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10916), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5042] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5075), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10882), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5072] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5105), - [sym_logical_expression] = STATE(5105), - [sym_bitwise_expression] = STATE(5105), - [sym_cast_expression] = STATE(5105), - [sym_new_expression] = STATE(5105), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5105), - [sym_char_literal] = STATE(5105), - [sym_template_function] = STATE(5105), - [sym_conditional_expression] = STATE(5105), - [sym_equality_expression] = STATE(5105), - [sym_relational_expression] = STATE(5105), - [sym_delete_expression] = STATE(5105), - [sym_sizeof_expression] = STATE(5105), - [sym_parenthesized_expression] = STATE(5105), - [sym_lambda_expression] = STATE(5105), - [sym_concatenated_string] = STATE(5105), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5105), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5105), - [sym_math_expression] = STATE(5105), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10918), + [5043] = { + [sym_template_function] = STATE(5076), + [sym__expression] = STATE(5076), + [sym_logical_expression] = STATE(5076), + [sym_bitwise_expression] = STATE(5076), + [sym_cast_expression] = STATE(5076), + [sym_delete_expression] = STATE(5076), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5076), + [sym_lambda_expression] = STATE(5076), + [sym_char_literal] = STATE(5076), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5076), + [sym_equality_expression] = STATE(5076), + [sym_relational_expression] = STATE(5076), + [sym_sizeof_expression] = STATE(5076), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5076), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5076), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5076), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5076), + [sym_math_expression] = STATE(5076), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5076), + [sym_raw_string_literal] = ACTIONS(10884), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10920), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10920), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10886), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10886), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10918), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10884), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10920), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10920), + [sym_false] = ACTIONS(10886), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10886), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10916), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10882), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [5073] = { - [sym_do_statement] = STATE(4819), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [5044] = { + [sym_do_statement] = STATE(4790), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4819), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4819), - [sym_if_statement] = STATE(4819), - [sym_switch_statement] = STATE(4819), - [sym_for_statement] = STATE(4819), - [sym_return_statement] = STATE(4819), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4790), + [sym_try_statement] = STATE(4790), + [sym_if_statement] = STATE(4790), + [sym_switch_statement] = STATE(4790), + [sym_for_statement] = STATE(4790), + [sym_return_statement] = STATE(4790), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4819), - [sym_break_statement] = STATE(4819), - [sym_continue_statement] = STATE(4819), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4790), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4819), - [sym_labeled_statement] = STATE(4819), - [sym_expression_statement] = STATE(4819), - [sym_while_statement] = STATE(4819), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4790), + [sym_for_range_loop] = STATE(4790), + [sym_compound_statement] = STATE(4790), + [sym_labeled_statement] = STATE(4790), + [sym_expression_statement] = STATE(4790), + [sym_while_statement] = STATE(4790), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5074] = { - [sym_do_statement] = STATE(4826), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [5045] = { + [sym_do_statement] = STATE(4797), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4826), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4826), - [sym_if_statement] = STATE(4826), - [sym_switch_statement] = STATE(4826), - [sym_for_statement] = STATE(4826), - [sym_return_statement] = STATE(4826), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4797), + [sym_try_statement] = STATE(4797), + [sym_if_statement] = STATE(4797), + [sym_switch_statement] = STATE(4797), + [sym_for_statement] = STATE(4797), + [sym_return_statement] = STATE(4797), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4826), - [sym_break_statement] = STATE(4826), - [sym_continue_statement] = STATE(4826), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4797), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4826), - [sym_labeled_statement] = STATE(4826), - [sym_expression_statement] = STATE(4826), - [sym_while_statement] = STATE(4826), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4797), + [sym_for_range_loop] = STATE(4797), + [sym_compound_statement] = STATE(4797), + [sym_labeled_statement] = STATE(4797), + [sym_expression_statement] = STATE(4797), + [sym_while_statement] = STATE(4797), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5075] = { - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_DASH] = ACTIONS(9003), - [anon_sym_else] = ACTIONS(10922), - [sym_true] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [sym_null] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_default] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_AMP] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_RBRACE] = ACTIONS(9005), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_switch] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_LBRACK] = ACTIONS(9005), - [anon_sym_if] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_case] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), + [5046] = { + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_DASH] = ACTIONS(8967), + [anon_sym_else] = ACTIONS(10888), + [sym_true] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [sym_null] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_default] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_AMP] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_RBRACE] = ACTIONS(8969), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_switch] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_LBRACK] = ACTIONS(8969), + [anon_sym_if] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_case] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), }, - [5076] = { - [anon_sym_DASH] = ACTIONS(10696), - [sym_raw_string_literal] = ACTIONS(10698), - [anon_sym_else] = ACTIONS(10696), - [sym_true] = ACTIONS(10696), - [anon_sym_mutable] = ACTIONS(10696), - [sym_null] = ACTIONS(10696), - [anon_sym_break] = ACTIONS(10696), - [aux_sym_preproc_if_token2] = ACTIONS(10696), - [anon_sym_BANG] = ACTIONS(10698), - [anon_sym_sizeof] = ACTIONS(10696), - [anon_sym_volatile] = ACTIONS(10696), - [anon_sym_PLUS] = ACTIONS(10696), - [anon_sym_typedef] = ACTIONS(10696), - [anon_sym_switch] = ACTIONS(10696), - [anon_sym_explicit] = ACTIONS(10696), - [sym_identifier] = ACTIONS(10696), - [anon_sym_delete] = ACTIONS(10696), - [anon_sym_continue] = ACTIONS(10696), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10696), - [anon_sym__Atomic] = ACTIONS(10696), - [sym_number_literal] = ACTIONS(10698), - [anon_sym_extern] = ACTIONS(10696), - [anon_sym_enum] = ACTIONS(10696), - [anon_sym_constexpr] = ACTIONS(10696), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10698), - [anon_sym_namespace] = ACTIONS(10696), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10696), - [anon_sym_SQUOTE] = ACTIONS(10698), - [anon_sym_LBRACE] = ACTIONS(10698), - [anon_sym_DASH_DASH] = ACTIONS(10698), - [anon_sym_LPAREN2] = ACTIONS(10698), - [anon_sym_struct] = ACTIONS(10696), - [sym_auto] = ACTIONS(10696), - [anon_sym_signed] = ACTIONS(10696), - [anon_sym_long] = ACTIONS(10696), - [anon_sym_COLON_COLON] = ACTIONS(10698), - [anon_sym_using] = ACTIONS(10696), - [sym_preproc_directive] = ACTIONS(10696), - [aux_sym_preproc_if_token1] = ACTIONS(10696), - [anon_sym_AMP] = ACTIONS(10696), - [anon_sym_static] = ACTIONS(10696), - [anon_sym_STAR] = ACTIONS(10698), - [anon_sym_union] = ACTIONS(10696), - [anon_sym_typename] = ACTIONS(10696), - [anon_sym_short] = ACTIONS(10696), - [anon_sym_new] = ACTIONS(10696), - [anon_sym_goto] = ACTIONS(10696), - [sym_operator_name] = ACTIONS(10698), - [anon_sym_while] = ACTIONS(10696), - [anon_sym_try] = ACTIONS(10696), - [anon_sym_for] = ACTIONS(10696), - [aux_sym_preproc_include_token1] = ACTIONS(10696), - [anon_sym_register] = ACTIONS(10696), - [anon_sym_DQUOTE] = ACTIONS(10698), - [anon_sym_const] = ACTIONS(10696), - [anon_sym_LBRACK] = ACTIONS(10696), - [anon_sym_class] = ACTIONS(10696), - [anon_sym_if] = ACTIONS(10696), - [sym_primitive_type] = ACTIONS(10696), - [sym_false] = ACTIONS(10696), - [sym_nullptr] = ACTIONS(10696), - [anon_sym_do] = ACTIONS(10696), - [anon_sym_template] = ACTIONS(10696), - [anon_sym_return] = ACTIONS(10696), - [anon_sym_TILDE] = ACTIONS(10698), - [anon_sym_SEMI] = ACTIONS(10698), - [aux_sym_preproc_def_token1] = ACTIONS(10696), - [anon_sym_AMP_AMP] = ACTIONS(10698), - [anon_sym_inline] = ACTIONS(10696), - [anon_sym_PLUS_PLUS] = ACTIONS(10698), - [anon_sym_restrict] = ACTIONS(10696), + [5047] = { + [anon_sym_DASH] = ACTIONS(10662), + [sym_raw_string_literal] = ACTIONS(10664), + [anon_sym_else] = ACTIONS(10662), + [sym_true] = ACTIONS(10662), + [anon_sym_mutable] = ACTIONS(10662), + [sym_null] = ACTIONS(10662), + [anon_sym_break] = ACTIONS(10662), + [aux_sym_preproc_if_token2] = ACTIONS(10662), + [anon_sym_BANG] = ACTIONS(10664), + [anon_sym_sizeof] = ACTIONS(10662), + [anon_sym_volatile] = ACTIONS(10662), + [anon_sym_PLUS] = ACTIONS(10662), + [anon_sym_typedef] = ACTIONS(10662), + [anon_sym_switch] = ACTIONS(10662), + [anon_sym_explicit] = ACTIONS(10662), + [sym_identifier] = ACTIONS(10662), + [anon_sym_delete] = ACTIONS(10662), + [anon_sym_continue] = ACTIONS(10662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10662), + [anon_sym__Atomic] = ACTIONS(10662), + [sym_number_literal] = ACTIONS(10664), + [anon_sym_extern] = ACTIONS(10662), + [anon_sym_enum] = ACTIONS(10662), + [anon_sym_constexpr] = ACTIONS(10662), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10664), + [anon_sym_namespace] = ACTIONS(10662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10662), + [anon_sym_SQUOTE] = ACTIONS(10664), + [anon_sym_LBRACE] = ACTIONS(10664), + [anon_sym_DASH_DASH] = ACTIONS(10664), + [anon_sym_LPAREN2] = ACTIONS(10664), + [anon_sym_struct] = ACTIONS(10662), + [sym_auto] = ACTIONS(10662), + [anon_sym_signed] = ACTIONS(10662), + [anon_sym_long] = ACTIONS(10662), + [anon_sym_COLON_COLON] = ACTIONS(10664), + [anon_sym_using] = ACTIONS(10662), + [sym_preproc_directive] = ACTIONS(10662), + [aux_sym_preproc_if_token1] = ACTIONS(10662), + [anon_sym_AMP] = ACTIONS(10662), + [anon_sym_static] = ACTIONS(10662), + [anon_sym_STAR] = ACTIONS(10664), + [anon_sym_union] = ACTIONS(10662), + [anon_sym_typename] = ACTIONS(10662), + [anon_sym_short] = ACTIONS(10662), + [anon_sym_new] = ACTIONS(10662), + [anon_sym_goto] = ACTIONS(10662), + [sym_operator_name] = ACTIONS(10664), + [anon_sym_while] = ACTIONS(10662), + [anon_sym_try] = ACTIONS(10662), + [anon_sym_for] = ACTIONS(10662), + [aux_sym_preproc_include_token1] = ACTIONS(10662), + [anon_sym_register] = ACTIONS(10662), + [anon_sym_DQUOTE] = ACTIONS(10664), + [anon_sym_const] = ACTIONS(10662), + [anon_sym_LBRACK] = ACTIONS(10662), + [anon_sym_class] = ACTIONS(10662), + [anon_sym_if] = ACTIONS(10662), + [sym_primitive_type] = ACTIONS(10662), + [sym_false] = ACTIONS(10662), + [sym_nullptr] = ACTIONS(10662), + [anon_sym_do] = ACTIONS(10662), + [anon_sym_template] = ACTIONS(10662), + [anon_sym_return] = ACTIONS(10662), + [anon_sym_TILDE] = ACTIONS(10664), + [anon_sym_SEMI] = ACTIONS(10664), + [aux_sym_preproc_def_token1] = ACTIONS(10662), + [anon_sym_AMP_AMP] = ACTIONS(10664), + [anon_sym_inline] = ACTIONS(10662), + [anon_sym_PLUS_PLUS] = ACTIONS(10664), + [anon_sym_restrict] = ACTIONS(10662), }, - [5077] = { - [sym_do_statement] = STATE(4829), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [5048] = { + [sym_do_statement] = STATE(4800), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4829), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4829), - [sym_if_statement] = STATE(4829), - [sym_switch_statement] = STATE(4829), - [sym_for_statement] = STATE(4829), - [sym_return_statement] = STATE(4829), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4800), + [sym_try_statement] = STATE(4800), + [sym_if_statement] = STATE(4800), + [sym_switch_statement] = STATE(4800), + [sym_for_statement] = STATE(4800), + [sym_return_statement] = STATE(4800), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4829), - [sym_break_statement] = STATE(4829), - [sym_continue_statement] = STATE(4829), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4800), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4829), - [sym_labeled_statement] = STATE(4829), - [sym_expression_statement] = STATE(4829), - [sym_while_statement] = STATE(4829), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4800), + [sym_for_range_loop] = STATE(4800), + [sym_compound_statement] = STATE(4800), + [sym_labeled_statement] = STATE(4800), + [sym_expression_statement] = STATE(4800), + [sym_while_statement] = STATE(4800), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5078] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10924), + [5049] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10890), [sym_comment] = ACTIONS(3), }, - [5079] = { - [aux_sym_for_statement_repeat1] = STATE(5108), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10924), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5050] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5079), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10890), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5080] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5109), - [sym_logical_expression] = STATE(5109), - [sym_bitwise_expression] = STATE(5109), - [sym_cast_expression] = STATE(5109), - [sym_new_expression] = STATE(5109), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5109), - [sym_char_literal] = STATE(5109), - [sym_template_function] = STATE(5109), - [sym_conditional_expression] = STATE(5109), - [sym_equality_expression] = STATE(5109), - [sym_relational_expression] = STATE(5109), - [sym_delete_expression] = STATE(5109), - [sym_sizeof_expression] = STATE(5109), - [sym_parenthesized_expression] = STATE(5109), - [sym_lambda_expression] = STATE(5109), - [sym_concatenated_string] = STATE(5109), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5109), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5109), - [sym_math_expression] = STATE(5109), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10926), + [5051] = { + [sym_template_function] = STATE(5080), + [sym__expression] = STATE(5080), + [sym_logical_expression] = STATE(5080), + [sym_bitwise_expression] = STATE(5080), + [sym_cast_expression] = STATE(5080), + [sym_delete_expression] = STATE(5080), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5080), + [sym_lambda_expression] = STATE(5080), + [sym_char_literal] = STATE(5080), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5080), + [sym_equality_expression] = STATE(5080), + [sym_relational_expression] = STATE(5080), + [sym_sizeof_expression] = STATE(5080), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5080), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5080), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5080), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5080), + [sym_math_expression] = STATE(5080), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5080), + [sym_raw_string_literal] = ACTIONS(10892), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10928), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10928), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10894), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10894), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10926), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10892), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10928), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10928), + [sym_false] = ACTIONS(10894), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10894), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10924), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10890), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [5081] = { - [sym_do_statement] = STATE(4833), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [5052] = { + [sym_do_statement] = STATE(4804), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4833), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4833), - [sym_if_statement] = STATE(4833), - [sym_switch_statement] = STATE(4833), - [sym_for_statement] = STATE(4833), - [sym_return_statement] = STATE(4833), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4804), + [sym_try_statement] = STATE(4804), + [sym_if_statement] = STATE(4804), + [sym_switch_statement] = STATE(4804), + [sym_for_statement] = STATE(4804), + [sym_return_statement] = STATE(4804), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4833), - [sym_break_statement] = STATE(4833), - [sym_continue_statement] = STATE(4833), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4804), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4833), - [sym_labeled_statement] = STATE(4833), - [sym_expression_statement] = STATE(4833), - [sym_while_statement] = STATE(4833), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4804), + [sym_for_range_loop] = STATE(4804), + [sym_compound_statement] = STATE(4804), + [sym_labeled_statement] = STATE(4804), + [sym_expression_statement] = STATE(4804), + [sym_while_statement] = STATE(4804), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5082] = { - [sym_do_statement] = STATE(4840), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [5053] = { + [sym_do_statement] = STATE(4811), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4840), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4840), - [sym_if_statement] = STATE(4840), - [sym_switch_statement] = STATE(4840), - [sym_for_statement] = STATE(4840), - [sym_return_statement] = STATE(4840), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4811), + [sym_try_statement] = STATE(4811), + [sym_if_statement] = STATE(4811), + [sym_switch_statement] = STATE(4811), + [sym_for_statement] = STATE(4811), + [sym_return_statement] = STATE(4811), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4840), - [sym_break_statement] = STATE(4840), - [sym_continue_statement] = STATE(4840), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4811), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4840), - [sym_labeled_statement] = STATE(4840), - [sym_expression_statement] = STATE(4840), - [sym_while_statement] = STATE(4840), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4811), + [sym_for_range_loop] = STATE(4811), + [sym_compound_statement] = STATE(4811), + [sym_labeled_statement] = STATE(4811), + [sym_expression_statement] = STATE(4811), + [sym_while_statement] = STATE(4811), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5083] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(10930), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [aux_sym_preproc_if_token2] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_namespace] = ACTIONS(9003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_using] = ACTIONS(9003), - [sym_preproc_directive] = ACTIONS(9003), - [aux_sym_preproc_if_token1] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9003), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [sym_operator_name] = ACTIONS(9005), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [aux_sym_preproc_include_token1] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_template] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [aux_sym_preproc_def_token1] = ACTIONS(9003), - [anon_sym_AMP_AMP] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), + [5054] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(10896), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [aux_sym_preproc_if_token2] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_namespace] = ACTIONS(8967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_using] = ACTIONS(8967), + [sym_preproc_directive] = ACTIONS(8967), + [aux_sym_preproc_if_token1] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8967), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [sym_operator_name] = ACTIONS(8969), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [aux_sym_preproc_include_token1] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_template] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [aux_sym_preproc_def_token1] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), }, - [5084] = { - [sym_do_statement] = STATE(4842), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [5055] = { + [sym_do_statement] = STATE(4813), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4842), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4842), - [sym_if_statement] = STATE(4842), - [sym_switch_statement] = STATE(4842), - [sym_for_statement] = STATE(4842), - [sym_return_statement] = STATE(4842), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4813), + [sym_try_statement] = STATE(4813), + [sym_if_statement] = STATE(4813), + [sym_switch_statement] = STATE(4813), + [sym_for_statement] = STATE(4813), + [sym_return_statement] = STATE(4813), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4842), - [sym_break_statement] = STATE(4842), - [sym_continue_statement] = STATE(4842), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4813), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4842), - [sym_labeled_statement] = STATE(4842), - [sym_expression_statement] = STATE(4842), - [sym_while_statement] = STATE(4842), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4813), + [sym_for_range_loop] = STATE(4813), + [sym_compound_statement] = STATE(4813), + [sym_labeled_statement] = STATE(4813), + [sym_expression_statement] = STATE(4813), + [sym_while_statement] = STATE(4813), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5085] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10932), + [5056] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10898), [sym_comment] = ACTIONS(3), }, - [5086] = { - [aux_sym_for_statement_repeat1] = STATE(5112), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10932), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5057] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5083), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10898), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5087] = { - [sym_do_statement] = STATE(4852), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [5058] = { + [sym_do_statement] = STATE(4823), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4852), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4852), - [sym_if_statement] = STATE(4852), - [sym_switch_statement] = STATE(4852), - [sym_for_statement] = STATE(4852), - [sym_return_statement] = STATE(4852), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4823), + [sym_try_statement] = STATE(4823), + [sym_if_statement] = STATE(4823), + [sym_switch_statement] = STATE(4823), + [sym_for_statement] = STATE(4823), + [sym_return_statement] = STATE(4823), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4852), - [sym_break_statement] = STATE(4852), - [sym_continue_statement] = STATE(4852), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4823), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4852), - [sym_labeled_statement] = STATE(4852), - [sym_expression_statement] = STATE(4852), - [sym_while_statement] = STATE(4852), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4823), + [sym_for_range_loop] = STATE(4823), + [sym_compound_statement] = STATE(4823), + [sym_labeled_statement] = STATE(4823), + [sym_expression_statement] = STATE(4823), + [sym_while_statement] = STATE(4823), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5088] = { - [sym_do_statement] = STATE(4751), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [5059] = { + [sym_do_statement] = STATE(4722), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4751), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4751), - [sym_if_statement] = STATE(4751), - [sym_switch_statement] = STATE(4751), - [sym_for_statement] = STATE(4751), - [sym_return_statement] = STATE(4751), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4722), + [sym_try_statement] = STATE(4722), + [sym_if_statement] = STATE(4722), + [sym_switch_statement] = STATE(4722), + [sym_for_statement] = STATE(4722), + [sym_return_statement] = STATE(4722), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4751), - [sym_break_statement] = STATE(4751), - [sym_continue_statement] = STATE(4751), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4722), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4751), - [sym_labeled_statement] = STATE(4751), - [sym_expression_statement] = STATE(4751), - [sym_while_statement] = STATE(4751), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4722), + [sym_for_range_loop] = STATE(4722), + [sym_compound_statement] = STATE(4722), + [sym_labeled_statement] = STATE(4722), + [sym_expression_statement] = STATE(4722), + [sym_while_statement] = STATE(4722), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -207643,18 +207098,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -207667,105 +207122,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5089] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10934), + [5060] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10900), [sym_comment] = ACTIONS(3), }, - [5090] = { - [anon_sym_LPAREN2] = ACTIONS(10692), - [anon_sym_struct] = ACTIONS(10694), - [sym_auto] = ACTIONS(10694), - [anon_sym_signed] = ACTIONS(10694), - [anon_sym_mutable] = ACTIONS(10694), - [anon_sym_long] = ACTIONS(10694), - [anon_sym_COLON_COLON] = ACTIONS(10692), - [anon_sym_using] = ACTIONS(10694), - [aux_sym_preproc_if_token2] = ACTIONS(10694), - [sym_preproc_directive] = ACTIONS(10694), - [aux_sym_preproc_if_token1] = ACTIONS(10694), - [anon_sym_AMP] = ACTIONS(10694), - [anon_sym_static] = ACTIONS(10694), - [anon_sym_volatile] = ACTIONS(10694), - [anon_sym_typedef] = ACTIONS(10694), - [anon_sym_STAR] = ACTIONS(10692), - [anon_sym_union] = ACTIONS(10694), - [anon_sym_typename] = ACTIONS(10694), - [anon_sym_private] = ACTIONS(10694), - [anon_sym_explicit] = ACTIONS(10694), - [anon_sym_short] = ACTIONS(10694), - [sym_identifier] = ACTIONS(10694), - [sym_operator_name] = ACTIONS(10692), - [aux_sym_preproc_ifdef_token1] = ACTIONS(10694), - [anon_sym_register] = ACTIONS(10694), - [anon_sym__Atomic] = ACTIONS(10694), - [anon_sym_const] = ACTIONS(10694), - [anon_sym_extern] = ACTIONS(10694), - [anon_sym_virtual] = ACTIONS(10694), - [anon_sym_enum] = ACTIONS(10694), - [anon_sym_class] = ACTIONS(10694), - [anon_sym_constexpr] = ACTIONS(10694), - [sym_primitive_type] = ACTIONS(10694), - [anon_sym_unsigned] = ACTIONS(10694), - [anon_sym_public] = ACTIONS(10694), - [anon_sym_protected] = ACTIONS(10694), - [anon_sym_friend] = ACTIONS(10694), - [anon_sym_template] = ACTIONS(10694), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(10694), - [anon_sym_TILDE] = ACTIONS(10692), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(10694), - [anon_sym_AMP_AMP] = ACTIONS(10692), - [anon_sym_inline] = ACTIONS(10694), - [anon_sym_restrict] = ACTIONS(10694), + [5061] = { + [anon_sym_LPAREN2] = ACTIONS(10655), + [anon_sym_struct] = ACTIONS(10657), + [sym_auto] = ACTIONS(10657), + [anon_sym_signed] = ACTIONS(10657), + [anon_sym_mutable] = ACTIONS(10657), + [anon_sym_long] = ACTIONS(10657), + [anon_sym_COLON_COLON] = ACTIONS(10655), + [anon_sym_using] = ACTIONS(10657), + [aux_sym_preproc_if_token2] = ACTIONS(10657), + [sym_preproc_directive] = ACTIONS(10657), + [aux_sym_preproc_if_token1] = ACTIONS(10657), + [anon_sym_AMP] = ACTIONS(10657), + [anon_sym_static] = ACTIONS(10657), + [anon_sym_volatile] = ACTIONS(10657), + [anon_sym_typedef] = ACTIONS(10657), + [anon_sym_STAR] = ACTIONS(10655), + [anon_sym_union] = ACTIONS(10657), + [anon_sym_typename] = ACTIONS(10657), + [anon_sym_private] = ACTIONS(10657), + [anon_sym_explicit] = ACTIONS(10657), + [anon_sym_short] = ACTIONS(10657), + [sym_identifier] = ACTIONS(10657), + [sym_operator_name] = ACTIONS(10655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(10657), + [anon_sym_register] = ACTIONS(10657), + [anon_sym__Atomic] = ACTIONS(10657), + [anon_sym_const] = ACTIONS(10657), + [anon_sym_extern] = ACTIONS(10657), + [anon_sym_LBRACK] = ACTIONS(10657), + [anon_sym_virtual] = ACTIONS(10657), + [anon_sym_enum] = ACTIONS(10657), + [anon_sym_class] = ACTIONS(10657), + [anon_sym_constexpr] = ACTIONS(10657), + [sym_primitive_type] = ACTIONS(10657), + [anon_sym_unsigned] = ACTIONS(10657), + [anon_sym_public] = ACTIONS(10657), + [anon_sym_protected] = ACTIONS(10657), + [anon_sym_friend] = ACTIONS(10657), + [anon_sym_template] = ACTIONS(10657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(10657), + [anon_sym_TILDE] = ACTIONS(10655), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_def_token1] = ACTIONS(10657), + [anon_sym_AMP_AMP] = ACTIONS(10655), + [anon_sym_inline] = ACTIONS(10657), + [anon_sym_restrict] = ACTIONS(10657), }, - [5091] = { - [sym_do_statement] = STATE(4886), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [5062] = { + [sym_do_statement] = STATE(4857), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4886), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4886), - [sym_if_statement] = STATE(4886), - [sym_switch_statement] = STATE(4886), - [sym_for_statement] = STATE(4886), - [sym_return_statement] = STATE(4886), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4857), + [sym_try_statement] = STATE(4857), + [sym_if_statement] = STATE(4857), + [sym_switch_statement] = STATE(4857), + [sym_for_statement] = STATE(4857), + [sym_return_statement] = STATE(4857), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4886), - [sym_break_statement] = STATE(4886), - [sym_continue_statement] = STATE(4886), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4857), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4886), - [sym_labeled_statement] = STATE(4886), - [sym_expression_statement] = STATE(4886), - [sym_while_statement] = STATE(4886), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4857), + [sym_for_range_loop] = STATE(4857), + [sym_compound_statement] = STATE(4857), + [sym_labeled_statement] = STATE(4857), + [sym_expression_statement] = STATE(4857), + [sym_while_statement] = STATE(4857), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -207779,18 +207235,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(5692), + [sym_identifier] = ACTIONS(5698), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(5694), - [anon_sym_for] = ACTIONS(5696), - [anon_sym_while] = ACTIONS(5698), + [anon_sym_try] = ACTIONS(5700), + [anon_sym_for] = ACTIONS(5702), + [anon_sym_while] = ACTIONS(5704), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5706), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -207803,1157 +207259,1157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5092] = { - [sym_do_statement] = STATE(4894), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [5063] = { + [sym_do_statement] = STATE(4865), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4894), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4894), - [sym_if_statement] = STATE(4894), - [sym_switch_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_return_statement] = STATE(4894), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4865), + [sym_try_statement] = STATE(4865), + [sym_if_statement] = STATE(4865), + [sym_switch_statement] = STATE(4865), + [sym_for_statement] = STATE(4865), + [sym_return_statement] = STATE(4865), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4894), - [sym_break_statement] = STATE(4894), - [sym_continue_statement] = STATE(4894), - [sym_assignment_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4865), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4894), - [sym_labeled_statement] = STATE(4894), - [sym_expression_statement] = STATE(4894), - [sym_while_statement] = STATE(4894), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4865), + [sym_for_range_loop] = STATE(4865), + [sym_compound_statement] = STATE(4865), + [sym_labeled_statement] = STATE(4865), + [sym_expression_statement] = STATE(4865), + [sym_while_statement] = STATE(4865), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5093] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10936), + [5064] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10902), [sym_comment] = ACTIONS(3), }, - [5094] = { - [anon_sym_DASH] = ACTIONS(10523), - [sym_raw_string_literal] = ACTIONS(10525), - [anon_sym_else] = ACTIONS(10523), - [sym_true] = ACTIONS(10523), - [anon_sym_mutable] = ACTIONS(10523), - [sym_null] = ACTIONS(10523), - [anon_sym_break] = ACTIONS(10523), - [anon_sym_BANG] = ACTIONS(10525), - [anon_sym_sizeof] = ACTIONS(10523), - [anon_sym_volatile] = ACTIONS(10523), - [anon_sym_PLUS] = ACTIONS(10523), - [anon_sym_typedef] = ACTIONS(10523), - [anon_sym_switch] = ACTIONS(10523), - [anon_sym_explicit] = ACTIONS(10523), - [sym_identifier] = ACTIONS(10523), - [anon_sym_delete] = ACTIONS(10523), - [anon_sym_continue] = ACTIONS(10523), - [anon_sym__Atomic] = ACTIONS(10523), - [sym_number_literal] = ACTIONS(10525), - [anon_sym_extern] = ACTIONS(10523), - [anon_sym_enum] = ACTIONS(10523), - [anon_sym_constexpr] = ACTIONS(10523), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10523), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10525), - [anon_sym_case] = ACTIONS(10523), - [anon_sym_SQUOTE] = ACTIONS(10525), - [anon_sym_LBRACE] = ACTIONS(10525), - [anon_sym_DASH_DASH] = ACTIONS(10525), - [anon_sym_LPAREN2] = ACTIONS(10525), - [anon_sym_struct] = ACTIONS(10523), - [sym_auto] = ACTIONS(10523), - [anon_sym_signed] = ACTIONS(10523), - [anon_sym_long] = ACTIONS(10523), - [anon_sym_COLON_COLON] = ACTIONS(10525), - [anon_sym_default] = ACTIONS(10523), - [anon_sym_AMP] = ACTIONS(10525), - [anon_sym_static] = ACTIONS(10523), - [anon_sym_RBRACE] = ACTIONS(10525), - [anon_sym_STAR] = ACTIONS(10525), - [anon_sym_union] = ACTIONS(10523), - [anon_sym_typename] = ACTIONS(10523), - [anon_sym_short] = ACTIONS(10523), - [anon_sym_new] = ACTIONS(10523), - [anon_sym_goto] = ACTIONS(10523), - [anon_sym_while] = ACTIONS(10523), - [anon_sym_try] = ACTIONS(10523), - [anon_sym_for] = ACTIONS(10523), - [anon_sym_register] = ACTIONS(10523), - [anon_sym_DQUOTE] = ACTIONS(10525), - [anon_sym_const] = ACTIONS(10523), - [anon_sym_LBRACK] = ACTIONS(10523), - [anon_sym_class] = ACTIONS(10523), - [anon_sym_if] = ACTIONS(10523), - [sym_primitive_type] = ACTIONS(10523), - [sym_false] = ACTIONS(10523), - [sym_nullptr] = ACTIONS(10523), - [anon_sym_do] = ACTIONS(10523), - [anon_sym_return] = ACTIONS(10523), - [anon_sym_TILDE] = ACTIONS(10525), - [anon_sym_SEMI] = ACTIONS(10525), - [anon_sym_inline] = ACTIONS(10523), - [anon_sym_PLUS_PLUS] = ACTIONS(10525), - [anon_sym_restrict] = ACTIONS(10523), + [5065] = { + [anon_sym_DASH] = ACTIONS(10489), + [sym_raw_string_literal] = ACTIONS(10491), + [anon_sym_else] = ACTIONS(10489), + [sym_true] = ACTIONS(10489), + [anon_sym_mutable] = ACTIONS(10489), + [sym_null] = ACTIONS(10489), + [anon_sym_break] = ACTIONS(10489), + [anon_sym_BANG] = ACTIONS(10491), + [anon_sym_sizeof] = ACTIONS(10489), + [anon_sym_volatile] = ACTIONS(10489), + [anon_sym_PLUS] = ACTIONS(10489), + [anon_sym_typedef] = ACTIONS(10489), + [anon_sym_switch] = ACTIONS(10489), + [anon_sym_explicit] = ACTIONS(10489), + [sym_identifier] = ACTIONS(10489), + [anon_sym_delete] = ACTIONS(10489), + [anon_sym_continue] = ACTIONS(10489), + [anon_sym__Atomic] = ACTIONS(10489), + [sym_number_literal] = ACTIONS(10491), + [anon_sym_extern] = ACTIONS(10489), + [anon_sym_enum] = ACTIONS(10489), + [anon_sym_constexpr] = ACTIONS(10489), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10491), + [anon_sym_case] = ACTIONS(10489), + [anon_sym_SQUOTE] = ACTIONS(10491), + [anon_sym_LBRACE] = ACTIONS(10491), + [anon_sym_DASH_DASH] = ACTIONS(10491), + [anon_sym_LPAREN2] = ACTIONS(10491), + [anon_sym_struct] = ACTIONS(10489), + [sym_auto] = ACTIONS(10489), + [anon_sym_signed] = ACTIONS(10489), + [anon_sym_long] = ACTIONS(10489), + [anon_sym_COLON_COLON] = ACTIONS(10491), + [anon_sym_default] = ACTIONS(10489), + [anon_sym_AMP] = ACTIONS(10491), + [anon_sym_static] = ACTIONS(10489), + [anon_sym_RBRACE] = ACTIONS(10491), + [anon_sym_STAR] = ACTIONS(10491), + [anon_sym_union] = ACTIONS(10489), + [anon_sym_typename] = ACTIONS(10489), + [anon_sym_short] = ACTIONS(10489), + [anon_sym_new] = ACTIONS(10489), + [anon_sym_goto] = ACTIONS(10489), + [anon_sym_while] = ACTIONS(10489), + [anon_sym_try] = ACTIONS(10489), + [anon_sym_for] = ACTIONS(10489), + [anon_sym_register] = ACTIONS(10489), + [anon_sym_DQUOTE] = ACTIONS(10491), + [anon_sym_const] = ACTIONS(10489), + [anon_sym_LBRACK] = ACTIONS(10489), + [anon_sym_class] = ACTIONS(10489), + [anon_sym_if] = ACTIONS(10489), + [sym_primitive_type] = ACTIONS(10489), + [sym_false] = ACTIONS(10489), + [sym_nullptr] = ACTIONS(10489), + [anon_sym_do] = ACTIONS(10489), + [anon_sym_return] = ACTIONS(10489), + [anon_sym_TILDE] = ACTIONS(10491), + [anon_sym_SEMI] = ACTIONS(10491), + [anon_sym_inline] = ACTIONS(10489), + [anon_sym_PLUS_PLUS] = ACTIONS(10491), + [anon_sym_restrict] = ACTIONS(10489), }, - [5095] = { - [sym_do_statement] = STATE(5115), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5066] = { + [sym_do_statement] = STATE(5086), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5115), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5115), - [sym_if_statement] = STATE(5115), - [sym_switch_statement] = STATE(5115), - [sym_for_statement] = STATE(5115), - [sym_return_statement] = STATE(5115), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5086), + [sym_try_statement] = STATE(5086), + [sym_if_statement] = STATE(5086), + [sym_switch_statement] = STATE(5086), + [sym_for_statement] = STATE(5086), + [sym_return_statement] = STATE(5086), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5115), - [sym_break_statement] = STATE(5115), - [sym_continue_statement] = STATE(5115), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5086), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5115), - [sym_labeled_statement] = STATE(5115), - [sym_expression_statement] = STATE(5115), - [sym_while_statement] = STATE(5115), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5086), + [sym_for_range_loop] = STATE(5086), + [sym_compound_statement] = STATE(5086), + [sym_labeled_statement] = STATE(5086), + [sym_expression_statement] = STATE(5086), + [sym_while_statement] = STATE(5086), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(9298), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(9264), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(6467), - [anon_sym_for] = ACTIONS(6469), - [anon_sym_while] = ACTIONS(6465), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(6456), + [anon_sym_for] = ACTIONS(6458), + [anon_sym_while] = ACTIONS(6454), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(6471), + [anon_sym_if] = ACTIONS(6460), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5096] = { - [sym_do_statement] = STATE(4922), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5067] = { + [sym_do_statement] = STATE(4893), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(4922), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(4922), - [sym_if_statement] = STATE(4922), - [sym_switch_statement] = STATE(4922), - [sym_for_statement] = STATE(4922), - [sym_return_statement] = STATE(4922), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4893), + [sym_try_statement] = STATE(4893), + [sym_if_statement] = STATE(4893), + [sym_switch_statement] = STATE(4893), + [sym_for_statement] = STATE(4893), + [sym_return_statement] = STATE(4893), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(4922), - [sym_break_statement] = STATE(4922), - [sym_continue_statement] = STATE(4922), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4893), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4922), - [sym_labeled_statement] = STATE(4922), - [sym_expression_statement] = STATE(4922), - [sym_while_statement] = STATE(4922), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4893), + [sym_for_range_loop] = STATE(4893), + [sym_compound_statement] = STATE(4893), + [sym_labeled_statement] = STATE(4893), + [sym_expression_statement] = STATE(4893), + [sym_while_statement] = STATE(4893), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5097] = { - [aux_sym_for_statement_repeat1] = STATE(5117), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10938), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5068] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5088), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10904), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5098] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5118), - [sym_logical_expression] = STATE(5118), - [sym_bitwise_expression] = STATE(5118), - [sym_cast_expression] = STATE(5118), - [sym_new_expression] = STATE(5118), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5118), - [sym_char_literal] = STATE(5118), - [sym_template_function] = STATE(5118), - [sym_conditional_expression] = STATE(5118), - [sym_equality_expression] = STATE(5118), - [sym_relational_expression] = STATE(5118), - [sym_delete_expression] = STATE(5118), - [sym_sizeof_expression] = STATE(5118), - [sym_parenthesized_expression] = STATE(5118), - [sym_lambda_expression] = STATE(5118), - [sym_concatenated_string] = STATE(5118), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5118), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5118), - [sym_math_expression] = STATE(5118), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10940), + [5069] = { + [sym_template_function] = STATE(5089), + [sym__expression] = STATE(5089), + [sym_logical_expression] = STATE(5089), + [sym_bitwise_expression] = STATE(5089), + [sym_cast_expression] = STATE(5089), + [sym_delete_expression] = STATE(5089), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5089), + [sym_lambda_expression] = STATE(5089), + [sym_char_literal] = STATE(5089), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5089), + [sym_equality_expression] = STATE(5089), + [sym_relational_expression] = STATE(5089), + [sym_sizeof_expression] = STATE(5089), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5089), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5089), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5089), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5089), + [sym_math_expression] = STATE(5089), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5089), + [sym_raw_string_literal] = ACTIONS(10906), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10942), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10942), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10908), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10908), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10940), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10906), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10942), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10942), + [sym_false] = ACTIONS(10908), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10908), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10938), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10904), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [5099] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1633), - [anon_sym_EQ_EQ] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(10944), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5070] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(10910), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5100] = { - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_GT] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(3472), - [anon_sym_PERCENT] = ACTIONS(3474), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_QMARK] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_GT_EQ] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT_EQ] = ACTIONS(3484), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10946), - [anon_sym_GT_GT] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5071] = { + [sym_argument_list] = STATE(355), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(3482), + [anon_sym_PERCENT] = ACTIONS(3484), + [anon_sym_EQ_EQ] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT_EQ] = ACTIONS(3494), + [anon_sym_BANG_EQ] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3498), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10912), + [anon_sym_GT_GT] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5101] = { - [anon_sym_DASH] = ACTIONS(7770), - [sym_raw_string_literal] = ACTIONS(7772), - [anon_sym_else] = ACTIONS(10948), - [sym_true] = ACTIONS(7770), - [anon_sym_mutable] = ACTIONS(7770), - [sym_null] = ACTIONS(7770), - [anon_sym_break] = ACTIONS(7770), - [anon_sym_BANG] = ACTIONS(7772), - [anon_sym_sizeof] = ACTIONS(7770), - [anon_sym_volatile] = ACTIONS(7770), - [anon_sym_PLUS] = ACTIONS(7770), - [anon_sym_typedef] = ACTIONS(7770), - [anon_sym_switch] = ACTIONS(7770), - [anon_sym_explicit] = ACTIONS(7770), - [sym_identifier] = ACTIONS(7770), - [anon_sym_delete] = ACTIONS(7770), - [anon_sym_continue] = ACTIONS(7770), - [anon_sym__Atomic] = ACTIONS(7770), - [sym_number_literal] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7770), - [anon_sym_constexpr] = ACTIONS(7770), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(7770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7772), - [anon_sym_case] = ACTIONS(7770), - [anon_sym_SQUOTE] = ACTIONS(7772), - [anon_sym_LBRACE] = ACTIONS(7772), - [anon_sym_DASH_DASH] = ACTIONS(7772), - [anon_sym_LPAREN2] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [anon_sym_signed] = ACTIONS(7770), - [anon_sym_long] = ACTIONS(7770), - [anon_sym_COLON_COLON] = ACTIONS(7772), - [anon_sym_default] = ACTIONS(7770), - [anon_sym_AMP] = ACTIONS(7772), - [anon_sym_static] = ACTIONS(7770), - [anon_sym_RBRACE] = ACTIONS(7772), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7770), - [anon_sym_typename] = ACTIONS(7770), - [anon_sym_short] = ACTIONS(7770), - [anon_sym_new] = ACTIONS(7770), - [anon_sym_goto] = ACTIONS(7770), - [anon_sym_while] = ACTIONS(7770), - [anon_sym_try] = ACTIONS(7770), - [anon_sym_for] = ACTIONS(7770), - [anon_sym_register] = ACTIONS(7770), - [anon_sym_DQUOTE] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7770), - [anon_sym_LBRACK] = ACTIONS(7770), - [anon_sym_class] = ACTIONS(7770), - [anon_sym_if] = ACTIONS(7770), - [sym_primitive_type] = ACTIONS(7770), - [sym_false] = ACTIONS(7770), - [sym_nullptr] = ACTIONS(7770), - [anon_sym_do] = ACTIONS(7770), - [anon_sym_return] = ACTIONS(7770), - [anon_sym_TILDE] = ACTIONS(7772), - [anon_sym_SEMI] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7770), - [anon_sym_PLUS_PLUS] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7770), + [5072] = { + [anon_sym_DASH] = ACTIONS(7751), + [sym_raw_string_literal] = ACTIONS(7753), + [anon_sym_else] = ACTIONS(10914), + [sym_true] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [sym_null] = ACTIONS(7751), + [anon_sym_break] = ACTIONS(7751), + [anon_sym_BANG] = ACTIONS(7753), + [anon_sym_sizeof] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_typedef] = ACTIONS(7751), + [anon_sym_switch] = ACTIONS(7751), + [anon_sym_explicit] = ACTIONS(7751), + [sym_identifier] = ACTIONS(7751), + [anon_sym_delete] = ACTIONS(7751), + [anon_sym_continue] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [sym_number_literal] = ACTIONS(7753), + [anon_sym_extern] = ACTIONS(7751), + [anon_sym_enum] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7753), + [anon_sym_case] = ACTIONS(7751), + [anon_sym_SQUOTE] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_struct] = ACTIONS(7751), + [sym_auto] = ACTIONS(7751), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_default] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7753), + [anon_sym_static] = ACTIONS(7751), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_union] = ACTIONS(7751), + [anon_sym_typename] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_new] = ACTIONS(7751), + [anon_sym_goto] = ACTIONS(7751), + [anon_sym_while] = ACTIONS(7751), + [anon_sym_try] = ACTIONS(7751), + [anon_sym_for] = ACTIONS(7751), + [anon_sym_register] = ACTIONS(7751), + [anon_sym_DQUOTE] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_class] = ACTIONS(7751), + [anon_sym_if] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [sym_false] = ACTIONS(7751), + [sym_nullptr] = ACTIONS(7751), + [anon_sym_do] = ACTIONS(7751), + [anon_sym_return] = ACTIONS(7751), + [anon_sym_TILDE] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [anon_sym_inline] = ACTIONS(7751), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7751), }, - [5102] = { - [sym_do_statement] = STATE(5122), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5073] = { + [sym_do_statement] = STATE(5093), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5122), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5122), - [sym_if_statement] = STATE(5122), - [sym_switch_statement] = STATE(5122), - [sym_for_statement] = STATE(5122), - [sym_return_statement] = STATE(5122), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5093), + [sym_try_statement] = STATE(5093), + [sym_if_statement] = STATE(5093), + [sym_switch_statement] = STATE(5093), + [sym_for_statement] = STATE(5093), + [sym_return_statement] = STATE(5093), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5122), - [sym_break_statement] = STATE(5122), - [sym_continue_statement] = STATE(5122), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5093), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5122), - [sym_labeled_statement] = STATE(5122), - [sym_expression_statement] = STATE(5122), - [sym_while_statement] = STATE(5122), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5093), + [sym_for_range_loop] = STATE(5093), + [sym_compound_statement] = STATE(5093), + [sym_labeled_statement] = STATE(5093), + [sym_expression_statement] = STATE(5093), + [sym_while_statement] = STATE(5093), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5103] = { - [sym_do_statement] = STATE(4937), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [5074] = { + [sym_do_statement] = STATE(4908), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4937), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4937), - [sym_if_statement] = STATE(4937), - [sym_switch_statement] = STATE(4937), - [sym_for_statement] = STATE(4937), - [sym_return_statement] = STATE(4937), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4908), + [sym_try_statement] = STATE(4908), + [sym_if_statement] = STATE(4908), + [sym_switch_statement] = STATE(4908), + [sym_for_statement] = STATE(4908), + [sym_return_statement] = STATE(4908), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4937), - [sym_break_statement] = STATE(4937), - [sym_continue_statement] = STATE(4937), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4908), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4937), - [sym_labeled_statement] = STATE(4937), - [sym_expression_statement] = STATE(4937), - [sym_while_statement] = STATE(4937), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4908), + [sym_for_range_loop] = STATE(4908), + [sym_compound_statement] = STATE(4908), + [sym_labeled_statement] = STATE(4908), + [sym_expression_statement] = STATE(4908), + [sym_while_statement] = STATE(4908), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5104] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10950), + [5075] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10916), [sym_comment] = ACTIONS(3), }, - [5105] = { - [aux_sym_for_statement_repeat1] = STATE(5124), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10950), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), + [5076] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5095), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10916), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), }, - [5106] = { - [sym_do_statement] = STATE(4947), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [5077] = { + [sym_do_statement] = STATE(4918), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(4947), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(4947), - [sym_if_statement] = STATE(4947), - [sym_switch_statement] = STATE(4947), - [sym_for_statement] = STATE(4947), - [sym_return_statement] = STATE(4947), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4918), + [sym_try_statement] = STATE(4918), + [sym_if_statement] = STATE(4918), + [sym_switch_statement] = STATE(4918), + [sym_for_statement] = STATE(4918), + [sym_return_statement] = STATE(4918), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(4947), - [sym_break_statement] = STATE(4947), - [sym_continue_statement] = STATE(4947), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4918), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4947), - [sym_labeled_statement] = STATE(4947), - [sym_expression_statement] = STATE(4947), - [sym_while_statement] = STATE(4947), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4918), + [sym_for_range_loop] = STATE(4918), + [sym_compound_statement] = STATE(4918), + [sym_labeled_statement] = STATE(4918), + [sym_expression_statement] = STATE(4918), + [sym_while_statement] = STATE(4918), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5107] = { - [sym_do_statement] = STATE(4948), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [5078] = { + [sym_do_statement] = STATE(4919), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4948), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4948), - [sym_if_statement] = STATE(4948), - [sym_switch_statement] = STATE(4948), - [sym_for_statement] = STATE(4948), - [sym_return_statement] = STATE(4948), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4919), + [sym_try_statement] = STATE(4919), + [sym_if_statement] = STATE(4919), + [sym_switch_statement] = STATE(4919), + [sym_for_statement] = STATE(4919), + [sym_return_statement] = STATE(4919), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4948), - [sym_break_statement] = STATE(4948), - [sym_continue_statement] = STATE(4948), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4919), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4948), - [sym_labeled_statement] = STATE(4948), - [sym_expression_statement] = STATE(4948), - [sym_while_statement] = STATE(4948), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4919), + [sym_for_range_loop] = STATE(4919), + [sym_compound_statement] = STATE(4919), + [sym_labeled_statement] = STATE(4919), + [sym_expression_statement] = STATE(4919), + [sym_while_statement] = STATE(4919), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5108] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10952), - [sym_comment] = ACTIONS(3), - }, - [5109] = { - [aux_sym_for_statement_repeat1] = STATE(5126), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10952), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [5110] = { - [sym_do_statement] = STATE(4958), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [5079] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10918), + [sym_comment] = ACTIONS(3), + }, + [5080] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5097), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10918), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [5081] = { + [sym_do_statement] = STATE(4929), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(4958), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(4958), - [sym_if_statement] = STATE(4958), - [sym_switch_statement] = STATE(4958), - [sym_for_statement] = STATE(4958), - [sym_return_statement] = STATE(4958), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4929), + [sym_try_statement] = STATE(4929), + [sym_if_statement] = STATE(4929), + [sym_switch_statement] = STATE(4929), + [sym_for_statement] = STATE(4929), + [sym_return_statement] = STATE(4929), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(4958), - [sym_break_statement] = STATE(4958), - [sym_continue_statement] = STATE(4958), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4929), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4958), - [sym_labeled_statement] = STATE(4958), - [sym_expression_statement] = STATE(4958), - [sym_while_statement] = STATE(4958), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4929), + [sym_for_range_loop] = STATE(4929), + [sym_compound_statement] = STATE(4929), + [sym_labeled_statement] = STATE(4929), + [sym_expression_statement] = STATE(4929), + [sym_while_statement] = STATE(4929), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5111] = { - [sym_do_statement] = STATE(4959), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [5082] = { + [sym_do_statement] = STATE(4930), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(4959), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(4959), - [sym_if_statement] = STATE(4959), - [sym_switch_statement] = STATE(4959), - [sym_for_statement] = STATE(4959), - [sym_return_statement] = STATE(4959), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4930), + [sym_try_statement] = STATE(4930), + [sym_if_statement] = STATE(4930), + [sym_switch_statement] = STATE(4930), + [sym_for_statement] = STATE(4930), + [sym_return_statement] = STATE(4930), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(4959), - [sym_break_statement] = STATE(4959), - [sym_continue_statement] = STATE(4959), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4930), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4959), - [sym_labeled_statement] = STATE(4959), - [sym_expression_statement] = STATE(4959), - [sym_while_statement] = STATE(4959), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(4930), + [sym_for_range_loop] = STATE(4930), + [sym_compound_statement] = STATE(4930), + [sym_labeled_statement] = STATE(4930), + [sym_expression_statement] = STATE(4930), + [sym_while_statement] = STATE(4930), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5112] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10954), + [5083] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10920), [sym_comment] = ACTIONS(3), }, - [5113] = { - [sym_do_statement] = STATE(4886), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(55), - [sym_logical_expression] = STATE(55), - [sym_bitwise_expression] = STATE(55), - [sym_cast_expression] = STATE(55), - [sym_new_expression] = STATE(55), + [5084] = { + [sym_do_statement] = STATE(4857), + [sym_template_function] = STATE(58), + [sym__expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_delete_expression] = STATE(58), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(55), - [sym_goto_statement] = STATE(4886), - [sym_char_literal] = STATE(55), - [sym_for_range_loop] = STATE(4886), - [sym_if_statement] = STATE(4886), - [sym_switch_statement] = STATE(4886), - [sym_for_statement] = STATE(4886), - [sym_return_statement] = STATE(4886), - [sym_comma_expression] = STATE(59), - [sym_conditional_expression] = STATE(55), - [sym_equality_expression] = STATE(55), - [sym_relational_expression] = STATE(55), - [sym_delete_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(58), + [sym_lambda_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4857), + [sym_try_statement] = STATE(4857), + [sym_if_statement] = STATE(4857), + [sym_switch_statement] = STATE(4857), + [sym_for_statement] = STATE(4857), + [sym_return_statement] = STATE(4857), + [sym_comma_expression] = STATE(62), + [sym_conditional_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(55), - [sym_lambda_expression] = STATE(55), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(55), - [sym_template_function] = STATE(55), - [sym_concatenated_string] = STATE(55), - [sym_try_statement] = STATE(4886), - [sym_break_statement] = STATE(4886), - [sym_continue_statement] = STATE(4886), - [sym_assignment_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(58), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4857), + [sym_assignment_expression] = STATE(58), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(55), - [sym_math_expression] = STATE(55), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4886), - [sym_labeled_statement] = STATE(4886), - [sym_expression_statement] = STATE(4886), - [sym_while_statement] = STATE(4886), + [sym_new_expression] = STATE(58), + [sym_continue_statement] = STATE(4857), + [sym_for_range_loop] = STATE(4857), + [sym_compound_statement] = STATE(4857), + [sym_labeled_statement] = STATE(4857), + [sym_expression_statement] = STATE(4857), + [sym_while_statement] = STATE(4857), [sym_raw_string_literal] = ACTIONS(5), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), @@ -208967,18 +208423,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), [anon_sym_switch] = ACTIONS(21), - [sym_identifier] = ACTIONS(7212), + [sym_identifier] = ACTIONS(7193), [anon_sym_new] = ACTIONS(71), [anon_sym_goto] = ACTIONS(73), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7214), - [anon_sym_for] = ACTIONS(7216), - [anon_sym_while] = ACTIONS(7218), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7199), [anon_sym_continue] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(85), [sym_number_literal] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7220), + [anon_sym_if] = ACTIONS(7201), [sym_comment] = ACTIONS(3), [sym_false] = ACTIONS(9), [sym_nullptr] = ACTIONS(9), @@ -208991,1352 +208447,1352 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5114] = { - [sym_do_statement] = STATE(4988), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(269), - [sym_logical_expression] = STATE(269), - [sym_bitwise_expression] = STATE(269), - [sym_cast_expression] = STATE(269), - [sym_new_expression] = STATE(269), + [5085] = { + [sym_do_statement] = STATE(4959), + [sym_template_function] = STATE(270), + [sym__expression] = STATE(270), + [sym_logical_expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_delete_expression] = STATE(270), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(269), - [sym_goto_statement] = STATE(4988), - [sym_char_literal] = STATE(269), - [sym_for_range_loop] = STATE(4988), - [sym_if_statement] = STATE(4988), - [sym_switch_statement] = STATE(4988), - [sym_for_statement] = STATE(4988), - [sym_return_statement] = STATE(4988), - [sym_comma_expression] = STATE(270), - [sym_conditional_expression] = STATE(269), - [sym_equality_expression] = STATE(269), - [sym_relational_expression] = STATE(269), - [sym_delete_expression] = STATE(269), - [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(269), - [sym_lambda_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(270), + [sym_lambda_expression] = STATE(270), + [sym_char_literal] = STATE(270), [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(269), - [sym_template_function] = STATE(269), - [sym_concatenated_string] = STATE(269), - [sym_try_statement] = STATE(4988), - [sym_break_statement] = STATE(4988), - [sym_continue_statement] = STATE(4988), - [sym_assignment_expression] = STATE(269), + [sym_goto_statement] = STATE(4959), + [sym_try_statement] = STATE(4959), + [sym_if_statement] = STATE(4959), + [sym_switch_statement] = STATE(4959), + [sym_for_statement] = STATE(4959), + [sym_return_statement] = STATE(4959), + [sym_comma_expression] = STATE(271), + [sym_conditional_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), + [sym_subscript_expression] = STATE(47), + [sym_parenthesized_expression] = STATE(270), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(270), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4959), + [sym_assignment_expression] = STATE(270), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(269), - [sym_math_expression] = STATE(269), + [sym_shift_expression] = STATE(270), + [sym_math_expression] = STATE(270), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(4988), - [sym_labeled_statement] = STATE(4988), - [sym_expression_statement] = STATE(4988), - [sym_while_statement] = STATE(4988), - [sym_raw_string_literal] = ACTIONS(428), + [sym_new_expression] = STATE(270), + [sym_continue_statement] = STATE(4959), + [sym_for_range_loop] = STATE(4959), + [sym_compound_statement] = STATE(4959), + [sym_labeled_statement] = STATE(4959), + [sym_expression_statement] = STATE(4959), + [sym_while_statement] = STATE(4959), + [sym_raw_string_literal] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(430), - [sym_null] = ACTIONS(430), + [sym_true] = ACTIONS(432), + [sym_null] = ACTIONS(432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(432), + [anon_sym_break] = ACTIONS(434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(434), - [sym_identifier] = ACTIONS(7797), + [anon_sym_switch] = ACTIONS(436), + [sym_identifier] = ACTIONS(7778), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(7799), - [anon_sym_for] = ACTIONS(7801), - [anon_sym_while] = ACTIONS(7803), - [anon_sym_continue] = ACTIONS(446), + [anon_sym_try] = ACTIONS(7780), + [anon_sym_for] = ACTIONS(7782), + [anon_sym_while] = ACTIONS(7784), + [anon_sym_continue] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(428), + [sym_number_literal] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(7805), + [anon_sym_if] = ACTIONS(7786), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(430), - [sym_nullptr] = ACTIONS(430), - [anon_sym_do] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), + [sym_false] = ACTIONS(432), + [sym_nullptr] = ACTIONS(432), + [anon_sym_do] = ACTIONS(452), + [anon_sym_return] = ACTIONS(454), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5115] = { - [anon_sym_DASH] = ACTIONS(10696), - [sym_raw_string_literal] = ACTIONS(10698), - [anon_sym_else] = ACTIONS(10696), - [sym_true] = ACTIONS(10696), - [anon_sym_mutable] = ACTIONS(10696), - [sym_null] = ACTIONS(10696), - [anon_sym_break] = ACTIONS(10696), - [anon_sym_BANG] = ACTIONS(10698), - [anon_sym_sizeof] = ACTIONS(10696), - [anon_sym_volatile] = ACTIONS(10696), - [anon_sym_PLUS] = ACTIONS(10696), - [anon_sym_typedef] = ACTIONS(10696), - [anon_sym_switch] = ACTIONS(10696), - [anon_sym_explicit] = ACTIONS(10696), - [sym_identifier] = ACTIONS(10696), - [anon_sym_delete] = ACTIONS(10696), - [anon_sym_continue] = ACTIONS(10696), - [anon_sym__Atomic] = ACTIONS(10696), - [sym_number_literal] = ACTIONS(10698), - [anon_sym_extern] = ACTIONS(10696), - [anon_sym_enum] = ACTIONS(10696), - [anon_sym_constexpr] = ACTIONS(10696), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(10696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(10698), - [anon_sym_case] = ACTIONS(10696), - [anon_sym_SQUOTE] = ACTIONS(10698), - [anon_sym_LBRACE] = ACTIONS(10698), - [anon_sym_DASH_DASH] = ACTIONS(10698), - [anon_sym_LPAREN2] = ACTIONS(10698), - [anon_sym_struct] = ACTIONS(10696), - [sym_auto] = ACTIONS(10696), - [anon_sym_signed] = ACTIONS(10696), - [anon_sym_long] = ACTIONS(10696), - [anon_sym_COLON_COLON] = ACTIONS(10698), - [anon_sym_default] = ACTIONS(10696), - [anon_sym_AMP] = ACTIONS(10698), - [anon_sym_static] = ACTIONS(10696), - [anon_sym_RBRACE] = ACTIONS(10698), - [anon_sym_STAR] = ACTIONS(10698), - [anon_sym_union] = ACTIONS(10696), - [anon_sym_typename] = ACTIONS(10696), - [anon_sym_short] = ACTIONS(10696), - [anon_sym_new] = ACTIONS(10696), - [anon_sym_goto] = ACTIONS(10696), - [anon_sym_while] = ACTIONS(10696), - [anon_sym_try] = ACTIONS(10696), - [anon_sym_for] = ACTIONS(10696), - [anon_sym_register] = ACTIONS(10696), - [anon_sym_DQUOTE] = ACTIONS(10698), - [anon_sym_const] = ACTIONS(10696), - [anon_sym_LBRACK] = ACTIONS(10696), - [anon_sym_class] = ACTIONS(10696), - [anon_sym_if] = ACTIONS(10696), - [sym_primitive_type] = ACTIONS(10696), - [sym_false] = ACTIONS(10696), - [sym_nullptr] = ACTIONS(10696), - [anon_sym_do] = ACTIONS(10696), - [anon_sym_return] = ACTIONS(10696), - [anon_sym_TILDE] = ACTIONS(10698), - [anon_sym_SEMI] = ACTIONS(10698), - [anon_sym_inline] = ACTIONS(10696), - [anon_sym_PLUS_PLUS] = ACTIONS(10698), - [anon_sym_restrict] = ACTIONS(10696), - }, - [5116] = { - [sym_do_statement] = STATE(5004), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5086] = { + [anon_sym_DASH] = ACTIONS(10662), + [sym_raw_string_literal] = ACTIONS(10664), + [anon_sym_else] = ACTIONS(10662), + [sym_true] = ACTIONS(10662), + [anon_sym_mutable] = ACTIONS(10662), + [sym_null] = ACTIONS(10662), + [anon_sym_break] = ACTIONS(10662), + [anon_sym_BANG] = ACTIONS(10664), + [anon_sym_sizeof] = ACTIONS(10662), + [anon_sym_volatile] = ACTIONS(10662), + [anon_sym_PLUS] = ACTIONS(10662), + [anon_sym_typedef] = ACTIONS(10662), + [anon_sym_switch] = ACTIONS(10662), + [anon_sym_explicit] = ACTIONS(10662), + [sym_identifier] = ACTIONS(10662), + [anon_sym_delete] = ACTIONS(10662), + [anon_sym_continue] = ACTIONS(10662), + [anon_sym__Atomic] = ACTIONS(10662), + [sym_number_literal] = ACTIONS(10664), + [anon_sym_extern] = ACTIONS(10662), + [anon_sym_enum] = ACTIONS(10662), + [anon_sym_constexpr] = ACTIONS(10662), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(10662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(10664), + [anon_sym_case] = ACTIONS(10662), + [anon_sym_SQUOTE] = ACTIONS(10664), + [anon_sym_LBRACE] = ACTIONS(10664), + [anon_sym_DASH_DASH] = ACTIONS(10664), + [anon_sym_LPAREN2] = ACTIONS(10664), + [anon_sym_struct] = ACTIONS(10662), + [sym_auto] = ACTIONS(10662), + [anon_sym_signed] = ACTIONS(10662), + [anon_sym_long] = ACTIONS(10662), + [anon_sym_COLON_COLON] = ACTIONS(10664), + [anon_sym_default] = ACTIONS(10662), + [anon_sym_AMP] = ACTIONS(10664), + [anon_sym_static] = ACTIONS(10662), + [anon_sym_RBRACE] = ACTIONS(10664), + [anon_sym_STAR] = ACTIONS(10664), + [anon_sym_union] = ACTIONS(10662), + [anon_sym_typename] = ACTIONS(10662), + [anon_sym_short] = ACTIONS(10662), + [anon_sym_new] = ACTIONS(10662), + [anon_sym_goto] = ACTIONS(10662), + [anon_sym_while] = ACTIONS(10662), + [anon_sym_try] = ACTIONS(10662), + [anon_sym_for] = ACTIONS(10662), + [anon_sym_register] = ACTIONS(10662), + [anon_sym_DQUOTE] = ACTIONS(10664), + [anon_sym_const] = ACTIONS(10662), + [anon_sym_LBRACK] = ACTIONS(10662), + [anon_sym_class] = ACTIONS(10662), + [anon_sym_if] = ACTIONS(10662), + [sym_primitive_type] = ACTIONS(10662), + [sym_false] = ACTIONS(10662), + [sym_nullptr] = ACTIONS(10662), + [anon_sym_do] = ACTIONS(10662), + [anon_sym_return] = ACTIONS(10662), + [anon_sym_TILDE] = ACTIONS(10664), + [anon_sym_SEMI] = ACTIONS(10664), + [anon_sym_inline] = ACTIONS(10662), + [anon_sym_PLUS_PLUS] = ACTIONS(10664), + [anon_sym_restrict] = ACTIONS(10662), + }, + [5087] = { + [sym_do_statement] = STATE(4975), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5004), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5004), - [sym_if_statement] = STATE(5004), - [sym_switch_statement] = STATE(5004), - [sym_for_statement] = STATE(5004), - [sym_return_statement] = STATE(5004), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), - [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5004), - [sym_break_statement] = STATE(5004), - [sym_continue_statement] = STATE(5004), - [sym_assignment_expression] = STATE(3091), + [sym_goto_statement] = STATE(4975), + [sym_try_statement] = STATE(4975), + [sym_if_statement] = STATE(4975), + [sym_switch_statement] = STATE(4975), + [sym_for_statement] = STATE(4975), + [sym_return_statement] = STATE(4975), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), + [sym_subscript_expression] = STATE(47), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4975), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5004), - [sym_labeled_statement] = STATE(5004), - [sym_expression_statement] = STATE(5004), - [sym_while_statement] = STATE(5004), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4975), + [sym_for_range_loop] = STATE(4975), + [sym_compound_statement] = STATE(4975), + [sym_labeled_statement] = STATE(4975), + [sym_expression_statement] = STATE(4975), + [sym_while_statement] = STATE(4975), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5117] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10956), - [sym_comment] = ACTIONS(3), - }, - [5118] = { - [aux_sym_for_statement_repeat1] = STATE(5129), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10956), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [5119] = { - [sym_template_type] = STATE(71), - [sym__expression] = STATE(5130), - [sym_logical_expression] = STATE(5130), - [sym_bitwise_expression] = STATE(5130), - [sym_cast_expression] = STATE(5130), - [sym_new_expression] = STATE(5130), - [sym_field_expression] = STATE(149), - [sym_compound_literal_expression] = STATE(5130), - [sym_char_literal] = STATE(5130), - [sym_template_function] = STATE(5130), - [sym_conditional_expression] = STATE(5130), - [sym_equality_expression] = STATE(5130), - [sym_relational_expression] = STATE(5130), - [sym_delete_expression] = STATE(5130), - [sym_sizeof_expression] = STATE(5130), - [sym_parenthesized_expression] = STATE(5130), - [sym_lambda_expression] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(151), - [sym_scoped_identifier] = STATE(73), - [sym_scoped_type_identifier] = STATE(74), - [sym_subscript_expression] = STATE(149), - [sym_assignment_expression] = STATE(5130), - [sym_pointer_expression] = STATE(149), - [sym_shift_expression] = STATE(5130), - [sym_math_expression] = STATE(5130), - [sym_call_expression] = STATE(149), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_raw_string_literal] = ACTIONS(10958), + [5088] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10922), + [sym_comment] = ACTIONS(3), + }, + [5089] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5100), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10922), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [5090] = { + [sym_template_function] = STATE(5101), + [sym__expression] = STATE(5101), + [sym_logical_expression] = STATE(5101), + [sym_bitwise_expression] = STATE(5101), + [sym_cast_expression] = STATE(5101), + [sym_delete_expression] = STATE(5101), + [sym_field_expression] = STATE(150), + [sym_compound_literal_expression] = STATE(5101), + [sym_lambda_expression] = STATE(5101), + [sym_char_literal] = STATE(5101), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_conditional_expression] = STATE(5101), + [sym_equality_expression] = STATE(5101), + [sym_relational_expression] = STATE(5101), + [sym_sizeof_expression] = STATE(5101), + [sym_subscript_expression] = STATE(150), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_parenthesized_expression] = STATE(5101), + [sym_lambda_capture_specifier] = STATE(50), + [sym_string_literal] = STATE(154), + [sym_concatenated_string] = STATE(5101), + [sym_template_type] = STATE(76), + [sym_assignment_expression] = STATE(5101), + [sym_pointer_expression] = STATE(150), + [sym_shift_expression] = STATE(5101), + [sym_math_expression] = STATE(5101), + [sym_call_expression] = STATE(150), + [sym_new_expression] = STATE(5101), + [sym_raw_string_literal] = ACTIONS(10924), [anon_sym_DASH] = ACTIONS(266), - [anon_sym_LPAREN2] = ACTIONS(632), - [sym_true] = ACTIONS(10960), - [anon_sym_DASH_DASH] = ACTIONS(294), - [sym_null] = ACTIONS(10960), + [anon_sym_LPAREN2] = ACTIONS(634), + [sym_true] = ACTIONS(10926), + [anon_sym_DASH_DASH] = ACTIONS(296), + [sym_null] = ACTIONS(10926), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(10958), - [anon_sym_COLON_COLON] = ACTIONS(684), + [sym_number_literal] = ACTIONS(10924), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(272), - [sym_false] = ACTIONS(10960), - [anon_sym_AMP] = ACTIONS(634), - [sym_nullptr] = ACTIONS(10960), + [sym_false] = ACTIONS(10926), + [anon_sym_AMP] = ACTIONS(636), + [sym_nullptr] = ACTIONS(10926), [anon_sym_PLUS] = ACTIONS(266), [anon_sym_sizeof] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(640), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(10956), - [sym_identifier] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(10922), + [sym_identifier] = ACTIONS(690), [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(294), + [anon_sym_PLUS_PLUS] = ACTIONS(296), [anon_sym_SQUOTE] = ACTIONS(41), [anon_sym_delete] = ACTIONS(288), }, - [5120] = { - [sym_do_statement] = STATE(5008), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5091] = { + [sym_do_statement] = STATE(4979), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5008), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5008), - [sym_if_statement] = STATE(5008), - [sym_switch_statement] = STATE(5008), - [sym_for_statement] = STATE(5008), - [sym_return_statement] = STATE(5008), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4979), + [sym_try_statement] = STATE(4979), + [sym_if_statement] = STATE(4979), + [sym_switch_statement] = STATE(4979), + [sym_for_statement] = STATE(4979), + [sym_return_statement] = STATE(4979), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5008), - [sym_break_statement] = STATE(5008), - [sym_continue_statement] = STATE(5008), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4979), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5008), - [sym_labeled_statement] = STATE(5008), - [sym_expression_statement] = STATE(5008), - [sym_while_statement] = STATE(5008), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4979), + [sym_for_range_loop] = STATE(4979), + [sym_compound_statement] = STATE(4979), + [sym_labeled_statement] = STATE(4979), + [sym_expression_statement] = STATE(4979), + [sym_while_statement] = STATE(4979), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5121] = { - [sym_do_statement] = STATE(5015), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5092] = { + [sym_do_statement] = STATE(4986), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5015), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5015), - [sym_if_statement] = STATE(5015), - [sym_switch_statement] = STATE(5015), - [sym_for_statement] = STATE(5015), - [sym_return_statement] = STATE(5015), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4986), + [sym_try_statement] = STATE(4986), + [sym_if_statement] = STATE(4986), + [sym_switch_statement] = STATE(4986), + [sym_for_statement] = STATE(4986), + [sym_return_statement] = STATE(4986), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5015), - [sym_break_statement] = STATE(5015), - [sym_continue_statement] = STATE(5015), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4986), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5015), - [sym_labeled_statement] = STATE(5015), - [sym_expression_statement] = STATE(5015), - [sym_while_statement] = STATE(5015), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(4986), + [sym_for_range_loop] = STATE(4986), + [sym_compound_statement] = STATE(4986), + [sym_labeled_statement] = STATE(4986), + [sym_expression_statement] = STATE(4986), + [sym_while_statement] = STATE(4986), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5122] = { - [anon_sym_DASH] = ACTIONS(9003), - [sym_raw_string_literal] = ACTIONS(9005), - [anon_sym_else] = ACTIONS(10962), - [sym_true] = ACTIONS(9003), - [anon_sym_mutable] = ACTIONS(9003), - [sym_null] = ACTIONS(9003), - [anon_sym_break] = ACTIONS(9003), - [anon_sym_BANG] = ACTIONS(9005), - [anon_sym_sizeof] = ACTIONS(9003), - [anon_sym_volatile] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_typedef] = ACTIONS(9003), - [anon_sym_switch] = ACTIONS(9003), - [anon_sym_explicit] = ACTIONS(9003), - [sym_identifier] = ACTIONS(9003), - [anon_sym_delete] = ACTIONS(9003), - [anon_sym_continue] = ACTIONS(9003), - [anon_sym__Atomic] = ACTIONS(9003), - [sym_number_literal] = ACTIONS(9005), - [anon_sym_extern] = ACTIONS(9003), - [anon_sym_enum] = ACTIONS(9003), - [anon_sym_constexpr] = ACTIONS(9003), - [sym_comment] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(9003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9005), - [anon_sym_case] = ACTIONS(9003), - [anon_sym_SQUOTE] = ACTIONS(9005), - [anon_sym_LBRACE] = ACTIONS(9005), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_struct] = ACTIONS(9003), - [sym_auto] = ACTIONS(9003), - [anon_sym_signed] = ACTIONS(9003), - [anon_sym_long] = ACTIONS(9003), - [anon_sym_COLON_COLON] = ACTIONS(9005), - [anon_sym_default] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9005), - [anon_sym_static] = ACTIONS(9003), - [anon_sym_RBRACE] = ACTIONS(9005), - [anon_sym_STAR] = ACTIONS(9005), - [anon_sym_union] = ACTIONS(9003), - [anon_sym_typename] = ACTIONS(9003), - [anon_sym_short] = ACTIONS(9003), - [anon_sym_new] = ACTIONS(9003), - [anon_sym_goto] = ACTIONS(9003), - [anon_sym_while] = ACTIONS(9003), - [anon_sym_try] = ACTIONS(9003), - [anon_sym_for] = ACTIONS(9003), - [anon_sym_register] = ACTIONS(9003), - [anon_sym_DQUOTE] = ACTIONS(9005), - [anon_sym_const] = ACTIONS(9003), - [anon_sym_LBRACK] = ACTIONS(9003), - [anon_sym_class] = ACTIONS(9003), - [anon_sym_if] = ACTIONS(9003), - [sym_primitive_type] = ACTIONS(9003), - [sym_false] = ACTIONS(9003), - [sym_nullptr] = ACTIONS(9003), - [anon_sym_do] = ACTIONS(9003), - [anon_sym_return] = ACTIONS(9003), - [anon_sym_TILDE] = ACTIONS(9005), - [anon_sym_SEMI] = ACTIONS(9005), - [anon_sym_inline] = ACTIONS(9003), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_restrict] = ACTIONS(9003), - }, - [5123] = { - [sym_do_statement] = STATE(5017), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [5093] = { + [anon_sym_DASH] = ACTIONS(8967), + [sym_raw_string_literal] = ACTIONS(8969), + [anon_sym_else] = ACTIONS(10928), + [sym_true] = ACTIONS(8967), + [anon_sym_mutable] = ACTIONS(8967), + [sym_null] = ACTIONS(8967), + [anon_sym_break] = ACTIONS(8967), + [anon_sym_BANG] = ACTIONS(8969), + [anon_sym_sizeof] = ACTIONS(8967), + [anon_sym_volatile] = ACTIONS(8967), + [anon_sym_PLUS] = ACTIONS(8967), + [anon_sym_typedef] = ACTIONS(8967), + [anon_sym_switch] = ACTIONS(8967), + [anon_sym_explicit] = ACTIONS(8967), + [sym_identifier] = ACTIONS(8967), + [anon_sym_delete] = ACTIONS(8967), + [anon_sym_continue] = ACTIONS(8967), + [anon_sym__Atomic] = ACTIONS(8967), + [sym_number_literal] = ACTIONS(8969), + [anon_sym_extern] = ACTIONS(8967), + [anon_sym_enum] = ACTIONS(8967), + [anon_sym_constexpr] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8969), + [anon_sym_case] = ACTIONS(8967), + [anon_sym_SQUOTE] = ACTIONS(8969), + [anon_sym_LBRACE] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8969), + [anon_sym_LPAREN2] = ACTIONS(8969), + [anon_sym_struct] = ACTIONS(8967), + [sym_auto] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8967), + [anon_sym_long] = ACTIONS(8967), + [anon_sym_COLON_COLON] = ACTIONS(8969), + [anon_sym_default] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8969), + [anon_sym_static] = ACTIONS(8967), + [anon_sym_RBRACE] = ACTIONS(8969), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_union] = ACTIONS(8967), + [anon_sym_typename] = ACTIONS(8967), + [anon_sym_short] = ACTIONS(8967), + [anon_sym_new] = ACTIONS(8967), + [anon_sym_goto] = ACTIONS(8967), + [anon_sym_while] = ACTIONS(8967), + [anon_sym_try] = ACTIONS(8967), + [anon_sym_for] = ACTIONS(8967), + [anon_sym_register] = ACTIONS(8967), + [anon_sym_DQUOTE] = ACTIONS(8969), + [anon_sym_const] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_class] = ACTIONS(8967), + [anon_sym_if] = ACTIONS(8967), + [sym_primitive_type] = ACTIONS(8967), + [sym_false] = ACTIONS(8967), + [sym_nullptr] = ACTIONS(8967), + [anon_sym_do] = ACTIONS(8967), + [anon_sym_return] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8969), + [anon_sym_inline] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8969), + [anon_sym_restrict] = ACTIONS(8967), + }, + [5094] = { + [sym_do_statement] = STATE(4988), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(5017), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(5017), - [sym_if_statement] = STATE(5017), - [sym_switch_statement] = STATE(5017), - [sym_for_statement] = STATE(5017), - [sym_return_statement] = STATE(5017), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4988), + [sym_try_statement] = STATE(4988), + [sym_if_statement] = STATE(4988), + [sym_switch_statement] = STATE(4988), + [sym_for_statement] = STATE(4988), + [sym_return_statement] = STATE(4988), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(5017), - [sym_break_statement] = STATE(5017), - [sym_continue_statement] = STATE(5017), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4988), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5017), - [sym_labeled_statement] = STATE(5017), - [sym_expression_statement] = STATE(5017), - [sym_while_statement] = STATE(5017), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(4988), + [sym_for_range_loop] = STATE(4988), + [sym_compound_statement] = STATE(4988), + [sym_labeled_statement] = STATE(4988), + [sym_expression_statement] = STATE(4988), + [sym_while_statement] = STATE(4988), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5124] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10964), + [5095] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10930), [sym_comment] = ACTIONS(3), }, - [5125] = { - [sym_do_statement] = STATE(5026), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [5096] = { + [sym_do_statement] = STATE(4997), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(5026), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(5026), - [sym_if_statement] = STATE(5026), - [sym_switch_statement] = STATE(5026), - [sym_for_statement] = STATE(5026), - [sym_return_statement] = STATE(5026), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(4997), + [sym_try_statement] = STATE(4997), + [sym_if_statement] = STATE(4997), + [sym_switch_statement] = STATE(4997), + [sym_for_statement] = STATE(4997), + [sym_return_statement] = STATE(4997), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(5026), - [sym_break_statement] = STATE(5026), - [sym_continue_statement] = STATE(5026), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(4997), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5026), - [sym_labeled_statement] = STATE(5026), - [sym_expression_statement] = STATE(5026), - [sym_while_statement] = STATE(5026), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(4997), + [sym_for_range_loop] = STATE(4997), + [sym_compound_statement] = STATE(4997), + [sym_labeled_statement] = STATE(4997), + [sym_expression_statement] = STATE(4997), + [sym_while_statement] = STATE(4997), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5126] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10966), + [5097] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10932), [sym_comment] = ACTIONS(3), }, - [5127] = { - [sym_do_statement] = STATE(5035), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(482), - [sym_logical_expression] = STATE(482), - [sym_bitwise_expression] = STATE(482), - [sym_cast_expression] = STATE(482), - [sym_new_expression] = STATE(482), + [5098] = { + [sym_do_statement] = STATE(5006), + [sym_template_function] = STATE(484), + [sym__expression] = STATE(484), + [sym_logical_expression] = STATE(484), + [sym_bitwise_expression] = STATE(484), + [sym_cast_expression] = STATE(484), + [sym_delete_expression] = STATE(484), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(482), - [sym_goto_statement] = STATE(5035), - [sym_char_literal] = STATE(482), - [sym_for_range_loop] = STATE(5035), - [sym_if_statement] = STATE(5035), - [sym_switch_statement] = STATE(5035), - [sym_for_statement] = STATE(5035), - [sym_return_statement] = STATE(5035), - [sym_comma_expression] = STATE(484), - [sym_conditional_expression] = STATE(482), - [sym_equality_expression] = STATE(482), - [sym_relational_expression] = STATE(482), - [sym_delete_expression] = STATE(482), + [sym_compound_literal_expression] = STATE(484), + [sym_lambda_expression] = STATE(484), + [sym_char_literal] = STATE(484), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5006), + [sym_try_statement] = STATE(5006), + [sym_if_statement] = STATE(5006), + [sym_switch_statement] = STATE(5006), + [sym_for_statement] = STATE(5006), + [sym_return_statement] = STATE(5006), + [sym_comma_expression] = STATE(485), + [sym_conditional_expression] = STATE(484), + [sym_equality_expression] = STATE(484), + [sym_relational_expression] = STATE(484), + [sym_sizeof_expression] = STATE(484), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(482), - [sym_lambda_expression] = STATE(482), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(482), - [sym_template_function] = STATE(482), - [sym_concatenated_string] = STATE(482), - [sym_try_statement] = STATE(5035), - [sym_break_statement] = STATE(5035), - [sym_continue_statement] = STATE(5035), - [sym_assignment_expression] = STATE(482), + [sym_parenthesized_expression] = STATE(484), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(484), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5006), + [sym_assignment_expression] = STATE(484), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(482), - [sym_math_expression] = STATE(482), + [sym_shift_expression] = STATE(484), + [sym_math_expression] = STATE(484), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5035), - [sym_labeled_statement] = STATE(5035), - [sym_expression_statement] = STATE(5035), - [sym_while_statement] = STATE(5035), - [sym_raw_string_literal] = ACTIONS(806), + [sym_new_expression] = STATE(484), + [sym_continue_statement] = STATE(5006), + [sym_for_range_loop] = STATE(5006), + [sym_compound_statement] = STATE(5006), + [sym_labeled_statement] = STATE(5006), + [sym_expression_statement] = STATE(5006), + [sym_while_statement] = STATE(5006), + [sym_raw_string_literal] = ACTIONS(810), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(808), - [sym_null] = ACTIONS(808), + [sym_true] = ACTIONS(812), + [sym_null] = ACTIONS(812), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(810), + [anon_sym_break] = ACTIONS(814), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(816), - [sym_identifier] = ACTIONS(8598), + [anon_sym_switch] = ACTIONS(820), + [sym_identifier] = ACTIONS(8564), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(840), + [anon_sym_goto] = ACTIONS(844), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(8600), - [anon_sym_for] = ACTIONS(8602), - [anon_sym_while] = ACTIONS(8604), - [anon_sym_continue] = ACTIONS(820), + [anon_sym_try] = ACTIONS(8566), + [anon_sym_for] = ACTIONS(8568), + [anon_sym_while] = ACTIONS(8570), + [anon_sym_continue] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(806), + [sym_number_literal] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(8606), + [anon_sym_if] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(808), - [sym_nullptr] = ACTIONS(808), - [anon_sym_do] = ACTIONS(852), - [anon_sym_return] = ACTIONS(856), + [sym_false] = ACTIONS(812), + [sym_nullptr] = ACTIONS(812), + [anon_sym_do] = ACTIONS(856), + [anon_sym_return] = ACTIONS(860), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(862), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5128] = { - [sym_do_statement] = STATE(5057), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5099] = { + [sym_do_statement] = STATE(5028), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5057), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5057), - [sym_if_statement] = STATE(5057), - [sym_switch_statement] = STATE(5057), - [sym_for_statement] = STATE(5057), - [sym_return_statement] = STATE(5057), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5028), + [sym_try_statement] = STATE(5028), + [sym_if_statement] = STATE(5028), + [sym_switch_statement] = STATE(5028), + [sym_for_statement] = STATE(5028), + [sym_return_statement] = STATE(5028), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5057), - [sym_break_statement] = STATE(5057), - [sym_continue_statement] = STATE(5057), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5028), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5057), - [sym_labeled_statement] = STATE(5057), - [sym_expression_statement] = STATE(5057), - [sym_while_statement] = STATE(5057), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5028), + [sym_for_range_loop] = STATE(5028), + [sym_compound_statement] = STATE(5028), + [sym_labeled_statement] = STATE(5028), + [sym_expression_statement] = STATE(5028), + [sym_while_statement] = STATE(5028), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5129] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10968), - [sym_comment] = ACTIONS(3), - }, - [5130] = { - [aux_sym_for_statement_repeat1] = STATE(5135), - [sym_argument_list] = STATE(341), - [anon_sym_LPAREN2] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(10968), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(585), - }, - [5131] = { - [sym_do_statement] = STATE(5067), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5100] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10934), + [sym_comment] = ACTIONS(3), + }, + [5101] = { + [sym_argument_list] = STATE(355), + [aux_sym_for_statement_repeat1] = STATE(5106), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(10934), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(612), + }, + [5102] = { + [sym_do_statement] = STATE(5038), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5067), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5067), - [sym_if_statement] = STATE(5067), - [sym_switch_statement] = STATE(5067), - [sym_for_statement] = STATE(5067), - [sym_return_statement] = STATE(5067), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5038), + [sym_try_statement] = STATE(5038), + [sym_if_statement] = STATE(5038), + [sym_switch_statement] = STATE(5038), + [sym_for_statement] = STATE(5038), + [sym_return_statement] = STATE(5038), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5067), - [sym_break_statement] = STATE(5067), - [sym_continue_statement] = STATE(5067), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5038), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5067), - [sym_labeled_statement] = STATE(5067), - [sym_expression_statement] = STATE(5067), - [sym_while_statement] = STATE(5067), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5038), + [sym_for_range_loop] = STATE(5038), + [sym_compound_statement] = STATE(5038), + [sym_labeled_statement] = STATE(5038), + [sym_expression_statement] = STATE(5038), + [sym_while_statement] = STATE(5038), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5132] = { - [sym_do_statement] = STATE(5068), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_new_expression] = STATE(1067), + [5103] = { + [sym_do_statement] = STATE(5039), + [sym_template_function] = STATE(1063), + [sym__expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_delete_expression] = STATE(1063), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1067), - [sym_goto_statement] = STATE(5068), - [sym_char_literal] = STATE(1067), - [sym_for_range_loop] = STATE(5068), - [sym_if_statement] = STATE(5068), - [sym_switch_statement] = STATE(5068), - [sym_for_statement] = STATE(5068), - [sym_return_statement] = STATE(5068), - [sym_comma_expression] = STATE(1068), - [sym_conditional_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_delete_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1063), + [sym_lambda_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5039), + [sym_try_statement] = STATE(5039), + [sym_if_statement] = STATE(5039), + [sym_switch_statement] = STATE(5039), + [sym_for_statement] = STATE(5039), + [sym_return_statement] = STATE(5039), + [sym_comma_expression] = STATE(1065), + [sym_conditional_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1067), - [sym_lambda_expression] = STATE(1067), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1067), - [sym_template_function] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [sym_try_statement] = STATE(5068), - [sym_break_statement] = STATE(5068), - [sym_continue_statement] = STATE(5068), - [sym_assignment_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1063), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5039), + [sym_assignment_expression] = STATE(1063), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5068), - [sym_labeled_statement] = STATE(5068), - [sym_expression_statement] = STATE(5068), - [sym_while_statement] = STATE(5068), - [sym_raw_string_literal] = ACTIONS(2120), + [sym_new_expression] = STATE(1063), + [sym_continue_statement] = STATE(5039), + [sym_for_range_loop] = STATE(5039), + [sym_compound_statement] = STATE(5039), + [sym_labeled_statement] = STATE(5039), + [sym_expression_statement] = STATE(5039), + [sym_while_statement] = STATE(5039), + [sym_raw_string_literal] = ACTIONS(2122), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), + [sym_true] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2128), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2130), - [sym_identifier] = ACTIONS(9468), + [anon_sym_switch] = ACTIONS(2132), + [sym_identifier] = ACTIONS(9436), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2136), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9470), - [anon_sym_for] = ACTIONS(9472), - [anon_sym_while] = ACTIONS(9474), - [anon_sym_continue] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(9438), + [anon_sym_for] = ACTIONS(9440), + [anon_sym_while] = ACTIONS(9442), + [anon_sym_continue] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9476), + [anon_sym_if] = ACTIONS(9444), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2122), - [sym_nullptr] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2150), + [sym_false] = ACTIONS(2124), + [sym_nullptr] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5133] = { - [sym_do_statement] = STATE(5076), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_new_expression] = STATE(1265), + [5104] = { + [sym_do_statement] = STATE(5047), + [sym_template_function] = STATE(1262), + [sym__expression] = STATE(1262), + [sym_logical_expression] = STATE(1262), + [sym_bitwise_expression] = STATE(1262), + [sym_cast_expression] = STATE(1262), + [sym_delete_expression] = STATE(1262), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(1265), - [sym_goto_statement] = STATE(5076), - [sym_char_literal] = STATE(1265), - [sym_for_range_loop] = STATE(5076), - [sym_if_statement] = STATE(5076), - [sym_switch_statement] = STATE(5076), - [sym_for_statement] = STATE(5076), - [sym_return_statement] = STATE(5076), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_delete_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1262), + [sym_lambda_expression] = STATE(1262), + [sym_char_literal] = STATE(1262), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5047), + [sym_try_statement] = STATE(5047), + [sym_if_statement] = STATE(5047), + [sym_switch_statement] = STATE(5047), + [sym_for_statement] = STATE(5047), + [sym_return_statement] = STATE(5047), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(1262), + [sym_equality_expression] = STATE(1262), + [sym_relational_expression] = STATE(1262), + [sym_sizeof_expression] = STATE(1262), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(1265), - [sym_lambda_expression] = STATE(1265), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(1265), - [sym_template_function] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_try_statement] = STATE(5076), - [sym_break_statement] = STATE(5076), - [sym_continue_statement] = STATE(5076), - [sym_assignment_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1262), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(1262), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5047), + [sym_assignment_expression] = STATE(1262), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), + [sym_shift_expression] = STATE(1262), + [sym_math_expression] = STATE(1262), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5076), - [sym_labeled_statement] = STATE(5076), - [sym_expression_statement] = STATE(5076), - [sym_while_statement] = STATE(5076), - [sym_raw_string_literal] = ACTIONS(2475), + [sym_new_expression] = STATE(1262), + [sym_continue_statement] = STATE(5047), + [sym_for_range_loop] = STATE(5047), + [sym_compound_statement] = STATE(5047), + [sym_labeled_statement] = STATE(5047), + [sym_expression_statement] = STATE(5047), + [sym_while_statement] = STATE(5047), + [sym_raw_string_literal] = ACTIONS(2477), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(2477), - [sym_null] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(2485), - [sym_identifier] = ACTIONS(9564), + [anon_sym_switch] = ACTIONS(2487), + [sym_identifier] = ACTIONS(9532), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2507), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(9566), - [anon_sym_for] = ACTIONS(9568), - [anon_sym_while] = ACTIONS(9570), - [anon_sym_continue] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(9534), + [anon_sym_for] = ACTIONS(9536), + [anon_sym_while] = ACTIONS(9538), + [anon_sym_continue] = ACTIONS(2491), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(9572), + [anon_sym_if] = ACTIONS(9540), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2477), - [sym_nullptr] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2521), + [sym_false] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2523), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5134] = { - [sym_do_statement] = STATE(5094), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5105] = { + [sym_do_statement] = STATE(5065), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5094), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_switch_statement] = STATE(5094), - [sym_for_statement] = STATE(5094), - [sym_return_statement] = STATE(5094), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5065), + [sym_try_statement] = STATE(5065), + [sym_if_statement] = STATE(5065), + [sym_switch_statement] = STATE(5065), + [sym_for_statement] = STATE(5065), + [sym_return_statement] = STATE(5065), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5094), - [sym_break_statement] = STATE(5094), - [sym_continue_statement] = STATE(5094), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5065), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5094), - [sym_labeled_statement] = STATE(5094), - [sym_expression_statement] = STATE(5094), - [sym_while_statement] = STATE(5094), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5065), + [sym_for_range_loop] = STATE(5065), + [sym_compound_statement] = STATE(5065), + [sym_labeled_statement] = STATE(5065), + [sym_expression_statement] = STATE(5065), + [sym_while_statement] = STATE(5065), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, - [5135] = { - [aux_sym_for_statement_repeat1] = STATE(4155), - [anon_sym_COMMA] = ACTIONS(7561), - [anon_sym_RPAREN] = ACTIONS(10970), + [5106] = { + [aux_sym_for_statement_repeat1] = STATE(4125), + [anon_sym_COMMA] = ACTIONS(7542), + [anon_sym_RPAREN] = ACTIONS(10936), [sym_comment] = ACTIONS(3), }, - [5136] = { - [sym_do_statement] = STATE(5115), - [sym_template_type] = STATE(71), - [sym__expression] = STATE(3091), - [sym_logical_expression] = STATE(3091), - [sym_bitwise_expression] = STATE(3091), - [sym_cast_expression] = STATE(3091), - [sym_new_expression] = STATE(3091), + [5107] = { + [sym_do_statement] = STATE(5086), + [sym_template_function] = STATE(3070), + [sym__expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), [sym_field_expression] = STATE(47), - [sym_compound_literal_expression] = STATE(3091), - [sym_goto_statement] = STATE(5115), - [sym_char_literal] = STATE(3091), - [sym_for_range_loop] = STATE(5115), - [sym_if_statement] = STATE(5115), - [sym_switch_statement] = STATE(5115), - [sym_for_statement] = STATE(5115), - [sym_return_statement] = STATE(5115), - [sym_comma_expression] = STATE(3092), - [sym_conditional_expression] = STATE(3091), - [sym_equality_expression] = STATE(3091), - [sym_relational_expression] = STATE(3091), - [sym_delete_expression] = STATE(3091), + [sym_compound_literal_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), + [sym_char_literal] = STATE(3070), + [sym_scoped_identifier] = STATE(73), + [sym_scoped_type_identifier] = STATE(74), + [sym_goto_statement] = STATE(5086), + [sym_try_statement] = STATE(5086), + [sym_if_statement] = STATE(5086), + [sym_switch_statement] = STATE(5086), + [sym_for_statement] = STATE(5086), + [sym_return_statement] = STATE(5086), + [sym_comma_expression] = STATE(3071), + [sym_conditional_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), [sym_subscript_expression] = STATE(47), - [sym_parenthesized_expression] = STATE(3091), - [sym_lambda_expression] = STATE(3091), - [sym_scoped_identifier] = STATE(73), - [sym_string_literal] = STATE(52), - [sym_scoped_type_identifier] = STATE(74), - [sym_sizeof_expression] = STATE(3091), - [sym_template_function] = STATE(3091), - [sym_concatenated_string] = STATE(3091), - [sym_try_statement] = STATE(5115), - [sym_break_statement] = STATE(5115), - [sym_continue_statement] = STATE(5115), - [sym_assignment_expression] = STATE(3091), + [sym_parenthesized_expression] = STATE(3070), + [sym_lambda_capture_specifier] = STATE(50), + [sym_concatenated_string] = STATE(3070), + [sym_string_literal] = STATE(53), + [sym_scoped_namespace_identifier] = STATE(75), + [sym_template_type] = STATE(76), + [sym_break_statement] = STATE(5086), + [sym_assignment_expression] = STATE(3070), [sym_pointer_expression] = STATE(47), - [sym_shift_expression] = STATE(3091), - [sym_math_expression] = STATE(3091), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), [sym_call_expression] = STATE(47), - [sym_lambda_capture_specifier] = STATE(63), - [sym_scoped_namespace_identifier] = STATE(75), - [sym_compound_statement] = STATE(5115), - [sym_labeled_statement] = STATE(5115), - [sym_expression_statement] = STATE(5115), - [sym_while_statement] = STATE(5115), - [sym_raw_string_literal] = ACTIONS(6441), + [sym_new_expression] = STATE(3070), + [sym_continue_statement] = STATE(5086), + [sym_for_range_loop] = STATE(5086), + [sym_compound_statement] = STATE(5086), + [sym_labeled_statement] = STATE(5086), + [sym_expression_statement] = STATE(5086), + [sym_while_statement] = STATE(5086), + [sym_raw_string_literal] = ACTIONS(6430), [anon_sym_DASH] = ACTIONS(7), [anon_sym_LPAREN2] = ACTIONS(111), - [sym_true] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6432), + [sym_null] = ACTIONS(6432), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_break] = ACTIONS(6445), + [anon_sym_break] = ACTIONS(6434), [anon_sym_BANG] = ACTIONS(15), [anon_sym_AMP] = ACTIONS(119), [anon_sym_sizeof] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(6449), - [sym_identifier] = ACTIONS(10380), + [anon_sym_switch] = ACTIONS(6438), + [sym_identifier] = ACTIONS(10346), [anon_sym_new] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(6463), + [anon_sym_goto] = ACTIONS(6452), [anon_sym_delete] = ACTIONS(25), - [anon_sym_try] = ACTIONS(10382), - [anon_sym_for] = ACTIONS(10384), - [anon_sym_while] = ACTIONS(10386), - [anon_sym_continue] = ACTIONS(6453), + [anon_sym_try] = ACTIONS(10348), + [anon_sym_for] = ACTIONS(10350), + [anon_sym_while] = ACTIONS(10352), + [anon_sym_continue] = ACTIONS(6442), [anon_sym_DQUOTE] = ACTIONS(85), - [sym_number_literal] = ACTIONS(6441), + [sym_number_literal] = ACTIONS(6430), [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_if] = ACTIONS(10388), + [anon_sym_if] = ACTIONS(10354), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(6443), - [sym_nullptr] = ACTIONS(6443), - [anon_sym_do] = ACTIONS(6473), - [anon_sym_return] = ACTIONS(6475), + [sym_false] = ACTIONS(6432), + [sym_nullptr] = ACTIONS(6432), + [anon_sym_do] = ACTIONS(6462), + [anon_sym_return] = ACTIONS(6464), [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(6477), + [anon_sym_SEMI] = ACTIONS(6466), [anon_sym_PLUS_PLUS] = ACTIONS(45), [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(6457), + [anon_sym_LBRACE] = ACTIONS(6446), [anon_sym_DASH_DASH] = ACTIONS(45), }, }; @@ -210345,9 +209801,9 @@ static TSParseActionEntry ts_parse_actions[] = { [0] = {.count = 0, .reusable = false}, [1] = {.count = 1, .reusable = false}, RECOVER(), [3] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [5] = {.count = 1, .reusable = true}, SHIFT(55), + [5] = {.count = 1, .reusable = true}, SHIFT(58), [7] = {.count = 1, .reusable = false}, SHIFT(2), - [9] = {.count = 1, .reusable = false}, SHIFT(55), + [9] = {.count = 1, .reusable = false}, SHIFT(58), [11] = {.count = 1, .reusable = false}, SHIFT(3), [13] = {.count = 1, .reusable = false}, SHIFT(4), [15] = {.count = 1, .reusable = true}, SHIFT(5), @@ -210360,7 +209816,7 @@ static TSParseActionEntry ts_parse_actions[] = { [29] = {.count = 1, .reusable = false}, SHIFT(12), [31] = {.count = 1, .reusable = false}, SHIFT(13), [33] = {.count = 1, .reusable = false}, SHIFT(14), - [35] = {.count = 1, .reusable = false}, SHIFT(65), + [35] = {.count = 1, .reusable = false}, SHIFT(54), [37] = {.count = 1, .reusable = true}, SHIFT(15), [39] = {.count = 1, .reusable = false}, SHIFT(16), [41] = {.count = 1, .reusable = true}, SHIFT(17), @@ -210368,7 +209824,7 @@ static TSParseActionEntry ts_parse_actions[] = { [45] = {.count = 1, .reusable = true}, SHIFT(2), [47] = {.count = 1, .reusable = true}, SHIFT(19), [49] = {.count = 1, .reusable = false}, SHIFT(20), - [51] = {.count = 1, .reusable = false}, SHIFT(53), + [51] = {.count = 1, .reusable = false}, SHIFT(55), [53] = {.count = 1, .reusable = true}, SHIFT(21), [55] = {.count = 1, .reusable = false}, SHIFT(22), [57] = {.count = 1, .reusable = false}, SHIFT(23), @@ -210380,7 +209836,7 @@ static TSParseActionEntry ts_parse_actions[] = { [69] = {.count = 1, .reusable = false}, SHIFT(29), [71] = {.count = 1, .reusable = false}, SHIFT(30), [73] = {.count = 1, .reusable = false}, SHIFT(31), - [75] = {.count = 1, .reusable = true}, SHIFT(56), + [75] = {.count = 1, .reusable = true}, SHIFT(60), [77] = {.count = 1, .reusable = false}, SHIFT(32), [79] = {.count = 1, .reusable = false}, SHIFT(33), [81] = {.count = 1, .reusable = false}, SHIFT(34), @@ -210401,5230 +209857,5212 @@ static TSParseActionEntry ts_parse_actions[] = { [111] = {.count = 1, .reusable = true}, SHIFT(66), [113] = {.count = 1, .reusable = false}, SHIFT(72), [115] = {.count = 1, .reusable = true}, SHIFT(67), - [117] = {.count = 1, .reusable = true}, SHIFT(37), - [119] = {.count = 1, .reusable = true}, SHIFT(68), - [121] = {.count = 1, .reusable = true}, SHIFT(69), - [123] = {.count = 1, .reusable = false}, SHIFT(70), + [117] = {.count = 1, .reusable = true}, SHIFT(68), + [119] = {.count = 1, .reusable = true}, SHIFT(69), + [121] = {.count = 1, .reusable = true}, SHIFT(70), + [123] = {.count = 1, .reusable = false}, SHIFT(71), [125] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), [127] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [129] = {.count = 1, .reusable = true}, SHIFT(76), - [131] = {.count = 1, .reusable = true}, SHIFT(77), - [133] = {.count = 1, .reusable = false}, SHIFT(77), - [135] = {.count = 1, .reusable = true}, SHIFT(79), - [137] = {.count = 1, .reusable = true}, SHIFT(78), - [139] = {.count = 1, .reusable = false}, SHIFT(79), - [141] = {.count = 1, .reusable = false}, SHIFT(80), - [143] = {.count = 1, .reusable = false}, SHIFT(91), - [145] = {.count = 1, .reusable = false}, SHIFT(89), - [147] = {.count = 1, .reusable = true}, SHIFT(81), - [149] = {.count = 1, .reusable = false}, SHIFT(82), - [151] = {.count = 1, .reusable = false}, SHIFT(83), - [153] = {.count = 1, .reusable = false}, SHIFT(84), - [155] = {.count = 1, .reusable = false}, SHIFT(85), - [157] = {.count = 1, .reusable = true}, SHIFT(92), + [129] = {.count = 1, .reusable = true}, SHIFT(77), + [131] = {.count = 1, .reusable = true}, SHIFT(78), + [133] = {.count = 1, .reusable = false}, SHIFT(78), + [135] = {.count = 1, .reusable = true}, SHIFT(80), + [137] = {.count = 1, .reusable = true}, SHIFT(79), + [139] = {.count = 1, .reusable = false}, SHIFT(80), + [141] = {.count = 1, .reusable = false}, SHIFT(81), + [143] = {.count = 1, .reusable = false}, SHIFT(89), + [145] = {.count = 1, .reusable = false}, SHIFT(87), + [147] = {.count = 1, .reusable = true}, SHIFT(82), + [149] = {.count = 1, .reusable = false}, SHIFT(83), + [151] = {.count = 1, .reusable = false}, SHIFT(84), + [153] = {.count = 1, .reusable = false}, SHIFT(85), + [155] = {.count = 1, .reusable = false}, SHIFT(86), + [157] = {.count = 1, .reusable = true}, SHIFT(93), [159] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), [163] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), [165] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [167] = {.count = 1, .reusable = true}, SHIFT(94), + [167] = {.count = 1, .reusable = true}, SHIFT(95), [169] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [171] = {.count = 1, .reusable = false}, SHIFT(94), - [173] = {.count = 1, .reusable = true}, SHIFT(95), - [175] = {.count = 1, .reusable = true}, SHIFT(98), - [177] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(96), + [171] = {.count = 1, .reusable = false}, SHIFT(95), + [173] = {.count = 1, .reusable = true}, SHIFT(96), + [175] = {.count = 1, .reusable = true}, SHIFT(99), + [177] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(97), [180] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [183] = {.count = 1, .reusable = false}, SHIFT(97), + [183] = {.count = 1, .reusable = false}, SHIFT(98), [185] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), [187] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [190] = {.count = 1, .reusable = true}, SHIFT(102), - [192] = {.count = 1, .reusable = false}, SHIFT(102), - [194] = {.count = 1, .reusable = true}, SHIFT(101), - [196] = {.count = 1, .reusable = true}, SHIFT(103), - [198] = {.count = 1, .reusable = true}, SHIFT(104), + [190] = {.count = 1, .reusable = true}, SHIFT(103), + [192] = {.count = 1, .reusable = false}, SHIFT(103), + [194] = {.count = 1, .reusable = true}, SHIFT(102), + [196] = {.count = 1, .reusable = true}, SHIFT(104), + [198] = {.count = 1, .reusable = true}, SHIFT(105), [200] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), [202] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), - [204] = {.count = 1, .reusable = true}, SHIFT(105), - [206] = {.count = 1, .reusable = true}, SHIFT(107), - [208] = {.count = 1, .reusable = true}, SHIFT(108), - [210] = {.count = 1, .reusable = true}, SHIFT(120), - [212] = {.count = 1, .reusable = false}, SHIFT(110), - [214] = {.count = 1, .reusable = true}, SHIFT(111), - [216] = {.count = 1, .reusable = false}, SHIFT(120), - [218] = {.count = 1, .reusable = true}, SHIFT(112), - [220] = {.count = 1, .reusable = true}, SHIFT(113), - [222] = {.count = 1, .reusable = true}, SHIFT(114), - [224] = {.count = 1, .reusable = false}, SHIFT(115), - [226] = {.count = 1, .reusable = true}, SHIFT(116), - [228] = {.count = 1, .reusable = false}, SHIFT(117), - [230] = {.count = 1, .reusable = false}, SHIFT(118), - [232] = {.count = 1, .reusable = true}, SHIFT(110), - [234] = {.count = 1, .reusable = false}, SHIFT(119), - [236] = {.count = 1, .reusable = true}, SHIFT(123), - [238] = {.count = 1, .reusable = true}, SHIFT(124), - [240] = {.count = 1, .reusable = true}, SHIFT(126), - [242] = {.count = 1, .reusable = false}, SHIFT(126), + [204] = {.count = 1, .reusable = true}, SHIFT(106), + [206] = {.count = 1, .reusable = true}, SHIFT(108), + [208] = {.count = 1, .reusable = true}, SHIFT(109), + [210] = {.count = 1, .reusable = true}, SHIFT(121), + [212] = {.count = 1, .reusable = false}, SHIFT(111), + [214] = {.count = 1, .reusable = true}, SHIFT(112), + [216] = {.count = 1, .reusable = false}, SHIFT(121), + [218] = {.count = 1, .reusable = true}, SHIFT(113), + [220] = {.count = 1, .reusable = true}, SHIFT(114), + [222] = {.count = 1, .reusable = true}, SHIFT(115), + [224] = {.count = 1, .reusable = false}, SHIFT(116), + [226] = {.count = 1, .reusable = true}, SHIFT(117), + [228] = {.count = 1, .reusable = false}, SHIFT(118), + [230] = {.count = 1, .reusable = false}, SHIFT(119), + [232] = {.count = 1, .reusable = true}, SHIFT(111), + [234] = {.count = 1, .reusable = false}, SHIFT(120), + [236] = {.count = 1, .reusable = true}, SHIFT(124), + [238] = {.count = 1, .reusable = true}, SHIFT(125), + [240] = {.count = 1, .reusable = true}, SHIFT(127), + [242] = {.count = 1, .reusable = false}, SHIFT(127), [244] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [246] = {.count = 1, .reusable = false}, SHIFT(127), - [248] = {.count = 1, .reusable = true}, SHIFT(128), - [250] = {.count = 1, .reusable = false}, SHIFT(129), - [252] = {.count = 1, .reusable = false}, SHIFT(130), - [254] = {.count = 1, .reusable = false}, SHIFT(131), - [256] = {.count = 1, .reusable = false}, SHIFT(132), - [258] = {.count = 1, .reusable = true}, SHIFT(134), - [260] = {.count = 1, .reusable = false}, SHIFT(152), - [262] = {.count = 1, .reusable = true}, SHIFT(147), - [264] = {.count = 1, .reusable = false}, SHIFT(147), - [266] = {.count = 1, .reusable = false}, SHIFT(135), - [268] = {.count = 1, .reusable = true}, SHIFT(136), - [270] = {.count = 1, .reusable = false}, SHIFT(155), - [272] = {.count = 1, .reusable = true}, SHIFT(137), - [274] = {.count = 1, .reusable = false}, SHIFT(138), - [276] = {.count = 1, .reusable = false}, SHIFT(139), - [278] = {.count = 1, .reusable = true}, SHIFT(140), - [280] = {.count = 1, .reusable = false}, SHIFT(141), - [282] = {.count = 1, .reusable = false}, SHIFT(142), - [284] = {.count = 1, .reusable = false}, SHIFT(143), - [286] = {.count = 1, .reusable = true}, SHIFT(148), - [288] = {.count = 1, .reusable = false}, SHIFT(144), - [290] = {.count = 1, .reusable = true}, SHIFT(145), + [246] = {.count = 1, .reusable = false}, SHIFT(128), + [248] = {.count = 1, .reusable = true}, SHIFT(129), + [250] = {.count = 1, .reusable = false}, SHIFT(130), + [252] = {.count = 1, .reusable = false}, SHIFT(131), + [254] = {.count = 1, .reusable = false}, SHIFT(132), + [256] = {.count = 1, .reusable = false}, SHIFT(133), + [258] = {.count = 1, .reusable = true}, SHIFT(135), + [260] = {.count = 1, .reusable = false}, SHIFT(155), + [262] = {.count = 1, .reusable = true}, SHIFT(148), + [264] = {.count = 1, .reusable = false}, SHIFT(148), + [266] = {.count = 1, .reusable = false}, SHIFT(136), + [268] = {.count = 1, .reusable = true}, SHIFT(137), + [270] = {.count = 1, .reusable = false}, SHIFT(153), + [272] = {.count = 1, .reusable = true}, SHIFT(138), + [274] = {.count = 1, .reusable = false}, SHIFT(139), + [276] = {.count = 1, .reusable = false}, SHIFT(140), + [278] = {.count = 1, .reusable = true}, SHIFT(141), + [280] = {.count = 1, .reusable = false}, SHIFT(142), + [282] = {.count = 1, .reusable = false}, SHIFT(143), + [284] = {.count = 1, .reusable = false}, SHIFT(144), + [286] = {.count = 1, .reusable = true}, SHIFT(149), + [288] = {.count = 1, .reusable = false}, SHIFT(145), + [290] = {.count = 1, .reusable = true}, SHIFT(37), [292] = {.count = 1, .reusable = true}, SHIFT(146), - [294] = {.count = 1, .reusable = true}, SHIFT(135), - [296] = {.count = 1, .reusable = false}, SHIFT(156), + [294] = {.count = 1, .reusable = true}, SHIFT(147), + [296] = {.count = 1, .reusable = true}, SHIFT(136), [298] = {.count = 1, .reusable = false}, SHIFT(157), [300] = {.count = 1, .reusable = false}, SHIFT(158), - [302] = {.count = 1, .reusable = true}, SHIFT(159), - [304] = {.count = 1, .reusable = false}, SHIFT(165), - [306] = {.count = 1, .reusable = true}, SHIFT(166), + [302] = {.count = 1, .reusable = false}, SHIFT(159), + [304] = {.count = 1, .reusable = true}, SHIFT(160), + [306] = {.count = 1, .reusable = false}, SHIFT(166), [308] = {.count = 1, .reusable = true}, SHIFT(167), - [310] = {.count = 1, .reusable = false}, SHIFT(168), - [312] = {.count = 1, .reusable = true}, SHIFT(169), - [314] = {.count = 1, .reusable = false}, SHIFT(171), - [316] = {.count = 1, .reusable = false}, SHIFT(170), - [318] = {.count = 1, .reusable = true}, SHIFT(175), - [320] = {.count = 1, .reusable = false}, SHIFT(176), + [310] = {.count = 1, .reusable = true}, SHIFT(168), + [312] = {.count = 1, .reusable = false}, SHIFT(169), + [314] = {.count = 1, .reusable = true}, SHIFT(170), + [316] = {.count = 1, .reusable = false}, SHIFT(172), + [318] = {.count = 1, .reusable = false}, SHIFT(171), + [320] = {.count = 1, .reusable = true}, SHIFT(176), [322] = {.count = 1, .reusable = false}, SHIFT(177), - [324] = {.count = 1, .reusable = true}, SHIFT(178), - [326] = {.count = 1, .reusable = true}, SHIFT(190), - [328] = {.count = 1, .reusable = false}, SHIFT(179), - [330] = {.count = 1, .reusable = false}, SHIFT(190), - [332] = {.count = 1, .reusable = true}, SHIFT(188), - [334] = {.count = 1, .reusable = true}, SHIFT(179), - [336] = {.count = 1, .reusable = true}, SHIFT(182), + [324] = {.count = 1, .reusable = false}, SHIFT(178), + [326] = {.count = 1, .reusable = true}, SHIFT(179), + [328] = {.count = 1, .reusable = true}, SHIFT(191), + [330] = {.count = 1, .reusable = false}, SHIFT(180), + [332] = {.count = 1, .reusable = false}, SHIFT(191), + [334] = {.count = 1, .reusable = true}, SHIFT(189), + [336] = {.count = 1, .reusable = true}, SHIFT(180), [338] = {.count = 1, .reusable = true}, SHIFT(183), [340] = {.count = 1, .reusable = true}, SHIFT(184), - [342] = {.count = 1, .reusable = false}, SHIFT(185), - [344] = {.count = 1, .reusable = true}, SHIFT(186), - [346] = {.count = 1, .reusable = false}, SHIFT(187), - [348] = {.count = 1, .reusable = false}, SHIFT(180), + [342] = {.count = 1, .reusable = true}, SHIFT(185), + [344] = {.count = 1, .reusable = false}, SHIFT(186), + [346] = {.count = 1, .reusable = true}, SHIFT(187), + [348] = {.count = 1, .reusable = false}, SHIFT(188), [350] = {.count = 1, .reusable = false}, SHIFT(181), - [352] = {.count = 1, .reusable = true}, SHIFT(191), - [354] = {.count = 1, .reusable = false}, SHIFT(199), - [356] = {.count = 1, .reusable = false}, SHIFT(205), - [358] = {.count = 1, .reusable = true}, SHIFT(206), - [360] = {.count = 1, .reusable = false}, SHIFT(212), - [362] = {.count = 1, .reusable = false}, SHIFT(211), - [364] = {.count = 1, .reusable = false}, SHIFT(209), - [366] = {.count = 1, .reusable = false}, SHIFT(207), + [352] = {.count = 1, .reusable = false}, SHIFT(182), + [354] = {.count = 1, .reusable = true}, SHIFT(193), + [356] = {.count = 1, .reusable = false}, SHIFT(200), + [358] = {.count = 1, .reusable = false}, SHIFT(206), + [360] = {.count = 1, .reusable = true}, SHIFT(207), + [362] = {.count = 1, .reusable = false}, SHIFT(212), + [364] = {.count = 1, .reusable = false}, SHIFT(211), + [366] = {.count = 1, .reusable = false}, SHIFT(210), [368] = {.count = 1, .reusable = false}, SHIFT(208), - [370] = {.count = 1, .reusable = true}, SHIFT(214), + [370] = {.count = 1, .reusable = false}, SHIFT(209), [372] = {.count = 1, .reusable = true}, SHIFT(215), - [374] = {.count = 1, .reusable = true}, SHIFT(217), - [376] = {.count = 1, .reusable = true}, SHIFT(219), + [374] = {.count = 1, .reusable = true}, SHIFT(216), + [376] = {.count = 1, .reusable = true}, SHIFT(218), [378] = {.count = 1, .reusable = true}, SHIFT(220), [380] = {.count = 1, .reusable = true}, SHIFT(221), - [382] = {.count = 1, .reusable = true}, SHIFT(223), - [384] = {.count = 1, .reusable = false}, SHIFT(222), - [386] = {.count = 1, .reusable = true}, SHIFT(240), - [388] = {.count = 1, .reusable = false}, SHIFT(224), - [390] = {.count = 1, .reusable = true}, SHIFT(225), - [392] = {.count = 1, .reusable = false}, SHIFT(240), - [394] = {.count = 1, .reusable = false}, SHIFT(238), - [396] = {.count = 1, .reusable = true}, SHIFT(224), - [398] = {.count = 1, .reusable = true}, SHIFT(228), + [382] = {.count = 1, .reusable = true}, SHIFT(222), + [384] = {.count = 1, .reusable = true}, SHIFT(224), + [386] = {.count = 1, .reusable = false}, SHIFT(223), + [388] = {.count = 1, .reusable = true}, SHIFT(240), + [390] = {.count = 1, .reusable = false}, SHIFT(225), + [392] = {.count = 1, .reusable = true}, SHIFT(226), + [394] = {.count = 1, .reusable = false}, SHIFT(240), + [396] = {.count = 1, .reusable = false}, SHIFT(239), + [398] = {.count = 1, .reusable = true}, SHIFT(225), [400] = {.count = 1, .reusable = true}, SHIFT(229), [402] = {.count = 1, .reusable = true}, SHIFT(230), [404] = {.count = 1, .reusable = true}, SHIFT(231), - [406] = {.count = 1, .reusable = false}, SHIFT(232), - [408] = {.count = 1, .reusable = true}, SHIFT(233), + [406] = {.count = 1, .reusable = true}, SHIFT(232), + [408] = {.count = 1, .reusable = false}, SHIFT(233), [410] = {.count = 1, .reusable = true}, SHIFT(234), - [412] = {.count = 1, .reusable = false}, SHIFT(235), + [412] = {.count = 1, .reusable = true}, SHIFT(235), [414] = {.count = 1, .reusable = false}, SHIFT(236), - [416] = {.count = 1, .reusable = true}, SHIFT(226), - [418] = {.count = 1, .reusable = true}, SHIFT(237), - [420] = {.count = 1, .reusable = true}, SHIFT(227), - [422] = {.count = 1, .reusable = false}, SHIFT(248), - [424] = {.count = 1, .reusable = true}, SHIFT(254), + [416] = {.count = 1, .reusable = false}, SHIFT(237), + [418] = {.count = 1, .reusable = true}, SHIFT(227), + [420] = {.count = 1, .reusable = true}, SHIFT(238), + [422] = {.count = 1, .reusable = true}, SHIFT(228), + [424] = {.count = 1, .reusable = false}, SHIFT(249), [426] = {.count = 1, .reusable = true}, SHIFT(255), - [428] = {.count = 1, .reusable = true}, SHIFT(269), - [430] = {.count = 1, .reusable = false}, SHIFT(269), - [432] = {.count = 1, .reusable = false}, SHIFT(256), + [428] = {.count = 1, .reusable = true}, SHIFT(256), + [430] = {.count = 1, .reusable = true}, SHIFT(270), + [432] = {.count = 1, .reusable = false}, SHIFT(270), [434] = {.count = 1, .reusable = false}, SHIFT(257), [436] = {.count = 1, .reusable = false}, SHIFT(258), [438] = {.count = 1, .reusable = false}, SHIFT(259), - [440] = {.count = 1, .reusable = false}, SHIFT(263), - [442] = {.count = 1, .reusable = false}, SHIFT(262), - [444] = {.count = 1, .reusable = false}, SHIFT(260), + [440] = {.count = 1, .reusable = false}, SHIFT(260), + [442] = {.count = 1, .reusable = false}, SHIFT(264), + [444] = {.count = 1, .reusable = false}, SHIFT(263), [446] = {.count = 1, .reusable = false}, SHIFT(261), - [448] = {.count = 1, .reusable = false}, SHIFT(264), + [448] = {.count = 1, .reusable = false}, SHIFT(262), [450] = {.count = 1, .reusable = false}, SHIFT(265), [452] = {.count = 1, .reusable = false}, SHIFT(266), - [454] = {.count = 1, .reusable = true}, SHIFT(267), - [456] = {.count = 1, .reusable = true}, SHIFT(271), - [458] = {.count = 1, .reusable = false}, SHIFT(278), - [460] = {.count = 1, .reusable = false}, SHIFT(283), - [462] = {.count = 1, .reusable = true}, SHIFT(272), + [454] = {.count = 1, .reusable = false}, SHIFT(267), + [456] = {.count = 1, .reusable = true}, SHIFT(268), + [458] = {.count = 1, .reusable = true}, SHIFT(272), + [460] = {.count = 1, .reusable = false}, SHIFT(280), + [462] = {.count = 1, .reusable = false}, SHIFT(281), [464] = {.count = 1, .reusable = true}, SHIFT(273), - [466] = {.count = 1, .reusable = false}, SHIFT(274), - [468] = {.count = 1, .reusable = true}, SHIFT(275), - [470] = {.count = 1, .reusable = false}, SHIFT(276), + [466] = {.count = 1, .reusable = true}, SHIFT(274), + [468] = {.count = 1, .reusable = false}, SHIFT(275), + [470] = {.count = 1, .reusable = true}, SHIFT(276), [472] = {.count = 1, .reusable = false}, SHIFT(277), - [474] = {.count = 1, .reusable = true}, SHIFT(280), - [476] = {.count = 1, .reusable = true}, SHIFT(274), - [478] = {.count = 1, .reusable = true}, SHIFT(298), - [480] = {.count = 1, .reusable = false}, SHIFT(287), - [482] = {.count = 1, .reusable = true}, SHIFT(288), - [484] = {.count = 1, .reusable = false}, SHIFT(298), - [486] = {.count = 1, .reusable = true}, SHIFT(287), - [488] = {.count = 1, .reusable = true}, SHIFT(290), - [490] = {.count = 1, .reusable = true}, SHIFT(291), + [474] = {.count = 1, .reusable = false}, SHIFT(278), + [476] = {.count = 1, .reusable = true}, SHIFT(283), + [478] = {.count = 1, .reusable = true}, SHIFT(279), + [480] = {.count = 1, .reusable = true}, SHIFT(275), + [482] = {.count = 1, .reusable = true}, SHIFT(300), + [484] = {.count = 1, .reusable = false}, SHIFT(289), + [486] = {.count = 1, .reusable = true}, SHIFT(290), + [488] = {.count = 1, .reusable = false}, SHIFT(300), + [490] = {.count = 1, .reusable = true}, SHIFT(289), [492] = {.count = 1, .reusable = true}, SHIFT(292), - [494] = {.count = 1, .reusable = false}, SHIFT(293), + [494] = {.count = 1, .reusable = true}, SHIFT(293), [496] = {.count = 1, .reusable = true}, SHIFT(294), - [498] = {.count = 1, .reusable = true}, SHIFT(295), - [500] = {.count = 1, .reusable = false}, SHIFT(296), - [502] = {.count = 1, .reusable = false}, SHIFT(297), - [504] = {.count = 1, .reusable = false}, SHIFT(289), - [506] = {.count = 1, .reusable = true}, SHIFT(303), - [508] = {.count = 1, .reusable = false}, SHIFT(303), - [510] = {.count = 1, .reusable = false}, SHIFT(302), - [512] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [514] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [516] = {.count = 1, .reusable = true}, SHIFT(304), - [518] = {.count = 1, .reusable = false}, SHIFT(46), - [520] = {.count = 1, .reusable = true}, SHIFT(305), - [522] = {.count = 1, .reusable = true}, SHIFT(306), - [524] = {.count = 1, .reusable = false}, SHIFT(307), - [526] = {.count = 1, .reusable = false}, SHIFT(312), - [528] = {.count = 1, .reusable = true}, SHIFT(309), - [530] = {.count = 1, .reusable = false}, SHIFT(310), - [532] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), - [535] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 1), - [537] = {.count = 1, .reusable = true}, SHIFT(317), - [539] = {.count = 1, .reusable = true}, SHIFT(318), - [541] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), - [543] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), - [545] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1), - [547] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1), - [549] = {.count = 1, .reusable = true}, SHIFT(323), - [551] = {.count = 1, .reusable = true}, SHIFT(325), - [553] = {.count = 1, .reusable = false}, SHIFT(326), - [555] = {.count = 1, .reusable = false}, SHIFT(327), - [557] = {.count = 1, .reusable = true}, SHIFT(328), - [559] = {.count = 1, .reusable = true}, SHIFT(329), - [561] = {.count = 1, .reusable = true}, SHIFT(330), - [563] = {.count = 1, .reusable = true}, SHIFT(331), - [565] = {.count = 1, .reusable = true}, SHIFT(332), - [567] = {.count = 1, .reusable = true}, SHIFT(333), + [498] = {.count = 1, .reusable = false}, SHIFT(295), + [500] = {.count = 1, .reusable = true}, SHIFT(296), + [502] = {.count = 1, .reusable = true}, SHIFT(297), + [504] = {.count = 1, .reusable = false}, SHIFT(298), + [506] = {.count = 1, .reusable = false}, SHIFT(299), + [508] = {.count = 1, .reusable = false}, SHIFT(291), + [510] = {.count = 1, .reusable = true}, SHIFT(305), + [512] = {.count = 1, .reusable = false}, SHIFT(305), + [514] = {.count = 1, .reusable = false}, SHIFT(304), + [516] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [518] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [520] = {.count = 1, .reusable = true}, SHIFT(306), + [522] = {.count = 1, .reusable = false}, SHIFT(46), + [524] = {.count = 1, .reusable = true}, SHIFT(307), + [526] = {.count = 1, .reusable = true}, SHIFT(308), + [528] = {.count = 1, .reusable = false}, SHIFT(309), + [530] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1), + [532] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1), + [534] = {.count = 1, .reusable = true}, SHIFT(97), + [536] = {.count = 1, .reusable = true}, SHIFT(315), + [538] = {.count = 1, .reusable = false}, SHIFT(316), + [540] = {.count = 1, .reusable = true}, SHIFT(317), + [542] = {.count = 1, .reusable = true}, SHIFT(316), + [544] = {.count = 1, .reusable = true}, SHIFT(318), + [546] = {.count = 1, .reusable = true}, SHIFT(322), + [548] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 1), + [550] = {.count = 1, .reusable = true}, SHIFT(323), + [552] = {.count = 1, .reusable = true}, SHIFT(324), + [554] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), + [556] = {.count = 1, .reusable = false}, SHIFT(330), + [558] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), + [560] = {.count = 1, .reusable = false}, SHIFT(329), + [562] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(328), + [565] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), + [567] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), [569] = {.count = 1, .reusable = false}, SHIFT(334), - [571] = {.count = 1, .reusable = true}, SHIFT(335), - [573] = {.count = 1, .reusable = false}, SHIFT(336), - [575] = {.count = 1, .reusable = true}, SHIFT(337), - [577] = {.count = 1, .reusable = true}, SHIFT(326), - [579] = {.count = 1, .reusable = false}, SHIFT(332), - [581] = {.count = 1, .reusable = true}, SHIFT(338), - [583] = {.count = 1, .reusable = true}, SHIFT(339), - [585] = {.count = 1, .reusable = true}, SHIFT(340), - [587] = {.count = 1, .reusable = true}, SHIFT(342), - [589] = {.count = 1, .reusable = true}, SHIFT(343), - [591] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [593] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [595] = {.count = 1, .reusable = false}, SHIFT(346), - [597] = {.count = 1, .reusable = true}, SHIFT(347), - [599] = {.count = 1, .reusable = true}, SHIFT(348), - [601] = {.count = 1, .reusable = false}, SHIFT(349), - [603] = {.count = 1, .reusable = true}, SHIFT(346), - [605] = {.count = 1, .reusable = true}, SHIFT(350), - [607] = {.count = 1, .reusable = true}, SHIFT(352), - [609] = {.count = 1, .reusable = true}, SHIFT(96), - [611] = {.count = 1, .reusable = true}, SHIFT(357), - [613] = {.count = 1, .reusable = false}, SHIFT(358), - [615] = {.count = 1, .reusable = true}, SHIFT(359), - [617] = {.count = 1, .reusable = true}, SHIFT(358), - [619] = {.count = 1, .reusable = true}, SHIFT(360), - [621] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), - [623] = {.count = 1, .reusable = false}, SHIFT(366), - [625] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [627] = {.count = 1, .reusable = false}, SHIFT(365), - [629] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(364), - [632] = {.count = 1, .reusable = true}, SHIFT(367), - [634] = {.count = 1, .reusable = true}, SHIFT(368), - [636] = {.count = 1, .reusable = false}, SHIFT(369), - [638] = {.count = 1, .reusable = true}, SHIFT(370), - [640] = {.count = 1, .reusable = false}, SHIFT(371), - [642] = {.count = 1, .reusable = true}, SHIFT(372), - [644] = {.count = 1, .reusable = true}, SHIFT(373), - [646] = {.count = 1, .reusable = false}, SHIFT(374), - [648] = {.count = 1, .reusable = true}, SHIFT(376), - [650] = {.count = 1, .reusable = true}, SHIFT(378), - [652] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [654] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [656] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [658] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [660] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [662] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [664] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [666] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [668] = {.count = 1, .reusable = true}, SHIFT(381), - [670] = {.count = 1, .reusable = true}, SHIFT(384), - [672] = {.count = 1, .reusable = true}, SHIFT(386), - [674] = {.count = 1, .reusable = false}, SHIFT(387), - [676] = {.count = 1, .reusable = false}, SHIFT(389), - [678] = {.count = 1, .reusable = true}, SHIFT(390), - [680] = {.count = 1, .reusable = true}, SHIFT(392), - [682] = {.count = 1, .reusable = true}, SHIFT(391), - [684] = {.count = 1, .reusable = true}, SHIFT(394), - [686] = {.count = 1, .reusable = false}, SHIFT(395), - [688] = {.count = 1, .reusable = true}, SHIFT(396), - [690] = {.count = 1, .reusable = true}, SHIFT(398), - [692] = {.count = 1, .reusable = false}, SHIFT(398), - [694] = {.count = 1, .reusable = false}, SHIFT(400), - [696] = {.count = 1, .reusable = true}, SHIFT(399), - [698] = {.count = 1, .reusable = true}, SHIFT(420), - [700] = {.count = 1, .reusable = false}, SHIFT(401), - [702] = {.count = 1, .reusable = false}, SHIFT(426), - [704] = {.count = 1, .reusable = false}, SHIFT(420), - [706] = {.count = 1, .reusable = false}, SHIFT(402), - [708] = {.count = 1, .reusable = true}, SHIFT(403), - [710] = {.count = 1, .reusable = true}, SHIFT(404), - [712] = {.count = 1, .reusable = false}, SHIFT(430), + [571] = {.count = 1, .reusable = true}, SHIFT(332), + [573] = {.count = 1, .reusable = false}, SHIFT(333), + [575] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), + [578] = {.count = 1, .reusable = true}, SHIFT(339), + [580] = {.count = 1, .reusable = false}, SHIFT(340), + [582] = {.count = 1, .reusable = false}, SHIFT(341), + [584] = {.count = 1, .reusable = true}, SHIFT(342), + [586] = {.count = 1, .reusable = true}, SHIFT(343), + [588] = {.count = 1, .reusable = true}, SHIFT(344), + [590] = {.count = 1, .reusable = true}, SHIFT(345), + [592] = {.count = 1, .reusable = true}, SHIFT(346), + [594] = {.count = 1, .reusable = true}, SHIFT(347), + [596] = {.count = 1, .reusable = false}, SHIFT(348), + [598] = {.count = 1, .reusable = true}, SHIFT(349), + [600] = {.count = 1, .reusable = false}, SHIFT(350), + [602] = {.count = 1, .reusable = true}, SHIFT(351), + [604] = {.count = 1, .reusable = true}, SHIFT(340), + [606] = {.count = 1, .reusable = false}, SHIFT(346), + [608] = {.count = 1, .reusable = true}, SHIFT(352), + [610] = {.count = 1, .reusable = true}, SHIFT(353), + [612] = {.count = 1, .reusable = true}, SHIFT(354), + [614] = {.count = 1, .reusable = true}, SHIFT(357), + [616] = {.count = 1, .reusable = true}, SHIFT(358), + [618] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [620] = {.count = 1, .reusable = false}, SHIFT(360), + [622] = {.count = 1, .reusable = true}, SHIFT(361), + [624] = {.count = 1, .reusable = true}, SHIFT(362), + [626] = {.count = 1, .reusable = false}, SHIFT(363), + [628] = {.count = 1, .reusable = true}, SHIFT(360), + [630] = {.count = 1, .reusable = true}, SHIFT(364), + [632] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [634] = {.count = 1, .reusable = true}, SHIFT(367), + [636] = {.count = 1, .reusable = true}, SHIFT(368), + [638] = {.count = 1, .reusable = false}, SHIFT(369), + [640] = {.count = 1, .reusable = true}, SHIFT(370), + [642] = {.count = 1, .reusable = false}, SHIFT(371), + [644] = {.count = 1, .reusable = false}, SHIFT(372), + [646] = {.count = 1, .reusable = true}, SHIFT(373), + [648] = {.count = 1, .reusable = true}, SHIFT(374), + [650] = {.count = 1, .reusable = false}, SHIFT(375), + [652] = {.count = 1, .reusable = true}, SHIFT(377), + [654] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [656] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [658] = {.count = 1, .reusable = true}, SHIFT(379), + [660] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [662] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [664] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [666] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [668] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [670] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [672] = {.count = 1, .reusable = true}, SHIFT(382), + [674] = {.count = 1, .reusable = true}, SHIFT(385), + [676] = {.count = 1, .reusable = false}, SHIFT(387), + [678] = {.count = 1, .reusable = false}, SHIFT(389), + [680] = {.count = 1, .reusable = true}, SHIFT(390), + [682] = {.count = 1, .reusable = true}, SHIFT(392), + [684] = {.count = 1, .reusable = true}, SHIFT(391), + [686] = {.count = 1, .reusable = true}, SHIFT(394), + [688] = {.count = 1, .reusable = true}, SHIFT(395), + [690] = {.count = 1, .reusable = false}, SHIFT(396), + [692] = {.count = 1, .reusable = true}, SHIFT(397), + [694] = {.count = 1, .reusable = true}, SHIFT(399), + [696] = {.count = 1, .reusable = false}, SHIFT(399), + [698] = {.count = 1, .reusable = false}, SHIFT(401), + [700] = {.count = 1, .reusable = true}, SHIFT(400), + [702] = {.count = 1, .reusable = true}, SHIFT(420), + [704] = {.count = 1, .reusable = false}, SHIFT(402), + [706] = {.count = 1, .reusable = false}, SHIFT(428), + [708] = {.count = 1, .reusable = false}, SHIFT(420), + [710] = {.count = 1, .reusable = false}, SHIFT(403), + [712] = {.count = 1, .reusable = true}, SHIFT(404), [714] = {.count = 1, .reusable = true}, SHIFT(405), - [716] = {.count = 1, .reusable = true}, SHIFT(406), - [718] = {.count = 1, .reusable = true}, SHIFT(407), - [720] = {.count = 1, .reusable = false}, SHIFT(408), - [722] = {.count = 1, .reusable = false}, SHIFT(409), - [724] = {.count = 1, .reusable = false}, SHIFT(410), - [726] = {.count = 1, .reusable = false}, SHIFT(411), - [728] = {.count = 1, .reusable = false}, SHIFT(412), - [730] = {.count = 1, .reusable = false}, SHIFT(413), - [732] = {.count = 1, .reusable = true}, SHIFT(414), - [734] = {.count = 1, .reusable = false}, SHIFT(415), - [736] = {.count = 1, .reusable = false}, SHIFT(416), - [738] = {.count = 1, .reusable = true}, SHIFT(417), - [740] = {.count = 1, .reusable = true}, SHIFT(402), + [716] = {.count = 1, .reusable = false}, SHIFT(427), + [718] = {.count = 1, .reusable = true}, SHIFT(406), + [720] = {.count = 1, .reusable = true}, SHIFT(407), + [722] = {.count = 1, .reusable = true}, SHIFT(408), + [724] = {.count = 1, .reusable = false}, SHIFT(409), + [726] = {.count = 1, .reusable = false}, SHIFT(410), + [728] = {.count = 1, .reusable = false}, SHIFT(411), + [730] = {.count = 1, .reusable = false}, SHIFT(412), + [732] = {.count = 1, .reusable = false}, SHIFT(413), + [734] = {.count = 1, .reusable = false}, SHIFT(414), + [736] = {.count = 1, .reusable = true}, SHIFT(415), + [738] = {.count = 1, .reusable = false}, SHIFT(416), + [740] = {.count = 1, .reusable = false}, SHIFT(417), [742] = {.count = 1, .reusable = true}, SHIFT(418), - [744] = {.count = 1, .reusable = false}, SHIFT(431), - [746] = {.count = 1, .reusable = true}, SHIFT(447), - [748] = {.count = 1, .reusable = false}, SHIFT(433), - [750] = {.count = 1, .reusable = true}, SHIFT(434), - [752] = {.count = 1, .reusable = false}, SHIFT(447), - [754] = {.count = 1, .reusable = true}, SHIFT(433), - [756] = {.count = 1, .reusable = false}, SHIFT(436), - [758] = {.count = 1, .reusable = true}, SHIFT(437), - [760] = {.count = 1, .reusable = true}, SHIFT(438), - [762] = {.count = 1, .reusable = true}, SHIFT(439), - [764] = {.count = 1, .reusable = true}, SHIFT(440), - [766] = {.count = 1, .reusable = true}, SHIFT(441), - [768] = {.count = 1, .reusable = false}, SHIFT(442), - [770] = {.count = 1, .reusable = true}, SHIFT(443), - [772] = {.count = 1, .reusable = true}, SHIFT(444), - [774] = {.count = 1, .reusable = false}, SHIFT(445), - [776] = {.count = 1, .reusable = false}, SHIFT(446), - [778] = {.count = 1, .reusable = false}, SHIFT(435), - [780] = {.count = 2, .reusable = true}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), REDUCE(sym_template_function, 2), - [783] = {.count = 1, .reusable = false}, REDUCE(sym_template_function, 2), - [785] = {.count = 1, .reusable = true}, REDUCE(sym_template_function, 2), - [787] = {.count = 1, .reusable = false}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), - [789] = {.count = 1, .reusable = true}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), - [791] = {.count = 2, .reusable = false}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), REDUCE(sym_template_function, 2), - [794] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 2, .alias_sequence_id = 1), - [796] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 2, .alias_sequence_id = 1), - [798] = {.count = 1, .reusable = true}, SHIFT(452), - [800] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 2), - [802] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [804] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [806] = {.count = 1, .reusable = true}, SHIFT(482), - [808] = {.count = 1, .reusable = false}, SHIFT(482), - [810] = {.count = 1, .reusable = false}, SHIFT(453), - [812] = {.count = 1, .reusable = false}, SHIFT(454), - [814] = {.count = 1, .reusable = false}, SHIFT(455), - [816] = {.count = 1, .reusable = false}, SHIFT(456), - [818] = {.count = 1, .reusable = false}, SHIFT(457), - [820] = {.count = 1, .reusable = false}, SHIFT(458), - [822] = {.count = 1, .reusable = false}, SHIFT(459), - [824] = {.count = 1, .reusable = false}, SHIFT(460), - [826] = {.count = 1, .reusable = false}, SHIFT(461), - [828] = {.count = 1, .reusable = false}, SHIFT(462), - [830] = {.count = 1, .reusable = true}, SHIFT(463), - [832] = {.count = 1, .reusable = false}, SHIFT(464), - [834] = {.count = 1, .reusable = false}, SHIFT(465), - [836] = {.count = 1, .reusable = false}, SHIFT(466), - [838] = {.count = 1, .reusable = false}, SHIFT(467), - [840] = {.count = 1, .reusable = false}, SHIFT(468), - [842] = {.count = 1, .reusable = false}, SHIFT(469), - [844] = {.count = 1, .reusable = false}, SHIFT(470), - [846] = {.count = 1, .reusable = false}, SHIFT(471), - [848] = {.count = 1, .reusable = false}, SHIFT(472), - [850] = {.count = 1, .reusable = false}, SHIFT(473), - [852] = {.count = 1, .reusable = false}, SHIFT(474), - [854] = {.count = 1, .reusable = false}, SHIFT(475), - [856] = {.count = 1, .reusable = false}, SHIFT(476), - [858] = {.count = 1, .reusable = true}, SHIFT(477), - [860] = {.count = 1, .reusable = false}, SHIFT(478), - [862] = {.count = 1, .reusable = true}, SHIFT(488), - [864] = {.count = 1, .reusable = false}, SHIFT(487), - [866] = {.count = 1, .reusable = true}, SHIFT(492), - [868] = {.count = 1, .reusable = true}, SHIFT(493), - [870] = {.count = 1, .reusable = true}, SHIFT(491), - [872] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [874] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [876] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), - [878] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), - [880] = {.count = 1, .reusable = false}, SHIFT(497), - [882] = {.count = 1, .reusable = false}, SHIFT(498), - [884] = {.count = 1, .reusable = true}, SHIFT(499), - [886] = {.count = 1, .reusable = true}, SHIFT(500), - [888] = {.count = 1, .reusable = true}, SHIFT(501), - [890] = {.count = 1, .reusable = false}, SHIFT(502), - [892] = {.count = 1, .reusable = true}, SHIFT(503), - [894] = {.count = 1, .reusable = false}, SHIFT(504), - [896] = {.count = 1, .reusable = true}, SHIFT(498), + [744] = {.count = 1, .reusable = true}, SHIFT(403), + [746] = {.count = 1, .reusable = true}, SHIFT(419), + [748] = {.count = 1, .reusable = false}, SHIFT(432), + [750] = {.count = 1, .reusable = true}, SHIFT(448), + [752] = {.count = 1, .reusable = false}, SHIFT(434), + [754] = {.count = 1, .reusable = true}, SHIFT(435), + [756] = {.count = 1, .reusable = false}, SHIFT(448), + [758] = {.count = 1, .reusable = true}, SHIFT(434), + [760] = {.count = 1, .reusable = false}, SHIFT(437), + [762] = {.count = 1, .reusable = true}, SHIFT(438), + [764] = {.count = 1, .reusable = true}, SHIFT(439), + [766] = {.count = 1, .reusable = true}, SHIFT(440), + [768] = {.count = 1, .reusable = true}, SHIFT(441), + [770] = {.count = 1, .reusable = true}, SHIFT(442), + [772] = {.count = 1, .reusable = false}, SHIFT(443), + [774] = {.count = 1, .reusable = true}, SHIFT(444), + [776] = {.count = 1, .reusable = true}, SHIFT(445), + [778] = {.count = 1, .reusable = false}, SHIFT(446), + [780] = {.count = 1, .reusable = false}, SHIFT(447), + [782] = {.count = 1, .reusable = false}, SHIFT(436), + [784] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 2, .alias_sequence_id = 1), + [786] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 2, .alias_sequence_id = 1), + [788] = {.count = 2, .reusable = true}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), REDUCE(sym_template_function, 2), + [791] = {.count = 1, .reusable = false}, REDUCE(sym_template_function, 2), + [793] = {.count = 1, .reusable = true}, REDUCE(sym_template_function, 2), + [795] = {.count = 1, .reusable = false}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), + [797] = {.count = 1, .reusable = true}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), + [799] = {.count = 2, .reusable = false}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), REDUCE(sym_template_function, 2), + [802] = {.count = 1, .reusable = true}, SHIFT(453), + [804] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 2), + [806] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [808] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [810] = {.count = 1, .reusable = true}, SHIFT(484), + [812] = {.count = 1, .reusable = false}, SHIFT(484), + [814] = {.count = 1, .reusable = false}, SHIFT(454), + [816] = {.count = 1, .reusable = false}, SHIFT(455), + [818] = {.count = 1, .reusable = false}, SHIFT(456), + [820] = {.count = 1, .reusable = false}, SHIFT(457), + [822] = {.count = 1, .reusable = false}, SHIFT(458), + [824] = {.count = 1, .reusable = false}, SHIFT(459), + [826] = {.count = 1, .reusable = false}, SHIFT(460), + [828] = {.count = 1, .reusable = false}, SHIFT(461), + [830] = {.count = 1, .reusable = false}, SHIFT(462), + [832] = {.count = 1, .reusable = false}, SHIFT(463), + [834] = {.count = 1, .reusable = true}, SHIFT(464), + [836] = {.count = 1, .reusable = false}, SHIFT(465), + [838] = {.count = 1, .reusable = false}, SHIFT(466), + [840] = {.count = 1, .reusable = false}, SHIFT(467), + [842] = {.count = 1, .reusable = false}, SHIFT(468), + [844] = {.count = 1, .reusable = false}, SHIFT(469), + [846] = {.count = 1, .reusable = false}, SHIFT(470), + [848] = {.count = 1, .reusable = false}, SHIFT(471), + [850] = {.count = 1, .reusable = false}, SHIFT(472), + [852] = {.count = 1, .reusable = false}, SHIFT(473), + [854] = {.count = 1, .reusable = false}, SHIFT(474), + [856] = {.count = 1, .reusable = false}, SHIFT(475), + [858] = {.count = 1, .reusable = false}, SHIFT(476), + [860] = {.count = 1, .reusable = false}, SHIFT(477), + [862] = {.count = 1, .reusable = true}, SHIFT(478), + [864] = {.count = 1, .reusable = false}, SHIFT(479), + [866] = {.count = 1, .reusable = true}, SHIFT(489), + [868] = {.count = 1, .reusable = false}, SHIFT(488), + [870] = {.count = 1, .reusable = true}, SHIFT(493), + [872] = {.count = 1, .reusable = true}, SHIFT(494), + [874] = {.count = 1, .reusable = true}, SHIFT(492), + [876] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [878] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [880] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), + [882] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), + [884] = {.count = 1, .reusable = false}, SHIFT(498), + [886] = {.count = 1, .reusable = false}, SHIFT(499), + [888] = {.count = 1, .reusable = true}, SHIFT(500), + [890] = {.count = 1, .reusable = true}, SHIFT(501), + [892] = {.count = 1, .reusable = true}, SHIFT(502), + [894] = {.count = 1, .reusable = false}, SHIFT(503), + [896] = {.count = 1, .reusable = true}, SHIFT(504), [898] = {.count = 1, .reusable = false}, SHIFT(505), - [900] = {.count = 1, .reusable = true}, SHIFT(508), - [902] = {.count = 1, .reusable = true}, SHIFT(507), - [904] = {.count = 1, .reusable = false}, SHIFT(508), - [906] = {.count = 1, .reusable = true}, SHIFT(509), + [900] = {.count = 1, .reusable = true}, SHIFT(499), + [902] = {.count = 1, .reusable = false}, SHIFT(506), + [904] = {.count = 1, .reusable = true}, SHIFT(509), + [906] = {.count = 1, .reusable = true}, SHIFT(508), [908] = {.count = 1, .reusable = false}, SHIFT(509), - [910] = {.count = 1, .reusable = false}, SHIFT(512), - [912] = {.count = 1, .reusable = false}, SHIFT(511), - [914] = {.count = 1, .reusable = false}, SHIFT(510), - [916] = {.count = 1, .reusable = true}, SHIFT(515), - [918] = {.count = 1, .reusable = false}, SHIFT(515), - [920] = {.count = 1, .reusable = true}, SHIFT(514), - [922] = {.count = 1, .reusable = true}, SHIFT(516), - [924] = {.count = 1, .reusable = false}, SHIFT(517), - [926] = {.count = 1, .reusable = false}, SHIFT(518), - [928] = {.count = 1, .reusable = true}, SHIFT(519), - [930] = {.count = 1, .reusable = true}, SHIFT(520), - [932] = {.count = 1, .reusable = true}, SHIFT(521), - [934] = {.count = 1, .reusable = true}, SHIFT(522), - [936] = {.count = 1, .reusable = true}, SHIFT(523), - [938] = {.count = 1, .reusable = true}, SHIFT(524), - [940] = {.count = 1, .reusable = false}, SHIFT(525), - [942] = {.count = 1, .reusable = false}, SHIFT(526), - [944] = {.count = 1, .reusable = true}, SHIFT(527), - [946] = {.count = 1, .reusable = true}, SHIFT(517), - [948] = {.count = 1, .reusable = false}, SHIFT(523), - [950] = {.count = 1, .reusable = true}, SHIFT(528), - [952] = {.count = 1, .reusable = true}, SHIFT(531), - [954] = {.count = 1, .reusable = false}, REDUCE(sym_namespace_definition, 2), - [956] = {.count = 1, .reusable = true}, REDUCE(sym_namespace_definition, 2), - [958] = {.count = 1, .reusable = true}, SHIFT(534), - [960] = {.count = 1, .reusable = false}, SHIFT(535), - [962] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [964] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [966] = {.count = 1, .reusable = true}, SHIFT(538), - [968] = {.count = 1, .reusable = true}, SHIFT(539), - [970] = {.count = 1, .reusable = true}, SHIFT(540), - [972] = {.count = 1, .reusable = true}, SHIFT(541), - [974] = {.count = 1, .reusable = false}, SHIFT(544), - [976] = {.count = 1, .reusable = true}, SHIFT(545), - [978] = {.count = 1, .reusable = false}, SHIFT(546), + [910] = {.count = 1, .reusable = true}, SHIFT(510), + [912] = {.count = 1, .reusable = false}, SHIFT(510), + [914] = {.count = 1, .reusable = false}, SHIFT(513), + [916] = {.count = 1, .reusable = false}, SHIFT(512), + [918] = {.count = 1, .reusable = false}, SHIFT(511), + [920] = {.count = 1, .reusable = true}, SHIFT(516), + [922] = {.count = 1, .reusable = false}, SHIFT(516), + [924] = {.count = 1, .reusable = true}, SHIFT(515), + [926] = {.count = 1, .reusable = true}, SHIFT(517), + [928] = {.count = 1, .reusable = false}, SHIFT(518), + [930] = {.count = 1, .reusable = false}, SHIFT(519), + [932] = {.count = 1, .reusable = true}, SHIFT(520), + [934] = {.count = 1, .reusable = true}, SHIFT(521), + [936] = {.count = 1, .reusable = true}, SHIFT(522), + [938] = {.count = 1, .reusable = true}, SHIFT(523), + [940] = {.count = 1, .reusable = true}, SHIFT(524), + [942] = {.count = 1, .reusable = true}, SHIFT(525), + [944] = {.count = 1, .reusable = false}, SHIFT(526), + [946] = {.count = 1, .reusable = false}, SHIFT(527), + [948] = {.count = 1, .reusable = true}, SHIFT(528), + [950] = {.count = 1, .reusable = true}, SHIFT(518), + [952] = {.count = 1, .reusable = false}, SHIFT(524), + [954] = {.count = 1, .reusable = true}, SHIFT(529), + [956] = {.count = 1, .reusable = true}, SHIFT(532), + [958] = {.count = 1, .reusable = false}, REDUCE(sym_namespace_definition, 2), + [960] = {.count = 1, .reusable = true}, REDUCE(sym_namespace_definition, 2), + [962] = {.count = 1, .reusable = true}, SHIFT(535), + [964] = {.count = 1, .reusable = false}, SHIFT(536), + [966] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [968] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [970] = {.count = 1, .reusable = true}, SHIFT(539), + [972] = {.count = 1, .reusable = true}, SHIFT(540), + [974] = {.count = 1, .reusable = true}, SHIFT(541), + [976] = {.count = 1, .reusable = true}, SHIFT(542), + [978] = {.count = 1, .reusable = false}, SHIFT(545), [980] = {.count = 1, .reusable = true}, SHIFT(546), - [982] = {.count = 1, .reusable = true}, SHIFT(549), - [984] = {.count = 1, .reusable = true}, SHIFT(550), - [986] = {.count = 1, .reusable = false}, SHIFT(551), - [988] = {.count = 1, .reusable = true}, SHIFT(552), - [990] = {.count = 1, .reusable = false}, SHIFT(547), - [992] = {.count = 1, .reusable = false}, SHIFT(548), - [994] = {.count = 1, .reusable = true}, SHIFT(553), - [996] = {.count = 1, .reusable = true}, SHIFT(556), - [998] = {.count = 1, .reusable = true}, SHIFT(555), - [1000] = {.count = 1, .reusable = false}, SHIFT(556), - [1002] = {.count = 1, .reusable = true}, SHIFT(557), - [1004] = {.count = 1, .reusable = false}, SHIFT(559), - [1006] = {.count = 1, .reusable = true}, SHIFT(559), - [1008] = {.count = 1, .reusable = false}, SHIFT(562), - [1010] = {.count = 1, .reusable = false}, SHIFT(561), - [1012] = {.count = 1, .reusable = false}, SHIFT(560), - [1014] = {.count = 1, .reusable = true}, SHIFT(565), - [1016] = {.count = 1, .reusable = false}, SHIFT(565), - [1018] = {.count = 1, .reusable = true}, SHIFT(564), + [982] = {.count = 1, .reusable = false}, SHIFT(547), + [984] = {.count = 1, .reusable = true}, SHIFT(547), + [986] = {.count = 1, .reusable = true}, SHIFT(550), + [988] = {.count = 1, .reusable = true}, SHIFT(551), + [990] = {.count = 1, .reusable = false}, SHIFT(552), + [992] = {.count = 1, .reusable = true}, SHIFT(553), + [994] = {.count = 1, .reusable = false}, SHIFT(548), + [996] = {.count = 1, .reusable = false}, SHIFT(549), + [998] = {.count = 1, .reusable = true}, SHIFT(554), + [1000] = {.count = 1, .reusable = true}, SHIFT(557), + [1002] = {.count = 1, .reusable = true}, SHIFT(556), + [1004] = {.count = 1, .reusable = false}, SHIFT(557), + [1006] = {.count = 1, .reusable = true}, SHIFT(558), + [1008] = {.count = 1, .reusable = false}, SHIFT(560), + [1010] = {.count = 1, .reusable = true}, SHIFT(560), + [1012] = {.count = 1, .reusable = false}, SHIFT(563), + [1014] = {.count = 1, .reusable = false}, SHIFT(562), + [1016] = {.count = 1, .reusable = false}, SHIFT(561), + [1018] = {.count = 1, .reusable = true}, SHIFT(566), [1020] = {.count = 1, .reusable = false}, SHIFT(566), - [1022] = {.count = 1, .reusable = false}, SHIFT(146), - [1024] = {.count = 1, .reusable = true}, SHIFT(567), - [1026] = {.count = 1, .reusable = true}, SHIFT(568), - [1028] = {.count = 1, .reusable = false}, SHIFT(569), - [1030] = {.count = 1, .reusable = false}, SHIFT(570), - [1032] = {.count = 1, .reusable = true}, SHIFT(571), - [1034] = {.count = 1, .reusable = true}, SHIFT(572), - [1036] = {.count = 1, .reusable = true}, SHIFT(573), - [1038] = {.count = 1, .reusable = true}, SHIFT(574), - [1040] = {.count = 1, .reusable = true}, SHIFT(575), - [1042] = {.count = 1, .reusable = false}, SHIFT(576), - [1044] = {.count = 1, .reusable = false}, SHIFT(577), - [1046] = {.count = 1, .reusable = true}, SHIFT(578), - [1048] = {.count = 1, .reusable = true}, SHIFT(569), - [1050] = {.count = 1, .reusable = false}, SHIFT(574), - [1052] = {.count = 1, .reusable = true}, SHIFT(579), - [1054] = {.count = 1, .reusable = true}, SHIFT(580), - [1056] = {.count = 1, .reusable = true}, SHIFT(581), - [1058] = {.count = 1, .reusable = true}, SHIFT(583), - [1060] = {.count = 1, .reusable = false}, SHIFT(585), - [1062] = {.count = 1, .reusable = true}, SHIFT(3), - [1064] = {.count = 1, .reusable = true}, SHIFT(586), - [1066] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), - [1068] = {.count = 1, .reusable = true}, SHIFT(585), - [1070] = {.count = 1, .reusable = false}, SHIFT(590), - [1072] = {.count = 1, .reusable = false}, SHIFT(591), - [1074] = {.count = 1, .reusable = false}, SHIFT(364), - [1076] = {.count = 1, .reusable = false}, SHIFT(592), - [1078] = {.count = 1, .reusable = false}, SHIFT(593), - [1080] = {.count = 1, .reusable = true}, REDUCE(sym_virtual_specifier, 1), - [1082] = {.count = 1, .reusable = false}, REDUCE(sym_virtual_specifier, 1), - [1084] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [1086] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [1088] = {.count = 1, .reusable = false}, SHIFT(96), - [1090] = {.count = 1, .reusable = false}, SHIFT(619), - [1092] = {.count = 1, .reusable = false}, SHIFT(622), - [1094] = {.count = 1, .reusable = true}, SHIFT(599), - [1096] = {.count = 1, .reusable = false}, SHIFT(600), - [1098] = {.count = 1, .reusable = false}, SHIFT(601), - [1100] = {.count = 1, .reusable = false}, SHIFT(602), - [1102] = {.count = 1, .reusable = true}, SHIFT(603), - [1104] = {.count = 1, .reusable = false}, SHIFT(604), - [1106] = {.count = 1, .reusable = false}, SHIFT(605), - [1108] = {.count = 1, .reusable = false}, SHIFT(606), - [1110] = {.count = 1, .reusable = false}, SHIFT(607), - [1112] = {.count = 1, .reusable = true}, SHIFT(614), + [1022] = {.count = 1, .reusable = true}, SHIFT(565), + [1024] = {.count = 1, .reusable = false}, SHIFT(567), + [1026] = {.count = 1, .reusable = false}, SHIFT(147), + [1028] = {.count = 1, .reusable = true}, SHIFT(568), + [1030] = {.count = 1, .reusable = true}, SHIFT(569), + [1032] = {.count = 1, .reusable = false}, SHIFT(570), + [1034] = {.count = 1, .reusable = false}, SHIFT(571), + [1036] = {.count = 1, .reusable = true}, SHIFT(572), + [1038] = {.count = 1, .reusable = true}, SHIFT(573), + [1040] = {.count = 1, .reusable = true}, SHIFT(574), + [1042] = {.count = 1, .reusable = true}, SHIFT(575), + [1044] = {.count = 1, .reusable = true}, SHIFT(576), + [1046] = {.count = 1, .reusable = false}, SHIFT(577), + [1048] = {.count = 1, .reusable = false}, SHIFT(578), + [1050] = {.count = 1, .reusable = true}, SHIFT(579), + [1052] = {.count = 1, .reusable = true}, SHIFT(570), + [1054] = {.count = 1, .reusable = false}, SHIFT(575), + [1056] = {.count = 1, .reusable = true}, SHIFT(580), + [1058] = {.count = 1, .reusable = true}, SHIFT(581), + [1060] = {.count = 1, .reusable = true}, SHIFT(582), + [1062] = {.count = 1, .reusable = true}, SHIFT(584), + [1064] = {.count = 1, .reusable = false}, SHIFT(585), + [1066] = {.count = 1, .reusable = false}, SHIFT(328), + [1068] = {.count = 1, .reusable = false}, SHIFT(587), + [1070] = {.count = 1, .reusable = true}, SHIFT(3), + [1072] = {.count = 1, .reusable = true}, SHIFT(588), + [1074] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), + [1076] = {.count = 1, .reusable = true}, SHIFT(587), + [1078] = {.count = 1, .reusable = false}, SHIFT(592), + [1080] = {.count = 1, .reusable = false}, SHIFT(593), + [1082] = {.count = 1, .reusable = false}, SHIFT(594), + [1084] = {.count = 1, .reusable = true}, REDUCE(sym_virtual_specifier, 1), + [1086] = {.count = 1, .reusable = false}, REDUCE(sym_virtual_specifier, 1), + [1088] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [1090] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [1092] = {.count = 1, .reusable = false}, SHIFT(97), + [1094] = {.count = 1, .reusable = false}, SHIFT(620), + [1096] = {.count = 1, .reusable = false}, SHIFT(621), + [1098] = {.count = 1, .reusable = true}, SHIFT(600), + [1100] = {.count = 1, .reusable = false}, SHIFT(601), + [1102] = {.count = 1, .reusable = false}, SHIFT(602), + [1104] = {.count = 1, .reusable = false}, SHIFT(603), + [1106] = {.count = 1, .reusable = true}, SHIFT(604), + [1108] = {.count = 1, .reusable = false}, SHIFT(605), + [1110] = {.count = 1, .reusable = false}, SHIFT(606), + [1112] = {.count = 1, .reusable = false}, SHIFT(607), [1114] = {.count = 1, .reusable = false}, SHIFT(608), - [1116] = {.count = 1, .reusable = false}, SHIFT(609), - [1118] = {.count = 1, .reusable = false}, SHIFT(610), - [1120] = {.count = 1, .reusable = false}, SHIFT(611), - [1122] = {.count = 1, .reusable = false}, SHIFT(612), - [1124] = {.count = 1, .reusable = true}, SHIFT(156), - [1126] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), - [1128] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), - [1130] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_identifier, 2), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), - [1133] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_identifier, 2), - [1135] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), - [1137] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), - [1139] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_namespace_identifier, 2, .alias_sequence_id = 3), - [1141] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_identifier, 2), - [1143] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 2), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), - [1146] = {.count = 1, .reusable = true}, SHIFT(626), - [1148] = {.count = 1, .reusable = true}, SHIFT(628), - [1150] = {.count = 1, .reusable = false}, SHIFT(628), + [1116] = {.count = 1, .reusable = true}, SHIFT(614), + [1118] = {.count = 1, .reusable = false}, SHIFT(609), + [1120] = {.count = 1, .reusable = false}, SHIFT(279), + [1122] = {.count = 1, .reusable = false}, SHIFT(610), + [1124] = {.count = 1, .reusable = false}, SHIFT(611), + [1126] = {.count = 1, .reusable = false}, SHIFT(612), + [1128] = {.count = 1, .reusable = false}, SHIFT(613), + [1130] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), + [1132] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), + [1134] = {.count = 1, .reusable = true}, SHIFT(157), + [1136] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_identifier, 2), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), + [1139] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_identifier, 2), + [1141] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), + [1143] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), + [1145] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_namespace_identifier, 2, .alias_sequence_id = 3), + [1147] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_identifier, 2), + [1149] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 2), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), [1152] = {.count = 1, .reusable = true}, SHIFT(627), - [1154] = {.count = 1, .reusable = false}, SHIFT(629), - [1156] = {.count = 1, .reusable = true}, SHIFT(630), - [1158] = {.count = 1, .reusable = true}, SHIFT(632), - [1160] = {.count = 1, .reusable = true}, SHIFT(633), - [1162] = {.count = 1, .reusable = true}, SHIFT(634), - [1164] = {.count = 1, .reusable = true}, SHIFT(635), - [1166] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), - [1168] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), + [1154] = {.count = 1, .reusable = true}, SHIFT(629), + [1156] = {.count = 1, .reusable = false}, SHIFT(629), + [1158] = {.count = 1, .reusable = true}, SHIFT(628), + [1160] = {.count = 1, .reusable = false}, SHIFT(630), + [1162] = {.count = 1, .reusable = true}, SHIFT(631), + [1164] = {.count = 1, .reusable = true}, SHIFT(633), + [1166] = {.count = 1, .reusable = true}, SHIFT(634), + [1168] = {.count = 1, .reusable = true}, SHIFT(635), [1170] = {.count = 1, .reusable = true}, SHIFT(636), - [1172] = {.count = 1, .reusable = false}, SHIFT(637), - [1174] = {.count = 1, .reusable = true}, SHIFT(640), - [1176] = {.count = 1, .reusable = false}, SHIFT(640), - [1178] = {.count = 1, .reusable = true}, SHIFT(643), - [1180] = {.count = 1, .reusable = false}, SHIFT(643), - [1182] = {.count = 1, .reusable = false}, SHIFT(644), - [1184] = {.count = 1, .reusable = false}, SHIFT(655), - [1186] = {.count = 1, .reusable = false}, SHIFT(654), - [1188] = {.count = 1, .reusable = true}, SHIFT(647), - [1190] = {.count = 1, .reusable = false}, SHIFT(649), - [1192] = {.count = 1, .reusable = false}, SHIFT(650), - [1194] = {.count = 1, .reusable = false}, SHIFT(645), - [1196] = {.count = 1, .reusable = false}, SHIFT(646), - [1198] = {.count = 1, .reusable = false}, SHIFT(648), - [1200] = {.count = 1, .reusable = true}, SHIFT(658), - [1202] = {.count = 1, .reusable = false}, SHIFT(658), - [1204] = {.count = 1, .reusable = true}, SHIFT(657), - [1206] = {.count = 1, .reusable = true}, SHIFT(660), + [1172] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), + [1174] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), + [1176] = {.count = 1, .reusable = true}, SHIFT(637), + [1178] = {.count = 1, .reusable = false}, SHIFT(638), + [1180] = {.count = 1, .reusable = true}, SHIFT(641), + [1182] = {.count = 1, .reusable = false}, SHIFT(641), + [1184] = {.count = 1, .reusable = true}, SHIFT(644), + [1186] = {.count = 1, .reusable = false}, SHIFT(644), + [1188] = {.count = 1, .reusable = false}, SHIFT(645), + [1190] = {.count = 1, .reusable = false}, SHIFT(653), + [1192] = {.count = 1, .reusable = false}, SHIFT(652), + [1194] = {.count = 1, .reusable = true}, SHIFT(648), + [1196] = {.count = 1, .reusable = false}, SHIFT(650), + [1198] = {.count = 1, .reusable = false}, SHIFT(651), + [1200] = {.count = 1, .reusable = false}, SHIFT(646), + [1202] = {.count = 1, .reusable = false}, SHIFT(647), + [1204] = {.count = 1, .reusable = false}, SHIFT(649), + [1206] = {.count = 1, .reusable = true}, SHIFT(659), [1208] = {.count = 1, .reusable = false}, SHIFT(659), - [1210] = {.count = 1, .reusable = false}, SHIFT(661), - [1212] = {.count = 1, .reusable = true}, SHIFT(662), - [1214] = {.count = 1, .reusable = true}, SHIFT(663), - [1216] = {.count = 1, .reusable = false}, SHIFT(664), - [1218] = {.count = 1, .reusable = true}, SHIFT(665), - [1220] = {.count = 1, .reusable = false}, SHIFT(665), - [1222] = {.count = 1, .reusable = true}, SHIFT(667), + [1210] = {.count = 1, .reusable = true}, SHIFT(658), + [1212] = {.count = 1, .reusable = true}, SHIFT(661), + [1214] = {.count = 1, .reusable = false}, SHIFT(660), + [1216] = {.count = 1, .reusable = false}, SHIFT(662), + [1218] = {.count = 1, .reusable = true}, SHIFT(663), + [1220] = {.count = 1, .reusable = true}, SHIFT(664), + [1222] = {.count = 1, .reusable = false}, SHIFT(665), [1224] = {.count = 1, .reusable = true}, SHIFT(666), - [1226] = {.count = 1, .reusable = false}, SHIFT(667), - [1228] = {.count = 1, .reusable = true}, SHIFT(669), - [1230] = {.count = 1, .reusable = false}, SHIFT(669), + [1226] = {.count = 1, .reusable = false}, SHIFT(666), + [1228] = {.count = 1, .reusable = true}, SHIFT(668), + [1230] = {.count = 1, .reusable = true}, SHIFT(667), [1232] = {.count = 1, .reusable = false}, SHIFT(668), - [1234] = {.count = 1, .reusable = true}, SHIFT(672), - [1236] = {.count = 1, .reusable = true}, SHIFT(670), - [1238] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(671), - [1241] = {.count = 1, .reusable = true}, SHIFT(675), - [1243] = {.count = 1, .reusable = false}, SHIFT(675), - [1245] = {.count = 1, .reusable = true}, SHIFT(676), - [1247] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [1249] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [1251] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [1253] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [1255] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), - [1257] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), - [1259] = {.count = 1, .reusable = true}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [1261] = {.count = 1, .reusable = false}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [1263] = {.count = 1, .reusable = true}, SHIFT(702), - [1265] = {.count = 1, .reusable = false}, SHIFT(702), - [1267] = {.count = 1, .reusable = true}, SHIFT(701), - [1269] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(96), - [1272] = {.count = 1, .reusable = true}, SHIFT(704), - [1274] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(96), - [1277] = {.count = 1, .reusable = false}, SHIFT(705), - [1279] = {.count = 1, .reusable = true}, SHIFT(706), - [1281] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 2), - [1283] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 2), - [1285] = {.count = 1, .reusable = true}, SHIFT(707), - [1287] = {.count = 1, .reusable = false}, SHIFT(710), - [1289] = {.count = 1, .reusable = true}, SHIFT(711), - [1291] = {.count = 1, .reusable = true}, SHIFT(712), - [1293] = {.count = 1, .reusable = false}, SHIFT(712), - [1295] = {.count = 1, .reusable = true}, SHIFT(715), - [1297] = {.count = 1, .reusable = true}, SHIFT(717), - [1299] = {.count = 1, .reusable = true}, SHIFT(723), - [1301] = {.count = 1, .reusable = false}, SHIFT(723), - [1303] = {.count = 1, .reusable = true}, SHIFT(719), - [1305] = {.count = 1, .reusable = false}, SHIFT(720), - [1307] = {.count = 1, .reusable = true}, SHIFT(721), - [1309] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), - [1311] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), - [1313] = {.count = 1, .reusable = true}, SHIFT(729), - [1315] = {.count = 1, .reusable = false}, SHIFT(728), - [1317] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [1319] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [1321] = {.count = 1, .reusable = true}, SHIFT(731), - [1323] = {.count = 1, .reusable = false}, SHIFT(730), - [1325] = {.count = 1, .reusable = true}, SHIFT(732), - [1327] = {.count = 1, .reusable = false}, SHIFT(732), - [1329] = {.count = 1, .reusable = true}, SHIFT(733), - [1331] = {.count = 1, .reusable = false}, SHIFT(733), - [1333] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_default_capture, 1), - [1335] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 2), - [1337] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 2), - [1339] = {.count = 1, .reusable = true}, SHIFT(737), - [1341] = {.count = 1, .reusable = false}, SHIFT(736), - [1343] = {.count = 1, .reusable = false}, SHIFT(738), - [1345] = {.count = 1, .reusable = true}, SHIFT(739), - [1347] = {.count = 1, .reusable = true}, SHIFT(740), - [1349] = {.count = 1, .reusable = false}, SHIFT(741), - [1351] = {.count = 1, .reusable = true}, SHIFT(742), - [1353] = {.count = 1, .reusable = false}, SHIFT(742), - [1355] = {.count = 1, .reusable = true}, SHIFT(755), - [1357] = {.count = 1, .reusable = false}, SHIFT(743), - [1359] = {.count = 1, .reusable = true}, SHIFT(744), - [1361] = {.count = 1, .reusable = false}, SHIFT(755), - [1363] = {.count = 1, .reusable = true}, SHIFT(743), - [1365] = {.count = 1, .reusable = true}, SHIFT(745), - [1367] = {.count = 1, .reusable = true}, SHIFT(746), - [1369] = {.count = 1, .reusable = true}, SHIFT(747), - [1371] = {.count = 1, .reusable = false}, SHIFT(748), - [1373] = {.count = 1, .reusable = true}, SHIFT(749), - [1375] = {.count = 1, .reusable = false}, SHIFT(750), - [1377] = {.count = 1, .reusable = false}, SHIFT(751), - [1379] = {.count = 1, .reusable = true}, SHIFT(752), - [1381] = {.count = 1, .reusable = false}, SHIFT(753), - [1383] = {.count = 1, .reusable = true}, SHIFT(762), - [1385] = {.count = 1, .reusable = true}, SHIFT(761), - [1387] = {.count = 1, .reusable = false}, SHIFT(762), - [1389] = {.count = 1, .reusable = true}, SHIFT(763), - [1391] = {.count = 1, .reusable = false}, SHIFT(763), - [1393] = {.count = 1, .reusable = true}, SHIFT(767), - [1395] = {.count = 1, .reusable = true}, SHIFT(764), - [1397] = {.count = 1, .reusable = true}, SHIFT(765), - [1399] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(766), - [1402] = {.count = 1, .reusable = false}, SHIFT(764), - [1404] = {.count = 1, .reusable = false}, SHIFT(770), - [1406] = {.count = 1, .reusable = false}, SHIFT(781), - [1408] = {.count = 1, .reusable = false}, SHIFT(780), - [1410] = {.count = 1, .reusable = true}, SHIFT(773), - [1412] = {.count = 1, .reusable = false}, SHIFT(775), - [1414] = {.count = 1, .reusable = false}, SHIFT(776), - [1416] = {.count = 1, .reusable = false}, SHIFT(771), - [1418] = {.count = 1, .reusable = false}, SHIFT(772), - [1420] = {.count = 1, .reusable = false}, SHIFT(774), - [1422] = {.count = 1, .reusable = true}, SHIFT(783), - [1424] = {.count = 1, .reusable = false}, SHIFT(783), - [1426] = {.count = 1, .reusable = true}, SHIFT(785), - [1428] = {.count = 1, .reusable = false}, SHIFT(785), - [1430] = {.count = 1, .reusable = true}, SHIFT(784), - [1432] = {.count = 1, .reusable = true}, SHIFT(786), - [1434] = {.count = 1, .reusable = true}, SHIFT(788), - [1436] = {.count = 1, .reusable = true}, SHIFT(789), - [1438] = {.count = 1, .reusable = false}, SHIFT(790), - [1440] = {.count = 1, .reusable = false}, SHIFT(791), - [1442] = {.count = 1, .reusable = true}, SHIFT(804), - [1444] = {.count = 1, .reusable = true}, SHIFT(793), - [1446] = {.count = 1, .reusable = true}, SHIFT(794), - [1448] = {.count = 1, .reusable = true}, SHIFT(795), - [1450] = {.count = 1, .reusable = true}, SHIFT(796), - [1452] = {.count = 1, .reusable = true}, SHIFT(797), - [1454] = {.count = 1, .reusable = true}, SHIFT(798), - [1456] = {.count = 1, .reusable = false}, SHIFT(799), - [1458] = {.count = 1, .reusable = true}, SHIFT(800), - [1460] = {.count = 1, .reusable = false}, SHIFT(801), - [1462] = {.count = 1, .reusable = true}, SHIFT(802), - [1464] = {.count = 1, .reusable = true}, SHIFT(790), - [1466] = {.count = 1, .reusable = false}, SHIFT(797), - [1468] = {.count = 1, .reusable = true}, SHIFT(803), - [1470] = {.count = 1, .reusable = true}, SHIFT(792), - [1472] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 2, .alias_sequence_id = 2), - [1474] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 2, .alias_sequence_id = 2), - [1476] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 2), - [1478] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 2), - [1480] = {.count = 1, .reusable = true}, SHIFT(826), - [1482] = {.count = 1, .reusable = false}, SHIFT(816), - [1484] = {.count = 1, .reusable = true}, SHIFT(817), - [1486] = {.count = 1, .reusable = false}, SHIFT(826), - [1488] = {.count = 1, .reusable = true}, SHIFT(818), - [1490] = {.count = 1, .reusable = true}, SHIFT(819), - [1492] = {.count = 1, .reusable = true}, SHIFT(820), - [1494] = {.count = 1, .reusable = false}, SHIFT(821), - [1496] = {.count = 1, .reusable = true}, SHIFT(822), - [1498] = {.count = 1, .reusable = false}, SHIFT(823), - [1500] = {.count = 1, .reusable = false}, SHIFT(824), - [1502] = {.count = 1, .reusable = true}, SHIFT(816), - [1504] = {.count = 1, .reusable = false}, SHIFT(825), - [1506] = {.count = 1, .reusable = true}, SHIFT(829), - [1508] = {.count = 1, .reusable = true}, SHIFT(830), - [1510] = {.count = 1, .reusable = false}, SHIFT(832), - [1512] = {.count = 1, .reusable = true}, SHIFT(833), - [1514] = {.count = 1, .reusable = true}, SHIFT(835), - [1516] = {.count = 1, .reusable = true}, SHIFT(836), - [1518] = {.count = 1, .reusable = true}, SHIFT(838), - [1520] = {.count = 1, .reusable = true}, SHIFT(839), - [1522] = {.count = 1, .reusable = true}, SHIFT(842), - [1524] = {.count = 1, .reusable = false}, SHIFT(842), - [1526] = {.count = 1, .reusable = true}, SHIFT(841), - [1528] = {.count = 1, .reusable = true}, SHIFT(844), - [1530] = {.count = 1, .reusable = true}, SHIFT(845), - [1532] = {.count = 1, .reusable = false}, SHIFT(846), - [1534] = {.count = 1, .reusable = false}, SHIFT(847), - [1536] = {.count = 1, .reusable = false}, SHIFT(855), - [1538] = {.count = 1, .reusable = false}, SHIFT(860), - [1540] = {.count = 1, .reusable = true}, SHIFT(848), - [1542] = {.count = 1, .reusable = true}, SHIFT(849), - [1544] = {.count = 1, .reusable = false}, SHIFT(850), - [1546] = {.count = 1, .reusable = false}, SHIFT(851), - [1548] = {.count = 1, .reusable = false}, SHIFT(852), - [1550] = {.count = 1, .reusable = false}, SHIFT(853), - [1552] = {.count = 1, .reusable = true}, SHIFT(863), - [1554] = {.count = 1, .reusable = true}, SHIFT(865), - [1556] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [1559] = {.count = 1, .reusable = true}, SHIFT(866), - [1561] = {.count = 1, .reusable = true}, SHIFT(869), - [1563] = {.count = 1, .reusable = true}, SHIFT(870), - [1565] = {.count = 1, .reusable = false}, SHIFT(872), - [1567] = {.count = 1, .reusable = false}, SHIFT(874), - [1569] = {.count = 1, .reusable = false}, SHIFT(876), - [1571] = {.count = 1, .reusable = false}, SHIFT(879), - [1573] = {.count = 1, .reusable = false}, SHIFT(875), - [1575] = {.count = 1, .reusable = true}, SHIFT(881), - [1577] = {.count = 1, .reusable = true}, SHIFT(884), - [1579] = {.count = 1, .reusable = false}, SHIFT(884), - [1581] = {.count = 1, .reusable = true}, SHIFT(883), - [1583] = {.count = 1, .reusable = false}, SHIFT(885), - [1585] = {.count = 1, .reusable = false}, SHIFT(886), - [1587] = {.count = 1, .reusable = true}, SHIFT(887), - [1589] = {.count = 1, .reusable = true}, SHIFT(888), - [1591] = {.count = 1, .reusable = true}, SHIFT(889), - [1593] = {.count = 1, .reusable = false}, SHIFT(890), - [1595] = {.count = 1, .reusable = true}, SHIFT(891), - [1597] = {.count = 1, .reusable = false}, SHIFT(892), - [1599] = {.count = 1, .reusable = true}, SHIFT(886), - [1601] = {.count = 1, .reusable = false}, SHIFT(893), - [1603] = {.count = 1, .reusable = true}, SHIFT(896), - [1605] = {.count = 1, .reusable = true}, SHIFT(895), - [1607] = {.count = 1, .reusable = false}, SHIFT(896), - [1609] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [1611] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [1613] = {.count = 1, .reusable = false}, SHIFT(897), - [1615] = {.count = 1, .reusable = true}, SHIFT(897), - [1617] = {.count = 1, .reusable = false}, SHIFT(900), - [1619] = {.count = 1, .reusable = false}, SHIFT(899), - [1621] = {.count = 1, .reusable = false}, SHIFT(898), - [1623] = {.count = 1, .reusable = true}, SHIFT(902), - [1625] = {.count = 1, .reusable = false}, SHIFT(903), - [1627] = {.count = 1, .reusable = false}, SHIFT(904), - [1629] = {.count = 1, .reusable = true}, SHIFT(905), - [1631] = {.count = 1, .reusable = true}, SHIFT(906), - [1633] = {.count = 1, .reusable = true}, SHIFT(907), - [1635] = {.count = 1, .reusable = true}, SHIFT(908), - [1637] = {.count = 1, .reusable = false}, SHIFT(909), - [1639] = {.count = 1, .reusable = false}, SHIFT(910), - [1641] = {.count = 1, .reusable = true}, SHIFT(911), - [1643] = {.count = 1, .reusable = true}, SHIFT(903), - [1645] = {.count = 1, .reusable = false}, SHIFT(907), - [1647] = {.count = 1, .reusable = true}, SHIFT(912), - [1649] = {.count = 1, .reusable = true}, SHIFT(913), - [1651] = {.count = 1, .reusable = true}, REDUCE(sym_destructor_name, 2), - [1653] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [1655] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [1657] = {.count = 1, .reusable = false}, SHIFT(915), - [1659] = {.count = 1, .reusable = true}, SHIFT(917), - [1661] = {.count = 1, .reusable = true}, SHIFT(916), - [1663] = {.count = 1, .reusable = false}, SHIFT(919), - [1665] = {.count = 1, .reusable = true}, SHIFT(920), - [1667] = {.count = 1, .reusable = true}, SHIFT(921), - [1669] = {.count = 1, .reusable = false}, SHIFT(922), - [1671] = {.count = 1, .reusable = true}, SHIFT(923), - [1673] = {.count = 1, .reusable = true}, SHIFT(925), - [1675] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), - [1677] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), - [1679] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1681] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1683] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3), - [1686] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(26), - [1689] = {.count = 1, .reusable = true}, SHIFT(929), - [1691] = {.count = 1, .reusable = true}, SHIFT(930), - [1693] = {.count = 1, .reusable = true}, SHIFT(934), - [1695] = {.count = 1, .reusable = true}, SHIFT(935), - [1697] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 2), - [1699] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 2), - [1701] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [1703] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [1705] = {.count = 1, .reusable = false}, SHIFT(939), - [1707] = {.count = 1, .reusable = true}, SHIFT(938), - [1709] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 2), - [1711] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 2), - [1713] = {.count = 1, .reusable = true}, SHIFT(940), - [1715] = {.count = 1, .reusable = false}, SHIFT(940), - [1717] = {.count = 1, .reusable = true}, SHIFT(941), - [1719] = {.count = 1, .reusable = false}, SHIFT(941), - [1721] = {.count = 1, .reusable = true}, SHIFT(942), - [1723] = {.count = 1, .reusable = false}, SHIFT(942), - [1725] = {.count = 1, .reusable = true}, SHIFT(943), - [1727] = {.count = 1, .reusable = false}, SHIFT(943), - [1729] = {.count = 1, .reusable = true}, SHIFT(945), - [1731] = {.count = 1, .reusable = false}, SHIFT(945), - [1733] = {.count = 1, .reusable = true}, SHIFT(946), - [1735] = {.count = 1, .reusable = true}, SHIFT(947), - [1737] = {.count = 1, .reusable = true}, SHIFT(951), - [1739] = {.count = 1, .reusable = false}, SHIFT(951), - [1741] = {.count = 1, .reusable = true}, SHIFT(952), - [1743] = {.count = 1, .reusable = false}, SHIFT(952), - [1745] = {.count = 1, .reusable = true}, SHIFT(953), - [1747] = {.count = 1, .reusable = false}, SHIFT(953), - [1749] = {.count = 1, .reusable = true}, SHIFT(954), - [1751] = {.count = 1, .reusable = false}, SHIFT(954), - [1753] = {.count = 1, .reusable = true}, SHIFT(965), - [1755] = {.count = 1, .reusable = false}, SHIFT(955), - [1757] = {.count = 1, .reusable = true}, SHIFT(956), - [1759] = {.count = 1, .reusable = false}, SHIFT(965), - [1761] = {.count = 1, .reusable = true}, SHIFT(957), - [1763] = {.count = 1, .reusable = true}, SHIFT(958), - [1765] = {.count = 1, .reusable = true}, SHIFT(959), - [1767] = {.count = 1, .reusable = false}, SHIFT(960), - [1769] = {.count = 1, .reusable = true}, SHIFT(961), - [1771] = {.count = 1, .reusable = false}, SHIFT(962), - [1773] = {.count = 1, .reusable = false}, SHIFT(963), - [1775] = {.count = 1, .reusable = true}, SHIFT(955), - [1777] = {.count = 1, .reusable = false}, SHIFT(964), - [1779] = {.count = 1, .reusable = true}, SHIFT(968), - [1781] = {.count = 1, .reusable = false}, SHIFT(968), - [1783] = {.count = 1, .reusable = true}, SHIFT(979), - [1785] = {.count = 1, .reusable = false}, SHIFT(969), - [1787] = {.count = 1, .reusable = true}, SHIFT(970), - [1789] = {.count = 1, .reusable = false}, SHIFT(979), - [1791] = {.count = 1, .reusable = true}, SHIFT(971), - [1793] = {.count = 1, .reusable = true}, SHIFT(972), - [1795] = {.count = 1, .reusable = true}, SHIFT(973), - [1797] = {.count = 1, .reusable = false}, SHIFT(974), - [1799] = {.count = 1, .reusable = true}, SHIFT(975), - [1801] = {.count = 1, .reusable = false}, SHIFT(976), - [1803] = {.count = 1, .reusable = false}, SHIFT(977), - [1805] = {.count = 1, .reusable = true}, SHIFT(969), + [1234] = {.count = 1, .reusable = true}, SHIFT(670), + [1236] = {.count = 1, .reusable = false}, SHIFT(670), + [1238] = {.count = 1, .reusable = false}, SHIFT(669), + [1240] = {.count = 1, .reusable = true}, SHIFT(673), + [1242] = {.count = 1, .reusable = true}, SHIFT(671), + [1244] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(672), + [1247] = {.count = 1, .reusable = true}, SHIFT(676), + [1249] = {.count = 1, .reusable = false}, SHIFT(676), + [1251] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [1253] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [1255] = {.count = 1, .reusable = true}, SHIFT(694), + [1257] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [1259] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [1261] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), + [1263] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), + [1265] = {.count = 1, .reusable = true}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [1267] = {.count = 1, .reusable = false}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [1269] = {.count = 1, .reusable = true}, SHIFT(703), + [1271] = {.count = 1, .reusable = false}, SHIFT(703), + [1273] = {.count = 1, .reusable = true}, SHIFT(702), + [1275] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(97), + [1278] = {.count = 1, .reusable = true}, SHIFT(705), + [1280] = {.count = 1, .reusable = false}, SHIFT(706), + [1282] = {.count = 1, .reusable = true}, SHIFT(707), + [1284] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 2), + [1286] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 2), + [1288] = {.count = 1, .reusable = true}, SHIFT(708), + [1290] = {.count = 1, .reusable = false}, SHIFT(711), + [1292] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(97), + [1295] = {.count = 1, .reusable = true}, SHIFT(712), + [1297] = {.count = 1, .reusable = true}, SHIFT(713), + [1299] = {.count = 1, .reusable = false}, SHIFT(713), + [1301] = {.count = 1, .reusable = true}, SHIFT(716), + [1303] = {.count = 1, .reusable = true}, SHIFT(718), + [1305] = {.count = 1, .reusable = true}, SHIFT(723), + [1307] = {.count = 1, .reusable = false}, SHIFT(723), + [1309] = {.count = 1, .reusable = true}, SHIFT(720), + [1311] = {.count = 1, .reusable = false}, SHIFT(721), + [1313] = {.count = 1, .reusable = false}, SHIFT(68), + [1315] = {.count = 1, .reusable = true}, SHIFT(722), + [1317] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), + [1319] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), + [1321] = {.count = 1, .reusable = true}, SHIFT(730), + [1323] = {.count = 1, .reusable = false}, SHIFT(729), + [1325] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [1327] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [1329] = {.count = 1, .reusable = true}, SHIFT(732), + [1331] = {.count = 1, .reusable = false}, SHIFT(731), + [1333] = {.count = 1, .reusable = true}, SHIFT(733), + [1335] = {.count = 1, .reusable = false}, SHIFT(733), + [1337] = {.count = 1, .reusable = true}, SHIFT(734), + [1339] = {.count = 1, .reusable = false}, SHIFT(734), + [1341] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_default_capture, 1), + [1343] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 2), + [1345] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 2), + [1347] = {.count = 1, .reusable = true}, SHIFT(738), + [1349] = {.count = 1, .reusable = false}, SHIFT(737), + [1351] = {.count = 1, .reusable = false}, SHIFT(739), + [1353] = {.count = 1, .reusable = true}, SHIFT(740), + [1355] = {.count = 1, .reusable = true}, SHIFT(741), + [1357] = {.count = 1, .reusable = false}, SHIFT(742), + [1359] = {.count = 1, .reusable = true}, SHIFT(743), + [1361] = {.count = 1, .reusable = false}, SHIFT(743), + [1363] = {.count = 1, .reusable = true}, SHIFT(755), + [1365] = {.count = 1, .reusable = false}, SHIFT(744), + [1367] = {.count = 1, .reusable = true}, SHIFT(745), + [1369] = {.count = 1, .reusable = false}, SHIFT(755), + [1371] = {.count = 1, .reusable = true}, SHIFT(744), + [1373] = {.count = 1, .reusable = true}, SHIFT(746), + [1375] = {.count = 1, .reusable = true}, SHIFT(747), + [1377] = {.count = 1, .reusable = true}, SHIFT(748), + [1379] = {.count = 1, .reusable = false}, SHIFT(749), + [1381] = {.count = 1, .reusable = true}, SHIFT(750), + [1383] = {.count = 1, .reusable = false}, SHIFT(751), + [1385] = {.count = 1, .reusable = false}, SHIFT(752), + [1387] = {.count = 1, .reusable = true}, SHIFT(753), + [1389] = {.count = 1, .reusable = false}, SHIFT(754), + [1391] = {.count = 1, .reusable = true}, SHIFT(763), + [1393] = {.count = 1, .reusable = true}, SHIFT(762), + [1395] = {.count = 1, .reusable = false}, SHIFT(763), + [1397] = {.count = 1, .reusable = true}, SHIFT(764), + [1399] = {.count = 1, .reusable = false}, SHIFT(764), + [1401] = {.count = 2, .reusable = true}, REDUCE(sym__expression, 1), SHIFT(770), + [1404] = {.count = 1, .reusable = true}, SHIFT(769), + [1406] = {.count = 1, .reusable = true}, SHIFT(765), + [1408] = {.count = 1, .reusable = true}, SHIFT(767), + [1410] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(768), + [1413] = {.count = 2, .reusable = true}, REDUCE(sym__expression, 1), SHIFT(766), + [1416] = {.count = 1, .reusable = false}, SHIFT(765), + [1418] = {.count = 1, .reusable = false}, SHIFT(774), + [1420] = {.count = 1, .reusable = false}, SHIFT(782), + [1422] = {.count = 1, .reusable = false}, SHIFT(781), + [1424] = {.count = 1, .reusable = true}, SHIFT(777), + [1426] = {.count = 1, .reusable = false}, SHIFT(779), + [1428] = {.count = 1, .reusable = false}, SHIFT(780), + [1430] = {.count = 1, .reusable = false}, SHIFT(775), + [1432] = {.count = 1, .reusable = false}, SHIFT(776), + [1434] = {.count = 1, .reusable = false}, SHIFT(778), + [1436] = {.count = 1, .reusable = true}, SHIFT(787), + [1438] = {.count = 1, .reusable = false}, SHIFT(787), + [1440] = {.count = 1, .reusable = true}, SHIFT(789), + [1442] = {.count = 1, .reusable = false}, SHIFT(789), + [1444] = {.count = 1, .reusable = true}, SHIFT(788), + [1446] = {.count = 1, .reusable = true}, SHIFT(790), + [1448] = {.count = 1, .reusable = true}, SHIFT(791), + [1450] = {.count = 1, .reusable = false}, SHIFT(792), + [1452] = {.count = 1, .reusable = false}, SHIFT(793), + [1454] = {.count = 1, .reusable = true}, SHIFT(806), + [1456] = {.count = 1, .reusable = true}, SHIFT(795), + [1458] = {.count = 1, .reusable = true}, SHIFT(796), + [1460] = {.count = 1, .reusable = true}, SHIFT(797), + [1462] = {.count = 1, .reusable = true}, SHIFT(798), + [1464] = {.count = 1, .reusable = true}, SHIFT(799), + [1466] = {.count = 1, .reusable = true}, SHIFT(800), + [1468] = {.count = 1, .reusable = false}, SHIFT(801), + [1470] = {.count = 1, .reusable = true}, SHIFT(802), + [1472] = {.count = 1, .reusable = false}, SHIFT(803), + [1474] = {.count = 1, .reusable = true}, SHIFT(804), + [1476] = {.count = 1, .reusable = true}, SHIFT(792), + [1478] = {.count = 1, .reusable = false}, SHIFT(799), + [1480] = {.count = 1, .reusable = true}, SHIFT(805), + [1482] = {.count = 1, .reusable = true}, SHIFT(794), + [1484] = {.count = 1, .reusable = true}, SHIFT(813), + [1486] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 2, .alias_sequence_id = 2), + [1488] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 2, .alias_sequence_id = 2), + [1490] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 2), + [1492] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 2), + [1494] = {.count = 1, .reusable = true}, SHIFT(830), + [1496] = {.count = 1, .reusable = false}, SHIFT(820), + [1498] = {.count = 1, .reusable = true}, SHIFT(821), + [1500] = {.count = 1, .reusable = false}, SHIFT(830), + [1502] = {.count = 1, .reusable = true}, SHIFT(822), + [1504] = {.count = 1, .reusable = true}, SHIFT(823), + [1506] = {.count = 1, .reusable = true}, SHIFT(824), + [1508] = {.count = 1, .reusable = false}, SHIFT(825), + [1510] = {.count = 1, .reusable = true}, SHIFT(826), + [1512] = {.count = 1, .reusable = false}, SHIFT(827), + [1514] = {.count = 1, .reusable = false}, SHIFT(828), + [1516] = {.count = 1, .reusable = true}, SHIFT(820), + [1518] = {.count = 1, .reusable = false}, SHIFT(829), + [1520] = {.count = 1, .reusable = true}, SHIFT(833), + [1522] = {.count = 1, .reusable = true}, SHIFT(834), + [1524] = {.count = 1, .reusable = false}, SHIFT(836), + [1526] = {.count = 1, .reusable = true}, SHIFT(837), + [1528] = {.count = 1, .reusable = true}, SHIFT(839), + [1530] = {.count = 1, .reusable = true}, SHIFT(840), + [1532] = {.count = 1, .reusable = true}, SHIFT(842), + [1534] = {.count = 1, .reusable = true}, SHIFT(843), + [1536] = {.count = 1, .reusable = true}, SHIFT(846), + [1538] = {.count = 1, .reusable = false}, SHIFT(846), + [1540] = {.count = 1, .reusable = true}, SHIFT(845), + [1542] = {.count = 1, .reusable = true}, SHIFT(848), + [1544] = {.count = 1, .reusable = true}, SHIFT(849), + [1546] = {.count = 1, .reusable = false}, SHIFT(850), + [1548] = {.count = 1, .reusable = false}, SHIFT(851), + [1550] = {.count = 1, .reusable = false}, SHIFT(858), + [1552] = {.count = 1, .reusable = false}, SHIFT(859), + [1554] = {.count = 1, .reusable = true}, SHIFT(852), + [1556] = {.count = 1, .reusable = true}, SHIFT(853), + [1558] = {.count = 1, .reusable = false}, SHIFT(854), + [1560] = {.count = 1, .reusable = false}, SHIFT(855), + [1562] = {.count = 1, .reusable = false}, SHIFT(856), + [1564] = {.count = 1, .reusable = false}, SHIFT(857), + [1566] = {.count = 1, .reusable = true}, SHIFT(867), + [1568] = {.count = 1, .reusable = true}, SHIFT(869), + [1570] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [1573] = {.count = 1, .reusable = true}, SHIFT(870), + [1575] = {.count = 1, .reusable = true}, SHIFT(872), + [1577] = {.count = 1, .reusable = false}, SHIFT(874), + [1579] = {.count = 1, .reusable = true}, SHIFT(875), + [1581] = {.count = 1, .reusable = true}, SHIFT(877), + [1583] = {.count = 1, .reusable = false}, SHIFT(878), + [1585] = {.count = 1, .reusable = true}, SHIFT(882), + [1587] = {.count = 1, .reusable = true}, SHIFT(885), + [1589] = {.count = 1, .reusable = false}, SHIFT(885), + [1591] = {.count = 1, .reusable = true}, SHIFT(884), + [1593] = {.count = 1, .reusable = false}, SHIFT(886), + [1595] = {.count = 1, .reusable = false}, SHIFT(887), + [1597] = {.count = 1, .reusable = true}, SHIFT(888), + [1599] = {.count = 1, .reusable = true}, SHIFT(889), + [1601] = {.count = 1, .reusable = true}, SHIFT(890), + [1603] = {.count = 1, .reusable = false}, SHIFT(891), + [1605] = {.count = 1, .reusable = true}, SHIFT(892), + [1607] = {.count = 1, .reusable = false}, SHIFT(893), + [1609] = {.count = 1, .reusable = true}, SHIFT(887), + [1611] = {.count = 1, .reusable = false}, SHIFT(894), + [1613] = {.count = 1, .reusable = true}, SHIFT(897), + [1615] = {.count = 1, .reusable = true}, SHIFT(896), + [1617] = {.count = 1, .reusable = false}, SHIFT(897), + [1619] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [1621] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [1623] = {.count = 1, .reusable = false}, SHIFT(898), + [1625] = {.count = 1, .reusable = true}, SHIFT(898), + [1627] = {.count = 1, .reusable = false}, SHIFT(901), + [1629] = {.count = 1, .reusable = false}, SHIFT(900), + [1631] = {.count = 1, .reusable = false}, SHIFT(899), + [1633] = {.count = 1, .reusable = true}, SHIFT(903), + [1635] = {.count = 1, .reusable = false}, SHIFT(904), + [1637] = {.count = 1, .reusable = false}, SHIFT(905), + [1639] = {.count = 1, .reusable = true}, SHIFT(906), + [1641] = {.count = 1, .reusable = true}, SHIFT(907), + [1643] = {.count = 1, .reusable = true}, SHIFT(908), + [1645] = {.count = 1, .reusable = true}, SHIFT(909), + [1647] = {.count = 1, .reusable = false}, SHIFT(910), + [1649] = {.count = 1, .reusable = false}, SHIFT(911), + [1651] = {.count = 1, .reusable = true}, SHIFT(912), + [1653] = {.count = 1, .reusable = true}, SHIFT(904), + [1655] = {.count = 1, .reusable = false}, SHIFT(908), + [1657] = {.count = 1, .reusable = true}, SHIFT(913), + [1659] = {.count = 1, .reusable = true}, SHIFT(914), + [1661] = {.count = 1, .reusable = true}, REDUCE(sym_destructor_name, 2), + [1663] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [1665] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [1667] = {.count = 1, .reusable = false}, SHIFT(916), + [1669] = {.count = 1, .reusable = true}, SHIFT(918), + [1671] = {.count = 1, .reusable = true}, SHIFT(917), + [1673] = {.count = 1, .reusable = false}, SHIFT(920), + [1675] = {.count = 1, .reusable = true}, SHIFT(921), + [1677] = {.count = 1, .reusable = true}, SHIFT(922), + [1679] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 2), + [1681] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 2), + [1683] = {.count = 1, .reusable = true}, REDUCE(sym_template_type, 2), + [1685] = {.count = 1, .reusable = false}, REDUCE(sym_template_type, 2), + [1687] = {.count = 1, .reusable = false}, REDUCE(aux_sym_function_definition_repeat1, 2), + [1689] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_definition_repeat1, 2), + [1691] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(15), + [1694] = {.count = 1, .reusable = true}, SHIFT(923), + [1696] = {.count = 1, .reusable = false}, SHIFT(928), + [1698] = {.count = 1, .reusable = false}, SHIFT(929), + [1700] = {.count = 1, .reusable = true}, SHIFT(925), + [1702] = {.count = 1, .reusable = false}, SHIFT(926), + [1704] = {.count = 1, .reusable = false}, SHIFT(317), + [1706] = {.count = 1, .reusable = true}, SHIFT(927), + [1708] = {.count = 1, .reusable = true}, SHIFT(949), + [1710] = {.count = 1, .reusable = false}, SHIFT(936), + [1712] = {.count = 1, .reusable = true}, SHIFT(937), + [1714] = {.count = 1, .reusable = false}, SHIFT(949), + [1716] = {.count = 1, .reusable = false}, SHIFT(938), + [1718] = {.count = 1, .reusable = true}, SHIFT(936), + [1720] = {.count = 1, .reusable = true}, SHIFT(940), + [1722] = {.count = 1, .reusable = true}, SHIFT(941), + [1724] = {.count = 1, .reusable = true}, SHIFT(942), + [1726] = {.count = 1, .reusable = false}, SHIFT(943), + [1728] = {.count = 1, .reusable = true}, SHIFT(944), + [1730] = {.count = 1, .reusable = false}, SHIFT(945), + [1732] = {.count = 1, .reusable = false}, SHIFT(946), + [1734] = {.count = 1, .reusable = false}, SHIFT(947), + [1736] = {.count = 1, .reusable = true}, SHIFT(948), + [1738] = {.count = 1, .reusable = true}, SHIFT(939), + [1740] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), + [1742] = {.count = 1, .reusable = true}, SHIFT(955), + [1744] = {.count = 1, .reusable = true}, SHIFT(954), + [1746] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 1), + [1748] = {.count = 1, .reusable = true}, SHIFT(958), + [1750] = {.count = 1, .reusable = false}, SHIFT(961), + [1752] = {.count = 1, .reusable = true}, SHIFT(960), + [1754] = {.count = 1, .reusable = true}, SHIFT(962), + [1756] = {.count = 1, .reusable = true}, SHIFT(963), + [1758] = {.count = 1, .reusable = true}, SHIFT(967), + [1760] = {.count = 1, .reusable = true}, SHIFT(968), + [1762] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 2), + [1764] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 2), + [1766] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [1768] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [1770] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [1772] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [1774] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), + [1776] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), + [1778] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [1780] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(330), + [1783] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [1785] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), + [1787] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), + [1789] = {.count = 1, .reusable = false}, SHIFT(972), + [1791] = {.count = 1, .reusable = true}, SHIFT(973), + [1793] = {.count = 1, .reusable = true}, SHIFT(976), + [1795] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1797] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1799] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3), + [1802] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(26), + [1805] = {.count = 1, .reusable = true}, SHIFT(978), [1807] = {.count = 1, .reusable = false}, SHIFT(978), - [1809] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [1811] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [1813] = {.count = 1, .reusable = true}, SHIFT(983), - [1815] = {.count = 1, .reusable = false}, SHIFT(983), - [1817] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [1819] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [1821] = {.count = 1, .reusable = false}, SHIFT(988), - [1823] = {.count = 1, .reusable = false}, SHIFT(990), + [1809] = {.count = 1, .reusable = true}, SHIFT(979), + [1811] = {.count = 1, .reusable = false}, SHIFT(979), + [1813] = {.count = 1, .reusable = true}, SHIFT(980), + [1815] = {.count = 1, .reusable = false}, SHIFT(980), + [1817] = {.count = 1, .reusable = true}, SHIFT(981), + [1819] = {.count = 1, .reusable = false}, SHIFT(981), + [1821] = {.count = 1, .reusable = true}, SHIFT(983), + [1823] = {.count = 1, .reusable = false}, SHIFT(983), [1825] = {.count = 1, .reusable = true}, SHIFT(984), - [1827] = {.count = 1, .reusable = false}, SHIFT(985), - [1829] = {.count = 1, .reusable = true}, SHIFT(986), - [1831] = {.count = 1, .reusable = true}, SHIFT(995), - [1833] = {.count = 1, .reusable = false}, SHIFT(995), - [1835] = {.count = 1, .reusable = false}, SHIFT(992), - [1837] = {.count = 1, .reusable = true}, SHIFT(994), - [1839] = {.count = 1, .reusable = true}, SHIFT(993), - [1841] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), - [1843] = {.count = 1, .reusable = true}, SHIFT(999), - [1845] = {.count = 1, .reusable = true}, SHIFT(157), - [1847] = {.count = 1, .reusable = true}, SHIFT(997), - [1849] = {.count = 1, .reusable = false}, SHIFT(997), - [1851] = {.count = 1, .reusable = true}, SHIFT(998), - [1853] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [1856] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(55), - [1859] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(55), - [1862] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [1865] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [1868] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [1871] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [1874] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), - [1877] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [1880] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), - [1883] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [1886] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [1889] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [1892] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), - [1895] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [1898] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(65), - [1901] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), - [1904] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), - [1907] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), - [1910] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), - [1913] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [1916] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), - [1919] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), - [1922] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(53), - [1925] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [1928] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), - [1931] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), - [1934] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [1937] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), - [1940] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), - [1943] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), - [1946] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [1949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [1952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [1955] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [1958] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(56), - [1961] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), - [1964] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [1967] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [1970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), - [1973] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), - [1976] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), - [1979] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), - [1982] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), - [1985] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), - [1988] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(41), - [1991] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), - [1994] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(43), - [1997] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(44), - [2000] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [2002] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(45), - [2005] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(46), - [2008] = {.count = 1, .reusable = false}, SHIFT(1000), - [2010] = {.count = 1, .reusable = true}, SHIFT(1000), - [2012] = {.count = 1, .reusable = true}, SHIFT(1001), - [2014] = {.count = 1, .reusable = true}, SHIFT(1004), - [2016] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [2018] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [2020] = {.count = 1, .reusable = false}, REDUCE(sym__declarator, 1), - [2022] = {.count = 1, .reusable = true}, SHIFT(1006), - [2024] = {.count = 1, .reusable = true}, SHIFT(1007), - [2026] = {.count = 1, .reusable = true}, SHIFT(1009), - [2028] = {.count = 1, .reusable = true}, SHIFT(1010), - [2030] = {.count = 1, .reusable = true}, SHIFT(1011), - [2032] = {.count = 1, .reusable = true}, SHIFT(1012), - [2034] = {.count = 1, .reusable = true}, SHIFT(1013), - [2036] = {.count = 1, .reusable = true}, REDUCE(sym_template_type, 2), - [2038] = {.count = 1, .reusable = false}, REDUCE(sym_template_type, 2), - [2040] = {.count = 1, .reusable = false}, REDUCE(aux_sym_function_definition_repeat1, 2), - [2042] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_definition_repeat1, 2), - [2044] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(15), - [2047] = {.count = 1, .reusable = true}, SHIFT(1018), - [2049] = {.count = 1, .reusable = false}, SHIFT(359), - [2051] = {.count = 1, .reusable = true}, SHIFT(1025), - [2053] = {.count = 1, .reusable = false}, SHIFT(1025), - [2055] = {.count = 1, .reusable = true}, SHIFT(1024), - [2057] = {.count = 1, .reusable = true}, SHIFT(1023), - [2059] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), - [2061] = {.count = 1, .reusable = true}, SHIFT(1030), - [2063] = {.count = 1, .reusable = true}, SHIFT(1028), - [2065] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 1), - [2067] = {.count = 1, .reusable = true}, SHIFT(1032), - [2069] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [2071] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [2073] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), - [2075] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), - [2077] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2079] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(366), - [2082] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2084] = {.count = 1, .reusable = true}, SHIFT(1034), - [2086] = {.count = 1, .reusable = true}, SHIFT(1035), - [2088] = {.count = 1, .reusable = false}, SHIFT(1036), - [2090] = {.count = 1, .reusable = false}, SHIFT(1037), - [2092] = {.count = 1, .reusable = true}, SHIFT(1038), - [2094] = {.count = 1, .reusable = true}, SHIFT(1039), - [2096] = {.count = 1, .reusable = true}, SHIFT(1040), + [1827] = {.count = 1, .reusable = true}, SHIFT(985), + [1829] = {.count = 1, .reusable = true}, SHIFT(989), + [1831] = {.count = 1, .reusable = false}, SHIFT(989), + [1833] = {.count = 1, .reusable = true}, SHIFT(990), + [1835] = {.count = 1, .reusable = false}, SHIFT(990), + [1837] = {.count = 1, .reusable = true}, SHIFT(991), + [1839] = {.count = 1, .reusable = false}, SHIFT(991), + [1841] = {.count = 1, .reusable = true}, SHIFT(992), + [1843] = {.count = 1, .reusable = false}, SHIFT(992), + [1845] = {.count = 1, .reusable = true}, SHIFT(993), + [1847] = {.count = 1, .reusable = false}, SHIFT(993), + [1849] = {.count = 1, .reusable = true}, SHIFT(994), + [1851] = {.count = 1, .reusable = false}, SHIFT(994), + [1853] = {.count = 1, .reusable = true}, SHIFT(1005), + [1855] = {.count = 1, .reusable = false}, SHIFT(995), + [1857] = {.count = 1, .reusable = true}, SHIFT(996), + [1859] = {.count = 1, .reusable = false}, SHIFT(1005), + [1861] = {.count = 1, .reusable = true}, SHIFT(997), + [1863] = {.count = 1, .reusable = true}, SHIFT(998), + [1865] = {.count = 1, .reusable = true}, SHIFT(999), + [1867] = {.count = 1, .reusable = false}, SHIFT(1000), + [1869] = {.count = 1, .reusable = true}, SHIFT(1001), + [1871] = {.count = 1, .reusable = false}, SHIFT(1002), + [1873] = {.count = 1, .reusable = false}, SHIFT(1003), + [1875] = {.count = 1, .reusable = true}, SHIFT(995), + [1877] = {.count = 1, .reusable = false}, SHIFT(1004), + [1879] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [1881] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [1883] = {.count = 1, .reusable = true}, SHIFT(1009), + [1885] = {.count = 1, .reusable = false}, SHIFT(1009), + [1887] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [1889] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [1891] = {.count = 1, .reusable = true}, SHIFT(1012), + [1893] = {.count = 1, .reusable = false}, SHIFT(1012), + [1895] = {.count = 1, .reusable = true}, SHIFT(1011), + [1897] = {.count = 1, .reusable = true}, SHIFT(1010), + [1899] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [1901] = {.count = 1, .reusable = true}, SHIFT(1016), + [1903] = {.count = 1, .reusable = true}, SHIFT(158), + [1905] = {.count = 1, .reusable = true}, SHIFT(1014), + [1907] = {.count = 1, .reusable = false}, SHIFT(1014), + [1909] = {.count = 1, .reusable = true}, SHIFT(1015), + [1911] = {.count = 1, .reusable = true}, SHIFT(1017), + [1913] = {.count = 1, .reusable = true}, SHIFT(1019), + [1915] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [1917] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [1919] = {.count = 1, .reusable = false}, REDUCE(sym__declarator, 1), + [1921] = {.count = 1, .reusable = true}, SHIFT(1021), + [1923] = {.count = 1, .reusable = true}, SHIFT(1022), + [1925] = {.count = 1, .reusable = true}, SHIFT(1023), + [1927] = {.count = 1, .reusable = true}, SHIFT(1024), + [1929] = {.count = 1, .reusable = true}, SHIFT(1025), + [1931] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), + [1934] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(58), + [1937] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(58), + [1940] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), + [1943] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), + [1946] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), + [1949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), + [1952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), + [1955] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), + [1958] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), + [1961] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), + [1964] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), + [1967] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), + [1970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), + [1973] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), + [1976] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(54), + [1979] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [1982] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), + [1985] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), + [1988] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), + [1991] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), + [1994] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), + [1997] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), + [2000] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(55), + [2003] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), + [2006] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), + [2009] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), + [2012] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), + [2015] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), + [2018] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [2021] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), + [2024] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [2027] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [2030] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), + [2033] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [2036] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(60), + [2039] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), + [2042] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), + [2045] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), + [2048] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), + [2051] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), + [2054] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), + [2057] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), + [2060] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), + [2063] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), + [2066] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(41), + [2069] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), + [2072] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(43), + [2075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(44), + [2078] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [2080] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(45), + [2083] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(46), + [2086] = {.count = 1, .reusable = true}, SHIFT(1030), + [2088] = {.count = 1, .reusable = true}, SHIFT(1031), + [2090] = {.count = 1, .reusable = false}, SHIFT(1032), + [2092] = {.count = 1, .reusable = false}, SHIFT(1033), + [2094] = {.count = 1, .reusable = true}, SHIFT(1034), + [2096] = {.count = 1, .reusable = true}, SHIFT(1035), [2098] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(387), [2101] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), [2103] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3), [2106] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2108] = {.count = 1, .reusable = true}, SHIFT(1042), + [2108] = {.count = 1, .reusable = true}, SHIFT(1037), [2110] = {.count = 1, .reusable = false}, SHIFT(392), [2112] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), - [2114] = {.count = 1, .reusable = true}, SHIFT(1046), - [2116] = {.count = 1, .reusable = true}, SHIFT(1047), - [2118] = {.count = 1, .reusable = true}, SHIFT(1048), - [2120] = {.count = 1, .reusable = true}, SHIFT(1067), - [2122] = {.count = 1, .reusable = false}, SHIFT(1067), - [2124] = {.count = 1, .reusable = false}, SHIFT(1051), - [2126] = {.count = 1, .reusable = false}, SHIFT(1052), - [2128] = {.count = 1, .reusable = true}, SHIFT(1053), - [2130] = {.count = 1, .reusable = false}, SHIFT(1054), - [2132] = {.count = 1, .reusable = false}, SHIFT(1055), - [2134] = {.count = 1, .reusable = false}, SHIFT(1056), - [2136] = {.count = 1, .reusable = false}, SHIFT(1060), - [2138] = {.count = 1, .reusable = false}, SHIFT(1059), - [2140] = {.count = 1, .reusable = false}, SHIFT(1057), - [2142] = {.count = 1, .reusable = false}, SHIFT(1058), - [2144] = {.count = 1, .reusable = false}, SHIFT(1061), - [2146] = {.count = 1, .reusable = false}, SHIFT(1062), - [2148] = {.count = 1, .reusable = false}, SHIFT(1063), - [2150] = {.count = 1, .reusable = false}, SHIFT(1064), - [2152] = {.count = 1, .reusable = true}, SHIFT(1065), - [2154] = {.count = 1, .reusable = true}, SHIFT(1066), - [2156] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), - [2158] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), - [2160] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [2162] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 4), - [2164] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 4), - [2166] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 4), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), - [2169] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), - [2171] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), - [2173] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_namespace_identifier, 3, .alias_sequence_id = 6), - [2175] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 4), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), - [2178] = {.count = 1, .reusable = false}, SHIFT(1070), - [2180] = {.count = 1, .reusable = true}, SHIFT(1071), - [2182] = {.count = 1, .reusable = true}, SHIFT(1080), - [2184] = {.count = 1, .reusable = false}, SHIFT(1080), - [2186] = {.count = 1, .reusable = true}, SHIFT(1077), - [2188] = {.count = 1, .reusable = false}, SHIFT(1078), - [2190] = {.count = 1, .reusable = true}, SHIFT(1083), - [2192] = {.count = 1, .reusable = false}, SHIFT(1083), - [2194] = {.count = 1, .reusable = false}, SHIFT(1086), - [2196] = {.count = 1, .reusable = true}, SHIFT(1087), - [2198] = {.count = 1, .reusable = true}, SHIFT(1088), - [2200] = {.count = 1, .reusable = false}, SHIFT(1089), - [2202] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 2), - [2204] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 2), - [2206] = {.count = 1, .reusable = true}, SHIFT(1090), - [2208] = {.count = 1, .reusable = false}, SHIFT(1090), - [2210] = {.count = 1, .reusable = true}, SHIFT(1103), - [2212] = {.count = 1, .reusable = false}, SHIFT(1091), - [2214] = {.count = 1, .reusable = true}, SHIFT(1092), - [2216] = {.count = 1, .reusable = false}, SHIFT(1103), - [2218] = {.count = 1, .reusable = true}, SHIFT(1093), - [2220] = {.count = 1, .reusable = true}, SHIFT(1094), - [2222] = {.count = 1, .reusable = true}, SHIFT(1095), - [2224] = {.count = 1, .reusable = false}, SHIFT(1096), - [2226] = {.count = 1, .reusable = true}, SHIFT(1097), - [2228] = {.count = 1, .reusable = false}, SHIFT(1098), - [2230] = {.count = 1, .reusable = false}, SHIFT(1099), - [2232] = {.count = 1, .reusable = true}, SHIFT(1091), - [2234] = {.count = 1, .reusable = true}, SHIFT(1100), - [2236] = {.count = 1, .reusable = false}, SHIFT(1101), - [2238] = {.count = 1, .reusable = true}, SHIFT(1110), - [2240] = {.count = 1, .reusable = true}, SHIFT(1109), - [2242] = {.count = 1, .reusable = false}, SHIFT(1110), - [2244] = {.count = 1, .reusable = false}, SHIFT(1111), - [2246] = {.count = 1, .reusable = false}, SHIFT(1117), - [2248] = {.count = 1, .reusable = false}, SHIFT(1118), - [2250] = {.count = 1, .reusable = true}, SHIFT(1121), - [2252] = {.count = 1, .reusable = true}, SHIFT(1118), - [2254] = {.count = 1, .reusable = true}, SHIFT(1119), - [2256] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(1120), - [2259] = {.count = 1, .reusable = false}, SHIFT(1129), - [2261] = {.count = 1, .reusable = false}, SHIFT(1128), - [2263] = {.count = 1, .reusable = false}, SHIFT(1126), - [2265] = {.count = 1, .reusable = false}, SHIFT(1124), - [2267] = {.count = 1, .reusable = false}, SHIFT(1125), - [2269] = {.count = 1, .reusable = true}, SHIFT(1132), - [2271] = {.count = 1, .reusable = false}, SHIFT(1132), - [2273] = {.count = 1, .reusable = true}, SHIFT(1131), - [2275] = {.count = 1, .reusable = true}, SHIFT(1134), - [2277] = {.count = 1, .reusable = false}, SHIFT(1133), - [2279] = {.count = 1, .reusable = true}, SHIFT(1135), - [2281] = {.count = 1, .reusable = true}, SHIFT(1136), - [2283] = {.count = 1, .reusable = false}, SHIFT(1138), - [2285] = {.count = 1, .reusable = true}, SHIFT(1144), - [2287] = {.count = 1, .reusable = false}, SHIFT(1144), - [2289] = {.count = 1, .reusable = true}, SHIFT(1145), - [2291] = {.count = 1, .reusable = false}, SHIFT(1145), - [2293] = {.count = 1, .reusable = true}, SHIFT(1146), - [2295] = {.count = 1, .reusable = true}, SHIFT(1148), - [2297] = {.count = 1, .reusable = true}, SHIFT(1149), - [2299] = {.count = 1, .reusable = false}, SHIFT(1150), - [2301] = {.count = 1, .reusable = false}, SHIFT(1151), - [2303] = {.count = 1, .reusable = true}, SHIFT(1152), - [2305] = {.count = 1, .reusable = true}, SHIFT(1153), - [2307] = {.count = 1, .reusable = true}, SHIFT(1154), - [2309] = {.count = 1, .reusable = true}, SHIFT(1155), - [2311] = {.count = 1, .reusable = true}, SHIFT(1156), - [2313] = {.count = 1, .reusable = true}, SHIFT(1157), - [2315] = {.count = 1, .reusable = false}, SHIFT(1158), - [2317] = {.count = 1, .reusable = true}, SHIFT(1159), - [2319] = {.count = 1, .reusable = true}, SHIFT(1160), - [2321] = {.count = 1, .reusable = false}, SHIFT(1161), - [2323] = {.count = 1, .reusable = true}, SHIFT(1162), - [2325] = {.count = 1, .reusable = false}, SHIFT(1156), - [2327] = {.count = 1, .reusable = true}, SHIFT(1150), - [2329] = {.count = 1, .reusable = true}, SHIFT(1163), - [2331] = {.count = 1, .reusable = true}, SHIFT(1164), - [2333] = {.count = 1, .reusable = false}, SHIFT(1155), - [2335] = {.count = 1, .reusable = true}, SHIFT(1167), - [2337] = {.count = 1, .reusable = true}, SHIFT(1120), - [2339] = {.count = 1, .reusable = false}, SHIFT(1172), - [2341] = {.count = 1, .reusable = true}, SHIFT(1173), - [2343] = {.count = 1, .reusable = true}, SHIFT(1172), - [2345] = {.count = 1, .reusable = false}, SHIFT(1178), - [2347] = {.count = 1, .reusable = false}, SHIFT(1181), - [2349] = {.count = 1, .reusable = false}, SHIFT(1180), - [2351] = {.count = 1, .reusable = false}, SHIFT(1179), - [2353] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 7), - [2355] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 7), - [2357] = {.count = 1, .reusable = true}, SHIFT(1184), - [2359] = {.count = 1, .reusable = false}, SHIFT(1184), - [2361] = {.count = 1, .reusable = true}, SHIFT(1183), - [2363] = {.count = 1, .reusable = true}, SHIFT(1185), - [2365] = {.count = 1, .reusable = false}, SHIFT(1186), - [2367] = {.count = 1, .reusable = true}, SHIFT(1187), - [2369] = {.count = 1, .reusable = false}, SHIFT(1187), - [2371] = {.count = 1, .reusable = true}, SHIFT(1188), - [2373] = {.count = 1, .reusable = false}, SHIFT(1189), - [2375] = {.count = 1, .reusable = true}, SHIFT(1190), - [2377] = {.count = 1, .reusable = true}, SHIFT(1191), - [2379] = {.count = 1, .reusable = true}, SHIFT(1192), - [2381] = {.count = 1, .reusable = false}, SHIFT(1193), - [2383] = {.count = 1, .reusable = true}, SHIFT(1194), - [2385] = {.count = 1, .reusable = false}, SHIFT(1195), - [2387] = {.count = 1, .reusable = true}, SHIFT(1189), - [2389] = {.count = 1, .reusable = false}, SHIFT(1196), - [2391] = {.count = 1, .reusable = true}, SHIFT(1199), - [2393] = {.count = 1, .reusable = true}, SHIFT(1198), - [2395] = {.count = 1, .reusable = false}, SHIFT(1199), - [2397] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [2399] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [2401] = {.count = 1, .reusable = true}, SHIFT(1200), - [2403] = {.count = 1, .reusable = false}, SHIFT(1200), - [2405] = {.count = 1, .reusable = false}, SHIFT(1203), - [2407] = {.count = 1, .reusable = false}, SHIFT(1202), - [2409] = {.count = 1, .reusable = false}, SHIFT(1201), - [2411] = {.count = 1, .reusable = true}, SHIFT(1205), - [2413] = {.count = 1, .reusable = false}, SHIFT(1206), - [2415] = {.count = 1, .reusable = false}, SHIFT(1207), - [2417] = {.count = 1, .reusable = true}, SHIFT(1208), - [2419] = {.count = 1, .reusable = true}, SHIFT(1209), - [2421] = {.count = 1, .reusable = true}, SHIFT(1210), - [2423] = {.count = 1, .reusable = true}, SHIFT(1211), - [2425] = {.count = 1, .reusable = true}, SHIFT(1212), - [2427] = {.count = 1, .reusable = false}, SHIFT(1213), - [2429] = {.count = 1, .reusable = false}, SHIFT(1214), - [2431] = {.count = 1, .reusable = true}, SHIFT(1215), - [2433] = {.count = 1, .reusable = true}, SHIFT(1206), - [2435] = {.count = 1, .reusable = false}, SHIFT(1211), - [2437] = {.count = 1, .reusable = true}, SHIFT(1216), - [2439] = {.count = 1, .reusable = true}, SHIFT(1219), - [2441] = {.count = 1, .reusable = true}, SHIFT(1218), - [2443] = {.count = 1, .reusable = true}, SHIFT(436), - [2445] = {.count = 1, .reusable = true}, SHIFT(1222), - [2447] = {.count = 1, .reusable = false}, SHIFT(1222), - [2449] = {.count = 1, .reusable = true}, SHIFT(1223), - [2451] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), - [2453] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), - [2455] = {.count = 1, .reusable = false}, SHIFT(1225), - [2457] = {.count = 1, .reusable = false}, SHIFT(1227), - [2459] = {.count = 1, .reusable = true}, SHIFT(1228), - [2461] = {.count = 1, .reusable = true}, SHIFT(1229), - [2463] = {.count = 1, .reusable = true}, SHIFT(1231), - [2465] = {.count = 1, .reusable = true}, SHIFT(1232), - [2467] = {.count = 1, .reusable = false}, SHIFT(1234), - [2469] = {.count = 1, .reusable = true}, SHIFT(1235), - [2471] = {.count = 1, .reusable = false}, SHIFT(1238), - [2473] = {.count = 1, .reusable = false}, SHIFT(1237), - [2475] = {.count = 1, .reusable = true}, SHIFT(1265), - [2477] = {.count = 1, .reusable = false}, SHIFT(1265), - [2479] = {.count = 1, .reusable = false}, SHIFT(1240), - [2481] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [2483] = {.count = 1, .reusable = false}, SHIFT(1241), - [2485] = {.count = 1, .reusable = false}, SHIFT(1242), - [2487] = {.count = 1, .reusable = false}, SHIFT(1243), - [2489] = {.count = 1, .reusable = false}, SHIFT(1244), - [2491] = {.count = 1, .reusable = false}, SHIFT(1245), - [2493] = {.count = 1, .reusable = false}, SHIFT(1246), - [2495] = {.count = 1, .reusable = false}, SHIFT(1247), - [2497] = {.count = 1, .reusable = true}, SHIFT(1248), - [2499] = {.count = 1, .reusable = false}, SHIFT(1249), - [2501] = {.count = 1, .reusable = false}, SHIFT(1250), - [2503] = {.count = 1, .reusable = false}, SHIFT(1251), - [2505] = {.count = 1, .reusable = false}, SHIFT(1252), - [2507] = {.count = 1, .reusable = false}, SHIFT(1253), - [2509] = {.count = 1, .reusable = false}, SHIFT(1254), - [2511] = {.count = 1, .reusable = false}, SHIFT(1255), - [2513] = {.count = 1, .reusable = false}, SHIFT(1256), - [2515] = {.count = 1, .reusable = false}, SHIFT(1257), - [2517] = {.count = 1, .reusable = false}, SHIFT(1258), - [2519] = {.count = 1, .reusable = false}, SHIFT(1259), - [2521] = {.count = 1, .reusable = false}, SHIFT(1260), - [2523] = {.count = 1, .reusable = true}, SHIFT(1261), - [2525] = {.count = 1, .reusable = false}, SHIFT(1262), - [2527] = {.count = 1, .reusable = true}, SHIFT(1270), - [2529] = {.count = 1, .reusable = false}, SHIFT(1271), - [2531] = {.count = 1, .reusable = false}, SHIFT(1272), - [2533] = {.count = 1, .reusable = true}, SHIFT(1273), - [2535] = {.count = 1, .reusable = true}, SHIFT(1276), - [2537] = {.count = 1, .reusable = true}, SHIFT(1277), - [2539] = {.count = 1, .reusable = true}, SHIFT(1278), - [2541] = {.count = 1, .reusable = true}, SHIFT(1279), - [2543] = {.count = 1, .reusable = true}, SHIFT(1280), - [2545] = {.count = 1, .reusable = true}, SHIFT(1282), - [2547] = {.count = 1, .reusable = true}, SHIFT(1286), - [2549] = {.count = 1, .reusable = false}, SHIFT(1286), - [2551] = {.count = 1, .reusable = true}, SHIFT(1285), - [2553] = {.count = 1, .reusable = true}, SHIFT(1288), - [2555] = {.count = 1, .reusable = true}, SHIFT(1289), - [2557] = {.count = 1, .reusable = true}, SHIFT(1291), - [2559] = {.count = 1, .reusable = true}, SHIFT(1294), - [2561] = {.count = 1, .reusable = false}, SHIFT(1289), - [2563] = {.count = 1, .reusable = true}, SHIFT(1297), - [2565] = {.count = 1, .reusable = true}, SHIFT(1299), - [2567] = {.count = 1, .reusable = false}, SHIFT(1302), - [2569] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), - [2571] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), - [2573] = {.count = 1, .reusable = true}, SHIFT(1303), - [2575] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), - [2577] = {.count = 1, .reusable = true}, SHIFT(1304), - [2579] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [2581] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [2583] = {.count = 1, .reusable = true}, SHIFT(1305), - [2585] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [2587] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [2589] = {.count = 1, .reusable = true}, SHIFT(1307), - [2591] = {.count = 1, .reusable = true}, SHIFT(1309), - [2593] = {.count = 1, .reusable = false}, SHIFT(1309), - [2595] = {.count = 1, .reusable = true}, SHIFT(1308), - [2597] = {.count = 1, .reusable = false}, SHIFT(1311), - [2599] = {.count = 1, .reusable = true}, SHIFT(1313), - [2601] = {.count = 1, .reusable = true}, SHIFT(1312), - [2603] = {.count = 1, .reusable = false}, SHIFT(1313), - [2605] = {.count = 1, .reusable = false}, SHIFT(1316), - [2607] = {.count = 1, .reusable = false}, SHIFT(1315), - [2609] = {.count = 1, .reusable = false}, SHIFT(1314), - [2611] = {.count = 1, .reusable = true}, SHIFT(1319), - [2613] = {.count = 1, .reusable = false}, SHIFT(1319), - [2615] = {.count = 1, .reusable = true}, SHIFT(1318), - [2617] = {.count = 1, .reusable = true}, SHIFT(1333), - [2619] = {.count = 1, .reusable = false}, SHIFT(1333), - [2621] = {.count = 1, .reusable = false}, SHIFT(1334), - [2623] = {.count = 1, .reusable = true}, SHIFT(1335), - [2625] = {.count = 1, .reusable = false}, SHIFT(1336), - [2627] = {.count = 1, .reusable = true}, SHIFT(1337), - [2629] = {.count = 1, .reusable = true}, SHIFT(1338), - [2631] = {.count = 1, .reusable = false}, SHIFT(1338), - [2633] = {.count = 1, .reusable = true}, SHIFT(1339), - [2635] = {.count = 1, .reusable = false}, SHIFT(1339), - [2637] = {.count = 1, .reusable = true}, SHIFT(1340), - [2639] = {.count = 1, .reusable = false}, SHIFT(1340), - [2641] = {.count = 1, .reusable = true}, SHIFT(1341), - [2643] = {.count = 1, .reusable = false}, SHIFT(1341), - [2645] = {.count = 1, .reusable = true}, SHIFT(1342), - [2647] = {.count = 1, .reusable = false}, SHIFT(1342), - [2649] = {.count = 1, .reusable = false}, REDUCE(sym_attribute, 3), - [2651] = {.count = 1, .reusable = true}, REDUCE(sym_attribute, 3), - [2653] = {.count = 1, .reusable = true}, SHIFT(1343), - [2655] = {.count = 1, .reusable = false}, SHIFT(1343), - [2657] = {.count = 1, .reusable = true}, SHIFT(1344), - [2659] = {.count = 1, .reusable = false}, SHIFT(1344), - [2661] = {.count = 1, .reusable = true}, SHIFT(1345), - [2663] = {.count = 1, .reusable = false}, SHIFT(1345), - [2665] = {.count = 1, .reusable = true}, SHIFT(1346), - [2667] = {.count = 1, .reusable = false}, SHIFT(1346), - [2669] = {.count = 1, .reusable = true}, SHIFT(1347), - [2671] = {.count = 1, .reusable = false}, SHIFT(1347), - [2673] = {.count = 1, .reusable = true}, SHIFT(1348), - [2675] = {.count = 1, .reusable = false}, SHIFT(1348), - [2677] = {.count = 1, .reusable = true}, SHIFT(1349), - [2679] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [2681] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [2683] = {.count = 1, .reusable = true}, SHIFT(1352), - [2685] = {.count = 1, .reusable = false}, REDUCE(sym_namespace_definition, 3), - [2687] = {.count = 1, .reusable = true}, REDUCE(sym_namespace_definition, 3), - [2689] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [2691] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [2693] = {.count = 1, .reusable = false}, SHIFT(1353), - [2695] = {.count = 1, .reusable = true}, SHIFT(1356), - [2697] = {.count = 1, .reusable = false}, SHIFT(1356), - [2699] = {.count = 1, .reusable = true}, SHIFT(1355), - [2701] = {.count = 1, .reusable = true}, SHIFT(1358), - [2703] = {.count = 1, .reusable = false}, SHIFT(1358), - [2705] = {.count = 1, .reusable = true}, SHIFT(1359), - [2707] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [2709] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [2711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(127), - [2714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(129), - [2717] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(130), - [2720] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(131), - [2723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(132), - [2726] = {.count = 1, .reusable = true}, SHIFT(1360), - [2728] = {.count = 1, .reusable = true}, SHIFT(1362), - [2730] = {.count = 1, .reusable = false}, SHIFT(1362), - [2732] = {.count = 1, .reusable = true}, SHIFT(1361), - [2734] = {.count = 1, .reusable = false}, SHIFT(1366), - [2736] = {.count = 1, .reusable = false}, SHIFT(1365), - [2738] = {.count = 1, .reusable = false}, SHIFT(1364), - [2740] = {.count = 1, .reusable = true}, SHIFT(1369), - [2742] = {.count = 1, .reusable = false}, SHIFT(1369), - [2744] = {.count = 1, .reusable = true}, SHIFT(1368), - [2746] = {.count = 1, .reusable = false}, SHIFT(1370), - [2748] = {.count = 1, .reusable = true}, SHIFT(1372), - [2750] = {.count = 1, .reusable = true}, SHIFT(1371), - [2752] = {.count = 1, .reusable = false}, SHIFT(1372), - [2754] = {.count = 1, .reusable = true}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), - [2756] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), - [2758] = {.count = 1, .reusable = true}, SHIFT(1386), - [2760] = {.count = 1, .reusable = true}, SHIFT(1387), - [2762] = {.count = 1, .reusable = false}, SHIFT(1387), - [2764] = {.count = 1, .reusable = false}, SHIFT(1388), - [2766] = {.count = 1, .reusable = true}, SHIFT(1389), - [2768] = {.count = 1, .reusable = false}, SHIFT(1390), - [2770] = {.count = 1, .reusable = true}, SHIFT(1391), - [2772] = {.count = 1, .reusable = true}, SHIFT(1392), - [2774] = {.count = 1, .reusable = false}, SHIFT(1392), - [2776] = {.count = 1, .reusable = true}, SHIFT(1393), - [2778] = {.count = 1, .reusable = false}, SHIFT(1393), - [2780] = {.count = 1, .reusable = true}, SHIFT(1394), - [2782] = {.count = 1, .reusable = false}, SHIFT(1394), - [2784] = {.count = 1, .reusable = true}, SHIFT(1395), - [2786] = {.count = 1, .reusable = false}, SHIFT(1395), - [2788] = {.count = 1, .reusable = true}, SHIFT(1396), - [2790] = {.count = 1, .reusable = false}, SHIFT(1396), - [2792] = {.count = 1, .reusable = true}, SHIFT(1397), - [2794] = {.count = 1, .reusable = false}, SHIFT(1397), - [2796] = {.count = 1, .reusable = true}, SHIFT(1398), - [2798] = {.count = 1, .reusable = false}, SHIFT(1398), - [2800] = {.count = 1, .reusable = true}, SHIFT(1399), - [2802] = {.count = 1, .reusable = false}, SHIFT(1399), - [2804] = {.count = 1, .reusable = true}, SHIFT(1400), - [2806] = {.count = 1, .reusable = false}, SHIFT(1400), - [2808] = {.count = 1, .reusable = true}, SHIFT(1401), - [2810] = {.count = 1, .reusable = false}, SHIFT(1401), - [2812] = {.count = 1, .reusable = true}, SHIFT(1402), - [2814] = {.count = 1, .reusable = false}, SHIFT(1402), - [2816] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2818] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2820] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), - [2822] = {.count = 1, .reusable = true}, SHIFT(1404), - [2824] = {.count = 1, .reusable = true}, SHIFT(1403), - [2826] = {.count = 1, .reusable = true}, SHIFT(1405), - [2828] = {.count = 1, .reusable = false}, SHIFT(1405), - [2830] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_reference_declarator, 1), - [2832] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2834] = {.count = 1, .reusable = true}, SHIFT(1412), - [2836] = {.count = 1, .reusable = true}, SHIFT(1411), - [2838] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [2840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(591), - [2843] = {.count = 1, .reusable = true}, SHIFT(1417), - [2845] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 2, .alias_sequence_id = 2), - [2847] = {.count = 1, .reusable = true}, SHIFT(1420), - [2849] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 2), - [2851] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [2853] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [2855] = {.count = 1, .reusable = false}, SHIFT(1425), - [2857] = {.count = 1, .reusable = false}, SHIFT(1427), - [2859] = {.count = 1, .reusable = false}, SHIFT(1426), - [2861] = {.count = 1, .reusable = true}, SHIFT(1429), - [2863] = {.count = 1, .reusable = false}, SHIFT(1430), - [2865] = {.count = 1, .reusable = false}, SHIFT(1431), - [2867] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [2869] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [2871] = {.count = 1, .reusable = false}, SHIFT(1433), - [2873] = {.count = 1, .reusable = true}, SHIFT(1434), - [2875] = {.count = 1, .reusable = true}, SHIFT(1435), - [2877] = {.count = 1, .reusable = true}, SHIFT(1437), - [2879] = {.count = 1, .reusable = true}, SHIFT(1438), - [2881] = {.count = 1, .reusable = true}, SHIFT(1447), - [2883] = {.count = 1, .reusable = true}, SHIFT(1448), - [2885] = {.count = 1, .reusable = false}, SHIFT(1450), - [2887] = {.count = 1, .reusable = true}, SHIFT(1452), - [2889] = {.count = 1, .reusable = false}, SHIFT(1453), - [2891] = {.count = 1, .reusable = true}, SHIFT(1454), - [2893] = {.count = 1, .reusable = true}, SHIFT(1455), - [2895] = {.count = 1, .reusable = false}, SHIFT(1456), - [2897] = {.count = 1, .reusable = false}, SHIFT(1457), - [2899] = {.count = 1, .reusable = true}, SHIFT(1453), - [2901] = {.count = 1, .reusable = true}, SHIFT(1458), - [2903] = {.count = 1, .reusable = true}, SHIFT(1459), - [2905] = {.count = 1, .reusable = true}, SHIFT(1462), - [2907] = {.count = 1, .reusable = true}, SHIFT(1463), - [2909] = {.count = 1, .reusable = true}, SHIFT(1464), - [2911] = {.count = 1, .reusable = false}, SHIFT(1467), - [2913] = {.count = 1, .reusable = true}, SHIFT(1471), - [2915] = {.count = 1, .reusable = false}, SHIFT(1473), - [2917] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3), - [2919] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3), - [2921] = {.count = 1, .reusable = false}, REDUCE(sym_destructor_name, 2), - [2923] = {.count = 1, .reusable = true}, SHIFT(1476), - [2925] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 3), - [2927] = {.count = 1, .reusable = true}, SHIFT(1477), - [2929] = {.count = 1, .reusable = false}, SHIFT(1478), - [2931] = {.count = 1, .reusable = false}, SHIFT(1480), - [2933] = {.count = 1, .reusable = false}, SHIFT(1483), - [2935] = {.count = 1, .reusable = false}, SHIFT(1479), - [2937] = {.count = 1, .reusable = false}, REDUCE(sym_using_declaration, 3), - [2939] = {.count = 1, .reusable = true}, REDUCE(sym_using_declaration, 3), - [2941] = {.count = 1, .reusable = false}, SHIFT(1484), - [2943] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), - [2945] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), - [2947] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), - [2949] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), - [2951] = {.count = 1, .reusable = true}, SHIFT(1485), - [2953] = {.count = 1, .reusable = false}, SHIFT(1485), - [2955] = {.count = 1, .reusable = true}, SHIFT(1487), - [2957] = {.count = 1, .reusable = true}, SHIFT(1488), - [2959] = {.count = 1, .reusable = true}, SHIFT(689), - [2961] = {.count = 1, .reusable = false}, SHIFT(1489), - [2963] = {.count = 1, .reusable = true}, SHIFT(1490), - [2965] = {.count = 1, .reusable = false}, SHIFT(1496), - [2967] = {.count = 1, .reusable = false}, SHIFT(1502), - [2969] = {.count = 1, .reusable = true}, SHIFT(1503), - [2971] = {.count = 1, .reusable = true}, SHIFT(1504), - [2973] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(671), - [2976] = {.count = 1, .reusable = true}, SHIFT(1506), - [2978] = {.count = 1, .reusable = true}, SHIFT(1507), - [2980] = {.count = 1, .reusable = false}, SHIFT(1509), - [2982] = {.count = 1, .reusable = true}, SHIFT(1515), - [2984] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(671), - [2987] = {.count = 1, .reusable = false}, SHIFT(1519), - [2989] = {.count = 1, .reusable = false}, SHIFT(1517), - [2991] = {.count = 1, .reusable = false}, SHIFT(1518), - [2993] = {.count = 1, .reusable = true}, SHIFT(1520), - [2995] = {.count = 1, .reusable = false}, SHIFT(1523), - [2997] = {.count = 1, .reusable = true}, SHIFT(1524), - [2999] = {.count = 1, .reusable = false}, SHIFT(680), - [3001] = {.count = 1, .reusable = true}, SHIFT(684), - [3003] = {.count = 1, .reusable = false}, SHIFT(685), - [3005] = {.count = 1, .reusable = false}, SHIFT(679), - [3007] = {.count = 1, .reusable = false}, SHIFT(686), - [3009] = {.count = 1, .reusable = true}, SHIFT(679), - [3011] = {.count = 1, .reusable = false}, SHIFT(683), - [3013] = {.count = 1, .reusable = false}, SHIFT(678), - [3015] = {.count = 1, .reusable = true}, SHIFT(681), - [3017] = {.count = 1, .reusable = false}, SHIFT(682), - [3019] = {.count = 1, .reusable = true}, SHIFT(688), - [3021] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 2), - [3023] = {.count = 1, .reusable = false}, SHIFT(1525), - [3025] = {.count = 1, .reusable = true}, SHIFT(1526), - [3027] = {.count = 1, .reusable = true}, SHIFT(1528), - [3029] = {.count = 1, .reusable = false}, SHIFT(1528), - [3031] = {.count = 1, .reusable = true}, SHIFT(1527), - [3033] = {.count = 1, .reusable = false}, SHIFT(1532), - [3035] = {.count = 1, .reusable = true}, SHIFT(1531), - [3037] = {.count = 1, .reusable = true}, SHIFT(1534), - [3039] = {.count = 1, .reusable = false}, SHIFT(1534), - [3041] = {.count = 1, .reusable = true}, SHIFT(1533), - [3043] = {.count = 1, .reusable = true}, SHIFT(1538), - [3045] = {.count = 1, .reusable = false}, SHIFT(1538), - [3047] = {.count = 1, .reusable = true}, SHIFT(1536), - [3049] = {.count = 1, .reusable = true}, SHIFT(1537), - [3051] = {.count = 1, .reusable = true}, SHIFT(1540), - [3053] = {.count = 1, .reusable = false}, SHIFT(1542), - [3055] = {.count = 1, .reusable = true}, SHIFT(1541), - [3057] = {.count = 1, .reusable = true}, SHIFT(1543), - [3059] = {.count = 1, .reusable = false}, SHIFT(1543), - [3061] = {.count = 1, .reusable = true}, SHIFT(1544), - [3063] = {.count = 1, .reusable = false}, SHIFT(1544), - [3065] = {.count = 1, .reusable = true}, SHIFT(1545), - [3067] = {.count = 1, .reusable = false}, SHIFT(1545), - [3069] = {.count = 1, .reusable = true}, SHIFT(1546), - [3071] = {.count = 1, .reusable = false}, SHIFT(1546), - [3073] = {.count = 1, .reusable = true}, SHIFT(1547), - [3075] = {.count = 1, .reusable = false}, SHIFT(1547), - [3077] = {.count = 1, .reusable = true}, SHIFT(1548), - [3079] = {.count = 1, .reusable = false}, SHIFT(1548), - [3081] = {.count = 1, .reusable = true}, SHIFT(1549), - [3083] = {.count = 1, .reusable = false}, SHIFT(1549), - [3085] = {.count = 1, .reusable = true}, SHIFT(1550), - [3087] = {.count = 1, .reusable = false}, SHIFT(1550), - [3089] = {.count = 1, .reusable = true}, SHIFT(1551), - [3091] = {.count = 1, .reusable = false}, SHIFT(1551), - [3093] = {.count = 1, .reusable = true}, SHIFT(1552), - [3095] = {.count = 1, .reusable = false}, SHIFT(1552), - [3097] = {.count = 1, .reusable = true}, SHIFT(1553), - [3099] = {.count = 1, .reusable = false}, SHIFT(1553), - [3101] = {.count = 1, .reusable = true}, SHIFT(1555), - [3103] = {.count = 1, .reusable = true}, SHIFT(1554), - [3105] = {.count = 1, .reusable = true}, SHIFT(1557), - [3107] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [3109] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [3111] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3), - [3113] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3), - [3115] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [3117] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [3119] = {.count = 1, .reusable = true}, SHIFT(1563), - [3121] = {.count = 1, .reusable = true}, SHIFT(1564), - [3123] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(705), - [3126] = {.count = 1, .reusable = true}, SHIFT(1567), - [3128] = {.count = 1, .reusable = false}, SHIFT(1567), - [3130] = {.count = 1, .reusable = true}, SHIFT(1566), - [3132] = {.count = 1, .reusable = true}, SHIFT(1569), - [3134] = {.count = 1, .reusable = false}, SHIFT(1569), - [3136] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 3), - [3138] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 3), - [3140] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 8), - [3142] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 8), - [3144] = {.count = 1, .reusable = true}, SHIFT(1572), - [3146] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [3148] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [3150] = {.count = 1, .reusable = true}, SHIFT(1573), - [3152] = {.count = 1, .reusable = false}, REDUCE(sym_try_statement, 3), - [3154] = {.count = 1, .reusable = true}, REDUCE(sym_try_statement, 3), - [3156] = {.count = 1, .reusable = false}, SHIFT(717), - [3158] = {.count = 1, .reusable = false}, SHIFT(1576), - [3160] = {.count = 1, .reusable = true}, SHIFT(1577), - [3162] = {.count = 1, .reusable = true}, SHIFT(1580), - [3164] = {.count = 1, .reusable = false}, SHIFT(1580), - [3166] = {.count = 1, .reusable = true}, SHIFT(1579), - [3168] = {.count = 1, .reusable = true}, SHIFT(1581), - [3170] = {.count = 1, .reusable = true}, SHIFT(1582), - [3172] = {.count = 1, .reusable = false}, SHIFT(1583), - [3174] = {.count = 1, .reusable = true}, SHIFT(1584), - [3176] = {.count = 1, .reusable = true}, SHIFT(1583), - [3178] = {.count = 1, .reusable = true}, SHIFT(1585), - [3180] = {.count = 1, .reusable = true}, SHIFT(1589), - [3182] = {.count = 1, .reusable = false}, SHIFT(1590), - [3184] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [3186] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [3188] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(731), - [3191] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3193] = {.count = 1, .reusable = true}, SHIFT(1591), - [3195] = {.count = 1, .reusable = true}, SHIFT(1592), - [3197] = {.count = 1, .reusable = false}, SHIFT(1593), - [3199] = {.count = 1, .reusable = true}, SHIFT(1594), - [3201] = {.count = 1, .reusable = true}, SHIFT(1596), - [3203] = {.count = 1, .reusable = false}, SHIFT(1596), - [3205] = {.count = 1, .reusable = true}, SHIFT(1595), - [3207] = {.count = 1, .reusable = true}, SHIFT(1597), - [3209] = {.count = 1, .reusable = false}, SHIFT(1597), - [3211] = {.count = 1, .reusable = true}, SHIFT(1598), - [3213] = {.count = 1, .reusable = false}, SHIFT(1598), - [3215] = {.count = 1, .reusable = true}, SHIFT(1602), - [3217] = {.count = 1, .reusable = false}, SHIFT(1601), - [3219] = {.count = 1, .reusable = false}, SHIFT(1603), - [3221] = {.count = 1, .reusable = true}, SHIFT(1604), - [3223] = {.count = 1, .reusable = true}, SHIFT(1605), - [3225] = {.count = 1, .reusable = false}, SHIFT(1606), - [3227] = {.count = 1, .reusable = true}, SHIFT(1607), - [3229] = {.count = 1, .reusable = false}, SHIFT(1607), - [3231] = {.count = 1, .reusable = true}, SHIFT(1609), - [3233] = {.count = 1, .reusable = true}, SHIFT(1608), - [3235] = {.count = 1, .reusable = false}, SHIFT(1609), - [3237] = {.count = 1, .reusable = true}, SHIFT(1610), - [3239] = {.count = 1, .reusable = false}, SHIFT(1610), - [3241] = {.count = 1, .reusable = true}, SHIFT(1613), - [3243] = {.count = 1, .reusable = true}, SHIFT(1611), - [3245] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(1612), - [3248] = {.count = 1, .reusable = false}, SHIFT(1616), - [3250] = {.count = 1, .reusable = false}, SHIFT(1627), - [3252] = {.count = 1, .reusable = false}, SHIFT(1626), - [3254] = {.count = 1, .reusable = true}, SHIFT(1619), - [3256] = {.count = 1, .reusable = false}, SHIFT(1621), - [3258] = {.count = 1, .reusable = false}, SHIFT(1622), + [2114] = {.count = 1, .reusable = true}, SHIFT(1041), + [2116] = {.count = 1, .reusable = true}, SHIFT(1042), + [2118] = {.count = 1, .reusable = true}, SHIFT(1043), + [2120] = {.count = 1, .reusable = true}, SHIFT(1046), + [2122] = {.count = 1, .reusable = true}, SHIFT(1063), + [2124] = {.count = 1, .reusable = false}, SHIFT(1063), + [2126] = {.count = 1, .reusable = false}, SHIFT(1047), + [2128] = {.count = 1, .reusable = false}, SHIFT(1048), + [2130] = {.count = 1, .reusable = true}, SHIFT(1049), + [2132] = {.count = 1, .reusable = false}, SHIFT(1050), + [2134] = {.count = 1, .reusable = false}, SHIFT(1051), + [2136] = {.count = 1, .reusable = false}, SHIFT(1052), + [2138] = {.count = 1, .reusable = false}, SHIFT(1056), + [2140] = {.count = 1, .reusable = false}, SHIFT(1055), + [2142] = {.count = 1, .reusable = false}, SHIFT(1053), + [2144] = {.count = 1, .reusable = false}, SHIFT(1054), + [2146] = {.count = 1, .reusable = false}, SHIFT(1057), + [2148] = {.count = 1, .reusable = false}, SHIFT(1058), + [2150] = {.count = 1, .reusable = false}, SHIFT(1059), + [2152] = {.count = 1, .reusable = false}, SHIFT(1060), + [2154] = {.count = 1, .reusable = true}, SHIFT(1061), + [2156] = {.count = 1, .reusable = true}, SHIFT(1062), + [2158] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), + [2160] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), + [2162] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [2164] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 4), + [2166] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 4), + [2168] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 4), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), + [2171] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), + [2173] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), + [2175] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_namespace_identifier, 3, .alias_sequence_id = 6), + [2177] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 4), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), + [2180] = {.count = 1, .reusable = false}, SHIFT(1066), + [2182] = {.count = 1, .reusable = true}, SHIFT(1067), + [2184] = {.count = 1, .reusable = true}, SHIFT(1075), + [2186] = {.count = 1, .reusable = false}, SHIFT(1075), + [2188] = {.count = 1, .reusable = true}, SHIFT(1073), + [2190] = {.count = 1, .reusable = false}, SHIFT(1074), + [2192] = {.count = 1, .reusable = true}, SHIFT(1079), + [2194] = {.count = 1, .reusable = false}, SHIFT(1079), + [2196] = {.count = 1, .reusable = false}, SHIFT(1082), + [2198] = {.count = 1, .reusable = true}, SHIFT(1083), + [2200] = {.count = 1, .reusable = true}, SHIFT(1084), + [2202] = {.count = 1, .reusable = false}, SHIFT(1085), + [2204] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 2), + [2206] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 2), + [2208] = {.count = 1, .reusable = true}, SHIFT(1086), + [2210] = {.count = 1, .reusable = false}, SHIFT(1086), + [2212] = {.count = 1, .reusable = true}, SHIFT(1098), + [2214] = {.count = 1, .reusable = false}, SHIFT(1087), + [2216] = {.count = 1, .reusable = true}, SHIFT(1088), + [2218] = {.count = 1, .reusable = false}, SHIFT(1098), + [2220] = {.count = 1, .reusable = true}, SHIFT(1089), + [2222] = {.count = 1, .reusable = true}, SHIFT(1090), + [2224] = {.count = 1, .reusable = true}, SHIFT(1091), + [2226] = {.count = 1, .reusable = false}, SHIFT(1092), + [2228] = {.count = 1, .reusable = true}, SHIFT(1093), + [2230] = {.count = 1, .reusable = false}, SHIFT(1094), + [2232] = {.count = 1, .reusable = false}, SHIFT(1095), + [2234] = {.count = 1, .reusable = true}, SHIFT(1087), + [2236] = {.count = 1, .reusable = true}, SHIFT(1096), + [2238] = {.count = 1, .reusable = false}, SHIFT(1097), + [2240] = {.count = 1, .reusable = true}, SHIFT(1106), + [2242] = {.count = 1, .reusable = true}, SHIFT(1105), + [2244] = {.count = 1, .reusable = false}, SHIFT(1106), + [2246] = {.count = 1, .reusable = false}, SHIFT(1107), + [2248] = {.count = 1, .reusable = false}, SHIFT(1113), + [2250] = {.count = 1, .reusable = false}, SHIFT(1114), + [2252] = {.count = 1, .reusable = true}, SHIFT(1117), + [2254] = {.count = 1, .reusable = true}, SHIFT(1114), + [2256] = {.count = 1, .reusable = true}, SHIFT(1115), + [2258] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(1116), + [2261] = {.count = 1, .reusable = false}, SHIFT(1124), + [2263] = {.count = 1, .reusable = false}, SHIFT(1123), + [2265] = {.count = 1, .reusable = false}, SHIFT(1122), + [2267] = {.count = 1, .reusable = false}, SHIFT(1120), + [2269] = {.count = 1, .reusable = false}, SHIFT(1121), + [2271] = {.count = 1, .reusable = true}, SHIFT(1128), + [2273] = {.count = 1, .reusable = false}, SHIFT(1128), + [2275] = {.count = 1, .reusable = true}, SHIFT(1127), + [2277] = {.count = 1, .reusable = true}, SHIFT(1130), + [2279] = {.count = 1, .reusable = false}, SHIFT(1129), + [2281] = {.count = 1, .reusable = true}, SHIFT(1131), + [2283] = {.count = 1, .reusable = true}, SHIFT(1132), + [2285] = {.count = 1, .reusable = false}, SHIFT(1134), + [2287] = {.count = 1, .reusable = true}, SHIFT(1140), + [2289] = {.count = 1, .reusable = false}, SHIFT(1140), + [2291] = {.count = 1, .reusable = true}, SHIFT(1141), + [2293] = {.count = 1, .reusable = false}, SHIFT(1141), + [2295] = {.count = 1, .reusable = true}, SHIFT(1142), + [2297] = {.count = 1, .reusable = true}, SHIFT(1143), + [2299] = {.count = 1, .reusable = false}, SHIFT(1144), + [2301] = {.count = 1, .reusable = false}, SHIFT(1145), + [2303] = {.count = 1, .reusable = true}, SHIFT(1146), + [2305] = {.count = 1, .reusable = true}, SHIFT(1147), + [2307] = {.count = 1, .reusable = true}, SHIFT(1148), + [2309] = {.count = 1, .reusable = true}, SHIFT(1149), + [2311] = {.count = 1, .reusable = true}, SHIFT(1150), + [2313] = {.count = 1, .reusable = true}, SHIFT(1151), + [2315] = {.count = 1, .reusable = false}, SHIFT(1152), + [2317] = {.count = 1, .reusable = true}, SHIFT(1153), + [2319] = {.count = 1, .reusable = true}, SHIFT(1154), + [2321] = {.count = 1, .reusable = false}, SHIFT(1155), + [2323] = {.count = 1, .reusable = true}, SHIFT(1156), + [2325] = {.count = 1, .reusable = false}, SHIFT(1150), + [2327] = {.count = 1, .reusable = true}, SHIFT(1144), + [2329] = {.count = 1, .reusable = true}, SHIFT(1157), + [2331] = {.count = 1, .reusable = true}, SHIFT(1158), + [2333] = {.count = 1, .reusable = false}, SHIFT(1149), + [2335] = {.count = 1, .reusable = true}, SHIFT(1116), + [2337] = {.count = 1, .reusable = true}, SHIFT(1164), + [2339] = {.count = 1, .reusable = false}, SHIFT(1170), + [2341] = {.count = 1, .reusable = false}, SHIFT(1169), + [2343] = {.count = 1, .reusable = false}, SHIFT(1168), + [2345] = {.count = 1, .reusable = false}, SHIFT(1171), + [2347] = {.count = 1, .reusable = true}, SHIFT(1172), + [2349] = {.count = 1, .reusable = true}, SHIFT(1171), + [2351] = {.count = 1, .reusable = false}, SHIFT(1176), + [2353] = {.count = 1, .reusable = true}, SHIFT(1177), + [2355] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 7), + [2357] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 7), + [2359] = {.count = 1, .reusable = true}, SHIFT(1180), + [2361] = {.count = 1, .reusable = false}, SHIFT(1180), + [2363] = {.count = 1, .reusable = true}, SHIFT(1179), + [2365] = {.count = 1, .reusable = true}, SHIFT(1181), + [2367] = {.count = 1, .reusable = false}, SHIFT(1182), + [2369] = {.count = 1, .reusable = true}, SHIFT(1183), + [2371] = {.count = 1, .reusable = false}, SHIFT(1183), + [2373] = {.count = 1, .reusable = true}, SHIFT(1184), + [2375] = {.count = 1, .reusable = false}, SHIFT(1185), + [2377] = {.count = 1, .reusable = true}, SHIFT(1186), + [2379] = {.count = 1, .reusable = true}, SHIFT(1187), + [2381] = {.count = 1, .reusable = true}, SHIFT(1188), + [2383] = {.count = 1, .reusable = false}, SHIFT(1189), + [2385] = {.count = 1, .reusable = true}, SHIFT(1190), + [2387] = {.count = 1, .reusable = false}, SHIFT(1191), + [2389] = {.count = 1, .reusable = true}, SHIFT(1185), + [2391] = {.count = 1, .reusable = false}, SHIFT(1192), + [2393] = {.count = 1, .reusable = true}, SHIFT(1195), + [2395] = {.count = 1, .reusable = true}, SHIFT(1194), + [2397] = {.count = 1, .reusable = false}, SHIFT(1195), + [2399] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [2401] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [2403] = {.count = 1, .reusable = true}, SHIFT(1196), + [2405] = {.count = 1, .reusable = false}, SHIFT(1196), + [2407] = {.count = 1, .reusable = false}, SHIFT(1199), + [2409] = {.count = 1, .reusable = false}, SHIFT(1198), + [2411] = {.count = 1, .reusable = false}, SHIFT(1197), + [2413] = {.count = 1, .reusable = true}, SHIFT(1201), + [2415] = {.count = 1, .reusable = false}, SHIFT(1202), + [2417] = {.count = 1, .reusable = false}, SHIFT(1203), + [2419] = {.count = 1, .reusable = true}, SHIFT(1204), + [2421] = {.count = 1, .reusable = true}, SHIFT(1205), + [2423] = {.count = 1, .reusable = true}, SHIFT(1206), + [2425] = {.count = 1, .reusable = true}, SHIFT(1207), + [2427] = {.count = 1, .reusable = true}, SHIFT(1208), + [2429] = {.count = 1, .reusable = false}, SHIFT(1209), + [2431] = {.count = 1, .reusable = false}, SHIFT(1210), + [2433] = {.count = 1, .reusable = true}, SHIFT(1211), + [2435] = {.count = 1, .reusable = true}, SHIFT(1202), + [2437] = {.count = 1, .reusable = false}, SHIFT(1207), + [2439] = {.count = 1, .reusable = true}, SHIFT(1212), + [2441] = {.count = 1, .reusable = true}, SHIFT(1216), + [2443] = {.count = 1, .reusable = true}, SHIFT(1215), + [2445] = {.count = 1, .reusable = true}, SHIFT(437), + [2447] = {.count = 1, .reusable = true}, SHIFT(1218), + [2449] = {.count = 1, .reusable = false}, SHIFT(1218), + [2451] = {.count = 1, .reusable = true}, SHIFT(1219), + [2453] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), + [2455] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), + [2457] = {.count = 1, .reusable = false}, SHIFT(1221), + [2459] = {.count = 1, .reusable = false}, SHIFT(1223), + [2461] = {.count = 1, .reusable = true}, SHIFT(1224), + [2463] = {.count = 1, .reusable = true}, SHIFT(1225), + [2465] = {.count = 1, .reusable = true}, SHIFT(1227), + [2467] = {.count = 1, .reusable = true}, SHIFT(1228), + [2469] = {.count = 1, .reusable = false}, SHIFT(1230), + [2471] = {.count = 1, .reusable = true}, SHIFT(1231), + [2473] = {.count = 1, .reusable = false}, SHIFT(1234), + [2475] = {.count = 1, .reusable = false}, SHIFT(1233), + [2477] = {.count = 1, .reusable = true}, SHIFT(1262), + [2479] = {.count = 1, .reusable = false}, SHIFT(1262), + [2481] = {.count = 1, .reusable = false}, SHIFT(1236), + [2483] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [2485] = {.count = 1, .reusable = false}, SHIFT(1237), + [2487] = {.count = 1, .reusable = false}, SHIFT(1238), + [2489] = {.count = 1, .reusable = false}, SHIFT(1239), + [2491] = {.count = 1, .reusable = false}, SHIFT(1240), + [2493] = {.count = 1, .reusable = false}, SHIFT(1241), + [2495] = {.count = 1, .reusable = false}, SHIFT(1242), + [2497] = {.count = 1, .reusable = false}, SHIFT(1243), + [2499] = {.count = 1, .reusable = true}, SHIFT(1244), + [2501] = {.count = 1, .reusable = false}, SHIFT(1245), + [2503] = {.count = 1, .reusable = false}, SHIFT(1246), + [2505] = {.count = 1, .reusable = false}, SHIFT(1247), + [2507] = {.count = 1, .reusable = false}, SHIFT(1248), + [2509] = {.count = 1, .reusable = false}, SHIFT(1249), + [2511] = {.count = 1, .reusable = false}, SHIFT(1250), + [2513] = {.count = 1, .reusable = false}, SHIFT(1251), + [2515] = {.count = 1, .reusable = false}, SHIFT(1252), + [2517] = {.count = 1, .reusable = false}, SHIFT(1253), + [2519] = {.count = 1, .reusable = false}, SHIFT(1254), + [2521] = {.count = 1, .reusable = false}, SHIFT(1255), + [2523] = {.count = 1, .reusable = false}, SHIFT(1256), + [2525] = {.count = 1, .reusable = true}, SHIFT(1257), + [2527] = {.count = 1, .reusable = false}, SHIFT(1258), + [2529] = {.count = 1, .reusable = true}, SHIFT(1266), + [2531] = {.count = 1, .reusable = false}, SHIFT(1267), + [2533] = {.count = 1, .reusable = false}, SHIFT(1268), + [2535] = {.count = 1, .reusable = true}, SHIFT(1269), + [2537] = {.count = 1, .reusable = true}, SHIFT(1272), + [2539] = {.count = 1, .reusable = true}, SHIFT(1273), + [2541] = {.count = 1, .reusable = true}, SHIFT(1274), + [2543] = {.count = 1, .reusable = true}, SHIFT(1275), + [2545] = {.count = 1, .reusable = true}, SHIFT(1276), + [2547] = {.count = 1, .reusable = true}, SHIFT(1278), + [2549] = {.count = 1, .reusable = true}, SHIFT(1282), + [2551] = {.count = 1, .reusable = false}, SHIFT(1282), + [2553] = {.count = 1, .reusable = true}, SHIFT(1281), + [2555] = {.count = 1, .reusable = true}, SHIFT(1284), + [2557] = {.count = 1, .reusable = true}, SHIFT(1286), + [2559] = {.count = 1, .reusable = true}, SHIFT(1287), + [2561] = {.count = 1, .reusable = true}, SHIFT(1291), + [2563] = {.count = 1, .reusable = true}, SHIFT(1292), + [2565] = {.count = 1, .reusable = true}, SHIFT(1293), + [2567] = {.count = 1, .reusable = false}, SHIFT(1286), + [2569] = {.count = 1, .reusable = false}, SHIFT(1297), + [2571] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), + [2573] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), + [2575] = {.count = 1, .reusable = true}, SHIFT(1298), + [2577] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), + [2579] = {.count = 1, .reusable = true}, SHIFT(1299), + [2581] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [2583] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [2585] = {.count = 1, .reusable = true}, SHIFT(1300), + [2587] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [2589] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [2591] = {.count = 1, .reusable = true}, SHIFT(1302), + [2593] = {.count = 1, .reusable = true}, SHIFT(1304), + [2595] = {.count = 1, .reusable = false}, SHIFT(1304), + [2597] = {.count = 1, .reusable = true}, SHIFT(1303), + [2599] = {.count = 1, .reusable = false}, SHIFT(1306), + [2601] = {.count = 1, .reusable = true}, SHIFT(1308), + [2603] = {.count = 1, .reusable = true}, SHIFT(1307), + [2605] = {.count = 1, .reusable = false}, SHIFT(1308), + [2607] = {.count = 1, .reusable = false}, SHIFT(1311), + [2609] = {.count = 1, .reusable = false}, SHIFT(1310), + [2611] = {.count = 1, .reusable = false}, SHIFT(1309), + [2613] = {.count = 1, .reusable = true}, SHIFT(1314), + [2615] = {.count = 1, .reusable = false}, SHIFT(1314), + [2617] = {.count = 1, .reusable = true}, SHIFT(1313), + [2619] = {.count = 1, .reusable = true}, SHIFT(1328), + [2621] = {.count = 1, .reusable = false}, SHIFT(1328), + [2623] = {.count = 1, .reusable = false}, SHIFT(1329), + [2625] = {.count = 1, .reusable = true}, SHIFT(1330), + [2627] = {.count = 1, .reusable = false}, SHIFT(1331), + [2629] = {.count = 1, .reusable = true}, SHIFT(1332), + [2631] = {.count = 1, .reusable = true}, SHIFT(1333), + [2633] = {.count = 1, .reusable = false}, SHIFT(1333), + [2635] = {.count = 1, .reusable = true}, SHIFT(1334), + [2637] = {.count = 1, .reusable = false}, SHIFT(1334), + [2639] = {.count = 1, .reusable = true}, SHIFT(1335), + [2641] = {.count = 1, .reusable = false}, SHIFT(1335), + [2643] = {.count = 1, .reusable = true}, SHIFT(1336), + [2645] = {.count = 1, .reusable = false}, SHIFT(1336), + [2647] = {.count = 1, .reusable = true}, SHIFT(1337), + [2649] = {.count = 1, .reusable = false}, SHIFT(1337), + [2651] = {.count = 1, .reusable = false}, REDUCE(sym_attribute, 3), + [2653] = {.count = 1, .reusable = true}, REDUCE(sym_attribute, 3), + [2655] = {.count = 1, .reusable = true}, SHIFT(1338), + [2657] = {.count = 1, .reusable = false}, SHIFT(1338), + [2659] = {.count = 1, .reusable = true}, SHIFT(1339), + [2661] = {.count = 1, .reusable = false}, SHIFT(1339), + [2663] = {.count = 1, .reusable = true}, SHIFT(1340), + [2665] = {.count = 1, .reusable = false}, SHIFT(1340), + [2667] = {.count = 1, .reusable = true}, SHIFT(1341), + [2669] = {.count = 1, .reusable = false}, SHIFT(1341), + [2671] = {.count = 1, .reusable = true}, SHIFT(1342), + [2673] = {.count = 1, .reusable = false}, SHIFT(1342), + [2675] = {.count = 1, .reusable = true}, SHIFT(1343), + [2677] = {.count = 1, .reusable = false}, SHIFT(1343), + [2679] = {.count = 1, .reusable = true}, SHIFT(1344), + [2681] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [2683] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [2685] = {.count = 1, .reusable = true}, SHIFT(1347), + [2687] = {.count = 1, .reusable = false}, REDUCE(sym_namespace_definition, 3), + [2689] = {.count = 1, .reusable = true}, REDUCE(sym_namespace_definition, 3), + [2691] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [2693] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [2695] = {.count = 1, .reusable = false}, SHIFT(1348), + [2697] = {.count = 1, .reusable = true}, SHIFT(1351), + [2699] = {.count = 1, .reusable = false}, SHIFT(1351), + [2701] = {.count = 1, .reusable = true}, SHIFT(1350), + [2703] = {.count = 1, .reusable = true}, SHIFT(1353), + [2705] = {.count = 1, .reusable = false}, SHIFT(1353), + [2707] = {.count = 1, .reusable = true}, SHIFT(1354), + [2709] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [2711] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [2713] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(128), + [2716] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(130), + [2719] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(131), + [2722] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(132), + [2725] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(133), + [2728] = {.count = 1, .reusable = true}, SHIFT(1355), + [2730] = {.count = 1, .reusable = true}, SHIFT(1357), + [2732] = {.count = 1, .reusable = false}, SHIFT(1357), + [2734] = {.count = 1, .reusable = true}, SHIFT(1356), + [2736] = {.count = 1, .reusable = false}, SHIFT(1361), + [2738] = {.count = 1, .reusable = false}, SHIFT(1360), + [2740] = {.count = 1, .reusable = false}, SHIFT(1359), + [2742] = {.count = 1, .reusable = true}, SHIFT(1364), + [2744] = {.count = 1, .reusable = false}, SHIFT(1364), + [2746] = {.count = 1, .reusable = true}, SHIFT(1363), + [2748] = {.count = 1, .reusable = false}, SHIFT(1365), + [2750] = {.count = 1, .reusable = true}, SHIFT(1367), + [2752] = {.count = 1, .reusable = true}, SHIFT(1366), + [2754] = {.count = 1, .reusable = false}, SHIFT(1367), + [2756] = {.count = 1, .reusable = true}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), + [2758] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), + [2760] = {.count = 1, .reusable = true}, SHIFT(1381), + [2762] = {.count = 1, .reusable = true}, SHIFT(1382), + [2764] = {.count = 1, .reusable = false}, SHIFT(1382), + [2766] = {.count = 1, .reusable = false}, SHIFT(1383), + [2768] = {.count = 1, .reusable = true}, SHIFT(1384), + [2770] = {.count = 1, .reusable = false}, SHIFT(1385), + [2772] = {.count = 1, .reusable = true}, SHIFT(1386), + [2774] = {.count = 1, .reusable = true}, SHIFT(1387), + [2776] = {.count = 1, .reusable = false}, SHIFT(1387), + [2778] = {.count = 1, .reusable = true}, SHIFT(1388), + [2780] = {.count = 1, .reusable = false}, SHIFT(1388), + [2782] = {.count = 1, .reusable = true}, SHIFT(1389), + [2784] = {.count = 1, .reusable = false}, SHIFT(1389), + [2786] = {.count = 1, .reusable = true}, SHIFT(1390), + [2788] = {.count = 1, .reusable = false}, SHIFT(1390), + [2790] = {.count = 1, .reusable = true}, SHIFT(1391), + [2792] = {.count = 1, .reusable = false}, SHIFT(1391), + [2794] = {.count = 1, .reusable = true}, SHIFT(1392), + [2796] = {.count = 1, .reusable = false}, SHIFT(1392), + [2798] = {.count = 1, .reusable = true}, SHIFT(1393), + [2800] = {.count = 1, .reusable = false}, SHIFT(1393), + [2802] = {.count = 1, .reusable = true}, SHIFT(1394), + [2804] = {.count = 1, .reusable = false}, SHIFT(1394), + [2806] = {.count = 1, .reusable = true}, SHIFT(1395), + [2808] = {.count = 1, .reusable = false}, SHIFT(1395), + [2810] = {.count = 1, .reusable = true}, SHIFT(1396), + [2812] = {.count = 1, .reusable = false}, SHIFT(1396), + [2814] = {.count = 1, .reusable = true}, SHIFT(1397), + [2816] = {.count = 1, .reusable = false}, SHIFT(1397), + [2818] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2820] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2822] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), + [2824] = {.count = 1, .reusable = true}, SHIFT(1399), + [2826] = {.count = 1, .reusable = true}, SHIFT(1398), + [2828] = {.count = 1, .reusable = true}, SHIFT(1400), + [2830] = {.count = 1, .reusable = false}, SHIFT(1400), + [2832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(585), + [2835] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_reference_declarator, 1), + [2837] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2839] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), + [2841] = {.count = 1, .reusable = true}, SHIFT(1409), + [2843] = {.count = 1, .reusable = true}, SHIFT(1408), + [2845] = {.count = 1, .reusable = true}, SHIFT(1412), + [2847] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 2, .alias_sequence_id = 2), + [2849] = {.count = 1, .reusable = true}, SHIFT(1415), + [2851] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 2), + [2853] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [2855] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [2857] = {.count = 1, .reusable = false}, SHIFT(1420), + [2859] = {.count = 1, .reusable = false}, SHIFT(1422), + [2861] = {.count = 1, .reusable = false}, SHIFT(1421), + [2863] = {.count = 1, .reusable = true}, SHIFT(1424), + [2865] = {.count = 1, .reusable = false}, SHIFT(1425), + [2867] = {.count = 1, .reusable = false}, SHIFT(1426), + [2869] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [2871] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [2873] = {.count = 1, .reusable = false}, SHIFT(1428), + [2875] = {.count = 1, .reusable = true}, SHIFT(1429), + [2877] = {.count = 1, .reusable = true}, SHIFT(1430), + [2879] = {.count = 1, .reusable = true}, SHIFT(1432), + [2881] = {.count = 1, .reusable = true}, SHIFT(1433), + [2883] = {.count = 1, .reusable = true}, SHIFT(1442), + [2885] = {.count = 1, .reusable = false}, SHIFT(1444), + [2887] = {.count = 1, .reusable = true}, SHIFT(1447), + [2889] = {.count = 1, .reusable = true}, SHIFT(1449), + [2891] = {.count = 1, .reusable = false}, SHIFT(1450), + [2893] = {.count = 1, .reusable = true}, SHIFT(1451), + [2895] = {.count = 1, .reusable = true}, SHIFT(1452), + [2897] = {.count = 1, .reusable = false}, SHIFT(1453), + [2899] = {.count = 1, .reusable = false}, SHIFT(1454), + [2901] = {.count = 1, .reusable = true}, SHIFT(1450), + [2903] = {.count = 1, .reusable = true}, SHIFT(1455), + [2905] = {.count = 1, .reusable = true}, SHIFT(1458), + [2907] = {.count = 1, .reusable = true}, SHIFT(1459), + [2909] = {.count = 1, .reusable = true}, SHIFT(1460), + [2911] = {.count = 1, .reusable = true}, SHIFT(1461), + [2913] = {.count = 1, .reusable = true}, SHIFT(1462), + [2915] = {.count = 1, .reusable = false}, SHIFT(1466), + [2917] = {.count = 1, .reusable = false}, SHIFT(1467), + [2919] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3), + [2921] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3), + [2923] = {.count = 1, .reusable = false}, REDUCE(sym_destructor_name, 2), + [2925] = {.count = 1, .reusable = true}, SHIFT(1471), + [2927] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 3), + [2929] = {.count = 1, .reusable = true}, SHIFT(1472), + [2931] = {.count = 1, .reusable = false}, SHIFT(1473), + [2933] = {.count = 1, .reusable = false}, SHIFT(1477), + [2935] = {.count = 1, .reusable = false}, SHIFT(1476), + [2937] = {.count = 1, .reusable = false}, SHIFT(1474), + [2939] = {.count = 1, .reusable = false}, REDUCE(sym_using_declaration, 3), + [2941] = {.count = 1, .reusable = true}, REDUCE(sym_using_declaration, 3), + [2943] = {.count = 1, .reusable = false}, SHIFT(1479), + [2945] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), + [2947] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), + [2949] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), + [2951] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), + [2953] = {.count = 1, .reusable = true}, SHIFT(1480), + [2955] = {.count = 1, .reusable = false}, SHIFT(1480), + [2957] = {.count = 1, .reusable = true}, SHIFT(1482), + [2959] = {.count = 1, .reusable = true}, SHIFT(1483), + [2961] = {.count = 1, .reusable = true}, SHIFT(688), + [2963] = {.count = 1, .reusable = false}, SHIFT(1484), + [2965] = {.count = 1, .reusable = true}, SHIFT(1485), + [2967] = {.count = 1, .reusable = false}, SHIFT(1491), + [2969] = {.count = 1, .reusable = false}, SHIFT(1497), + [2971] = {.count = 1, .reusable = true}, SHIFT(1498), + [2973] = {.count = 1, .reusable = true}, SHIFT(1499), + [2975] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(672), + [2978] = {.count = 1, .reusable = true}, SHIFT(1501), + [2980] = {.count = 1, .reusable = true}, SHIFT(1502), + [2982] = {.count = 1, .reusable = false}, SHIFT(1504), + [2984] = {.count = 1, .reusable = false}, SHIFT(1512), + [2986] = {.count = 1, .reusable = false}, SHIFT(1510), + [2988] = {.count = 1, .reusable = false}, SHIFT(1511), + [2990] = {.count = 1, .reusable = true}, SHIFT(1513), + [2992] = {.count = 1, .reusable = false}, SHIFT(1516), + [2994] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(672), + [2997] = {.count = 1, .reusable = true}, SHIFT(1518), + [2999] = {.count = 1, .reusable = true}, SHIFT(1519), + [3001] = {.count = 1, .reusable = false}, SHIFT(679), + [3003] = {.count = 1, .reusable = true}, SHIFT(683), + [3005] = {.count = 1, .reusable = false}, SHIFT(684), + [3007] = {.count = 1, .reusable = false}, SHIFT(678), + [3009] = {.count = 1, .reusable = false}, SHIFT(685), + [3011] = {.count = 1, .reusable = true}, SHIFT(678), + [3013] = {.count = 1, .reusable = false}, SHIFT(682), + [3015] = {.count = 1, .reusable = false}, SHIFT(677), + [3017] = {.count = 1, .reusable = true}, SHIFT(680), + [3019] = {.count = 1, .reusable = false}, SHIFT(681), + [3021] = {.count = 1, .reusable = true}, SHIFT(687), + [3023] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 2), + [3025] = {.count = 1, .reusable = false}, SHIFT(1520), + [3027] = {.count = 1, .reusable = true}, SHIFT(1521), + [3029] = {.count = 1, .reusable = true}, SHIFT(1523), + [3031] = {.count = 1, .reusable = false}, SHIFT(1523), + [3033] = {.count = 1, .reusable = true}, SHIFT(1522), + [3035] = {.count = 1, .reusable = false}, SHIFT(1527), + [3037] = {.count = 1, .reusable = true}, SHIFT(1526), + [3039] = {.count = 1, .reusable = true}, SHIFT(1529), + [3041] = {.count = 1, .reusable = false}, SHIFT(1529), + [3043] = {.count = 1, .reusable = true}, SHIFT(1528), + [3045] = {.count = 1, .reusable = true}, SHIFT(1533), + [3047] = {.count = 1, .reusable = false}, SHIFT(1533), + [3049] = {.count = 1, .reusable = true}, SHIFT(1531), + [3051] = {.count = 1, .reusable = true}, SHIFT(1532), + [3053] = {.count = 1, .reusable = true}, SHIFT(1535), + [3055] = {.count = 1, .reusable = true}, SHIFT(1536), + [3057] = {.count = 1, .reusable = false}, SHIFT(1536), + [3059] = {.count = 1, .reusable = true}, SHIFT(1537), + [3061] = {.count = 1, .reusable = false}, SHIFT(1537), + [3063] = {.count = 1, .reusable = true}, SHIFT(1538), + [3065] = {.count = 1, .reusable = false}, SHIFT(1538), + [3067] = {.count = 1, .reusable = true}, SHIFT(1539), + [3069] = {.count = 1, .reusable = false}, SHIFT(1539), + [3071] = {.count = 1, .reusable = true}, SHIFT(1540), + [3073] = {.count = 1, .reusable = false}, SHIFT(1540), + [3075] = {.count = 1, .reusable = true}, SHIFT(1541), + [3077] = {.count = 1, .reusable = false}, SHIFT(1541), + [3079] = {.count = 1, .reusable = true}, SHIFT(1542), + [3081] = {.count = 1, .reusable = false}, SHIFT(1542), + [3083] = {.count = 1, .reusable = true}, SHIFT(1543), + [3085] = {.count = 1, .reusable = false}, SHIFT(1543), + [3087] = {.count = 1, .reusable = true}, SHIFT(1544), + [3089] = {.count = 1, .reusable = false}, SHIFT(1544), + [3091] = {.count = 1, .reusable = true}, SHIFT(1545), + [3093] = {.count = 1, .reusable = false}, SHIFT(1545), + [3095] = {.count = 1, .reusable = true}, SHIFT(1546), + [3097] = {.count = 1, .reusable = false}, SHIFT(1546), + [3099] = {.count = 1, .reusable = true}, SHIFT(1548), + [3101] = {.count = 1, .reusable = true}, SHIFT(1547), + [3103] = {.count = 1, .reusable = true}, SHIFT(1549), + [3105] = {.count = 1, .reusable = false}, SHIFT(1553), + [3107] = {.count = 1, .reusable = true}, SHIFT(1552), + [3109] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [3111] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [3113] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3), + [3115] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3), + [3117] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [3119] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [3121] = {.count = 1, .reusable = true}, SHIFT(1558), + [3123] = {.count = 1, .reusable = true}, SHIFT(1559), + [3125] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(706), + [3128] = {.count = 1, .reusable = true}, SHIFT(1562), + [3130] = {.count = 1, .reusable = false}, SHIFT(1562), + [3132] = {.count = 1, .reusable = true}, SHIFT(1561), + [3134] = {.count = 1, .reusable = true}, SHIFT(1564), + [3136] = {.count = 1, .reusable = false}, SHIFT(1564), + [3138] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 3), + [3140] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 3), + [3142] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 8), + [3144] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 8), + [3146] = {.count = 1, .reusable = true}, SHIFT(1567), + [3148] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [3150] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [3152] = {.count = 1, .reusable = true}, SHIFT(1568), + [3154] = {.count = 1, .reusable = false}, REDUCE(sym_try_statement, 3), + [3156] = {.count = 1, .reusable = true}, REDUCE(sym_try_statement, 3), + [3158] = {.count = 1, .reusable = false}, SHIFT(718), + [3160] = {.count = 1, .reusable = false}, SHIFT(1571), + [3162] = {.count = 1, .reusable = true}, SHIFT(1572), + [3164] = {.count = 1, .reusable = true}, SHIFT(1575), + [3166] = {.count = 1, .reusable = false}, SHIFT(1575), + [3168] = {.count = 1, .reusable = true}, SHIFT(1574), + [3170] = {.count = 1, .reusable = true}, SHIFT(1576), + [3172] = {.count = 1, .reusable = true}, SHIFT(1578), + [3174] = {.count = 1, .reusable = false}, SHIFT(1579), + [3176] = {.count = 1, .reusable = true}, SHIFT(1580), + [3178] = {.count = 1, .reusable = true}, SHIFT(1579), + [3180] = {.count = 1, .reusable = true}, SHIFT(1582), + [3182] = {.count = 1, .reusable = true}, SHIFT(1584), + [3184] = {.count = 1, .reusable = false}, SHIFT(1585), + [3186] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [3188] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [3190] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(732), + [3193] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3195] = {.count = 1, .reusable = true}, SHIFT(1586), + [3197] = {.count = 1, .reusable = true}, SHIFT(1587), + [3199] = {.count = 1, .reusable = false}, SHIFT(1588), + [3201] = {.count = 1, .reusable = true}, SHIFT(1589), + [3203] = {.count = 1, .reusable = true}, SHIFT(1591), + [3205] = {.count = 1, .reusable = false}, SHIFT(1591), + [3207] = {.count = 1, .reusable = true}, SHIFT(1590), + [3209] = {.count = 1, .reusable = true}, SHIFT(1592), + [3211] = {.count = 1, .reusable = false}, SHIFT(1592), + [3213] = {.count = 1, .reusable = true}, SHIFT(1593), + [3215] = {.count = 1, .reusable = false}, SHIFT(1593), + [3217] = {.count = 1, .reusable = true}, SHIFT(1597), + [3219] = {.count = 1, .reusable = false}, SHIFT(1596), + [3221] = {.count = 1, .reusable = false}, SHIFT(1598), + [3223] = {.count = 1, .reusable = true}, SHIFT(1599), + [3225] = {.count = 1, .reusable = true}, SHIFT(1600), + [3227] = {.count = 1, .reusable = false}, SHIFT(1601), + [3229] = {.count = 1, .reusable = true}, SHIFT(1602), + [3231] = {.count = 1, .reusable = false}, SHIFT(1602), + [3233] = {.count = 1, .reusable = true}, SHIFT(1604), + [3235] = {.count = 1, .reusable = true}, SHIFT(1603), + [3237] = {.count = 1, .reusable = false}, SHIFT(1604), + [3239] = {.count = 1, .reusable = true}, SHIFT(1605), + [3241] = {.count = 1, .reusable = false}, SHIFT(1605), + [3243] = {.count = 1, .reusable = true}, SHIFT(1608), + [3245] = {.count = 1, .reusable = true}, SHIFT(1606), + [3247] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(1607), + [3250] = {.count = 1, .reusable = false}, SHIFT(1611), + [3252] = {.count = 1, .reusable = false}, SHIFT(1619), + [3254] = {.count = 1, .reusable = false}, SHIFT(1618), + [3256] = {.count = 1, .reusable = true}, SHIFT(1614), + [3258] = {.count = 1, .reusable = false}, SHIFT(1616), [3260] = {.count = 1, .reusable = false}, SHIFT(1617), - [3262] = {.count = 1, .reusable = false}, SHIFT(1618), - [3264] = {.count = 1, .reusable = false}, SHIFT(1620), - [3266] = {.count = 1, .reusable = true}, SHIFT(1629), - [3268] = {.count = 1, .reusable = false}, SHIFT(1629), - [3270] = {.count = 1, .reusable = true}, SHIFT(1631), - [3272] = {.count = 1, .reusable = false}, SHIFT(1631), - [3274] = {.count = 1, .reusable = true}, SHIFT(1630), - [3276] = {.count = 1, .reusable = true}, SHIFT(1632), - [3278] = {.count = 1, .reusable = true}, SHIFT(1650), - [3280] = {.count = 1, .reusable = false}, SHIFT(1650), - [3282] = {.count = 1, .reusable = false}, SHIFT(1652), - [3284] = {.count = 1, .reusable = true}, SHIFT(1651), - [3286] = {.count = 1, .reusable = true}, SHIFT(1654), - [3288] = {.count = 1, .reusable = false}, SHIFT(1654), - [3290] = {.count = 1, .reusable = true}, SHIFT(1653), - [3292] = {.count = 1, .reusable = true}, SHIFT(1658), - [3294] = {.count = 1, .reusable = false}, SHIFT(1658), - [3296] = {.count = 1, .reusable = true}, SHIFT(1656), - [3298] = {.count = 1, .reusable = true}, SHIFT(1657), - [3300] = {.count = 1, .reusable = false}, SHIFT(1660), - [3302] = {.count = 1, .reusable = true}, SHIFT(1661), - [3304] = {.count = 1, .reusable = false}, SHIFT(1667), - [3306] = {.count = 1, .reusable = false}, SHIFT(1673), - [3308] = {.count = 1, .reusable = true}, SHIFT(1674), - [3310] = {.count = 1, .reusable = true}, SHIFT(1675), - [3312] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(766), - [3315] = {.count = 1, .reusable = true}, SHIFT(1677), - [3317] = {.count = 1, .reusable = true}, SHIFT(1678), - [3319] = {.count = 1, .reusable = false}, SHIFT(1680), - [3321] = {.count = 1, .reusable = true}, SHIFT(1686), - [3323] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(766), - [3326] = {.count = 1, .reusable = false}, SHIFT(1690), - [3328] = {.count = 1, .reusable = false}, SHIFT(1688), - [3330] = {.count = 1, .reusable = false}, SHIFT(1689), - [3332] = {.count = 1, .reusable = true}, SHIFT(1691), - [3334] = {.count = 1, .reusable = true}, SHIFT(1692), - [3336] = {.count = 1, .reusable = false}, SHIFT(1695), - [3338] = {.count = 1, .reusable = true}, SHIFT(1696), - [3340] = {.count = 1, .reusable = true}, SHIFT(1697), - [3342] = {.count = 1, .reusable = false}, SHIFT(1699), - [3344] = {.count = 1, .reusable = true}, SHIFT(1698), - [3346] = {.count = 1, .reusable = true}, SHIFT(1701), - [3348] = {.count = 1, .reusable = false}, SHIFT(1701), - [3350] = {.count = 1, .reusable = true}, SHIFT(1700), - [3352] = {.count = 1, .reusable = true}, SHIFT(1703), - [3354] = {.count = 1, .reusable = false}, SHIFT(1703), - [3356] = {.count = 1, .reusable = true}, SHIFT(1704), - [3358] = {.count = 1, .reusable = false}, SHIFT(1704), - [3360] = {.count = 1, .reusable = true}, SHIFT(1705), - [3362] = {.count = 1, .reusable = false}, SHIFT(1705), - [3364] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 3), - [3366] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 3), - [3368] = {.count = 1, .reusable = true}, SHIFT(1706), - [3370] = {.count = 1, .reusable = false}, SHIFT(1706), - [3372] = {.count = 1, .reusable = true}, SHIFT(1707), - [3374] = {.count = 1, .reusable = false}, SHIFT(1707), - [3376] = {.count = 1, .reusable = true}, SHIFT(1708), - [3378] = {.count = 1, .reusable = true}, SHIFT(1711), - [3380] = {.count = 1, .reusable = false}, SHIFT(1711), - [3382] = {.count = 1, .reusable = true}, SHIFT(1712), - [3384] = {.count = 1, .reusable = false}, SHIFT(1712), - [3386] = {.count = 1, .reusable = true}, SHIFT(1713), - [3388] = {.count = 1, .reusable = false}, SHIFT(1713), - [3390] = {.count = 1, .reusable = true}, SHIFT(1714), - [3392] = {.count = 1, .reusable = false}, SHIFT(1714), - [3394] = {.count = 1, .reusable = true}, SHIFT(1715), - [3396] = {.count = 1, .reusable = false}, SHIFT(1715), - [3398] = {.count = 1, .reusable = true}, SHIFT(1716), - [3400] = {.count = 1, .reusable = false}, SHIFT(1716), - [3402] = {.count = 1, .reusable = true}, SHIFT(1717), - [3404] = {.count = 1, .reusable = false}, SHIFT(1717), - [3406] = {.count = 1, .reusable = true}, SHIFT(1718), - [3408] = {.count = 1, .reusable = false}, SHIFT(1718), - [3410] = {.count = 1, .reusable = true}, SHIFT(1719), - [3412] = {.count = 1, .reusable = true}, SHIFT(1722), - [3414] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 3, .alias_sequence_id = 2), - [3416] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 3, .alias_sequence_id = 2), - [3418] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 3), - [3420] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 3), - [3422] = {.count = 1, .reusable = false}, SHIFT(1729), - [3424] = {.count = 1, .reusable = false}, SHIFT(1730), - [3426] = {.count = 1, .reusable = true}, SHIFT(1731), - [3428] = {.count = 1, .reusable = true}, SHIFT(1732), - [3430] = {.count = 1, .reusable = true}, SHIFT(1733), - [3432] = {.count = 1, .reusable = false}, SHIFT(1734), - [3434] = {.count = 1, .reusable = true}, SHIFT(1735), - [3436] = {.count = 1, .reusable = false}, SHIFT(1736), + [3262] = {.count = 1, .reusable = false}, SHIFT(1612), + [3264] = {.count = 1, .reusable = false}, SHIFT(1613), + [3266] = {.count = 1, .reusable = false}, SHIFT(1615), + [3268] = {.count = 1, .reusable = true}, SHIFT(1624), + [3270] = {.count = 1, .reusable = false}, SHIFT(1624), + [3272] = {.count = 1, .reusable = true}, SHIFT(1626), + [3274] = {.count = 1, .reusable = false}, SHIFT(1626), + [3276] = {.count = 1, .reusable = true}, SHIFT(1625), + [3278] = {.count = 1, .reusable = true}, SHIFT(1643), + [3280] = {.count = 1, .reusable = true}, SHIFT(1645), + [3282] = {.count = 1, .reusable = false}, SHIFT(1645), + [3284] = {.count = 1, .reusable = true}, SHIFT(1646), + [3286] = {.count = 1, .reusable = false}, SHIFT(1648), + [3288] = {.count = 1, .reusable = true}, SHIFT(1647), + [3290] = {.count = 1, .reusable = true}, SHIFT(1650), + [3292] = {.count = 1, .reusable = false}, SHIFT(1650), + [3294] = {.count = 1, .reusable = true}, SHIFT(1649), + [3296] = {.count = 1, .reusable = true}, SHIFT(1654), + [3298] = {.count = 1, .reusable = false}, SHIFT(1654), + [3300] = {.count = 1, .reusable = true}, SHIFT(1652), + [3302] = {.count = 1, .reusable = true}, SHIFT(1653), + [3304] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declarator, 3), + [3306] = {.count = 1, .reusable = true}, SHIFT(766), + [3308] = {.count = 1, .reusable = true}, SHIFT(1656), + [3310] = {.count = 1, .reusable = false}, SHIFT(1658), + [3312] = {.count = 1, .reusable = true}, SHIFT(1659), + [3314] = {.count = 1, .reusable = false}, SHIFT(1665), + [3316] = {.count = 1, .reusable = false}, SHIFT(1671), + [3318] = {.count = 1, .reusable = true}, SHIFT(1672), + [3320] = {.count = 1, .reusable = true}, SHIFT(1673), + [3322] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(768), + [3325] = {.count = 1, .reusable = true}, SHIFT(1675), + [3327] = {.count = 1, .reusable = true}, SHIFT(1676), + [3329] = {.count = 1, .reusable = false}, SHIFT(1678), + [3331] = {.count = 1, .reusable = false}, SHIFT(1686), + [3333] = {.count = 1, .reusable = false}, SHIFT(1684), + [3335] = {.count = 1, .reusable = false}, SHIFT(1685), + [3337] = {.count = 1, .reusable = true}, SHIFT(1687), + [3339] = {.count = 1, .reusable = true}, SHIFT(1688), + [3341] = {.count = 1, .reusable = false}, SHIFT(1691), + [3343] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(768), + [3346] = {.count = 1, .reusable = true}, SHIFT(1693), + [3348] = {.count = 1, .reusable = true}, SHIFT(1694), + [3350] = {.count = 1, .reusable = true}, SHIFT(1695), + [3352] = {.count = 1, .reusable = true}, SHIFT(1697), + [3354] = {.count = 1, .reusable = false}, SHIFT(1697), + [3356] = {.count = 1, .reusable = true}, SHIFT(1696), + [3358] = {.count = 1, .reusable = true}, SHIFT(1699), + [3360] = {.count = 1, .reusable = false}, SHIFT(1699), + [3362] = {.count = 1, .reusable = true}, SHIFT(1700), + [3364] = {.count = 1, .reusable = false}, SHIFT(1700), + [3366] = {.count = 1, .reusable = true}, SHIFT(1701), + [3368] = {.count = 1, .reusable = false}, SHIFT(1701), + [3370] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 3), + [3372] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 3), + [3374] = {.count = 1, .reusable = true}, SHIFT(1702), + [3376] = {.count = 1, .reusable = false}, SHIFT(1702), + [3378] = {.count = 1, .reusable = true}, SHIFT(1703), + [3380] = {.count = 1, .reusable = false}, SHIFT(1703), + [3382] = {.count = 1, .reusable = true}, SHIFT(1704), + [3384] = {.count = 1, .reusable = true}, SHIFT(1707), + [3386] = {.count = 1, .reusable = false}, SHIFT(1707), + [3388] = {.count = 1, .reusable = true}, SHIFT(1708), + [3390] = {.count = 1, .reusable = false}, SHIFT(1708), + [3392] = {.count = 1, .reusable = true}, SHIFT(1709), + [3394] = {.count = 1, .reusable = false}, SHIFT(1709), + [3396] = {.count = 1, .reusable = true}, SHIFT(1710), + [3398] = {.count = 1, .reusable = false}, SHIFT(1710), + [3400] = {.count = 1, .reusable = true}, SHIFT(1711), + [3402] = {.count = 1, .reusable = false}, SHIFT(1711), + [3404] = {.count = 1, .reusable = true}, SHIFT(1712), + [3406] = {.count = 1, .reusable = false}, SHIFT(1712), + [3408] = {.count = 1, .reusable = true}, SHIFT(1713), + [3410] = {.count = 1, .reusable = false}, SHIFT(1713), + [3412] = {.count = 1, .reusable = true}, SHIFT(1714), + [3414] = {.count = 1, .reusable = false}, SHIFT(1714), + [3416] = {.count = 1, .reusable = true}, SHIFT(1715), + [3418] = {.count = 1, .reusable = true}, SHIFT(1717), + [3420] = {.count = 1, .reusable = false}, SHIFT(1721), + [3422] = {.count = 1, .reusable = true}, SHIFT(1720), + [3424] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 3, .alias_sequence_id = 2), + [3426] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 3, .alias_sequence_id = 2), + [3428] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 3), + [3430] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 3), + [3432] = {.count = 1, .reusable = false}, SHIFT(1727), + [3434] = {.count = 1, .reusable = false}, SHIFT(1728), + [3436] = {.count = 1, .reusable = true}, SHIFT(1729), [3438] = {.count = 1, .reusable = true}, SHIFT(1730), - [3440] = {.count = 1, .reusable = false}, SHIFT(1737), - [3442] = {.count = 1, .reusable = true}, SHIFT(1740), - [3444] = {.count = 1, .reusable = true}, SHIFT(1739), - [3446] = {.count = 1, .reusable = false}, SHIFT(1740), - [3448] = {.count = 1, .reusable = false}, SHIFT(1741), - [3450] = {.count = 1, .reusable = true}, SHIFT(1741), - [3452] = {.count = 1, .reusable = false}, SHIFT(1744), - [3454] = {.count = 1, .reusable = false}, SHIFT(1743), - [3456] = {.count = 1, .reusable = false}, SHIFT(1742), - [3458] = {.count = 1, .reusable = true}, SHIFT(1747), - [3460] = {.count = 1, .reusable = false}, SHIFT(1747), - [3462] = {.count = 1, .reusable = true}, SHIFT(1746), - [3464] = {.count = 1, .reusable = true}, SHIFT(1748), - [3466] = {.count = 1, .reusable = false}, SHIFT(1749), - [3468] = {.count = 1, .reusable = false}, SHIFT(1750), - [3470] = {.count = 1, .reusable = true}, SHIFT(1751), - [3472] = {.count = 1, .reusable = true}, SHIFT(1752), - [3474] = {.count = 1, .reusable = true}, SHIFT(1753), - [3476] = {.count = 1, .reusable = true}, SHIFT(1754), - [3478] = {.count = 1, .reusable = false}, SHIFT(1755), - [3480] = {.count = 1, .reusable = false}, SHIFT(1756), - [3482] = {.count = 1, .reusable = true}, SHIFT(1757), - [3484] = {.count = 1, .reusable = true}, SHIFT(1749), - [3486] = {.count = 1, .reusable = false}, SHIFT(1753), - [3488] = {.count = 1, .reusable = true}, SHIFT(1758), - [3490] = {.count = 1, .reusable = true}, SHIFT(1759), - [3492] = {.count = 1, .reusable = true}, SHIFT(1761), - [3494] = {.count = 1, .reusable = false}, SHIFT(1761), - [3496] = {.count = 1, .reusable = true}, SHIFT(1762), - [3498] = {.count = 1, .reusable = true}, SHIFT(1765), - [3500] = {.count = 1, .reusable = true}, SHIFT(1768), - [3502] = {.count = 1, .reusable = false}, SHIFT(1768), - [3504] = {.count = 1, .reusable = true}, SHIFT(1767), - [3506] = {.count = 1, .reusable = true}, SHIFT(1770), - [3508] = {.count = 1, .reusable = true}, SHIFT(1772), - [3510] = {.count = 1, .reusable = false}, SHIFT(1772), - [3512] = {.count = 1, .reusable = true}, SHIFT(1773), - [3514] = {.count = 1, .reusable = true}, SHIFT(1774), - [3516] = {.count = 1, .reusable = true}, SHIFT(1775), - [3518] = {.count = 1, .reusable = true}, SHIFT(1776), - [3520] = {.count = 1, .reusable = true}, SHIFT(1779), - [3522] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 2), - [3524] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 2), - [3526] = {.count = 1, .reusable = true}, SHIFT(1781), - [3528] = {.count = 1, .reusable = false}, SHIFT(1780), - [3530] = {.count = 1, .reusable = false}, SHIFT(1786), - [3532] = {.count = 1, .reusable = false}, SHIFT(1784), - [3534] = {.count = 1, .reusable = false}, SHIFT(1785), - [3536] = {.count = 1, .reusable = true}, SHIFT(1787), - [3538] = {.count = 1, .reusable = false}, SHIFT(1790), - [3540] = {.count = 1, .reusable = false}, SHIFT(1792), - [3542] = {.count = 1, .reusable = false}, SHIFT(1789), - [3544] = {.count = 1, .reusable = true}, SHIFT(1795), - [3546] = {.count = 1, .reusable = true}, SHIFT(1796), - [3548] = {.count = 1, .reusable = true}, SHIFT(1797), - [3550] = {.count = 1, .reusable = false}, SHIFT(1799), - [3552] = {.count = 1, .reusable = false}, SHIFT(1800), - [3554] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1179), - [3557] = {.count = 1, .reusable = true}, SHIFT(1801), - [3559] = {.count = 1, .reusable = false}, SHIFT(1802), - [3561] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), - [3563] = {.count = 1, .reusable = true}, SHIFT(1803), - [3565] = {.count = 1, .reusable = true}, SHIFT(1804), - [3567] = {.count = 1, .reusable = false}, SHIFT(1805), - [3569] = {.count = 1, .reusable = true}, SHIFT(1802), - [3571] = {.count = 1, .reusable = true}, SHIFT(1808), - [3573] = {.count = 1, .reusable = true}, SHIFT(1806), - [3575] = {.count = 1, .reusable = true}, SHIFT(1811), - [3577] = {.count = 1, .reusable = false}, SHIFT(1812), - [3579] = {.count = 1, .reusable = false}, SHIFT(1814), - [3581] = {.count = 1, .reusable = false}, REDUCE(sym_template_instantiation, 3), - [3583] = {.count = 1, .reusable = true}, REDUCE(sym_template_instantiation, 3), - [3585] = {.count = 1, .reusable = true}, SHIFT(1816), - [3587] = {.count = 1, .reusable = true}, SHIFT(1815), - [3589] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(874), - [3592] = {.count = 1, .reusable = false}, REDUCE(sym_template_declaration, 3), - [3594] = {.count = 1, .reusable = true}, REDUCE(sym_template_declaration, 3), - [3596] = {.count = 1, .reusable = false}, SHIFT(1819), - [3598] = {.count = 1, .reusable = false}, SHIFT(1820), - [3600] = {.count = 1, .reusable = true}, SHIFT(1821), - [3602] = {.count = 1, .reusable = true}, SHIFT(1822), - [3604] = {.count = 1, .reusable = true}, SHIFT(1823), - [3606] = {.count = 1, .reusable = true}, SHIFT(1825), - [3608] = {.count = 1, .reusable = false}, SHIFT(1825), - [3610] = {.count = 1, .reusable = true}, SHIFT(1824), - [3612] = {.count = 1, .reusable = false}, SHIFT(1827), - [3614] = {.count = 1, .reusable = true}, SHIFT(1829), - [3616] = {.count = 1, .reusable = true}, SHIFT(1828), - [3618] = {.count = 1, .reusable = false}, SHIFT(1829), - [3620] = {.count = 1, .reusable = false}, SHIFT(1832), - [3622] = {.count = 1, .reusable = false}, SHIFT(1831), - [3624] = {.count = 1, .reusable = false}, SHIFT(1830), - [3626] = {.count = 1, .reusable = true}, SHIFT(1835), - [3628] = {.count = 1, .reusable = false}, SHIFT(1835), - [3630] = {.count = 1, .reusable = true}, SHIFT(1834), - [3632] = {.count = 1, .reusable = true}, SHIFT(1849), - [3634] = {.count = 1, .reusable = false}, SHIFT(1849), - [3636] = {.count = 1, .reusable = false}, SHIFT(1850), - [3638] = {.count = 1, .reusable = true}, SHIFT(1851), - [3640] = {.count = 1, .reusable = false}, SHIFT(1852), - [3642] = {.count = 1, .reusable = true}, SHIFT(1853), - [3644] = {.count = 1, .reusable = false}, SHIFT(1853), - [3646] = {.count = 1, .reusable = true}, SHIFT(1854), - [3648] = {.count = 1, .reusable = false}, SHIFT(1854), - [3650] = {.count = 1, .reusable = true}, SHIFT(1855), - [3652] = {.count = 1, .reusable = false}, SHIFT(1855), - [3654] = {.count = 1, .reusable = true}, SHIFT(1856), - [3656] = {.count = 1, .reusable = false}, SHIFT(1856), - [3658] = {.count = 1, .reusable = true}, SHIFT(1857), - [3660] = {.count = 1, .reusable = false}, SHIFT(1857), - [3662] = {.count = 1, .reusable = true}, SHIFT(1858), - [3664] = {.count = 1, .reusable = false}, SHIFT(1858), - [3666] = {.count = 1, .reusable = true}, SHIFT(1859), - [3668] = {.count = 1, .reusable = false}, SHIFT(1859), - [3670] = {.count = 1, .reusable = true}, SHIFT(1860), - [3672] = {.count = 1, .reusable = false}, SHIFT(1860), - [3674] = {.count = 1, .reusable = true}, SHIFT(1861), - [3676] = {.count = 1, .reusable = false}, SHIFT(1861), - [3678] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [3680] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [3682] = {.count = 1, .reusable = true}, SHIFT(1862), - [3684] = {.count = 1, .reusable = false}, SHIFT(1862), - [3686] = {.count = 1, .reusable = true}, SHIFT(1864), - [3688] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), - [3690] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), - [3692] = {.count = 1, .reusable = true}, SHIFT(1865), - [3694] = {.count = 1, .reusable = true}, SHIFT(1866), - [3696] = {.count = 1, .reusable = true}, SHIFT(1867), - [3698] = {.count = 1, .reusable = false}, SHIFT(1868), - [3700] = {.count = 1, .reusable = false}, SHIFT(1869), - [3702] = {.count = 1, .reusable = false}, SHIFT(1870), - [3704] = {.count = 1, .reusable = false}, SHIFT(1871), - [3706] = {.count = 1, .reusable = false}, SHIFT(1872), - [3708] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [3710] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [3712] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 3), - [3714] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 3), - [3716] = {.count = 1, .reusable = false}, SHIFT(1875), - [3718] = {.count = 1, .reusable = true}, SHIFT(1874), - [3720] = {.count = 1, .reusable = true}, SHIFT(1876), - [3722] = {.count = 1, .reusable = true}, SHIFT(1879), - [3724] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer_list, 2), - [3726] = {.count = 1, .reusable = true}, SHIFT(1880), - [3728] = {.count = 1, .reusable = true}, SHIFT(1882), - [3730] = {.count = 1, .reusable = true}, SHIFT(1883), - [3732] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3734] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3736] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(36), - [3739] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_identifier, 3), - [3741] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_identifier, 3), - [3743] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), - [3746] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), - [3748] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), - [3750] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_namespace_identifier, 3, .alias_sequence_id = 10), - [3752] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), - [3755] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [3757] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [3759] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [3761] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [3763] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [3765] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [3767] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), - [3769] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [3771] = {.count = 1, .reusable = false}, SHIFT(1884), - [3773] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), - [3775] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), - [3777] = {.count = 1, .reusable = true}, SHIFT(1885), - [3779] = {.count = 2, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), SHIFT(671), - [3782] = {.count = 1, .reusable = true}, SHIFT(671), - [3784] = {.count = 1, .reusable = true}, SHIFT(1888), - [3786] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3), - [3788] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3), - [3790] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [3792] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [3794] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [3796] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [3798] = {.count = 1, .reusable = false}, SHIFT(1890), - [3800] = {.count = 1, .reusable = false}, SHIFT(1891), - [3802] = {.count = 1, .reusable = true}, SHIFT(1892), - [3804] = {.count = 1, .reusable = true}, SHIFT(1893), - [3806] = {.count = 1, .reusable = true}, SHIFT(1894), - [3808] = {.count = 1, .reusable = false}, SHIFT(1895), - [3810] = {.count = 1, .reusable = true}, SHIFT(1896), - [3812] = {.count = 1, .reusable = false}, SHIFT(1897), - [3814] = {.count = 1, .reusable = true}, SHIFT(1891), - [3816] = {.count = 1, .reusable = false}, SHIFT(1898), - [3818] = {.count = 1, .reusable = true}, SHIFT(1901), - [3820] = {.count = 1, .reusable = true}, SHIFT(1900), - [3822] = {.count = 1, .reusable = false}, SHIFT(1901), - [3824] = {.count = 1, .reusable = true}, SHIFT(1902), - [3826] = {.count = 1, .reusable = false}, SHIFT(1902), - [3828] = {.count = 1, .reusable = false}, SHIFT(1905), - [3830] = {.count = 1, .reusable = false}, SHIFT(1904), - [3832] = {.count = 1, .reusable = false}, SHIFT(1903), - [3834] = {.count = 1, .reusable = true}, SHIFT(1908), - [3836] = {.count = 1, .reusable = false}, SHIFT(1908), - [3838] = {.count = 1, .reusable = true}, SHIFT(1907), - [3840] = {.count = 1, .reusable = true}, SHIFT(1909), - [3842] = {.count = 1, .reusable = false}, SHIFT(1910), - [3844] = {.count = 1, .reusable = false}, SHIFT(1911), - [3846] = {.count = 1, .reusable = true}, SHIFT(1913), - [3848] = {.count = 1, .reusable = true}, SHIFT(1914), - [3850] = {.count = 1, .reusable = true}, SHIFT(1915), - [3852] = {.count = 1, .reusable = true}, SHIFT(1916), - [3854] = {.count = 1, .reusable = false}, SHIFT(1917), - [3856] = {.count = 1, .reusable = false}, SHIFT(1918), - [3858] = {.count = 1, .reusable = true}, SHIFT(1919), - [3860] = {.count = 1, .reusable = true}, SHIFT(1910), - [3862] = {.count = 1, .reusable = false}, SHIFT(1915), - [3864] = {.count = 1, .reusable = true}, SHIFT(1920), - [3866] = {.count = 1, .reusable = true}, SHIFT(1912), - [3868] = {.count = 1, .reusable = true}, SHIFT(1922), - [3870] = {.count = 1, .reusable = false}, SHIFT(1922), - [3872] = {.count = 1, .reusable = false}, SHIFT(1924), - [3874] = {.count = 1, .reusable = true}, SHIFT(1925), - [3876] = {.count = 1, .reusable = false}, SHIFT(1925), - [3878] = {.count = 1, .reusable = true}, SHIFT(1934), - [3880] = {.count = 1, .reusable = false}, SHIFT(1926), - [3882] = {.count = 1, .reusable = true}, SHIFT(1927), - [3884] = {.count = 1, .reusable = false}, SHIFT(1934), - [3886] = {.count = 1, .reusable = true}, SHIFT(1928), - [3888] = {.count = 1, .reusable = true}, SHIFT(1929), - [3890] = {.count = 1, .reusable = false}, SHIFT(1930), - [3892] = {.count = 1, .reusable = true}, SHIFT(1931), - [3894] = {.count = 1, .reusable = false}, SHIFT(1932), - [3896] = {.count = 1, .reusable = true}, SHIFT(1926), - [3898] = {.count = 1, .reusable = false}, SHIFT(1933), - [3900] = {.count = 1, .reusable = true}, SHIFT(1938), - [3902] = {.count = 1, .reusable = true}, SHIFT(1937), - [3904] = {.count = 1, .reusable = false}, SHIFT(1938), - [3906] = {.count = 1, .reusable = true}, SHIFT(1939), - [3908] = {.count = 1, .reusable = false}, SHIFT(1939), - [3910] = {.count = 1, .reusable = true}, SHIFT(1940), - [3912] = {.count = 1, .reusable = false}, SHIFT(1940), - [3914] = {.count = 1, .reusable = false}, SHIFT(1941), - [3916] = {.count = 1, .reusable = false}, SHIFT(1946), - [3918] = {.count = 1, .reusable = false}, SHIFT(1945), - [3920] = {.count = 1, .reusable = false}, SHIFT(1944), - [3922] = {.count = 1, .reusable = false}, SHIFT(1942), - [3924] = {.count = 1, .reusable = false}, SHIFT(1943), - [3926] = {.count = 1, .reusable = true}, SHIFT(1949), - [3928] = {.count = 1, .reusable = false}, SHIFT(1949), - [3930] = {.count = 1, .reusable = true}, SHIFT(1948), - [3932] = {.count = 1, .reusable = true}, SHIFT(1950), - [3934] = {.count = 1, .reusable = false}, SHIFT(1951), - [3936] = {.count = 1, .reusable = false}, SHIFT(1952), - [3938] = {.count = 1, .reusable = true}, SHIFT(1953), - [3940] = {.count = 1, .reusable = true}, SHIFT(1954), - [3942] = {.count = 1, .reusable = true}, SHIFT(1955), - [3944] = {.count = 1, .reusable = true}, SHIFT(1956), - [3946] = {.count = 1, .reusable = true}, SHIFT(1957), - [3948] = {.count = 1, .reusable = false}, SHIFT(1958), - [3950] = {.count = 1, .reusable = false}, SHIFT(1959), - [3952] = {.count = 1, .reusable = true}, SHIFT(1960), - [3954] = {.count = 1, .reusable = true}, SHIFT(1951), - [3956] = {.count = 1, .reusable = false}, SHIFT(1956), - [3958] = {.count = 1, .reusable = true}, SHIFT(1961), - [3960] = {.count = 1, .reusable = true}, SHIFT(1962), - [3962] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(1963), - [3965] = {.count = 1, .reusable = true}, SHIFT(1965), - [3967] = {.count = 1, .reusable = true}, SHIFT(1966), - [3969] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [3971] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 2), - [3973] = {.count = 1, .reusable = false}, SHIFT(1969), - [3975] = {.count = 1, .reusable = false}, SHIFT(1971), - [3977] = {.count = 1, .reusable = false}, SHIFT(1968), - [3979] = {.count = 1, .reusable = false}, SHIFT(1974), - [3981] = {.count = 1, .reusable = false}, SHIFT(1975), - [3983] = {.count = 1, .reusable = true}, SHIFT(1976), - [3985] = {.count = 1, .reusable = false}, SHIFT(1977), - [3987] = {.count = 1, .reusable = true}, SHIFT(1978), - [3989] = {.count = 1, .reusable = true}, SHIFT(1977), - [3991] = {.count = 1, .reusable = true}, SHIFT(1980), - [3993] = {.count = 1, .reusable = true}, SHIFT(1979), - [3995] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), - [3997] = {.count = 1, .reusable = true}, SHIFT(1984), - [3999] = {.count = 1, .reusable = true}, SHIFT(1986), - [4001] = {.count = 1, .reusable = false}, SHIFT(1986), - [4003] = {.count = 1, .reusable = true}, SHIFT(1985), - [4005] = {.count = 1, .reusable = false}, SHIFT(1990), - [4007] = {.count = 1, .reusable = false}, SHIFT(1991), - [4009] = {.count = 1, .reusable = false}, SHIFT(1988), - [4011] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3), - [4013] = {.count = 1, .reusable = true}, SHIFT(1992), - [4015] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_reference_declarator, 2), - [4017] = {.count = 1, .reusable = true}, SHIFT(1993), - [4019] = {.count = 1, .reusable = true}, SHIFT(1994), - [4021] = {.count = 1, .reusable = true}, SHIFT(1995), - [4023] = {.count = 1, .reusable = true}, SHIFT(1997), - [4025] = {.count = 1, .reusable = false}, SHIFT(1997), - [4027] = {.count = 1, .reusable = true}, SHIFT(1999), - [4029] = {.count = 1, .reusable = true}, SHIFT(2000), - [4031] = {.count = 1, .reusable = false}, SHIFT(2001), - [4033] = {.count = 1, .reusable = true}, SHIFT(2002), - [4035] = {.count = 1, .reusable = true}, SHIFT(2005), - [4037] = {.count = 1, .reusable = false}, SHIFT(2005), - [4039] = {.count = 1, .reusable = true}, SHIFT(2007), - [4041] = {.count = 1, .reusable = true}, SHIFT(2024), - [4043] = {.count = 1, .reusable = false}, SHIFT(2009), - [4045] = {.count = 1, .reusable = false}, SHIFT(2024), - [4047] = {.count = 1, .reusable = true}, SHIFT(2010), - [4049] = {.count = 1, .reusable = false}, SHIFT(2011), - [4051] = {.count = 1, .reusable = false}, SHIFT(2012), - [4053] = {.count = 1, .reusable = false}, SHIFT(2013), - [4055] = {.count = 1, .reusable = true}, SHIFT(2014), - [4057] = {.count = 1, .reusable = true}, SHIFT(2009), - [4059] = {.count = 1, .reusable = true}, SHIFT(2015), - [4061] = {.count = 1, .reusable = true}, SHIFT(2016), - [4063] = {.count = 1, .reusable = false}, SHIFT(2017), - [4065] = {.count = 1, .reusable = true}, SHIFT(2018), - [4067] = {.count = 1, .reusable = true}, SHIFT(2019), - [4069] = {.count = 1, .reusable = false}, SHIFT(2020), - [4071] = {.count = 1, .reusable = false}, SHIFT(438), - [4073] = {.count = 1, .reusable = true}, SHIFT(2021), - [4075] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), - [4077] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), - [4079] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [4081] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [4083] = {.count = 1, .reusable = true}, SHIFT(2026), - [4085] = {.count = 1, .reusable = true}, SHIFT(2025), - [4087] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 2), - [4089] = {.count = 1, .reusable = true}, SHIFT(2027), - [4091] = {.count = 1, .reusable = true}, SHIFT(2031), - [4093] = {.count = 1, .reusable = true}, SHIFT(2033), - [4095] = {.count = 1, .reusable = true}, SHIFT(2032), - [4097] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [4099] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 2), - [4101] = {.count = 1, .reusable = true}, SHIFT(2035), - [4103] = {.count = 1, .reusable = true}, SHIFT(2037), - [4105] = {.count = 1, .reusable = false}, SHIFT(2037), - [4107] = {.count = 1, .reusable = true}, SHIFT(2036), - [4109] = {.count = 1, .reusable = false}, SHIFT(2040), - [4111] = {.count = 1, .reusable = false}, SHIFT(2041), - [4113] = {.count = 1, .reusable = false}, SHIFT(2039), - [4115] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [4117] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 2), - [4119] = {.count = 1, .reusable = true}, SHIFT(2043), - [4121] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_expression, 3), - [4123] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_expression, 3), - [4125] = {.count = 1, .reusable = true}, SHIFT(2045), - [4127] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [4129] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [4131] = {.count = 1, .reusable = false}, SHIFT(5), - [4133] = {.count = 1, .reusable = false}, SHIFT(68), - [4135] = {.count = 1, .reusable = true}, SHIFT(2046), - [4137] = {.count = 1, .reusable = true}, SHIFT(2049), - [4139] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), - [4141] = {.count = 1, .reusable = true}, SHIFT(2054), - [4143] = {.count = 1, .reusable = false}, SHIFT(2054), - [4145] = {.count = 1, .reusable = true}, SHIFT(2053), - [4147] = {.count = 1, .reusable = true}, SHIFT(2052), - [4149] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [4151] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), - [4153] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [4155] = {.count = 1, .reusable = true}, SHIFT(2058), - [4157] = {.count = 1, .reusable = true}, SHIFT(2059), - [4159] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), - [4161] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), - [4163] = {.count = 1, .reusable = false}, SHIFT(2061), - [4165] = {.count = 1, .reusable = true}, SHIFT(2062), - [4167] = {.count = 1, .reusable = true}, SHIFT(2064), - [4169] = {.count = 1, .reusable = true}, SHIFT(2065), - [4171] = {.count = 1, .reusable = true}, SHIFT(2067), - [4173] = {.count = 1, .reusable = true}, SHIFT(2068), - [4175] = {.count = 1, .reusable = true}, SHIFT(2070), - [4177] = {.count = 1, .reusable = false}, SHIFT(2070), - [4179] = {.count = 1, .reusable = true}, SHIFT(2072), - [4181] = {.count = 1, .reusable = false}, SHIFT(2072), - [4183] = {.count = 1, .reusable = true}, SHIFT(2071), - [4185] = {.count = 1, .reusable = true}, SHIFT(2074), - [4187] = {.count = 1, .reusable = true}, SHIFT(2076), - [4189] = {.count = 1, .reusable = true}, SHIFT(2077), - [4191] = {.count = 1, .reusable = false}, SHIFT(1120), - [4193] = {.count = 1, .reusable = true}, SHIFT(2082), - [4195] = {.count = 1, .reusable = false}, SHIFT(2087), - [4197] = {.count = 1, .reusable = true}, SHIFT(2088), - [4199] = {.count = 1, .reusable = true}, SHIFT(2090), - [4201] = {.count = 1, .reusable = true}, SHIFT(2091), - [4203] = {.count = 1, .reusable = true}, SHIFT(2092), - [4205] = {.count = 1, .reusable = true}, SHIFT(2093), - [4207] = {.count = 1, .reusable = true}, SHIFT(2095), - [4209] = {.count = 1, .reusable = false}, SHIFT(2095), - [4211] = {.count = 1, .reusable = true}, SHIFT(2094), - [4213] = {.count = 1, .reusable = true}, SHIFT(2096), - [4215] = {.count = 1, .reusable = false}, SHIFT(2096), - [4217] = {.count = 1, .reusable = true}, SHIFT(2097), - [4219] = {.count = 1, .reusable = false}, SHIFT(2097), - [4221] = {.count = 1, .reusable = true}, SHIFT(2101), - [4223] = {.count = 1, .reusable = false}, SHIFT(2100), - [4225] = {.count = 1, .reusable = false}, SHIFT(2102), - [4227] = {.count = 1, .reusable = true}, SHIFT(2103), - [4229] = {.count = 1, .reusable = true}, SHIFT(2104), - [4231] = {.count = 1, .reusable = false}, SHIFT(2105), - [4233] = {.count = 1, .reusable = true}, SHIFT(2106), - [4235] = {.count = 1, .reusable = false}, SHIFT(2106), - [4237] = {.count = 1, .reusable = true}, SHIFT(2108), - [4239] = {.count = 1, .reusable = true}, SHIFT(2107), - [4241] = {.count = 1, .reusable = false}, SHIFT(2108), - [4243] = {.count = 1, .reusable = true}, SHIFT(2109), - [4245] = {.count = 1, .reusable = false}, SHIFT(2109), - [4247] = {.count = 1, .reusable = true}, SHIFT(2112), - [4249] = {.count = 1, .reusable = true}, SHIFT(2110), - [4251] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(2111), - [4254] = {.count = 1, .reusable = false}, SHIFT(2115), - [4256] = {.count = 1, .reusable = false}, SHIFT(2126), - [4258] = {.count = 1, .reusable = false}, SHIFT(2125), - [4260] = {.count = 1, .reusable = true}, SHIFT(2118), - [4262] = {.count = 1, .reusable = false}, SHIFT(2120), - [4264] = {.count = 1, .reusable = false}, SHIFT(2121), - [4266] = {.count = 1, .reusable = false}, SHIFT(2116), - [4268] = {.count = 1, .reusable = false}, SHIFT(2117), - [4270] = {.count = 1, .reusable = false}, SHIFT(2119), - [4272] = {.count = 1, .reusable = true}, SHIFT(2128), - [4274] = {.count = 1, .reusable = false}, SHIFT(2128), - [4276] = {.count = 1, .reusable = true}, SHIFT(2130), - [4278] = {.count = 1, .reusable = false}, SHIFT(2130), - [4280] = {.count = 1, .reusable = true}, SHIFT(2129), - [4282] = {.count = 1, .reusable = true}, SHIFT(2131), - [4284] = {.count = 1, .reusable = true}, SHIFT(2155), - [4286] = {.count = 1, .reusable = false}, SHIFT(2155), - [4288] = {.count = 1, .reusable = false}, SHIFT(2157), - [4290] = {.count = 1, .reusable = true}, SHIFT(2156), - [4292] = {.count = 1, .reusable = true}, SHIFT(2159), - [4294] = {.count = 1, .reusable = false}, SHIFT(2159), - [4296] = {.count = 1, .reusable = true}, SHIFT(2158), - [4298] = {.count = 1, .reusable = true}, SHIFT(2163), - [4300] = {.count = 1, .reusable = false}, SHIFT(2163), - [4302] = {.count = 1, .reusable = true}, SHIFT(2161), - [4304] = {.count = 1, .reusable = true}, SHIFT(2162), - [4306] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(1120), - [4309] = {.count = 1, .reusable = true}, SHIFT(2165), - [4311] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(1120), - [4314] = {.count = 1, .reusable = false}, SHIFT(2166), - [4316] = {.count = 1, .reusable = true}, SHIFT(2167), - [4318] = {.count = 1, .reusable = true}, SHIFT(2168), - [4320] = {.count = 1, .reusable = false}, SHIFT(2171), - [4322] = {.count = 1, .reusable = true}, SHIFT(2172), - [4324] = {.count = 1, .reusable = false}, SHIFT(2173), - [4326] = {.count = 1, .reusable = true}, SHIFT(2175), - [4328] = {.count = 1, .reusable = true}, SHIFT(2174), - [4330] = {.count = 1, .reusable = true}, SHIFT(2184), - [4332] = {.count = 1, .reusable = false}, SHIFT(2186), - [4334] = {.count = 1, .reusable = true}, SHIFT(2185), - [4336] = {.count = 1, .reusable = true}, SHIFT(2188), - [4338] = {.count = 1, .reusable = false}, SHIFT(2188), - [4340] = {.count = 1, .reusable = true}, SHIFT(2187), - [4342] = {.count = 1, .reusable = true}, SHIFT(2190), - [4344] = {.count = 1, .reusable = false}, SHIFT(2190), - [4346] = {.count = 1, .reusable = true}, SHIFT(2191), - [4348] = {.count = 1, .reusable = false}, SHIFT(2191), - [4350] = {.count = 1, .reusable = true}, SHIFT(2192), - [4352] = {.count = 1, .reusable = false}, SHIFT(2192), - [4354] = {.count = 1, .reusable = true}, SHIFT(2193), - [4356] = {.count = 1, .reusable = false}, SHIFT(2193), - [4358] = {.count = 1, .reusable = true}, SHIFT(2195), - [4360] = {.count = 1, .reusable = false}, SHIFT(2195), - [4362] = {.count = 1, .reusable = true}, SHIFT(2196), - [4364] = {.count = 1, .reusable = true}, SHIFT(2199), - [4366] = {.count = 1, .reusable = false}, SHIFT(2199), - [4368] = {.count = 1, .reusable = true}, SHIFT(2200), - [4370] = {.count = 1, .reusable = false}, SHIFT(2200), - [4372] = {.count = 1, .reusable = true}, SHIFT(2201), - [4374] = {.count = 1, .reusable = false}, SHIFT(2201), - [4376] = {.count = 1, .reusable = true}, SHIFT(2202), - [4378] = {.count = 1, .reusable = false}, SHIFT(2202), - [4380] = {.count = 1, .reusable = true}, SHIFT(2203), - [4382] = {.count = 1, .reusable = false}, SHIFT(2203), - [4384] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 3), - [4386] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 3), - [4388] = {.count = 1, .reusable = true}, SHIFT(2204), - [4390] = {.count = 1, .reusable = false}, SHIFT(2204), - [4392] = {.count = 1, .reusable = true}, SHIFT(2205), - [4394] = {.count = 1, .reusable = false}, SHIFT(2205), - [4396] = {.count = 1, .reusable = true}, SHIFT(2206), - [4398] = {.count = 1, .reusable = false}, SHIFT(2206), - [4400] = {.count = 1, .reusable = true}, SHIFT(2207), - [4402] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [4404] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [4406] = {.count = 1, .reusable = true}, SHIFT(2209), - [4408] = {.count = 1, .reusable = true}, SHIFT(2215), - [4410] = {.count = 1, .reusable = true}, SHIFT(2214), - [4412] = {.count = 1, .reusable = true}, SHIFT(2219), - [4414] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1181), - [4417] = {.count = 1, .reusable = true}, SHIFT(2222), - [4419] = {.count = 1, .reusable = true}, SHIFT(2223), - [4421] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 12), - [4423] = {.count = 1, .reusable = true}, SHIFT(2225), - [4425] = {.count = 1, .reusable = false}, SHIFT(2225), - [4427] = {.count = 1, .reusable = true}, SHIFT(2224), - [4429] = {.count = 1, .reusable = true}, SHIFT(2226), - [4431] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [4433] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [4435] = {.count = 1, .reusable = false}, SHIFT(2228), - [4437] = {.count = 1, .reusable = true}, SHIFT(2230), - [4439] = {.count = 1, .reusable = true}, SHIFT(2229), - [4441] = {.count = 1, .reusable = false}, SHIFT(2230), - [4443] = {.count = 1, .reusable = false}, SHIFT(2233), - [4445] = {.count = 1, .reusable = false}, SHIFT(2232), - [4447] = {.count = 1, .reusable = false}, SHIFT(2231), - [4449] = {.count = 1, .reusable = true}, SHIFT(2236), - [4451] = {.count = 1, .reusable = false}, SHIFT(2236), - [4453] = {.count = 1, .reusable = true}, SHIFT(2235), - [4455] = {.count = 1, .reusable = true}, SHIFT(2250), - [4457] = {.count = 1, .reusable = false}, SHIFT(2250), - [4459] = {.count = 1, .reusable = false}, SHIFT(2251), - [4461] = {.count = 1, .reusable = true}, SHIFT(2252), - [4463] = {.count = 1, .reusable = false}, SHIFT(2253), - [4465] = {.count = 1, .reusable = true}, SHIFT(2254), - [4467] = {.count = 1, .reusable = false}, SHIFT(2254), - [4469] = {.count = 1, .reusable = true}, SHIFT(2255), - [4471] = {.count = 1, .reusable = false}, SHIFT(2255), - [4473] = {.count = 1, .reusable = true}, SHIFT(2256), - [4475] = {.count = 1, .reusable = false}, SHIFT(2256), - [4477] = {.count = 1, .reusable = true}, SHIFT(2258), - [4479] = {.count = 1, .reusable = false}, SHIFT(2258), - [4481] = {.count = 1, .reusable = true}, SHIFT(2257), - [4483] = {.count = 1, .reusable = true}, SHIFT(2260), - [4485] = {.count = 1, .reusable = false}, SHIFT(2260), - [4487] = {.count = 1, .reusable = true}, SHIFT(2261), - [4489] = {.count = 1, .reusable = false}, SHIFT(2261), - [4491] = {.count = 1, .reusable = true}, SHIFT(2262), - [4493] = {.count = 1, .reusable = false}, SHIFT(2262), - [4495] = {.count = 1, .reusable = true}, SHIFT(2263), - [4497] = {.count = 1, .reusable = false}, SHIFT(2263), - [4499] = {.count = 1, .reusable = true}, SHIFT(2264), - [4501] = {.count = 1, .reusable = false}, SHIFT(2264), - [4503] = {.count = 1, .reusable = true}, SHIFT(2265), - [4505] = {.count = 1, .reusable = false}, SHIFT(2265), - [4507] = {.count = 1, .reusable = true}, SHIFT(2266), - [4509] = {.count = 1, .reusable = false}, SHIFT(2266), - [4511] = {.count = 1, .reusable = true}, SHIFT(2267), - [4513] = {.count = 1, .reusable = true}, SHIFT(2269), - [4515] = {.count = 1, .reusable = false}, SHIFT(2269), - [4517] = {.count = 1, .reusable = true}, SHIFT(2271), - [4519] = {.count = 1, .reusable = false}, SHIFT(2271), - [4521] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1219), - [4524] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [4526] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(436), - [4529] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 4), - [4531] = {.count = 1, .reusable = false}, SHIFT(2273), - [4533] = {.count = 1, .reusable = true}, SHIFT(2275), - [4535] = {.count = 1, .reusable = false}, SHIFT(2277), - [4537] = {.count = 1, .reusable = false}, SHIFT(2279), - [4539] = {.count = 1, .reusable = true}, SHIFT(2284), - [4541] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), - [4543] = {.count = 1, .reusable = true}, SHIFT(2289), - [4545] = {.count = 1, .reusable = true}, SHIFT(2290), - [4547] = {.count = 1, .reusable = true}, SHIFT(2292), - [4549] = {.count = 1, .reusable = true}, SHIFT(2293), - [4551] = {.count = 1, .reusable = true}, SHIFT(2294), - [4553] = {.count = 1, .reusable = false}, SHIFT(2296), - [4555] = {.count = 1, .reusable = false}, SHIFT(2298), - [4557] = {.count = 1, .reusable = true}, SHIFT(2299), - [4559] = {.count = 1, .reusable = true}, SHIFT(2300), - [4561] = {.count = 1, .reusable = true}, SHIFT(2302), - [4563] = {.count = 1, .reusable = true}, SHIFT(2303), - [4565] = {.count = 1, .reusable = true}, SHIFT(2305), - [4567] = {.count = 1, .reusable = false}, SHIFT(2308), - [4569] = {.count = 1, .reusable = false}, SHIFT(2307), - [4571] = {.count = 1, .reusable = true}, SHIFT(2310), - [4573] = {.count = 1, .reusable = false}, SHIFT(2311), - [4575] = {.count = 1, .reusable = false}, SHIFT(2312), - [4577] = {.count = 1, .reusable = true}, SHIFT(2313), - [4579] = {.count = 1, .reusable = true}, SHIFT(2316), - [4581] = {.count = 1, .reusable = true}, SHIFT(2317), - [4583] = {.count = 1, .reusable = true}, SHIFT(2318), - [4585] = {.count = 1, .reusable = true}, SHIFT(2319), - [4587] = {.count = 1, .reusable = true}, SHIFT(2320), - [4589] = {.count = 1, .reusable = true}, SHIFT(2322), - [4591] = {.count = 1, .reusable = true}, SHIFT(2326), - [4593] = {.count = 1, .reusable = false}, SHIFT(2326), - [4595] = {.count = 1, .reusable = true}, SHIFT(2325), - [4597] = {.count = 1, .reusable = true}, SHIFT(2328), - [4599] = {.count = 1, .reusable = true}, SHIFT(2330), - [4601] = {.count = 1, .reusable = true}, SHIFT(2333), - [4603] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [4605] = {.count = 1, .reusable = true}, SHIFT(2335), - [4607] = {.count = 1, .reusable = true}, SHIFT(2337), - [4609] = {.count = 1, .reusable = true}, SHIFT(2340), - [4611] = {.count = 1, .reusable = false}, SHIFT(2341), - [4613] = {.count = 1, .reusable = true}, SHIFT(2344), - [4615] = {.count = 1, .reusable = true}, SHIFT(2346), - [4617] = {.count = 1, .reusable = true}, SHIFT(2349), - [4619] = {.count = 1, .reusable = false}, SHIFT(2349), - [4621] = {.count = 1, .reusable = true}, SHIFT(2348), - [4623] = {.count = 1, .reusable = true}, SHIFT(2352), - [4625] = {.count = 1, .reusable = false}, SHIFT(2351), - [4627] = {.count = 1, .reusable = true}, SHIFT(2353), - [4629] = {.count = 1, .reusable = false}, SHIFT(2353), - [4631] = {.count = 1, .reusable = true}, SHIFT(2354), - [4633] = {.count = 1, .reusable = true}, SHIFT(2355), - [4635] = {.count = 1, .reusable = true}, SHIFT(2356), - [4637] = {.count = 1, .reusable = true}, SHIFT(2359), - [4639] = {.count = 1, .reusable = true}, SHIFT(2360), - [4641] = {.count = 1, .reusable = false}, SHIFT(2361), - [4643] = {.count = 1, .reusable = true}, SHIFT(2362), + [3440] = {.count = 1, .reusable = true}, SHIFT(1731), + [3442] = {.count = 1, .reusable = false}, SHIFT(1732), + [3444] = {.count = 1, .reusable = true}, SHIFT(1733), + [3446] = {.count = 1, .reusable = false}, SHIFT(1734), + [3448] = {.count = 1, .reusable = true}, SHIFT(1728), + [3450] = {.count = 1, .reusable = false}, SHIFT(1735), + [3452] = {.count = 1, .reusable = true}, SHIFT(1738), + [3454] = {.count = 1, .reusable = true}, SHIFT(1737), + [3456] = {.count = 1, .reusable = false}, SHIFT(1738), + [3458] = {.count = 1, .reusable = false}, SHIFT(1739), + [3460] = {.count = 1, .reusable = true}, SHIFT(1739), + [3462] = {.count = 1, .reusable = false}, SHIFT(1742), + [3464] = {.count = 1, .reusable = false}, SHIFT(1741), + [3466] = {.count = 1, .reusable = false}, SHIFT(1740), + [3468] = {.count = 1, .reusable = true}, SHIFT(1745), + [3470] = {.count = 1, .reusable = false}, SHIFT(1745), + [3472] = {.count = 1, .reusable = true}, SHIFT(1744), + [3474] = {.count = 1, .reusable = true}, SHIFT(1746), + [3476] = {.count = 1, .reusable = false}, SHIFT(1747), + [3478] = {.count = 1, .reusable = false}, SHIFT(1748), + [3480] = {.count = 1, .reusable = true}, SHIFT(1749), + [3482] = {.count = 1, .reusable = true}, SHIFT(1750), + [3484] = {.count = 1, .reusable = true}, SHIFT(1751), + [3486] = {.count = 1, .reusable = true}, SHIFT(1752), + [3488] = {.count = 1, .reusable = false}, SHIFT(1753), + [3490] = {.count = 1, .reusable = false}, SHIFT(1754), + [3492] = {.count = 1, .reusable = true}, SHIFT(1755), + [3494] = {.count = 1, .reusable = true}, SHIFT(1747), + [3496] = {.count = 1, .reusable = false}, SHIFT(1751), + [3498] = {.count = 1, .reusable = true}, SHIFT(1756), + [3500] = {.count = 1, .reusable = true}, SHIFT(1757), + [3502] = {.count = 1, .reusable = true}, SHIFT(1759), + [3504] = {.count = 1, .reusable = false}, SHIFT(1759), + [3506] = {.count = 1, .reusable = true}, SHIFT(1760), + [3508] = {.count = 1, .reusable = true}, SHIFT(1763), + [3510] = {.count = 1, .reusable = true}, SHIFT(1766), + [3512] = {.count = 1, .reusable = false}, SHIFT(1766), + [3514] = {.count = 1, .reusable = true}, SHIFT(1765), + [3516] = {.count = 1, .reusable = true}, SHIFT(1768), + [3518] = {.count = 1, .reusable = true}, SHIFT(1770), + [3520] = {.count = 1, .reusable = false}, SHIFT(1770), + [3522] = {.count = 1, .reusable = true}, SHIFT(1771), + [3524] = {.count = 1, .reusable = true}, SHIFT(1772), + [3526] = {.count = 1, .reusable = true}, SHIFT(1773), + [3528] = {.count = 1, .reusable = true}, SHIFT(1774), + [3530] = {.count = 1, .reusable = true}, SHIFT(1777), + [3532] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 2), + [3534] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 2), + [3536] = {.count = 1, .reusable = true}, SHIFT(1779), + [3538] = {.count = 1, .reusable = false}, SHIFT(1778), + [3540] = {.count = 1, .reusable = false}, SHIFT(1784), + [3542] = {.count = 1, .reusable = false}, SHIFT(1782), + [3544] = {.count = 1, .reusable = false}, SHIFT(1783), + [3546] = {.count = 1, .reusable = true}, SHIFT(1785), + [3548] = {.count = 1, .reusable = false}, SHIFT(1788), + [3550] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1168), + [3553] = {.count = 1, .reusable = true}, SHIFT(1789), + [3555] = {.count = 1, .reusable = true}, SHIFT(1790), + [3557] = {.count = 1, .reusable = false}, SHIFT(1793), + [3559] = {.count = 1, .reusable = false}, SHIFT(1794), + [3561] = {.count = 1, .reusable = false}, SHIFT(1792), + [3563] = {.count = 1, .reusable = true}, SHIFT(1797), + [3565] = {.count = 1, .reusable = false}, SHIFT(1798), + [3567] = {.count = 1, .reusable = true}, SHIFT(1799), + [3569] = {.count = 1, .reusable = false}, SHIFT(1800), + [3571] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), + [3573] = {.count = 1, .reusable = true}, SHIFT(1801), + [3575] = {.count = 1, .reusable = true}, SHIFT(1802), + [3577] = {.count = 1, .reusable = false}, SHIFT(1803), + [3579] = {.count = 1, .reusable = true}, SHIFT(1804), + [3581] = {.count = 1, .reusable = true}, SHIFT(1800), + [3583] = {.count = 1, .reusable = true}, SHIFT(1807), + [3585] = {.count = 1, .reusable = true}, SHIFT(1805), + [3587] = {.count = 1, .reusable = true}, SHIFT(1810), + [3589] = {.count = 1, .reusable = false}, SHIFT(1811), + [3591] = {.count = 1, .reusable = true}, SHIFT(770), + [3593] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(874), + [3596] = {.count = 1, .reusable = false}, REDUCE(sym_template_instantiation, 3), + [3598] = {.count = 1, .reusable = true}, REDUCE(sym_template_instantiation, 3), + [3600] = {.count = 1, .reusable = true}, SHIFT(1814), + [3602] = {.count = 1, .reusable = true}, SHIFT(1813), + [3604] = {.count = 1, .reusable = false}, SHIFT(1815), + [3606] = {.count = 1, .reusable = false}, REDUCE(sym_template_declaration, 3), + [3608] = {.count = 1, .reusable = true}, REDUCE(sym_template_declaration, 3), + [3610] = {.count = 1, .reusable = true}, SHIFT(1817), + [3612] = {.count = 1, .reusable = true}, SHIFT(1818), + [3614] = {.count = 1, .reusable = true}, SHIFT(1819), + [3616] = {.count = 1, .reusable = true}, SHIFT(1821), + [3618] = {.count = 1, .reusable = false}, SHIFT(1821), + [3620] = {.count = 1, .reusable = true}, SHIFT(1820), + [3622] = {.count = 1, .reusable = false}, SHIFT(1823), + [3624] = {.count = 1, .reusable = true}, SHIFT(1825), + [3626] = {.count = 1, .reusable = true}, SHIFT(1824), + [3628] = {.count = 1, .reusable = false}, SHIFT(1825), + [3630] = {.count = 1, .reusable = false}, SHIFT(1828), + [3632] = {.count = 1, .reusable = false}, SHIFT(1827), + [3634] = {.count = 1, .reusable = false}, SHIFT(1826), + [3636] = {.count = 1, .reusable = true}, SHIFT(1831), + [3638] = {.count = 1, .reusable = false}, SHIFT(1831), + [3640] = {.count = 1, .reusable = true}, SHIFT(1830), + [3642] = {.count = 1, .reusable = true}, SHIFT(1845), + [3644] = {.count = 1, .reusable = false}, SHIFT(1845), + [3646] = {.count = 1, .reusable = false}, SHIFT(1846), + [3648] = {.count = 1, .reusable = true}, SHIFT(1847), + [3650] = {.count = 1, .reusable = false}, SHIFT(1848), + [3652] = {.count = 1, .reusable = true}, SHIFT(1849), + [3654] = {.count = 1, .reusable = false}, SHIFT(1849), + [3656] = {.count = 1, .reusable = true}, SHIFT(1850), + [3658] = {.count = 1, .reusable = false}, SHIFT(1850), + [3660] = {.count = 1, .reusable = true}, SHIFT(1851), + [3662] = {.count = 1, .reusable = false}, SHIFT(1851), + [3664] = {.count = 1, .reusable = true}, SHIFT(1852), + [3666] = {.count = 1, .reusable = false}, SHIFT(1852), + [3668] = {.count = 1, .reusable = true}, SHIFT(1853), + [3670] = {.count = 1, .reusable = false}, SHIFT(1853), + [3672] = {.count = 1, .reusable = true}, SHIFT(1854), + [3674] = {.count = 1, .reusable = false}, SHIFT(1854), + [3676] = {.count = 1, .reusable = true}, SHIFT(1855), + [3678] = {.count = 1, .reusable = false}, SHIFT(1855), + [3680] = {.count = 1, .reusable = true}, SHIFT(1856), + [3682] = {.count = 1, .reusable = false}, SHIFT(1856), + [3684] = {.count = 1, .reusable = true}, SHIFT(1857), + [3686] = {.count = 1, .reusable = false}, SHIFT(1857), + [3688] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [3690] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [3692] = {.count = 1, .reusable = true}, SHIFT(1858), + [3694] = {.count = 1, .reusable = false}, SHIFT(1858), + [3696] = {.count = 1, .reusable = true}, SHIFT(1860), + [3698] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), + [3700] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), + [3702] = {.count = 1, .reusable = true}, SHIFT(1861), + [3704] = {.count = 1, .reusable = true}, SHIFT(1862), + [3706] = {.count = 1, .reusable = true}, SHIFT(1863), + [3708] = {.count = 1, .reusable = false}, SHIFT(1864), + [3710] = {.count = 1, .reusable = false}, SHIFT(1865), + [3712] = {.count = 1, .reusable = false}, SHIFT(1866), + [3714] = {.count = 1, .reusable = true}, SHIFT(1867), + [3716] = {.count = 1, .reusable = true}, SHIFT(1870), + [3718] = {.count = 1, .reusable = true}, SHIFT(1871), + [3720] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [3722] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 2), + [3724] = {.count = 1, .reusable = false}, SHIFT(1874), + [3726] = {.count = 1, .reusable = false}, SHIFT(1876), + [3728] = {.count = 1, .reusable = false}, SHIFT(1877), + [3730] = {.count = 1, .reusable = false}, SHIFT(1875), + [3732] = {.count = 1, .reusable = false}, SHIFT(1880), + [3734] = {.count = 1, .reusable = true}, SHIFT(1881), + [3736] = {.count = 1, .reusable = false}, SHIFT(1882), + [3738] = {.count = 1, .reusable = true}, SHIFT(1883), + [3740] = {.count = 1, .reusable = true}, SHIFT(1882), + [3742] = {.count = 1, .reusable = true}, SHIFT(1885), + [3744] = {.count = 1, .reusable = true}, SHIFT(1884), + [3746] = {.count = 1, .reusable = true}, SHIFT(1889), + [3748] = {.count = 1, .reusable = true}, SHIFT(1891), + [3750] = {.count = 1, .reusable = true}, SHIFT(1890), + [3752] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [3754] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 2), + [3756] = {.count = 1, .reusable = false}, SHIFT(1894), + [3758] = {.count = 1, .reusable = false}, SHIFT(1895), + [3760] = {.count = 1, .reusable = true}, SHIFT(1896), + [3762] = {.count = 1, .reusable = true}, SHIFT(1897), + [3764] = {.count = 1, .reusable = true}, SHIFT(1898), + [3766] = {.count = 1, .reusable = false}, SHIFT(1899), + [3768] = {.count = 1, .reusable = true}, SHIFT(1900), + [3770] = {.count = 1, .reusable = false}, SHIFT(1901), + [3772] = {.count = 1, .reusable = true}, SHIFT(1895), + [3774] = {.count = 1, .reusable = false}, SHIFT(1902), + [3776] = {.count = 1, .reusable = true}, SHIFT(1905), + [3778] = {.count = 1, .reusable = true}, SHIFT(1904), + [3780] = {.count = 1, .reusable = false}, SHIFT(1905), + [3782] = {.count = 1, .reusable = true}, SHIFT(1906), + [3784] = {.count = 1, .reusable = true}, SHIFT(1907), + [3786] = {.count = 1, .reusable = false}, SHIFT(1907), + [3788] = {.count = 1, .reusable = false}, SHIFT(1910), + [3790] = {.count = 1, .reusable = false}, SHIFT(1909), + [3792] = {.count = 1, .reusable = false}, SHIFT(1908), + [3794] = {.count = 1, .reusable = true}, SHIFT(1913), + [3796] = {.count = 1, .reusable = false}, SHIFT(1913), + [3798] = {.count = 1, .reusable = true}, SHIFT(1912), + [3800] = {.count = 1, .reusable = true}, SHIFT(1914), + [3802] = {.count = 1, .reusable = false}, SHIFT(1915), + [3804] = {.count = 1, .reusable = false}, SHIFT(1916), + [3806] = {.count = 1, .reusable = true}, SHIFT(1917), + [3808] = {.count = 1, .reusable = true}, SHIFT(1918), + [3810] = {.count = 1, .reusable = true}, SHIFT(1919), + [3812] = {.count = 1, .reusable = true}, SHIFT(1920), + [3814] = {.count = 1, .reusable = false}, SHIFT(1921), + [3816] = {.count = 1, .reusable = false}, SHIFT(1922), + [3818] = {.count = 1, .reusable = true}, SHIFT(1923), + [3820] = {.count = 1, .reusable = true}, SHIFT(1915), + [3822] = {.count = 1, .reusable = false}, SHIFT(1919), + [3824] = {.count = 1, .reusable = true}, SHIFT(1924), + [3826] = {.count = 1, .reusable = true}, SHIFT(1927), + [3828] = {.count = 1, .reusable = false}, SHIFT(1927), + [3830] = {.count = 1, .reusable = true}, SHIFT(1926), + [3832] = {.count = 1, .reusable = false}, SHIFT(1931), + [3834] = {.count = 1, .reusable = false}, SHIFT(1932), + [3836] = {.count = 1, .reusable = false}, SHIFT(1930), + [3838] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [3840] = {.count = 1, .reusable = true}, SHIFT(1933), + [3842] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 2), + [3844] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_expression, 3), + [3846] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_expression, 3), + [3848] = {.count = 1, .reusable = true}, SHIFT(1936), + [3850] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_identifier, 3), + [3852] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_identifier, 3), + [3854] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), + [3857] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), + [3859] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), + [3861] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_namespace_identifier, 3, .alias_sequence_id = 10), + [3863] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), + [3866] = {.count = 1, .reusable = false}, SHIFT(1938), + [3868] = {.count = 1, .reusable = true}, SHIFT(1937), + [3870] = {.count = 1, .reusable = true}, SHIFT(1939), + [3872] = {.count = 1, .reusable = true}, SHIFT(1942), + [3874] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer_list, 2), + [3876] = {.count = 1, .reusable = true}, SHIFT(1943), + [3878] = {.count = 1, .reusable = true}, SHIFT(1945), + [3880] = {.count = 1, .reusable = true}, SHIFT(1946), + [3882] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 3), + [3884] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 3), + [3886] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3888] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3890] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(36), + [3893] = {.count = 1, .reusable = false}, SHIFT(1947), + [3895] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [3897] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), + [3899] = {.count = 1, .reusable = false}, SHIFT(1948), + [3901] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [3903] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [3905] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [3907] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [3909] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [3911] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [3913] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [3915] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [3917] = {.count = 1, .reusable = false}, SHIFT(1950), + [3919] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), + [3921] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), + [3923] = {.count = 1, .reusable = true}, SHIFT(1951), + [3925] = {.count = 2, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), SHIFT(672), + [3928] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3), + [3930] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3), + [3932] = {.count = 1, .reusable = true}, SHIFT(672), + [3934] = {.count = 1, .reusable = true}, SHIFT(1954), + [3936] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [3938] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [3940] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [3942] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [3944] = {.count = 1, .reusable = true}, SHIFT(1955), + [3946] = {.count = 1, .reusable = true}, SHIFT(1956), + [3948] = {.count = 1, .reusable = false}, SHIFT(1956), + [3950] = {.count = 1, .reusable = false}, SHIFT(1958), + [3952] = {.count = 1, .reusable = true}, SHIFT(1959), + [3954] = {.count = 1, .reusable = false}, SHIFT(1959), + [3956] = {.count = 1, .reusable = true}, SHIFT(1968), + [3958] = {.count = 1, .reusable = false}, SHIFT(1960), + [3960] = {.count = 1, .reusable = true}, SHIFT(1961), + [3962] = {.count = 1, .reusable = false}, SHIFT(1968), + [3964] = {.count = 1, .reusable = true}, SHIFT(1962), + [3966] = {.count = 1, .reusable = true}, SHIFT(1963), + [3968] = {.count = 1, .reusable = false}, SHIFT(1964), + [3970] = {.count = 1, .reusable = true}, SHIFT(1965), + [3972] = {.count = 1, .reusable = false}, SHIFT(1966), + [3974] = {.count = 1, .reusable = true}, SHIFT(1960), + [3976] = {.count = 1, .reusable = false}, SHIFT(1967), + [3978] = {.count = 1, .reusable = true}, SHIFT(1972), + [3980] = {.count = 1, .reusable = true}, SHIFT(1971), + [3982] = {.count = 1, .reusable = false}, SHIFT(1972), + [3984] = {.count = 1, .reusable = true}, SHIFT(1973), + [3986] = {.count = 1, .reusable = false}, SHIFT(1973), + [3988] = {.count = 1, .reusable = true}, SHIFT(1974), + [3990] = {.count = 1, .reusable = false}, SHIFT(1974), + [3992] = {.count = 1, .reusable = false}, SHIFT(1975), + [3994] = {.count = 1, .reusable = false}, SHIFT(1980), + [3996] = {.count = 1, .reusable = false}, SHIFT(1979), + [3998] = {.count = 1, .reusable = false}, SHIFT(1978), + [4000] = {.count = 1, .reusable = false}, SHIFT(1976), + [4002] = {.count = 1, .reusable = false}, SHIFT(1977), + [4004] = {.count = 1, .reusable = true}, SHIFT(1983), + [4006] = {.count = 1, .reusable = false}, SHIFT(1983), + [4008] = {.count = 1, .reusable = true}, SHIFT(1982), + [4010] = {.count = 1, .reusable = true}, SHIFT(1984), + [4012] = {.count = 1, .reusable = false}, SHIFT(1985), + [4014] = {.count = 1, .reusable = false}, SHIFT(1986), + [4016] = {.count = 1, .reusable = true}, SHIFT(1987), + [4018] = {.count = 1, .reusable = true}, SHIFT(1988), + [4020] = {.count = 1, .reusable = true}, SHIFT(1989), + [4022] = {.count = 1, .reusable = true}, SHIFT(1990), + [4024] = {.count = 1, .reusable = true}, SHIFT(1991), + [4026] = {.count = 1, .reusable = false}, SHIFT(1992), + [4028] = {.count = 1, .reusable = false}, SHIFT(1993), + [4030] = {.count = 1, .reusable = true}, SHIFT(1994), + [4032] = {.count = 1, .reusable = true}, SHIFT(1985), + [4034] = {.count = 1, .reusable = false}, SHIFT(1990), + [4036] = {.count = 1, .reusable = true}, SHIFT(1995), + [4038] = {.count = 1, .reusable = true}, SHIFT(1996), + [4040] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(1997), + [4043] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), + [4045] = {.count = 1, .reusable = true}, SHIFT(1999), + [4047] = {.count = 1, .reusable = true}, SHIFT(2001), + [4049] = {.count = 1, .reusable = false}, SHIFT(2001), + [4051] = {.count = 1, .reusable = true}, SHIFT(2000), + [4053] = {.count = 1, .reusable = false}, SHIFT(2003), + [4055] = {.count = 1, .reusable = false}, SHIFT(2004), + [4057] = {.count = 1, .reusable = false}, SHIFT(2002), + [4059] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3), + [4061] = {.count = 1, .reusable = true}, SHIFT(2006), + [4063] = {.count = 1, .reusable = true}, SHIFT(2007), + [4065] = {.count = 1, .reusable = true}, SHIFT(2008), + [4067] = {.count = 1, .reusable = false}, SHIFT(2009), + [4069] = {.count = 1, .reusable = true}, SHIFT(2010), + [4071] = {.count = 1, .reusable = true}, SHIFT(2011), + [4073] = {.count = 1, .reusable = false}, SHIFT(2011), + [4075] = {.count = 1, .reusable = true}, SHIFT(2013), + [4077] = {.count = 1, .reusable = true}, SHIFT(2031), + [4079] = {.count = 1, .reusable = false}, SHIFT(2015), + [4081] = {.count = 1, .reusable = false}, SHIFT(2031), + [4083] = {.count = 1, .reusable = true}, SHIFT(2016), + [4085] = {.count = 1, .reusable = false}, SHIFT(2017), + [4087] = {.count = 1, .reusable = false}, SHIFT(2018), + [4089] = {.count = 1, .reusable = false}, SHIFT(2019), + [4091] = {.count = 1, .reusable = true}, SHIFT(2020), + [4093] = {.count = 1, .reusable = true}, SHIFT(2015), + [4095] = {.count = 1, .reusable = true}, SHIFT(2021), + [4097] = {.count = 1, .reusable = true}, SHIFT(2022), + [4099] = {.count = 1, .reusable = false}, SHIFT(2023), + [4101] = {.count = 1, .reusable = true}, SHIFT(2024), + [4103] = {.count = 1, .reusable = true}, SHIFT(2025), + [4105] = {.count = 1, .reusable = false}, SHIFT(2026), + [4107] = {.count = 1, .reusable = false}, SHIFT(2027), + [4109] = {.count = 1, .reusable = true}, SHIFT(2028), + [4111] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), + [4113] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [4115] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [4117] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [4119] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 2), + [4121] = {.count = 1, .reusable = true}, SHIFT(2033), + [4123] = {.count = 1, .reusable = true}, SHIFT(2032), + [4125] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [4127] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [4129] = {.count = 1, .reusable = false}, SHIFT(5), + [4131] = {.count = 1, .reusable = false}, SHIFT(69), + [4133] = {.count = 1, .reusable = true}, SHIFT(2035), + [4135] = {.count = 1, .reusable = true}, SHIFT(2038), + [4137] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), + [4139] = {.count = 1, .reusable = true}, SHIFT(2043), + [4141] = {.count = 1, .reusable = false}, SHIFT(2043), + [4143] = {.count = 1, .reusable = true}, SHIFT(2042), + [4145] = {.count = 1, .reusable = true}, SHIFT(2041), + [4147] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), + [4149] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), + [4151] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), + [4153] = {.count = 1, .reusable = true}, SHIFT(2047), + [4155] = {.count = 1, .reusable = true}, SHIFT(2048), + [4157] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), + [4159] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), + [4161] = {.count = 1, .reusable = false}, SHIFT(2050), + [4163] = {.count = 1, .reusable = true}, SHIFT(2051), + [4165] = {.count = 1, .reusable = true}, SHIFT(2053), + [4167] = {.count = 1, .reusable = true}, SHIFT(2054), + [4169] = {.count = 1, .reusable = true}, SHIFT(2056), + [4171] = {.count = 1, .reusable = true}, SHIFT(2057), + [4173] = {.count = 1, .reusable = true}, SHIFT(2059), + [4175] = {.count = 1, .reusable = false}, SHIFT(2059), + [4177] = {.count = 1, .reusable = true}, SHIFT(2061), + [4179] = {.count = 1, .reusable = false}, SHIFT(2061), + [4181] = {.count = 1, .reusable = true}, SHIFT(2060), + [4183] = {.count = 1, .reusable = true}, SHIFT(2063), + [4185] = {.count = 1, .reusable = true}, SHIFT(2065), + [4187] = {.count = 1, .reusable = true}, SHIFT(2066), + [4189] = {.count = 1, .reusable = false}, SHIFT(1116), + [4191] = {.count = 1, .reusable = true}, SHIFT(2071), + [4193] = {.count = 1, .reusable = false}, SHIFT(2076), + [4195] = {.count = 1, .reusable = true}, SHIFT(2077), + [4197] = {.count = 1, .reusable = true}, SHIFT(2079), + [4199] = {.count = 1, .reusable = true}, SHIFT(2080), + [4201] = {.count = 1, .reusable = true}, SHIFT(2081), + [4203] = {.count = 1, .reusable = true}, SHIFT(2082), + [4205] = {.count = 1, .reusable = true}, SHIFT(2084), + [4207] = {.count = 1, .reusable = false}, SHIFT(2084), + [4209] = {.count = 1, .reusable = true}, SHIFT(2083), + [4211] = {.count = 1, .reusable = true}, SHIFT(2085), + [4213] = {.count = 1, .reusable = false}, SHIFT(2085), + [4215] = {.count = 1, .reusable = true}, SHIFT(2086), + [4217] = {.count = 1, .reusable = false}, SHIFT(2086), + [4219] = {.count = 1, .reusable = true}, SHIFT(2090), + [4221] = {.count = 1, .reusable = false}, SHIFT(2089), + [4223] = {.count = 1, .reusable = false}, SHIFT(2091), + [4225] = {.count = 1, .reusable = true}, SHIFT(2092), + [4227] = {.count = 1, .reusable = true}, SHIFT(2093), + [4229] = {.count = 1, .reusable = false}, SHIFT(2094), + [4231] = {.count = 1, .reusable = true}, SHIFT(2095), + [4233] = {.count = 1, .reusable = false}, SHIFT(2095), + [4235] = {.count = 1, .reusable = true}, SHIFT(2097), + [4237] = {.count = 1, .reusable = true}, SHIFT(2096), + [4239] = {.count = 1, .reusable = false}, SHIFT(2097), + [4241] = {.count = 1, .reusable = true}, SHIFT(2098), + [4243] = {.count = 1, .reusable = false}, SHIFT(2098), + [4245] = {.count = 1, .reusable = true}, SHIFT(2101), + [4247] = {.count = 1, .reusable = true}, SHIFT(2099), + [4249] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(2100), + [4252] = {.count = 1, .reusable = false}, SHIFT(2104), + [4254] = {.count = 1, .reusable = false}, SHIFT(2112), + [4256] = {.count = 1, .reusable = false}, SHIFT(2111), + [4258] = {.count = 1, .reusable = true}, SHIFT(2107), + [4260] = {.count = 1, .reusable = false}, SHIFT(2109), + [4262] = {.count = 1, .reusable = false}, SHIFT(2110), + [4264] = {.count = 1, .reusable = false}, SHIFT(2105), + [4266] = {.count = 1, .reusable = false}, SHIFT(2106), + [4268] = {.count = 1, .reusable = false}, SHIFT(2108), + [4270] = {.count = 1, .reusable = true}, SHIFT(2117), + [4272] = {.count = 1, .reusable = false}, SHIFT(2117), + [4274] = {.count = 1, .reusable = true}, SHIFT(2119), + [4276] = {.count = 1, .reusable = false}, SHIFT(2119), + [4278] = {.count = 1, .reusable = true}, SHIFT(2118), + [4280] = {.count = 1, .reusable = true}, SHIFT(2136), + [4282] = {.count = 1, .reusable = true}, SHIFT(2144), + [4284] = {.count = 1, .reusable = false}, SHIFT(2144), + [4286] = {.count = 1, .reusable = false}, SHIFT(2146), + [4288] = {.count = 1, .reusable = true}, SHIFT(2145), + [4290] = {.count = 1, .reusable = true}, SHIFT(2148), + [4292] = {.count = 1, .reusable = false}, SHIFT(2148), + [4294] = {.count = 1, .reusable = true}, SHIFT(2147), + [4296] = {.count = 1, .reusable = true}, SHIFT(2152), + [4298] = {.count = 1, .reusable = false}, SHIFT(2152), + [4300] = {.count = 1, .reusable = true}, SHIFT(2150), + [4302] = {.count = 1, .reusable = true}, SHIFT(2151), + [4304] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(1116), + [4307] = {.count = 1, .reusable = true}, SHIFT(2154), + [4309] = {.count = 1, .reusable = false}, SHIFT(2155), + [4311] = {.count = 1, .reusable = true}, SHIFT(2156), + [4313] = {.count = 1, .reusable = true}, SHIFT(2157), + [4315] = {.count = 1, .reusable = false}, SHIFT(2160), + [4317] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(1116), + [4320] = {.count = 1, .reusable = true}, SHIFT(2161), + [4322] = {.count = 1, .reusable = false}, SHIFT(2162), + [4324] = {.count = 1, .reusable = true}, SHIFT(2164), + [4326] = {.count = 1, .reusable = true}, SHIFT(2163), + [4328] = {.count = 1, .reusable = true}, SHIFT(2173), + [4330] = {.count = 1, .reusable = true}, SHIFT(2175), + [4332] = {.count = 1, .reusable = false}, SHIFT(2175), + [4334] = {.count = 1, .reusable = true}, SHIFT(2174), + [4336] = {.count = 1, .reusable = true}, SHIFT(2177), + [4338] = {.count = 1, .reusable = false}, SHIFT(2177), + [4340] = {.count = 1, .reusable = true}, SHIFT(2178), + [4342] = {.count = 1, .reusable = false}, SHIFT(2178), + [4344] = {.count = 1, .reusable = true}, SHIFT(2179), + [4346] = {.count = 1, .reusable = false}, SHIFT(2179), + [4348] = {.count = 1, .reusable = true}, SHIFT(2180), + [4350] = {.count = 1, .reusable = false}, SHIFT(2180), + [4352] = {.count = 1, .reusable = true}, SHIFT(2182), + [4354] = {.count = 1, .reusable = false}, SHIFT(2182), + [4356] = {.count = 1, .reusable = true}, SHIFT(2183), + [4358] = {.count = 1, .reusable = true}, SHIFT(2186), + [4360] = {.count = 1, .reusable = false}, SHIFT(2186), + [4362] = {.count = 1, .reusable = true}, SHIFT(2187), + [4364] = {.count = 1, .reusable = false}, SHIFT(2187), + [4366] = {.count = 1, .reusable = true}, SHIFT(2188), + [4368] = {.count = 1, .reusable = false}, SHIFT(2188), + [4370] = {.count = 1, .reusable = true}, SHIFT(2189), + [4372] = {.count = 1, .reusable = false}, SHIFT(2189), + [4374] = {.count = 1, .reusable = true}, SHIFT(2190), + [4376] = {.count = 1, .reusable = false}, SHIFT(2190), + [4378] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 3), + [4380] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 3), + [4382] = {.count = 1, .reusable = true}, SHIFT(2191), + [4384] = {.count = 1, .reusable = false}, SHIFT(2191), + [4386] = {.count = 1, .reusable = true}, SHIFT(2192), + [4388] = {.count = 1, .reusable = false}, SHIFT(2192), + [4390] = {.count = 1, .reusable = true}, SHIFT(2193), + [4392] = {.count = 1, .reusable = false}, SHIFT(2193), + [4394] = {.count = 1, .reusable = true}, SHIFT(2194), + [4396] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [4398] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [4400] = {.count = 1, .reusable = true}, SHIFT(2196), + [4402] = {.count = 1, .reusable = true}, SHIFT(2197), + [4404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1170), + [4407] = {.count = 1, .reusable = true}, SHIFT(2206), + [4409] = {.count = 1, .reusable = true}, SHIFT(2205), + [4411] = {.count = 1, .reusable = false}, SHIFT(2210), + [4413] = {.count = 1, .reusable = true}, SHIFT(2209), + [4415] = {.count = 1, .reusable = true}, SHIFT(2211), + [4417] = {.count = 1, .reusable = true}, SHIFT(2212), + [4419] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 12), + [4421] = {.count = 1, .reusable = true}, SHIFT(2214), + [4423] = {.count = 1, .reusable = false}, SHIFT(2214), + [4425] = {.count = 1, .reusable = true}, SHIFT(2213), + [4427] = {.count = 1, .reusable = true}, SHIFT(2215), + [4429] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [4431] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [4433] = {.count = 1, .reusable = false}, SHIFT(2217), + [4435] = {.count = 1, .reusable = true}, SHIFT(2219), + [4437] = {.count = 1, .reusable = true}, SHIFT(2218), + [4439] = {.count = 1, .reusable = false}, SHIFT(2219), + [4441] = {.count = 1, .reusable = false}, SHIFT(2222), + [4443] = {.count = 1, .reusable = false}, SHIFT(2221), + [4445] = {.count = 1, .reusable = false}, SHIFT(2220), + [4447] = {.count = 1, .reusable = true}, SHIFT(2225), + [4449] = {.count = 1, .reusable = false}, SHIFT(2225), + [4451] = {.count = 1, .reusable = true}, SHIFT(2224), + [4453] = {.count = 1, .reusable = true}, SHIFT(2239), + [4455] = {.count = 1, .reusable = false}, SHIFT(2239), + [4457] = {.count = 1, .reusable = false}, SHIFT(2240), + [4459] = {.count = 1, .reusable = true}, SHIFT(2241), + [4461] = {.count = 1, .reusable = false}, SHIFT(2242), + [4463] = {.count = 1, .reusable = true}, SHIFT(2243), + [4465] = {.count = 1, .reusable = false}, SHIFT(2243), + [4467] = {.count = 1, .reusable = true}, SHIFT(2244), + [4469] = {.count = 1, .reusable = false}, SHIFT(2244), + [4471] = {.count = 1, .reusable = true}, SHIFT(2245), + [4473] = {.count = 1, .reusable = false}, SHIFT(2245), + [4475] = {.count = 1, .reusable = true}, SHIFT(2247), + [4477] = {.count = 1, .reusable = false}, SHIFT(2247), + [4479] = {.count = 1, .reusable = true}, SHIFT(2246), + [4481] = {.count = 1, .reusable = true}, SHIFT(2249), + [4483] = {.count = 1, .reusable = false}, SHIFT(2249), + [4485] = {.count = 1, .reusable = true}, SHIFT(2250), + [4487] = {.count = 1, .reusable = false}, SHIFT(2250), + [4489] = {.count = 1, .reusable = true}, SHIFT(2251), + [4491] = {.count = 1, .reusable = false}, SHIFT(2251), + [4493] = {.count = 1, .reusable = true}, SHIFT(2252), + [4495] = {.count = 1, .reusable = false}, SHIFT(2252), + [4497] = {.count = 1, .reusable = true}, SHIFT(2253), + [4499] = {.count = 1, .reusable = false}, SHIFT(2253), + [4501] = {.count = 1, .reusable = true}, SHIFT(2254), + [4503] = {.count = 1, .reusable = false}, SHIFT(2254), + [4505] = {.count = 1, .reusable = true}, SHIFT(2255), + [4507] = {.count = 1, .reusable = false}, SHIFT(2255), + [4509] = {.count = 1, .reusable = true}, SHIFT(2256), + [4511] = {.count = 1, .reusable = true}, SHIFT(2259), + [4513] = {.count = 1, .reusable = false}, SHIFT(2259), + [4515] = {.count = 1, .reusable = true}, SHIFT(2261), + [4517] = {.count = 1, .reusable = false}, SHIFT(2261), + [4519] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1216), + [4522] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [4524] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(437), + [4527] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 4), + [4529] = {.count = 1, .reusable = false}, SHIFT(2262), + [4531] = {.count = 1, .reusable = true}, SHIFT(2264), + [4533] = {.count = 1, .reusable = false}, SHIFT(2266), + [4535] = {.count = 1, .reusable = false}, SHIFT(2268), + [4537] = {.count = 1, .reusable = true}, SHIFT(2273), + [4539] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), + [4541] = {.count = 1, .reusable = true}, SHIFT(2278), + [4543] = {.count = 1, .reusable = true}, SHIFT(2279), + [4545] = {.count = 1, .reusable = true}, SHIFT(2281), + [4547] = {.count = 1, .reusable = true}, SHIFT(2282), + [4549] = {.count = 1, .reusable = true}, SHIFT(2283), + [4551] = {.count = 1, .reusable = false}, SHIFT(2285), + [4553] = {.count = 1, .reusable = false}, SHIFT(2287), + [4555] = {.count = 1, .reusable = true}, SHIFT(2288), + [4557] = {.count = 1, .reusable = true}, SHIFT(2289), + [4559] = {.count = 1, .reusable = true}, SHIFT(2291), + [4561] = {.count = 1, .reusable = true}, SHIFT(2292), + [4563] = {.count = 1, .reusable = true}, SHIFT(2294), + [4565] = {.count = 1, .reusable = false}, SHIFT(2297), + [4567] = {.count = 1, .reusable = false}, SHIFT(2296), + [4569] = {.count = 1, .reusable = true}, SHIFT(2299), + [4571] = {.count = 1, .reusable = false}, SHIFT(2300), + [4573] = {.count = 1, .reusable = false}, SHIFT(2301), + [4575] = {.count = 1, .reusable = true}, SHIFT(2302), + [4577] = {.count = 1, .reusable = true}, SHIFT(2305), + [4579] = {.count = 1, .reusable = true}, SHIFT(2306), + [4581] = {.count = 1, .reusable = true}, SHIFT(2307), + [4583] = {.count = 1, .reusable = true}, SHIFT(2308), + [4585] = {.count = 1, .reusable = true}, SHIFT(2309), + [4587] = {.count = 1, .reusable = true}, SHIFT(2311), + [4589] = {.count = 1, .reusable = true}, SHIFT(2315), + [4591] = {.count = 1, .reusable = false}, SHIFT(2315), + [4593] = {.count = 1, .reusable = true}, SHIFT(2314), + [4595] = {.count = 1, .reusable = true}, SHIFT(2317), + [4597] = {.count = 1, .reusable = true}, SHIFT(2319), + [4599] = {.count = 1, .reusable = true}, SHIFT(2323), + [4601] = {.count = 1, .reusable = true}, SHIFT(2324), + [4603] = {.count = 1, .reusable = true}, SHIFT(2325), + [4605] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [4607] = {.count = 1, .reusable = true}, SHIFT(2328), + [4609] = {.count = 1, .reusable = false}, SHIFT(2329), + [4611] = {.count = 1, .reusable = true}, SHIFT(2332), + [4613] = {.count = 1, .reusable = true}, SHIFT(2334), + [4615] = {.count = 1, .reusable = true}, SHIFT(2337), + [4617] = {.count = 1, .reusable = false}, SHIFT(2337), + [4619] = {.count = 1, .reusable = true}, SHIFT(2336), + [4621] = {.count = 1, .reusable = true}, SHIFT(2340), + [4623] = {.count = 1, .reusable = false}, SHIFT(2339), + [4625] = {.count = 1, .reusable = true}, SHIFT(2341), + [4627] = {.count = 1, .reusable = false}, SHIFT(2341), + [4629] = {.count = 1, .reusable = true}, SHIFT(2342), + [4631] = {.count = 1, .reusable = true}, SHIFT(2343), + [4633] = {.count = 1, .reusable = true}, SHIFT(2344), + [4635] = {.count = 1, .reusable = true}, SHIFT(2346), + [4637] = {.count = 1, .reusable = true}, SHIFT(2347), + [4639] = {.count = 1, .reusable = false}, SHIFT(2348), + [4641] = {.count = 1, .reusable = true}, SHIFT(2349), + [4643] = {.count = 1, .reusable = true}, SHIFT(2351), [4645] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), [4647] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), - [4649] = {.count = 1, .reusable = true}, SHIFT(2366), - [4651] = {.count = 1, .reusable = true}, SHIFT(2367), - [4653] = {.count = 1, .reusable = true}, SHIFT(2368), - [4655] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(482), - [4658] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(482), - [4661] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(453), - [4664] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [4666] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(455), - [4669] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(456), - [4672] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(457), - [4675] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(458), - [4678] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(459), - [4681] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(460), - [4684] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(461), - [4687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(463), - [4690] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(464), - [4693] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(466), - [4696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(467), - [4699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(468), - [4702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(469), - [4705] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(470), - [4708] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(471), - [4711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(472), - [4714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(473), - [4717] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(474), - [4720] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(475), - [4723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(476), - [4726] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(477), - [4729] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(478), - [4732] = {.count = 1, .reusable = true}, SHIFT(2369), - [4734] = {.count = 1, .reusable = true}, SHIFT(2371), - [4736] = {.count = 1, .reusable = true}, SHIFT(2372), - [4738] = {.count = 1, .reusable = true}, SHIFT(2375), - [4740] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [4742] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [4744] = {.count = 1, .reusable = true}, SHIFT(2377), - [4746] = {.count = 1, .reusable = false}, SHIFT(2377), - [4748] = {.count = 1, .reusable = true}, SHIFT(2378), - [4750] = {.count = 1, .reusable = true}, SHIFT(2380), - [4752] = {.count = 1, .reusable = true}, SHIFT(2382), - [4754] = {.count = 1, .reusable = true}, SHIFT(2383), - [4756] = {.count = 1, .reusable = true}, SHIFT(2385), - [4758] = {.count = 1, .reusable = false}, SHIFT(2385), - [4760] = {.count = 1, .reusable = true}, SHIFT(2384), - [4762] = {.count = 1, .reusable = false}, SHIFT(1322), - [4764] = {.count = 1, .reusable = false}, SHIFT(1325), - [4766] = {.count = 1, .reusable = false}, SHIFT(1324), - [4768] = {.count = 1, .reusable = false}, SHIFT(2388), - [4770] = {.count = 1, .reusable = true}, SHIFT(2389), - [4772] = {.count = 1, .reusable = false}, SHIFT(2390), - [4774] = {.count = 1, .reusable = true}, SHIFT(2391), - [4776] = {.count = 1, .reusable = true}, SHIFT(1326), - [4778] = {.count = 1, .reusable = false}, SHIFT(1327), - [4780] = {.count = 1, .reusable = false}, SHIFT(1321), - [4782] = {.count = 1, .reusable = false}, SHIFT(1328), - [4784] = {.count = 1, .reusable = true}, SHIFT(1321), - [4786] = {.count = 1, .reusable = false}, SHIFT(1320), - [4788] = {.count = 1, .reusable = true}, SHIFT(1323), - [4790] = {.count = 1, .reusable = true}, SHIFT(1330), - [4792] = {.count = 1, .reusable = true}, SHIFT(2392), - [4794] = {.count = 1, .reusable = false}, SHIFT(2392), - [4796] = {.count = 1, .reusable = true}, SHIFT(2393), - [4798] = {.count = 1, .reusable = false}, SHIFT(2393), - [4800] = {.count = 1, .reusable = true}, SHIFT(2394), - [4802] = {.count = 1, .reusable = false}, SHIFT(2394), - [4804] = {.count = 1, .reusable = true}, SHIFT(2395), - [4806] = {.count = 1, .reusable = false}, SHIFT(2395), - [4808] = {.count = 1, .reusable = true}, SHIFT(2396), - [4810] = {.count = 1, .reusable = false}, SHIFT(2396), - [4812] = {.count = 1, .reusable = true}, SHIFT(2397), - [4814] = {.count = 1, .reusable = false}, SHIFT(2397), - [4816] = {.count = 1, .reusable = true}, SHIFT(2398), - [4818] = {.count = 1, .reusable = false}, SHIFT(2398), - [4820] = {.count = 1, .reusable = true}, SHIFT(2399), - [4822] = {.count = 1, .reusable = false}, SHIFT(2399), - [4824] = {.count = 1, .reusable = true}, SHIFT(2400), - [4826] = {.count = 1, .reusable = false}, SHIFT(2400), - [4828] = {.count = 1, .reusable = true}, SHIFT(2401), - [4830] = {.count = 1, .reusable = false}, SHIFT(2401), - [4832] = {.count = 1, .reusable = true}, SHIFT(2403), - [4834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1334), - [4837] = {.count = 1, .reusable = true}, SHIFT(2404), - [4839] = {.count = 1, .reusable = false}, SHIFT(2404), - [4841] = {.count = 1, .reusable = true}, SHIFT(2405), - [4843] = {.count = 1, .reusable = false}, SHIFT(2405), - [4845] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [4847] = {.count = 1, .reusable = true}, SHIFT(2406), - [4849] = {.count = 1, .reusable = false}, REDUCE(sym_attribute, 4), - [4851] = {.count = 1, .reusable = true}, REDUCE(sym_attribute, 4), - [4853] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(519), - [4856] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [4858] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [4860] = {.count = 1, .reusable = true}, SHIFT(2409), - [4862] = {.count = 1, .reusable = false}, SHIFT(2409), - [4864] = {.count = 1, .reusable = true}, SHIFT(2408), - [4866] = {.count = 1, .reusable = true}, SHIFT(2410), - [4868] = {.count = 1, .reusable = true}, SHIFT(2411), - [4870] = {.count = 1, .reusable = true}, SHIFT(2412), - [4872] = {.count = 1, .reusable = true}, SHIFT(2413), - [4874] = {.count = 1, .reusable = false}, SHIFT(2413), - [4876] = {.count = 1, .reusable = true}, SHIFT(2414), - [4878] = {.count = 1, .reusable = true}, SHIFT(2415), - [4880] = {.count = 1, .reusable = false}, SHIFT(2416), - [4882] = {.count = 1, .reusable = true}, SHIFT(2417), - [4884] = {.count = 1, .reusable = false}, SHIFT(2418), - [4886] = {.count = 1, .reusable = true}, SHIFT(2419), + [4649] = {.count = 1, .reusable = true}, SHIFT(2353), + [4651] = {.count = 1, .reusable = true}, SHIFT(2354), + [4653] = {.count = 1, .reusable = true}, SHIFT(2357), + [4655] = {.count = 1, .reusable = true}, SHIFT(2358), + [4657] = {.count = 1, .reusable = true}, SHIFT(2361), + [4659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(484), + [4662] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(484), + [4665] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(454), + [4668] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [4670] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(456), + [4673] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(457), + [4676] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(458), + [4679] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(459), + [4682] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(460), + [4685] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(461), + [4688] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(462), + [4691] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(464), + [4694] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(465), + [4697] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(467), + [4700] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(468), + [4703] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(469), + [4706] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(470), + [4709] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(471), + [4712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(472), + [4715] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(473), + [4718] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(474), + [4721] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(475), + [4724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(476), + [4727] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(477), + [4730] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(478), + [4733] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(479), + [4736] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [4738] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [4740] = {.count = 1, .reusable = true}, SHIFT(2362), + [4742] = {.count = 1, .reusable = false}, SHIFT(2362), + [4744] = {.count = 1, .reusable = true}, SHIFT(2363), + [4746] = {.count = 1, .reusable = true}, SHIFT(2365), + [4748] = {.count = 1, .reusable = true}, SHIFT(2367), + [4750] = {.count = 1, .reusable = true}, SHIFT(2368), + [4752] = {.count = 1, .reusable = true}, SHIFT(2370), + [4754] = {.count = 1, .reusable = false}, SHIFT(2370), + [4756] = {.count = 1, .reusable = true}, SHIFT(2369), + [4758] = {.count = 1, .reusable = false}, SHIFT(1317), + [4760] = {.count = 1, .reusable = false}, SHIFT(1320), + [4762] = {.count = 1, .reusable = false}, SHIFT(1319), + [4764] = {.count = 1, .reusable = false}, SHIFT(2373), + [4766] = {.count = 1, .reusable = true}, SHIFT(2374), + [4768] = {.count = 1, .reusable = false}, SHIFT(2375), + [4770] = {.count = 1, .reusable = true}, SHIFT(2376), + [4772] = {.count = 1, .reusable = true}, SHIFT(1321), + [4774] = {.count = 1, .reusable = false}, SHIFT(1322), + [4776] = {.count = 1, .reusable = false}, SHIFT(1316), + [4778] = {.count = 1, .reusable = false}, SHIFT(1323), + [4780] = {.count = 1, .reusable = true}, SHIFT(1316), + [4782] = {.count = 1, .reusable = false}, SHIFT(1315), + [4784] = {.count = 1, .reusable = true}, SHIFT(1318), + [4786] = {.count = 1, .reusable = true}, SHIFT(1325), + [4788] = {.count = 1, .reusable = true}, SHIFT(2377), + [4790] = {.count = 1, .reusable = false}, SHIFT(2377), + [4792] = {.count = 1, .reusable = true}, SHIFT(2378), + [4794] = {.count = 1, .reusable = false}, SHIFT(2378), + [4796] = {.count = 1, .reusable = true}, SHIFT(2379), + [4798] = {.count = 1, .reusable = false}, SHIFT(2379), + [4800] = {.count = 1, .reusable = true}, SHIFT(2380), + [4802] = {.count = 1, .reusable = false}, SHIFT(2380), + [4804] = {.count = 1, .reusable = true}, SHIFT(2381), + [4806] = {.count = 1, .reusable = false}, SHIFT(2381), + [4808] = {.count = 1, .reusable = true}, SHIFT(2382), + [4810] = {.count = 1, .reusable = false}, SHIFT(2382), + [4812] = {.count = 1, .reusable = true}, SHIFT(2383), + [4814] = {.count = 1, .reusable = false}, SHIFT(2383), + [4816] = {.count = 1, .reusable = true}, SHIFT(2384), + [4818] = {.count = 1, .reusable = false}, SHIFT(2384), + [4820] = {.count = 1, .reusable = true}, SHIFT(2385), + [4822] = {.count = 1, .reusable = false}, SHIFT(2385), + [4824] = {.count = 1, .reusable = true}, SHIFT(2386), + [4826] = {.count = 1, .reusable = false}, SHIFT(2386), + [4828] = {.count = 1, .reusable = true}, SHIFT(2388), + [4830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1329), + [4833] = {.count = 1, .reusable = true}, SHIFT(2389), + [4835] = {.count = 1, .reusable = false}, SHIFT(2389), + [4837] = {.count = 1, .reusable = true}, SHIFT(2390), + [4839] = {.count = 1, .reusable = false}, SHIFT(2390), + [4841] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4843] = {.count = 1, .reusable = true}, SHIFT(2391), + [4845] = {.count = 1, .reusable = false}, REDUCE(sym_attribute, 4), + [4847] = {.count = 1, .reusable = true}, REDUCE(sym_attribute, 4), + [4849] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(520), + [4852] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [4854] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [4856] = {.count = 1, .reusable = true}, SHIFT(2394), + [4858] = {.count = 1, .reusable = false}, SHIFT(2394), + [4860] = {.count = 1, .reusable = true}, SHIFT(2393), + [4862] = {.count = 1, .reusable = true}, SHIFT(2395), + [4864] = {.count = 1, .reusable = true}, SHIFT(2396), + [4866] = {.count = 1, .reusable = true}, SHIFT(2397), + [4868] = {.count = 1, .reusable = true}, SHIFT(2398), + [4870] = {.count = 1, .reusable = false}, SHIFT(2398), + [4872] = {.count = 1, .reusable = true}, SHIFT(2399), + [4874] = {.count = 1, .reusable = true}, SHIFT(2400), + [4876] = {.count = 1, .reusable = false}, SHIFT(2401), + [4878] = {.count = 1, .reusable = true}, SHIFT(2402), + [4880] = {.count = 1, .reusable = false}, SHIFT(2403), + [4882] = {.count = 1, .reusable = true}, SHIFT(2404), + [4884] = {.count = 1, .reusable = false}, SHIFT(1370), + [4886] = {.count = 1, .reusable = true}, SHIFT(1374), [4888] = {.count = 1, .reusable = false}, SHIFT(1375), - [4890] = {.count = 1, .reusable = true}, SHIFT(1379), - [4892] = {.count = 1, .reusable = false}, SHIFT(1380), - [4894] = {.count = 1, .reusable = false}, SHIFT(1374), - [4896] = {.count = 1, .reusable = false}, SHIFT(1381), - [4898] = {.count = 1, .reusable = true}, SHIFT(1374), - [4900] = {.count = 1, .reusable = false}, SHIFT(1378), - [4902] = {.count = 1, .reusable = false}, SHIFT(1373), - [4904] = {.count = 1, .reusable = true}, SHIFT(1376), - [4906] = {.count = 1, .reusable = false}, SHIFT(1377), - [4908] = {.count = 1, .reusable = true}, SHIFT(1383), - [4910] = {.count = 1, .reusable = true}, SHIFT(2421), - [4912] = {.count = 1, .reusable = false}, SHIFT(2421), - [4914] = {.count = 1, .reusable = true}, SHIFT(2420), - [4916] = {.count = 1, .reusable = true}, SHIFT(2424), - [4918] = {.count = 1, .reusable = false}, SHIFT(2424), - [4920] = {.count = 1, .reusable = true}, SHIFT(2425), - [4922] = {.count = 1, .reusable = false}, SHIFT(2425), - [4924] = {.count = 1, .reusable = true}, SHIFT(2426), - [4926] = {.count = 1, .reusable = false}, SHIFT(2426), - [4928] = {.count = 1, .reusable = true}, SHIFT(2427), - [4930] = {.count = 1, .reusable = false}, SHIFT(2427), - [4932] = {.count = 1, .reusable = true}, SHIFT(2428), - [4934] = {.count = 1, .reusable = false}, SHIFT(2428), - [4936] = {.count = 1, .reusable = true}, SHIFT(2429), - [4938] = {.count = 1, .reusable = false}, SHIFT(2429), - [4940] = {.count = 1, .reusable = true}, SHIFT(2430), - [4942] = {.count = 1, .reusable = false}, SHIFT(2430), - [4944] = {.count = 1, .reusable = true}, SHIFT(2431), - [4946] = {.count = 1, .reusable = false}, SHIFT(2431), - [4948] = {.count = 1, .reusable = true}, SHIFT(2432), - [4950] = {.count = 1, .reusable = false}, SHIFT(2432), - [4952] = {.count = 1, .reusable = true}, SHIFT(2433), - [4954] = {.count = 1, .reusable = false}, SHIFT(2433), - [4956] = {.count = 1, .reusable = true}, SHIFT(2435), - [4958] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), - [4960] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1388), - [4963] = {.count = 1, .reusable = true}, SHIFT(2436), - [4965] = {.count = 1, .reusable = false}, SHIFT(2436), - [4967] = {.count = 1, .reusable = true}, SHIFT(2437), - [4969] = {.count = 1, .reusable = false}, SHIFT(2437), - [4971] = {.count = 1, .reusable = true}, SHIFT(2438), - [4973] = {.count = 1, .reusable = false}, SHIFT(2440), - [4975] = {.count = 1, .reusable = false}, SHIFT(2441), - [4977] = {.count = 1, .reusable = false}, SHIFT(2439), - [4979] = {.count = 1, .reusable = true}, SHIFT(2442), - [4981] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [4983] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [4985] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [4987] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [4989] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_reference_declarator, 2), - [4991] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [4993] = {.count = 1, .reusable = false}, SHIFT(2445), - [4995] = {.count = 1, .reusable = false}, SHIFT(2446), - [4997] = {.count = 1, .reusable = false}, SHIFT(2444), - [4999] = {.count = 1, .reusable = true}, SHIFT(2447), - [5001] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3), - [5004] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [5006] = {.count = 1, .reusable = true}, SHIFT(2448), - [5008] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 3, .alias_sequence_id = 9), - [5010] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 3), - [5012] = {.count = 1, .reusable = false}, SHIFT(2452), - [5014] = {.count = 1, .reusable = false}, SHIFT(2453), - [5016] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 3, .alias_sequence_id = 2), - [5018] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 4, .alias_sequence_id = 2), - [5020] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 4, .alias_sequence_id = 2), - [5022] = {.count = 1, .reusable = true}, SHIFT(2458), - [5024] = {.count = 1, .reusable = true}, SHIFT(2460), - [5026] = {.count = 1, .reusable = true}, SHIFT(2461), - [5028] = {.count = 1, .reusable = true}, SHIFT(2462), - [5030] = {.count = 1, .reusable = false}, SHIFT(2463), - [5032] = {.count = 1, .reusable = false}, SHIFT(2464), - [5034] = {.count = 1, .reusable = false}, SHIFT(2465), - [5036] = {.count = 1, .reusable = false}, SHIFT(2466), - [5038] = {.count = 1, .reusable = false}, SHIFT(2467), - [5040] = {.count = 1, .reusable = false}, SHIFT(2468), - [5042] = {.count = 1, .reusable = false}, SHIFT(2469), - [5044] = {.count = 1, .reusable = false}, SHIFT(2470), - [5046] = {.count = 1, .reusable = false}, SHIFT(2471), - [5048] = {.count = 1, .reusable = false}, SHIFT(2472), - [5050] = {.count = 1, .reusable = false}, SHIFT(2473), - [5052] = {.count = 1, .reusable = false}, SHIFT(2474), - [5054] = {.count = 1, .reusable = false}, SHIFT(2475), - [5056] = {.count = 1, .reusable = false}, SHIFT(2482), - [5058] = {.count = 1, .reusable = true}, REDUCE(sym_access_specifier, 2), - [5060] = {.count = 1, .reusable = false}, REDUCE(sym_access_specifier, 2), - [5062] = {.count = 1, .reusable = false}, SHIFT(2484), - [5064] = {.count = 1, .reusable = false}, SHIFT(2485), - [5066] = {.count = 1, .reusable = true}, SHIFT(2488), - [5068] = {.count = 1, .reusable = true}, SHIFT(2489), - [5070] = {.count = 1, .reusable = true}, SHIFT(2490), - [5072] = {.count = 1, .reusable = true}, SHIFT(2492), - [5074] = {.count = 1, .reusable = true}, SHIFT(2494), - [5076] = {.count = 1, .reusable = true}, REDUCE(sym_friend_declaration, 2), - [5078] = {.count = 1, .reusable = false}, REDUCE(sym_friend_declaration, 2), - [5080] = {.count = 1, .reusable = true}, SHIFT(2495), - [5082] = {.count = 1, .reusable = false}, SHIFT(2499), - [5084] = {.count = 1, .reusable = true}, SHIFT(2500), - [5086] = {.count = 1, .reusable = false}, SHIFT(2502), - [5088] = {.count = 1, .reusable = true}, SHIFT(2504), - [5090] = {.count = 1, .reusable = true}, SHIFT(2503), - [5092] = {.count = 1, .reusable = false}, SHIFT(2508), - [5094] = {.count = 1, .reusable = true}, SHIFT(2509), - [5096] = {.count = 1, .reusable = true}, SHIFT(2508), - [5098] = {.count = 1, .reusable = true}, SHIFT(2510), - [5100] = {.count = 1, .reusable = true}, SHIFT(2512), - [5102] = {.count = 1, .reusable = true}, SHIFT(2514), - [5104] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [5106] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [5108] = {.count = 1, .reusable = true}, SHIFT(2515), - [5110] = {.count = 1, .reusable = false}, SHIFT(2515), - [5112] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 13), - [5114] = {.count = 1, .reusable = false}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 13), - [5116] = {.count = 1, .reusable = true}, SHIFT(2516), - [5118] = {.count = 1, .reusable = false}, SHIFT(2516), - [5120] = {.count = 1, .reusable = true}, SHIFT(2519), - [5122] = {.count = 1, .reusable = true}, SHIFT(1456), - [5124] = {.count = 1, .reusable = true}, SHIFT(2517), - [5126] = {.count = 1, .reusable = true}, SHIFT(2518), - [5128] = {.count = 1, .reusable = true}, SHIFT(2520), - [5130] = {.count = 1, .reusable = true}, SHIFT(1963), - [5132] = {.count = 1, .reusable = true}, SHIFT(2524), - [5134] = {.count = 1, .reusable = true}, SHIFT(2525), - [5136] = {.count = 1, .reusable = true}, SHIFT(2526), - [5138] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_declaration, 2), - [5140] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_declaration, 2), - [5142] = {.count = 1, .reusable = true}, SHIFT(2529), - [5144] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [5146] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [5148] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(271), - [5151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(20), - [5154] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(619), - [5157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(622), - [5160] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3), - [5163] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(599), - [5166] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(600), - [5169] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(601), - [5172] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(602), - [5175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(46), - [5178] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(26), - [5181] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [5183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(604), - [5186] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(305), - [5189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(28), - [5192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(605), - [5195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(606), - [5198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(607), - [5201] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(614), - [5204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(608), - [5207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(609), - [5210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(209), - [5213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(38), - [5216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(610), - [5219] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(611), - [5222] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), - [5225] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(167), - [5228] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(612), - [5231] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(46), - [5234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1473), - [5237] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 4), - [5239] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 4), - [5241] = {.count = 1, .reusable = true}, SHIFT(2532), - [5243] = {.count = 1, .reusable = false}, SHIFT(2532), - [5245] = {.count = 1, .reusable = false}, REDUCE(sym_using_declaration, 4), - [5247] = {.count = 1, .reusable = true}, REDUCE(sym_using_declaration, 4), - [5249] = {.count = 1, .reusable = false}, SHIFT(2533), - [5251] = {.count = 1, .reusable = true}, SHIFT(2534), - [5253] = {.count = 1, .reusable = true}, SHIFT(2533), - [5255] = {.count = 1, .reusable = true}, SHIFT(2538), - [5257] = {.count = 1, .reusable = false}, SHIFT(2539), - [5259] = {.count = 1, .reusable = false}, SHIFT(2540), - [5261] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), - [5263] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), - [5265] = {.count = 1, .reusable = true}, SHIFT(2541), - [5267] = {.count = 1, .reusable = true}, SHIFT(2542), - [5269] = {.count = 1, .reusable = false}, SHIFT(2542), - [5271] = {.count = 1, .reusable = false}, SHIFT(671), - [5273] = {.count = 1, .reusable = true}, SHIFT(2547), - [5275] = {.count = 1, .reusable = true}, SHIFT(2558), - [5277] = {.count = 1, .reusable = true}, SHIFT(2560), - [5279] = {.count = 1, .reusable = true}, SHIFT(2559), - [5281] = {.count = 1, .reusable = true}, SHIFT(2569), - [5283] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1519), - [5286] = {.count = 1, .reusable = true}, SHIFT(2570), - [5288] = {.count = 1, .reusable = false}, SHIFT(2570), - [5290] = {.count = 1, .reusable = true}, SHIFT(2573), - [5292] = {.count = 1, .reusable = false}, SHIFT(2573), - [5294] = {.count = 1, .reusable = true}, SHIFT(2574), - [5296] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 3), - [5298] = {.count = 1, .reusable = true}, SHIFT(2575), - [5300] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3), - [5302] = {.count = 1, .reusable = true}, SHIFT(2576), - [5304] = {.count = 1, .reusable = true}, SHIFT(2578), - [5306] = {.count = 1, .reusable = true}, SHIFT(2580), - [5308] = {.count = 1, .reusable = true}, SHIFT(2581), - [5310] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [5312] = {.count = 1, .reusable = true}, SHIFT(2583), - [5314] = {.count = 1, .reusable = false}, SHIFT(2585), - [5316] = {.count = 1, .reusable = false}, SHIFT(2586), - [5318] = {.count = 1, .reusable = false}, SHIFT(2584), - [5320] = {.count = 1, .reusable = true}, SHIFT(2587), - [5322] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(182), - [5325] = {.count = 1, .reusable = true}, SHIFT(2588), - [5327] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 4, .alias_sequence_id = 2), - [5329] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 4, .alias_sequence_id = 2), - [5331] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 4), - [5333] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 4), - [5335] = {.count = 1, .reusable = true}, SHIFT(2592), - [5337] = {.count = 1, .reusable = false}, SHIFT(2592), - [5339] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [5341] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [5343] = {.count = 1, .reusable = true}, SHIFT(2594), - [5345] = {.count = 1, .reusable = true}, SHIFT(2596), - [5347] = {.count = 1, .reusable = true}, SHIFT(2598), - [5349] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 4), - [5351] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 4), - [5353] = {.count = 1, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), - [5355] = {.count = 1, .reusable = true}, REDUCE(aux_sym_try_statement_repeat1, 2), - [5357] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(717), - [5360] = {.count = 1, .reusable = false}, SHIFT(2601), - [5362] = {.count = 1, .reusable = true}, SHIFT(2603), - [5364] = {.count = 1, .reusable = false}, SHIFT(2603), - [5366] = {.count = 1, .reusable = true}, SHIFT(2602), - [5368] = {.count = 1, .reusable = true}, SHIFT(2604), - [5370] = {.count = 1, .reusable = false}, SHIFT(2605), - [5372] = {.count = 1, .reusable = true}, SHIFT(2606), - [5374] = {.count = 1, .reusable = false}, SHIFT(2606), - [5376] = {.count = 1, .reusable = true}, SHIFT(2607), - [5378] = {.count = 1, .reusable = true}, SHIFT(2609), - [5380] = {.count = 1, .reusable = true}, SHIFT(2610), - [5382] = {.count = 1, .reusable = true}, REDUCE(sym_for_range_declaration, 2), - [5384] = {.count = 1, .reusable = true}, SHIFT(2613), - [5386] = {.count = 1, .reusable = true}, SHIFT(2615), - [5388] = {.count = 1, .reusable = false}, SHIFT(2615), - [5390] = {.count = 1, .reusable = true}, SHIFT(2616), - [5392] = {.count = 1, .reusable = false}, SHIFT(2616), - [5394] = {.count = 1, .reusable = true}, SHIFT(2618), - [5396] = {.count = 1, .reusable = true}, SHIFT(1645), - [5398] = {.count = 1, .reusable = true}, SHIFT(2619), - [5400] = {.count = 1, .reusable = true}, SHIFT(2620), - [5402] = {.count = 1, .reusable = false}, SHIFT(2621), - [5404] = {.count = 1, .reusable = true}, SHIFT(2622), - [5406] = {.count = 1, .reusable = true}, SHIFT(2624), - [5408] = {.count = 1, .reusable = false}, SHIFT(2624), - [5410] = {.count = 1, .reusable = true}, SHIFT(2623), - [5412] = {.count = 1, .reusable = false}, SHIFT(1636), - [5414] = {.count = 1, .reusable = false}, SHIFT(1639), - [5416] = {.count = 1, .reusable = false}, SHIFT(1638), - [5418] = {.count = 1, .reusable = false}, SHIFT(2628), - [5420] = {.count = 1, .reusable = true}, SHIFT(2627), - [5422] = {.count = 1, .reusable = true}, SHIFT(2630), - [5424] = {.count = 1, .reusable = false}, SHIFT(2630), - [5426] = {.count = 1, .reusable = true}, SHIFT(2629), - [5428] = {.count = 1, .reusable = true}, SHIFT(2634), - [5430] = {.count = 1, .reusable = false}, SHIFT(2634), - [5432] = {.count = 1, .reusable = true}, SHIFT(2632), - [5434] = {.count = 1, .reusable = true}, SHIFT(2633), - [5436] = {.count = 1, .reusable = false}, SHIFT(2636), - [5438] = {.count = 1, .reusable = true}, SHIFT(2637), - [5440] = {.count = 1, .reusable = false}, SHIFT(2643), - [5442] = {.count = 1, .reusable = false}, SHIFT(2649), - [5444] = {.count = 1, .reusable = true}, SHIFT(2650), - [5446] = {.count = 1, .reusable = true}, SHIFT(2651), - [5448] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(1612), - [5451] = {.count = 1, .reusable = true}, SHIFT(2653), - [5453] = {.count = 1, .reusable = true}, SHIFT(2654), - [5455] = {.count = 1, .reusable = false}, SHIFT(2656), - [5457] = {.count = 1, .reusable = true}, SHIFT(2662), - [5459] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(1612), - [5462] = {.count = 1, .reusable = false}, SHIFT(2666), - [5464] = {.count = 1, .reusable = false}, SHIFT(2664), - [5466] = {.count = 1, .reusable = false}, SHIFT(2665), - [5468] = {.count = 1, .reusable = true}, SHIFT(2667), - [5470] = {.count = 1, .reusable = false}, SHIFT(2670), - [5472] = {.count = 1, .reusable = true}, SHIFT(2671), - [5474] = {.count = 1, .reusable = true}, SHIFT(2672), - [5476] = {.count = 1, .reusable = true}, SHIFT(1640), - [5478] = {.count = 1, .reusable = false}, SHIFT(1641), - [5480] = {.count = 1, .reusable = false}, SHIFT(1635), - [5482] = {.count = 1, .reusable = false}, SHIFT(1642), - [5484] = {.count = 1, .reusable = true}, SHIFT(1635), - [5486] = {.count = 1, .reusable = false}, SHIFT(1634), - [5488] = {.count = 1, .reusable = true}, SHIFT(1637), - [5490] = {.count = 1, .reusable = true}, SHIFT(1644), - [5492] = {.count = 1, .reusable = false}, SHIFT(2674), - [5494] = {.count = 1, .reusable = true}, SHIFT(2673), - [5496] = {.count = 1, .reusable = true}, SHIFT(2675), - [5498] = {.count = 1, .reusable = false}, SHIFT(2675), - [5500] = {.count = 1, .reusable = true}, SHIFT(2676), - [5502] = {.count = 1, .reusable = false}, SHIFT(2676), - [5504] = {.count = 1, .reusable = true}, SHIFT(2677), - [5506] = {.count = 1, .reusable = false}, SHIFT(2677), - [5508] = {.count = 1, .reusable = true}, SHIFT(2678), - [5510] = {.count = 1, .reusable = false}, SHIFT(2678), - [5512] = {.count = 1, .reusable = true}, SHIFT(2679), - [5514] = {.count = 1, .reusable = false}, SHIFT(2679), - [5516] = {.count = 1, .reusable = true}, SHIFT(2680), - [5518] = {.count = 1, .reusable = false}, SHIFT(2680), - [5520] = {.count = 1, .reusable = true}, SHIFT(2681), - [5522] = {.count = 1, .reusable = false}, SHIFT(2681), - [5524] = {.count = 1, .reusable = true}, SHIFT(2682), - [5526] = {.count = 1, .reusable = false}, SHIFT(2682), - [5528] = {.count = 1, .reusable = true}, SHIFT(2683), - [5530] = {.count = 1, .reusable = false}, SHIFT(2683), - [5532] = {.count = 1, .reusable = true}, SHIFT(2684), - [5534] = {.count = 1, .reusable = false}, SHIFT(2684), - [5536] = {.count = 1, .reusable = true}, SHIFT(2685), - [5538] = {.count = 1, .reusable = false}, SHIFT(2685), - [5540] = {.count = 1, .reusable = true}, SHIFT(2687), - [5542] = {.count = 1, .reusable = true}, SHIFT(2689), - [5544] = {.count = 1, .reusable = true}, SHIFT(2690), - [5546] = {.count = 1, .reusable = true}, SHIFT(2692), - [5548] = {.count = 1, .reusable = true}, SHIFT(2694), - [5550] = {.count = 1, .reusable = true}, SHIFT(2695), - [5552] = {.count = 1, .reusable = false}, SHIFT(766), - [5554] = {.count = 1, .reusable = true}, SHIFT(2700), - [5556] = {.count = 1, .reusable = true}, SHIFT(2711), - [5558] = {.count = 1, .reusable = true}, SHIFT(2713), - [5560] = {.count = 1, .reusable = true}, SHIFT(2712), - [5562] = {.count = 1, .reusable = true}, SHIFT(2722), - [5564] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1690), - [5567] = {.count = 1, .reusable = true}, SHIFT(2724), - [5569] = {.count = 1, .reusable = false}, SHIFT(2724), - [5571] = {.count = 1, .reusable = true}, SHIFT(2723), - [5573] = {.count = 1, .reusable = true}, SHIFT(2726), - [5575] = {.count = 1, .reusable = false}, SHIFT(2726), - [5577] = {.count = 1, .reusable = true}, SHIFT(2729), - [5579] = {.count = 1, .reusable = false}, SHIFT(2729), - [5581] = {.count = 1, .reusable = true}, SHIFT(2730), - [5583] = {.count = 2, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), SHIFT(1612), - [5586] = {.count = 1, .reusable = true}, SHIFT(1612), - [5588] = {.count = 1, .reusable = true}, SHIFT(2734), - [5590] = {.count = 1, .reusable = true}, SHIFT(2735), - [5592] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 4), - [5594] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 4), - [5596] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(793), - [5599] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(228), - [5602] = {.count = 1, .reusable = true}, SHIFT(2736), - [5604] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 4, .alias_sequence_id = 2), - [5606] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 4, .alias_sequence_id = 2), - [5608] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 4), - [5610] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 4), - [5612] = {.count = 1, .reusable = true}, SHIFT(2740), - [5614] = {.count = 1, .reusable = true}, SHIFT(2742), - [5616] = {.count = 1, .reusable = false}, SHIFT(2742), - [5618] = {.count = 1, .reusable = true}, SHIFT(2741), - [5620] = {.count = 1, .reusable = false}, SHIFT(2744), - [5622] = {.count = 1, .reusable = true}, SHIFT(2746), - [5624] = {.count = 1, .reusable = true}, SHIFT(2745), - [5626] = {.count = 1, .reusable = false}, SHIFT(2746), - [5628] = {.count = 1, .reusable = false}, SHIFT(2749), - [5630] = {.count = 1, .reusable = false}, SHIFT(2748), - [5632] = {.count = 1, .reusable = false}, SHIFT(2747), - [5634] = {.count = 1, .reusable = true}, SHIFT(2752), - [5636] = {.count = 1, .reusable = false}, SHIFT(2752), - [5638] = {.count = 1, .reusable = true}, SHIFT(2751), - [5640] = {.count = 1, .reusable = true}, SHIFT(2766), - [5642] = {.count = 1, .reusable = false}, SHIFT(2766), - [5644] = {.count = 1, .reusable = false}, SHIFT(2767), - [5646] = {.count = 1, .reusable = true}, SHIFT(2768), - [5648] = {.count = 1, .reusable = false}, SHIFT(2769), - [5650] = {.count = 1, .reusable = true}, SHIFT(2770), - [5652] = {.count = 1, .reusable = true}, SHIFT(2771), - [5654] = {.count = 1, .reusable = false}, SHIFT(2771), - [5656] = {.count = 1, .reusable = true}, SHIFT(2772), - [5658] = {.count = 1, .reusable = false}, SHIFT(2772), - [5660] = {.count = 1, .reusable = true}, SHIFT(2773), - [5662] = {.count = 1, .reusable = false}, SHIFT(2773), - [5664] = {.count = 1, .reusable = true}, SHIFT(2774), - [5666] = {.count = 1, .reusable = false}, SHIFT(2774), - [5668] = {.count = 1, .reusable = true}, SHIFT(2775), - [5670] = {.count = 1, .reusable = false}, SHIFT(2775), - [5672] = {.count = 1, .reusable = true}, SHIFT(2776), - [5674] = {.count = 1, .reusable = false}, SHIFT(2776), - [5676] = {.count = 1, .reusable = true}, SHIFT(2777), - [5678] = {.count = 1, .reusable = false}, SHIFT(2777), - [5680] = {.count = 1, .reusable = true}, SHIFT(2778), - [5682] = {.count = 1, .reusable = false}, SHIFT(2778), - [5684] = {.count = 1, .reusable = true}, SHIFT(2779), - [5686] = {.count = 1, .reusable = false}, SHIFT(2779), - [5688] = {.count = 1, .reusable = true}, SHIFT(2780), - [5690] = {.count = 1, .reusable = false}, SHIFT(2780), - [5692] = {.count = 1, .reusable = false}, SHIFT(2781), - [5694] = {.count = 1, .reusable = false}, SHIFT(2784), - [5696] = {.count = 1, .reusable = false}, SHIFT(2783), - [5698] = {.count = 1, .reusable = false}, SHIFT(2782), - [5700] = {.count = 1, .reusable = false}, SHIFT(2785), - [5702] = {.count = 1, .reusable = true}, SHIFT(2788), - [5704] = {.count = 1, .reusable = true}, SHIFT(2789), - [5706] = {.count = 1, .reusable = true}, SHIFT(2792), - [5708] = {.count = 1, .reusable = false}, SHIFT(2792), - [5710] = {.count = 1, .reusable = true}, SHIFT(2791), - [5712] = {.count = 1, .reusable = true}, SHIFT(2793), - [5714] = {.count = 1, .reusable = true}, SHIFT(2794), - [5716] = {.count = 1, .reusable = true}, SHIFT(2797), - [5718] = {.count = 1, .reusable = true}, SHIFT(2798), - [5720] = {.count = 1, .reusable = false}, SHIFT(2798), - [5722] = {.count = 1, .reusable = true}, SHIFT(2800), - [5724] = {.count = 1, .reusable = false}, SHIFT(2800), - [5726] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), - [5728] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), - [5730] = {.count = 1, .reusable = true}, REDUCE(sym_type_parameter_declaration, 2, .alias_sequence_id = 2), - [5732] = {.count = 1, .reusable = true}, SHIFT(2802), - [5734] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(2803), - [5737] = {.count = 1, .reusable = true}, SHIFT(2804), - [5739] = {.count = 1, .reusable = false}, SHIFT(2806), - [5741] = {.count = 1, .reusable = false}, SHIFT(2807), - [5743] = {.count = 1, .reusable = false}, SHIFT(2808), - [5745] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [5747] = {.count = 1, .reusable = true}, SHIFT(2809), - [5749] = {.count = 1, .reusable = true}, SHIFT(2808), - [5751] = {.count = 1, .reusable = true}, SHIFT(2810), - [5753] = {.count = 1, .reusable = true}, SHIFT(2813), - [5755] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 3), - [5757] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 3), - [5759] = {.count = 1, .reusable = true}, SHIFT(2815), - [5761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1800), - [5764] = {.count = 1, .reusable = false}, SHIFT(2818), - [5766] = {.count = 1, .reusable = true}, SHIFT(2819), - [5768] = {.count = 1, .reusable = true}, SHIFT(2818), - [5770] = {.count = 1, .reusable = true}, SHIFT(2820), - [5772] = {.count = 1, .reusable = true}, SHIFT(2821), - [5774] = {.count = 1, .reusable = true}, SHIFT(2823), - [5776] = {.count = 1, .reusable = true}, SHIFT(2824), - [5778] = {.count = 1, .reusable = false}, SHIFT(2824), - [5780] = {.count = 1, .reusable = true}, SHIFT(2825), - [5782] = {.count = 1, .reusable = true}, SHIFT(2826), - [5784] = {.count = 1, .reusable = false}, SHIFT(2829), - [5786] = {.count = 1, .reusable = false}, SHIFT(2830), - [5788] = {.count = 1, .reusable = false}, SHIFT(2828), - [5790] = {.count = 1, .reusable = true}, SHIFT(2831), - [5792] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1820), - [5795] = {.count = 1, .reusable = false}, REDUCE(sym_template_instantiation, 4), - [5797] = {.count = 1, .reusable = true}, REDUCE(sym_template_instantiation, 4), - [5799] = {.count = 1, .reusable = true}, SHIFT(2834), - [5801] = {.count = 1, .reusable = false}, SHIFT(2834), - [5803] = {.count = 1, .reusable = true}, SHIFT(2835), - [5805] = {.count = 1, .reusable = true}, SHIFT(2836), - [5807] = {.count = 1, .reusable = true}, SHIFT(2838), - [5809] = {.count = 1, .reusable = false}, SHIFT(2838), - [5811] = {.count = 1, .reusable = true}, SHIFT(2837), - [5813] = {.count = 1, .reusable = false}, SHIFT(1838), - [5815] = {.count = 1, .reusable = false}, SHIFT(1841), - [5817] = {.count = 1, .reusable = false}, SHIFT(1840), - [5819] = {.count = 1, .reusable = false}, SHIFT(2841), - [5821] = {.count = 1, .reusable = true}, SHIFT(2842), - [5823] = {.count = 1, .reusable = false}, SHIFT(2843), - [5825] = {.count = 1, .reusable = true}, SHIFT(2844), - [5827] = {.count = 1, .reusable = true}, SHIFT(1842), - [5829] = {.count = 1, .reusable = false}, SHIFT(1843), - [5831] = {.count = 1, .reusable = false}, SHIFT(1837), - [5833] = {.count = 1, .reusable = false}, SHIFT(1844), - [5835] = {.count = 1, .reusable = true}, SHIFT(1837), - [5837] = {.count = 1, .reusable = false}, SHIFT(1836), - [5839] = {.count = 1, .reusable = true}, SHIFT(1839), - [5841] = {.count = 1, .reusable = true}, SHIFT(1846), - [5843] = {.count = 1, .reusable = true}, SHIFT(2845), - [5845] = {.count = 1, .reusable = false}, SHIFT(2845), - [5847] = {.count = 1, .reusable = true}, SHIFT(2846), - [5849] = {.count = 1, .reusable = false}, SHIFT(2846), - [5851] = {.count = 1, .reusable = true}, SHIFT(2847), - [5853] = {.count = 1, .reusable = false}, SHIFT(2847), - [5855] = {.count = 1, .reusable = true}, SHIFT(2848), - [5857] = {.count = 1, .reusable = false}, SHIFT(2848), - [5859] = {.count = 1, .reusable = true}, SHIFT(2849), - [5861] = {.count = 1, .reusable = false}, SHIFT(2849), - [5863] = {.count = 1, .reusable = true}, SHIFT(2850), - [5865] = {.count = 1, .reusable = false}, SHIFT(2850), - [5867] = {.count = 1, .reusable = true}, SHIFT(2851), - [5869] = {.count = 1, .reusable = false}, SHIFT(2851), - [5871] = {.count = 1, .reusable = true}, SHIFT(2852), - [5873] = {.count = 1, .reusable = false}, SHIFT(2852), - [5875] = {.count = 1, .reusable = true}, SHIFT(2853), - [5877] = {.count = 1, .reusable = false}, SHIFT(2853), - [5879] = {.count = 1, .reusable = true}, SHIFT(2854), - [5881] = {.count = 1, .reusable = false}, SHIFT(2854), - [5883] = {.count = 1, .reusable = true}, SHIFT(2856), - [5885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1850), - [5888] = {.count = 1, .reusable = true}, SHIFT(2857), - [5890] = {.count = 1, .reusable = false}, SHIFT(2857), - [5892] = {.count = 1, .reusable = true}, SHIFT(2858), - [5894] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), - [5896] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), - [5898] = {.count = 1, .reusable = true}, SHIFT(2859), - [5900] = {.count = 1, .reusable = true}, SHIFT(2860), - [5902] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 2), - [5904] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [5906] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), - [5908] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), - [5910] = {.count = 1, .reusable = true}, SHIFT(2862), - [5912] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 4), - [5914] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 4), - [5916] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2), - [5918] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2, .alias_sequence_id = 12), - [5920] = {.count = 1, .reusable = false}, SHIFT(2864), - [5922] = {.count = 1, .reusable = true}, SHIFT(2863), - [5924] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer, 2, .alias_sequence_id = 13), - [5926] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer, 2), - [5928] = {.count = 1, .reusable = false}, SHIFT(2866), - [5930] = {.count = 1, .reusable = true}, SHIFT(2865), - [5932] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer_list, 3), - [5934] = {.count = 1, .reusable = false}, REDUCE(sym_default_method_clause, 3), - [5936] = {.count = 1, .reusable = true}, REDUCE(sym_default_method_clause, 3), - [5938] = {.count = 1, .reusable = false}, REDUCE(sym_delete_method_clause, 3), - [5940] = {.count = 1, .reusable = true}, REDUCE(sym_delete_method_clause, 3), - [5942] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2, .alias_sequence_id = 12), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), - [5945] = {.count = 1, .reusable = false}, SHIFT(2869), - [5947] = {.count = 1, .reusable = true}, REDUCE(sym_template_method, 2, .alias_sequence_id = 13), - [5949] = {.count = 1, .reusable = false}, REDUCE(sym_template_method, 2, .alias_sequence_id = 13), - [5951] = {.count = 1, .reusable = true}, REDUCE(sym_template_method, 2), - [5953] = {.count = 1, .reusable = false}, REDUCE(sym_template_method, 2), - [5955] = {.count = 1, .reusable = false}, SHIFT(2870), - [5957] = {.count = 1, .reusable = true}, SHIFT(2871), - [5959] = {.count = 1, .reusable = true}, SHIFT(2873), - [5961] = {.count = 1, .reusable = false}, SHIFT(2873), - [5963] = {.count = 1, .reusable = true}, SHIFT(2872), - [5965] = {.count = 1, .reusable = false}, SHIFT(2875), - [5967] = {.count = 1, .reusable = true}, SHIFT(2877), - [5969] = {.count = 1, .reusable = true}, SHIFT(2876), - [5971] = {.count = 1, .reusable = false}, SHIFT(2877), - [5973] = {.count = 1, .reusable = false}, SHIFT(2880), - [5975] = {.count = 1, .reusable = false}, SHIFT(2879), - [5977] = {.count = 1, .reusable = false}, SHIFT(2878), - [5979] = {.count = 1, .reusable = true}, SHIFT(2883), - [5981] = {.count = 1, .reusable = false}, SHIFT(2883), - [5983] = {.count = 1, .reusable = true}, SHIFT(2882), - [5985] = {.count = 1, .reusable = true}, SHIFT(2897), - [5987] = {.count = 1, .reusable = false}, SHIFT(2897), - [5989] = {.count = 1, .reusable = false}, SHIFT(2898), - [5991] = {.count = 1, .reusable = true}, SHIFT(2899), - [5993] = {.count = 1, .reusable = false}, SHIFT(2900), - [5995] = {.count = 1, .reusable = true}, SHIFT(2901), - [5997] = {.count = 1, .reusable = true}, SHIFT(2902), - [5999] = {.count = 1, .reusable = false}, SHIFT(2902), - [6001] = {.count = 1, .reusable = true}, SHIFT(2903), - [6003] = {.count = 1, .reusable = false}, SHIFT(2903), - [6005] = {.count = 1, .reusable = true}, SHIFT(2904), - [6007] = {.count = 1, .reusable = false}, SHIFT(2904), - [6009] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [6011] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [6013] = {.count = 1, .reusable = true}, SHIFT(2905), - [6015] = {.count = 1, .reusable = false}, SHIFT(2905), - [6017] = {.count = 1, .reusable = true}, SHIFT(2906), - [6019] = {.count = 1, .reusable = false}, SHIFT(2906), - [6021] = {.count = 1, .reusable = true}, SHIFT(2907), - [6023] = {.count = 1, .reusable = false}, SHIFT(2907), - [6025] = {.count = 1, .reusable = true}, SHIFT(2908), - [6027] = {.count = 1, .reusable = false}, SHIFT(2908), - [6029] = {.count = 1, .reusable = true}, SHIFT(2909), - [6031] = {.count = 1, .reusable = false}, SHIFT(2909), - [6033] = {.count = 1, .reusable = true}, SHIFT(2910), - [6035] = {.count = 1, .reusable = false}, SHIFT(2910), - [6037] = {.count = 1, .reusable = true}, SHIFT(2911), - [6039] = {.count = 1, .reusable = false}, SHIFT(2911), - [6041] = {.count = 1, .reusable = true}, SHIFT(2913), - [6043] = {.count = 1, .reusable = true}, SHIFT(2915), - [6045] = {.count = 1, .reusable = false}, SHIFT(2915), - [6047] = {.count = 1, .reusable = true}, SHIFT(2914), - [6049] = {.count = 1, .reusable = true}, SHIFT(2916), - [6051] = {.count = 1, .reusable = false}, SHIFT(2916), - [6053] = {.count = 1, .reusable = false}, SHIFT(2918), - [6055] = {.count = 1, .reusable = true}, SHIFT(2919), - [6057] = {.count = 1, .reusable = false}, SHIFT(2919), - [6059] = {.count = 1, .reusable = true}, SHIFT(2921), - [6061] = {.count = 1, .reusable = true}, SHIFT(2920), - [6063] = {.count = 1, .reusable = false}, SHIFT(2921), - [6065] = {.count = 1, .reusable = true}, SHIFT(2922), - [6067] = {.count = 1, .reusable = false}, SHIFT(2922), - [6069] = {.count = 1, .reusable = false}, SHIFT(2925), - [6071] = {.count = 1, .reusable = false}, SHIFT(2924), - [6073] = {.count = 1, .reusable = false}, SHIFT(2923), - [6075] = {.count = 1, .reusable = true}, SHIFT(2928), - [6077] = {.count = 1, .reusable = false}, SHIFT(2928), - [6079] = {.count = 1, .reusable = true}, SHIFT(2927), - [6081] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(2940), - [6084] = {.count = 1, .reusable = true}, SHIFT(2943), - [6086] = {.count = 1, .reusable = false}, SHIFT(2943), - [6088] = {.count = 1, .reusable = false}, SHIFT(2944), - [6090] = {.count = 1, .reusable = false}, SHIFT(2947), - [6092] = {.count = 1, .reusable = false}, SHIFT(2950), - [6094] = {.count = 1, .reusable = false}, SHIFT(2953), - [6096] = {.count = 1, .reusable = true}, SHIFT(2954), - [6098] = {.count = 1, .reusable = false}, SHIFT(2955), - [6100] = {.count = 1, .reusable = true}, SHIFT(2956), - [6102] = {.count = 1, .reusable = true}, SHIFT(2957), - [6104] = {.count = 1, .reusable = false}, SHIFT(2957), - [6106] = {.count = 1, .reusable = true}, SHIFT(2958), - [6108] = {.count = 1, .reusable = false}, SHIFT(2958), - [6110] = {.count = 1, .reusable = true}, SHIFT(2959), - [6112] = {.count = 1, .reusable = false}, SHIFT(2959), - [6114] = {.count = 1, .reusable = true}, SHIFT(2960), - [6116] = {.count = 1, .reusable = false}, SHIFT(2960), - [6118] = {.count = 1, .reusable = true}, SHIFT(2962), - [6120] = {.count = 1, .reusable = false}, SHIFT(2962), - [6122] = {.count = 1, .reusable = true}, SHIFT(2963), - [6124] = {.count = 1, .reusable = false}, SHIFT(2963), - [6126] = {.count = 1, .reusable = true}, SHIFT(2964), - [6128] = {.count = 1, .reusable = false}, SHIFT(2964), - [6130] = {.count = 1, .reusable = true}, SHIFT(2965), - [6132] = {.count = 1, .reusable = false}, SHIFT(2965), - [6134] = {.count = 1, .reusable = true}, SHIFT(2966), - [6136] = {.count = 1, .reusable = false}, SHIFT(2966), - [6138] = {.count = 1, .reusable = true}, SHIFT(2967), - [6140] = {.count = 1, .reusable = false}, SHIFT(2967), - [6142] = {.count = 1, .reusable = true}, SHIFT(2968), - [6144] = {.count = 1, .reusable = false}, SHIFT(2968), - [6146] = {.count = 1, .reusable = true}, SHIFT(2969), - [6148] = {.count = 1, .reusable = false}, SHIFT(2969), - [6150] = {.count = 1, .reusable = true}, SHIFT(2971), - [6152] = {.count = 1, .reusable = false}, SHIFT(2971), - [6154] = {.count = 1, .reusable = true}, SHIFT(2970), - [6156] = {.count = 1, .reusable = true}, SHIFT(2974), - [6158] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [6160] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 3), - [6162] = {.count = 1, .reusable = true}, SHIFT(2975), - [6164] = {.count = 1, .reusable = false}, SHIFT(2978), - [6166] = {.count = 1, .reusable = false}, SHIFT(2979), - [6168] = {.count = 1, .reusable = false}, SHIFT(2980), - [6170] = {.count = 1, .reusable = true}, SHIFT(2981), - [6172] = {.count = 1, .reusable = true}, SHIFT(2980), - [6174] = {.count = 1, .reusable = true}, SHIFT(2982), - [6176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1975), - [6179] = {.count = 1, .reusable = true}, SHIFT(2986), - [6181] = {.count = 1, .reusable = false}, SHIFT(2987), - [6183] = {.count = 1, .reusable = true}, SHIFT(2987), - [6185] = {.count = 1, .reusable = true}, SHIFT(2988), - [6187] = {.count = 1, .reusable = true}, SHIFT(2991), - [6189] = {.count = 1, .reusable = true}, SHIFT(2994), - [6191] = {.count = 1, .reusable = false}, SHIFT(2994), - [6193] = {.count = 1, .reusable = true}, SHIFT(2995), - [6195] = {.count = 1, .reusable = true}, REDUCE(sym_variadic_parameter_declaration, 2), - [6197] = {.count = 1, .reusable = true}, SHIFT(2998), - [6199] = {.count = 1, .reusable = true}, SHIFT(2997), - [6201] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [6203] = {.count = 1, .reusable = true}, SHIFT(3000), - [6205] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(992), - [6208] = {.count = 1, .reusable = false}, SHIFT(3001), - [6210] = {.count = 1, .reusable = true}, REDUCE(sym_trailing_return_type, 2), - [6212] = {.count = 1, .reusable = false}, REDUCE(sym_trailing_return_type, 2), - [6214] = {.count = 1, .reusable = false}, SHIFT(3002), - [6216] = {.count = 1, .reusable = true}, SHIFT(3003), - [6218] = {.count = 1, .reusable = true}, SHIFT(3002), - [6220] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [6222] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(157), - [6225] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1992), - [6228] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(997), - [6231] = {.count = 2, .reusable = false}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(997), - [6234] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(998), - [6237] = {.count = 1, .reusable = true}, SHIFT(3006), - [6239] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declarator, 3), - [6241] = {.count = 1, .reusable = true}, SHIFT(3007), - [6243] = {.count = 1, .reusable = true}, SHIFT(3009), - [6245] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 4), - [6247] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 4), - [6249] = {.count = 1, .reusable = false}, SHIFT(3010), - [6251] = {.count = 1, .reusable = true}, SHIFT(3011), - [6253] = {.count = 2, .reusable = true}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), - [6256] = {.count = 1, .reusable = true}, SHIFT(3013), - [6258] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [6260] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [6262] = {.count = 1, .reusable = true}, SHIFT(3014), - [6264] = {.count = 1, .reusable = true}, SHIFT(3015), - [6266] = {.count = 1, .reusable = true}, SHIFT(3016), - [6268] = {.count = 1, .reusable = true}, SHIFT(3017), - [6270] = {.count = 1, .reusable = false}, SHIFT(3018), - [6272] = {.count = 1, .reusable = true}, SHIFT(3020), - [6274] = {.count = 1, .reusable = true}, SHIFT(3019), - [6276] = {.count = 1, .reusable = false}, SHIFT(3020), - [6278] = {.count = 1, .reusable = true}, SHIFT(3021), - [6280] = {.count = 1, .reusable = false}, SHIFT(3021), - [6282] = {.count = 1, .reusable = true}, SHIFT(3023), - [6284] = {.count = 1, .reusable = false}, SHIFT(3023), - [6286] = {.count = 1, .reusable = true}, SHIFT(3022), - [6288] = {.count = 1, .reusable = true}, SHIFT(3024), - [6290] = {.count = 1, .reusable = false}, SHIFT(3026), - [6292] = {.count = 1, .reusable = true}, SHIFT(3027), - [6294] = {.count = 1, .reusable = false}, SHIFT(3028), - [6296] = {.count = 1, .reusable = true}, SHIFT(3028), - [6298] = {.count = 1, .reusable = true}, SHIFT(3031), - [6300] = {.count = 1, .reusable = true}, SHIFT(3032), - [6302] = {.count = 1, .reusable = false}, SHIFT(3033), - [6304] = {.count = 1, .reusable = true}, SHIFT(3034), - [6306] = {.count = 1, .reusable = false}, SHIFT(3029), - [6308] = {.count = 1, .reusable = false}, SHIFT(3030), - [6310] = {.count = 1, .reusable = false}, SHIFT(3038), - [6312] = {.count = 1, .reusable = false}, SHIFT(3037), - [6314] = {.count = 1, .reusable = false}, SHIFT(3036), - [6316] = {.count = 1, .reusable = false}, SHIFT(3040), - [6318] = {.count = 1, .reusable = false}, SHIFT(3044), - [6320] = {.count = 1, .reusable = true}, SHIFT(3049), - [6322] = {.count = 1, .reusable = false}, SHIFT(3050), - [6324] = {.count = 1, .reusable = false}, SHIFT(3043), - [6326] = {.count = 1, .reusable = false}, SHIFT(3051), - [6328] = {.count = 1, .reusable = true}, SHIFT(3043), - [6330] = {.count = 1, .reusable = true}, SHIFT(3048), - [6332] = {.count = 1, .reusable = false}, SHIFT(3048), - [6334] = {.count = 1, .reusable = true}, SHIFT(3042), - [6336] = {.count = 1, .reusable = true}, SHIFT(3045), - [6338] = {.count = 1, .reusable = true}, SHIFT(3046), - [6340] = {.count = 1, .reusable = true}, SHIFT(3047), - [6342] = {.count = 1, .reusable = true}, SHIFT(3052), - [6344] = {.count = 1, .reusable = true}, SHIFT(3053), - [6346] = {.count = 1, .reusable = false}, SHIFT(3055), - [6348] = {.count = 1, .reusable = false}, SHIFT(3056), - [6350] = {.count = 1, .reusable = false}, SHIFT(3054), - [6352] = {.count = 1, .reusable = true}, SHIFT(3057), - [6354] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [6356] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [6358] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(1011), - [6361] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [6363] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [6365] = {.count = 1, .reusable = true}, SHIFT(3058), - [6367] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [6369] = {.count = 1, .reusable = false}, REDUCE(sym__abstract_declarator, 3), - [6371] = {.count = 1, .reusable = false}, SHIFT(3060), - [6373] = {.count = 1, .reusable = false}, SHIFT(3061), - [6375] = {.count = 1, .reusable = false}, SHIFT(3059), - [6377] = {.count = 1, .reusable = true}, SHIFT(3062), - [6379] = {.count = 1, .reusable = true}, SHIFT(3063), - [6381] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [6383] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 3), - [6385] = {.count = 1, .reusable = true}, SHIFT(3064), - [6387] = {.count = 1, .reusable = false}, SHIFT(3065), - [6389] = {.count = 1, .reusable = false}, SHIFT(3066), - [6391] = {.count = 1, .reusable = true}, SHIFT(3066), - [6393] = {.count = 1, .reusable = true}, SHIFT(3067), - [6395] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 3), - [6397] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 3), - [6399] = {.count = 1, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), - [6401] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2043), - [6404] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3), - [6407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3), - [6410] = {.count = 1, .reusable = true}, SHIFT(3070), - [6412] = {.count = 1, .reusable = false}, SHIFT(3070), - [6414] = {.count = 1, .reusable = true}, SHIFT(3069), - [6416] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [6418] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [6420] = {.count = 1, .reusable = true}, SHIFT(3072), - [6422] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), - [6424] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), - [6426] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [6428] = {.count = 1, .reusable = true}, SHIFT(3073), - [6430] = {.count = 1, .reusable = true}, SHIFT(3075), - [6432] = {.count = 1, .reusable = false}, SHIFT(3075), - [6434] = {.count = 1, .reusable = true}, SHIFT(3074), - [6436] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), - [6438] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), SHIFT_REPEAT(1047), - [6441] = {.count = 1, .reusable = true}, SHIFT(3091), - [6443] = {.count = 1, .reusable = false}, SHIFT(3091), - [6445] = {.count = 1, .reusable = false}, SHIFT(3076), - [6447] = {.count = 1, .reusable = false}, SHIFT(3077), - [6449] = {.count = 1, .reusable = false}, SHIFT(3078), - [6451] = {.count = 1, .reusable = false}, SHIFT(3079), - [6453] = {.count = 1, .reusable = false}, SHIFT(3080), - [6455] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), - [6457] = {.count = 1, .reusable = true}, SHIFT(3081), - [6459] = {.count = 1, .reusable = true}, SHIFT(3082), - [6461] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), - [6463] = {.count = 1, .reusable = false}, SHIFT(3083), - [6465] = {.count = 1, .reusable = false}, SHIFT(3084), - [6467] = {.count = 1, .reusable = false}, SHIFT(3085), - [6469] = {.count = 1, .reusable = false}, SHIFT(3086), - [6471] = {.count = 1, .reusable = false}, SHIFT(3087), - [6473] = {.count = 1, .reusable = false}, SHIFT(3088), - [6475] = {.count = 1, .reusable = false}, SHIFT(3089), - [6477] = {.count = 1, .reusable = true}, SHIFT(3090), - [6479] = {.count = 1, .reusable = true}, SHIFT(3096), - [6481] = {.count = 1, .reusable = true}, SHIFT(3099), - [6483] = {.count = 1, .reusable = true}, SHIFT(3102), - [6485] = {.count = 1, .reusable = false}, SHIFT(3102), - [6487] = {.count = 1, .reusable = true}, SHIFT(3101), - [6489] = {.count = 1, .reusable = true}, SHIFT(3104), - [6491] = {.count = 1, .reusable = true}, SHIFT(3106), - [6493] = {.count = 1, .reusable = false}, SHIFT(3106), - [6495] = {.count = 1, .reusable = true}, SHIFT(3107), - [6497] = {.count = 1, .reusable = true}, SHIFT(3108), - [6499] = {.count = 1, .reusable = true}, SHIFT(3109), - [6501] = {.count = 1, .reusable = true}, SHIFT(3110), - [6503] = {.count = 1, .reusable = true}, SHIFT(3111), - [6505] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), - [6507] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), - [6509] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(66), - [6512] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2), - [6515] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1067), - [6518] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1067), - [6521] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(67), - [6524] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1051), - [6527] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1052), - [6530] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(5), - [6533] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(68), - [6536] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(6), - [6539] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), - [6541] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1054), - [6544] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1055), - [6547] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(30), - [6550] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1056), - [6553] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1057), - [6556] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1058), - [6559] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1059), - [6562] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(10), - [6565] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1060), - [6568] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(36), - [6571] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(37), - [6574] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1061), - [6577] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1062), - [6580] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1063), - [6583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1064), - [6586] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(69), - [6589] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1065), - [6592] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2), - [6595] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(17), - [6598] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1066), - [6601] = {.count = 1, .reusable = true}, SHIFT(3114), - [6603] = {.count = 1, .reusable = false}, SHIFT(3117), - [6605] = {.count = 1, .reusable = false}, SHIFT(3118), - [6607] = {.count = 1, .reusable = true}, SHIFT(3119), - [6609] = {.count = 1, .reusable = false}, SHIFT(3119), - [6611] = {.count = 1, .reusable = true}, SHIFT(3121), - [6613] = {.count = 1, .reusable = true}, SHIFT(2144), - [6615] = {.count = 1, .reusable = true}, SHIFT(3122), - [6617] = {.count = 1, .reusable = true}, SHIFT(3123), - [6619] = {.count = 1, .reusable = false}, SHIFT(3124), - [6621] = {.count = 1, .reusable = true}, SHIFT(3125), - [6623] = {.count = 1, .reusable = true}, SHIFT(3127), - [6625] = {.count = 1, .reusable = false}, SHIFT(3127), - [6627] = {.count = 1, .reusable = true}, SHIFT(3126), - [6629] = {.count = 1, .reusable = false}, SHIFT(2135), - [6631] = {.count = 1, .reusable = false}, SHIFT(2138), - [6633] = {.count = 1, .reusable = false}, SHIFT(2137), - [6635] = {.count = 1, .reusable = false}, SHIFT(3131), - [6637] = {.count = 1, .reusable = true}, SHIFT(3130), - [6639] = {.count = 1, .reusable = true}, SHIFT(3133), - [6641] = {.count = 1, .reusable = false}, SHIFT(3133), - [6643] = {.count = 1, .reusable = true}, SHIFT(3132), - [6645] = {.count = 1, .reusable = true}, SHIFT(3137), - [6647] = {.count = 1, .reusable = false}, SHIFT(3137), - [6649] = {.count = 1, .reusable = true}, SHIFT(3135), - [6651] = {.count = 1, .reusable = true}, SHIFT(3136), - [6653] = {.count = 1, .reusable = false}, SHIFT(3139), - [6655] = {.count = 1, .reusable = true}, SHIFT(3140), - [6657] = {.count = 1, .reusable = false}, SHIFT(3146), - [6659] = {.count = 1, .reusable = false}, SHIFT(3152), - [6661] = {.count = 1, .reusable = true}, SHIFT(3153), - [6663] = {.count = 1, .reusable = true}, SHIFT(3154), - [6665] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(2111), - [6668] = {.count = 1, .reusable = true}, SHIFT(3156), - [6670] = {.count = 1, .reusable = true}, SHIFT(3157), - [6672] = {.count = 1, .reusable = false}, SHIFT(3159), - [6674] = {.count = 1, .reusable = true}, SHIFT(3165), - [6676] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(2111), - [6679] = {.count = 1, .reusable = false}, SHIFT(3169), - [6681] = {.count = 1, .reusable = false}, SHIFT(3167), - [6683] = {.count = 1, .reusable = false}, SHIFT(3168), - [6685] = {.count = 1, .reusable = true}, SHIFT(3170), - [6687] = {.count = 1, .reusable = false}, SHIFT(3173), - [6689] = {.count = 1, .reusable = true}, SHIFT(3174), - [6691] = {.count = 1, .reusable = true}, SHIFT(3175), - [6693] = {.count = 1, .reusable = true}, SHIFT(2139), - [6695] = {.count = 1, .reusable = false}, SHIFT(2140), - [6697] = {.count = 1, .reusable = false}, SHIFT(2134), - [6699] = {.count = 1, .reusable = false}, SHIFT(2141), - [6701] = {.count = 1, .reusable = false}, SHIFT(2133), - [6703] = {.count = 1, .reusable = true}, SHIFT(2136), - [6705] = {.count = 1, .reusable = true}, SHIFT(2134), - [6707] = {.count = 1, .reusable = true}, SHIFT(2143), - [6709] = {.count = 1, .reusable = false}, SHIFT(3177), - [6711] = {.count = 1, .reusable = true}, SHIFT(3176), - [6713] = {.count = 1, .reusable = true}, SHIFT(3178), - [6715] = {.count = 1, .reusable = false}, SHIFT(3178), - [6717] = {.count = 1, .reusable = true}, SHIFT(3179), - [6719] = {.count = 1, .reusable = false}, SHIFT(3179), - [6721] = {.count = 1, .reusable = true}, SHIFT(3180), - [6723] = {.count = 1, .reusable = false}, SHIFT(3180), - [6725] = {.count = 1, .reusable = true}, SHIFT(3181), - [6727] = {.count = 1, .reusable = false}, SHIFT(3181), - [6729] = {.count = 1, .reusable = true}, SHIFT(3182), - [6731] = {.count = 1, .reusable = false}, SHIFT(3182), - [6733] = {.count = 1, .reusable = true}, SHIFT(3183), - [6735] = {.count = 1, .reusable = false}, SHIFT(3183), - [6737] = {.count = 1, .reusable = true}, SHIFT(3184), - [6739] = {.count = 1, .reusable = false}, SHIFT(3184), - [6741] = {.count = 1, .reusable = true}, SHIFT(3185), - [6743] = {.count = 1, .reusable = false}, SHIFT(3185), - [6745] = {.count = 1, .reusable = true}, SHIFT(3186), - [6747] = {.count = 1, .reusable = false}, SHIFT(3186), - [6749] = {.count = 1, .reusable = true}, SHIFT(3187), - [6751] = {.count = 1, .reusable = false}, SHIFT(3187), - [6753] = {.count = 1, .reusable = true}, SHIFT(3188), - [6755] = {.count = 1, .reusable = false}, SHIFT(3188), - [6757] = {.count = 1, .reusable = true}, SHIFT(3190), - [6759] = {.count = 1, .reusable = true}, SHIFT(3192), - [6761] = {.count = 1, .reusable = true}, SHIFT(3197), - [6763] = {.count = 1, .reusable = true}, SHIFT(3199), - [6765] = {.count = 1, .reusable = true}, SHIFT(3201), - [6767] = {.count = 1, .reusable = true}, SHIFT(3202), - [6769] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2166), - [6772] = {.count = 1, .reusable = true}, SHIFT(3205), - [6774] = {.count = 1, .reusable = false}, SHIFT(3205), - [6776] = {.count = 1, .reusable = true}, SHIFT(3204), - [6778] = {.count = 1, .reusable = true}, SHIFT(3207), - [6780] = {.count = 1, .reusable = false}, SHIFT(3207), - [6782] = {.count = 1, .reusable = true}, SHIFT(3210), - [6784] = {.count = 1, .reusable = false}, SHIFT(3210), - [6786] = {.count = 1, .reusable = true}, SHIFT(3211), - [6788] = {.count = 1, .reusable = true}, SHIFT(3212), - [6790] = {.count = 1, .reusable = true}, SHIFT(3218), - [6792] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2), - [6794] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), - [6796] = {.count = 2, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), SHIFT(2111), - [6799] = {.count = 1, .reusable = true}, SHIFT(2111), - [6801] = {.count = 1, .reusable = true}, SHIFT(3222), - [6803] = {.count = 1, .reusable = true}, SHIFT(3223), - [6805] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 4), - [6807] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 4), - [6809] = {.count = 2, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(1152), - [6812] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [6814] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [6816] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(414), - [6819] = {.count = 1, .reusable = false}, SHIFT(3226), - [6821] = {.count = 1, .reusable = false}, SHIFT(3227), - [6823] = {.count = 1, .reusable = false}, SHIFT(3225), - [6825] = {.count = 1, .reusable = true}, SHIFT(3228), - [6827] = {.count = 1, .reusable = true}, SHIFT(3229), - [6829] = {.count = 1, .reusable = true}, SHIFT(3230), - [6831] = {.count = 1, .reusable = true}, SHIFT(3233), - [6833] = {.count = 1, .reusable = false}, SHIFT(3233), - [6835] = {.count = 1, .reusable = true}, SHIFT(3234), - [6837] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [6839] = {.count = 1, .reusable = true}, SHIFT(3235), - [6841] = {.count = 1, .reusable = true}, SHIFT(3237), - [6843] = {.count = 1, .reusable = false}, SHIFT(3237), - [6845] = {.count = 1, .reusable = true}, SHIFT(3236), - [6847] = {.count = 1, .reusable = false}, SHIFT(2239), - [6849] = {.count = 1, .reusable = false}, SHIFT(2242), - [6851] = {.count = 1, .reusable = false}, SHIFT(2241), - [6853] = {.count = 1, .reusable = false}, SHIFT(3240), - [6855] = {.count = 1, .reusable = true}, SHIFT(3241), - [6857] = {.count = 1, .reusable = false}, SHIFT(3242), - [6859] = {.count = 1, .reusable = true}, SHIFT(3243), - [6861] = {.count = 1, .reusable = true}, SHIFT(2243), - [6863] = {.count = 1, .reusable = false}, SHIFT(2244), - [6865] = {.count = 1, .reusable = false}, SHIFT(2238), - [6867] = {.count = 1, .reusable = false}, SHIFT(2245), - [6869] = {.count = 1, .reusable = true}, SHIFT(2238), - [6871] = {.count = 1, .reusable = false}, SHIFT(2237), - [6873] = {.count = 1, .reusable = true}, SHIFT(2240), - [6875] = {.count = 1, .reusable = true}, SHIFT(2247), - [6877] = {.count = 1, .reusable = true}, SHIFT(3244), - [6879] = {.count = 1, .reusable = false}, SHIFT(3244), - [6881] = {.count = 1, .reusable = true}, SHIFT(3245), - [6883] = {.count = 1, .reusable = false}, SHIFT(3245), - [6885] = {.count = 1, .reusable = true}, SHIFT(3246), - [6887] = {.count = 1, .reusable = false}, SHIFT(3246), - [6889] = {.count = 1, .reusable = true}, SHIFT(3247), - [6891] = {.count = 1, .reusable = false}, SHIFT(3247), - [6893] = {.count = 1, .reusable = true}, SHIFT(3248), - [6895] = {.count = 1, .reusable = false}, SHIFT(3248), - [6897] = {.count = 1, .reusable = true}, SHIFT(3249), - [6899] = {.count = 1, .reusable = false}, SHIFT(3249), - [6901] = {.count = 1, .reusable = true}, SHIFT(3250), - [6903] = {.count = 1, .reusable = false}, SHIFT(3250), - [6905] = {.count = 1, .reusable = true}, SHIFT(3251), - [6907] = {.count = 1, .reusable = false}, SHIFT(3251), - [6909] = {.count = 1, .reusable = true}, SHIFT(3252), - [6911] = {.count = 1, .reusable = false}, SHIFT(3252), - [6913] = {.count = 1, .reusable = true}, SHIFT(3253), - [6915] = {.count = 1, .reusable = false}, SHIFT(3253), - [6917] = {.count = 1, .reusable = true}, SHIFT(3255), - [6919] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2251), - [6922] = {.count = 1, .reusable = true}, SHIFT(3256), - [6924] = {.count = 1, .reusable = false}, SHIFT(3256), - [6926] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [6928] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [6930] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [6932] = {.count = 1, .reusable = true}, SHIFT(3257), - [6934] = {.count = 1, .reusable = true}, SHIFT(3258), - [6936] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(3259), - [6939] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [6941] = {.count = 1, .reusable = true}, SHIFT(3260), - [6943] = {.count = 1, .reusable = true}, SHIFT(3262), - [6945] = {.count = 1, .reusable = true}, SHIFT(3264), - [6947] = {.count = 1, .reusable = true}, SHIFT(3266), - [6949] = {.count = 1, .reusable = false}, SHIFT(3266), - [6951] = {.count = 1, .reusable = true}, SHIFT(3268), - [6953] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), - [6955] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), - [6957] = {.count = 1, .reusable = true}, SHIFT(3270), - [6959] = {.count = 1, .reusable = false}, SHIFT(3272), - [6961] = {.count = 1, .reusable = true}, SHIFT(3274), - [6963] = {.count = 1, .reusable = false}, SHIFT(3276), - [6965] = {.count = 1, .reusable = false}, SHIFT(3278), - [6967] = {.count = 1, .reusable = true}, SHIFT(3283), - [6969] = {.count = 1, .reusable = true}, SHIFT(3286), - [6971] = {.count = 1, .reusable = true}, SHIFT(3287), - [6973] = {.count = 1, .reusable = true}, SHIFT(3289), - [6975] = {.count = 1, .reusable = true}, SHIFT(3290), - [6977] = {.count = 1, .reusable = true}, SHIFT(3291), - [6979] = {.count = 1, .reusable = false}, SHIFT(3292), - [6981] = {.count = 1, .reusable = true}, SHIFT(3295), - [6983] = {.count = 1, .reusable = true}, SHIFT(3297), - [6985] = {.count = 1, .reusable = true}, SHIFT(3300), - [6987] = {.count = 1, .reusable = false}, SHIFT(3300), - [6989] = {.count = 1, .reusable = true}, SHIFT(3299), - [6991] = {.count = 1, .reusable = true}, SHIFT(3303), - [6993] = {.count = 1, .reusable = false}, SHIFT(3302), - [6995] = {.count = 1, .reusable = true}, SHIFT(3304), - [6997] = {.count = 1, .reusable = false}, SHIFT(3304), - [6999] = {.count = 1, .reusable = true}, SHIFT(3305), - [7001] = {.count = 1, .reusable = true}, SHIFT(3306), - [7003] = {.count = 1, .reusable = true}, SHIFT(3307), - [7005] = {.count = 1, .reusable = true}, SHIFT(3310), - [7007] = {.count = 1, .reusable = true}, SHIFT(3311), - [7009] = {.count = 1, .reusable = false}, SHIFT(3312), - [7011] = {.count = 1, .reusable = true}, SHIFT(3313), - [7013] = {.count = 1, .reusable = true}, SHIFT(3317), - [7015] = {.count = 1, .reusable = true}, SHIFT(3318), - [7017] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1265), - [7020] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1265), - [7023] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1240), - [7026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1241), - [7029] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1242), - [7032] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1243), - [7035] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1244), - [7038] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1245), - [7041] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1246), - [7044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), - [7047] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), - [7050] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1249), - [7053] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1250), - [7056] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1251), - [7059] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1252), - [7062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), - [7065] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1254), - [7068] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1255), - [7071] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), - [7074] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1257), - [7077] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1258), - [7080] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1259), - [7083] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), - [7086] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1261), - [7089] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), - [7092] = {.count = 1, .reusable = true}, SHIFT(3319), - [7094] = {.count = 1, .reusable = true}, SHIFT(3321), - [7096] = {.count = 1, .reusable = true}, SHIFT(3322), - [7098] = {.count = 1, .reusable = true}, SHIFT(3325), - [7100] = {.count = 1, .reusable = true}, SHIFT(3327), - [7102] = {.count = 1, .reusable = false}, SHIFT(3327), - [7104] = {.count = 1, .reusable = false}, SHIFT(2346), - [7106] = {.count = 1, .reusable = true}, SHIFT(3332), - [7108] = {.count = 1, .reusable = false}, SHIFT(3332), - [7110] = {.count = 1, .reusable = true}, SHIFT(3331), - [7112] = {.count = 1, .reusable = true}, SHIFT(3333), - [7114] = {.count = 1, .reusable = true}, SHIFT(3334), - [7116] = {.count = 1, .reusable = false}, SHIFT(3335), - [7118] = {.count = 1, .reusable = true}, SHIFT(3336), - [7120] = {.count = 1, .reusable = true}, SHIFT(3337), - [7122] = {.count = 1, .reusable = false}, SHIFT(3337), - [7124] = {.count = 1, .reusable = true}, SHIFT(3338), - [7126] = {.count = 1, .reusable = true}, SHIFT(3340), - [7128] = {.count = 1, .reusable = true}, SHIFT(3341), - [7130] = {.count = 1, .reusable = true}, SHIFT(3342), - [7132] = {.count = 1, .reusable = false}, SHIFT(3343), - [7134] = {.count = 1, .reusable = true}, SHIFT(3345), - [7136] = {.count = 1, .reusable = true}, SHIFT(3346), - [7138] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), - [7140] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), - [7142] = {.count = 1, .reusable = true}, SHIFT(3347), - [7144] = {.count = 1, .reusable = false}, SHIFT(3347), - [7146] = {.count = 1, .reusable = true}, SHIFT(3349), - [7148] = {.count = 1, .reusable = true}, SHIFT(3350), - [7150] = {.count = 1, .reusable = true}, SHIFT(3351), - [7152] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [7154] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [7156] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [7158] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [7160] = {.count = 1, .reusable = true}, SHIFT(3354), - [7162] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(3355), - [7165] = {.count = 1, .reusable = true}, SHIFT(3356), - [7167] = {.count = 1, .reusable = false}, SHIFT(3356), - [7169] = {.count = 1, .reusable = true}, SHIFT(3357), - [7171] = {.count = 1, .reusable = true}, SHIFT(3358), - [7173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2388), - [7176] = {.count = 1, .reusable = true}, SHIFT(3359), - [7178] = {.count = 1, .reusable = false}, SHIFT(3359), - [7180] = {.count = 1, .reusable = true}, SHIFT(3360), - [7182] = {.count = 1, .reusable = false}, SHIFT(3360), - [7184] = {.count = 1, .reusable = true}, SHIFT(3361), - [7186] = {.count = 1, .reusable = false}, SHIFT(113), - [7188] = {.count = 1, .reusable = false}, SHIFT(114), - [7190] = {.count = 1, .reusable = true}, SHIFT(3362), - [7192] = {.count = 1, .reusable = true}, SHIFT(3363), - [7194] = {.count = 1, .reusable = false}, SHIFT(3363), - [7196] = {.count = 1, .reusable = true}, SHIFT(3365), - [7198] = {.count = 1, .reusable = false}, SHIFT(3365), - [7200] = {.count = 1, .reusable = true}, SHIFT(3364), - [7202] = {.count = 1, .reusable = true}, SHIFT(3366), - [7204] = {.count = 1, .reusable = true}, SHIFT(3367), - [7206] = {.count = 1, .reusable = false}, SHIFT(3367), - [7208] = {.count = 1, .reusable = true}, SHIFT(3368), - [7210] = {.count = 1, .reusable = false}, SHIFT(3368), - [7212] = {.count = 1, .reusable = false}, SHIFT(3369), - [7214] = {.count = 1, .reusable = false}, SHIFT(3372), - [7216] = {.count = 1, .reusable = false}, SHIFT(3371), - [7218] = {.count = 1, .reusable = false}, SHIFT(3370), - [7220] = {.count = 1, .reusable = false}, SHIFT(3373), - [7222] = {.count = 1, .reusable = true}, SHIFT(3375), - [7224] = {.count = 1, .reusable = true}, SHIFT(3376), - [7226] = {.count = 1, .reusable = false}, SHIFT(3376), - [7228] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2416), - [7231] = {.count = 1, .reusable = true}, SHIFT(3377), - [7233] = {.count = 1, .reusable = false}, SHIFT(3377), - [7235] = {.count = 1, .reusable = true}, SHIFT(3378), - [7237] = {.count = 1, .reusable = false}, SHIFT(3378), - [7239] = {.count = 1, .reusable = true}, SHIFT(3379), - [7241] = {.count = 1, .reusable = true}, SHIFT(3380), - [7243] = {.count = 1, .reusable = true}, SHIFT(3381), - [7245] = {.count = 1, .reusable = false}, SHIFT(137), - [7247] = {.count = 1, .reusable = false}, SHIFT(368), - [7249] = {.count = 1, .reusable = true}, SHIFT(3382), - [7251] = {.count = 1, .reusable = true}, SHIFT(3383), - [7253] = {.count = 1, .reusable = false}, SHIFT(3383), - [7255] = {.count = 1, .reusable = false}, SHIFT(3384), - [7257] = {.count = 1, .reusable = false}, SHIFT(3385), - [7259] = {.count = 1, .reusable = true}, SHIFT(3386), - [7261] = {.count = 1, .reusable = true}, SHIFT(3385), - [7263] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2442), - [7266] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3), - [7269] = {.count = 2, .reusable = false}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3), - [7272] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1403), - [7275] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), - [7277] = {.count = 1, .reusable = false}, SHIFT(3389), - [7279] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2447), - [7282] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4), - [7284] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 4, .alias_sequence_id = 9), - [7286] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 4), - [7288] = {.count = 1, .reusable = true}, SHIFT(3391), - [7290] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2, .alias_sequence_id = 2), - [7292] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2), - [7294] = {.count = 2, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(1420), - [7297] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 5, .alias_sequence_id = 2), - [7299] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 5, .alias_sequence_id = 2), - [7301] = {.count = 1, .reusable = true}, SHIFT(3394), - [7303] = {.count = 1, .reusable = false}, SHIFT(3397), - [7305] = {.count = 1, .reusable = false}, SHIFT(3396), - [7307] = {.count = 1, .reusable = false}, SHIFT(3399), - [7309] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [7311] = {.count = 1, .reusable = false}, SHIFT(3400), - [7313] = {.count = 1, .reusable = false}, SHIFT(3401), - [7315] = {.count = 1, .reusable = false}, SHIFT(3402), - [7317] = {.count = 1, .reusable = false}, SHIFT(3403), - [7319] = {.count = 1, .reusable = false}, SHIFT(3404), - [7321] = {.count = 1, .reusable = false}, SHIFT(3405), - [7323] = {.count = 1, .reusable = false}, SHIFT(3406), - [7325] = {.count = 1, .reusable = false}, SHIFT(3407), - [7327] = {.count = 1, .reusable = false}, SHIFT(3408), - [7329] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [7331] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [7333] = {.count = 1, .reusable = true}, SHIFT(3414), - [7335] = {.count = 1, .reusable = false}, SHIFT(3415), - [7337] = {.count = 1, .reusable = false}, SHIFT(3416), - [7339] = {.count = 1, .reusable = false}, SHIFT(3418), - [7341] = {.count = 1, .reusable = true}, SHIFT(3419), - [7343] = {.count = 1, .reusable = true}, SHIFT(3420), - [7345] = {.count = 1, .reusable = false}, SHIFT(3428), - [7347] = {.count = 1, .reusable = true}, SHIFT(3429), - [7349] = {.count = 1, .reusable = true}, SHIFT(3431), - [7351] = {.count = 1, .reusable = true}, SHIFT(3432), - [7353] = {.count = 1, .reusable = true}, SHIFT(3433), - [7355] = {.count = 1, .reusable = true}, SHIFT(3435), - [7357] = {.count = 1, .reusable = true}, SHIFT(3436), - [7359] = {.count = 1, .reusable = true}, SHIFT(3437), - [7361] = {.count = 1, .reusable = false}, SHIFT(3440), - [7363] = {.count = 1, .reusable = false}, SHIFT(3442), - [7365] = {.count = 1, .reusable = true}, SHIFT(3442), - [7367] = {.count = 1, .reusable = true}, SHIFT(3446), - [7369] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [7371] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [7373] = {.count = 1, .reusable = false}, SHIFT(3448), - [7375] = {.count = 1, .reusable = true}, SHIFT(3448), - [7377] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [7379] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), - [7381] = {.count = 1, .reusable = true}, SHIFT(3450), - [7383] = {.count = 1, .reusable = false}, SHIFT(3450), - [7385] = {.count = 1, .reusable = true}, SHIFT(3453), - [7387] = {.count = 1, .reusable = true}, SHIFT(3452), - [7389] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_declaration, 3), - [7391] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_declaration, 3), - [7393] = {.count = 1, .reusable = true}, SHIFT(3455), - [7395] = {.count = 1, .reusable = true}, REDUCE(sym_friend_declaration, 3), - [7397] = {.count = 1, .reusable = false}, REDUCE(sym_friend_declaration, 3), - [7399] = {.count = 1, .reusable = true}, SHIFT(3457), - [7401] = {.count = 1, .reusable = true}, SHIFT(3460), - [7403] = {.count = 1, .reusable = true}, SHIFT(3461), - [7405] = {.count = 1, .reusable = true}, SHIFT(3462), - [7407] = {.count = 1, .reusable = false}, SHIFT(3463), - [7409] = {.count = 1, .reusable = false}, SHIFT(3465), - [7411] = {.count = 1, .reusable = false}, SHIFT(3466), - [7413] = {.count = 1, .reusable = false}, SHIFT(3464), - [7415] = {.count = 1, .reusable = true}, SHIFT(3467), - [7417] = {.count = 1, .reusable = true}, SHIFT(3469), - [7419] = {.count = 1, .reusable = true}, SHIFT(3471), - [7421] = {.count = 1, .reusable = true}, SHIFT(3472), - [7423] = {.count = 1, .reusable = true}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), - [7425] = {.count = 1, .reusable = true}, SHIFT(3475), - [7427] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), - [7429] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), - [7431] = {.count = 1, .reusable = true}, SHIFT(3478), - [7433] = {.count = 1, .reusable = false}, SHIFT(3478), - [7435] = {.count = 1, .reusable = true}, SHIFT(3477), - [7437] = {.count = 1, .reusable = true}, SHIFT(3476), - [7439] = {.count = 1, .reusable = false}, SHIFT(3480), - [7441] = {.count = 1, .reusable = true}, SHIFT(3481), - [7443] = {.count = 1, .reusable = true}, SHIFT(3482), - [7445] = {.count = 1, .reusable = true}, REDUCE(sym_inline_method_definition, 3), - [7447] = {.count = 1, .reusable = false}, REDUCE(sym_inline_method_definition, 3), - [7449] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [7451] = {.count = 1, .reusable = true}, SHIFT(3484), - [7453] = {.count = 1, .reusable = true}, SHIFT(3483), - [7455] = {.count = 1, .reusable = true}, SHIFT(3486), - [7457] = {.count = 1, .reusable = true}, SHIFT(3487), - [7459] = {.count = 1, .reusable = true}, SHIFT(3488), - [7461] = {.count = 1, .reusable = true}, SHIFT(3489), - [7463] = {.count = 1, .reusable = true}, SHIFT(3490), - [7465] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 5), - [7467] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 5), - [7469] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 5), - [7471] = {.count = 1, .reusable = true}, SHIFT(3496), - [7473] = {.count = 1, .reusable = true}, SHIFT(3495), - [7475] = {.count = 1, .reusable = false}, REDUCE(sym_alias_declaration, 5, .alias_sequence_id = 2), - [7477] = {.count = 1, .reusable = true}, REDUCE(sym_alias_declaration, 5, .alias_sequence_id = 2), - [7479] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2540), - [7482] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), - [7484] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), - [7486] = {.count = 1, .reusable = true}, SHIFT(3503), - [7488] = {.count = 1, .reusable = true}, SHIFT(3510), - [7490] = {.count = 1, .reusable = true}, SHIFT(3511), - [7492] = {.count = 1, .reusable = true}, SHIFT(3517), - [7494] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 4), - [7496] = {.count = 1, .reusable = true}, SHIFT(3519), - [7498] = {.count = 1, .reusable = false}, SHIFT(3519), - [7500] = {.count = 1, .reusable = false}, SHIFT(184), - [7502] = {.count = 1, .reusable = true}, SHIFT(3520), - [7504] = {.count = 1, .reusable = true}, SHIFT(3521), - [7506] = {.count = 1, .reusable = true}, SHIFT(3522), - [7508] = {.count = 1, .reusable = true}, SHIFT(3523), - [7510] = {.count = 1, .reusable = true}, SHIFT(3524), - [7512] = {.count = 1, .reusable = false}, SHIFT(3524), - [7514] = {.count = 1, .reusable = false}, SHIFT(3525), - [7516] = {.count = 1, .reusable = false}, SHIFT(3526), - [7518] = {.count = 1, .reusable = true}, SHIFT(3527), - [7520] = {.count = 1, .reusable = true}, SHIFT(3526), - [7522] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2587), - [7525] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1554), - [7528] = {.count = 1, .reusable = true}, SHIFT(3530), - [7530] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 5, .alias_sequence_id = 2), - [7532] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 5, .alias_sequence_id = 2), - [7534] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 5), - [7536] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 5), - [7538] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), - [7540] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [7542] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [7544] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1563), - [7547] = {.count = 1, .reusable = true}, SHIFT(3531), - [7549] = {.count = 1, .reusable = true}, REDUCE(sym_new_declarator, 3), - [7551] = {.count = 1, .reusable = false}, REDUCE(sym_new_declarator, 3), - [7553] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 5), - [7555] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 5), - [7557] = {.count = 1, .reusable = false}, REDUCE(sym_catch_clause, 3), - [7559] = {.count = 1, .reusable = true}, REDUCE(sym_catch_clause, 3), - [7561] = {.count = 1, .reusable = true}, SHIFT(3534), - [7563] = {.count = 1, .reusable = true}, SHIFT(3535), - [7565] = {.count = 1, .reusable = true}, SHIFT(3537), - [7567] = {.count = 1, .reusable = false}, SHIFT(3537), - [7569] = {.count = 1, .reusable = true}, SHIFT(3538), - [7571] = {.count = 1, .reusable = true}, SHIFT(3539), - [7573] = {.count = 1, .reusable = true}, SHIFT(3540), - [7575] = {.count = 1, .reusable = true}, SHIFT(3541), - [7577] = {.count = 1, .reusable = true}, SHIFT(3543), - [7579] = {.count = 1, .reusable = true}, SHIFT(3544), - [7581] = {.count = 1, .reusable = false}, SHIFT(3544), - [7583] = {.count = 1, .reusable = true}, SHIFT(3545), - [7585] = {.count = 1, .reusable = false}, SHIFT(3545), - [7587] = {.count = 1, .reusable = true}, SHIFT(3547), - [7589] = {.count = 1, .reusable = true}, SHIFT(3548), - [7591] = {.count = 1, .reusable = true}, SHIFT(3549), - [7593] = {.count = 1, .reusable = true}, SHIFT(3551), - [7595] = {.count = 1, .reusable = true}, SHIFT(3553), - [7597] = {.count = 1, .reusable = true}, SHIFT(3554), - [7599] = {.count = 1, .reusable = false}, SHIFT(1612), - [7601] = {.count = 1, .reusable = true}, SHIFT(3559), - [7603] = {.count = 1, .reusable = true}, SHIFT(3570), - [7605] = {.count = 1, .reusable = true}, SHIFT(3572), - [7607] = {.count = 1, .reusable = true}, SHIFT(3571), - [7609] = {.count = 1, .reusable = true}, SHIFT(3581), - [7611] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2666), - [7614] = {.count = 1, .reusable = true}, SHIFT(3582), - [7616] = {.count = 1, .reusable = false}, SHIFT(3582), - [7618] = {.count = 1, .reusable = true}, SHIFT(3585), - [7620] = {.count = 1, .reusable = false}, SHIFT(3585), - [7622] = {.count = 1, .reusable = true}, SHIFT(3586), - [7624] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(745), - [7627] = {.count = 1, .reusable = true}, SHIFT(3587), - [7629] = {.count = 1, .reusable = false}, SHIFT(230), - [7631] = {.count = 1, .reusable = false}, SHIFT(233), - [7633] = {.count = 1, .reusable = true}, SHIFT(3589), - [7635] = {.count = 1, .reusable = true}, SHIFT(3590), - [7637] = {.count = 1, .reusable = true}, SHIFT(3591), - [7639] = {.count = 1, .reusable = true}, SHIFT(3592), - [7641] = {.count = 1, .reusable = true}, SHIFT(3595), - [7643] = {.count = 1, .reusable = true}, SHIFT(3602), - [7645] = {.count = 1, .reusable = true}, SHIFT(3603), - [7647] = {.count = 1, .reusable = true}, SHIFT(3609), - [7649] = {.count = 1, .reusable = true}, SHIFT(3611), - [7651] = {.count = 1, .reusable = true}, SHIFT(3613), - [7653] = {.count = 1, .reusable = true}, SHIFT(3614), - [7655] = {.count = 1, .reusable = false}, SHIFT(3614), - [7657] = {.count = 1, .reusable = true}, SHIFT(3615), - [7659] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 5, .alias_sequence_id = 2), - [7661] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 5, .alias_sequence_id = 2), - [7663] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 5), - [7665] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 5), - [7667] = {.count = 1, .reusable = true}, SHIFT(3616), - [7669] = {.count = 1, .reusable = true}, SHIFT(3617), - [7671] = {.count = 1, .reusable = true}, SHIFT(3619), - [7673] = {.count = 1, .reusable = false}, SHIFT(3619), - [7675] = {.count = 1, .reusable = true}, SHIFT(3618), - [7677] = {.count = 1, .reusable = false}, SHIFT(2755), - [7679] = {.count = 1, .reusable = false}, SHIFT(2758), - [7681] = {.count = 1, .reusable = false}, SHIFT(2757), - [7683] = {.count = 1, .reusable = false}, SHIFT(3622), - [7685] = {.count = 1, .reusable = true}, SHIFT(3623), - [7687] = {.count = 1, .reusable = false}, SHIFT(3624), - [7689] = {.count = 1, .reusable = true}, SHIFT(3625), - [7691] = {.count = 1, .reusable = true}, SHIFT(2759), - [7693] = {.count = 1, .reusable = false}, SHIFT(2760), - [7695] = {.count = 1, .reusable = false}, SHIFT(2754), - [7697] = {.count = 1, .reusable = false}, SHIFT(2761), - [7699] = {.count = 1, .reusable = true}, SHIFT(2754), - [7701] = {.count = 1, .reusable = false}, SHIFT(2753), - [7703] = {.count = 1, .reusable = true}, SHIFT(2756), - [7705] = {.count = 1, .reusable = true}, SHIFT(2763), - [7707] = {.count = 1, .reusable = true}, SHIFT(3626), - [7709] = {.count = 1, .reusable = false}, SHIFT(3626), - [7711] = {.count = 1, .reusable = true}, SHIFT(3627), - [7713] = {.count = 1, .reusable = false}, SHIFT(3627), - [7715] = {.count = 1, .reusable = true}, SHIFT(3628), - [7717] = {.count = 1, .reusable = false}, SHIFT(3628), - [7719] = {.count = 1, .reusable = true}, SHIFT(3629), - [7721] = {.count = 1, .reusable = false}, SHIFT(3629), - [7723] = {.count = 1, .reusable = true}, SHIFT(3630), - [7725] = {.count = 1, .reusable = false}, SHIFT(3630), - [7727] = {.count = 1, .reusable = true}, SHIFT(3631), - [7729] = {.count = 1, .reusable = false}, SHIFT(3631), - [7731] = {.count = 1, .reusable = true}, SHIFT(3632), - [7733] = {.count = 1, .reusable = false}, SHIFT(3632), - [7735] = {.count = 1, .reusable = true}, SHIFT(3633), - [7737] = {.count = 1, .reusable = false}, SHIFT(3633), - [7739] = {.count = 1, .reusable = true}, SHIFT(3634), - [7741] = {.count = 1, .reusable = false}, SHIFT(3634), - [7743] = {.count = 1, .reusable = true}, SHIFT(3635), - [7745] = {.count = 1, .reusable = false}, SHIFT(3635), - [7747] = {.count = 1, .reusable = true}, SHIFT(3637), - [7749] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2767), - [7752] = {.count = 1, .reusable = true}, SHIFT(3638), - [7754] = {.count = 1, .reusable = false}, SHIFT(3638), - [7756] = {.count = 1, .reusable = true}, SHIFT(3639), - [7758] = {.count = 1, .reusable = false}, SHIFT(3639), - [7760] = {.count = 1, .reusable = true}, SHIFT(3640), - [7762] = {.count = 1, .reusable = false}, SHIFT(3641), - [7764] = {.count = 1, .reusable = true}, SHIFT(3643), - [7766] = {.count = 1, .reusable = true}, SHIFT(3645), - [7768] = {.count = 1, .reusable = true}, SHIFT(3646), - [7770] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [7772] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [7774] = {.count = 1, .reusable = false}, SHIFT(3647), - [7776] = {.count = 1, .reusable = true}, SHIFT(3649), - [7778] = {.count = 1, .reusable = true}, SHIFT(3651), - [7780] = {.count = 1, .reusable = false}, SHIFT(3651), - [7782] = {.count = 1, .reusable = true}, SHIFT(3650), - [7784] = {.count = 1, .reusable = true}, SHIFT(3652), - [7786] = {.count = 1, .reusable = true}, SHIFT(3653), - [7788] = {.count = 1, .reusable = false}, SHIFT(3653), - [7790] = {.count = 1, .reusable = true}, SHIFT(3654), - [7792] = {.count = 1, .reusable = false}, SHIFT(3654), - [7794] = {.count = 2, .reusable = true}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1770), - [7797] = {.count = 1, .reusable = false}, SHIFT(3656), - [7799] = {.count = 1, .reusable = false}, SHIFT(3659), - [7801] = {.count = 1, .reusable = false}, SHIFT(3658), - [7803] = {.count = 1, .reusable = false}, SHIFT(3657), - [7805] = {.count = 1, .reusable = false}, SHIFT(3660), - [7807] = {.count = 1, .reusable = true}, SHIFT(3662), - [7809] = {.count = 1, .reusable = true}, SHIFT(3663), - [7811] = {.count = 1, .reusable = true}, REDUCE(sym_variadic_type_parameter_declaration, 3, .alias_sequence_id = 9), - [7813] = {.count = 1, .reusable = false}, SHIFT(3665), - [7815] = {.count = 1, .reusable = false}, SHIFT(3666), - [7817] = {.count = 1, .reusable = false}, SHIFT(3664), - [7819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2807), - [7822] = {.count = 1, .reusable = true}, SHIFT(3669), - [7824] = {.count = 1, .reusable = true}, SHIFT(3670), - [7826] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 3), - [7828] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), - [7830] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 4), - [7832] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 4), - [7834] = {.count = 2, .reusable = true}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1796), - [7837] = {.count = 1, .reusable = true}, SHIFT(3674), - [7839] = {.count = 1, .reusable = true}, REDUCE(sym_optional_parameter_declaration, 3), - [7841] = {.count = 1, .reusable = true}, SHIFT(3676), - [7843] = {.count = 1, .reusable = false}, SHIFT(3676), - [7845] = {.count = 1, .reusable = true}, SHIFT(3678), - [7847] = {.count = 1, .reusable = true}, SHIFT(3677), - [7849] = {.count = 1, .reusable = false}, SHIFT(3679), - [7851] = {.count = 1, .reusable = false}, SHIFT(3680), - [7853] = {.count = 1, .reusable = true}, SHIFT(3681), - [7855] = {.count = 1, .reusable = true}, SHIFT(3680), - [7857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2831), - [7860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1815), - [7863] = {.count = 1, .reusable = true}, SHIFT(3684), - [7865] = {.count = 1, .reusable = false}, SHIFT(3684), - [7867] = {.count = 1, .reusable = true}, SHIFT(3685), - [7869] = {.count = 1, .reusable = true}, SHIFT(3686), - [7871] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2841), - [7874] = {.count = 1, .reusable = true}, SHIFT(3687), - [7876] = {.count = 1, .reusable = false}, SHIFT(3687), - [7878] = {.count = 1, .reusable = true}, SHIFT(3688), - [7880] = {.count = 1, .reusable = false}, SHIFT(3688), - [7882] = {.count = 1, .reusable = true}, SHIFT(3689), - [7884] = {.count = 1, .reusable = false}, SHIFT(291), - [7886] = {.count = 1, .reusable = false}, SHIFT(292), - [7888] = {.count = 1, .reusable = true}, SHIFT(3690), - [7890] = {.count = 1, .reusable = true}, SHIFT(3691), - [7892] = {.count = 1, .reusable = false}, SHIFT(3691), - [7894] = {.count = 1, .reusable = true}, SHIFT(3692), - [7896] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 3), - [7898] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [7900] = {.count = 1, .reusable = true}, SHIFT(3693), - [7902] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), - [7904] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), - [7906] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 4), - [7908] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 14), - [7910] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3), - [7912] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 11), - [7914] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [7916] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1880), - [7919] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 14), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), - [7922] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 11), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), - [7925] = {.count = 1, .reusable = true}, SHIFT(3695), - [7927] = {.count = 1, .reusable = true}, SHIFT(3696), - [7929] = {.count = 1, .reusable = true}, SHIFT(3698), - [7931] = {.count = 1, .reusable = false}, SHIFT(3698), - [7933] = {.count = 1, .reusable = true}, SHIFT(3697), - [7935] = {.count = 1, .reusable = false}, SHIFT(2886), - [7937] = {.count = 1, .reusable = false}, SHIFT(2889), - [7939] = {.count = 1, .reusable = false}, SHIFT(2888), - [7941] = {.count = 1, .reusable = false}, SHIFT(3701), - [7943] = {.count = 1, .reusable = true}, SHIFT(3702), - [7945] = {.count = 1, .reusable = false}, SHIFT(3703), - [7947] = {.count = 1, .reusable = true}, SHIFT(3704), - [7949] = {.count = 1, .reusable = true}, SHIFT(2890), - [7951] = {.count = 1, .reusable = false}, SHIFT(2891), - [7953] = {.count = 1, .reusable = false}, SHIFT(2885), - [7955] = {.count = 1, .reusable = false}, SHIFT(2892), - [7957] = {.count = 1, .reusable = true}, SHIFT(2885), - [7959] = {.count = 1, .reusable = false}, SHIFT(2884), - [7961] = {.count = 1, .reusable = true}, SHIFT(2887), - [7963] = {.count = 1, .reusable = true}, SHIFT(2894), - [7965] = {.count = 1, .reusable = true}, SHIFT(3705), - [7967] = {.count = 1, .reusable = false}, SHIFT(3705), - [7969] = {.count = 1, .reusable = true}, SHIFT(3706), - [7971] = {.count = 1, .reusable = false}, SHIFT(3706), - [7973] = {.count = 1, .reusable = true}, SHIFT(3707), - [7975] = {.count = 1, .reusable = false}, SHIFT(3707), - [7977] = {.count = 1, .reusable = true}, SHIFT(3708), - [7979] = {.count = 1, .reusable = false}, SHIFT(3708), - [7981] = {.count = 1, .reusable = true}, SHIFT(3709), - [7983] = {.count = 1, .reusable = false}, SHIFT(3709), - [7985] = {.count = 1, .reusable = true}, SHIFT(3710), - [7987] = {.count = 1, .reusable = false}, SHIFT(3710), - [7989] = {.count = 1, .reusable = true}, SHIFT(3711), - [7991] = {.count = 1, .reusable = false}, SHIFT(3711), - [7993] = {.count = 1, .reusable = true}, SHIFT(3712), - [7995] = {.count = 1, .reusable = false}, SHIFT(3712), - [7997] = {.count = 1, .reusable = true}, SHIFT(3713), - [7999] = {.count = 1, .reusable = false}, SHIFT(3713), - [8001] = {.count = 1, .reusable = true}, SHIFT(3714), - [8003] = {.count = 1, .reusable = false}, SHIFT(3714), - [8005] = {.count = 1, .reusable = true}, SHIFT(3716), - [8007] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2898), - [8010] = {.count = 1, .reusable = true}, SHIFT(3717), - [8012] = {.count = 1, .reusable = false}, SHIFT(3717), - [8014] = {.count = 1, .reusable = true}, SHIFT(3718), - [8016] = {.count = 1, .reusable = false}, SHIFT(3718), - [8018] = {.count = 1, .reusable = true}, SHIFT(3719), - [8020] = {.count = 1, .reusable = true}, SHIFT(3720), - [8022] = {.count = 1, .reusable = false}, SHIFT(3720), - [8024] = {.count = 1, .reusable = true}, SHIFT(3721), - [8026] = {.count = 1, .reusable = true}, SHIFT(3722), - [8028] = {.count = 1, .reusable = true}, SHIFT(3724), - [8030] = {.count = 1, .reusable = false}, SHIFT(3724), - [8032] = {.count = 1, .reusable = true}, SHIFT(3723), - [8034] = {.count = 1, .reusable = false}, SHIFT(2931), - [8036] = {.count = 1, .reusable = false}, SHIFT(2934), - [8038] = {.count = 1, .reusable = false}, SHIFT(2933), - [8040] = {.count = 1, .reusable = false}, SHIFT(3727), - [8042] = {.count = 1, .reusable = true}, SHIFT(3728), - [8044] = {.count = 1, .reusable = false}, SHIFT(3730), - [8046] = {.count = 1, .reusable = true}, SHIFT(3731), - [8048] = {.count = 1, .reusable = true}, SHIFT(2935), - [8050] = {.count = 1, .reusable = false}, SHIFT(2936), - [8052] = {.count = 1, .reusable = false}, SHIFT(2930), - [8054] = {.count = 1, .reusable = false}, SHIFT(2937), - [8056] = {.count = 1, .reusable = true}, SHIFT(2930), - [8058] = {.count = 1, .reusable = false}, SHIFT(2929), - [8060] = {.count = 1, .reusable = true}, SHIFT(2932), - [8062] = {.count = 1, .reusable = true}, SHIFT(2939), - [8064] = {.count = 1, .reusable = true}, SHIFT(3732), - [8066] = {.count = 1, .reusable = false}, SHIFT(3732), - [8068] = {.count = 1, .reusable = true}, SHIFT(3733), - [8070] = {.count = 1, .reusable = false}, SHIFT(3733), - [8072] = {.count = 1, .reusable = true}, SHIFT(3734), - [8074] = {.count = 1, .reusable = false}, SHIFT(3734), - [8076] = {.count = 1, .reusable = true}, SHIFT(3735), - [8078] = {.count = 1, .reusable = false}, SHIFT(3735), - [8080] = {.count = 1, .reusable = true}, SHIFT(3736), - [8082] = {.count = 1, .reusable = false}, SHIFT(3736), - [8084] = {.count = 1, .reusable = true}, SHIFT(3737), - [8086] = {.count = 1, .reusable = false}, SHIFT(3737), - [8088] = {.count = 1, .reusable = true}, SHIFT(3738), - [8090] = {.count = 1, .reusable = false}, SHIFT(3738), - [8092] = {.count = 1, .reusable = true}, SHIFT(3739), - [8094] = {.count = 1, .reusable = false}, SHIFT(3739), - [8096] = {.count = 1, .reusable = true}, SHIFT(3740), - [8098] = {.count = 1, .reusable = false}, SHIFT(3740), - [8100] = {.count = 1, .reusable = true}, SHIFT(3741), - [8102] = {.count = 1, .reusable = false}, SHIFT(3741), - [8104] = {.count = 1, .reusable = true}, SHIFT(3742), - [8106] = {.count = 1, .reusable = false}, SHIFT(3742), - [8108] = {.count = 1, .reusable = true}, SHIFT(3744), - [8110] = {.count = 1, .reusable = false}, SHIFT(3744), - [8112] = {.count = 1, .reusable = true}, SHIFT(3743), - [8114] = {.count = 1, .reusable = true}, SHIFT(3747), - [8116] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2953), - [8119] = {.count = 1, .reusable = true}, SHIFT(3748), - [8121] = {.count = 1, .reusable = false}, SHIFT(3748), - [8123] = {.count = 1, .reusable = true}, SHIFT(3749), - [8125] = {.count = 1, .reusable = false}, SHIFT(3749), - [8127] = {.count = 1, .reusable = true}, SHIFT(2940), - [8129] = {.count = 1, .reusable = true}, SHIFT(3750), - [8131] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [8133] = {.count = 1, .reusable = true}, SHIFT(3751), - [8135] = {.count = 1, .reusable = true}, SHIFT(3753), - [8137] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [8139] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [8141] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 4), - [8143] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1965), - [8146] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2979), - [8149] = {.count = 1, .reusable = true}, SHIFT(3757), - [8151] = {.count = 1, .reusable = true}, SHIFT(3758), - [8153] = {.count = 1, .reusable = true}, REDUCE(sym_variadic_declarator, 2), - [8155] = {.count = 1, .reusable = true}, REDUCE(sym_variadic_reference_declarator, 2), - [8157] = {.count = 1, .reusable = true}, SHIFT(3761), - [8159] = {.count = 1, .reusable = true}, SHIFT(3764), - [8161] = {.count = 1, .reusable = false}, SHIFT(3764), - [8163] = {.count = 1, .reusable = true}, SHIFT(3766), - [8165] = {.count = 1, .reusable = true}, SHIFT(3765), - [8167] = {.count = 1, .reusable = false}, SHIFT(3768), - [8169] = {.count = 1, .reusable = false}, SHIFT(3769), - [8171] = {.count = 1, .reusable = false}, SHIFT(3767), - [8173] = {.count = 1, .reusable = true}, SHIFT(3770), - [8175] = {.count = 1, .reusable = true}, SHIFT(3771), - [8177] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [8179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3001), - [8182] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_reference_declarator, 1), - [8184] = {.count = 1, .reusable = true}, SHIFT(3775), - [8186] = {.count = 1, .reusable = true}, REDUCE(sym_trailing_return_type, 3), - [8188] = {.count = 1, .reusable = false}, REDUCE(sym_trailing_return_type, 3), - [8190] = {.count = 1, .reusable = true}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), - [8192] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declarator, 4), - [8194] = {.count = 2, .reusable = true}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(1994), - [8197] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 5), - [8199] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 5), - [8201] = {.count = 1, .reusable = false}, SHIFT(3777), - [8203] = {.count = 1, .reusable = false}, SHIFT(3778), - [8205] = {.count = 1, .reusable = true}, SHIFT(3779), - [8207] = {.count = 1, .reusable = true}, SHIFT(3780), - [8209] = {.count = 1, .reusable = true}, SHIFT(3782), - [8211] = {.count = 1, .reusable = false}, SHIFT(3782), - [8213] = {.count = 1, .reusable = true}, SHIFT(3783), - [8215] = {.count = 1, .reusable = true}, SHIFT(3784), - [8217] = {.count = 1, .reusable = true}, SHIFT(3786), - [8219] = {.count = 1, .reusable = false}, SHIFT(3786), - [8221] = {.count = 1, .reusable = true}, SHIFT(3785), - [8223] = {.count = 1, .reusable = false}, SHIFT(3790), - [8225] = {.count = 1, .reusable = false}, SHIFT(3789), - [8227] = {.count = 1, .reusable = false}, SHIFT(3788), - [8229] = {.count = 1, .reusable = true}, SHIFT(3793), - [8231] = {.count = 1, .reusable = false}, SHIFT(3793), - [8233] = {.count = 1, .reusable = true}, SHIFT(3792), - [8235] = {.count = 1, .reusable = false}, SHIFT(3794), - [8237] = {.count = 1, .reusable = true}, SHIFT(3796), - [8239] = {.count = 1, .reusable = true}, SHIFT(3795), - [8241] = {.count = 1, .reusable = false}, SHIFT(3796), - [8243] = {.count = 1, .reusable = false}, SHIFT(3809), - [8245] = {.count = 1, .reusable = true}, SHIFT(3810), - [8247] = {.count = 1, .reusable = false}, SHIFT(3811), - [8249] = {.count = 1, .reusable = true}, SHIFT(3813), - [8251] = {.count = 1, .reusable = false}, SHIFT(3813), - [8253] = {.count = 1, .reusable = true}, SHIFT(3814), - [8255] = {.count = 1, .reusable = false}, SHIFT(3814), - [8257] = {.count = 1, .reusable = true}, SHIFT(3815), - [8259] = {.count = 1, .reusable = false}, SHIFT(3815), - [8261] = {.count = 1, .reusable = true}, SHIFT(3816), - [8263] = {.count = 1, .reusable = false}, SHIFT(3816), - [8265] = {.count = 1, .reusable = true}, SHIFT(3817), - [8267] = {.count = 1, .reusable = false}, SHIFT(3817), - [8269] = {.count = 1, .reusable = true}, SHIFT(3818), - [8271] = {.count = 1, .reusable = false}, SHIFT(3818), - [8273] = {.count = 1, .reusable = true}, SHIFT(3819), - [8275] = {.count = 1, .reusable = false}, SHIFT(3819), - [8277] = {.count = 1, .reusable = true}, SHIFT(3820), - [8279] = {.count = 1, .reusable = false}, SHIFT(3820), - [8281] = {.count = 1, .reusable = true}, SHIFT(3821), - [8283] = {.count = 1, .reusable = false}, SHIFT(3821), - [8285] = {.count = 1, .reusable = true}, SHIFT(3822), - [8287] = {.count = 1, .reusable = false}, SHIFT(3822), - [8289] = {.count = 1, .reusable = true}, SHIFT(3823), - [8291] = {.count = 1, .reusable = false}, SHIFT(3823), - [8293] = {.count = 1, .reusable = false}, SHIFT(3824), - [8295] = {.count = 1, .reusable = false}, SHIFT(3825), - [8297] = {.count = 1, .reusable = true}, SHIFT(3826), - [8299] = {.count = 1, .reusable = true}, SHIFT(3825), - [8301] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3057), - [8304] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2025), - [8307] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 5), - [8309] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 5), - [8311] = {.count = 1, .reusable = false}, SHIFT(3829), - [8313] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3062), - [8316] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [8318] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 4), - [8320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3065), - [8323] = {.count = 1, .reusable = true}, SHIFT(3833), - [8325] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 4), - [8327] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 4), - [8329] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6), - [8331] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6), - [8333] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [8335] = {.count = 1, .reusable = true}, SHIFT(3834), - [8337] = {.count = 1, .reusable = true}, SHIFT(3835), - [8339] = {.count = 1, .reusable = false}, SHIFT(3837), - [8341] = {.count = 1, .reusable = false}, SHIFT(3839), - [8343] = {.count = 1, .reusable = true}, SHIFT(3840), - [8345] = {.count = 1, .reusable = true}, SHIFT(3841), - [8347] = {.count = 1, .reusable = true}, SHIFT(3843), - [8349] = {.count = 1, .reusable = true}, SHIFT(3846), - [8351] = {.count = 1, .reusable = true}, SHIFT(3847), - [8353] = {.count = 1, .reusable = true}, SHIFT(3848), - [8355] = {.count = 1, .reusable = true}, SHIFT(3851), - [8357] = {.count = 1, .reusable = false}, SHIFT(3851), - [8359] = {.count = 1, .reusable = true}, SHIFT(3850), - [8361] = {.count = 1, .reusable = true}, SHIFT(3853), - [8363] = {.count = 1, .reusable = true}, SHIFT(3854), - [8365] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [8367] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [8369] = {.count = 1, .reusable = true}, SHIFT(3858), - [8371] = {.count = 1, .reusable = true}, SHIFT(3861), - [8373] = {.count = 1, .reusable = false}, SHIFT(3861), - [8375] = {.count = 1, .reusable = true}, SHIFT(3860), - [8377] = {.count = 1, .reusable = true}, SHIFT(3862), - [8379] = {.count = 1, .reusable = true}, SHIFT(3863), - [8381] = {.count = 1, .reusable = false}, SHIFT(3104), - [8383] = {.count = 1, .reusable = true}, SHIFT(3866), - [8385] = {.count = 1, .reusable = true}, SHIFT(3867), - [8387] = {.count = 1, .reusable = false}, SHIFT(3867), - [8389] = {.count = 1, .reusable = true}, SHIFT(3872), - [8391] = {.count = 1, .reusable = false}, SHIFT(3872), - [8393] = {.count = 1, .reusable = true}, SHIFT(3873), - [8395] = {.count = 1, .reusable = false}, SHIFT(3873), - [8397] = {.count = 1, .reusable = true}, SHIFT(3875), - [8399] = {.count = 1, .reusable = true}, SHIFT(3876), - [8401] = {.count = 1, .reusable = true}, SHIFT(3877), - [8403] = {.count = 1, .reusable = true}, SHIFT(3879), - [8405] = {.count = 1, .reusable = true}, SHIFT(3881), - [8407] = {.count = 1, .reusable = true}, SHIFT(3882), - [8409] = {.count = 1, .reusable = false}, SHIFT(2111), - [8411] = {.count = 1, .reusable = true}, SHIFT(3887), - [8413] = {.count = 1, .reusable = true}, SHIFT(3898), - [8415] = {.count = 1, .reusable = true}, SHIFT(3900), - [8417] = {.count = 1, .reusable = true}, SHIFT(3899), - [8419] = {.count = 1, .reusable = true}, SHIFT(3909), - [8421] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3169), - [8424] = {.count = 1, .reusable = true}, SHIFT(3910), - [8426] = {.count = 1, .reusable = false}, SHIFT(3910), - [8428] = {.count = 1, .reusable = true}, SHIFT(3913), - [8430] = {.count = 1, .reusable = false}, SHIFT(3913), - [8432] = {.count = 1, .reusable = true}, SHIFT(3914), - [8434] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1093), - [8437] = {.count = 1, .reusable = true}, SHIFT(3915), - [8439] = {.count = 1, .reusable = false}, SHIFT(406), - [8441] = {.count = 1, .reusable = false}, SHIFT(407), - [8443] = {.count = 1, .reusable = true}, SHIFT(3919), - [8445] = {.count = 1, .reusable = true}, SHIFT(3920), - [8447] = {.count = 1, .reusable = true}, SHIFT(3921), - [8449] = {.count = 1, .reusable = true}, SHIFT(3922), - [8451] = {.count = 1, .reusable = true}, SHIFT(3923), - [8453] = {.count = 1, .reusable = true}, SHIFT(3925), - [8455] = {.count = 1, .reusable = true}, SHIFT(3927), - [8457] = {.count = 1, .reusable = true}, SHIFT(3928), - [8459] = {.count = 1, .reusable = true}, SHIFT(3931), - [8461] = {.count = 1, .reusable = true}, SHIFT(3932), - [8463] = {.count = 1, .reusable = false}, SHIFT(3932), - [8465] = {.count = 1, .reusable = false}, SHIFT(3933), - [8467] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3228), - [8470] = {.count = 1, .reusable = true}, SHIFT(3935), - [8472] = {.count = 1, .reusable = true}, SHIFT(3936), - [8474] = {.count = 1, .reusable = false}, SHIFT(3936), - [8476] = {.count = 1, .reusable = true}, SHIFT(3937), - [8478] = {.count = 1, .reusable = true}, SHIFT(3938), - [8480] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3240), - [8483] = {.count = 1, .reusable = true}, SHIFT(3939), - [8485] = {.count = 1, .reusable = false}, SHIFT(3939), - [8487] = {.count = 1, .reusable = true}, SHIFT(3940), - [8489] = {.count = 1, .reusable = false}, SHIFT(3940), - [8491] = {.count = 1, .reusable = true}, SHIFT(3941), - [8493] = {.count = 1, .reusable = false}, SHIFT(440), - [8495] = {.count = 1, .reusable = false}, SHIFT(441), - [8497] = {.count = 1, .reusable = true}, SHIFT(3942), - [8499] = {.count = 1, .reusable = true}, SHIFT(3943), - [8501] = {.count = 1, .reusable = false}, SHIFT(3943), - [8503] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [8505] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [8507] = {.count = 1, .reusable = true}, SHIFT(3944), - [8509] = {.count = 1, .reusable = true}, SHIFT(3946), - [8511] = {.count = 1, .reusable = true}, SHIFT(3947), - [8513] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), - [8515] = {.count = 1, .reusable = true}, SHIFT(3948), - [8517] = {.count = 1, .reusable = true}, SHIFT(3950), - [8519] = {.count = 1, .reusable = true}, SHIFT(3952), - [8521] = {.count = 1, .reusable = true}, SHIFT(3954), - [8523] = {.count = 1, .reusable = false}, SHIFT(3954), - [8525] = {.count = 1, .reusable = true}, SHIFT(3956), - [8527] = {.count = 1, .reusable = true}, SHIFT(3957), - [8529] = {.count = 1, .reusable = true}, SHIFT(3959), - [8531] = {.count = 1, .reusable = false}, SHIFT(3959), - [8533] = {.count = 1, .reusable = false}, SHIFT(3297), - [8535] = {.count = 1, .reusable = true}, SHIFT(3964), - [8537] = {.count = 1, .reusable = false}, SHIFT(3964), - [8539] = {.count = 1, .reusable = true}, SHIFT(3963), - [8541] = {.count = 1, .reusable = true}, SHIFT(3965), - [8543] = {.count = 1, .reusable = true}, SHIFT(3966), - [8545] = {.count = 1, .reusable = false}, SHIFT(3967), - [8547] = {.count = 1, .reusable = true}, SHIFT(3968), - [8549] = {.count = 1, .reusable = true}, SHIFT(3969), - [8551] = {.count = 1, .reusable = false}, SHIFT(3969), - [8553] = {.count = 1, .reusable = true}, SHIFT(3970), - [8555] = {.count = 1, .reusable = true}, SHIFT(3972), - [8557] = {.count = 1, .reusable = true}, SHIFT(3973), - [8559] = {.count = 1, .reusable = true}, SHIFT(3974), - [8561] = {.count = 1, .reusable = false}, SHIFT(3975), - [8563] = {.count = 1, .reusable = true}, SHIFT(3977), - [8565] = {.count = 1, .reusable = true}, SHIFT(3978), - [8567] = {.count = 1, .reusable = true}, SHIFT(3979), - [8569] = {.count = 1, .reusable = false}, SHIFT(3979), - [8571] = {.count = 1, .reusable = true}, SHIFT(3981), - [8573] = {.count = 1, .reusable = true}, SHIFT(3982), - [8575] = {.count = 1, .reusable = true}, SHIFT(3983), - [8577] = {.count = 1, .reusable = true}, SHIFT(3986), - [8579] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2346), - [8582] = {.count = 1, .reusable = true}, SHIFT(3989), - [8584] = {.count = 1, .reusable = false}, SHIFT(3989), - [8586] = {.count = 1, .reusable = true}, SHIFT(3988), - [8588] = {.count = 1, .reusable = true}, SHIFT(3990), - [8590] = {.count = 1, .reusable = true}, SHIFT(3991), - [8592] = {.count = 1, .reusable = false}, SHIFT(3991), - [8594] = {.count = 1, .reusable = true}, SHIFT(3992), - [8596] = {.count = 1, .reusable = false}, SHIFT(3992), - [8598] = {.count = 1, .reusable = false}, SHIFT(3993), - [8600] = {.count = 1, .reusable = false}, SHIFT(3996), - [8602] = {.count = 1, .reusable = false}, SHIFT(3995), - [8604] = {.count = 1, .reusable = false}, SHIFT(3994), - [8606] = {.count = 1, .reusable = false}, SHIFT(3997), - [8608] = {.count = 1, .reusable = true}, SHIFT(3999), - [8610] = {.count = 1, .reusable = true}, SHIFT(4000), - [8612] = {.count = 1, .reusable = false}, SHIFT(4000), - [8614] = {.count = 1, .reusable = true}, SHIFT(4002), - [8616] = {.count = 1, .reusable = true}, SHIFT(4003), - [8618] = {.count = 1, .reusable = true}, SHIFT(4004), - [8620] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [8622] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [8624] = {.count = 1, .reusable = true}, SHIFT(4005), - [8626] = {.count = 1, .reusable = false}, SHIFT(4005), - [8628] = {.count = 1, .reusable = false}, SHIFT(501), - [8630] = {.count = 1, .reusable = true}, SHIFT(4006), - [8632] = {.count = 1, .reusable = true}, SHIFT(4007), - [8634] = {.count = 1, .reusable = false}, SHIFT(4007), - [8636] = {.count = 1, .reusable = true}, SHIFT(4008), - [8638] = {.count = 1, .reusable = true}, SHIFT(4010), - [8640] = {.count = 1, .reusable = false}, SHIFT(4010), - [8642] = {.count = 1, .reusable = true}, SHIFT(4011), - [8644] = {.count = 1, .reusable = true}, SHIFT(4012), - [8646] = {.count = 1, .reusable = false}, SHIFT(4013), - [8648] = {.count = 1, .reusable = true}, SHIFT(4015), - [8650] = {.count = 1, .reusable = true}, SHIFT(4017), - [8652] = {.count = 1, .reusable = true}, SHIFT(4018), - [8654] = {.count = 1, .reusable = false}, SHIFT(4019), - [8656] = {.count = 1, .reusable = true}, SHIFT(4021), - [8658] = {.count = 1, .reusable = true}, SHIFT(4022), - [8660] = {.count = 1, .reusable = false}, SHIFT(4022), - [8662] = {.count = 1, .reusable = false}, SHIFT(550), - [8664] = {.count = 1, .reusable = true}, SHIFT(4023), - [8666] = {.count = 1, .reusable = false}, SHIFT(4023), - [8668] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3384), - [8671] = {.count = 1, .reusable = true}, SHIFT(4027), - [8673] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3389), - [8676] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 3, .alias_sequence_id = 9), - [8678] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 3), + [4890] = {.count = 1, .reusable = false}, SHIFT(1369), + [4892] = {.count = 1, .reusable = false}, SHIFT(1376), + [4894] = {.count = 1, .reusable = true}, SHIFT(1369), + [4896] = {.count = 1, .reusable = false}, SHIFT(1373), + [4898] = {.count = 1, .reusable = false}, SHIFT(1368), + [4900] = {.count = 1, .reusable = true}, SHIFT(1371), + [4902] = {.count = 1, .reusable = false}, SHIFT(1372), + [4904] = {.count = 1, .reusable = true}, SHIFT(1378), + [4906] = {.count = 1, .reusable = true}, SHIFT(2406), + [4908] = {.count = 1, .reusable = false}, SHIFT(2406), + [4910] = {.count = 1, .reusable = true}, SHIFT(2405), + [4912] = {.count = 1, .reusable = true}, SHIFT(2409), + [4914] = {.count = 1, .reusable = false}, SHIFT(2409), + [4916] = {.count = 1, .reusable = true}, SHIFT(2410), + [4918] = {.count = 1, .reusable = false}, SHIFT(2410), + [4920] = {.count = 1, .reusable = true}, SHIFT(2411), + [4922] = {.count = 1, .reusable = false}, SHIFT(2411), + [4924] = {.count = 1, .reusable = true}, SHIFT(2412), + [4926] = {.count = 1, .reusable = false}, SHIFT(2412), + [4928] = {.count = 1, .reusable = true}, SHIFT(2413), + [4930] = {.count = 1, .reusable = false}, SHIFT(2413), + [4932] = {.count = 1, .reusable = true}, SHIFT(2414), + [4934] = {.count = 1, .reusable = false}, SHIFT(2414), + [4936] = {.count = 1, .reusable = true}, SHIFT(2415), + [4938] = {.count = 1, .reusable = false}, SHIFT(2415), + [4940] = {.count = 1, .reusable = true}, SHIFT(2416), + [4942] = {.count = 1, .reusable = false}, SHIFT(2416), + [4944] = {.count = 1, .reusable = true}, SHIFT(2417), + [4946] = {.count = 1, .reusable = false}, SHIFT(2417), + [4948] = {.count = 1, .reusable = true}, SHIFT(2418), + [4950] = {.count = 1, .reusable = false}, SHIFT(2418), + [4952] = {.count = 1, .reusable = true}, SHIFT(2420), + [4954] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), + [4956] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1383), + [4959] = {.count = 1, .reusable = true}, SHIFT(2421), + [4961] = {.count = 1, .reusable = false}, SHIFT(2421), + [4963] = {.count = 1, .reusable = true}, SHIFT(2422), + [4965] = {.count = 1, .reusable = false}, SHIFT(2422), + [4967] = {.count = 1, .reusable = true}, SHIFT(2423), + [4969] = {.count = 1, .reusable = false}, SHIFT(2425), + [4971] = {.count = 1, .reusable = false}, SHIFT(2426), + [4973] = {.count = 1, .reusable = false}, SHIFT(2424), + [4975] = {.count = 1, .reusable = true}, SHIFT(2427), + [4977] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [4979] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [4981] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [4983] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [4985] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_reference_declarator, 2), + [4987] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [4989] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3), + [4992] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [4994] = {.count = 1, .reusable = false}, SHIFT(2430), + [4996] = {.count = 1, .reusable = false}, SHIFT(2431), + [4998] = {.count = 1, .reusable = false}, SHIFT(2429), + [5000] = {.count = 1, .reusable = true}, SHIFT(2432), + [5002] = {.count = 1, .reusable = true}, SHIFT(2433), + [5004] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 3, .alias_sequence_id = 9), + [5006] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 3), + [5008] = {.count = 1, .reusable = false}, SHIFT(2437), + [5010] = {.count = 1, .reusable = false}, SHIFT(2438), + [5012] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 3, .alias_sequence_id = 2), + [5014] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 4, .alias_sequence_id = 2), + [5016] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 4, .alias_sequence_id = 2), + [5018] = {.count = 1, .reusable = true}, SHIFT(2443), + [5020] = {.count = 1, .reusable = true}, SHIFT(2445), + [5022] = {.count = 1, .reusable = true}, SHIFT(2446), + [5024] = {.count = 1, .reusable = true}, SHIFT(2447), + [5026] = {.count = 1, .reusable = false}, SHIFT(2448), + [5028] = {.count = 1, .reusable = false}, SHIFT(2449), + [5030] = {.count = 1, .reusable = false}, SHIFT(2450), + [5032] = {.count = 1, .reusable = false}, SHIFT(2451), + [5034] = {.count = 1, .reusable = false}, SHIFT(2452), + [5036] = {.count = 1, .reusable = false}, SHIFT(2453), + [5038] = {.count = 1, .reusable = false}, SHIFT(2454), + [5040] = {.count = 1, .reusable = false}, SHIFT(2455), + [5042] = {.count = 1, .reusable = false}, SHIFT(2456), + [5044] = {.count = 1, .reusable = false}, SHIFT(2457), + [5046] = {.count = 1, .reusable = false}, SHIFT(2458), + [5048] = {.count = 1, .reusable = false}, SHIFT(2459), + [5050] = {.count = 1, .reusable = false}, SHIFT(2460), + [5052] = {.count = 1, .reusable = false}, SHIFT(2467), + [5054] = {.count = 1, .reusable = true}, REDUCE(sym_access_specifier, 2), + [5056] = {.count = 1, .reusable = false}, REDUCE(sym_access_specifier, 2), + [5058] = {.count = 1, .reusable = false}, SHIFT(2469), + [5060] = {.count = 1, .reusable = false}, SHIFT(2470), + [5062] = {.count = 1, .reusable = true}, SHIFT(2473), + [5064] = {.count = 1, .reusable = true}, SHIFT(2474), + [5066] = {.count = 1, .reusable = true}, SHIFT(2476), + [5068] = {.count = 1, .reusable = true}, SHIFT(2477), + [5070] = {.count = 1, .reusable = true}, SHIFT(2478), + [5072] = {.count = 1, .reusable = true}, REDUCE(sym_friend_declaration, 2), + [5074] = {.count = 1, .reusable = false}, REDUCE(sym_friend_declaration, 2), + [5076] = {.count = 1, .reusable = true}, SHIFT(2480), + [5078] = {.count = 1, .reusable = false}, SHIFT(2484), + [5080] = {.count = 1, .reusable = true}, SHIFT(2485), + [5082] = {.count = 1, .reusable = true}, SHIFT(2488), + [5084] = {.count = 1, .reusable = true}, SHIFT(2487), + [5086] = {.count = 1, .reusable = true}, SHIFT(2490), + [5088] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [5090] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [5092] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(272), + [5095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(20), + [5098] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(620), + [5101] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(621), + [5104] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3), + [5107] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(600), + [5110] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(601), + [5113] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(602), + [5116] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(603), + [5119] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(46), + [5122] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(26), + [5125] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [5127] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(605), + [5130] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(307), + [5133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(28), + [5136] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(606), + [5139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(607), + [5142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(608), + [5145] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(614), + [5148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(609), + [5151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(279), + [5154] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(610), + [5157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(210), + [5160] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(38), + [5163] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(611), + [5166] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(612), + [5169] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), + [5172] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(168), + [5175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(613), + [5178] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(46), + [5181] = {.count = 1, .reusable = false}, SHIFT(2491), + [5183] = {.count = 1, .reusable = true}, SHIFT(2492), + [5185] = {.count = 1, .reusable = true}, SHIFT(2491), + [5187] = {.count = 1, .reusable = true}, SHIFT(2494), + [5189] = {.count = 1, .reusable = true}, SHIFT(2495), + [5191] = {.count = 1, .reusable = true}, SHIFT(2497), + [5193] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [5195] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), + [5197] = {.count = 1, .reusable = true}, SHIFT(2498), + [5199] = {.count = 1, .reusable = false}, SHIFT(2498), + [5201] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 13), + [5203] = {.count = 1, .reusable = false}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 13), + [5205] = {.count = 1, .reusable = true}, SHIFT(2499), + [5207] = {.count = 1, .reusable = false}, SHIFT(2499), + [5209] = {.count = 1, .reusable = true}, SHIFT(1997), + [5211] = {.count = 1, .reusable = true}, SHIFT(2502), + [5213] = {.count = 1, .reusable = true}, SHIFT(1453), + [5215] = {.count = 1, .reusable = true}, SHIFT(2500), + [5217] = {.count = 1, .reusable = true}, SHIFT(2501), + [5219] = {.count = 1, .reusable = true}, SHIFT(2503), + [5221] = {.count = 1, .reusable = false}, SHIFT(2507), + [5223] = {.count = 1, .reusable = true}, SHIFT(2508), + [5225] = {.count = 1, .reusable = true}, SHIFT(2509), + [5227] = {.count = 1, .reusable = true}, SHIFT(2510), + [5229] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_declaration, 2), + [5231] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_declaration, 2), + [5233] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1466), + [5236] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 4), + [5238] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 4), + [5240] = {.count = 1, .reusable = true}, SHIFT(2517), + [5242] = {.count = 1, .reusable = false}, SHIFT(2517), + [5244] = {.count = 1, .reusable = false}, REDUCE(sym_using_declaration, 4), + [5246] = {.count = 1, .reusable = true}, REDUCE(sym_using_declaration, 4), + [5248] = {.count = 1, .reusable = false}, SHIFT(2518), + [5250] = {.count = 1, .reusable = false}, SHIFT(2519), + [5252] = {.count = 1, .reusable = false}, SHIFT(2520), + [5254] = {.count = 1, .reusable = true}, SHIFT(2521), + [5256] = {.count = 1, .reusable = true}, SHIFT(2520), + [5258] = {.count = 1, .reusable = true}, SHIFT(2525), + [5260] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), + [5262] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), + [5264] = {.count = 1, .reusable = true}, SHIFT(2526), + [5266] = {.count = 1, .reusable = true}, SHIFT(2527), + [5268] = {.count = 1, .reusable = false}, SHIFT(2527), + [5270] = {.count = 1, .reusable = false}, SHIFT(672), + [5272] = {.count = 1, .reusable = true}, SHIFT(2532), + [5274] = {.count = 1, .reusable = true}, SHIFT(2543), + [5276] = {.count = 1, .reusable = true}, SHIFT(2545), + [5278] = {.count = 1, .reusable = true}, SHIFT(2544), + [5280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1512), + [5283] = {.count = 1, .reusable = true}, SHIFT(2554), + [5285] = {.count = 1, .reusable = false}, SHIFT(2554), + [5287] = {.count = 1, .reusable = true}, SHIFT(2557), + [5289] = {.count = 1, .reusable = true}, SHIFT(2558), + [5291] = {.count = 1, .reusable = false}, SHIFT(2558), + [5293] = {.count = 1, .reusable = true}, SHIFT(2559), + [5295] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 3), + [5297] = {.count = 1, .reusable = true}, SHIFT(2560), + [5299] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3), + [5301] = {.count = 1, .reusable = true}, SHIFT(2561), + [5303] = {.count = 1, .reusable = true}, SHIFT(2563), + [5305] = {.count = 1, .reusable = true}, SHIFT(2565), + [5307] = {.count = 1, .reusable = true}, SHIFT(2566), + [5309] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [5311] = {.count = 1, .reusable = true}, SHIFT(2568), + [5313] = {.count = 1, .reusable = false}, SHIFT(2570), + [5315] = {.count = 1, .reusable = false}, SHIFT(2571), + [5317] = {.count = 1, .reusable = false}, SHIFT(2569), + [5319] = {.count = 1, .reusable = true}, SHIFT(2572), + [5321] = {.count = 1, .reusable = true}, SHIFT(2573), + [5323] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(183), + [5326] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 4, .alias_sequence_id = 2), + [5328] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 4, .alias_sequence_id = 2), + [5330] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 4), + [5332] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 4), + [5334] = {.count = 1, .reusable = true}, SHIFT(2577), + [5336] = {.count = 1, .reusable = false}, SHIFT(2577), + [5338] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [5340] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [5342] = {.count = 1, .reusable = true}, SHIFT(2579), + [5344] = {.count = 1, .reusable = true}, SHIFT(2581), + [5346] = {.count = 1, .reusable = true}, SHIFT(2583), + [5348] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 4), + [5350] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 4), + [5352] = {.count = 1, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), + [5354] = {.count = 1, .reusable = true}, REDUCE(aux_sym_try_statement_repeat1, 2), + [5356] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(718), + [5359] = {.count = 1, .reusable = false}, SHIFT(2586), + [5361] = {.count = 1, .reusable = true}, SHIFT(2588), + [5363] = {.count = 1, .reusable = false}, SHIFT(2588), + [5365] = {.count = 1, .reusable = true}, SHIFT(2587), + [5367] = {.count = 1, .reusable = true}, SHIFT(2589), + [5369] = {.count = 1, .reusable = true}, SHIFT(2590), + [5371] = {.count = 1, .reusable = false}, SHIFT(2590), + [5373] = {.count = 1, .reusable = true}, SHIFT(2591), + [5375] = {.count = 1, .reusable = true}, SHIFT(2593), + [5377] = {.count = 1, .reusable = false}, SHIFT(2593), + [5379] = {.count = 1, .reusable = true}, SHIFT(2594), + [5381] = {.count = 1, .reusable = true}, SHIFT(2596), + [5383] = {.count = 1, .reusable = true}, SHIFT(2597), + [5385] = {.count = 1, .reusable = true}, REDUCE(sym_for_range_declaration, 2), + [5387] = {.count = 1, .reusable = false}, SHIFT(2600), + [5389] = {.count = 1, .reusable = true}, SHIFT(2601), + [5391] = {.count = 1, .reusable = false}, SHIFT(2601), + [5393] = {.count = 1, .reusable = true}, SHIFT(2603), + [5395] = {.count = 1, .reusable = true}, SHIFT(1638), + [5397] = {.count = 1, .reusable = true}, SHIFT(2604), + [5399] = {.count = 1, .reusable = true}, SHIFT(2605), + [5401] = {.count = 1, .reusable = false}, SHIFT(2606), + [5403] = {.count = 1, .reusable = true}, SHIFT(2607), + [5405] = {.count = 1, .reusable = true}, SHIFT(2609), + [5407] = {.count = 1, .reusable = false}, SHIFT(2609), + [5409] = {.count = 1, .reusable = true}, SHIFT(2608), + [5411] = {.count = 1, .reusable = false}, SHIFT(1629), + [5413] = {.count = 1, .reusable = false}, SHIFT(1632), + [5415] = {.count = 1, .reusable = false}, SHIFT(1631), + [5417] = {.count = 1, .reusable = false}, SHIFT(2613), + [5419] = {.count = 1, .reusable = true}, SHIFT(2612), + [5421] = {.count = 1, .reusable = true}, SHIFT(2615), + [5423] = {.count = 1, .reusable = false}, SHIFT(2615), + [5425] = {.count = 1, .reusable = true}, SHIFT(2614), + [5427] = {.count = 1, .reusable = true}, SHIFT(2619), + [5429] = {.count = 1, .reusable = false}, SHIFT(2619), + [5431] = {.count = 1, .reusable = true}, SHIFT(2617), + [5433] = {.count = 1, .reusable = true}, SHIFT(2618), + [5435] = {.count = 1, .reusable = false}, SHIFT(2621), + [5437] = {.count = 1, .reusable = true}, SHIFT(2622), + [5439] = {.count = 1, .reusable = false}, SHIFT(2628), + [5441] = {.count = 1, .reusable = false}, SHIFT(2634), + [5443] = {.count = 1, .reusable = true}, SHIFT(2635), + [5445] = {.count = 1, .reusable = true}, SHIFT(2636), + [5447] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(1607), + [5450] = {.count = 1, .reusable = true}, SHIFT(2638), + [5452] = {.count = 1, .reusable = true}, SHIFT(2639), + [5454] = {.count = 1, .reusable = false}, SHIFT(2641), + [5456] = {.count = 1, .reusable = false}, SHIFT(2649), + [5458] = {.count = 1, .reusable = false}, SHIFT(2647), + [5460] = {.count = 1, .reusable = false}, SHIFT(2648), + [5462] = {.count = 1, .reusable = true}, SHIFT(2650), + [5464] = {.count = 1, .reusable = false}, SHIFT(2653), + [5466] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(1607), + [5469] = {.count = 1, .reusable = true}, SHIFT(2655), + [5471] = {.count = 1, .reusable = true}, SHIFT(2656), + [5473] = {.count = 1, .reusable = true}, SHIFT(2657), + [5475] = {.count = 1, .reusable = true}, SHIFT(1633), + [5477] = {.count = 1, .reusable = false}, SHIFT(1634), + [5479] = {.count = 1, .reusable = false}, SHIFT(1628), + [5481] = {.count = 1, .reusable = false}, SHIFT(1635), + [5483] = {.count = 1, .reusable = true}, SHIFT(1628), + [5485] = {.count = 1, .reusable = false}, SHIFT(1627), + [5487] = {.count = 1, .reusable = true}, SHIFT(1630), + [5489] = {.count = 1, .reusable = true}, SHIFT(1637), + [5491] = {.count = 1, .reusable = true}, SHIFT(2658), + [5493] = {.count = 1, .reusable = false}, SHIFT(2658), + [5495] = {.count = 1, .reusable = true}, SHIFT(2659), + [5497] = {.count = 1, .reusable = false}, SHIFT(2659), + [5499] = {.count = 1, .reusable = true}, SHIFT(2660), + [5501] = {.count = 1, .reusable = false}, SHIFT(2660), + [5503] = {.count = 1, .reusable = true}, SHIFT(2661), + [5505] = {.count = 1, .reusable = false}, SHIFT(2661), + [5507] = {.count = 1, .reusable = true}, SHIFT(2662), + [5509] = {.count = 1, .reusable = false}, SHIFT(2662), + [5511] = {.count = 1, .reusable = true}, SHIFT(2663), + [5513] = {.count = 1, .reusable = false}, SHIFT(2663), + [5515] = {.count = 1, .reusable = true}, SHIFT(2664), + [5517] = {.count = 1, .reusable = false}, SHIFT(2664), + [5519] = {.count = 1, .reusable = true}, SHIFT(2665), + [5521] = {.count = 1, .reusable = false}, SHIFT(2665), + [5523] = {.count = 1, .reusable = true}, SHIFT(2666), + [5525] = {.count = 1, .reusable = false}, SHIFT(2666), + [5527] = {.count = 1, .reusable = true}, SHIFT(2667), + [5529] = {.count = 1, .reusable = false}, SHIFT(2667), + [5531] = {.count = 1, .reusable = true}, SHIFT(2668), + [5533] = {.count = 1, .reusable = false}, SHIFT(2668), + [5535] = {.count = 1, .reusable = true}, SHIFT(2669), + [5537] = {.count = 1, .reusable = false}, SHIFT(2673), + [5539] = {.count = 1, .reusable = true}, SHIFT(2672), + [5541] = {.count = 1, .reusable = true}, SHIFT(2674), + [5543] = {.count = 1, .reusable = true}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), + [5545] = {.count = 1, .reusable = true}, SHIFT(2675), + [5547] = {.count = 1, .reusable = true}, SHIFT(2677), + [5549] = {.count = 1, .reusable = true}, SHIFT(2679), + [5551] = {.count = 1, .reusable = true}, SHIFT(2680), + [5553] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declarator, 4), + [5555] = {.count = 2, .reusable = true}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(766), + [5558] = {.count = 1, .reusable = false}, SHIFT(768), + [5560] = {.count = 1, .reusable = true}, SHIFT(2685), + [5562] = {.count = 1, .reusable = true}, SHIFT(2696), + [5564] = {.count = 1, .reusable = true}, SHIFT(2698), + [5566] = {.count = 1, .reusable = true}, SHIFT(2697), + [5568] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1686), + [5571] = {.count = 1, .reusable = true}, SHIFT(2708), + [5573] = {.count = 1, .reusable = false}, SHIFT(2708), + [5575] = {.count = 1, .reusable = true}, SHIFT(2707), + [5577] = {.count = 1, .reusable = true}, SHIFT(2710), + [5579] = {.count = 1, .reusable = false}, SHIFT(2710), + [5581] = {.count = 1, .reusable = true}, SHIFT(2713), + [5583] = {.count = 1, .reusable = true}, SHIFT(2714), + [5585] = {.count = 1, .reusable = false}, SHIFT(2714), + [5587] = {.count = 1, .reusable = true}, SHIFT(2715), + [5589] = {.count = 2, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), SHIFT(1607), + [5592] = {.count = 1, .reusable = true}, SHIFT(1607), + [5594] = {.count = 1, .reusable = true}, SHIFT(2719), + [5596] = {.count = 1, .reusable = true}, SHIFT(2720), + [5598] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 4), + [5600] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 4), + [5602] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(795), + [5605] = {.count = 1, .reusable = true}, SHIFT(2721), + [5607] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(229), + [5610] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 4, .alias_sequence_id = 2), + [5612] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 4, .alias_sequence_id = 2), + [5614] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 4), + [5616] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 4), + [5618] = {.count = 1, .reusable = true}, SHIFT(2725), + [5620] = {.count = 1, .reusable = true}, SHIFT(2727), + [5622] = {.count = 1, .reusable = false}, SHIFT(2727), + [5624] = {.count = 1, .reusable = true}, SHIFT(2726), + [5626] = {.count = 1, .reusable = false}, SHIFT(2729), + [5628] = {.count = 1, .reusable = true}, SHIFT(2731), + [5630] = {.count = 1, .reusable = true}, SHIFT(2730), + [5632] = {.count = 1, .reusable = false}, SHIFT(2731), + [5634] = {.count = 1, .reusable = false}, SHIFT(2734), + [5636] = {.count = 1, .reusable = false}, SHIFT(2733), + [5638] = {.count = 1, .reusable = false}, SHIFT(2732), + [5640] = {.count = 1, .reusable = true}, SHIFT(2737), + [5642] = {.count = 1, .reusable = false}, SHIFT(2737), + [5644] = {.count = 1, .reusable = true}, SHIFT(2736), + [5646] = {.count = 1, .reusable = true}, SHIFT(2751), + [5648] = {.count = 1, .reusable = false}, SHIFT(2751), + [5650] = {.count = 1, .reusable = false}, SHIFT(2752), + [5652] = {.count = 1, .reusable = true}, SHIFT(2753), + [5654] = {.count = 1, .reusable = false}, SHIFT(2754), + [5656] = {.count = 1, .reusable = true}, SHIFT(2755), + [5658] = {.count = 1, .reusable = true}, SHIFT(2756), + [5660] = {.count = 1, .reusable = false}, SHIFT(2756), + [5662] = {.count = 1, .reusable = true}, SHIFT(2757), + [5664] = {.count = 1, .reusable = false}, SHIFT(2757), + [5666] = {.count = 1, .reusable = true}, SHIFT(2758), + [5668] = {.count = 1, .reusable = false}, SHIFT(2758), + [5670] = {.count = 1, .reusable = true}, SHIFT(2759), + [5672] = {.count = 1, .reusable = false}, SHIFT(2759), + [5674] = {.count = 1, .reusable = true}, SHIFT(2760), + [5676] = {.count = 1, .reusable = false}, SHIFT(2760), + [5678] = {.count = 1, .reusable = true}, SHIFT(2761), + [5680] = {.count = 1, .reusable = false}, SHIFT(2761), + [5682] = {.count = 1, .reusable = true}, SHIFT(2762), + [5684] = {.count = 1, .reusable = false}, SHIFT(2762), + [5686] = {.count = 1, .reusable = true}, SHIFT(2763), + [5688] = {.count = 1, .reusable = false}, SHIFT(2763), + [5690] = {.count = 1, .reusable = true}, SHIFT(2764), + [5692] = {.count = 1, .reusable = false}, SHIFT(2764), + [5694] = {.count = 1, .reusable = true}, SHIFT(2765), + [5696] = {.count = 1, .reusable = false}, SHIFT(2765), + [5698] = {.count = 1, .reusable = false}, SHIFT(2766), + [5700] = {.count = 1, .reusable = false}, SHIFT(2769), + [5702] = {.count = 1, .reusable = false}, SHIFT(2768), + [5704] = {.count = 1, .reusable = false}, SHIFT(2767), + [5706] = {.count = 1, .reusable = false}, SHIFT(2770), + [5708] = {.count = 1, .reusable = true}, SHIFT(2773), + [5710] = {.count = 1, .reusable = true}, SHIFT(2774), + [5712] = {.count = 1, .reusable = true}, SHIFT(2777), + [5714] = {.count = 1, .reusable = false}, SHIFT(2777), + [5716] = {.count = 1, .reusable = true}, SHIFT(2776), + [5718] = {.count = 1, .reusable = true}, SHIFT(2778), + [5720] = {.count = 1, .reusable = true}, SHIFT(2779), + [5722] = {.count = 1, .reusable = true}, SHIFT(2782), + [5724] = {.count = 1, .reusable = true}, SHIFT(2783), + [5726] = {.count = 1, .reusable = false}, SHIFT(2783), + [5728] = {.count = 1, .reusable = true}, SHIFT(2785), + [5730] = {.count = 1, .reusable = false}, SHIFT(2785), + [5732] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), + [5734] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), + [5736] = {.count = 1, .reusable = true}, REDUCE(sym_type_parameter_declaration, 2, .alias_sequence_id = 2), + [5738] = {.count = 1, .reusable = true}, SHIFT(2787), + [5740] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(2788), + [5743] = {.count = 1, .reusable = true}, SHIFT(2789), + [5745] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1788), + [5748] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 3), + [5750] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 3), + [5752] = {.count = 1, .reusable = true}, SHIFT(2792), + [5754] = {.count = 1, .reusable = false}, SHIFT(2795), + [5756] = {.count = 1, .reusable = false}, SHIFT(2796), + [5758] = {.count = 1, .reusable = false}, SHIFT(2797), + [5760] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), + [5762] = {.count = 1, .reusable = true}, SHIFT(2798), + [5764] = {.count = 1, .reusable = true}, SHIFT(2797), + [5766] = {.count = 1, .reusable = true}, SHIFT(2799), + [5768] = {.count = 1, .reusable = true}, SHIFT(2801), + [5770] = {.count = 1, .reusable = false}, SHIFT(2803), + [5772] = {.count = 1, .reusable = true}, SHIFT(2804), + [5774] = {.count = 1, .reusable = false}, SHIFT(1804), + [5776] = {.count = 1, .reusable = true}, SHIFT(2803), + [5778] = {.count = 1, .reusable = true}, SHIFT(2805), + [5780] = {.count = 1, .reusable = true}, SHIFT(2807), + [5782] = {.count = 1, .reusable = true}, SHIFT(2808), + [5784] = {.count = 1, .reusable = false}, SHIFT(2809), + [5786] = {.count = 1, .reusable = true}, SHIFT(2810), + [5788] = {.count = 1, .reusable = false}, SHIFT(2810), + [5790] = {.count = 1, .reusable = true}, SHIFT(2811), + [5792] = {.count = 1, .reusable = true}, SHIFT(2813), + [5794] = {.count = 1, .reusable = false}, SHIFT(2815), + [5796] = {.count = 1, .reusable = false}, SHIFT(2816), + [5798] = {.count = 1, .reusable = false}, SHIFT(2814), + [5800] = {.count = 1, .reusable = true}, SHIFT(2817), + [5802] = {.count = 1, .reusable = false}, REDUCE(sym_template_instantiation, 4), + [5804] = {.count = 1, .reusable = true}, REDUCE(sym_template_instantiation, 4), + [5806] = {.count = 1, .reusable = true}, SHIFT(2818), + [5808] = {.count = 1, .reusable = false}, SHIFT(2818), + [5810] = {.count = 1, .reusable = true}, SHIFT(2819), + [5812] = {.count = 1, .reusable = true}, SHIFT(2820), + [5814] = {.count = 1, .reusable = true}, SHIFT(2822), + [5816] = {.count = 1, .reusable = false}, SHIFT(2822), + [5818] = {.count = 1, .reusable = true}, SHIFT(2821), + [5820] = {.count = 1, .reusable = false}, SHIFT(1834), + [5822] = {.count = 1, .reusable = false}, SHIFT(1837), + [5824] = {.count = 1, .reusable = false}, SHIFT(1836), + [5826] = {.count = 1, .reusable = false}, SHIFT(2825), + [5828] = {.count = 1, .reusable = true}, SHIFT(2826), + [5830] = {.count = 1, .reusable = false}, SHIFT(2827), + [5832] = {.count = 1, .reusable = true}, SHIFT(2828), + [5834] = {.count = 1, .reusable = true}, SHIFT(1838), + [5836] = {.count = 1, .reusable = false}, SHIFT(1839), + [5838] = {.count = 1, .reusable = false}, SHIFT(1833), + [5840] = {.count = 1, .reusable = false}, SHIFT(1840), + [5842] = {.count = 1, .reusable = true}, SHIFT(1833), + [5844] = {.count = 1, .reusable = false}, SHIFT(1832), + [5846] = {.count = 1, .reusable = true}, SHIFT(1835), + [5848] = {.count = 1, .reusable = true}, SHIFT(1842), + [5850] = {.count = 1, .reusable = true}, SHIFT(2829), + [5852] = {.count = 1, .reusable = false}, SHIFT(2829), + [5854] = {.count = 1, .reusable = true}, SHIFT(2830), + [5856] = {.count = 1, .reusable = false}, SHIFT(2830), + [5858] = {.count = 1, .reusable = true}, SHIFT(2831), + [5860] = {.count = 1, .reusable = false}, SHIFT(2831), + [5862] = {.count = 1, .reusable = true}, SHIFT(2832), + [5864] = {.count = 1, .reusable = false}, SHIFT(2832), + [5866] = {.count = 1, .reusable = true}, SHIFT(2833), + [5868] = {.count = 1, .reusable = false}, SHIFT(2833), + [5870] = {.count = 1, .reusable = true}, SHIFT(2834), + [5872] = {.count = 1, .reusable = false}, SHIFT(2834), + [5874] = {.count = 1, .reusable = true}, SHIFT(2835), + [5876] = {.count = 1, .reusable = false}, SHIFT(2835), + [5878] = {.count = 1, .reusable = true}, SHIFT(2836), + [5880] = {.count = 1, .reusable = false}, SHIFT(2836), + [5882] = {.count = 1, .reusable = true}, SHIFT(2837), + [5884] = {.count = 1, .reusable = false}, SHIFT(2837), + [5886] = {.count = 1, .reusable = true}, SHIFT(2838), + [5888] = {.count = 1, .reusable = false}, SHIFT(2838), + [5890] = {.count = 1, .reusable = true}, SHIFT(2840), + [5892] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1846), + [5895] = {.count = 1, .reusable = true}, SHIFT(2841), + [5897] = {.count = 1, .reusable = false}, SHIFT(2841), + [5899] = {.count = 1, .reusable = true}, SHIFT(2842), + [5901] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), + [5903] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), + [5905] = {.count = 1, .reusable = true}, SHIFT(2843), + [5907] = {.count = 1, .reusable = true}, SHIFT(2844), + [5909] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 2), + [5911] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [5913] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), + [5915] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), + [5917] = {.count = 1, .reusable = true}, SHIFT(2846), + [5919] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [5921] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [5923] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [5925] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [5927] = {.count = 1, .reusable = true}, SHIFT(2847), + [5929] = {.count = 1, .reusable = true}, SHIFT(2848), + [5931] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [5933] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 3), + [5935] = {.count = 1, .reusable = true}, SHIFT(2849), + [5937] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1874), + [5940] = {.count = 1, .reusable = false}, SHIFT(2853), + [5942] = {.count = 1, .reusable = false}, SHIFT(2854), + [5944] = {.count = 1, .reusable = false}, SHIFT(2855), + [5946] = {.count = 1, .reusable = true}, SHIFT(2856), + [5948] = {.count = 1, .reusable = true}, SHIFT(2855), + [5950] = {.count = 1, .reusable = true}, SHIFT(2857), + [5952] = {.count = 1, .reusable = true}, SHIFT(2860), + [5954] = {.count = 1, .reusable = false}, SHIFT(2861), + [5956] = {.count = 1, .reusable = true}, SHIFT(2861), + [5958] = {.count = 1, .reusable = true}, SHIFT(2862), + [5960] = {.count = 1, .reusable = true}, SHIFT(2866), + [5962] = {.count = 1, .reusable = true}, SHIFT(2868), + [5964] = {.count = 1, .reusable = false}, SHIFT(2868), + [5966] = {.count = 1, .reusable = true}, SHIFT(2869), + [5968] = {.count = 1, .reusable = true}, SHIFT(2872), + [5970] = {.count = 1, .reusable = true}, SHIFT(2871), + [5972] = {.count = 1, .reusable = true}, REDUCE(sym_variadic_parameter_declaration, 2), + [5974] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [5976] = {.count = 1, .reusable = false}, REDUCE(sym__abstract_declarator, 3), + [5978] = {.count = 1, .reusable = false}, SHIFT(2875), + [5980] = {.count = 1, .reusable = false}, SHIFT(2876), + [5982] = {.count = 1, .reusable = false}, SHIFT(2874), + [5984] = {.count = 1, .reusable = true}, SHIFT(2877), + [5986] = {.count = 1, .reusable = true}, SHIFT(2878), + [5988] = {.count = 1, .reusable = true}, SHIFT(2879), + [5990] = {.count = 1, .reusable = true}, SHIFT(2881), + [5992] = {.count = 1, .reusable = false}, SHIFT(2881), + [5994] = {.count = 1, .reusable = true}, SHIFT(2880), + [5996] = {.count = 1, .reusable = false}, SHIFT(2883), + [5998] = {.count = 1, .reusable = true}, SHIFT(2885), + [6000] = {.count = 1, .reusable = true}, SHIFT(2884), + [6002] = {.count = 1, .reusable = false}, SHIFT(2885), + [6004] = {.count = 1, .reusable = false}, SHIFT(2888), + [6006] = {.count = 1, .reusable = false}, SHIFT(2887), + [6008] = {.count = 1, .reusable = false}, SHIFT(2886), + [6010] = {.count = 1, .reusable = true}, SHIFT(2891), + [6012] = {.count = 1, .reusable = false}, SHIFT(2891), + [6014] = {.count = 1, .reusable = true}, SHIFT(2890), + [6016] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [6018] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 3), + [6020] = {.count = 1, .reusable = true}, SHIFT(2905), + [6022] = {.count = 1, .reusable = false}, SHIFT(2905), + [6024] = {.count = 1, .reusable = false}, SHIFT(2906), + [6026] = {.count = 1, .reusable = true}, SHIFT(2907), + [6028] = {.count = 1, .reusable = false}, SHIFT(2908), + [6030] = {.count = 1, .reusable = true}, SHIFT(2909), + [6032] = {.count = 1, .reusable = true}, SHIFT(2910), + [6034] = {.count = 1, .reusable = false}, SHIFT(2910), + [6036] = {.count = 1, .reusable = true}, SHIFT(2911), + [6038] = {.count = 1, .reusable = false}, SHIFT(2911), + [6040] = {.count = 1, .reusable = true}, SHIFT(2912), + [6042] = {.count = 1, .reusable = false}, SHIFT(2912), + [6044] = {.count = 1, .reusable = true}, SHIFT(2913), + [6046] = {.count = 1, .reusable = false}, SHIFT(2913), + [6048] = {.count = 1, .reusable = true}, SHIFT(2914), + [6050] = {.count = 1, .reusable = false}, SHIFT(2914), + [6052] = {.count = 1, .reusable = true}, SHIFT(2915), + [6054] = {.count = 1, .reusable = false}, SHIFT(2915), + [6056] = {.count = 1, .reusable = true}, SHIFT(2916), + [6058] = {.count = 1, .reusable = false}, SHIFT(2916), + [6060] = {.count = 1, .reusable = true}, SHIFT(2917), + [6062] = {.count = 1, .reusable = false}, SHIFT(2917), + [6064] = {.count = 1, .reusable = true}, SHIFT(2918), + [6066] = {.count = 1, .reusable = false}, SHIFT(2918), + [6068] = {.count = 1, .reusable = true}, SHIFT(2919), + [6070] = {.count = 1, .reusable = false}, SHIFT(2919), + [6072] = {.count = 1, .reusable = true}, SHIFT(2921), + [6074] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(938), + [6077] = {.count = 1, .reusable = false}, SHIFT(2922), + [6079] = {.count = 1, .reusable = false}, SHIFT(2923), + [6081] = {.count = 1, .reusable = true}, SHIFT(2923), + [6083] = {.count = 1, .reusable = true}, SHIFT(2924), + [6085] = {.count = 1, .reusable = true}, REDUCE(sym_trailing_return_type, 2), + [6087] = {.count = 1, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), + [6089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1933), + [6092] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3), + [6095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3), + [6098] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 3), + [6100] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 3), + [6102] = {.count = 1, .reusable = true}, SHIFT(2927), + [6104] = {.count = 1, .reusable = false}, SHIFT(2927), + [6106] = {.count = 1, .reusable = true}, SHIFT(2926), + [6108] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2), + [6110] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2, .alias_sequence_id = 12), + [6112] = {.count = 1, .reusable = false}, SHIFT(2930), + [6114] = {.count = 1, .reusable = true}, SHIFT(2929), + [6116] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer, 2, .alias_sequence_id = 13), + [6118] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer, 2), + [6120] = {.count = 1, .reusable = false}, SHIFT(2932), + [6122] = {.count = 1, .reusable = true}, SHIFT(2931), + [6124] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer_list, 3), + [6126] = {.count = 1, .reusable = false}, REDUCE(sym_default_method_clause, 3), + [6128] = {.count = 1, .reusable = true}, REDUCE(sym_default_method_clause, 3), + [6130] = {.count = 1, .reusable = false}, REDUCE(sym_delete_method_clause, 3), + [6132] = {.count = 1, .reusable = true}, REDUCE(sym_delete_method_clause, 3), + [6134] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 4), + [6136] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 4), + [6138] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2, .alias_sequence_id = 12), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 2), + [6141] = {.count = 1, .reusable = false}, SHIFT(2935), + [6143] = {.count = 1, .reusable = true}, REDUCE(sym_template_method, 2, .alias_sequence_id = 13), + [6145] = {.count = 1, .reusable = false}, REDUCE(sym_template_method, 2, .alias_sequence_id = 13), + [6147] = {.count = 1, .reusable = true}, REDUCE(sym_template_method, 2), + [6149] = {.count = 1, .reusable = false}, REDUCE(sym_template_method, 2), + [6151] = {.count = 1, .reusable = false}, SHIFT(2936), + [6153] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [6155] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), + [6157] = {.count = 1, .reusable = true}, SHIFT(2937), + [6159] = {.count = 1, .reusable = true}, SHIFT(2939), + [6161] = {.count = 1, .reusable = false}, SHIFT(2939), + [6163] = {.count = 1, .reusable = true}, SHIFT(2938), + [6165] = {.count = 1, .reusable = true}, SHIFT(2940), + [6167] = {.count = 1, .reusable = false}, SHIFT(2940), + [6169] = {.count = 1, .reusable = false}, SHIFT(2942), + [6171] = {.count = 1, .reusable = true}, SHIFT(2943), + [6173] = {.count = 1, .reusable = false}, SHIFT(2943), + [6175] = {.count = 1, .reusable = true}, SHIFT(2945), + [6177] = {.count = 1, .reusable = true}, SHIFT(2944), + [6179] = {.count = 1, .reusable = false}, SHIFT(2945), + [6181] = {.count = 1, .reusable = true}, SHIFT(2946), + [6183] = {.count = 1, .reusable = false}, SHIFT(2946), + [6185] = {.count = 1, .reusable = false}, SHIFT(2949), + [6187] = {.count = 1, .reusable = false}, SHIFT(2948), + [6189] = {.count = 1, .reusable = false}, SHIFT(2947), + [6191] = {.count = 1, .reusable = true}, SHIFT(2952), + [6193] = {.count = 1, .reusable = false}, SHIFT(2952), + [6195] = {.count = 1, .reusable = true}, SHIFT(2951), + [6197] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(2964), + [6200] = {.count = 1, .reusable = true}, SHIFT(2967), + [6202] = {.count = 1, .reusable = false}, SHIFT(2967), + [6204] = {.count = 1, .reusable = false}, SHIFT(2968), + [6206] = {.count = 1, .reusable = false}, SHIFT(2971), + [6208] = {.count = 1, .reusable = false}, SHIFT(2974), + [6210] = {.count = 1, .reusable = false}, SHIFT(2977), + [6212] = {.count = 1, .reusable = true}, SHIFT(2978), + [6214] = {.count = 1, .reusable = false}, SHIFT(2979), + [6216] = {.count = 1, .reusable = true}, SHIFT(2980), + [6218] = {.count = 1, .reusable = true}, SHIFT(2981), + [6220] = {.count = 1, .reusable = false}, SHIFT(2981), + [6222] = {.count = 1, .reusable = true}, SHIFT(2982), + [6224] = {.count = 1, .reusable = false}, SHIFT(2982), + [6226] = {.count = 1, .reusable = true}, SHIFT(2983), + [6228] = {.count = 1, .reusable = false}, SHIFT(2983), + [6230] = {.count = 1, .reusable = true}, SHIFT(2984), + [6232] = {.count = 1, .reusable = false}, SHIFT(2984), + [6234] = {.count = 1, .reusable = true}, SHIFT(2986), + [6236] = {.count = 1, .reusable = false}, SHIFT(2986), + [6238] = {.count = 1, .reusable = true}, SHIFT(2987), + [6240] = {.count = 1, .reusable = false}, SHIFT(2987), + [6242] = {.count = 1, .reusable = true}, SHIFT(2988), + [6244] = {.count = 1, .reusable = false}, SHIFT(2988), + [6246] = {.count = 1, .reusable = true}, SHIFT(2989), + [6248] = {.count = 1, .reusable = false}, SHIFT(2989), + [6250] = {.count = 1, .reusable = true}, SHIFT(2990), + [6252] = {.count = 1, .reusable = false}, SHIFT(2990), + [6254] = {.count = 1, .reusable = true}, SHIFT(2991), + [6256] = {.count = 1, .reusable = false}, SHIFT(2991), + [6258] = {.count = 1, .reusable = true}, SHIFT(2992), + [6260] = {.count = 1, .reusable = false}, SHIFT(2992), + [6262] = {.count = 1, .reusable = true}, SHIFT(2993), + [6264] = {.count = 1, .reusable = false}, SHIFT(2993), + [6266] = {.count = 1, .reusable = true}, SHIFT(2995), + [6268] = {.count = 1, .reusable = false}, SHIFT(2995), + [6270] = {.count = 1, .reusable = true}, SHIFT(2994), + [6272] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [6274] = {.count = 1, .reusable = true}, SHIFT(2998), + [6276] = {.count = 1, .reusable = false}, SHIFT(2999), + [6278] = {.count = 1, .reusable = false}, REDUCE(sym_trailing_return_type, 2), + [6280] = {.count = 1, .reusable = false}, SHIFT(3000), + [6282] = {.count = 1, .reusable = true}, SHIFT(3001), + [6284] = {.count = 1, .reusable = true}, SHIFT(3000), + [6286] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [6288] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(158), + [6291] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2006), + [6294] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1014), + [6297] = {.count = 2, .reusable = false}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1014), + [6300] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1015), + [6303] = {.count = 2, .reusable = true}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), + [6306] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [6308] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), + [6310] = {.count = 1, .reusable = true}, SHIFT(3004), + [6312] = {.count = 1, .reusable = true}, SHIFT(3005), + [6314] = {.count = 1, .reusable = true}, SHIFT(3006), + [6316] = {.count = 1, .reusable = true}, SHIFT(3007), + [6318] = {.count = 1, .reusable = false}, SHIFT(3008), + [6320] = {.count = 1, .reusable = true}, SHIFT(3010), + [6322] = {.count = 1, .reusable = true}, SHIFT(3009), + [6324] = {.count = 1, .reusable = false}, SHIFT(3010), + [6326] = {.count = 1, .reusable = true}, SHIFT(3011), + [6328] = {.count = 1, .reusable = false}, SHIFT(3011), + [6330] = {.count = 1, .reusable = true}, SHIFT(3013), + [6332] = {.count = 1, .reusable = false}, SHIFT(3013), + [6334] = {.count = 1, .reusable = true}, SHIFT(3012), + [6336] = {.count = 1, .reusable = true}, SHIFT(3014), + [6338] = {.count = 1, .reusable = false}, SHIFT(3016), + [6340] = {.count = 1, .reusable = true}, SHIFT(3017), + [6342] = {.count = 1, .reusable = false}, SHIFT(3018), + [6344] = {.count = 1, .reusable = true}, SHIFT(3018), + [6346] = {.count = 1, .reusable = true}, SHIFT(3021), + [6348] = {.count = 1, .reusable = true}, SHIFT(3022), + [6350] = {.count = 1, .reusable = false}, SHIFT(3023), + [6352] = {.count = 1, .reusable = true}, SHIFT(3024), + [6354] = {.count = 1, .reusable = false}, SHIFT(3019), + [6356] = {.count = 1, .reusable = false}, SHIFT(3020), + [6358] = {.count = 1, .reusable = false}, SHIFT(3028), + [6360] = {.count = 1, .reusable = false}, SHIFT(3027), + [6362] = {.count = 1, .reusable = false}, SHIFT(3026), + [6364] = {.count = 1, .reusable = false}, SHIFT(3030), + [6366] = {.count = 1, .reusable = false}, SHIFT(3034), + [6368] = {.count = 1, .reusable = true}, SHIFT(3039), + [6370] = {.count = 1, .reusable = false}, SHIFT(3040), + [6372] = {.count = 1, .reusable = false}, SHIFT(3033), + [6374] = {.count = 1, .reusable = false}, SHIFT(3041), + [6376] = {.count = 1, .reusable = true}, SHIFT(3033), + [6378] = {.count = 1, .reusable = true}, SHIFT(3038), + [6380] = {.count = 1, .reusable = false}, SHIFT(3038), + [6382] = {.count = 1, .reusable = true}, SHIFT(3032), + [6384] = {.count = 1, .reusable = true}, SHIFT(3035), + [6386] = {.count = 1, .reusable = true}, SHIFT(3036), + [6388] = {.count = 1, .reusable = true}, SHIFT(3037), + [6390] = {.count = 1, .reusable = true}, SHIFT(3042), + [6392] = {.count = 1, .reusable = true}, SHIFT(3043), + [6394] = {.count = 1, .reusable = false}, SHIFT(3045), + [6396] = {.count = 1, .reusable = false}, SHIFT(3046), + [6398] = {.count = 1, .reusable = false}, SHIFT(3044), + [6400] = {.count = 1, .reusable = true}, SHIFT(3047), + [6402] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(1023), + [6405] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [6407] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [6409] = {.count = 1, .reusable = true}, SHIFT(3048), + [6411] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), + [6413] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), + [6415] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [6417] = {.count = 1, .reusable = true}, SHIFT(3049), + [6419] = {.count = 1, .reusable = true}, SHIFT(3051), + [6421] = {.count = 1, .reusable = false}, SHIFT(3051), + [6423] = {.count = 1, .reusable = true}, SHIFT(3050), + [6425] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), + [6427] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), SHIFT_REPEAT(1042), + [6430] = {.count = 1, .reusable = true}, SHIFT(3070), + [6432] = {.count = 1, .reusable = false}, SHIFT(3070), + [6434] = {.count = 1, .reusable = false}, SHIFT(3052), + [6436] = {.count = 1, .reusable = false}, SHIFT(3053), + [6438] = {.count = 1, .reusable = false}, SHIFT(3054), + [6440] = {.count = 1, .reusable = false}, SHIFT(3055), + [6442] = {.count = 1, .reusable = false}, SHIFT(3056), + [6444] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), + [6446] = {.count = 1, .reusable = true}, SHIFT(3057), + [6448] = {.count = 1, .reusable = true}, SHIFT(3058), + [6450] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), + [6452] = {.count = 1, .reusable = false}, SHIFT(3059), + [6454] = {.count = 1, .reusable = false}, SHIFT(3060), + [6456] = {.count = 1, .reusable = false}, SHIFT(3061), + [6458] = {.count = 1, .reusable = false}, SHIFT(3062), + [6460] = {.count = 1, .reusable = false}, SHIFT(3063), + [6462] = {.count = 1, .reusable = false}, SHIFT(3064), + [6464] = {.count = 1, .reusable = false}, SHIFT(3065), + [6466] = {.count = 1, .reusable = true}, SHIFT(3066), + [6468] = {.count = 1, .reusable = true}, SHIFT(3074), + [6470] = {.count = 1, .reusable = true}, SHIFT(3077), + [6472] = {.count = 1, .reusable = true}, SHIFT(3080), + [6474] = {.count = 1, .reusable = false}, SHIFT(3080), + [6476] = {.count = 1, .reusable = true}, SHIFT(3079), + [6478] = {.count = 1, .reusable = true}, SHIFT(3082), + [6480] = {.count = 1, .reusable = true}, SHIFT(3084), + [6482] = {.count = 1, .reusable = false}, SHIFT(3084), + [6484] = {.count = 1, .reusable = true}, SHIFT(3085), + [6486] = {.count = 1, .reusable = true}, SHIFT(3086), + [6488] = {.count = 1, .reusable = true}, SHIFT(3087), + [6490] = {.count = 1, .reusable = true}, SHIFT(3088), + [6492] = {.count = 1, .reusable = true}, SHIFT(3089), + [6494] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), + [6496] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), + [6498] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(66), + [6501] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2), + [6504] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1063), + [6507] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1063), + [6510] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(67), + [6513] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1047), + [6516] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1048), + [6519] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(5), + [6522] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(69), + [6525] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(6), + [6528] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), + [6530] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1050), + [6533] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1051), + [6536] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(30), + [6539] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1052), + [6542] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1053), + [6545] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1054), + [6548] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1055), + [6551] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(10), + [6554] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1056), + [6557] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(36), + [6560] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(68), + [6563] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1057), + [6566] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1058), + [6569] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1059), + [6572] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1060), + [6575] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(70), + [6578] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1061), + [6581] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2), + [6584] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(17), + [6587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1062), + [6590] = {.count = 1, .reusable = true}, SHIFT(3092), + [6592] = {.count = 1, .reusable = false}, SHIFT(3095), + [6594] = {.count = 1, .reusable = false}, SHIFT(3096), + [6596] = {.count = 1, .reusable = true}, SHIFT(3097), + [6598] = {.count = 1, .reusable = false}, SHIFT(3097), + [6600] = {.count = 1, .reusable = true}, SHIFT(3099), + [6602] = {.count = 1, .reusable = true}, SHIFT(2131), + [6604] = {.count = 1, .reusable = true}, SHIFT(3100), + [6606] = {.count = 1, .reusable = true}, SHIFT(3101), + [6608] = {.count = 1, .reusable = false}, SHIFT(3102), + [6610] = {.count = 1, .reusable = true}, SHIFT(3103), + [6612] = {.count = 1, .reusable = true}, SHIFT(3105), + [6614] = {.count = 1, .reusable = false}, SHIFT(3105), + [6616] = {.count = 1, .reusable = true}, SHIFT(3104), + [6618] = {.count = 1, .reusable = false}, SHIFT(2122), + [6620] = {.count = 1, .reusable = false}, SHIFT(2125), + [6622] = {.count = 1, .reusable = false}, SHIFT(2124), + [6624] = {.count = 1, .reusable = false}, SHIFT(3109), + [6626] = {.count = 1, .reusable = true}, SHIFT(3108), + [6628] = {.count = 1, .reusable = true}, SHIFT(3111), + [6630] = {.count = 1, .reusable = false}, SHIFT(3111), + [6632] = {.count = 1, .reusable = true}, SHIFT(3110), + [6634] = {.count = 1, .reusable = true}, SHIFT(3115), + [6636] = {.count = 1, .reusable = false}, SHIFT(3115), + [6638] = {.count = 1, .reusable = true}, SHIFT(3113), + [6640] = {.count = 1, .reusable = true}, SHIFT(3114), + [6642] = {.count = 1, .reusable = false}, SHIFT(3117), + [6644] = {.count = 1, .reusable = true}, SHIFT(3118), + [6646] = {.count = 1, .reusable = false}, SHIFT(3124), + [6648] = {.count = 1, .reusable = false}, SHIFT(3130), + [6650] = {.count = 1, .reusable = true}, SHIFT(3131), + [6652] = {.count = 1, .reusable = true}, SHIFT(3132), + [6654] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(2100), + [6657] = {.count = 1, .reusable = true}, SHIFT(3134), + [6659] = {.count = 1, .reusable = true}, SHIFT(3135), + [6661] = {.count = 1, .reusable = false}, SHIFT(3137), + [6663] = {.count = 1, .reusable = false}, SHIFT(3145), + [6665] = {.count = 1, .reusable = false}, SHIFT(3143), + [6667] = {.count = 1, .reusable = false}, SHIFT(3144), + [6669] = {.count = 1, .reusable = true}, SHIFT(3146), + [6671] = {.count = 1, .reusable = false}, SHIFT(3149), + [6673] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1), SHIFT(2100), + [6676] = {.count = 1, .reusable = true}, SHIFT(3151), + [6678] = {.count = 1, .reusable = true}, SHIFT(3152), + [6680] = {.count = 1, .reusable = true}, SHIFT(3153), + [6682] = {.count = 1, .reusable = true}, SHIFT(2126), + [6684] = {.count = 1, .reusable = false}, SHIFT(2127), + [6686] = {.count = 1, .reusable = false}, SHIFT(2121), + [6688] = {.count = 1, .reusable = false}, SHIFT(2128), + [6690] = {.count = 1, .reusable = false}, SHIFT(2120), + [6692] = {.count = 1, .reusable = true}, SHIFT(2123), + [6694] = {.count = 1, .reusable = true}, SHIFT(2121), + [6696] = {.count = 1, .reusable = true}, SHIFT(2130), + [6698] = {.count = 1, .reusable = true}, SHIFT(3154), + [6700] = {.count = 1, .reusable = false}, SHIFT(3154), + [6702] = {.count = 1, .reusable = true}, SHIFT(3155), + [6704] = {.count = 1, .reusable = false}, SHIFT(3155), + [6706] = {.count = 1, .reusable = true}, SHIFT(3156), + [6708] = {.count = 1, .reusable = false}, SHIFT(3156), + [6710] = {.count = 1, .reusable = true}, SHIFT(3157), + [6712] = {.count = 1, .reusable = false}, SHIFT(3157), + [6714] = {.count = 1, .reusable = true}, SHIFT(3158), + [6716] = {.count = 1, .reusable = false}, SHIFT(3158), + [6718] = {.count = 1, .reusable = true}, SHIFT(3159), + [6720] = {.count = 1, .reusable = false}, SHIFT(3159), + [6722] = {.count = 1, .reusable = true}, SHIFT(3160), + [6724] = {.count = 1, .reusable = false}, SHIFT(3160), + [6726] = {.count = 1, .reusable = true}, SHIFT(3161), + [6728] = {.count = 1, .reusable = false}, SHIFT(3161), + [6730] = {.count = 1, .reusable = true}, SHIFT(3162), + [6732] = {.count = 1, .reusable = false}, SHIFT(3162), + [6734] = {.count = 1, .reusable = true}, SHIFT(3163), + [6736] = {.count = 1, .reusable = false}, SHIFT(3163), + [6738] = {.count = 1, .reusable = true}, SHIFT(3164), + [6740] = {.count = 1, .reusable = false}, SHIFT(3164), + [6742] = {.count = 1, .reusable = true}, SHIFT(3165), + [6744] = {.count = 1, .reusable = false}, SHIFT(3169), + [6746] = {.count = 1, .reusable = true}, SHIFT(3168), + [6748] = {.count = 1, .reusable = true}, SHIFT(3170), + [6750] = {.count = 1, .reusable = true}, SHIFT(3175), + [6752] = {.count = 1, .reusable = true}, SHIFT(3177), + [6754] = {.count = 1, .reusable = true}, SHIFT(3179), + [6756] = {.count = 1, .reusable = true}, SHIFT(3180), + [6758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2155), + [6761] = {.count = 1, .reusable = true}, SHIFT(3183), + [6763] = {.count = 1, .reusable = false}, SHIFT(3183), + [6765] = {.count = 1, .reusable = true}, SHIFT(3182), + [6767] = {.count = 1, .reusable = true}, SHIFT(3185), + [6769] = {.count = 1, .reusable = false}, SHIFT(3185), + [6771] = {.count = 1, .reusable = true}, SHIFT(3188), + [6773] = {.count = 1, .reusable = false}, SHIFT(3188), + [6775] = {.count = 1, .reusable = true}, SHIFT(3189), + [6777] = {.count = 1, .reusable = true}, SHIFT(3190), + [6779] = {.count = 1, .reusable = true}, SHIFT(3196), + [6781] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2), + [6783] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), + [6785] = {.count = 2, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 11), SHIFT(2100), + [6788] = {.count = 1, .reusable = true}, SHIFT(2100), + [6790] = {.count = 1, .reusable = true}, SHIFT(3200), + [6792] = {.count = 1, .reusable = true}, SHIFT(3201), + [6794] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 4), + [6796] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 4), + [6798] = {.count = 2, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(1146), + [6801] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [6803] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [6805] = {.count = 1, .reusable = true}, SHIFT(3202), + [6807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(415), + [6810] = {.count = 1, .reusable = false}, SHIFT(3206), + [6812] = {.count = 1, .reusable = false}, SHIFT(3207), + [6814] = {.count = 1, .reusable = false}, SHIFT(3205), + [6816] = {.count = 1, .reusable = true}, SHIFT(3208), + [6818] = {.count = 1, .reusable = true}, SHIFT(3209), + [6820] = {.count = 1, .reusable = true}, SHIFT(3211), + [6822] = {.count = 1, .reusable = false}, SHIFT(3211), + [6824] = {.count = 1, .reusable = true}, SHIFT(3212), + [6826] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [6828] = {.count = 1, .reusable = true}, SHIFT(3213), + [6830] = {.count = 1, .reusable = true}, SHIFT(3215), + [6832] = {.count = 1, .reusable = false}, SHIFT(3215), + [6834] = {.count = 1, .reusable = true}, SHIFT(3214), + [6836] = {.count = 1, .reusable = false}, SHIFT(2228), + [6838] = {.count = 1, .reusable = false}, SHIFT(2231), + [6840] = {.count = 1, .reusable = false}, SHIFT(2230), + [6842] = {.count = 1, .reusable = false}, SHIFT(3218), + [6844] = {.count = 1, .reusable = true}, SHIFT(3219), + [6846] = {.count = 1, .reusable = false}, SHIFT(3220), + [6848] = {.count = 1, .reusable = true}, SHIFT(3221), + [6850] = {.count = 1, .reusable = true}, SHIFT(2232), + [6852] = {.count = 1, .reusable = false}, SHIFT(2233), + [6854] = {.count = 1, .reusable = false}, SHIFT(2227), + [6856] = {.count = 1, .reusable = false}, SHIFT(2234), + [6858] = {.count = 1, .reusable = true}, SHIFT(2227), + [6860] = {.count = 1, .reusable = false}, SHIFT(2226), + [6862] = {.count = 1, .reusable = true}, SHIFT(2229), + [6864] = {.count = 1, .reusable = true}, SHIFT(2236), + [6866] = {.count = 1, .reusable = true}, SHIFT(3222), + [6868] = {.count = 1, .reusable = false}, SHIFT(3222), + [6870] = {.count = 1, .reusable = true}, SHIFT(3223), + [6872] = {.count = 1, .reusable = false}, SHIFT(3223), + [6874] = {.count = 1, .reusable = true}, SHIFT(3224), + [6876] = {.count = 1, .reusable = false}, SHIFT(3224), + [6878] = {.count = 1, .reusable = true}, SHIFT(3225), + [6880] = {.count = 1, .reusable = false}, SHIFT(3225), + [6882] = {.count = 1, .reusable = true}, SHIFT(3226), + [6884] = {.count = 1, .reusable = false}, SHIFT(3226), + [6886] = {.count = 1, .reusable = true}, SHIFT(3227), + [6888] = {.count = 1, .reusable = false}, SHIFT(3227), + [6890] = {.count = 1, .reusable = true}, SHIFT(3228), + [6892] = {.count = 1, .reusable = false}, SHIFT(3228), + [6894] = {.count = 1, .reusable = true}, SHIFT(3229), + [6896] = {.count = 1, .reusable = false}, SHIFT(3229), + [6898] = {.count = 1, .reusable = true}, SHIFT(3230), + [6900] = {.count = 1, .reusable = false}, SHIFT(3230), + [6902] = {.count = 1, .reusable = true}, SHIFT(3231), + [6904] = {.count = 1, .reusable = false}, SHIFT(3231), + [6906] = {.count = 1, .reusable = true}, SHIFT(3233), + [6908] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2240), + [6911] = {.count = 1, .reusable = true}, SHIFT(3234), + [6913] = {.count = 1, .reusable = false}, SHIFT(3234), + [6915] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [6917] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [6919] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [6921] = {.count = 1, .reusable = true}, SHIFT(3235), + [6923] = {.count = 1, .reusable = true}, SHIFT(3236), + [6925] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(3237), + [6928] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [6930] = {.count = 1, .reusable = true}, SHIFT(3238), + [6932] = {.count = 1, .reusable = true}, SHIFT(3240), + [6934] = {.count = 1, .reusable = true}, SHIFT(3242), + [6936] = {.count = 1, .reusable = true}, SHIFT(3244), + [6938] = {.count = 1, .reusable = false}, SHIFT(3244), + [6940] = {.count = 1, .reusable = true}, SHIFT(3246), + [6942] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), + [6944] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), + [6946] = {.count = 1, .reusable = true}, SHIFT(3248), + [6948] = {.count = 1, .reusable = false}, SHIFT(3250), + [6950] = {.count = 1, .reusable = true}, SHIFT(3252), + [6952] = {.count = 1, .reusable = false}, SHIFT(3254), + [6954] = {.count = 1, .reusable = false}, SHIFT(3256), + [6956] = {.count = 1, .reusable = true}, SHIFT(3261), + [6958] = {.count = 1, .reusable = true}, SHIFT(3264), + [6960] = {.count = 1, .reusable = true}, SHIFT(3265), + [6962] = {.count = 1, .reusable = true}, SHIFT(3267), + [6964] = {.count = 1, .reusable = true}, SHIFT(3268), + [6966] = {.count = 1, .reusable = true}, SHIFT(3269), + [6968] = {.count = 1, .reusable = false}, SHIFT(3270), + [6970] = {.count = 1, .reusable = true}, SHIFT(3273), + [6972] = {.count = 1, .reusable = true}, SHIFT(3275), + [6974] = {.count = 1, .reusable = true}, SHIFT(3278), + [6976] = {.count = 1, .reusable = false}, SHIFT(3278), + [6978] = {.count = 1, .reusable = true}, SHIFT(3277), + [6980] = {.count = 1, .reusable = true}, SHIFT(3281), + [6982] = {.count = 1, .reusable = false}, SHIFT(3280), + [6984] = {.count = 1, .reusable = true}, SHIFT(3282), + [6986] = {.count = 1, .reusable = false}, SHIFT(3282), + [6988] = {.count = 1, .reusable = true}, SHIFT(3283), + [6990] = {.count = 1, .reusable = true}, SHIFT(3284), + [6992] = {.count = 1, .reusable = true}, SHIFT(3285), + [6994] = {.count = 1, .reusable = true}, SHIFT(3287), + [6996] = {.count = 1, .reusable = true}, SHIFT(3288), + [6998] = {.count = 1, .reusable = false}, SHIFT(3289), + [7000] = {.count = 1, .reusable = true}, SHIFT(3290), + [7002] = {.count = 1, .reusable = true}, SHIFT(3292), + [7004] = {.count = 1, .reusable = true}, SHIFT(3294), + [7006] = {.count = 1, .reusable = true}, SHIFT(3295), + [7008] = {.count = 1, .reusable = true}, SHIFT(3298), + [7010] = {.count = 1, .reusable = true}, SHIFT(3299), + [7012] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), + [7015] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), + [7018] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1236), + [7021] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1237), + [7024] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1238), + [7027] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1239), + [7030] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1240), + [7033] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1241), + [7036] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1242), + [7039] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1243), + [7042] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1244), + [7045] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1245), + [7048] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1246), + [7051] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), + [7054] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), + [7057] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1249), + [7060] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1250), + [7063] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1251), + [7066] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1252), + [7069] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), + [7072] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1254), + [7075] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1255), + [7078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), + [7081] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1257), + [7084] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1258), + [7087] = {.count = 1, .reusable = true}, SHIFT(3302), + [7089] = {.count = 1, .reusable = false}, SHIFT(3302), + [7091] = {.count = 1, .reusable = false}, SHIFT(2334), + [7093] = {.count = 1, .reusable = true}, SHIFT(3307), + [7095] = {.count = 1, .reusable = false}, SHIFT(3307), + [7097] = {.count = 1, .reusable = true}, SHIFT(3306), + [7099] = {.count = 1, .reusable = true}, SHIFT(3308), + [7101] = {.count = 1, .reusable = true}, SHIFT(3309), + [7103] = {.count = 1, .reusable = false}, SHIFT(3310), + [7105] = {.count = 1, .reusable = true}, SHIFT(3311), + [7107] = {.count = 1, .reusable = true}, SHIFT(3312), + [7109] = {.count = 1, .reusable = false}, SHIFT(3312), + [7111] = {.count = 1, .reusable = true}, SHIFT(3313), + [7113] = {.count = 1, .reusable = true}, SHIFT(3315), + [7115] = {.count = 1, .reusable = true}, SHIFT(3316), + [7117] = {.count = 1, .reusable = true}, SHIFT(3317), + [7119] = {.count = 1, .reusable = false}, SHIFT(3318), + [7121] = {.count = 1, .reusable = true}, SHIFT(3319), + [7123] = {.count = 1, .reusable = true}, SHIFT(3322), + [7125] = {.count = 1, .reusable = true}, SHIFT(3323), + [7127] = {.count = 1, .reusable = true}, SHIFT(3325), + [7129] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), + [7131] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), + [7133] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [7135] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [7137] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [7139] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [7141] = {.count = 1, .reusable = true}, SHIFT(3326), + [7143] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(3327), + [7146] = {.count = 1, .reusable = true}, SHIFT(3328), + [7148] = {.count = 1, .reusable = false}, SHIFT(3328), + [7150] = {.count = 1, .reusable = true}, SHIFT(3329), + [7152] = {.count = 1, .reusable = true}, SHIFT(3330), + [7154] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2373), + [7157] = {.count = 1, .reusable = true}, SHIFT(3331), + [7159] = {.count = 1, .reusable = false}, SHIFT(3331), + [7161] = {.count = 1, .reusable = true}, SHIFT(3332), + [7163] = {.count = 1, .reusable = false}, SHIFT(3332), + [7165] = {.count = 1, .reusable = true}, SHIFT(3333), + [7167] = {.count = 1, .reusable = false}, SHIFT(114), + [7169] = {.count = 1, .reusable = false}, SHIFT(115), + [7171] = {.count = 1, .reusable = true}, SHIFT(3334), + [7173] = {.count = 1, .reusable = true}, SHIFT(3335), + [7175] = {.count = 1, .reusable = false}, SHIFT(3335), + [7177] = {.count = 1, .reusable = true}, SHIFT(3337), + [7179] = {.count = 1, .reusable = false}, SHIFT(3337), + [7181] = {.count = 1, .reusable = true}, SHIFT(3336), + [7183] = {.count = 1, .reusable = true}, SHIFT(3338), + [7185] = {.count = 1, .reusable = true}, SHIFT(3339), + [7187] = {.count = 1, .reusable = false}, SHIFT(3339), + [7189] = {.count = 1, .reusable = true}, SHIFT(3340), + [7191] = {.count = 1, .reusable = false}, SHIFT(3340), + [7193] = {.count = 1, .reusable = false}, SHIFT(3341), + [7195] = {.count = 1, .reusable = false}, SHIFT(3344), + [7197] = {.count = 1, .reusable = false}, SHIFT(3343), + [7199] = {.count = 1, .reusable = false}, SHIFT(3342), + [7201] = {.count = 1, .reusable = false}, SHIFT(3345), + [7203] = {.count = 1, .reusable = true}, SHIFT(3347), + [7205] = {.count = 1, .reusable = true}, SHIFT(3348), + [7207] = {.count = 1, .reusable = false}, SHIFT(3348), + [7209] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2401), + [7212] = {.count = 1, .reusable = true}, SHIFT(3349), + [7214] = {.count = 1, .reusable = false}, SHIFT(3349), + [7216] = {.count = 1, .reusable = true}, SHIFT(3350), + [7218] = {.count = 1, .reusable = false}, SHIFT(3350), + [7220] = {.count = 1, .reusable = true}, SHIFT(3351), + [7222] = {.count = 1, .reusable = true}, SHIFT(3352), + [7224] = {.count = 1, .reusable = true}, SHIFT(3353), + [7226] = {.count = 1, .reusable = false}, SHIFT(138), + [7228] = {.count = 1, .reusable = false}, SHIFT(368), + [7230] = {.count = 1, .reusable = true}, SHIFT(3354), + [7232] = {.count = 1, .reusable = true}, SHIFT(3355), + [7234] = {.count = 1, .reusable = false}, SHIFT(3355), + [7236] = {.count = 1, .reusable = false}, SHIFT(3356), + [7238] = {.count = 1, .reusable = false}, SHIFT(3357), + [7240] = {.count = 1, .reusable = true}, SHIFT(3358), + [7242] = {.count = 1, .reusable = true}, SHIFT(3357), + [7244] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2427), + [7247] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3), + [7250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3), + [7253] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1398), + [7256] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [7258] = {.count = 1, .reusable = false}, SHIFT(3361), + [7260] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2432), + [7263] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4), + [7265] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 4, .alias_sequence_id = 9), + [7267] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 4), + [7269] = {.count = 1, .reusable = true}, SHIFT(3363), + [7271] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2, .alias_sequence_id = 2), + [7273] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2), + [7275] = {.count = 2, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(1415), + [7278] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 5, .alias_sequence_id = 2), + [7280] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 5, .alias_sequence_id = 2), + [7282] = {.count = 1, .reusable = true}, SHIFT(3366), + [7284] = {.count = 1, .reusable = false}, SHIFT(3369), + [7286] = {.count = 1, .reusable = false}, SHIFT(3368), + [7288] = {.count = 1, .reusable = false}, SHIFT(3371), + [7290] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [7292] = {.count = 1, .reusable = false}, SHIFT(3372), + [7294] = {.count = 1, .reusable = false}, SHIFT(3373), + [7296] = {.count = 1, .reusable = false}, SHIFT(3374), + [7298] = {.count = 1, .reusable = false}, SHIFT(3375), + [7300] = {.count = 1, .reusable = false}, SHIFT(3376), + [7302] = {.count = 1, .reusable = false}, SHIFT(3377), + [7304] = {.count = 1, .reusable = false}, SHIFT(3378), + [7306] = {.count = 1, .reusable = false}, SHIFT(3379), + [7308] = {.count = 1, .reusable = false}, SHIFT(3380), + [7310] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [7312] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [7314] = {.count = 1, .reusable = true}, SHIFT(3386), + [7316] = {.count = 1, .reusable = false}, SHIFT(3387), + [7318] = {.count = 1, .reusable = false}, SHIFT(3388), + [7320] = {.count = 1, .reusable = false}, SHIFT(3390), + [7322] = {.count = 1, .reusable = true}, SHIFT(3391), + [7324] = {.count = 1, .reusable = true}, SHIFT(3392), + [7326] = {.count = 1, .reusable = false}, SHIFT(3400), + [7328] = {.count = 1, .reusable = true}, SHIFT(3401), + [7330] = {.count = 1, .reusable = false}, SHIFT(3402), + [7332] = {.count = 1, .reusable = false}, SHIFT(3404), + [7334] = {.count = 1, .reusable = true}, SHIFT(3407), + [7336] = {.count = 1, .reusable = true}, SHIFT(3408), + [7338] = {.count = 1, .reusable = true}, SHIFT(3410), + [7340] = {.count = 1, .reusable = true}, SHIFT(3411), + [7342] = {.count = 1, .reusable = true}, SHIFT(3412), + [7344] = {.count = 1, .reusable = true}, SHIFT(3413), + [7346] = {.count = 1, .reusable = true}, SHIFT(3404), + [7348] = {.count = 1, .reusable = true}, SHIFT(3418), + [7350] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [7352] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [7354] = {.count = 1, .reusable = false}, SHIFT(3420), + [7356] = {.count = 1, .reusable = true}, SHIFT(3420), + [7358] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [7360] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [7362] = {.count = 1, .reusable = true}, SHIFT(3422), + [7364] = {.count = 1, .reusable = false}, SHIFT(3422), + [7366] = {.count = 1, .reusable = true}, SHIFT(3424), + [7368] = {.count = 1, .reusable = true}, SHIFT(3425), + [7370] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_declaration, 3), + [7372] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_declaration, 3), + [7374] = {.count = 1, .reusable = true}, REDUCE(sym_friend_declaration, 3), + [7376] = {.count = 1, .reusable = false}, REDUCE(sym_friend_declaration, 3), + [7378] = {.count = 1, .reusable = true}, SHIFT(3427), + [7380] = {.count = 1, .reusable = true}, SHIFT(3429), + [7382] = {.count = 1, .reusable = true}, SHIFT(3432), + [7384] = {.count = 1, .reusable = true}, SHIFT(3433), + [7386] = {.count = 1, .reusable = true}, SHIFT(3434), + [7388] = {.count = 1, .reusable = false}, SHIFT(3435), + [7390] = {.count = 1, .reusable = false}, SHIFT(3437), + [7392] = {.count = 1, .reusable = false}, SHIFT(3438), + [7394] = {.count = 1, .reusable = false}, SHIFT(3436), + [7396] = {.count = 1, .reusable = true}, SHIFT(3439), + [7398] = {.count = 1, .reusable = true}, SHIFT(3440), + [7400] = {.count = 1, .reusable = true}, SHIFT(3441), + [7402] = {.count = 1, .reusable = true}, SHIFT(3443), + [7404] = {.count = 1, .reusable = true}, SHIFT(3445), + [7406] = {.count = 1, .reusable = true}, SHIFT(3446), + [7408] = {.count = 1, .reusable = true}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), + [7410] = {.count = 1, .reusable = true}, SHIFT(3449), + [7412] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), + [7414] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), + [7416] = {.count = 1, .reusable = true}, SHIFT(3452), + [7418] = {.count = 1, .reusable = false}, SHIFT(3452), + [7420] = {.count = 1, .reusable = true}, SHIFT(3451), + [7422] = {.count = 1, .reusable = true}, SHIFT(3450), + [7424] = {.count = 1, .reusable = false}, SHIFT(3454), + [7426] = {.count = 1, .reusable = true}, SHIFT(3455), + [7428] = {.count = 1, .reusable = true}, SHIFT(3456), + [7430] = {.count = 1, .reusable = true}, REDUCE(sym_inline_method_definition, 3), + [7432] = {.count = 1, .reusable = false}, REDUCE(sym_inline_method_definition, 3), + [7434] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [7436] = {.count = 1, .reusable = true}, SHIFT(3458), + [7438] = {.count = 1, .reusable = true}, SHIFT(3457), + [7440] = {.count = 1, .reusable = true}, SHIFT(3460), + [7442] = {.count = 1, .reusable = true}, SHIFT(3461), + [7444] = {.count = 1, .reusable = true}, SHIFT(3462), + [7446] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 5), + [7448] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 5), + [7450] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 5), + [7452] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2519), + [7455] = {.count = 1, .reusable = true}, SHIFT(3471), + [7457] = {.count = 1, .reusable = true}, SHIFT(3470), + [7459] = {.count = 1, .reusable = false}, REDUCE(sym_alias_declaration, 5, .alias_sequence_id = 2), + [7461] = {.count = 1, .reusable = true}, REDUCE(sym_alias_declaration, 5, .alias_sequence_id = 2), + [7463] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), + [7465] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), + [7467] = {.count = 1, .reusable = true}, SHIFT(3475), + [7469] = {.count = 1, .reusable = true}, SHIFT(3482), + [7471] = {.count = 1, .reusable = true}, SHIFT(3483), + [7473] = {.count = 1, .reusable = true}, SHIFT(3489), + [7475] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 4), + [7477] = {.count = 1, .reusable = true}, SHIFT(3491), + [7479] = {.count = 1, .reusable = false}, SHIFT(3491), + [7481] = {.count = 1, .reusable = false}, SHIFT(185), + [7483] = {.count = 1, .reusable = true}, SHIFT(3492), + [7485] = {.count = 1, .reusable = true}, SHIFT(3493), + [7487] = {.count = 1, .reusable = true}, SHIFT(3494), + [7489] = {.count = 1, .reusable = true}, SHIFT(3495), + [7491] = {.count = 1, .reusable = true}, SHIFT(3496), + [7493] = {.count = 1, .reusable = false}, SHIFT(3496), + [7495] = {.count = 1, .reusable = false}, SHIFT(3497), + [7497] = {.count = 1, .reusable = false}, SHIFT(3498), + [7499] = {.count = 1, .reusable = true}, SHIFT(3499), + [7501] = {.count = 1, .reusable = true}, SHIFT(3498), + [7503] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2572), + [7506] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1547), + [7509] = {.count = 1, .reusable = true}, SHIFT(3502), + [7511] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 5, .alias_sequence_id = 2), + [7513] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 5, .alias_sequence_id = 2), + [7515] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 5), + [7517] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 5), + [7519] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), + [7521] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [7523] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [7525] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1558), + [7528] = {.count = 1, .reusable = true}, SHIFT(3503), + [7530] = {.count = 1, .reusable = true}, REDUCE(sym_new_declarator, 3), + [7532] = {.count = 1, .reusable = false}, REDUCE(sym_new_declarator, 3), + [7534] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 5), + [7536] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 5), + [7538] = {.count = 1, .reusable = false}, REDUCE(sym_catch_clause, 3), + [7540] = {.count = 1, .reusable = true}, REDUCE(sym_catch_clause, 3), + [7542] = {.count = 1, .reusable = true}, SHIFT(3506), + [7544] = {.count = 1, .reusable = true}, SHIFT(3507), + [7546] = {.count = 1, .reusable = true}, SHIFT(3509), + [7548] = {.count = 1, .reusable = false}, SHIFT(3509), + [7550] = {.count = 1, .reusable = true}, SHIFT(3510), + [7552] = {.count = 1, .reusable = true}, SHIFT(3511), + [7554] = {.count = 1, .reusable = true}, SHIFT(3513), + [7556] = {.count = 1, .reusable = true}, SHIFT(3514), + [7558] = {.count = 1, .reusable = true}, SHIFT(3515), + [7560] = {.count = 1, .reusable = true}, SHIFT(3516), + [7562] = {.count = 1, .reusable = false}, SHIFT(3516), + [7564] = {.count = 1, .reusable = true}, SHIFT(3517), + [7566] = {.count = 1, .reusable = false}, SHIFT(3517), + [7568] = {.count = 1, .reusable = true}, SHIFT(3519), + [7570] = {.count = 1, .reusable = true}, SHIFT(3520), + [7572] = {.count = 1, .reusable = true}, SHIFT(3521), + [7574] = {.count = 1, .reusable = true}, SHIFT(3523), + [7576] = {.count = 1, .reusable = true}, SHIFT(3525), + [7578] = {.count = 1, .reusable = true}, SHIFT(3526), + [7580] = {.count = 1, .reusable = false}, SHIFT(1607), + [7582] = {.count = 1, .reusable = true}, SHIFT(3531), + [7584] = {.count = 1, .reusable = true}, SHIFT(3542), + [7586] = {.count = 1, .reusable = true}, SHIFT(3544), + [7588] = {.count = 1, .reusable = true}, SHIFT(3543), + [7590] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2649), + [7593] = {.count = 1, .reusable = true}, SHIFT(3553), + [7595] = {.count = 1, .reusable = false}, SHIFT(3553), + [7597] = {.count = 1, .reusable = true}, SHIFT(3556), + [7599] = {.count = 1, .reusable = true}, SHIFT(3557), + [7601] = {.count = 1, .reusable = false}, SHIFT(3557), + [7603] = {.count = 1, .reusable = true}, SHIFT(3558), + [7605] = {.count = 1, .reusable = true}, SHIFT(3559), + [7607] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(746), + [7610] = {.count = 1, .reusable = false}, SHIFT(231), + [7612] = {.count = 1, .reusable = false}, SHIFT(234), + [7614] = {.count = 1, .reusable = true}, SHIFT(3561), + [7616] = {.count = 1, .reusable = true}, SHIFT(3562), + [7618] = {.count = 1, .reusable = true}, SHIFT(3563), + [7620] = {.count = 1, .reusable = true}, SHIFT(3564), + [7622] = {.count = 1, .reusable = true}, SHIFT(3567), + [7624] = {.count = 1, .reusable = true}, SHIFT(3574), + [7626] = {.count = 1, .reusable = true}, SHIFT(3575), + [7628] = {.count = 1, .reusable = true}, SHIFT(3581), + [7630] = {.count = 1, .reusable = true}, SHIFT(3583), + [7632] = {.count = 1, .reusable = true}, SHIFT(3585), + [7634] = {.count = 1, .reusable = true}, SHIFT(3586), + [7636] = {.count = 1, .reusable = false}, SHIFT(3586), + [7638] = {.count = 1, .reusable = true}, SHIFT(3587), + [7640] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 5, .alias_sequence_id = 2), + [7642] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 5, .alias_sequence_id = 2), + [7644] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 5), + [7646] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 5), + [7648] = {.count = 1, .reusable = true}, SHIFT(3588), + [7650] = {.count = 1, .reusable = true}, SHIFT(3589), + [7652] = {.count = 1, .reusable = true}, SHIFT(3591), + [7654] = {.count = 1, .reusable = false}, SHIFT(3591), + [7656] = {.count = 1, .reusable = true}, SHIFT(3590), + [7658] = {.count = 1, .reusable = false}, SHIFT(2740), + [7660] = {.count = 1, .reusable = false}, SHIFT(2743), + [7662] = {.count = 1, .reusable = false}, SHIFT(2742), + [7664] = {.count = 1, .reusable = false}, SHIFT(3594), + [7666] = {.count = 1, .reusable = true}, SHIFT(3595), + [7668] = {.count = 1, .reusable = false}, SHIFT(3596), + [7670] = {.count = 1, .reusable = true}, SHIFT(3597), + [7672] = {.count = 1, .reusable = true}, SHIFT(2744), + [7674] = {.count = 1, .reusable = false}, SHIFT(2745), + [7676] = {.count = 1, .reusable = false}, SHIFT(2739), + [7678] = {.count = 1, .reusable = false}, SHIFT(2746), + [7680] = {.count = 1, .reusable = true}, SHIFT(2739), + [7682] = {.count = 1, .reusable = false}, SHIFT(2738), + [7684] = {.count = 1, .reusable = true}, SHIFT(2741), + [7686] = {.count = 1, .reusable = true}, SHIFT(2748), + [7688] = {.count = 1, .reusable = true}, SHIFT(3598), + [7690] = {.count = 1, .reusable = false}, SHIFT(3598), + [7692] = {.count = 1, .reusable = true}, SHIFT(3599), + [7694] = {.count = 1, .reusable = false}, SHIFT(3599), + [7696] = {.count = 1, .reusable = true}, SHIFT(3600), + [7698] = {.count = 1, .reusable = false}, SHIFT(3600), + [7700] = {.count = 1, .reusable = true}, SHIFT(3601), + [7702] = {.count = 1, .reusable = false}, SHIFT(3601), + [7704] = {.count = 1, .reusable = true}, SHIFT(3602), + [7706] = {.count = 1, .reusable = false}, SHIFT(3602), + [7708] = {.count = 1, .reusable = true}, SHIFT(3603), + [7710] = {.count = 1, .reusable = false}, SHIFT(3603), + [7712] = {.count = 1, .reusable = true}, SHIFT(3604), + [7714] = {.count = 1, .reusable = false}, SHIFT(3604), + [7716] = {.count = 1, .reusable = true}, SHIFT(3605), + [7718] = {.count = 1, .reusable = false}, SHIFT(3605), + [7720] = {.count = 1, .reusable = true}, SHIFT(3606), + [7722] = {.count = 1, .reusable = false}, SHIFT(3606), + [7724] = {.count = 1, .reusable = true}, SHIFT(3607), + [7726] = {.count = 1, .reusable = false}, SHIFT(3607), + [7728] = {.count = 1, .reusable = true}, SHIFT(3609), + [7730] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2752), + [7733] = {.count = 1, .reusable = true}, SHIFT(3610), + [7735] = {.count = 1, .reusable = false}, SHIFT(3610), + [7737] = {.count = 1, .reusable = true}, SHIFT(3611), + [7739] = {.count = 1, .reusable = false}, SHIFT(3611), + [7741] = {.count = 1, .reusable = true}, SHIFT(3612), + [7743] = {.count = 1, .reusable = false}, SHIFT(3613), + [7745] = {.count = 1, .reusable = true}, SHIFT(3615), + [7747] = {.count = 1, .reusable = true}, SHIFT(3617), + [7749] = {.count = 1, .reusable = true}, SHIFT(3618), + [7751] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [7753] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [7755] = {.count = 1, .reusable = false}, SHIFT(3619), + [7757] = {.count = 1, .reusable = true}, SHIFT(3621), + [7759] = {.count = 1, .reusable = true}, SHIFT(3623), + [7761] = {.count = 1, .reusable = false}, SHIFT(3623), + [7763] = {.count = 1, .reusable = true}, SHIFT(3622), + [7765] = {.count = 1, .reusable = true}, SHIFT(3624), + [7767] = {.count = 1, .reusable = true}, SHIFT(3625), + [7769] = {.count = 1, .reusable = false}, SHIFT(3625), + [7771] = {.count = 1, .reusable = true}, SHIFT(3626), + [7773] = {.count = 1, .reusable = false}, SHIFT(3626), + [7775] = {.count = 2, .reusable = true}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1768), + [7778] = {.count = 1, .reusable = false}, SHIFT(3628), + [7780] = {.count = 1, .reusable = false}, SHIFT(3631), + [7782] = {.count = 1, .reusable = false}, SHIFT(3630), + [7784] = {.count = 1, .reusable = false}, SHIFT(3629), + [7786] = {.count = 1, .reusable = false}, SHIFT(3632), + [7788] = {.count = 1, .reusable = true}, SHIFT(3634), + [7790] = {.count = 1, .reusable = true}, SHIFT(3635), + [7792] = {.count = 1, .reusable = true}, REDUCE(sym_variadic_type_parameter_declaration, 3, .alias_sequence_id = 9), + [7794] = {.count = 1, .reusable = false}, SHIFT(3637), + [7796] = {.count = 1, .reusable = false}, SHIFT(3638), + [7798] = {.count = 1, .reusable = false}, SHIFT(3636), + [7800] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), + [7802] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 4), + [7804] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 4), + [7806] = {.count = 2, .reusable = true}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1789), + [7809] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2795), + [7812] = {.count = 1, .reusable = true}, SHIFT(3641), + [7814] = {.count = 1, .reusable = true}, SHIFT(3643), + [7816] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 3), + [7818] = {.count = 1, .reusable = true}, SHIFT(3647), + [7820] = {.count = 1, .reusable = true}, REDUCE(sym_optional_parameter_declaration, 3), + [7822] = {.count = 1, .reusable = true}, SHIFT(3648), + [7824] = {.count = 1, .reusable = false}, SHIFT(3648), + [7826] = {.count = 1, .reusable = true}, SHIFT(3650), + [7828] = {.count = 1, .reusable = true}, SHIFT(3649), + [7830] = {.count = 1, .reusable = false}, SHIFT(3651), + [7832] = {.count = 1, .reusable = false}, SHIFT(3652), + [7834] = {.count = 1, .reusable = true}, SHIFT(3653), + [7836] = {.count = 1, .reusable = true}, SHIFT(3652), + [7838] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2817), + [7841] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1813), + [7844] = {.count = 1, .reusable = true}, SHIFT(3656), + [7846] = {.count = 1, .reusable = false}, SHIFT(3656), + [7848] = {.count = 1, .reusable = true}, SHIFT(3657), + [7850] = {.count = 1, .reusable = true}, SHIFT(3658), + [7852] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2825), + [7855] = {.count = 1, .reusable = true}, SHIFT(3659), + [7857] = {.count = 1, .reusable = false}, SHIFT(3659), + [7859] = {.count = 1, .reusable = true}, SHIFT(3660), + [7861] = {.count = 1, .reusable = false}, SHIFT(3660), + [7863] = {.count = 1, .reusable = true}, SHIFT(3661), + [7865] = {.count = 1, .reusable = false}, SHIFT(293), + [7867] = {.count = 1, .reusable = false}, SHIFT(294), + [7869] = {.count = 1, .reusable = true}, SHIFT(3662), + [7871] = {.count = 1, .reusable = true}, SHIFT(3663), + [7873] = {.count = 1, .reusable = false}, SHIFT(3663), + [7875] = {.count = 1, .reusable = true}, SHIFT(3664), + [7877] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 3), + [7879] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [7881] = {.count = 1, .reusable = true}, SHIFT(3665), + [7883] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), + [7885] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), + [7887] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 5), + [7889] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 5), + [7891] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [7893] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), + [7895] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 4), + [7897] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1870), + [7900] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2853), + [7903] = {.count = 1, .reusable = true}, SHIFT(3669), + [7905] = {.count = 1, .reusable = true}, SHIFT(3671), + [7907] = {.count = 1, .reusable = true}, REDUCE(sym_variadic_declarator, 2), + [7909] = {.count = 1, .reusable = true}, REDUCE(sym_variadic_reference_declarator, 2), + [7911] = {.count = 1, .reusable = true}, SHIFT(3674), + [7913] = {.count = 1, .reusable = true}, SHIFT(3676), + [7915] = {.count = 1, .reusable = false}, SHIFT(3676), + [7917] = {.count = 1, .reusable = true}, SHIFT(3678), + [7919] = {.count = 1, .reusable = true}, SHIFT(3677), + [7921] = {.count = 1, .reusable = false}, SHIFT(3680), + [7923] = {.count = 1, .reusable = false}, SHIFT(3681), + [7925] = {.count = 1, .reusable = false}, SHIFT(3679), + [7927] = {.count = 1, .reusable = true}, SHIFT(3682), + [7929] = {.count = 1, .reusable = true}, SHIFT(3683), + [7931] = {.count = 1, .reusable = false}, SHIFT(3684), + [7933] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2877), + [7936] = {.count = 1, .reusable = true}, SHIFT(3685), + [7938] = {.count = 1, .reusable = true}, SHIFT(3686), + [7940] = {.count = 1, .reusable = true}, SHIFT(3688), + [7942] = {.count = 1, .reusable = false}, SHIFT(3688), + [7944] = {.count = 1, .reusable = true}, SHIFT(3687), + [7946] = {.count = 1, .reusable = false}, SHIFT(2894), + [7948] = {.count = 1, .reusable = false}, SHIFT(2897), + [7950] = {.count = 1, .reusable = false}, SHIFT(2896), + [7952] = {.count = 1, .reusable = false}, SHIFT(3691), + [7954] = {.count = 1, .reusable = true}, SHIFT(3692), + [7956] = {.count = 1, .reusable = false}, SHIFT(3693), + [7958] = {.count = 1, .reusable = true}, SHIFT(3694), + [7960] = {.count = 1, .reusable = true}, SHIFT(2898), + [7962] = {.count = 1, .reusable = false}, SHIFT(2899), + [7964] = {.count = 1, .reusable = false}, SHIFT(2893), + [7966] = {.count = 1, .reusable = false}, SHIFT(2900), + [7968] = {.count = 1, .reusable = true}, SHIFT(2893), + [7970] = {.count = 1, .reusable = false}, SHIFT(2892), + [7972] = {.count = 1, .reusable = true}, SHIFT(2895), + [7974] = {.count = 1, .reusable = true}, SHIFT(2902), + [7976] = {.count = 1, .reusable = true}, SHIFT(3695), + [7978] = {.count = 1, .reusable = false}, SHIFT(3695), + [7980] = {.count = 1, .reusable = true}, SHIFT(3696), + [7982] = {.count = 1, .reusable = false}, SHIFT(3696), + [7984] = {.count = 1, .reusable = true}, SHIFT(3697), + [7986] = {.count = 1, .reusable = false}, SHIFT(3697), + [7988] = {.count = 1, .reusable = true}, SHIFT(3698), + [7990] = {.count = 1, .reusable = false}, SHIFT(3698), + [7992] = {.count = 1, .reusable = true}, SHIFT(3699), + [7994] = {.count = 1, .reusable = false}, SHIFT(3699), + [7996] = {.count = 1, .reusable = true}, SHIFT(3700), + [7998] = {.count = 1, .reusable = false}, SHIFT(3700), + [8000] = {.count = 1, .reusable = true}, SHIFT(3701), + [8002] = {.count = 1, .reusable = false}, SHIFT(3701), + [8004] = {.count = 1, .reusable = true}, SHIFT(3702), + [8006] = {.count = 1, .reusable = false}, SHIFT(3702), + [8008] = {.count = 1, .reusable = true}, SHIFT(3703), + [8010] = {.count = 1, .reusable = false}, SHIFT(3703), + [8012] = {.count = 1, .reusable = true}, SHIFT(3704), + [8014] = {.count = 1, .reusable = false}, SHIFT(3704), + [8016] = {.count = 1, .reusable = true}, SHIFT(3706), + [8018] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2906), + [8021] = {.count = 1, .reusable = true}, SHIFT(3707), + [8023] = {.count = 1, .reusable = false}, SHIFT(3707), + [8025] = {.count = 1, .reusable = true}, SHIFT(3708), + [8027] = {.count = 1, .reusable = false}, SHIFT(3708), + [8029] = {.count = 1, .reusable = true}, SHIFT(3709), + [8031] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [8033] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 4), + [8035] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2922), + [8038] = {.count = 1, .reusable = true}, REDUCE(sym_trailing_return_type, 3), + [8040] = {.count = 1, .reusable = true}, SHIFT(3713), + [8042] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 4), + [8044] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 4), + [8046] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 4), + [8048] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 14), + [8050] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3), + [8052] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 11), + [8054] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [8056] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1943), + [8059] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 14), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 5), + [8062] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 11), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 9), + [8065] = {.count = 1, .reusable = true}, SHIFT(3714), + [8067] = {.count = 1, .reusable = false}, SHIFT(3714), + [8069] = {.count = 1, .reusable = true}, SHIFT(3715), + [8071] = {.count = 1, .reusable = true}, SHIFT(3716), + [8073] = {.count = 1, .reusable = true}, SHIFT(3718), + [8075] = {.count = 1, .reusable = false}, SHIFT(3718), + [8077] = {.count = 1, .reusable = true}, SHIFT(3717), + [8079] = {.count = 1, .reusable = false}, SHIFT(2955), + [8081] = {.count = 1, .reusable = false}, SHIFT(2958), + [8083] = {.count = 1, .reusable = false}, SHIFT(2957), + [8085] = {.count = 1, .reusable = false}, SHIFT(3721), + [8087] = {.count = 1, .reusable = true}, SHIFT(3722), + [8089] = {.count = 1, .reusable = false}, SHIFT(3724), + [8091] = {.count = 1, .reusable = true}, SHIFT(3725), + [8093] = {.count = 1, .reusable = true}, SHIFT(2959), + [8095] = {.count = 1, .reusable = false}, SHIFT(2960), + [8097] = {.count = 1, .reusable = false}, SHIFT(2954), + [8099] = {.count = 1, .reusable = false}, SHIFT(2961), + [8101] = {.count = 1, .reusable = true}, SHIFT(2954), + [8103] = {.count = 1, .reusable = false}, SHIFT(2953), + [8105] = {.count = 1, .reusable = true}, SHIFT(2956), + [8107] = {.count = 1, .reusable = true}, SHIFT(2963), + [8109] = {.count = 1, .reusable = true}, SHIFT(3726), + [8111] = {.count = 1, .reusable = false}, SHIFT(3726), + [8113] = {.count = 1, .reusable = true}, SHIFT(3727), + [8115] = {.count = 1, .reusable = false}, SHIFT(3727), + [8117] = {.count = 1, .reusable = true}, SHIFT(3728), + [8119] = {.count = 1, .reusable = false}, SHIFT(3728), + [8121] = {.count = 1, .reusable = true}, SHIFT(3729), + [8123] = {.count = 1, .reusable = false}, SHIFT(3729), + [8125] = {.count = 1, .reusable = true}, SHIFT(3730), + [8127] = {.count = 1, .reusable = false}, SHIFT(3730), + [8129] = {.count = 1, .reusable = true}, SHIFT(3731), + [8131] = {.count = 1, .reusable = false}, SHIFT(3731), + [8133] = {.count = 1, .reusable = true}, SHIFT(3732), + [8135] = {.count = 1, .reusable = false}, SHIFT(3732), + [8137] = {.count = 1, .reusable = true}, SHIFT(3733), + [8139] = {.count = 1, .reusable = false}, SHIFT(3733), + [8141] = {.count = 1, .reusable = true}, SHIFT(3734), + [8143] = {.count = 1, .reusable = false}, SHIFT(3734), + [8145] = {.count = 1, .reusable = true}, SHIFT(3735), + [8147] = {.count = 1, .reusable = false}, SHIFT(3735), + [8149] = {.count = 1, .reusable = true}, SHIFT(3736), + [8151] = {.count = 1, .reusable = false}, SHIFT(3736), + [8153] = {.count = 1, .reusable = true}, SHIFT(3738), + [8155] = {.count = 1, .reusable = false}, SHIFT(3738), + [8157] = {.count = 1, .reusable = true}, SHIFT(3737), + [8159] = {.count = 1, .reusable = true}, SHIFT(3741), + [8161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2977), + [8164] = {.count = 1, .reusable = true}, SHIFT(3742), + [8166] = {.count = 1, .reusable = false}, SHIFT(3742), + [8168] = {.count = 1, .reusable = true}, SHIFT(3743), + [8170] = {.count = 1, .reusable = false}, SHIFT(3743), + [8172] = {.count = 1, .reusable = true}, SHIFT(2964), + [8174] = {.count = 1, .reusable = true}, SHIFT(3744), + [8176] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [8178] = {.count = 1, .reusable = true}, SHIFT(3745), + [8180] = {.count = 1, .reusable = true}, SHIFT(3747), + [8182] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [8184] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2999), + [8187] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_reference_declarator, 1), + [8189] = {.count = 1, .reusable = true}, SHIFT(3752), + [8191] = {.count = 1, .reusable = false}, REDUCE(sym_trailing_return_type, 3), + [8193] = {.count = 1, .reusable = true}, SHIFT(3754), + [8195] = {.count = 1, .reusable = true}, SHIFT(3755), + [8197] = {.count = 1, .reusable = true}, SHIFT(3757), + [8199] = {.count = 1, .reusable = false}, SHIFT(3757), + [8201] = {.count = 1, .reusable = true}, SHIFT(3758), + [8203] = {.count = 1, .reusable = true}, SHIFT(3759), + [8205] = {.count = 1, .reusable = true}, SHIFT(3761), + [8207] = {.count = 1, .reusable = false}, SHIFT(3761), + [8209] = {.count = 1, .reusable = true}, SHIFT(3760), + [8211] = {.count = 1, .reusable = false}, SHIFT(3765), + [8213] = {.count = 1, .reusable = false}, SHIFT(3764), + [8215] = {.count = 1, .reusable = false}, SHIFT(3763), + [8217] = {.count = 1, .reusable = true}, SHIFT(3768), + [8219] = {.count = 1, .reusable = false}, SHIFT(3768), + [8221] = {.count = 1, .reusable = true}, SHIFT(3767), + [8223] = {.count = 1, .reusable = false}, SHIFT(3769), + [8225] = {.count = 1, .reusable = true}, SHIFT(3771), + [8227] = {.count = 1, .reusable = true}, SHIFT(3770), + [8229] = {.count = 1, .reusable = false}, SHIFT(3771), + [8231] = {.count = 1, .reusable = false}, SHIFT(3784), + [8233] = {.count = 1, .reusable = true}, SHIFT(3785), + [8235] = {.count = 1, .reusable = false}, SHIFT(3786), + [8237] = {.count = 1, .reusable = true}, SHIFT(3788), + [8239] = {.count = 1, .reusable = false}, SHIFT(3788), + [8241] = {.count = 1, .reusable = true}, SHIFT(3789), + [8243] = {.count = 1, .reusable = false}, SHIFT(3789), + [8245] = {.count = 1, .reusable = true}, SHIFT(3790), + [8247] = {.count = 1, .reusable = false}, SHIFT(3790), + [8249] = {.count = 1, .reusable = true}, SHIFT(3791), + [8251] = {.count = 1, .reusable = false}, SHIFT(3791), + [8253] = {.count = 1, .reusable = true}, SHIFT(3792), + [8255] = {.count = 1, .reusable = false}, SHIFT(3792), + [8257] = {.count = 1, .reusable = true}, SHIFT(3793), + [8259] = {.count = 1, .reusable = false}, SHIFT(3793), + [8261] = {.count = 1, .reusable = true}, SHIFT(3794), + [8263] = {.count = 1, .reusable = false}, SHIFT(3794), + [8265] = {.count = 1, .reusable = true}, SHIFT(3795), + [8267] = {.count = 1, .reusable = false}, SHIFT(3795), + [8269] = {.count = 1, .reusable = true}, SHIFT(3796), + [8271] = {.count = 1, .reusable = false}, SHIFT(3796), + [8273] = {.count = 1, .reusable = true}, SHIFT(3797), + [8275] = {.count = 1, .reusable = false}, SHIFT(3797), + [8277] = {.count = 1, .reusable = true}, SHIFT(3798), + [8279] = {.count = 1, .reusable = false}, SHIFT(3798), + [8281] = {.count = 1, .reusable = false}, SHIFT(3799), + [8283] = {.count = 1, .reusable = false}, SHIFT(3800), + [8285] = {.count = 1, .reusable = true}, SHIFT(3801), + [8287] = {.count = 1, .reusable = true}, SHIFT(3800), + [8289] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3047), + [8292] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2032), + [8295] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6), + [8297] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6), + [8299] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [8301] = {.count = 1, .reusable = true}, SHIFT(3804), + [8303] = {.count = 1, .reusable = true}, SHIFT(3805), + [8305] = {.count = 1, .reusable = false}, SHIFT(3807), + [8307] = {.count = 1, .reusable = true}, SHIFT(3809), + [8309] = {.count = 1, .reusable = false}, SHIFT(3810), + [8311] = {.count = 1, .reusable = true}, SHIFT(3812), + [8313] = {.count = 1, .reusable = true}, SHIFT(3813), + [8315] = {.count = 1, .reusable = false}, SHIFT(3815), + [8317] = {.count = 1, .reusable = true}, SHIFT(3816), + [8319] = {.count = 1, .reusable = true}, SHIFT(3819), + [8321] = {.count = 1, .reusable = true}, SHIFT(3820), + [8323] = {.count = 1, .reusable = true}, SHIFT(3821), + [8325] = {.count = 1, .reusable = true}, SHIFT(3824), + [8327] = {.count = 1, .reusable = false}, SHIFT(3824), + [8329] = {.count = 1, .reusable = true}, SHIFT(3823), + [8331] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [8333] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [8335] = {.count = 1, .reusable = true}, SHIFT(3828), + [8337] = {.count = 1, .reusable = true}, SHIFT(3829), + [8339] = {.count = 1, .reusable = true}, SHIFT(3830), + [8341] = {.count = 1, .reusable = true}, SHIFT(3832), + [8343] = {.count = 1, .reusable = true}, SHIFT(3835), + [8345] = {.count = 1, .reusable = false}, SHIFT(3835), + [8347] = {.count = 1, .reusable = true}, SHIFT(3834), + [8349] = {.count = 1, .reusable = true}, SHIFT(3836), + [8351] = {.count = 1, .reusable = true}, SHIFT(3837), + [8353] = {.count = 1, .reusable = false}, SHIFT(3082), + [8355] = {.count = 1, .reusable = true}, SHIFT(3840), + [8357] = {.count = 1, .reusable = true}, SHIFT(3841), + [8359] = {.count = 1, .reusable = false}, SHIFT(3841), + [8361] = {.count = 1, .reusable = true}, SHIFT(3846), + [8363] = {.count = 1, .reusable = false}, SHIFT(3846), + [8365] = {.count = 1, .reusable = true}, SHIFT(3847), + [8367] = {.count = 1, .reusable = false}, SHIFT(3847), + [8369] = {.count = 1, .reusable = true}, SHIFT(3849), + [8371] = {.count = 1, .reusable = true}, SHIFT(3850), + [8373] = {.count = 1, .reusable = true}, SHIFT(3851), + [8375] = {.count = 1, .reusable = true}, SHIFT(3853), + [8377] = {.count = 1, .reusable = true}, SHIFT(3855), + [8379] = {.count = 1, .reusable = true}, SHIFT(3856), + [8381] = {.count = 1, .reusable = false}, SHIFT(2100), + [8383] = {.count = 1, .reusable = true}, SHIFT(3861), + [8385] = {.count = 1, .reusable = true}, SHIFT(3872), + [8387] = {.count = 1, .reusable = true}, SHIFT(3874), + [8389] = {.count = 1, .reusable = true}, SHIFT(3873), + [8391] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3145), + [8394] = {.count = 1, .reusable = true}, SHIFT(3883), + [8396] = {.count = 1, .reusable = false}, SHIFT(3883), + [8398] = {.count = 1, .reusable = true}, SHIFT(3886), + [8400] = {.count = 1, .reusable = true}, SHIFT(3887), + [8402] = {.count = 1, .reusable = false}, SHIFT(3887), + [8404] = {.count = 1, .reusable = true}, SHIFT(3888), + [8406] = {.count = 1, .reusable = true}, SHIFT(3889), + [8408] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1089), + [8411] = {.count = 1, .reusable = false}, SHIFT(407), + [8413] = {.count = 1, .reusable = false}, SHIFT(408), + [8415] = {.count = 1, .reusable = true}, SHIFT(3893), + [8417] = {.count = 1, .reusable = true}, SHIFT(3894), + [8419] = {.count = 1, .reusable = true}, SHIFT(3895), + [8421] = {.count = 1, .reusable = true}, SHIFT(3896), + [8423] = {.count = 1, .reusable = true}, SHIFT(3897), + [8425] = {.count = 1, .reusable = true}, SHIFT(3899), + [8427] = {.count = 1, .reusable = true}, SHIFT(3901), + [8429] = {.count = 1, .reusable = true}, SHIFT(3902), + [8431] = {.count = 1, .reusable = true}, SHIFT(3905), + [8433] = {.count = 1, .reusable = true}, SHIFT(3906), + [8435] = {.count = 1, .reusable = false}, SHIFT(3906), + [8437] = {.count = 1, .reusable = true}, SHIFT(3907), + [8439] = {.count = 1, .reusable = false}, SHIFT(3908), + [8441] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3208), + [8444] = {.count = 1, .reusable = true}, SHIFT(3910), + [8446] = {.count = 1, .reusable = false}, SHIFT(3910), + [8448] = {.count = 1, .reusable = true}, SHIFT(3911), + [8450] = {.count = 1, .reusable = true}, SHIFT(3912), + [8452] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3218), + [8455] = {.count = 1, .reusable = true}, SHIFT(3913), + [8457] = {.count = 1, .reusable = false}, SHIFT(3913), + [8459] = {.count = 1, .reusable = true}, SHIFT(3914), + [8461] = {.count = 1, .reusable = false}, SHIFT(3914), + [8463] = {.count = 1, .reusable = true}, SHIFT(3915), + [8465] = {.count = 1, .reusable = false}, SHIFT(441), + [8467] = {.count = 1, .reusable = false}, SHIFT(442), + [8469] = {.count = 1, .reusable = true}, SHIFT(3916), + [8471] = {.count = 1, .reusable = true}, SHIFT(3917), + [8473] = {.count = 1, .reusable = false}, SHIFT(3917), + [8475] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [8477] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [8479] = {.count = 1, .reusable = true}, SHIFT(3918), + [8481] = {.count = 1, .reusable = true}, SHIFT(3920), + [8483] = {.count = 1, .reusable = true}, SHIFT(3921), + [8485] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), + [8487] = {.count = 1, .reusable = true}, SHIFT(3922), + [8489] = {.count = 1, .reusable = true}, SHIFT(3924), + [8491] = {.count = 1, .reusable = true}, SHIFT(3926), + [8493] = {.count = 1, .reusable = true}, SHIFT(3928), + [8495] = {.count = 1, .reusable = false}, SHIFT(3928), + [8497] = {.count = 1, .reusable = true}, SHIFT(3930), + [8499] = {.count = 1, .reusable = true}, SHIFT(3931), + [8501] = {.count = 1, .reusable = true}, SHIFT(3933), + [8503] = {.count = 1, .reusable = false}, SHIFT(3933), + [8505] = {.count = 1, .reusable = false}, SHIFT(3275), + [8507] = {.count = 1, .reusable = true}, SHIFT(3938), + [8509] = {.count = 1, .reusable = false}, SHIFT(3938), + [8511] = {.count = 1, .reusable = true}, SHIFT(3937), + [8513] = {.count = 1, .reusable = true}, SHIFT(3939), + [8515] = {.count = 1, .reusable = true}, SHIFT(3940), + [8517] = {.count = 1, .reusable = false}, SHIFT(3941), + [8519] = {.count = 1, .reusable = true}, SHIFT(3942), + [8521] = {.count = 1, .reusable = true}, SHIFT(3943), + [8523] = {.count = 1, .reusable = false}, SHIFT(3943), + [8525] = {.count = 1, .reusable = true}, SHIFT(3944), + [8527] = {.count = 1, .reusable = true}, SHIFT(3946), + [8529] = {.count = 1, .reusable = true}, SHIFT(3947), + [8531] = {.count = 1, .reusable = true}, SHIFT(3948), + [8533] = {.count = 1, .reusable = false}, SHIFT(3949), + [8535] = {.count = 1, .reusable = true}, SHIFT(3950), + [8537] = {.count = 1, .reusable = true}, SHIFT(3953), + [8539] = {.count = 1, .reusable = true}, SHIFT(3954), + [8541] = {.count = 1, .reusable = true}, SHIFT(3956), + [8543] = {.count = 1, .reusable = true}, SHIFT(3957), + [8545] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2334), + [8548] = {.count = 1, .reusable = true}, SHIFT(3960), + [8550] = {.count = 1, .reusable = false}, SHIFT(3960), + [8552] = {.count = 1, .reusable = true}, SHIFT(3959), + [8554] = {.count = 1, .reusable = true}, SHIFT(3961), + [8556] = {.count = 1, .reusable = true}, SHIFT(3962), + [8558] = {.count = 1, .reusable = false}, SHIFT(3962), + [8560] = {.count = 1, .reusable = true}, SHIFT(3963), + [8562] = {.count = 1, .reusable = false}, SHIFT(3963), + [8564] = {.count = 1, .reusable = false}, SHIFT(3964), + [8566] = {.count = 1, .reusable = false}, SHIFT(3967), + [8568] = {.count = 1, .reusable = false}, SHIFT(3966), + [8570] = {.count = 1, .reusable = false}, SHIFT(3965), + [8572] = {.count = 1, .reusable = false}, SHIFT(3968), + [8574] = {.count = 1, .reusable = true}, SHIFT(3970), + [8576] = {.count = 1, .reusable = true}, SHIFT(3971), + [8578] = {.count = 1, .reusable = false}, SHIFT(3971), + [8580] = {.count = 1, .reusable = true}, SHIFT(3973), + [8582] = {.count = 1, .reusable = true}, SHIFT(3974), + [8584] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [8586] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [8588] = {.count = 1, .reusable = true}, SHIFT(3975), + [8590] = {.count = 1, .reusable = false}, SHIFT(3975), + [8592] = {.count = 1, .reusable = false}, SHIFT(502), + [8594] = {.count = 1, .reusable = true}, SHIFT(3976), + [8596] = {.count = 1, .reusable = true}, SHIFT(3977), + [8598] = {.count = 1, .reusable = false}, SHIFT(3977), + [8600] = {.count = 1, .reusable = true}, SHIFT(3978), + [8602] = {.count = 1, .reusable = true}, SHIFT(3980), + [8604] = {.count = 1, .reusable = false}, SHIFT(3980), + [8606] = {.count = 1, .reusable = true}, SHIFT(3981), + [8608] = {.count = 1, .reusable = true}, SHIFT(3982), + [8610] = {.count = 1, .reusable = false}, SHIFT(3983), + [8612] = {.count = 1, .reusable = true}, SHIFT(3985), + [8614] = {.count = 1, .reusable = true}, SHIFT(3987), + [8616] = {.count = 1, .reusable = true}, SHIFT(3988), + [8618] = {.count = 1, .reusable = false}, SHIFT(3989), + [8620] = {.count = 1, .reusable = true}, SHIFT(3991), + [8622] = {.count = 1, .reusable = true}, SHIFT(3992), + [8624] = {.count = 1, .reusable = false}, SHIFT(3992), + [8626] = {.count = 1, .reusable = false}, SHIFT(551), + [8628] = {.count = 1, .reusable = true}, SHIFT(3993), + [8630] = {.count = 1, .reusable = false}, SHIFT(3993), + [8632] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3356), + [8635] = {.count = 1, .reusable = true}, SHIFT(3997), + [8637] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3361), + [8640] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 3, .alias_sequence_id = 9), + [8642] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 3), + [8644] = {.count = 1, .reusable = true}, SHIFT(3999), + [8646] = {.count = 1, .reusable = true}, SHIFT(4000), + [8648] = {.count = 1, .reusable = true}, SHIFT(4002), + [8650] = {.count = 1, .reusable = true}, SHIFT(4003), + [8652] = {.count = 1, .reusable = false}, SHIFT(4005), + [8654] = {.count = 1, .reusable = false}, SHIFT(4004), + [8656] = {.count = 1, .reusable = true}, SHIFT(4007), + [8658] = {.count = 1, .reusable = false}, SHIFT(4008), + [8660] = {.count = 1, .reusable = false}, SHIFT(4009), + [8662] = {.count = 1, .reusable = false}, SHIFT(4011), + [8664] = {.count = 1, .reusable = true}, SHIFT(4012), + [8666] = {.count = 1, .reusable = true}, SHIFT(4013), + [8668] = {.count = 1, .reusable = true}, SHIFT(4021), + [8670] = {.count = 1, .reusable = false}, SHIFT(4022), + [8672] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [8674] = {.count = 1, .reusable = true}, SHIFT(4025), + [8676] = {.count = 1, .reusable = true}, SHIFT(4026), + [8678] = {.count = 1, .reusable = true}, SHIFT(4028), [8680] = {.count = 1, .reusable = true}, SHIFT(4029), [8682] = {.count = 1, .reusable = true}, SHIFT(4030), - [8684] = {.count = 1, .reusable = true}, SHIFT(4032), - [8686] = {.count = 1, .reusable = true}, SHIFT(4033), - [8688] = {.count = 1, .reusable = false}, SHIFT(4035), - [8690] = {.count = 1, .reusable = false}, SHIFT(4034), - [8692] = {.count = 1, .reusable = true}, SHIFT(4037), - [8694] = {.count = 1, .reusable = false}, SHIFT(4038), - [8696] = {.count = 1, .reusable = false}, SHIFT(4039), - [8698] = {.count = 1, .reusable = false}, SHIFT(4041), - [8700] = {.count = 1, .reusable = true}, SHIFT(4042), - [8702] = {.count = 1, .reusable = true}, SHIFT(4043), + [8684] = {.count = 1, .reusable = true}, SHIFT(4031), + [8686] = {.count = 1, .reusable = true}, SHIFT(4035), + [8688] = {.count = 1, .reusable = false}, SHIFT(4036), + [8690] = {.count = 1, .reusable = false}, SHIFT(4039), + [8692] = {.count = 1, .reusable = false}, SHIFT(4041), + [8694] = {.count = 1, .reusable = true}, SHIFT(4044), + [8696] = {.count = 1, .reusable = true}, SHIFT(4045), + [8698] = {.count = 1, .reusable = true}, SHIFT(4047), + [8700] = {.count = 1, .reusable = true}, SHIFT(4048), + [8702] = {.count = 1, .reusable = true}, SHIFT(4049), [8704] = {.count = 1, .reusable = true}, SHIFT(4051), - [8706] = {.count = 1, .reusable = true}, SHIFT(4053), - [8708] = {.count = 1, .reusable = true}, SHIFT(4054), - [8710] = {.count = 1, .reusable = true}, SHIFT(4055), - [8712] = {.count = 1, .reusable = true}, SHIFT(4057), - [8714] = {.count = 1, .reusable = true}, SHIFT(4058), - [8716] = {.count = 1, .reusable = true}, SHIFT(4059), - [8718] = {.count = 1, .reusable = false}, SHIFT(4062), - [8720] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [8722] = {.count = 1, .reusable = true}, SHIFT(4065), - [8724] = {.count = 1, .reusable = false}, SHIFT(4066), - [8726] = {.count = 1, .reusable = false}, SHIFT(4069), - [8728] = {.count = 1, .reusable = false}, SHIFT(4071), - [8730] = {.count = 1, .reusable = true}, SHIFT(4074), - [8732] = {.count = 1, .reusable = true}, SHIFT(4075), - [8734] = {.count = 1, .reusable = true}, SHIFT(4076), - [8736] = {.count = 1, .reusable = true}, SHIFT(4078), - [8738] = {.count = 1, .reusable = true}, SHIFT(4080), - [8740] = {.count = 1, .reusable = true}, SHIFT(4081), - [8742] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), - [8744] = {.count = 1, .reusable = false}, SHIFT(4087), - [8746] = {.count = 1, .reusable = true}, SHIFT(4088), - [8748] = {.count = 1, .reusable = true}, SHIFT(4092), - [8750] = {.count = 1, .reusable = false}, SHIFT(4092), - [8752] = {.count = 1, .reusable = true}, SHIFT(4093), - [8754] = {.count = 1, .reusable = true}, SHIFT(4094), - [8756] = {.count = 1, .reusable = true}, SHIFT(4097), - [8758] = {.count = 1, .reusable = true}, SHIFT(4098), - [8760] = {.count = 1, .reusable = true}, SHIFT(4099), - [8762] = {.count = 1, .reusable = true}, SHIFT(4102), - [8764] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [8766] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [8768] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2463), - [8771] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [8773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2466), - [8776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2467), - [8779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2468), - [8782] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2469), - [8785] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2470), - [8788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2471), - [8791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2472), - [8794] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2473), - [8797] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2475), - [8800] = {.count = 1, .reusable = true}, SHIFT(4103), - [8802] = {.count = 1, .reusable = true}, SHIFT(4104), - [8804] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [8806] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [8808] = {.count = 1, .reusable = true}, SHIFT(4106), - [8810] = {.count = 1, .reusable = true}, SHIFT(4107), - [8812] = {.count = 1, .reusable = true}, SHIFT(4108), - [8814] = {.count = 1, .reusable = false}, SHIFT(4108), - [8816] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [8818] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [8820] = {.count = 1, .reusable = true}, SHIFT(4110), - [8822] = {.count = 1, .reusable = true}, SHIFT(4111), - [8824] = {.count = 1, .reusable = true}, SHIFT(4114), - [8826] = {.count = 1, .reusable = false}, SHIFT(4115), - [8828] = {.count = 1, .reusable = false}, SHIFT(4116), - [8830] = {.count = 1, .reusable = true}, SHIFT(4117), - [8832] = {.count = 1, .reusable = true}, SHIFT(4116), - [8834] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3467), - [8837] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2503), - [8840] = {.count = 1, .reusable = true}, SHIFT(4120), - [8842] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), - [8844] = {.count = 1, .reusable = true}, SHIFT(4121), - [8846] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), - [8848] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [8850] = {.count = 1, .reusable = true}, SHIFT(4122), - [8852] = {.count = 1, .reusable = true}, SHIFT(4124), - [8854] = {.count = 1, .reusable = false}, SHIFT(4124), - [8856] = {.count = 1, .reusable = true}, SHIFT(4123), - [8858] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [8860] = {.count = 1, .reusable = false}, SHIFT(4126), - [8862] = {.count = 1, .reusable = false}, SHIFT(4127), - [8864] = {.count = 1, .reusable = false}, SHIFT(4125), - [8866] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 3), - [8868] = {.count = 1, .reusable = true}, SHIFT(4128), - [8870] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(2519), - [8873] = {.count = 1, .reusable = true}, REDUCE(sym_inline_method_definition, 4), - [8875] = {.count = 1, .reusable = false}, REDUCE(sym_inline_method_definition, 4), - [8877] = {.count = 1, .reusable = false}, SHIFT(4132), - [8879] = {.count = 1, .reusable = false}, SHIFT(4133), - [8881] = {.count = 1, .reusable = false}, SHIFT(4131), - [8883] = {.count = 1, .reusable = true}, SHIFT(4134), - [8885] = {.count = 1, .reusable = true}, SHIFT(4135), - [8887] = {.count = 1, .reusable = true}, SHIFT(4141), - [8889] = {.count = 1, .reusable = true}, SHIFT(4142), - [8891] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 5), - [8893] = {.count = 1, .reusable = true}, SHIFT(4146), - [8895] = {.count = 1, .reusable = true}, SHIFT(687), - [8897] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5), - [8899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3525), - [8902] = {.count = 1, .reusable = true}, SHIFT(4150), - [8904] = {.count = 1, .reusable = true}, REDUCE(sym_new_declarator, 4), - [8906] = {.count = 1, .reusable = false}, REDUCE(sym_new_declarator, 4), - [8908] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [8910] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [8912] = {.count = 1, .reusable = true}, SHIFT(4152), - [8914] = {.count = 1, .reusable = false}, SHIFT(4152), - [8916] = {.count = 1, .reusable = true}, SHIFT(4154), - [8918] = {.count = 1, .reusable = true}, SHIFT(4157), - [8920] = {.count = 1, .reusable = false}, SHIFT(4157), - [8922] = {.count = 1, .reusable = true}, SHIFT(4158), - [8924] = {.count = 1, .reusable = true}, SHIFT(4160), - [8926] = {.count = 1, .reusable = false}, SHIFT(4160), - [8928] = {.count = 1, .reusable = false}, SHIFT(747), - [8930] = {.count = 1, .reusable = true}, SHIFT(4161), - [8932] = {.count = 1, .reusable = true}, SHIFT(4162), - [8934] = {.count = 1, .reusable = true}, SHIFT(4163), - [8936] = {.count = 1, .reusable = true}, SHIFT(4164), - [8938] = {.count = 1, .reusable = true}, SHIFT(4167), - [8940] = {.count = 1, .reusable = true}, SHIFT(4174), - [8942] = {.count = 1, .reusable = true}, SHIFT(4175), - [8944] = {.count = 1, .reusable = true}, SHIFT(4181), - [8946] = {.count = 1, .reusable = true}, SHIFT(4183), - [8948] = {.count = 1, .reusable = false}, SHIFT(4183), - [8950] = {.count = 1, .reusable = true}, SHIFT(4184), - [8952] = {.count = 1, .reusable = true}, SHIFT(4185), - [8954] = {.count = 1, .reusable = true}, SHIFT(4190), - [8956] = {.count = 1, .reusable = true}, SHIFT(4191), - [8958] = {.count = 1, .reusable = true}, SHIFT(4194), - [8960] = {.count = 1, .reusable = true}, SHIFT(4196), - [8962] = {.count = 1, .reusable = false}, SHIFT(4196), - [8964] = {.count = 1, .reusable = true}, SHIFT(4197), - [8966] = {.count = 1, .reusable = true}, SHIFT(4198), - [8968] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3622), - [8971] = {.count = 1, .reusable = true}, SHIFT(4199), - [8973] = {.count = 1, .reusable = false}, SHIFT(4199), - [8975] = {.count = 1, .reusable = true}, SHIFT(4200), - [8977] = {.count = 1, .reusable = false}, SHIFT(4200), - [8979] = {.count = 1, .reusable = true}, SHIFT(4201), - [8981] = {.count = 1, .reusable = false}, SHIFT(819), - [8983] = {.count = 1, .reusable = false}, SHIFT(820), - [8985] = {.count = 1, .reusable = true}, SHIFT(4202), - [8987] = {.count = 1, .reusable = true}, SHIFT(4203), - [8989] = {.count = 1, .reusable = false}, SHIFT(4203), - [8991] = {.count = 1, .reusable = true}, SHIFT(4205), - [8993] = {.count = 1, .reusable = false}, SHIFT(4205), - [8995] = {.count = 1, .reusable = true}, SHIFT(4204), - [8997] = {.count = 1, .reusable = true}, SHIFT(4208), - [8999] = {.count = 1, .reusable = false}, SHIFT(4208), - [9001] = {.count = 1, .reusable = true}, SHIFT(4209), - [9003] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [9005] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [9007] = {.count = 1, .reusable = false}, SHIFT(4211), - [9009] = {.count = 1, .reusable = true}, SHIFT(4213), - [9011] = {.count = 1, .reusable = true}, SHIFT(4215), - [9013] = {.count = 1, .reusable = false}, SHIFT(4215), - [9015] = {.count = 1, .reusable = true}, SHIFT(4216), - [9017] = {.count = 1, .reusable = true}, SHIFT(4217), - [9019] = {.count = 1, .reusable = false}, SHIFT(4218), - [9021] = {.count = 1, .reusable = true}, SHIFT(4220), - [9023] = {.count = 1, .reusable = true}, SHIFT(4222), - [9025] = {.count = 1, .reusable = true}, SHIFT(4223), - [9027] = {.count = 1, .reusable = true}, SHIFT(4224), - [9029] = {.count = 1, .reusable = false}, SHIFT(4226), - [9031] = {.count = 1, .reusable = true}, REDUCE(sym_optional_type_parameter_declaration, 4, .alias_sequence_id = 2), - [9033] = {.count = 1, .reusable = true}, SHIFT(4227), - [9035] = {.count = 1, .reusable = true}, SHIFT(4229), - [9037] = {.count = 1, .reusable = true}, SHIFT(4228), - [9039] = {.count = 1, .reusable = true}, REDUCE(sym_optional_parameter_declaration, 4), - [9041] = {.count = 1, .reusable = false}, SHIFT(4232), - [9043] = {.count = 1, .reusable = false}, SHIFT(4233), - [9045] = {.count = 1, .reusable = false}, SHIFT(4231), - [9047] = {.count = 1, .reusable = true}, SHIFT(4234), - [9049] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3679), - [9052] = {.count = 1, .reusable = true}, SHIFT(4238), - [9054] = {.count = 1, .reusable = true}, SHIFT(4240), - [9056] = {.count = 1, .reusable = false}, SHIFT(4240), - [9058] = {.count = 1, .reusable = false}, SHIFT(889), - [9060] = {.count = 1, .reusable = true}, SHIFT(4241), - [9062] = {.count = 1, .reusable = true}, SHIFT(4242), - [9064] = {.count = 1, .reusable = false}, SHIFT(4242), - [9066] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [9068] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 4), - [9070] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [9072] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(2859), - [9075] = {.count = 1, .reusable = true}, SHIFT(4243), - [9077] = {.count = 1, .reusable = false}, SHIFT(4243), - [9079] = {.count = 1, .reusable = true}, SHIFT(4244), - [9081] = {.count = 1, .reusable = true}, SHIFT(4245), - [9083] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3701), - [9086] = {.count = 1, .reusable = true}, SHIFT(4246), - [9088] = {.count = 1, .reusable = false}, SHIFT(4246), - [9090] = {.count = 1, .reusable = true}, SHIFT(4247), - [9092] = {.count = 1, .reusable = false}, SHIFT(4247), - [9094] = {.count = 1, .reusable = true}, SHIFT(4248), - [9096] = {.count = 1, .reusable = false}, SHIFT(958), - [9098] = {.count = 1, .reusable = false}, SHIFT(959), - [9100] = {.count = 1, .reusable = true}, SHIFT(4249), - [9102] = {.count = 1, .reusable = true}, SHIFT(4250), - [9104] = {.count = 1, .reusable = false}, SHIFT(4250), - [9106] = {.count = 1, .reusable = true}, SHIFT(4251), - [9108] = {.count = 1, .reusable = false}, SHIFT(4251), - [9110] = {.count = 1, .reusable = true}, SHIFT(4252), - [9112] = {.count = 1, .reusable = false}, SHIFT(4252), - [9114] = {.count = 1, .reusable = true}, SHIFT(4253), - [9116] = {.count = 1, .reusable = true}, SHIFT(4254), - [9118] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3727), - [9121] = {.count = 1, .reusable = true}, SHIFT(4255), - [9123] = {.count = 1, .reusable = false}, SHIFT(4255), - [9125] = {.count = 1, .reusable = true}, SHIFT(4257), - [9127] = {.count = 1, .reusable = false}, SHIFT(4257), - [9129] = {.count = 1, .reusable = true}, SHIFT(4258), - [9131] = {.count = 1, .reusable = true}, SHIFT(4259), - [9133] = {.count = 1, .reusable = true}, SHIFT(4261), - [9135] = {.count = 1, .reusable = false}, SHIFT(972), - [9137] = {.count = 1, .reusable = false}, SHIFT(973), - [9139] = {.count = 1, .reusable = true}, SHIFT(4263), - [9141] = {.count = 1, .reusable = true}, SHIFT(4264), - [9143] = {.count = 1, .reusable = false}, SHIFT(4264), - [9145] = {.count = 1, .reusable = true}, SHIFT(4265), - [9147] = {.count = 1, .reusable = true}, SHIFT(4266), - [9149] = {.count = 1, .reusable = true}, SHIFT(4267), - [9151] = {.count = 1, .reusable = true}, SHIFT(4269), - [9153] = {.count = 1, .reusable = true}, SHIFT(4268), - [9155] = {.count = 1, .reusable = false}, SHIFT(4271), - [9157] = {.count = 1, .reusable = false}, SHIFT(4272), - [9159] = {.count = 1, .reusable = false}, SHIFT(4270), - [9161] = {.count = 1, .reusable = true}, SHIFT(4273), - [9163] = {.count = 1, .reusable = false}, SHIFT(4274), - [9165] = {.count = 1, .reusable = false}, SHIFT(4275), - [9167] = {.count = 1, .reusable = true}, SHIFT(4276), - [9169] = {.count = 1, .reusable = true}, SHIFT(4275), - [9171] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3770), - [9174] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_reference_declarator, 2), - [9176] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [9178] = {.count = 1, .reusable = true}, SHIFT(4280), - [9180] = {.count = 1, .reusable = true}, SHIFT(4281), - [9182] = {.count = 1, .reusable = true}, SHIFT(4282), - [9184] = {.count = 1, .reusable = true}, SHIFT(4283), - [9186] = {.count = 1, .reusable = false}, SHIFT(4283), - [9188] = {.count = 1, .reusable = true}, SHIFT(4284), - [9190] = {.count = 1, .reusable = true}, SHIFT(4285), - [9192] = {.count = 1, .reusable = false}, SHIFT(4286), - [9194] = {.count = 1, .reusable = true}, SHIFT(4287), - [9196] = {.count = 1, .reusable = false}, SHIFT(4288), - [9198] = {.count = 1, .reusable = true}, SHIFT(4289), - [9200] = {.count = 1, .reusable = false}, SHIFT(3799), - [9202] = {.count = 1, .reusable = true}, SHIFT(3803), - [9204] = {.count = 1, .reusable = false}, SHIFT(3804), - [9206] = {.count = 1, .reusable = false}, SHIFT(3798), - [9208] = {.count = 1, .reusable = false}, SHIFT(3805), - [9210] = {.count = 1, .reusable = true}, SHIFT(3798), - [9212] = {.count = 1, .reusable = false}, SHIFT(3802), - [9214] = {.count = 1, .reusable = false}, SHIFT(3797), - [9216] = {.count = 1, .reusable = true}, SHIFT(3800), - [9218] = {.count = 1, .reusable = false}, SHIFT(3801), - [9220] = {.count = 1, .reusable = true}, SHIFT(3807), - [9222] = {.count = 1, .reusable = true}, SHIFT(4291), - [9224] = {.count = 1, .reusable = false}, SHIFT(4291), - [9226] = {.count = 1, .reusable = true}, SHIFT(4290), - [9228] = {.count = 1, .reusable = true}, SHIFT(4294), - [9230] = {.count = 1, .reusable = false}, SHIFT(4294), - [9232] = {.count = 1, .reusable = true}, SHIFT(4295), - [9234] = {.count = 1, .reusable = false}, SHIFT(4295), - [9236] = {.count = 1, .reusable = true}, SHIFT(4296), - [9238] = {.count = 1, .reusable = false}, SHIFT(4296), - [9240] = {.count = 1, .reusable = true}, SHIFT(4297), - [9242] = {.count = 1, .reusable = false}, SHIFT(4297), - [9244] = {.count = 1, .reusable = true}, SHIFT(4298), - [9246] = {.count = 1, .reusable = false}, SHIFT(4298), - [9248] = {.count = 1, .reusable = true}, SHIFT(4299), - [9250] = {.count = 1, .reusable = false}, SHIFT(4299), - [9252] = {.count = 1, .reusable = true}, SHIFT(4300), - [9254] = {.count = 1, .reusable = false}, SHIFT(4300), - [9256] = {.count = 1, .reusable = true}, SHIFT(4301), - [9258] = {.count = 1, .reusable = false}, SHIFT(4301), - [9260] = {.count = 1, .reusable = true}, SHIFT(4302), - [9262] = {.count = 1, .reusable = false}, SHIFT(4302), - [9264] = {.count = 1, .reusable = true}, SHIFT(4303), - [9266] = {.count = 1, .reusable = false}, SHIFT(4303), - [9268] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3809), - [9271] = {.count = 1, .reusable = true}, SHIFT(4305), - [9273] = {.count = 1, .reusable = false}, SHIFT(4305), - [9275] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(328), - [9278] = {.count = 1, .reusable = true}, SHIFT(4306), - [9280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3824), - [9283] = {.count = 1, .reusable = true}, SHIFT(4310), - [9285] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3829), - [9288] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [9290] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 5), - [9292] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [9294] = {.count = 1, .reusable = false}, SHIFT(4314), - [9296] = {.count = 1, .reusable = true}, SHIFT(4316), - [9298] = {.count = 1, .reusable = false}, SHIFT(4318), - [9300] = {.count = 1, .reusable = true}, SHIFT(4320), - [9302] = {.count = 1, .reusable = true}, SHIFT(4321), - [9304] = {.count = 1, .reusable = true}, SHIFT(4323), - [9306] = {.count = 1, .reusable = true}, SHIFT(4326), - [9308] = {.count = 1, .reusable = false}, SHIFT(4326), - [9310] = {.count = 1, .reusable = true}, SHIFT(4325), - [9312] = {.count = 1, .reusable = true}, SHIFT(4328), - [9314] = {.count = 1, .reusable = false}, SHIFT(4328), - [9316] = {.count = 1, .reusable = true}, SHIFT(4329), - [9318] = {.count = 1, .reusable = true}, SHIFT(4330), - [9320] = {.count = 1, .reusable = true}, SHIFT(4331), - [9322] = {.count = 1, .reusable = true}, SHIFT(4332), - [9324] = {.count = 1, .reusable = true}, SHIFT(4334), - [9326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), - [9329] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3091), - [9332] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3091), - [9335] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3), - [9338] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3076), - [9341] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5), - [9344] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6), - [9347] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3077), - [9350] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3078), - [9353] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3079), - [9356] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), - [9359] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3080), - [9362] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), - [9365] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), - [9368] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(283), - [9371] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), - [9374] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [9376] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), - [9379] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3081), - [9382] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), - [9385] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(66), - [9388] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(20), - [9391] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(278), - [9394] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3082), - [9397] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(68), - [9400] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [9402] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [9405] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(276), - [9408] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [9411] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3083), - [9414] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3084), - [9417] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3085), - [9420] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3086), - [9423] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(36), - [9426] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), - [9429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [9432] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3087), - [9435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3088), - [9438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3089), - [9441] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(69), - [9444] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3090), - [9447] = {.count = 1, .reusable = true}, SHIFT(4336), - [9449] = {.count = 1, .reusable = true}, SHIFT(4338), - [9451] = {.count = 1, .reusable = false}, SHIFT(4338), - [9453] = {.count = 1, .reusable = true}, SHIFT(4337), - [9455] = {.count = 1, .reusable = true}, SHIFT(4339), - [9457] = {.count = 1, .reusable = true}, SHIFT(4340), - [9459] = {.count = 1, .reusable = false}, SHIFT(4340), - [9461] = {.count = 1, .reusable = true}, SHIFT(4341), - [9463] = {.count = 1, .reusable = false}, SHIFT(4341), - [9465] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(3104), - [9468] = {.count = 1, .reusable = false}, SHIFT(4343), - [9470] = {.count = 1, .reusable = false}, SHIFT(4346), - [9472] = {.count = 1, .reusable = false}, SHIFT(4345), - [9474] = {.count = 1, .reusable = false}, SHIFT(4344), - [9476] = {.count = 1, .reusable = false}, SHIFT(4347), - [9478] = {.count = 1, .reusable = true}, SHIFT(4349), - [9480] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [9482] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [8706] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), + [8708] = {.count = 1, .reusable = false}, SHIFT(4057), + [8710] = {.count = 1, .reusable = true}, SHIFT(4058), + [8712] = {.count = 1, .reusable = true}, SHIFT(4061), + [8714] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [8716] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [8718] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2448), + [8721] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [8723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2451), + [8726] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2452), + [8729] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2453), + [8732] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2454), + [8735] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2455), + [8738] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2456), + [8741] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2457), + [8744] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2458), + [8747] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2460), + [8750] = {.count = 1, .reusable = true}, SHIFT(4062), + [8752] = {.count = 1, .reusable = true}, SHIFT(4063), + [8754] = {.count = 1, .reusable = false}, SHIFT(4063), + [8756] = {.count = 1, .reusable = true}, SHIFT(4064), + [8758] = {.count = 1, .reusable = true}, SHIFT(4065), + [8760] = {.count = 1, .reusable = true}, SHIFT(4068), + [8762] = {.count = 1, .reusable = true}, SHIFT(4069), + [8764] = {.count = 1, .reusable = true}, SHIFT(4070), + [8766] = {.count = 1, .reusable = true}, SHIFT(4074), + [8768] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [8770] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [8772] = {.count = 1, .reusable = true}, SHIFT(4076), + [8774] = {.count = 1, .reusable = true}, SHIFT(4077), + [8776] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [8778] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [8780] = {.count = 1, .reusable = true}, SHIFT(4078), + [8782] = {.count = 1, .reusable = false}, SHIFT(4078), + [8784] = {.count = 1, .reusable = true}, SHIFT(4080), + [8786] = {.count = 1, .reusable = true}, SHIFT(4081), + [8788] = {.count = 1, .reusable = true}, SHIFT(4084), + [8790] = {.count = 1, .reusable = false}, SHIFT(4085), + [8792] = {.count = 1, .reusable = false}, SHIFT(4086), + [8794] = {.count = 1, .reusable = true}, SHIFT(4087), + [8796] = {.count = 1, .reusable = true}, SHIFT(4086), + [8798] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3439), + [8801] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2487), + [8804] = {.count = 1, .reusable = true}, REDUCE(sym_inline_method_definition, 4), + [8806] = {.count = 1, .reusable = false}, REDUCE(sym_inline_method_definition, 4), + [8808] = {.count = 1, .reusable = true}, SHIFT(4091), + [8810] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), + [8812] = {.count = 1, .reusable = true}, SHIFT(4092), + [8814] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), + [8816] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [8818] = {.count = 1, .reusable = true}, SHIFT(4093), + [8820] = {.count = 1, .reusable = true}, SHIFT(4095), + [8822] = {.count = 1, .reusable = false}, SHIFT(4095), + [8824] = {.count = 1, .reusable = true}, SHIFT(4094), + [8826] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [8828] = {.count = 1, .reusable = false}, SHIFT(4097), + [8830] = {.count = 1, .reusable = false}, SHIFT(4098), + [8832] = {.count = 1, .reusable = false}, SHIFT(4096), + [8834] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 3), + [8836] = {.count = 1, .reusable = true}, SHIFT(4099), + [8838] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(2502), + [8841] = {.count = 1, .reusable = false}, SHIFT(4103), + [8843] = {.count = 1, .reusable = false}, SHIFT(4104), + [8845] = {.count = 1, .reusable = false}, SHIFT(4102), + [8847] = {.count = 1, .reusable = true}, SHIFT(4105), + [8849] = {.count = 1, .reusable = true}, SHIFT(4106), + [8851] = {.count = 1, .reusable = true}, SHIFT(4111), + [8853] = {.count = 1, .reusable = true}, SHIFT(4112), + [8855] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 5), + [8857] = {.count = 1, .reusable = true}, SHIFT(4116), + [8859] = {.count = 1, .reusable = true}, SHIFT(686), + [8861] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5), + [8863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3497), + [8866] = {.count = 1, .reusable = true}, SHIFT(4120), + [8868] = {.count = 1, .reusable = true}, REDUCE(sym_new_declarator, 4), + [8870] = {.count = 1, .reusable = false}, REDUCE(sym_new_declarator, 4), + [8872] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [8874] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [8876] = {.count = 1, .reusable = true}, SHIFT(4122), + [8878] = {.count = 1, .reusable = false}, SHIFT(4122), + [8880] = {.count = 1, .reusable = true}, SHIFT(4124), + [8882] = {.count = 1, .reusable = true}, SHIFT(4127), + [8884] = {.count = 1, .reusable = false}, SHIFT(4127), + [8886] = {.count = 1, .reusable = true}, SHIFT(4128), + [8888] = {.count = 1, .reusable = true}, SHIFT(4130), + [8890] = {.count = 1, .reusable = false}, SHIFT(4130), + [8892] = {.count = 1, .reusable = false}, SHIFT(748), + [8894] = {.count = 1, .reusable = true}, SHIFT(4131), + [8896] = {.count = 1, .reusable = true}, SHIFT(4132), + [8898] = {.count = 1, .reusable = true}, SHIFT(4133), + [8900] = {.count = 1, .reusable = true}, SHIFT(4134), + [8902] = {.count = 1, .reusable = true}, SHIFT(4137), + [8904] = {.count = 1, .reusable = true}, SHIFT(4144), + [8906] = {.count = 1, .reusable = true}, SHIFT(4145), + [8908] = {.count = 1, .reusable = true}, SHIFT(4151), + [8910] = {.count = 1, .reusable = true}, SHIFT(4153), + [8912] = {.count = 1, .reusable = false}, SHIFT(4153), + [8914] = {.count = 1, .reusable = true}, SHIFT(4154), + [8916] = {.count = 1, .reusable = true}, SHIFT(4155), + [8918] = {.count = 1, .reusable = true}, SHIFT(4160), + [8920] = {.count = 1, .reusable = true}, SHIFT(4161), + [8922] = {.count = 1, .reusable = true}, SHIFT(4164), + [8924] = {.count = 1, .reusable = true}, SHIFT(4166), + [8926] = {.count = 1, .reusable = false}, SHIFT(4166), + [8928] = {.count = 1, .reusable = true}, SHIFT(4167), + [8930] = {.count = 1, .reusable = true}, SHIFT(4168), + [8932] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3594), + [8935] = {.count = 1, .reusable = true}, SHIFT(4169), + [8937] = {.count = 1, .reusable = false}, SHIFT(4169), + [8939] = {.count = 1, .reusable = true}, SHIFT(4170), + [8941] = {.count = 1, .reusable = false}, SHIFT(4170), + [8943] = {.count = 1, .reusable = true}, SHIFT(4171), + [8945] = {.count = 1, .reusable = false}, SHIFT(823), + [8947] = {.count = 1, .reusable = false}, SHIFT(824), + [8949] = {.count = 1, .reusable = true}, SHIFT(4172), + [8951] = {.count = 1, .reusable = true}, SHIFT(4173), + [8953] = {.count = 1, .reusable = false}, SHIFT(4173), + [8955] = {.count = 1, .reusable = true}, SHIFT(4175), + [8957] = {.count = 1, .reusable = false}, SHIFT(4175), + [8959] = {.count = 1, .reusable = true}, SHIFT(4174), + [8961] = {.count = 1, .reusable = true}, SHIFT(4178), + [8963] = {.count = 1, .reusable = false}, SHIFT(4178), + [8965] = {.count = 1, .reusable = true}, SHIFT(4179), + [8967] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [8969] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [8971] = {.count = 1, .reusable = false}, SHIFT(4181), + [8973] = {.count = 1, .reusable = true}, SHIFT(4183), + [8975] = {.count = 1, .reusable = true}, SHIFT(4185), + [8977] = {.count = 1, .reusable = false}, SHIFT(4185), + [8979] = {.count = 1, .reusable = true}, SHIFT(4186), + [8981] = {.count = 1, .reusable = true}, SHIFT(4187), + [8983] = {.count = 1, .reusable = false}, SHIFT(4188), + [8985] = {.count = 1, .reusable = true}, SHIFT(4190), + [8987] = {.count = 1, .reusable = true}, SHIFT(4192), + [8989] = {.count = 1, .reusable = true}, SHIFT(4193), + [8991] = {.count = 1, .reusable = true}, SHIFT(4194), + [8993] = {.count = 1, .reusable = false}, SHIFT(4196), + [8995] = {.count = 1, .reusable = true}, REDUCE(sym_optional_type_parameter_declaration, 4, .alias_sequence_id = 2), + [8997] = {.count = 1, .reusable = true}, SHIFT(4197), + [8999] = {.count = 1, .reusable = true}, SHIFT(4199), + [9001] = {.count = 1, .reusable = true}, SHIFT(4198), + [9003] = {.count = 1, .reusable = true}, REDUCE(sym_optional_parameter_declaration, 4), + [9005] = {.count = 1, .reusable = false}, SHIFT(4202), + [9007] = {.count = 1, .reusable = false}, SHIFT(4203), + [9009] = {.count = 1, .reusable = false}, SHIFT(4201), + [9011] = {.count = 1, .reusable = true}, SHIFT(4204), + [9013] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3651), + [9016] = {.count = 1, .reusable = true}, SHIFT(4208), + [9018] = {.count = 1, .reusable = true}, SHIFT(4210), + [9020] = {.count = 1, .reusable = false}, SHIFT(4210), + [9022] = {.count = 1, .reusable = false}, SHIFT(890), + [9024] = {.count = 1, .reusable = true}, SHIFT(4211), + [9026] = {.count = 1, .reusable = true}, SHIFT(4212), + [9028] = {.count = 1, .reusable = false}, SHIFT(4212), + [9030] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [9032] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 4), + [9034] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [9036] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(2843), + [9039] = {.count = 1, .reusable = true}, SHIFT(4213), + [9041] = {.count = 1, .reusable = true}, SHIFT(4215), + [9043] = {.count = 1, .reusable = true}, SHIFT(4214), + [9045] = {.count = 1, .reusable = false}, SHIFT(4217), + [9047] = {.count = 1, .reusable = false}, SHIFT(4218), + [9049] = {.count = 1, .reusable = false}, SHIFT(4216), + [9051] = {.count = 1, .reusable = true}, SHIFT(4219), + [9053] = {.count = 1, .reusable = false}, SHIFT(4220), + [9055] = {.count = 1, .reusable = false}, SHIFT(4221), + [9057] = {.count = 1, .reusable = true}, SHIFT(4222), + [9059] = {.count = 1, .reusable = true}, SHIFT(4221), + [9061] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3682), + [9064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3684), + [9067] = {.count = 1, .reusable = true}, SHIFT(4224), + [9069] = {.count = 1, .reusable = false}, SHIFT(4224), + [9071] = {.count = 1, .reusable = true}, SHIFT(4225), + [9073] = {.count = 1, .reusable = true}, SHIFT(4226), + [9075] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3691), + [9078] = {.count = 1, .reusable = true}, SHIFT(4227), + [9080] = {.count = 1, .reusable = false}, SHIFT(4227), + [9082] = {.count = 1, .reusable = true}, SHIFT(4228), + [9084] = {.count = 1, .reusable = false}, SHIFT(4228), + [9086] = {.count = 1, .reusable = true}, SHIFT(4229), + [9088] = {.count = 1, .reusable = false}, SHIFT(941), + [9090] = {.count = 1, .reusable = false}, SHIFT(942), + [9092] = {.count = 1, .reusable = true}, SHIFT(4230), + [9094] = {.count = 1, .reusable = true}, SHIFT(4231), + [9096] = {.count = 1, .reusable = false}, SHIFT(4231), + [9098] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [9100] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 5), + [9102] = {.count = 1, .reusable = true}, SHIFT(4234), + [9104] = {.count = 1, .reusable = false}, SHIFT(4234), + [9106] = {.count = 1, .reusable = true}, SHIFT(4235), + [9108] = {.count = 1, .reusable = false}, SHIFT(4235), + [9110] = {.count = 1, .reusable = true}, SHIFT(4236), + [9112] = {.count = 1, .reusable = true}, SHIFT(4237), + [9114] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3721), + [9117] = {.count = 1, .reusable = true}, SHIFT(4238), + [9119] = {.count = 1, .reusable = false}, SHIFT(4238), + [9121] = {.count = 1, .reusable = true}, SHIFT(4240), + [9123] = {.count = 1, .reusable = false}, SHIFT(4240), + [9125] = {.count = 1, .reusable = true}, SHIFT(4241), + [9127] = {.count = 1, .reusable = true}, SHIFT(4242), + [9129] = {.count = 1, .reusable = true}, SHIFT(4244), + [9131] = {.count = 1, .reusable = false}, SHIFT(998), + [9133] = {.count = 1, .reusable = false}, SHIFT(999), + [9135] = {.count = 1, .reusable = true}, SHIFT(4246), + [9137] = {.count = 1, .reusable = true}, SHIFT(4247), + [9139] = {.count = 1, .reusable = false}, SHIFT(4247), + [9141] = {.count = 1, .reusable = true}, SHIFT(4248), + [9143] = {.count = 1, .reusable = true}, SHIFT(4249), + [9145] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_reference_declarator, 2), + [9147] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [9149] = {.count = 1, .reusable = true}, SHIFT(4252), + [9151] = {.count = 1, .reusable = true}, SHIFT(4253), + [9153] = {.count = 1, .reusable = true}, SHIFT(4254), + [9155] = {.count = 1, .reusable = true}, SHIFT(4255), + [9157] = {.count = 1, .reusable = false}, SHIFT(4255), + [9159] = {.count = 1, .reusable = true}, SHIFT(4256), + [9161] = {.count = 1, .reusable = true}, SHIFT(4257), + [9163] = {.count = 1, .reusable = false}, SHIFT(4258), + [9165] = {.count = 1, .reusable = true}, SHIFT(4259), + [9167] = {.count = 1, .reusable = false}, SHIFT(4260), + [9169] = {.count = 1, .reusable = true}, SHIFT(4261), + [9171] = {.count = 1, .reusable = false}, SHIFT(3774), + [9173] = {.count = 1, .reusable = true}, SHIFT(3778), + [9175] = {.count = 1, .reusable = false}, SHIFT(3779), + [9177] = {.count = 1, .reusable = false}, SHIFT(3773), + [9179] = {.count = 1, .reusable = false}, SHIFT(3780), + [9181] = {.count = 1, .reusable = true}, SHIFT(3773), + [9183] = {.count = 1, .reusable = false}, SHIFT(3777), + [9185] = {.count = 1, .reusable = false}, SHIFT(3772), + [9187] = {.count = 1, .reusable = true}, SHIFT(3775), + [9189] = {.count = 1, .reusable = false}, SHIFT(3776), + [9191] = {.count = 1, .reusable = true}, SHIFT(3782), + [9193] = {.count = 1, .reusable = true}, SHIFT(4263), + [9195] = {.count = 1, .reusable = false}, SHIFT(4263), + [9197] = {.count = 1, .reusable = true}, SHIFT(4262), + [9199] = {.count = 1, .reusable = true}, SHIFT(4266), + [9201] = {.count = 1, .reusable = false}, SHIFT(4266), + [9203] = {.count = 1, .reusable = true}, SHIFT(4267), + [9205] = {.count = 1, .reusable = false}, SHIFT(4267), + [9207] = {.count = 1, .reusable = true}, SHIFT(4268), + [9209] = {.count = 1, .reusable = false}, SHIFT(4268), + [9211] = {.count = 1, .reusable = true}, SHIFT(4269), + [9213] = {.count = 1, .reusable = false}, SHIFT(4269), + [9215] = {.count = 1, .reusable = true}, SHIFT(4270), + [9217] = {.count = 1, .reusable = false}, SHIFT(4270), + [9219] = {.count = 1, .reusable = true}, SHIFT(4271), + [9221] = {.count = 1, .reusable = false}, SHIFT(4271), + [9223] = {.count = 1, .reusable = true}, SHIFT(4272), + [9225] = {.count = 1, .reusable = false}, SHIFT(4272), + [9227] = {.count = 1, .reusable = true}, SHIFT(4273), + [9229] = {.count = 1, .reusable = false}, SHIFT(4273), + [9231] = {.count = 1, .reusable = true}, SHIFT(4274), + [9233] = {.count = 1, .reusable = false}, SHIFT(4274), + [9235] = {.count = 1, .reusable = true}, SHIFT(4275), + [9237] = {.count = 1, .reusable = false}, SHIFT(4275), + [9239] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3784), + [9242] = {.count = 1, .reusable = true}, SHIFT(4277), + [9244] = {.count = 1, .reusable = false}, SHIFT(4277), + [9246] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(342), + [9249] = {.count = 1, .reusable = true}, SHIFT(4278), + [9251] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3799), + [9254] = {.count = 1, .reusable = true}, SHIFT(4282), + [9256] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [9258] = {.count = 1, .reusable = false}, SHIFT(4284), + [9260] = {.count = 1, .reusable = true}, SHIFT(4286), + [9262] = {.count = 1, .reusable = false}, SHIFT(4288), + [9264] = {.count = 1, .reusable = false}, SHIFT(4289), + [9266] = {.count = 1, .reusable = true}, SHIFT(4291), + [9268] = {.count = 1, .reusable = true}, SHIFT(4292), + [9270] = {.count = 1, .reusable = true}, SHIFT(4294), + [9272] = {.count = 1, .reusable = true}, SHIFT(4297), + [9274] = {.count = 1, .reusable = false}, SHIFT(4297), + [9276] = {.count = 1, .reusable = true}, SHIFT(4296), + [9278] = {.count = 1, .reusable = true}, SHIFT(4299), + [9280] = {.count = 1, .reusable = false}, SHIFT(4299), + [9282] = {.count = 1, .reusable = true}, SHIFT(4300), + [9284] = {.count = 1, .reusable = true}, SHIFT(4301), + [9286] = {.count = 1, .reusable = true}, SHIFT(4302), + [9288] = {.count = 1, .reusable = true}, SHIFT(4303), + [9290] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), + [9293] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3070), + [9296] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3070), + [9299] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3), + [9302] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3052), + [9305] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5), + [9308] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6), + [9311] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3053), + [9314] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3054), + [9317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3055), + [9320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), + [9323] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3056), + [9326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [9329] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), + [9332] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(281), + [9335] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), + [9338] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [9340] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), + [9343] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3057), + [9346] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), + [9349] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(66), + [9352] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(20), + [9355] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(280), + [9358] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3058), + [9361] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(69), + [9364] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [9366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [9369] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(277), + [9372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [9375] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3059), + [9378] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3060), + [9381] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3061), + [9384] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3062), + [9387] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(36), + [9390] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(68), + [9393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [9396] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3063), + [9399] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3064), + [9402] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3065), + [9405] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(70), + [9408] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3066), + [9411] = {.count = 1, .reusable = false}, SHIFT(4305), + [9413] = {.count = 1, .reusable = true}, SHIFT(4306), + [9415] = {.count = 1, .reusable = true}, SHIFT(4308), + [9417] = {.count = 1, .reusable = true}, SHIFT(4310), + [9419] = {.count = 1, .reusable = false}, SHIFT(4310), + [9421] = {.count = 1, .reusable = true}, SHIFT(4309), + [9423] = {.count = 1, .reusable = true}, SHIFT(4311), + [9425] = {.count = 1, .reusable = true}, SHIFT(4312), + [9427] = {.count = 1, .reusable = false}, SHIFT(4312), + [9429] = {.count = 1, .reusable = true}, SHIFT(4313), + [9431] = {.count = 1, .reusable = false}, SHIFT(4313), + [9433] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(3082), + [9436] = {.count = 1, .reusable = false}, SHIFT(4315), + [9438] = {.count = 1, .reusable = false}, SHIFT(4318), + [9440] = {.count = 1, .reusable = false}, SHIFT(4317), + [9442] = {.count = 1, .reusable = false}, SHIFT(4316), + [9444] = {.count = 1, .reusable = false}, SHIFT(4319), + [9446] = {.count = 1, .reusable = true}, SHIFT(4321), + [9448] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [9450] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [9452] = {.count = 1, .reusable = true}, SHIFT(4322), + [9454] = {.count = 1, .reusable = false}, SHIFT(4322), + [9456] = {.count = 1, .reusable = false}, SHIFT(1091), + [9458] = {.count = 1, .reusable = true}, SHIFT(4323), + [9460] = {.count = 1, .reusable = true}, SHIFT(4324), + [9462] = {.count = 1, .reusable = true}, SHIFT(4325), + [9464] = {.count = 1, .reusable = true}, SHIFT(4326), + [9466] = {.count = 1, .reusable = true}, SHIFT(4329), + [9468] = {.count = 1, .reusable = true}, SHIFT(4336), + [9470] = {.count = 1, .reusable = true}, SHIFT(4337), + [9472] = {.count = 1, .reusable = true}, SHIFT(4343), + [9474] = {.count = 1, .reusable = true}, SHIFT(4345), + [9476] = {.count = 1, .reusable = false}, SHIFT(4345), + [9478] = {.count = 1, .reusable = true}, SHIFT(4346), + [9480] = {.count = 1, .reusable = true}, SHIFT(4347), + [9482] = {.count = 1, .reusable = true}, SHIFT(4348), [9484] = {.count = 1, .reusable = true}, SHIFT(4350), - [9486] = {.count = 1, .reusable = false}, SHIFT(4350), - [9488] = {.count = 1, .reusable = false}, SHIFT(1095), - [9490] = {.count = 1, .reusable = true}, SHIFT(4351), - [9492] = {.count = 1, .reusable = true}, SHIFT(4352), - [9494] = {.count = 1, .reusable = true}, SHIFT(4353), - [9496] = {.count = 1, .reusable = true}, SHIFT(4354), - [9498] = {.count = 1, .reusable = true}, SHIFT(4357), - [9500] = {.count = 1, .reusable = true}, SHIFT(4364), - [9502] = {.count = 1, .reusable = true}, SHIFT(4365), - [9504] = {.count = 1, .reusable = true}, SHIFT(4371), - [9506] = {.count = 1, .reusable = true}, SHIFT(4373), - [9508] = {.count = 1, .reusable = false}, SHIFT(4373), - [9510] = {.count = 1, .reusable = true}, SHIFT(4374), - [9512] = {.count = 1, .reusable = true}, SHIFT(4375), - [9514] = {.count = 1, .reusable = true}, SHIFT(4376), - [9516] = {.count = 1, .reusable = true}, SHIFT(4378), - [9518] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3933), - [9521] = {.count = 1, .reusable = true}, SHIFT(4379), - [9523] = {.count = 1, .reusable = false}, SHIFT(4379), - [9525] = {.count = 1, .reusable = false}, SHIFT(1192), - [9527] = {.count = 1, .reusable = true}, SHIFT(4380), - [9529] = {.count = 1, .reusable = true}, SHIFT(4381), - [9531] = {.count = 1, .reusable = false}, SHIFT(4381), - [9533] = {.count = 1, .reusable = true}, SHIFT(4382), - [9535] = {.count = 1, .reusable = true}, SHIFT(4383), - [9537] = {.count = 1, .reusable = true}, SHIFT(4385), - [9539] = {.count = 1, .reusable = true}, SHIFT(4386), - [9541] = {.count = 1, .reusable = true}, SHIFT(4387), - [9543] = {.count = 1, .reusable = true}, SHIFT(4388), - [9545] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(3297), - [9548] = {.count = 1, .reusable = true}, SHIFT(4391), - [9550] = {.count = 1, .reusable = false}, SHIFT(4391), - [9552] = {.count = 1, .reusable = true}, SHIFT(4390), - [9554] = {.count = 1, .reusable = true}, SHIFT(4392), - [9556] = {.count = 1, .reusable = true}, SHIFT(4393), - [9558] = {.count = 1, .reusable = false}, SHIFT(4393), - [9560] = {.count = 1, .reusable = true}, SHIFT(4394), - [9562] = {.count = 1, .reusable = false}, SHIFT(4394), - [9564] = {.count = 1, .reusable = false}, SHIFT(4395), - [9566] = {.count = 1, .reusable = false}, SHIFT(4398), - [9568] = {.count = 1, .reusable = false}, SHIFT(4397), - [9570] = {.count = 1, .reusable = false}, SHIFT(4396), - [9572] = {.count = 1, .reusable = false}, SHIFT(4399), - [9574] = {.count = 1, .reusable = true}, SHIFT(4401), - [9576] = {.count = 1, .reusable = true}, SHIFT(4402), - [9578] = {.count = 1, .reusable = false}, SHIFT(4402), - [9580] = {.count = 1, .reusable = true}, SHIFT(4404), - [9582] = {.count = 1, .reusable = true}, SHIFT(4405), - [9584] = {.count = 1, .reusable = true}, SHIFT(4406), - [9586] = {.count = 1, .reusable = true}, SHIFT(4408), - [9588] = {.count = 1, .reusable = true}, SHIFT(4410), - [9590] = {.count = 1, .reusable = false}, SHIFT(4410), - [9592] = {.count = 1, .reusable = true}, SHIFT(4411), - [9594] = {.count = 1, .reusable = true}, SHIFT(4412), - [9596] = {.count = 1, .reusable = false}, SHIFT(4413), - [9598] = {.count = 1, .reusable = true}, SHIFT(4415), - [9600] = {.count = 1, .reusable = true}, SHIFT(4417), - [9602] = {.count = 1, .reusable = true}, SHIFT(4418), - [9604] = {.count = 1, .reusable = false}, SHIFT(4419), - [9606] = {.count = 1, .reusable = true}, SHIFT(4421), - [9608] = {.count = 1, .reusable = true}, SHIFT(1329), - [9610] = {.count = 1, .reusable = true}, SHIFT(4422), - [9612] = {.count = 1, .reusable = true}, SHIFT(4424), - [9614] = {.count = 1, .reusable = false}, SHIFT(4424), - [9616] = {.count = 1, .reusable = true}, SHIFT(4426), - [9618] = {.count = 1, .reusable = false}, SHIFT(4426), - [9620] = {.count = 1, .reusable = true}, SHIFT(4425), - [9622] = {.count = 1, .reusable = true}, SHIFT(4429), - [9624] = {.count = 1, .reusable = false}, SHIFT(4429), - [9626] = {.count = 1, .reusable = true}, SHIFT(4430), - [9628] = {.count = 1, .reusable = false}, SHIFT(4431), - [9630] = {.count = 1, .reusable = true}, SHIFT(1382), + [9486] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3908), + [9489] = {.count = 1, .reusable = true}, SHIFT(4351), + [9491] = {.count = 1, .reusable = false}, SHIFT(4351), + [9493] = {.count = 1, .reusable = false}, SHIFT(1188), + [9495] = {.count = 1, .reusable = true}, SHIFT(4352), + [9497] = {.count = 1, .reusable = true}, SHIFT(4353), + [9499] = {.count = 1, .reusable = false}, SHIFT(4353), + [9501] = {.count = 1, .reusable = true}, SHIFT(4354), + [9503] = {.count = 1, .reusable = true}, SHIFT(4355), + [9505] = {.count = 1, .reusable = true}, SHIFT(4357), + [9507] = {.count = 1, .reusable = true}, SHIFT(4358), + [9509] = {.count = 1, .reusable = true}, SHIFT(4359), + [9511] = {.count = 1, .reusable = true}, SHIFT(4360), + [9513] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(3275), + [9516] = {.count = 1, .reusable = true}, SHIFT(4363), + [9518] = {.count = 1, .reusable = false}, SHIFT(4363), + [9520] = {.count = 1, .reusable = true}, SHIFT(4362), + [9522] = {.count = 1, .reusable = true}, SHIFT(4364), + [9524] = {.count = 1, .reusable = true}, SHIFT(4365), + [9526] = {.count = 1, .reusable = false}, SHIFT(4365), + [9528] = {.count = 1, .reusable = true}, SHIFT(4366), + [9530] = {.count = 1, .reusable = false}, SHIFT(4366), + [9532] = {.count = 1, .reusable = false}, SHIFT(4367), + [9534] = {.count = 1, .reusable = false}, SHIFT(4370), + [9536] = {.count = 1, .reusable = false}, SHIFT(4369), + [9538] = {.count = 1, .reusable = false}, SHIFT(4368), + [9540] = {.count = 1, .reusable = false}, SHIFT(4371), + [9542] = {.count = 1, .reusable = true}, SHIFT(4373), + [9544] = {.count = 1, .reusable = true}, SHIFT(4374), + [9546] = {.count = 1, .reusable = false}, SHIFT(4374), + [9548] = {.count = 1, .reusable = true}, SHIFT(4376), + [9550] = {.count = 1, .reusable = true}, SHIFT(4377), + [9552] = {.count = 1, .reusable = true}, SHIFT(4379), + [9554] = {.count = 1, .reusable = true}, SHIFT(4381), + [9556] = {.count = 1, .reusable = false}, SHIFT(4381), + [9558] = {.count = 1, .reusable = true}, SHIFT(4382), + [9560] = {.count = 1, .reusable = true}, SHIFT(4383), + [9562] = {.count = 1, .reusable = false}, SHIFT(4384), + [9564] = {.count = 1, .reusable = true}, SHIFT(4386), + [9566] = {.count = 1, .reusable = true}, SHIFT(4388), + [9568] = {.count = 1, .reusable = true}, SHIFT(4389), + [9570] = {.count = 1, .reusable = false}, SHIFT(4390), + [9572] = {.count = 1, .reusable = true}, SHIFT(4392), + [9574] = {.count = 1, .reusable = true}, SHIFT(1324), + [9576] = {.count = 1, .reusable = true}, SHIFT(4393), + [9578] = {.count = 1, .reusable = true}, SHIFT(4395), + [9580] = {.count = 1, .reusable = false}, SHIFT(4395), + [9582] = {.count = 1, .reusable = true}, SHIFT(4397), + [9584] = {.count = 1, .reusable = false}, SHIFT(4397), + [9586] = {.count = 1, .reusable = true}, SHIFT(4396), + [9588] = {.count = 1, .reusable = true}, SHIFT(4400), + [9590] = {.count = 1, .reusable = false}, SHIFT(4400), + [9592] = {.count = 1, .reusable = true}, SHIFT(4401), + [9594] = {.count = 1, .reusable = false}, SHIFT(4402), + [9596] = {.count = 1, .reusable = true}, SHIFT(1377), + [9598] = {.count = 1, .reusable = true}, SHIFT(4405), + [9600] = {.count = 1, .reusable = true}, SHIFT(4406), + [9602] = {.count = 1, .reusable = true}, SHIFT(4407), + [9604] = {.count = 1, .reusable = true}, SHIFT(4409), + [9606] = {.count = 1, .reusable = true}, SHIFT(4411), + [9608] = {.count = 1, .reusable = true}, SHIFT(4412), + [9610] = {.count = 1, .reusable = true}, SHIFT(4413), + [9612] = {.count = 1, .reusable = false}, SHIFT(4414), + [9614] = {.count = 1, .reusable = false}, SHIFT(4417), + [9616] = {.count = 1, .reusable = false}, SHIFT(4419), + [9618] = {.count = 1, .reusable = true}, SHIFT(4422), + [9620] = {.count = 1, .reusable = true}, SHIFT(4423), + [9622] = {.count = 1, .reusable = true}, SHIFT(4425), + [9624] = {.count = 1, .reusable = true}, SHIFT(4426), + [9626] = {.count = 1, .reusable = true}, SHIFT(4427), + [9628] = {.count = 1, .reusable = true}, SHIFT(4429), + [9630] = {.count = 1, .reusable = false}, SHIFT(4433), [9632] = {.count = 1, .reusable = true}, SHIFT(4434), - [9634] = {.count = 1, .reusable = true}, SHIFT(4435), - [9636] = {.count = 1, .reusable = true}, SHIFT(4436), - [9638] = {.count = 1, .reusable = true}, SHIFT(4438), - [9640] = {.count = 1, .reusable = true}, SHIFT(4440), - [9642] = {.count = 1, .reusable = true}, SHIFT(4441), - [9644] = {.count = 1, .reusable = true}, SHIFT(4442), - [9646] = {.count = 1, .reusable = false}, SHIFT(4443), - [9648] = {.count = 1, .reusable = false}, SHIFT(4446), - [9650] = {.count = 1, .reusable = false}, SHIFT(4448), - [9652] = {.count = 1, .reusable = true}, SHIFT(4451), - [9654] = {.count = 1, .reusable = true}, SHIFT(4452), - [9656] = {.count = 1, .reusable = true}, SHIFT(4453), - [9658] = {.count = 1, .reusable = true}, SHIFT(4455), - [9660] = {.count = 1, .reusable = true}, SHIFT(4457), - [9662] = {.count = 1, .reusable = true}, SHIFT(4458), - [9664] = {.count = 1, .reusable = false}, SHIFT(4462), - [9666] = {.count = 1, .reusable = true}, SHIFT(4463), - [9668] = {.count = 1, .reusable = true}, SHIFT(4467), - [9670] = {.count = 1, .reusable = false}, SHIFT(4467), - [9672] = {.count = 1, .reusable = true}, SHIFT(4468), - [9674] = {.count = 1, .reusable = true}, SHIFT(4469), - [9676] = {.count = 1, .reusable = true}, SHIFT(4472), - [9678] = {.count = 1, .reusable = true}, SHIFT(4473), - [9680] = {.count = 1, .reusable = true}, SHIFT(4474), - [9682] = {.count = 1, .reusable = true}, SHIFT(4477), - [9684] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3399), - [9687] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3400), - [9690] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3401), - [9693] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3402), - [9696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3403), - [9699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3404), - [9702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3405), - [9705] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3406), - [9708] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3407), - [9711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3408), - [9714] = {.count = 1, .reusable = false}, SHIFT(4478), - [9716] = {.count = 1, .reusable = true}, SHIFT(4478), - [9718] = {.count = 1, .reusable = true}, SHIFT(4481), - [9720] = {.count = 1, .reusable = false}, SHIFT(4483), - [9722] = {.count = 1, .reusable = true}, SHIFT(4483), - [9724] = {.count = 1, .reusable = true}, SHIFT(4485), - [9726] = {.count = 1, .reusable = false}, SHIFT(4485), - [9728] = {.count = 1, .reusable = true}, SHIFT(4488), - [9730] = {.count = 1, .reusable = true}, SHIFT(4487), - [9732] = {.count = 1, .reusable = true}, SHIFT(4490), - [9734] = {.count = 1, .reusable = true}, SHIFT(4492), - [9736] = {.count = 1, .reusable = true}, SHIFT(4495), - [9738] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), - [9740] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), - [9742] = {.count = 1, .reusable = true}, SHIFT(4497), - [9744] = {.count = 1, .reusable = true}, SHIFT(4498), - [9746] = {.count = 1, .reusable = false}, SHIFT(4499), - [9748] = {.count = 1, .reusable = false}, SHIFT(4501), - [9750] = {.count = 1, .reusable = true}, SHIFT(4502), - [9752] = {.count = 1, .reusable = true}, SHIFT(4503), - [9754] = {.count = 1, .reusable = true}, SHIFT(4504), - [9756] = {.count = 1, .reusable = true}, SHIFT(4505), - [9758] = {.count = 1, .reusable = true}, SHIFT(4506), - [9760] = {.count = 1, .reusable = true}, SHIFT(4507), - [9762] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [9764] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [9766] = {.count = 1, .reusable = true}, SHIFT(4509), - [9768] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [9770] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [9772] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [9774] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [9776] = {.count = 1, .reusable = true}, SHIFT(4510), - [9778] = {.count = 1, .reusable = true}, SHIFT(4511), - [9780] = {.count = 1, .reusable = false}, SHIFT(4511), - [9782] = {.count = 1, .reusable = true}, SHIFT(4513), - [9784] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4115), - [9787] = {.count = 1, .reusable = true}, SHIFT(4517), - [9789] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [9791] = {.count = 1, .reusable = true}, SHIFT(4519), - [9793] = {.count = 1, .reusable = false}, SHIFT(4520), - [9795] = {.count = 1, .reusable = false}, SHIFT(4521), - [9797] = {.count = 1, .reusable = true}, SHIFT(4522), - [9799] = {.count = 1, .reusable = true}, SHIFT(4521), - [9801] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4128), - [9804] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3483), - [9807] = {.count = 1, .reusable = true}, SHIFT(4525), - [9809] = {.count = 1, .reusable = false}, SHIFT(4526), - [9811] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4134), - [9814] = {.count = 1, .reusable = true}, SHIFT(4528), - [9816] = {.count = 1, .reusable = true}, SHIFT(4531), - [9818] = {.count = 1, .reusable = true}, SHIFT(4532), - [9820] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [9822] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [9824] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3534), - [9827] = {.count = 1, .reusable = true}, SHIFT(4534), - [9829] = {.count = 1, .reusable = false}, REDUCE(sym_for_range_loop, 7), - [9831] = {.count = 1, .reusable = true}, REDUCE(sym_for_range_loop, 7), - [9833] = {.count = 1, .reusable = true}, SHIFT(4536), - [9835] = {.count = 1, .reusable = true}, SHIFT(4541), - [9837] = {.count = 1, .reusable = true}, SHIFT(4542), - [9839] = {.count = 1, .reusable = true}, SHIFT(1643), - [9841] = {.count = 1, .reusable = true}, SHIFT(4546), - [9843] = {.count = 1, .reusable = true}, SHIFT(4547), - [9845] = {.count = 1, .reusable = false}, SHIFT(4547), - [9847] = {.count = 1, .reusable = false}, SHIFT(1733), - [9849] = {.count = 1, .reusable = true}, SHIFT(4548), - [9851] = {.count = 1, .reusable = true}, SHIFT(4549), - [9853] = {.count = 1, .reusable = false}, SHIFT(4549), - [9855] = {.count = 1, .reusable = true}, SHIFT(4551), - [9857] = {.count = 1, .reusable = false}, SHIFT(4551), - [9859] = {.count = 1, .reusable = true}, SHIFT(4550), - [9861] = {.count = 1, .reusable = true}, SHIFT(4552), - [9863] = {.count = 1, .reusable = true}, SHIFT(4553), - [9865] = {.count = 1, .reusable = true}, SHIFT(4555), - [9867] = {.count = 1, .reusable = true}, SHIFT(4556), - [9869] = {.count = 1, .reusable = false}, SHIFT(4556), - [9871] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [9873] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [9875] = {.count = 1, .reusable = true}, SHIFT(4559), - [9877] = {.count = 1, .reusable = true}, SHIFT(4561), - [9879] = {.count = 1, .reusable = false}, SHIFT(4561), - [9881] = {.count = 1, .reusable = true}, SHIFT(4564), - [9883] = {.count = 1, .reusable = false}, SHIFT(4564), - [9885] = {.count = 1, .reusable = true}, SHIFT(4563), - [9887] = {.count = 1, .reusable = true}, SHIFT(4567), - [9889] = {.count = 1, .reusable = false}, SHIFT(4567), - [9891] = {.count = 1, .reusable = true}, SHIFT(4568), - [9893] = {.count = 1, .reusable = true}, SHIFT(4570), - [9895] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4226), - [9898] = {.count = 1, .reusable = false}, SHIFT(4572), - [9900] = {.count = 1, .reusable = false}, SHIFT(4573), - [9902] = {.count = 1, .reusable = false}, SHIFT(4571), - [9904] = {.count = 1, .reusable = true}, SHIFT(4574), - [9906] = {.count = 1, .reusable = false}, SHIFT(4575), - [9908] = {.count = 1, .reusable = false}, SHIFT(4576), - [9910] = {.count = 1, .reusable = true}, SHIFT(4577), - [9912] = {.count = 1, .reusable = true}, SHIFT(4576), - [9914] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4234), - [9917] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3677), - [9920] = {.count = 1, .reusable = true}, SHIFT(4582), - [9922] = {.count = 1, .reusable = true}, SHIFT(4583), - [9924] = {.count = 1, .reusable = true}, SHIFT(1845), - [9926] = {.count = 1, .reusable = true}, SHIFT(4584), - [9928] = {.count = 1, .reusable = false}, SHIFT(4584), - [9930] = {.count = 1, .reusable = false}, SHIFT(1894), - [9932] = {.count = 1, .reusable = true}, SHIFT(4585), - [9934] = {.count = 1, .reusable = true}, SHIFT(4586), - [9936] = {.count = 1, .reusable = false}, SHIFT(4586), - [9938] = {.count = 1, .reusable = true}, SHIFT(4587), - [9940] = {.count = 1, .reusable = false}, SHIFT(4587), - [9942] = {.count = 1, .reusable = false}, SHIFT(1929), - [9944] = {.count = 1, .reusable = true}, SHIFT(4588), - [9946] = {.count = 1, .reusable = true}, SHIFT(4589), - [9948] = {.count = 1, .reusable = false}, SHIFT(4589), - [9950] = {.count = 1, .reusable = true}, SHIFT(4590), - [9952] = {.count = 1, .reusable = true}, SHIFT(4591), - [9954] = {.count = 1, .reusable = false}, SHIFT(4593), - [9956] = {.count = 1, .reusable = false}, SHIFT(4594), - [9958] = {.count = 1, .reusable = false}, SHIFT(4592), - [9960] = {.count = 1, .reusable = true}, SHIFT(4595), - [9962] = {.count = 1, .reusable = false}, SHIFT(4596), - [9964] = {.count = 1, .reusable = false}, SHIFT(4597), - [9966] = {.count = 1, .reusable = true}, SHIFT(4598), - [9968] = {.count = 1, .reusable = true}, SHIFT(4597), - [9970] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4273), - [9973] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3765), - [9976] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4274), - [9979] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(997), - [9982] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(997), - [9985] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), - [9987] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4280), - [9990] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(997), - [9993] = {.count = 2, .reusable = false}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(997), - [9996] = {.count = 1, .reusable = false}, SHIFT(2010), - [9998] = {.count = 1, .reusable = false}, SHIFT(3016), - [10000] = {.count = 1, .reusable = true}, SHIFT(4602), - [10002] = {.count = 1, .reusable = false}, SHIFT(4602), - [10004] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4286), - [10007] = {.count = 1, .reusable = true}, SHIFT(4603), - [10009] = {.count = 1, .reusable = false}, SHIFT(4603), - [10011] = {.count = 1, .reusable = true}, SHIFT(4604), - [10013] = {.count = 1, .reusable = false}, SHIFT(4604), - [10015] = {.count = 1, .reusable = true}, SHIFT(4605), - [10017] = {.count = 1, .reusable = true}, SHIFT(4606), - [10019] = {.count = 1, .reusable = true}, SHIFT(4607), - [10021] = {.count = 1, .reusable = true}, SHIFT(4608), - [10023] = {.count = 1, .reusable = true}, SHIFT(4609), - [10025] = {.count = 1, .reusable = false}, SHIFT(4609), - [10027] = {.count = 1, .reusable = true}, SHIFT(4612), - [10029] = {.count = 1, .reusable = true}, SHIFT(4613), - [10031] = {.count = 1, .reusable = true}, SHIFT(4615), - [10033] = {.count = 1, .reusable = true}, SHIFT(4617), - [10035] = {.count = 1, .reusable = false}, SHIFT(4323), - [10037] = {.count = 1, .reusable = true}, SHIFT(4622), - [10039] = {.count = 1, .reusable = false}, SHIFT(4622), - [10041] = {.count = 1, .reusable = true}, SHIFT(4621), - [10043] = {.count = 1, .reusable = true}, SHIFT(4623), - [10045] = {.count = 1, .reusable = true}, SHIFT(4624), - [10047] = {.count = 1, .reusable = true}, SHIFT(4625), - [10049] = {.count = 1, .reusable = true}, SHIFT(4626), - [10051] = {.count = 1, .reusable = false}, SHIFT(4626), - [10053] = {.count = 1, .reusable = true}, SHIFT(4627), - [10055] = {.count = 1, .reusable = true}, SHIFT(4629), - [10057] = {.count = 1, .reusable = true}, SHIFT(4632), - [10059] = {.count = 1, .reusable = true}, SHIFT(4634), - [10061] = {.count = 1, .reusable = false}, SHIFT(4634), - [10063] = {.count = 1, .reusable = true}, SHIFT(4635), - [10065] = {.count = 1, .reusable = true}, SHIFT(4636), - [10067] = {.count = 1, .reusable = false}, SHIFT(4637), - [10069] = {.count = 1, .reusable = true}, SHIFT(4639), - [10071] = {.count = 1, .reusable = true}, SHIFT(4641), - [10073] = {.count = 1, .reusable = true}, SHIFT(4642), - [10075] = {.count = 1, .reusable = false}, SHIFT(4643), - [10077] = {.count = 1, .reusable = true}, SHIFT(4645), - [10079] = {.count = 1, .reusable = true}, SHIFT(4650), - [10081] = {.count = 1, .reusable = true}, SHIFT(4651), - [10083] = {.count = 1, .reusable = true}, SHIFT(2142), - [10085] = {.count = 1, .reusable = true}, SHIFT(2246), - [10087] = {.count = 1, .reusable = true}, SHIFT(4655), - [10089] = {.count = 1, .reusable = true}, SHIFT(4657), - [10091] = {.count = 1, .reusable = true}, SHIFT(4659), - [10093] = {.count = 1, .reusable = false}, SHIFT(4659), - [10095] = {.count = 1, .reusable = true}, SHIFT(4660), - [10097] = {.count = 1, .reusable = true}, SHIFT(4661), - [10099] = {.count = 1, .reusable = false}, SHIFT(4662), - [10101] = {.count = 1, .reusable = true}, SHIFT(4664), - [10103] = {.count = 1, .reusable = true}, SHIFT(4666), - [10105] = {.count = 1, .reusable = true}, SHIFT(4667), - [10107] = {.count = 1, .reusable = false}, SHIFT(4668), - [10109] = {.count = 1, .reusable = true}, SHIFT(4670), - [10111] = {.count = 1, .reusable = true}, SHIFT(4672), - [10113] = {.count = 1, .reusable = true}, SHIFT(4674), - [10115] = {.count = 1, .reusable = false}, SHIFT(4674), - [10117] = {.count = 1, .reusable = true}, SHIFT(4677), - [10119] = {.count = 1, .reusable = false}, SHIFT(4677), - [10121] = {.count = 1, .reusable = true}, SHIFT(4676), - [10123] = {.count = 1, .reusable = true}, SHIFT(4680), - [10125] = {.count = 1, .reusable = false}, SHIFT(4680), - [10127] = {.count = 1, .reusable = true}, SHIFT(4681), - [10129] = {.count = 1, .reusable = false}, SHIFT(4683), - [10131] = {.count = 1, .reusable = true}, SHIFT(4684), - [10133] = {.count = 1, .reusable = true}, SHIFT(4687), - [10135] = {.count = 1, .reusable = false}, SHIFT(4687), - [10137] = {.count = 1, .reusable = true}, SHIFT(4686), - [10139] = {.count = 1, .reusable = true}, SHIFT(4688), - [10141] = {.count = 1, .reusable = true}, SHIFT(4689), - [10143] = {.count = 1, .reusable = true}, SHIFT(4691), - [10145] = {.count = 1, .reusable = true}, SHIFT(4692), - [10147] = {.count = 1, .reusable = false}, SHIFT(4692), - [10149] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4434), - [10152] = {.count = 1, .reusable = true}, SHIFT(4693), - [10154] = {.count = 1, .reusable = true}, SHIFT(4694), - [10156] = {.count = 1, .reusable = false}, SHIFT(4696), - [10158] = {.count = 1, .reusable = true}, SHIFT(4696), - [10160] = {.count = 1, .reusable = true}, SHIFT(4699), - [10162] = {.count = 1, .reusable = false}, SHIFT(4701), - [10164] = {.count = 1, .reusable = true}, SHIFT(4701), - [10166] = {.count = 1, .reusable = true}, SHIFT(4703), - [10168] = {.count = 1, .reusable = false}, SHIFT(4703), - [10170] = {.count = 1, .reusable = true}, SHIFT(4706), - [10172] = {.count = 1, .reusable = true}, SHIFT(4705), - [10174] = {.count = 1, .reusable = true}, SHIFT(4708), - [10176] = {.count = 1, .reusable = true}, SHIFT(4710), - [10178] = {.count = 1, .reusable = true}, SHIFT(4713), - [10180] = {.count = 1, .reusable = true}, SHIFT(4714), - [10182] = {.count = 1, .reusable = true}, SHIFT(4715), - [10184] = {.count = 1, .reusable = false}, SHIFT(4716), - [10186] = {.count = 1, .reusable = false}, SHIFT(4718), - [10188] = {.count = 1, .reusable = true}, SHIFT(4719), - [10190] = {.count = 1, .reusable = true}, SHIFT(4720), - [10192] = {.count = 1, .reusable = true}, SHIFT(4721), - [10194] = {.count = 1, .reusable = true}, SHIFT(4722), - [10196] = {.count = 1, .reusable = true}, SHIFT(4723), - [10198] = {.count = 1, .reusable = true}, SHIFT(4724), - [10200] = {.count = 1, .reusable = true}, SHIFT(4726), - [10202] = {.count = 1, .reusable = true}, SHIFT(4727), - [10204] = {.count = 1, .reusable = true}, SHIFT(4729), - [10206] = {.count = 1, .reusable = true}, SHIFT(4730), - [10208] = {.count = 1, .reusable = true}, SHIFT(4731), - [10210] = {.count = 1, .reusable = false}, SHIFT(4731), - [10212] = {.count = 1, .reusable = true}, SHIFT(4733), - [10214] = {.count = 1, .reusable = true}, SHIFT(4734), - [10216] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), - [10218] = {.count = 1, .reusable = true}, SHIFT(4737), - [10220] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), - [10222] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), - [10224] = {.count = 1, .reusable = true}, SHIFT(4739), - [10226] = {.count = 1, .reusable = true}, SHIFT(4742), - [10228] = {.count = 1, .reusable = true}, SHIFT(4743), - [10230] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [10232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4520), - [10235] = {.count = 1, .reusable = true}, SHIFT(4747), - [10237] = {.count = 1, .reusable = true}, SHIFT(4749), - [10239] = {.count = 1, .reusable = false}, SHIFT(4749), - [10241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4526), - [10244] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4531), - [10247] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [10249] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [10251] = {.count = 1, .reusable = true}, SHIFT(4752), - [10253] = {.count = 1, .reusable = true}, SHIFT(4753), - [10255] = {.count = 1, .reusable = true}, SHIFT(2762), - [10257] = {.count = 1, .reusable = true}, SHIFT(4755), - [10259] = {.count = 1, .reusable = false}, SHIFT(4755), - [10261] = {.count = 1, .reusable = true}, SHIFT(4754), - [10263] = {.count = 1, .reusable = true}, SHIFT(4756), - [10265] = {.count = 1, .reusable = true}, SHIFT(4757), - [10267] = {.count = 1, .reusable = false}, SHIFT(4757), - [10269] = {.count = 1, .reusable = true}, SHIFT(4758), - [10271] = {.count = 1, .reusable = false}, SHIFT(4758), - [10273] = {.count = 1, .reusable = true}, SHIFT(4760), - [10275] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 8), - [10277] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 8), - [10279] = {.count = 1, .reusable = true}, SHIFT(4762), - [10281] = {.count = 1, .reusable = true}, SHIFT(4765), - [10283] = {.count = 1, .reusable = false}, SHIFT(4765), - [10285] = {.count = 1, .reusable = true}, SHIFT(4764), - [10287] = {.count = 1, .reusable = true}, SHIFT(4766), - [10289] = {.count = 1, .reusable = true}, SHIFT(4767), - [10291] = {.count = 1, .reusable = true}, SHIFT(4769), - [10293] = {.count = 1, .reusable = true}, SHIFT(4770), - [10295] = {.count = 1, .reusable = false}, SHIFT(4770), - [10297] = {.count = 1, .reusable = false}, SHIFT(4772), - [10299] = {.count = 1, .reusable = false}, SHIFT(4773), - [10301] = {.count = 1, .reusable = true}, SHIFT(4774), - [10303] = {.count = 1, .reusable = true}, SHIFT(4773), - [10305] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4574), - [10308] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4228), - [10311] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4575), - [10314] = {.count = 1, .reusable = true}, SHIFT(4780), - [10316] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4582), - [10319] = {.count = 1, .reusable = true}, SHIFT(2893), - [10321] = {.count = 1, .reusable = true}, SHIFT(2938), - [10323] = {.count = 1, .reusable = false}, SHIFT(4782), - [10325] = {.count = 1, .reusable = false}, SHIFT(4783), - [10327] = {.count = 1, .reusable = true}, SHIFT(4784), - [10329] = {.count = 1, .reusable = true}, SHIFT(4783), - [10331] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4595), - [10334] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4268), - [10337] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4596), - [10340] = {.count = 1, .reusable = true}, SHIFT(4790), - [10342] = {.count = 1, .reusable = true}, SHIFT(4793), - [10344] = {.count = 1, .reusable = true}, SHIFT(4794), - [10346] = {.count = 1, .reusable = false}, SHIFT(4794), - [10348] = {.count = 1, .reusable = false}, SHIFT(3032), - [10350] = {.count = 1, .reusable = true}, SHIFT(4795), - [10352] = {.count = 1, .reusable = false}, SHIFT(4795), - [10354] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4612), - [10357] = {.count = 1, .reusable = true}, SHIFT(4796), - [10359] = {.count = 1, .reusable = true}, SHIFT(4798), - [10361] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(4323), - [10364] = {.count = 1, .reusable = true}, SHIFT(4801), - [10366] = {.count = 1, .reusable = false}, SHIFT(4801), - [10368] = {.count = 1, .reusable = true}, SHIFT(4800), - [10370] = {.count = 1, .reusable = true}, SHIFT(4802), - [10372] = {.count = 1, .reusable = true}, SHIFT(4803), - [10374] = {.count = 1, .reusable = false}, SHIFT(4803), - [10376] = {.count = 1, .reusable = true}, SHIFT(4804), - [10378] = {.count = 1, .reusable = false}, SHIFT(4804), - [10380] = {.count = 1, .reusable = false}, SHIFT(4805), - [10382] = {.count = 1, .reusable = false}, SHIFT(4808), - [10384] = {.count = 1, .reusable = false}, SHIFT(4807), - [10386] = {.count = 1, .reusable = false}, SHIFT(4806), - [10388] = {.count = 1, .reusable = false}, SHIFT(4809), - [10390] = {.count = 1, .reusable = true}, SHIFT(4811), - [10392] = {.count = 1, .reusable = true}, SHIFT(4812), - [10394] = {.count = 1, .reusable = false}, SHIFT(4812), - [10396] = {.count = 1, .reusable = true}, SHIFT(4814), - [10398] = {.count = 1, .reusable = true}, SHIFT(4816), - [10400] = {.count = 1, .reusable = true}, SHIFT(4818), - [10402] = {.count = 1, .reusable = false}, SHIFT(4818), - [10404] = {.count = 1, .reusable = true}, SHIFT(4821), - [10406] = {.count = 1, .reusable = false}, SHIFT(4821), - [10408] = {.count = 1, .reusable = true}, SHIFT(4820), - [10410] = {.count = 1, .reusable = true}, SHIFT(4824), - [10412] = {.count = 1, .reusable = false}, SHIFT(4824), - [10414] = {.count = 1, .reusable = true}, SHIFT(4825), - [10416] = {.count = 1, .reusable = false}, SHIFT(4827), - [10418] = {.count = 1, .reusable = true}, SHIFT(4828), - [10420] = {.count = 1, .reusable = true}, SHIFT(4830), - [10422] = {.count = 1, .reusable = true}, SHIFT(4832), - [10424] = {.count = 1, .reusable = false}, SHIFT(4832), - [10426] = {.count = 1, .reusable = true}, SHIFT(4835), - [10428] = {.count = 1, .reusable = false}, SHIFT(4835), - [10430] = {.count = 1, .reusable = true}, SHIFT(4834), - [10432] = {.count = 1, .reusable = true}, SHIFT(4838), - [10434] = {.count = 1, .reusable = false}, SHIFT(4838), - [10436] = {.count = 1, .reusable = true}, SHIFT(4839), - [10438] = {.count = 1, .reusable = false}, SHIFT(4841), - [10440] = {.count = 1, .reusable = true}, SHIFT(4843), - [10442] = {.count = 1, .reusable = true}, SHIFT(4846), - [10444] = {.count = 1, .reusable = false}, SHIFT(4846), - [10446] = {.count = 1, .reusable = true}, SHIFT(4845), - [10448] = {.count = 1, .reusable = true}, SHIFT(4847), - [10450] = {.count = 1, .reusable = true}, SHIFT(4848), - [10452] = {.count = 1, .reusable = true}, SHIFT(4850), - [10454] = {.count = 1, .reusable = true}, SHIFT(4851), - [10456] = {.count = 1, .reusable = false}, SHIFT(4851), - [10458] = {.count = 1, .reusable = true}, SHIFT(4853), - [10460] = {.count = 1, .reusable = true}, SHIFT(4855), - [10462] = {.count = 1, .reusable = false}, SHIFT(4855), - [10464] = {.count = 1, .reusable = true}, SHIFT(4854), - [10466] = {.count = 1, .reusable = true}, SHIFT(4856), - [10468] = {.count = 1, .reusable = true}, SHIFT(4857), - [10470] = {.count = 1, .reusable = false}, SHIFT(4857), - [10472] = {.count = 1, .reusable = true}, SHIFT(4858), - [10474] = {.count = 1, .reusable = false}, SHIFT(4858), - [10476] = {.count = 1, .reusable = true}, SHIFT(4860), - [10478] = {.count = 1, .reusable = true}, SHIFT(4861), - [10480] = {.count = 1, .reusable = true}, SHIFT(4862), - [10482] = {.count = 1, .reusable = true}, SHIFT(4863), - [10484] = {.count = 1, .reusable = true}, SHIFT(4865), - [10486] = {.count = 1, .reusable = true}, SHIFT(4866), - [10488] = {.count = 1, .reusable = true}, SHIFT(4867), - [10490] = {.count = 1, .reusable = false}, SHIFT(4867), - [10492] = {.count = 1, .reusable = true}, SHIFT(4869), - [10494] = {.count = 1, .reusable = true}, SHIFT(4870), - [10496] = {.count = 1, .reusable = true}, SHIFT(4873), - [10498] = {.count = 1, .reusable = true}, SHIFT(4875), - [10500] = {.count = 1, .reusable = true}, SHIFT(4876), - [10502] = {.count = 1, .reusable = true}, SHIFT(4877), - [10504] = {.count = 1, .reusable = false}, SHIFT(4877), - [10506] = {.count = 1, .reusable = true}, SHIFT(4879), - [10508] = {.count = 1, .reusable = true}, SHIFT(4880), - [10510] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 7), - [10512] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 7), - [10514] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4742), - [10517] = {.count = 1, .reusable = true}, SHIFT(4883), - [10519] = {.count = 1, .reusable = true}, SHIFT(4884), - [10521] = {.count = 1, .reusable = true}, SHIFT(4885), - [10523] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [10525] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [10527] = {.count = 1, .reusable = true}, SHIFT(4887), - [10529] = {.count = 1, .reusable = true}, SHIFT(4889), - [10531] = {.count = 1, .reusable = false}, SHIFT(4889), - [10533] = {.count = 1, .reusable = true}, SHIFT(4890), - [10535] = {.count = 1, .reusable = true}, SHIFT(4891), - [10537] = {.count = 1, .reusable = false}, SHIFT(4892), - [10539] = {.count = 1, .reusable = true}, SHIFT(4895), - [10541] = {.count = 1, .reusable = true}, SHIFT(4897), - [10543] = {.count = 1, .reusable = false}, SHIFT(4897), - [10545] = {.count = 1, .reusable = true}, SHIFT(4896), - [10547] = {.count = 1, .reusable = true}, SHIFT(4898), - [10549] = {.count = 1, .reusable = true}, SHIFT(4899), - [10551] = {.count = 1, .reusable = false}, SHIFT(4899), - [10553] = {.count = 1, .reusable = true}, SHIFT(4900), - [10555] = {.count = 1, .reusable = false}, SHIFT(4900), - [10557] = {.count = 1, .reusable = true}, SHIFT(4902), - [10559] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4772), - [10562] = {.count = 1, .reusable = true}, SHIFT(4906), - [10564] = {.count = 1, .reusable = true}, SHIFT(4910), - [10566] = {.count = 1, .reusable = true}, SHIFT(4911), - [10568] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4782), - [10571] = {.count = 1, .reusable = true}, SHIFT(4915), - [10573] = {.count = 1, .reusable = true}, SHIFT(4919), - [10575] = {.count = 1, .reusable = true}, SHIFT(4920), - [10577] = {.count = 1, .reusable = true}, SHIFT(3806), - [10579] = {.count = 1, .reusable = true}, SHIFT(4921), - [10581] = {.count = 1, .reusable = true}, SHIFT(4923), - [10583] = {.count = 1, .reusable = true}, SHIFT(4925), - [10585] = {.count = 1, .reusable = false}, SHIFT(4925), - [10587] = {.count = 1, .reusable = true}, SHIFT(4926), - [10589] = {.count = 1, .reusable = true}, SHIFT(4927), - [10591] = {.count = 1, .reusable = false}, SHIFT(4928), - [10593] = {.count = 1, .reusable = true}, SHIFT(4930), - [10595] = {.count = 1, .reusable = true}, SHIFT(4932), - [10597] = {.count = 1, .reusable = true}, SHIFT(4933), - [10599] = {.count = 1, .reusable = false}, SHIFT(4934), - [10601] = {.count = 1, .reusable = true}, SHIFT(4936), - [10603] = {.count = 1, .reusable = true}, SHIFT(4938), - [10605] = {.count = 1, .reusable = true}, SHIFT(4941), - [10607] = {.count = 1, .reusable = false}, SHIFT(4941), - [10609] = {.count = 1, .reusable = true}, SHIFT(4940), - [10611] = {.count = 1, .reusable = true}, SHIFT(4942), - [10613] = {.count = 1, .reusable = true}, SHIFT(4943), - [10615] = {.count = 1, .reusable = true}, SHIFT(4945), - [10617] = {.count = 1, .reusable = true}, SHIFT(4946), - [10619] = {.count = 1, .reusable = false}, SHIFT(4946), - [10621] = {.count = 1, .reusable = true}, SHIFT(4949), - [10623] = {.count = 1, .reusable = true}, SHIFT(4952), - [10625] = {.count = 1, .reusable = false}, SHIFT(4952), - [10627] = {.count = 1, .reusable = true}, SHIFT(4951), - [10629] = {.count = 1, .reusable = true}, SHIFT(4953), - [10631] = {.count = 1, .reusable = true}, SHIFT(4954), - [10633] = {.count = 1, .reusable = true}, SHIFT(4956), - [10635] = {.count = 1, .reusable = true}, SHIFT(4957), - [10637] = {.count = 1, .reusable = false}, SHIFT(4957), - [10639] = {.count = 1, .reusable = true}, SHIFT(4960), - [10641] = {.count = 1, .reusable = true}, SHIFT(4962), - [10643] = {.count = 1, .reusable = false}, SHIFT(4962), - [10645] = {.count = 1, .reusable = true}, SHIFT(4961), - [10647] = {.count = 1, .reusable = true}, SHIFT(4963), - [10649] = {.count = 1, .reusable = true}, SHIFT(4964), - [10651] = {.count = 1, .reusable = false}, SHIFT(4964), - [10653] = {.count = 1, .reusable = true}, SHIFT(4965), - [10655] = {.count = 1, .reusable = false}, SHIFT(4965), - [10657] = {.count = 1, .reusable = true}, SHIFT(4967), - [10659] = {.count = 1, .reusable = true}, SHIFT(4968), - [10661] = {.count = 1, .reusable = true}, SHIFT(4970), - [10663] = {.count = 1, .reusable = false}, SHIFT(4970), - [10665] = {.count = 1, .reusable = true}, SHIFT(4971), - [10667] = {.count = 1, .reusable = true}, SHIFT(4972), - [10669] = {.count = 1, .reusable = false}, SHIFT(4973), - [10671] = {.count = 1, .reusable = true}, SHIFT(4975), - [10673] = {.count = 1, .reusable = true}, SHIFT(4976), - [10675] = {.count = 1, .reusable = true}, SHIFT(4977), - [10677] = {.count = 1, .reusable = false}, SHIFT(4977), - [10679] = {.count = 1, .reusable = true}, SHIFT(4979), - [10681] = {.count = 1, .reusable = true}, SHIFT(4980), - [10683] = {.count = 1, .reusable = true}, SHIFT(4981), - [10685] = {.count = 1, .reusable = true}, SHIFT(4982), - [10687] = {.count = 1, .reusable = false}, SHIFT(4982), - [10689] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4883), - [10692] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 8), - [10694] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 8), - [10696] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [10698] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [10700] = {.count = 1, .reusable = true}, SHIFT(4984), - [10702] = {.count = 1, .reusable = true}, SHIFT(4986), - [10704] = {.count = 1, .reusable = false}, SHIFT(4986), - [10706] = {.count = 1, .reusable = false}, SHIFT(4987), - [10708] = {.count = 1, .reusable = true}, SHIFT(4989), - [10710] = {.count = 1, .reusable = true}, SHIFT(4991), - [10712] = {.count = 1, .reusable = false}, SHIFT(4991), - [10714] = {.count = 1, .reusable = true}, SHIFT(4992), - [10716] = {.count = 1, .reusable = true}, SHIFT(4993), - [10718] = {.count = 1, .reusable = true}, SHIFT(4994), - [10720] = {.count = 1, .reusable = true}, SHIFT(4998), - [10722] = {.count = 1, .reusable = true}, SHIFT(4999), - [10724] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4910), - [10727] = {.count = 1, .reusable = true}, SHIFT(5002), - [10729] = {.count = 1, .reusable = true}, SHIFT(5003), - [10731] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4919), - [10734] = {.count = 1, .reusable = true}, SHIFT(5005), - [10736] = {.count = 1, .reusable = true}, SHIFT(5007), - [10738] = {.count = 1, .reusable = false}, SHIFT(5007), - [10740] = {.count = 1, .reusable = true}, SHIFT(5010), - [10742] = {.count = 1, .reusable = false}, SHIFT(5010), - [10744] = {.count = 1, .reusable = true}, SHIFT(5009), - [10746] = {.count = 1, .reusable = true}, SHIFT(5013), - [10748] = {.count = 1, .reusable = false}, SHIFT(5013), - [10750] = {.count = 1, .reusable = true}, SHIFT(5014), - [10752] = {.count = 1, .reusable = false}, SHIFT(5016), - [10754] = {.count = 1, .reusable = true}, SHIFT(5018), - [10756] = {.count = 1, .reusable = true}, SHIFT(5020), - [10758] = {.count = 1, .reusable = false}, SHIFT(5020), - [10760] = {.count = 1, .reusable = true}, SHIFT(5019), - [10762] = {.count = 1, .reusable = true}, SHIFT(5021), - [10764] = {.count = 1, .reusable = true}, SHIFT(5022), - [10766] = {.count = 1, .reusable = false}, SHIFT(5022), - [10768] = {.count = 1, .reusable = true}, SHIFT(5023), - [10770] = {.count = 1, .reusable = false}, SHIFT(5023), - [10772] = {.count = 1, .reusable = true}, SHIFT(5025), - [10774] = {.count = 1, .reusable = true}, SHIFT(5027), - [10776] = {.count = 1, .reusable = true}, SHIFT(5029), - [10778] = {.count = 1, .reusable = false}, SHIFT(5029), - [10780] = {.count = 1, .reusable = true}, SHIFT(5028), - [10782] = {.count = 1, .reusable = true}, SHIFT(5030), - [10784] = {.count = 1, .reusable = true}, SHIFT(5031), - [10786] = {.count = 1, .reusable = false}, SHIFT(5031), - [10788] = {.count = 1, .reusable = true}, SHIFT(5032), - [10790] = {.count = 1, .reusable = false}, SHIFT(5032), - [10792] = {.count = 1, .reusable = true}, SHIFT(5034), - [10794] = {.count = 1, .reusable = true}, SHIFT(5036), - [10796] = {.count = 1, .reusable = true}, SHIFT(5038), - [10798] = {.count = 1, .reusable = false}, SHIFT(5038), - [10800] = {.count = 1, .reusable = true}, SHIFT(5039), - [10802] = {.count = 1, .reusable = true}, SHIFT(5040), - [10804] = {.count = 1, .reusable = false}, SHIFT(5041), - [10806] = {.count = 1, .reusable = true}, SHIFT(5043), - [10808] = {.count = 1, .reusable = true}, SHIFT(5045), - [10810] = {.count = 1, .reusable = false}, SHIFT(5045), - [10812] = {.count = 1, .reusable = false}, SHIFT(5046), - [10814] = {.count = 1, .reusable = true}, SHIFT(5047), - [10816] = {.count = 1, .reusable = true}, SHIFT(5048), - [10818] = {.count = 1, .reusable = false}, SHIFT(5048), - [10820] = {.count = 1, .reusable = true}, SHIFT(5050), - [10822] = {.count = 1, .reusable = true}, SHIFT(5051), - [10824] = {.count = 1, .reusable = true}, SHIFT(5053), - [10826] = {.count = 1, .reusable = true}, SHIFT(5055), - [10828] = {.count = 1, .reusable = false}, SHIFT(5055), - [10830] = {.count = 1, .reusable = true}, SHIFT(5056), - [10832] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4998), - [10835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(5002), - [10838] = {.count = 1, .reusable = true}, SHIFT(5058), - [10840] = {.count = 1, .reusable = true}, SHIFT(5061), - [10842] = {.count = 1, .reusable = false}, SHIFT(5061), - [10844] = {.count = 1, .reusable = true}, SHIFT(5060), - [10846] = {.count = 1, .reusable = true}, SHIFT(5062), - [10848] = {.count = 1, .reusable = true}, SHIFT(5063), - [10850] = {.count = 1, .reusable = true}, SHIFT(5065), - [10852] = {.count = 1, .reusable = true}, SHIFT(5066), - [10854] = {.count = 1, .reusable = false}, SHIFT(5066), - [10856] = {.count = 1, .reusable = true}, SHIFT(5069), - [10858] = {.count = 1, .reusable = true}, SHIFT(5071), - [10860] = {.count = 1, .reusable = false}, SHIFT(5071), - [10862] = {.count = 1, .reusable = true}, SHIFT(5072), - [10864] = {.count = 1, .reusable = true}, SHIFT(5073), - [10866] = {.count = 1, .reusable = false}, SHIFT(5074), - [10868] = {.count = 1, .reusable = true}, SHIFT(5077), - [10870] = {.count = 1, .reusable = true}, SHIFT(5079), - [10872] = {.count = 1, .reusable = false}, SHIFT(5079), - [10874] = {.count = 1, .reusable = true}, SHIFT(5080), - [10876] = {.count = 1, .reusable = true}, SHIFT(5081), - [10878] = {.count = 1, .reusable = false}, SHIFT(5082), - [10880] = {.count = 1, .reusable = true}, SHIFT(5084), - [10882] = {.count = 1, .reusable = true}, SHIFT(5086), - [10884] = {.count = 1, .reusable = false}, SHIFT(5086), - [10886] = {.count = 1, .reusable = false}, SHIFT(5087), - [10888] = {.count = 1, .reusable = true}, SHIFT(5088), - [10890] = {.count = 1, .reusable = true}, SHIFT(5090), - [10892] = {.count = 1, .reusable = true}, SHIFT(5091), - [10894] = {.count = 1, .reusable = true}, SHIFT(5092), - [10896] = {.count = 1, .reusable = true}, SHIFT(5095), - [10898] = {.count = 1, .reusable = true}, SHIFT(5097), - [10900] = {.count = 1, .reusable = false}, SHIFT(5097), - [10902] = {.count = 1, .reusable = true}, SHIFT(5096), - [10904] = {.count = 1, .reusable = true}, SHIFT(5098), - [10906] = {.count = 1, .reusable = true}, SHIFT(5099), - [10908] = {.count = 1, .reusable = false}, SHIFT(5099), - [10910] = {.count = 1, .reusable = true}, SHIFT(5100), - [10912] = {.count = 1, .reusable = false}, SHIFT(5100), - [10914] = {.count = 1, .reusable = true}, SHIFT(5102), - [10916] = {.count = 1, .reusable = true}, SHIFT(5103), - [10918] = {.count = 1, .reusable = true}, SHIFT(5105), - [10920] = {.count = 1, .reusable = false}, SHIFT(5105), - [10922] = {.count = 1, .reusable = false}, SHIFT(5106), - [10924] = {.count = 1, .reusable = true}, SHIFT(5107), - [10926] = {.count = 1, .reusable = true}, SHIFT(5109), - [10928] = {.count = 1, .reusable = false}, SHIFT(5109), - [10930] = {.count = 1, .reusable = false}, SHIFT(5110), - [10932] = {.count = 1, .reusable = true}, SHIFT(5111), - [10934] = {.count = 1, .reusable = true}, SHIFT(5113), - [10936] = {.count = 1, .reusable = true}, SHIFT(5114), - [10938] = {.count = 1, .reusable = true}, SHIFT(5116), - [10940] = {.count = 1, .reusable = true}, SHIFT(5118), - [10942] = {.count = 1, .reusable = false}, SHIFT(5118), - [10944] = {.count = 1, .reusable = true}, SHIFT(5119), - [10946] = {.count = 1, .reusable = true}, SHIFT(5120), - [10948] = {.count = 1, .reusable = false}, SHIFT(5121), - [10950] = {.count = 1, .reusable = true}, SHIFT(5123), - [10952] = {.count = 1, .reusable = true}, SHIFT(5125), - [10954] = {.count = 1, .reusable = true}, SHIFT(5127), - [10956] = {.count = 1, .reusable = true}, SHIFT(5128), - [10958] = {.count = 1, .reusable = true}, SHIFT(5130), - [10960] = {.count = 1, .reusable = false}, SHIFT(5130), - [10962] = {.count = 1, .reusable = false}, SHIFT(5131), - [10964] = {.count = 1, .reusable = true}, SHIFT(5132), - [10966] = {.count = 1, .reusable = true}, SHIFT(5133), - [10968] = {.count = 1, .reusable = true}, SHIFT(5134), - [10970] = {.count = 1, .reusable = true}, SHIFT(5136), + [9634] = {.count = 1, .reusable = true}, SHIFT(4437), + [9636] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3371), + [9639] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3372), + [9642] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3373), + [9645] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3374), + [9648] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3375), + [9651] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3376), + [9654] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3377), + [9657] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3378), + [9660] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3379), + [9663] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3380), + [9666] = {.count = 1, .reusable = true}, SHIFT(4438), + [9668] = {.count = 1, .reusable = false}, SHIFT(4438), + [9670] = {.count = 1, .reusable = true}, SHIFT(4439), + [9672] = {.count = 1, .reusable = true}, SHIFT(4440), + [9674] = {.count = 1, .reusable = true}, SHIFT(4443), + [9676] = {.count = 1, .reusable = true}, SHIFT(4444), + [9678] = {.count = 1, .reusable = true}, SHIFT(4445), + [9680] = {.count = 1, .reusable = false}, SHIFT(4449), + [9682] = {.count = 1, .reusable = true}, SHIFT(4449), + [9684] = {.count = 1, .reusable = true}, SHIFT(4452), + [9686] = {.count = 1, .reusable = false}, SHIFT(4454), + [9688] = {.count = 1, .reusable = true}, SHIFT(4454), + [9690] = {.count = 1, .reusable = true}, SHIFT(4456), + [9692] = {.count = 1, .reusable = false}, SHIFT(4456), + [9694] = {.count = 1, .reusable = true}, SHIFT(4458), + [9696] = {.count = 1, .reusable = true}, SHIFT(4459), + [9698] = {.count = 1, .reusable = true}, SHIFT(4461), + [9700] = {.count = 1, .reusable = true}, SHIFT(4463), + [9702] = {.count = 1, .reusable = true}, SHIFT(4466), + [9704] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), + [9706] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), + [9708] = {.count = 1, .reusable = true}, SHIFT(4468), + [9710] = {.count = 1, .reusable = true}, SHIFT(4469), + [9712] = {.count = 1, .reusable = false}, SHIFT(4470), + [9714] = {.count = 1, .reusable = true}, SHIFT(4471), + [9716] = {.count = 1, .reusable = true}, SHIFT(4472), + [9718] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [9720] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [9722] = {.count = 1, .reusable = false}, SHIFT(4474), + [9724] = {.count = 1, .reusable = true}, SHIFT(4475), + [9726] = {.count = 1, .reusable = true}, SHIFT(4476), + [9728] = {.count = 1, .reusable = true}, SHIFT(4477), + [9730] = {.count = 1, .reusable = true}, SHIFT(4478), + [9732] = {.count = 1, .reusable = true}, SHIFT(4480), + [9734] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [9736] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [9738] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [9740] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [9742] = {.count = 1, .reusable = true}, SHIFT(4481), + [9744] = {.count = 1, .reusable = true}, SHIFT(4482), + [9746] = {.count = 1, .reusable = false}, SHIFT(4482), + [9748] = {.count = 1, .reusable = true}, SHIFT(4484), + [9750] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4085), + [9753] = {.count = 1, .reusable = true}, SHIFT(4488), + [9755] = {.count = 1, .reusable = true}, SHIFT(4490), + [9757] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [9759] = {.count = 1, .reusable = true}, SHIFT(4491), + [9761] = {.count = 1, .reusable = false}, SHIFT(4492), + [9763] = {.count = 1, .reusable = false}, SHIFT(4493), + [9765] = {.count = 1, .reusable = true}, SHIFT(4494), + [9767] = {.count = 1, .reusable = true}, SHIFT(4493), + [9769] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4099), + [9772] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3457), + [9775] = {.count = 1, .reusable = false}, SHIFT(4497), + [9777] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4105), + [9780] = {.count = 1, .reusable = true}, SHIFT(4499), + [9782] = {.count = 1, .reusable = true}, SHIFT(4502), + [9784] = {.count = 1, .reusable = true}, SHIFT(4503), + [9786] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [9788] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [9790] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3506), + [9793] = {.count = 1, .reusable = true}, SHIFT(4505), + [9795] = {.count = 1, .reusable = false}, REDUCE(sym_for_range_loop, 7), + [9797] = {.count = 1, .reusable = true}, REDUCE(sym_for_range_loop, 7), + [9799] = {.count = 1, .reusable = true}, SHIFT(4507), + [9801] = {.count = 1, .reusable = true}, SHIFT(4512), + [9803] = {.count = 1, .reusable = true}, SHIFT(4513), + [9805] = {.count = 1, .reusable = true}, SHIFT(1636), + [9807] = {.count = 1, .reusable = true}, SHIFT(4517), + [9809] = {.count = 1, .reusable = true}, SHIFT(4518), + [9811] = {.count = 1, .reusable = false}, SHIFT(4518), + [9813] = {.count = 1, .reusable = false}, SHIFT(1731), + [9815] = {.count = 1, .reusable = true}, SHIFT(4519), + [9817] = {.count = 1, .reusable = true}, SHIFT(4520), + [9819] = {.count = 1, .reusable = false}, SHIFT(4520), + [9821] = {.count = 1, .reusable = true}, SHIFT(4522), + [9823] = {.count = 1, .reusable = false}, SHIFT(4522), + [9825] = {.count = 1, .reusable = true}, SHIFT(4521), + [9827] = {.count = 1, .reusable = true}, SHIFT(4523), + [9829] = {.count = 1, .reusable = true}, SHIFT(4524), + [9831] = {.count = 1, .reusable = true}, SHIFT(4526), + [9833] = {.count = 1, .reusable = true}, SHIFT(4527), + [9835] = {.count = 1, .reusable = false}, SHIFT(4527), + [9837] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [9839] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [9841] = {.count = 1, .reusable = true}, SHIFT(4530), + [9843] = {.count = 1, .reusable = true}, SHIFT(4532), + [9845] = {.count = 1, .reusable = false}, SHIFT(4532), + [9847] = {.count = 1, .reusable = true}, SHIFT(4535), + [9849] = {.count = 1, .reusable = false}, SHIFT(4535), + [9851] = {.count = 1, .reusable = true}, SHIFT(4534), + [9853] = {.count = 1, .reusable = true}, SHIFT(4538), + [9855] = {.count = 1, .reusable = false}, SHIFT(4538), + [9857] = {.count = 1, .reusable = true}, SHIFT(4539), + [9859] = {.count = 1, .reusable = true}, SHIFT(4541), + [9861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4196), + [9864] = {.count = 1, .reusable = false}, SHIFT(4543), + [9866] = {.count = 1, .reusable = false}, SHIFT(4544), + [9868] = {.count = 1, .reusable = false}, SHIFT(4542), + [9870] = {.count = 1, .reusable = true}, SHIFT(4545), + [9872] = {.count = 1, .reusable = false}, SHIFT(4546), + [9874] = {.count = 1, .reusable = false}, SHIFT(4547), + [9876] = {.count = 1, .reusable = true}, SHIFT(4548), + [9878] = {.count = 1, .reusable = true}, SHIFT(4547), + [9880] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4204), + [9883] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3649), + [9886] = {.count = 1, .reusable = true}, SHIFT(4553), + [9888] = {.count = 1, .reusable = true}, SHIFT(4554), + [9890] = {.count = 1, .reusable = true}, SHIFT(1841), + [9892] = {.count = 1, .reusable = false}, SHIFT(4556), + [9894] = {.count = 1, .reusable = false}, SHIFT(4557), + [9896] = {.count = 1, .reusable = false}, SHIFT(4555), + [9898] = {.count = 1, .reusable = true}, SHIFT(4558), + [9900] = {.count = 1, .reusable = false}, SHIFT(4559), + [9902] = {.count = 1, .reusable = false}, SHIFT(4560), + [9904] = {.count = 1, .reusable = true}, SHIFT(4561), + [9906] = {.count = 1, .reusable = true}, SHIFT(4560), + [9908] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4219), + [9911] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3677), + [9914] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4220), + [9917] = {.count = 1, .reusable = true}, SHIFT(4565), + [9919] = {.count = 1, .reusable = false}, SHIFT(4565), + [9921] = {.count = 1, .reusable = false}, SHIFT(1898), + [9923] = {.count = 1, .reusable = true}, SHIFT(4566), + [9925] = {.count = 1, .reusable = true}, SHIFT(4567), + [9927] = {.count = 1, .reusable = false}, SHIFT(4567), + [9929] = {.count = 1, .reusable = true}, SHIFT(4568), + [9931] = {.count = 1, .reusable = false}, SHIFT(4568), + [9933] = {.count = 1, .reusable = false}, SHIFT(1963), + [9935] = {.count = 1, .reusable = true}, SHIFT(4569), + [9937] = {.count = 1, .reusable = true}, SHIFT(4570), + [9939] = {.count = 1, .reusable = false}, SHIFT(4570), + [9941] = {.count = 1, .reusable = true}, SHIFT(4571), + [9943] = {.count = 1, .reusable = true}, SHIFT(4572), + [9945] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1014), + [9948] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1014), + [9951] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [9953] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4252), + [9956] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1014), + [9959] = {.count = 2, .reusable = false}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1014), + [9962] = {.count = 1, .reusable = false}, SHIFT(2016), + [9964] = {.count = 1, .reusable = false}, SHIFT(3006), + [9966] = {.count = 1, .reusable = true}, SHIFT(4573), + [9968] = {.count = 1, .reusable = false}, SHIFT(4573), + [9970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4258), + [9973] = {.count = 1, .reusable = true}, SHIFT(4574), + [9975] = {.count = 1, .reusable = false}, SHIFT(4574), + [9977] = {.count = 1, .reusable = true}, SHIFT(4575), + [9979] = {.count = 1, .reusable = false}, SHIFT(4575), + [9981] = {.count = 1, .reusable = true}, SHIFT(4576), + [9983] = {.count = 1, .reusable = true}, SHIFT(4577), + [9985] = {.count = 1, .reusable = true}, SHIFT(4578), + [9987] = {.count = 1, .reusable = true}, SHIFT(4579), + [9989] = {.count = 1, .reusable = true}, SHIFT(4580), + [9991] = {.count = 1, .reusable = false}, SHIFT(4580), + [9993] = {.count = 1, .reusable = true}, SHIFT(4583), + [9995] = {.count = 1, .reusable = true}, SHIFT(4584), + [9997] = {.count = 1, .reusable = true}, SHIFT(4586), + [9999] = {.count = 1, .reusable = true}, SHIFT(4588), + [10001] = {.count = 1, .reusable = false}, SHIFT(4294), + [10003] = {.count = 1, .reusable = true}, SHIFT(4593), + [10005] = {.count = 1, .reusable = false}, SHIFT(4593), + [10007] = {.count = 1, .reusable = true}, SHIFT(4592), + [10009] = {.count = 1, .reusable = true}, SHIFT(4594), + [10011] = {.count = 1, .reusable = true}, SHIFT(4595), + [10013] = {.count = 1, .reusable = true}, SHIFT(4596), + [10015] = {.count = 1, .reusable = true}, SHIFT(4597), + [10017] = {.count = 1, .reusable = false}, SHIFT(4597), + [10019] = {.count = 1, .reusable = true}, SHIFT(4598), + [10021] = {.count = 1, .reusable = true}, SHIFT(4600), + [10023] = {.count = 1, .reusable = true}, SHIFT(4603), + [10025] = {.count = 1, .reusable = true}, SHIFT(4605), + [10027] = {.count = 1, .reusable = false}, SHIFT(4605), + [10029] = {.count = 1, .reusable = true}, SHIFT(4606), + [10031] = {.count = 1, .reusable = true}, SHIFT(4607), + [10033] = {.count = 1, .reusable = false}, SHIFT(4608), + [10035] = {.count = 1, .reusable = true}, SHIFT(4610), + [10037] = {.count = 1, .reusable = true}, SHIFT(4612), + [10039] = {.count = 1, .reusable = true}, SHIFT(4613), + [10041] = {.count = 1, .reusable = false}, SHIFT(4614), + [10043] = {.count = 1, .reusable = true}, SHIFT(4616), + [10045] = {.count = 1, .reusable = true}, SHIFT(4621), + [10047] = {.count = 1, .reusable = true}, SHIFT(4622), + [10049] = {.count = 1, .reusable = true}, SHIFT(2129), + [10051] = {.count = 1, .reusable = true}, SHIFT(2235), + [10053] = {.count = 1, .reusable = true}, SHIFT(4626), + [10055] = {.count = 1, .reusable = true}, SHIFT(4628), + [10057] = {.count = 1, .reusable = true}, SHIFT(4630), + [10059] = {.count = 1, .reusable = false}, SHIFT(4630), + [10061] = {.count = 1, .reusable = true}, SHIFT(4631), + [10063] = {.count = 1, .reusable = true}, SHIFT(4632), + [10065] = {.count = 1, .reusable = false}, SHIFT(4633), + [10067] = {.count = 1, .reusable = true}, SHIFT(4635), + [10069] = {.count = 1, .reusable = true}, SHIFT(4637), + [10071] = {.count = 1, .reusable = true}, SHIFT(4638), + [10073] = {.count = 1, .reusable = false}, SHIFT(4639), + [10075] = {.count = 1, .reusable = true}, SHIFT(4641), + [10077] = {.count = 1, .reusable = true}, SHIFT(4643), + [10079] = {.count = 1, .reusable = true}, SHIFT(4645), + [10081] = {.count = 1, .reusable = false}, SHIFT(4645), + [10083] = {.count = 1, .reusable = true}, SHIFT(4648), + [10085] = {.count = 1, .reusable = false}, SHIFT(4648), + [10087] = {.count = 1, .reusable = true}, SHIFT(4647), + [10089] = {.count = 1, .reusable = true}, SHIFT(4651), + [10091] = {.count = 1, .reusable = false}, SHIFT(4651), + [10093] = {.count = 1, .reusable = true}, SHIFT(4652), + [10095] = {.count = 1, .reusable = false}, SHIFT(4654), + [10097] = {.count = 1, .reusable = true}, SHIFT(4655), + [10099] = {.count = 1, .reusable = true}, SHIFT(4658), + [10101] = {.count = 1, .reusable = false}, SHIFT(4658), + [10103] = {.count = 1, .reusable = true}, SHIFT(4657), + [10105] = {.count = 1, .reusable = true}, SHIFT(4659), + [10107] = {.count = 1, .reusable = true}, SHIFT(4660), + [10109] = {.count = 1, .reusable = true}, SHIFT(4662), + [10111] = {.count = 1, .reusable = true}, SHIFT(4663), + [10113] = {.count = 1, .reusable = false}, SHIFT(4663), + [10115] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4405), + [10118] = {.count = 1, .reusable = true}, SHIFT(4664), + [10120] = {.count = 1, .reusable = true}, SHIFT(4665), + [10122] = {.count = 1, .reusable = false}, SHIFT(4667), + [10124] = {.count = 1, .reusable = true}, SHIFT(4667), + [10126] = {.count = 1, .reusable = true}, SHIFT(4670), + [10128] = {.count = 1, .reusable = false}, SHIFT(4672), + [10130] = {.count = 1, .reusable = true}, SHIFT(4672), + [10132] = {.count = 1, .reusable = true}, SHIFT(4674), + [10134] = {.count = 1, .reusable = false}, SHIFT(4674), + [10136] = {.count = 1, .reusable = true}, SHIFT(4676), + [10138] = {.count = 1, .reusable = true}, SHIFT(4677), + [10140] = {.count = 1, .reusable = true}, SHIFT(4679), + [10142] = {.count = 1, .reusable = true}, SHIFT(4681), + [10144] = {.count = 1, .reusable = true}, SHIFT(4684), + [10146] = {.count = 1, .reusable = true}, SHIFT(4685), + [10148] = {.count = 1, .reusable = true}, SHIFT(4686), + [10150] = {.count = 1, .reusable = false}, SHIFT(4687), + [10152] = {.count = 1, .reusable = true}, SHIFT(4688), + [10154] = {.count = 1, .reusable = true}, SHIFT(4689), + [10156] = {.count = 1, .reusable = false}, SHIFT(4691), + [10158] = {.count = 1, .reusable = true}, SHIFT(4692), + [10160] = {.count = 1, .reusable = true}, SHIFT(4693), + [10162] = {.count = 1, .reusable = true}, SHIFT(4694), + [10164] = {.count = 1, .reusable = true}, SHIFT(4695), + [10166] = {.count = 1, .reusable = true}, SHIFT(4697), + [10168] = {.count = 1, .reusable = true}, SHIFT(4698), + [10170] = {.count = 1, .reusable = true}, SHIFT(4700), + [10172] = {.count = 1, .reusable = true}, SHIFT(4701), + [10174] = {.count = 1, .reusable = true}, SHIFT(4702), + [10176] = {.count = 1, .reusable = false}, SHIFT(4702), + [10178] = {.count = 1, .reusable = true}, SHIFT(4704), + [10180] = {.count = 1, .reusable = true}, SHIFT(4705), + [10182] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), + [10184] = {.count = 1, .reusable = true}, SHIFT(4708), + [10186] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), + [10188] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), + [10190] = {.count = 1, .reusable = true}, SHIFT(4710), + [10192] = {.count = 1, .reusable = true}, SHIFT(4713), + [10194] = {.count = 1, .reusable = true}, SHIFT(4714), + [10196] = {.count = 1, .reusable = true}, SHIFT(4715), + [10198] = {.count = 1, .reusable = false}, SHIFT(4715), + [10200] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [10202] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4492), + [10205] = {.count = 1, .reusable = true}, SHIFT(4720), + [10207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4497), + [10210] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4502), + [10213] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [10215] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [10217] = {.count = 1, .reusable = true}, SHIFT(4723), + [10219] = {.count = 1, .reusable = true}, SHIFT(4724), + [10221] = {.count = 1, .reusable = true}, SHIFT(2747), + [10223] = {.count = 1, .reusable = true}, SHIFT(4726), + [10225] = {.count = 1, .reusable = false}, SHIFT(4726), + [10227] = {.count = 1, .reusable = true}, SHIFT(4725), + [10229] = {.count = 1, .reusable = true}, SHIFT(4727), + [10231] = {.count = 1, .reusable = true}, SHIFT(4728), + [10233] = {.count = 1, .reusable = false}, SHIFT(4728), + [10235] = {.count = 1, .reusable = true}, SHIFT(4729), + [10237] = {.count = 1, .reusable = false}, SHIFT(4729), + [10239] = {.count = 1, .reusable = true}, SHIFT(4731), + [10241] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 8), + [10243] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 8), + [10245] = {.count = 1, .reusable = true}, SHIFT(4733), + [10247] = {.count = 1, .reusable = true}, SHIFT(4736), + [10249] = {.count = 1, .reusable = false}, SHIFT(4736), + [10251] = {.count = 1, .reusable = true}, SHIFT(4735), + [10253] = {.count = 1, .reusable = true}, SHIFT(4737), + [10255] = {.count = 1, .reusable = true}, SHIFT(4738), + [10257] = {.count = 1, .reusable = true}, SHIFT(4740), + [10259] = {.count = 1, .reusable = true}, SHIFT(4741), + [10261] = {.count = 1, .reusable = false}, SHIFT(4741), + [10263] = {.count = 1, .reusable = false}, SHIFT(4743), + [10265] = {.count = 1, .reusable = false}, SHIFT(4744), + [10267] = {.count = 1, .reusable = true}, SHIFT(4745), + [10269] = {.count = 1, .reusable = true}, SHIFT(4744), + [10271] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4545), + [10274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4198), + [10277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4546), + [10280] = {.count = 1, .reusable = true}, SHIFT(4751), + [10282] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4553), + [10285] = {.count = 1, .reusable = false}, SHIFT(4753), + [10287] = {.count = 1, .reusable = false}, SHIFT(4754), + [10289] = {.count = 1, .reusable = true}, SHIFT(4755), + [10291] = {.count = 1, .reusable = true}, SHIFT(4754), + [10293] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4558), + [10296] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4214), + [10299] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4559), + [10302] = {.count = 1, .reusable = true}, SHIFT(4761), + [10304] = {.count = 1, .reusable = true}, SHIFT(2901), + [10306] = {.count = 1, .reusable = true}, SHIFT(2962), + [10308] = {.count = 1, .reusable = true}, SHIFT(4764), + [10310] = {.count = 1, .reusable = true}, SHIFT(4765), + [10312] = {.count = 1, .reusable = false}, SHIFT(4765), + [10314] = {.count = 1, .reusable = false}, SHIFT(3022), + [10316] = {.count = 1, .reusable = true}, SHIFT(4766), + [10318] = {.count = 1, .reusable = false}, SHIFT(4766), + [10320] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4583), + [10323] = {.count = 1, .reusable = true}, SHIFT(4767), + [10325] = {.count = 1, .reusable = true}, SHIFT(4769), + [10327] = {.count = 2, .reusable = false}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(4294), + [10330] = {.count = 1, .reusable = true}, SHIFT(4772), + [10332] = {.count = 1, .reusable = false}, SHIFT(4772), + [10334] = {.count = 1, .reusable = true}, SHIFT(4771), + [10336] = {.count = 1, .reusable = true}, SHIFT(4773), + [10338] = {.count = 1, .reusable = true}, SHIFT(4774), + [10340] = {.count = 1, .reusable = false}, SHIFT(4774), + [10342] = {.count = 1, .reusable = true}, SHIFT(4775), + [10344] = {.count = 1, .reusable = false}, SHIFT(4775), + [10346] = {.count = 1, .reusable = false}, SHIFT(4776), + [10348] = {.count = 1, .reusable = false}, SHIFT(4779), + [10350] = {.count = 1, .reusable = false}, SHIFT(4778), + [10352] = {.count = 1, .reusable = false}, SHIFT(4777), + [10354] = {.count = 1, .reusable = false}, SHIFT(4780), + [10356] = {.count = 1, .reusable = true}, SHIFT(4782), + [10358] = {.count = 1, .reusable = true}, SHIFT(4783), + [10360] = {.count = 1, .reusable = false}, SHIFT(4783), + [10362] = {.count = 1, .reusable = true}, SHIFT(4785), + [10364] = {.count = 1, .reusable = true}, SHIFT(4787), + [10366] = {.count = 1, .reusable = true}, SHIFT(4789), + [10368] = {.count = 1, .reusable = false}, SHIFT(4789), + [10370] = {.count = 1, .reusable = true}, SHIFT(4792), + [10372] = {.count = 1, .reusable = false}, SHIFT(4792), + [10374] = {.count = 1, .reusable = true}, SHIFT(4791), + [10376] = {.count = 1, .reusable = true}, SHIFT(4795), + [10378] = {.count = 1, .reusable = false}, SHIFT(4795), + [10380] = {.count = 1, .reusable = true}, SHIFT(4796), + [10382] = {.count = 1, .reusable = false}, SHIFT(4798), + [10384] = {.count = 1, .reusable = true}, SHIFT(4799), + [10386] = {.count = 1, .reusable = true}, SHIFT(4801), + [10388] = {.count = 1, .reusable = true}, SHIFT(4803), + [10390] = {.count = 1, .reusable = false}, SHIFT(4803), + [10392] = {.count = 1, .reusable = true}, SHIFT(4806), + [10394] = {.count = 1, .reusable = false}, SHIFT(4806), + [10396] = {.count = 1, .reusable = true}, SHIFT(4805), + [10398] = {.count = 1, .reusable = true}, SHIFT(4809), + [10400] = {.count = 1, .reusable = false}, SHIFT(4809), + [10402] = {.count = 1, .reusable = true}, SHIFT(4810), + [10404] = {.count = 1, .reusable = false}, SHIFT(4812), + [10406] = {.count = 1, .reusable = true}, SHIFT(4814), + [10408] = {.count = 1, .reusable = true}, SHIFT(4817), + [10410] = {.count = 1, .reusable = false}, SHIFT(4817), + [10412] = {.count = 1, .reusable = true}, SHIFT(4816), + [10414] = {.count = 1, .reusable = true}, SHIFT(4818), + [10416] = {.count = 1, .reusable = true}, SHIFT(4819), + [10418] = {.count = 1, .reusable = true}, SHIFT(4821), + [10420] = {.count = 1, .reusable = true}, SHIFT(4822), + [10422] = {.count = 1, .reusable = false}, SHIFT(4822), + [10424] = {.count = 1, .reusable = true}, SHIFT(4824), + [10426] = {.count = 1, .reusable = true}, SHIFT(4826), + [10428] = {.count = 1, .reusable = false}, SHIFT(4826), + [10430] = {.count = 1, .reusable = true}, SHIFT(4825), + [10432] = {.count = 1, .reusable = true}, SHIFT(4827), + [10434] = {.count = 1, .reusable = true}, SHIFT(4828), + [10436] = {.count = 1, .reusable = false}, SHIFT(4828), + [10438] = {.count = 1, .reusable = true}, SHIFT(4829), + [10440] = {.count = 1, .reusable = false}, SHIFT(4829), + [10442] = {.count = 1, .reusable = true}, SHIFT(4831), + [10444] = {.count = 1, .reusable = true}, SHIFT(4832), + [10446] = {.count = 1, .reusable = true}, SHIFT(4833), + [10448] = {.count = 1, .reusable = true}, SHIFT(4834), + [10450] = {.count = 1, .reusable = true}, SHIFT(4836), + [10452] = {.count = 1, .reusable = true}, SHIFT(4837), + [10454] = {.count = 1, .reusable = true}, SHIFT(4838), + [10456] = {.count = 1, .reusable = false}, SHIFT(4838), + [10458] = {.count = 1, .reusable = true}, SHIFT(4840), + [10460] = {.count = 1, .reusable = true}, SHIFT(4841), + [10462] = {.count = 1, .reusable = true}, SHIFT(4844), + [10464] = {.count = 1, .reusable = true}, SHIFT(4846), + [10466] = {.count = 1, .reusable = true}, SHIFT(4847), + [10468] = {.count = 1, .reusable = true}, SHIFT(4848), + [10470] = {.count = 1, .reusable = false}, SHIFT(4848), + [10472] = {.count = 1, .reusable = true}, SHIFT(4850), + [10474] = {.count = 1, .reusable = true}, SHIFT(4851), + [10476] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 7), + [10478] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 7), + [10480] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4713), + [10483] = {.count = 1, .reusable = true}, SHIFT(4852), + [10485] = {.count = 1, .reusable = true}, SHIFT(4855), + [10487] = {.count = 1, .reusable = true}, SHIFT(4856), + [10489] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [10491] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [10493] = {.count = 1, .reusable = true}, SHIFT(4858), + [10495] = {.count = 1, .reusable = true}, SHIFT(4860), + [10497] = {.count = 1, .reusable = false}, SHIFT(4860), + [10499] = {.count = 1, .reusable = true}, SHIFT(4861), + [10501] = {.count = 1, .reusable = true}, SHIFT(4862), + [10503] = {.count = 1, .reusable = false}, SHIFT(4863), + [10505] = {.count = 1, .reusable = true}, SHIFT(4866), + [10507] = {.count = 1, .reusable = true}, SHIFT(4868), + [10509] = {.count = 1, .reusable = false}, SHIFT(4868), + [10511] = {.count = 1, .reusable = true}, SHIFT(4867), + [10513] = {.count = 1, .reusable = true}, SHIFT(4869), + [10515] = {.count = 1, .reusable = true}, SHIFT(4870), + [10517] = {.count = 1, .reusable = false}, SHIFT(4870), + [10519] = {.count = 1, .reusable = true}, SHIFT(4871), + [10521] = {.count = 1, .reusable = false}, SHIFT(4871), + [10523] = {.count = 1, .reusable = true}, SHIFT(4873), + [10525] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4743), + [10528] = {.count = 1, .reusable = true}, SHIFT(4877), + [10530] = {.count = 1, .reusable = true}, SHIFT(4881), + [10532] = {.count = 1, .reusable = true}, SHIFT(4882), + [10534] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4753), + [10537] = {.count = 1, .reusable = true}, SHIFT(4886), + [10539] = {.count = 1, .reusable = true}, SHIFT(4890), + [10541] = {.count = 1, .reusable = true}, SHIFT(4891), + [10543] = {.count = 1, .reusable = true}, SHIFT(3781), + [10545] = {.count = 1, .reusable = true}, SHIFT(4892), + [10547] = {.count = 1, .reusable = true}, SHIFT(4894), + [10549] = {.count = 1, .reusable = true}, SHIFT(4896), + [10551] = {.count = 1, .reusable = false}, SHIFT(4896), + [10553] = {.count = 1, .reusable = true}, SHIFT(4897), + [10555] = {.count = 1, .reusable = true}, SHIFT(4898), + [10557] = {.count = 1, .reusable = false}, SHIFT(4899), + [10559] = {.count = 1, .reusable = true}, SHIFT(4901), + [10561] = {.count = 1, .reusable = true}, SHIFT(4903), + [10563] = {.count = 1, .reusable = true}, SHIFT(4904), + [10565] = {.count = 1, .reusable = false}, SHIFT(4905), + [10567] = {.count = 1, .reusable = true}, SHIFT(4907), + [10569] = {.count = 1, .reusable = true}, SHIFT(4909), + [10571] = {.count = 1, .reusable = true}, SHIFT(4912), + [10573] = {.count = 1, .reusable = false}, SHIFT(4912), + [10575] = {.count = 1, .reusable = true}, SHIFT(4911), + [10577] = {.count = 1, .reusable = true}, SHIFT(4913), + [10579] = {.count = 1, .reusable = true}, SHIFT(4914), + [10581] = {.count = 1, .reusable = true}, SHIFT(4916), + [10583] = {.count = 1, .reusable = true}, SHIFT(4917), + [10585] = {.count = 1, .reusable = false}, SHIFT(4917), + [10587] = {.count = 1, .reusable = true}, SHIFT(4920), + [10589] = {.count = 1, .reusable = true}, SHIFT(4923), + [10591] = {.count = 1, .reusable = false}, SHIFT(4923), + [10593] = {.count = 1, .reusable = true}, SHIFT(4922), + [10595] = {.count = 1, .reusable = true}, SHIFT(4924), + [10597] = {.count = 1, .reusable = true}, SHIFT(4925), + [10599] = {.count = 1, .reusable = true}, SHIFT(4927), + [10601] = {.count = 1, .reusable = true}, SHIFT(4928), + [10603] = {.count = 1, .reusable = false}, SHIFT(4928), + [10605] = {.count = 1, .reusable = true}, SHIFT(4931), + [10607] = {.count = 1, .reusable = true}, SHIFT(4933), + [10609] = {.count = 1, .reusable = false}, SHIFT(4933), + [10611] = {.count = 1, .reusable = true}, SHIFT(4932), + [10613] = {.count = 1, .reusable = true}, SHIFT(4934), + [10615] = {.count = 1, .reusable = true}, SHIFT(4935), + [10617] = {.count = 1, .reusable = false}, SHIFT(4935), + [10619] = {.count = 1, .reusable = true}, SHIFT(4936), + [10621] = {.count = 1, .reusable = false}, SHIFT(4936), + [10623] = {.count = 1, .reusable = true}, SHIFT(4938), + [10625] = {.count = 1, .reusable = true}, SHIFT(4939), + [10627] = {.count = 1, .reusable = true}, SHIFT(4941), + [10629] = {.count = 1, .reusable = false}, SHIFT(4941), + [10631] = {.count = 1, .reusable = true}, SHIFT(4942), + [10633] = {.count = 1, .reusable = true}, SHIFT(4943), + [10635] = {.count = 1, .reusable = false}, SHIFT(4944), + [10637] = {.count = 1, .reusable = true}, SHIFT(4946), + [10639] = {.count = 1, .reusable = true}, SHIFT(4947), + [10641] = {.count = 1, .reusable = true}, SHIFT(4948), + [10643] = {.count = 1, .reusable = false}, SHIFT(4948), + [10645] = {.count = 1, .reusable = true}, SHIFT(4950), + [10647] = {.count = 1, .reusable = true}, SHIFT(4951), + [10649] = {.count = 1, .reusable = true}, SHIFT(4952), + [10651] = {.count = 1, .reusable = true}, SHIFT(4953), + [10653] = {.count = 1, .reusable = false}, SHIFT(4953), + [10655] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 8), + [10657] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 8), + [10659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4855), + [10662] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [10664] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [10666] = {.count = 1, .reusable = true}, SHIFT(4955), + [10668] = {.count = 1, .reusable = true}, SHIFT(4957), + [10670] = {.count = 1, .reusable = false}, SHIFT(4957), + [10672] = {.count = 1, .reusable = false}, SHIFT(4958), + [10674] = {.count = 1, .reusable = true}, SHIFT(4960), + [10676] = {.count = 1, .reusable = true}, SHIFT(4962), + [10678] = {.count = 1, .reusable = false}, SHIFT(4962), + [10680] = {.count = 1, .reusable = true}, SHIFT(4963), + [10682] = {.count = 1, .reusable = true}, SHIFT(4964), + [10684] = {.count = 1, .reusable = true}, SHIFT(4965), + [10686] = {.count = 1, .reusable = true}, SHIFT(4969), + [10688] = {.count = 1, .reusable = true}, SHIFT(4970), + [10690] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4881), + [10693] = {.count = 1, .reusable = true}, SHIFT(4973), + [10695] = {.count = 1, .reusable = true}, SHIFT(4974), + [10697] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4890), + [10700] = {.count = 1, .reusable = true}, SHIFT(4976), + [10702] = {.count = 1, .reusable = true}, SHIFT(4978), + [10704] = {.count = 1, .reusable = false}, SHIFT(4978), + [10706] = {.count = 1, .reusable = true}, SHIFT(4981), + [10708] = {.count = 1, .reusable = false}, SHIFT(4981), + [10710] = {.count = 1, .reusable = true}, SHIFT(4980), + [10712] = {.count = 1, .reusable = true}, SHIFT(4984), + [10714] = {.count = 1, .reusable = false}, SHIFT(4984), + [10716] = {.count = 1, .reusable = true}, SHIFT(4985), + [10718] = {.count = 1, .reusable = false}, SHIFT(4987), + [10720] = {.count = 1, .reusable = true}, SHIFT(4989), + [10722] = {.count = 1, .reusable = true}, SHIFT(4991), + [10724] = {.count = 1, .reusable = false}, SHIFT(4991), + [10726] = {.count = 1, .reusable = true}, SHIFT(4990), + [10728] = {.count = 1, .reusable = true}, SHIFT(4992), + [10730] = {.count = 1, .reusable = true}, SHIFT(4993), + [10732] = {.count = 1, .reusable = false}, SHIFT(4993), + [10734] = {.count = 1, .reusable = true}, SHIFT(4994), + [10736] = {.count = 1, .reusable = false}, SHIFT(4994), + [10738] = {.count = 1, .reusable = true}, SHIFT(4996), + [10740] = {.count = 1, .reusable = true}, SHIFT(4998), + [10742] = {.count = 1, .reusable = true}, SHIFT(5000), + [10744] = {.count = 1, .reusable = false}, SHIFT(5000), + [10746] = {.count = 1, .reusable = true}, SHIFT(4999), + [10748] = {.count = 1, .reusable = true}, SHIFT(5001), + [10750] = {.count = 1, .reusable = true}, SHIFT(5002), + [10752] = {.count = 1, .reusable = false}, SHIFT(5002), + [10754] = {.count = 1, .reusable = true}, SHIFT(5003), + [10756] = {.count = 1, .reusable = false}, SHIFT(5003), + [10758] = {.count = 1, .reusable = true}, SHIFT(5005), + [10760] = {.count = 1, .reusable = true}, SHIFT(5007), + [10762] = {.count = 1, .reusable = true}, SHIFT(5009), + [10764] = {.count = 1, .reusable = false}, SHIFT(5009), + [10766] = {.count = 1, .reusable = true}, SHIFT(5010), + [10768] = {.count = 1, .reusable = true}, SHIFT(5011), + [10770] = {.count = 1, .reusable = false}, SHIFT(5012), + [10772] = {.count = 1, .reusable = true}, SHIFT(5014), + [10774] = {.count = 1, .reusable = true}, SHIFT(5016), + [10776] = {.count = 1, .reusable = false}, SHIFT(5016), + [10778] = {.count = 1, .reusable = false}, SHIFT(5017), + [10780] = {.count = 1, .reusable = true}, SHIFT(5018), + [10782] = {.count = 1, .reusable = true}, SHIFT(5019), + [10784] = {.count = 1, .reusable = false}, SHIFT(5019), + [10786] = {.count = 1, .reusable = true}, SHIFT(5021), + [10788] = {.count = 1, .reusable = true}, SHIFT(5022), + [10790] = {.count = 1, .reusable = true}, SHIFT(5024), + [10792] = {.count = 1, .reusable = true}, SHIFT(5026), + [10794] = {.count = 1, .reusable = false}, SHIFT(5026), + [10796] = {.count = 1, .reusable = true}, SHIFT(5027), + [10798] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4969), + [10801] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4973), + [10804] = {.count = 1, .reusable = true}, SHIFT(5029), + [10806] = {.count = 1, .reusable = true}, SHIFT(5032), + [10808] = {.count = 1, .reusable = false}, SHIFT(5032), + [10810] = {.count = 1, .reusable = true}, SHIFT(5031), + [10812] = {.count = 1, .reusable = true}, SHIFT(5033), + [10814] = {.count = 1, .reusable = true}, SHIFT(5034), + [10816] = {.count = 1, .reusable = true}, SHIFT(5036), + [10818] = {.count = 1, .reusable = true}, SHIFT(5037), + [10820] = {.count = 1, .reusable = false}, SHIFT(5037), + [10822] = {.count = 1, .reusable = true}, SHIFT(5040), + [10824] = {.count = 1, .reusable = true}, SHIFT(5042), + [10826] = {.count = 1, .reusable = false}, SHIFT(5042), + [10828] = {.count = 1, .reusable = true}, SHIFT(5043), + [10830] = {.count = 1, .reusable = true}, SHIFT(5044), + [10832] = {.count = 1, .reusable = false}, SHIFT(5045), + [10834] = {.count = 1, .reusable = true}, SHIFT(5048), + [10836] = {.count = 1, .reusable = true}, SHIFT(5050), + [10838] = {.count = 1, .reusable = false}, SHIFT(5050), + [10840] = {.count = 1, .reusable = true}, SHIFT(5051), + [10842] = {.count = 1, .reusable = true}, SHIFT(5052), + [10844] = {.count = 1, .reusable = false}, SHIFT(5053), + [10846] = {.count = 1, .reusable = true}, SHIFT(5055), + [10848] = {.count = 1, .reusable = true}, SHIFT(5057), + [10850] = {.count = 1, .reusable = false}, SHIFT(5057), + [10852] = {.count = 1, .reusable = false}, SHIFT(5058), + [10854] = {.count = 1, .reusable = true}, SHIFT(5059), + [10856] = {.count = 1, .reusable = true}, SHIFT(5061), + [10858] = {.count = 1, .reusable = true}, SHIFT(5062), + [10860] = {.count = 1, .reusable = true}, SHIFT(5063), + [10862] = {.count = 1, .reusable = true}, SHIFT(5066), + [10864] = {.count = 1, .reusable = true}, SHIFT(5068), + [10866] = {.count = 1, .reusable = false}, SHIFT(5068), + [10868] = {.count = 1, .reusable = true}, SHIFT(5067), + [10870] = {.count = 1, .reusable = true}, SHIFT(5069), + [10872] = {.count = 1, .reusable = true}, SHIFT(5070), + [10874] = {.count = 1, .reusable = false}, SHIFT(5070), + [10876] = {.count = 1, .reusable = true}, SHIFT(5071), + [10878] = {.count = 1, .reusable = false}, SHIFT(5071), + [10880] = {.count = 1, .reusable = true}, SHIFT(5073), + [10882] = {.count = 1, .reusable = true}, SHIFT(5074), + [10884] = {.count = 1, .reusable = true}, SHIFT(5076), + [10886] = {.count = 1, .reusable = false}, SHIFT(5076), + [10888] = {.count = 1, .reusable = false}, SHIFT(5077), + [10890] = {.count = 1, .reusable = true}, SHIFT(5078), + [10892] = {.count = 1, .reusable = true}, SHIFT(5080), + [10894] = {.count = 1, .reusable = false}, SHIFT(5080), + [10896] = {.count = 1, .reusable = false}, SHIFT(5081), + [10898] = {.count = 1, .reusable = true}, SHIFT(5082), + [10900] = {.count = 1, .reusable = true}, SHIFT(5084), + [10902] = {.count = 1, .reusable = true}, SHIFT(5085), + [10904] = {.count = 1, .reusable = true}, SHIFT(5087), + [10906] = {.count = 1, .reusable = true}, SHIFT(5089), + [10908] = {.count = 1, .reusable = false}, SHIFT(5089), + [10910] = {.count = 1, .reusable = true}, SHIFT(5090), + [10912] = {.count = 1, .reusable = true}, SHIFT(5091), + [10914] = {.count = 1, .reusable = false}, SHIFT(5092), + [10916] = {.count = 1, .reusable = true}, SHIFT(5094), + [10918] = {.count = 1, .reusable = true}, SHIFT(5096), + [10920] = {.count = 1, .reusable = true}, SHIFT(5098), + [10922] = {.count = 1, .reusable = true}, SHIFT(5099), + [10924] = {.count = 1, .reusable = true}, SHIFT(5101), + [10926] = {.count = 1, .reusable = false}, SHIFT(5101), + [10928] = {.count = 1, .reusable = false}, SHIFT(5102), + [10930] = {.count = 1, .reusable = true}, SHIFT(5103), + [10932] = {.count = 1, .reusable = true}, SHIFT(5104), + [10934] = {.count = 1, .reusable = true}, SHIFT(5105), + [10936] = {.count = 1, .reusable = true}, SHIFT(5107), }; void *tree_sitter_cpp_external_scanner_create();